]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
31955fe3723c5a69b8be9a3c825e37c66a609947
[karo-tx-uboot.git] / CHANGELOG
1 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
2 Author: Wolfgang Denk <wd@denx.de>
3 Date:   Mon Jul 27 10:06:39 2009 +0200
4
5     cpu/arm920t/start.S: include <common.h> to have ROUND() defined
6
7     Commit fcd3c87e made include/common.h usable by assembler code but
8     failed to update cpu/arm920t/start.S
9
10     Signed-off-by: Wolfgang Denk <wd@denx.de>
11
12 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
13 Author: Wolfgang Denk <wd@denx.de>
14 Date:   Mon Jul 27 10:01:11 2009 +0200
15
16     at91cap9adk: fix #ifdef/#endif pairing (2nd try)
17
18     Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
19     include/configs/at91cap9adk.h, but did not cate all problems.
20
21     Signed-off-by: Wolfgang Denk <wd@denx.de>
22
23 commit fb364bec5f29164d3ee681fcd9d187be8435db12
24 Author: Wolfgang Denk <wd@denx.de>
25 Date:   Mon Jul 27 09:58:14 2009 +0200
26
27     Fix include/common.h for boards with CONFIG_STATUS_LED
28
29     The reordering of include/common.h by commit fcd3c87e495f3c48 broke
30     boards with status LED support, resulting in
31         error: #error Status LED configuration missing
32     errors. Undo this reordering to avoid this issue.
33
34     Signed-off-by: Wolfgang Denk <wd@denx.de>
35
36 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
37 Author: Wolfgang Denk <wd@denx.de>
38 Date:   Mon Jul 27 09:19:15 2009 +0200
39
40     ABI: fix build problems due to now needed div64 routine.
41
42     Signed-off-by: Wolfgang Denk <wd@denx.de>
43
44 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
45 Author: Wolfgang Denk <wd@denx.de>
46 Date:   Mon Jul 27 08:50:59 2009 +0200
47
48     PMC405DE: fix out of tree building
49
50     Signed-off-by: Wolfgang Denk <wd@denx.de>
51
52 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
53 Author: Wolfgang Denk <wd@denx.de>
54 Date:   Mon Jul 27 00:24:55 2009 +0200
55
56     Prepare 2009.08-rc1
57
58     Update CHANGELOG, minor coding style fix.
59
60     Signed-off-by: Wolfgang Denk <wd@denx.de>
61
62 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
63 Author: rhabarber1848@web.de <rhabarber1848@web.de>
64 Date:   Fri Jul 24 08:16:30 2009 +0200
65
66     add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
67
68     Signed-off-by: rhabarber1848@web.de
69
70 commit 3c972849f2becbf19c13a24f090d293f37ecf616
71 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
72 Date:   Thu Jul 23 23:31:58 2009 +0200
73
74     Less verbose output when loading vxworks 6.x images
75
76     Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
77     With vxWorks 6.x and the new GCC it emits about 30 lines, which is
78     far too noisy in my opinion.
79
80     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
81
82 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
83 Author: Wolfgang Denk <wd@denx.de>
84 Date:   Fri Jul 24 00:17:48 2009 +0200
85
86     Make include/common.h usable by assembler code
87
88     Commit 70ebf316 factored out the ROUND() macro into include/common.h,
89     not realizing that the primary use of this macro on AT91 systems was
90     in start.S where common.h was not included, and could not be included
91     because it contains a lot of C code which the assembler doesn't
92     understand.
93
94     This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
95     construct, and then adds an include to cpu/arm926ejs/start.S thus
96     solving the problem.
97
98     Signed-off-by: Wolfgang Denk <wd@denx.de>
99
100 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
101 Author: Heiko Schocher <heiko.schocher@invitel.hu>
102 Date:   Thu Jul 23 13:27:04 2009 +0200
103
104     arm: add _lshrdi3.S
105
106     Signed-off-by: Heiko Schocher <hs@denx.de>
107
108 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
109 Author: Wolfgang Denk <wd@denx.de>
110 Date:   Thu Jul 23 13:15:59 2009 +0200
111
112     Make linking against libgcc configurable
113
114     Many (especially ARM) tool chains seem to come with broken or
115     otherwise unusable (for the purposes of builing U-Boot) run-time
116     support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
117     setting we allow to use alternative libraries instead.
118
119     "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
120     the shell, or as a command line argument when running "make", i. e.
121         $ make USE_PRIVATE_LIBGCC=yes
122     or
123         $ USE_PRIVATE_LIBGCC=yes
124         $ export USE_PRIVATE_LIBGCC
125         $ make
126
127     The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
128     contains the alternative run-time support library `libgcc.a'. The
129     special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
130
131     Note that not all architectures provide an alternative `libgcc.a' in
132     their lib_$(ARCH) directories - so far, only ARM does.
133
134     Signed-off-by: Wolfgang Denk <wd@denx.de>
135     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
136     Cc: Prafulla Wadaskar <prafulla@marvell.com>
137     cc: Stefan Roese <sr@denx.de>
138
139 commit 479105065d965121f57b55dcfe83a940cba46ac1
140 Author: Dirk Behme <dirk.behme@googlemail.com>
141 Date:   Wed Jul 22 17:51:56 2009 +0200
142
143     Use do_div from div64.h for vsprintf
144
145     Use do_div from div64.h for vsprintf in case of 64bit division.
146     For 32bit division, do_div from div64.h can't be used as it
147     needs a 64bit parameter.
148
149     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
150     Acked-by: Stefan Roese <sr@denx.de>
151     CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
152
153 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
154 Author: Kyungmin Park <kmpark@infradead.org>
155 Date:   Mon Jul 20 09:47:47 2009 +0900
156
157     Fix compiler warnings after loff_t change
158
159     Now 'env_addr' type is loff_t so use correct field type.
160
161     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
162
163 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
164 Author: Wolfgang Denk <wd@denx.de>
165 Date:   Sun Jul 26 23:28:02 2009 +0200
166
167     Revert "ppc: Unlock cache-as-ram in a consistent manner"
168
169     This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
170
171     This patch causes problems on MPC83xx boards - flash recognition stops
172     working.
173
174     Signed-off-by: Wolfgang Denk <wd@denx.de>
175
176 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
177 Author: Jens Scharsig <esw@bus-elektronik.de>
178 Date:   Fri Jul 24 10:31:48 2009 +0200
179
180     update the EB+MCF-EV123 board support
181
182     This patch updates the support for EB+MCF-EV123 board and needs
183     the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
184
185     * remove the board framebuffer driver
186     * use the common bus_vcxk framebuffer driver
187     * adds bmp support
188     * adds splashimage support
189     * fix serveral cosmetical errors
190
191     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
192     [agust@denx.de: fixed some style issues before applying]
193     Signed-off-by: Anatolij Gustschin <agust@denx.de>
194
195 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
196 Author: Anatolij Gustschin <agust@denx.de>
197 Date:   Sun Jul 26 12:05:25 2009 +0200
198
199     video: bus_vcxk.c: fix style issues added by 50217dee
200
201     Signed-off-by: Anatolij Gustschin <agust@denx.de>
202
203 commit 50217deeb07911d686790d34d468eb9a5245f68d
204 Author: Jens Scharsig <esw@bus-elektronik.de>
205 Date:   Fri Jul 24 10:09:02 2009 +0200
206
207     new video driver for bus vcxk framebuffers
208
209     This patch adds a new video driver
210
211     * adds common bus_vcxk framebuffer driver
212
213     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
214     [agust@denx.de: fixed lots of style issues before applying]
215     Signed-off-by: Anatolij Gustschin <agust@denx.de>
216
217 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
218 Author: Alessandro Rubini <rubini@gnudd.com>
219 Date:   Tue Jul 21 14:09:45 2009 +0200
220
221     lcd.h: define extern vidinfo_t for all cases
222
223     include/lcd.h has different vidinfo for different platforms,
224     and several extern declaration, but one for the default case was
225     missing. This makes them a single extern declaration for everyone.
226
227     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
228
229 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
230 Author: Anatolij Gustschin <agust@denx.de>
231 Date:   Sun Jul 26 11:04:59 2009 +0200
232
233     mimc200.c: fix too long lines added by f68378d6
234
235     Signed-off-by: Anatolij Gustschin <agust@denx.de>
236
237 commit f68378d60a905d43155f2e89bf81999d3c93a90a
238 Author: Mark Jackson <mpfj-list@mimc.co.uk>
239 Date:   Tue Jul 21 11:35:22 2009 +0100
240
241     Add LCD support to MIMC200 board
242
243     This patch updates the MIMC200 files to enable the LCD.
244
245     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
246
247 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
248 Author: Mark Jackson <mpfj-list@mimc.co.uk>
249 Date:   Tue Jul 21 11:18:44 2009 +0100
250
251     Add 16bit colour support in lcd.h
252
253     This patch adds support for LCD_COLOR16 in include/lcd.h.
254
255     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
256
257 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
258 Author: Anatolij Gustschin <agust@denx.de>
259 Date:   Sun Jul 26 10:34:58 2009 +0200
260
261     lib_avr32/board.c: fix too long line added by 716ece1d
262
263     Signed-off-by: Anatolij Gustschin <agust@denx.de>
264
265 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
266 Author: Mark Jackson <mpfj-list@mimc.co.uk>
267 Date:   Tue Jul 21 11:11:37 2009 +0100
268
269     Add AVR32 LCD support
270
271     This patch adds support for the AVR32 LCD controller.  This patch is
272     based off the latest u-boot-video.
273
274     A quick summary of what's going on:-
275
276     Enable LCDC pixel clock
277     Enable LCDC port pins
278     Add framebuffer pointer to global_data struct
279     Allocate framebuffer
280
281     To use the new code, update your board config to include something like
282     this:-
283
284     #define CONFIG_LCD                  1
285
286     #if defined(CONFIG_LCD)
287     #define CONFIG_CMD_BMP
288     #define CONFIG_ATMEL_LCD            1
289     #define LCD_BPP                             LCD_COLOR16
290     #define CONFIG_BMP_16BPP            1
291     #define CONFIG_FB_ADDR                      0x10600000
292     #define CONFIG_WHITE_ON_BLACK               1
293     #define CONFIG_VIDEO_BMP_GZIP               1
294     #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE              262144
295     #define CONFIG_ATMEL_LCD_BGR555             1
296     #define CONFIG_SYS_CONSOLE_IS_IN_ENV        1
297     #define CONFIG_SPLASH_SCREEN                1
298     #endif
299
300     The standard U-Boot BMP and Splash-screen features should just work.
301
302     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
303     [agust@denx.de: fixed some style issues]
304     Signed-off-by: Anatolij Gustschin <agust@denx.de>
305
306 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
307 Author: Alessandro Rubini <rubini@gnudd.com>
308 Date:   Sun Jul 19 17:52:27 2009 +0200
309
310     video: move extern declarations from C to headers
311
312     This moves some extern declaration from lcd.c to lcd.h, removing
313     unneeded ifdef around a pair of them.  Additionally, since
314     gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
315     removed the static.  The extra "#include <lcd.h>" in cmd_bmp.c is
316     added to ensure the header is consistent with the source.
317
318     This has been compile-tested on both ARM (at91 boards) and PowerPC
319     (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
320     combinations.
321
322     Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
323     [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
324     Signed-off-by: Anatolij Gustschin <agust@denx.de>
325
326 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
327 Author: Mike Frysinger <vapier@gentoo.org>
328 Date:   Thu Jul 23 16:26:58 2009 -0400
329
330     Blackfin: restore EVT1 handling in linker script
331
332     Sadly, the Blackfin linker script unification lost a small #ifdef logic
333     needed on older parts.  Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
334
335     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
336
337 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
338 Author: Wolfgang Denk <wd@denx.de>
339 Date:   Fri Jul 24 14:24:07 2009 +0200
340
341     Revert "zlib: updated to v.1.2.3"
342
343     This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
344
345     The commit caused problems for example when unpacking kernel images:
346
347            Uncompressing Kernel Image ... Error: inflate() returned -2
348            GUNZIP: uncompress, out-of-mem or overwrite error - must
349            RESET board to recover
350
351     Conflicts:
352
353         include/u-boot/zlib.h
354         lib_generic/zlib.c
355
356     Signed-off-by: Wolfgang Denk <wd@denx.de>
357
358 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
359 Author: Stefan Roese <sr@denx.de>
360 Date:   Tue Jul 21 14:06:29 2009 +0200
361
362     ppc4xx: Add chip_config command to AMCC Kilauea eval board
363
364     This patch removes the "alterpll" command and replaces it with the now
365     ppc4xx standard "chip_config" command to configure the I2C bootstrap
366     EEPROM.
367
368     Signed-off-by: Stefan Roese <sr@denx.de>
369
370 commit f6af8ce0c80327cb6aaa347642026ad838335c23
371 Author: Stefan Roese <sr@denx.de>
372 Date:   Tue Jul 21 14:33:52 2009 +0200
373
374     ppc4xx: Fix EEPROM configuration on Kilauea
375
376     Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
377     CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
378     work correctly.
379
380     Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
381     is set to a more defensive value of 10ms.
382
383     Signed-off-by: Stefan Roese <sr@denx.de>
384
385 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
386 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
387 Date:   Wed Jul 22 13:56:21 2009 +0200
388
389     ppc4xx: Add 405EP based PMC405DE board
390
391     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
392     Signed-off-by: Stefan Roese <sr@denx.de>
393
394 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
395 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
396 Date:   Mon Jul 20 12:15:38 2009 +0200
397
398     ppc4xx: Add struct for 4xx GPIO controller registers
399
400     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
401     Signed-off-by: Stefan Roese <sr@denx.de>
402
403 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
404 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
405 Date:   Wed Jul 22 17:27:56 2009 +0200
406
407     ppc4xx: Replace 4xx lowercase SPR references
408
409     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
410     Signed-off-by: Stefan Roese <sr@denx.de>
411
412 commit 87c0b72908e05662b8b415e26e1042f4779629da
413 Author: Stefan Roese <sr@denx.de>
414 Date:   Mon Jul 20 06:57:27 2009 +0200
415
416     Add "chip_config" command for PPC4xx bootstrap configuration
417
418     This patch adds a generic command for programming I2C bootstrap
419     eeproms on PPC4xx. An implementation for Canyonlands board is
420     included.
421
422     The command name is intentionally chosen not to be PPC4xx specific.
423     This way other CPU's/SoC's can implement a similar command under
424     the same name, perhaps with a different syntax.
425
426     Usage on Canyonlands:
427
428     => chip_config
429     Available configurations (I2C address 0x52):
430     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
431     600-nand         - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
432     800-nor          - NOR  CPU: 800 PLB: 200 OPB: 100 EBC: 100
433     800-nand         - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
434     1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
435     1000-nand        - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
436     1066-nor         - NOR  CPU:1066 PLB: 266 OPB:  88 EBC:  88 ***
437     1066-nand        - NAND CPU:1066 PLB: 266 OPB:  88 EBC:  88
438     => chip_config 600-nor
439     Using configuration:
440     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
441     done (dump via 'i2c md 52 0.1 10')
442     Reset the board for the changes to take effect
443
444     Other 4xx boards will be migrated to use this command soon
445     as well.
446
447     Signed-off-by: Stefan Roese <sr@denx.de>
448     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
449     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
450
451 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
452 Author: Peter Tyser <ptyser@xes-inc.com>
453 Date:   Fri Jul 17 19:01:16 2009 -0500
454
455     xpedite1k: Move to X-ES vendor directory
456
457     The XPedite1000 is an X-ES product thus it can be put in board/xes along
458     with other X-ES boards.  Along with the move, the board was renamed to
459     XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
460     Maintainership was also transfered to Peter Tyser.
461
462     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
463     Signed-off-by: Stefan Roese <sr@denx.de>
464
465 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
466 Author: Peter Tyser <ptyser@xes-inc.com>
467 Date:   Fri Jul 17 19:01:15 2009 -0500
468
469     xpedite1k: Sync checkboard() with other X-ES boards
470
471     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
472     Signed-off-by: Stefan Roese <sr@denx.de>
473
474 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
475 Author: Peter Tyser <ptyser@xes-inc.com>
476 Date:   Fri Jul 17 19:01:14 2009 -0500
477
478     xpedite1k: Sync up board config options with other X-ES boards
479
480     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
481     Signed-off-by: Stefan Roese <sr@denx.de>
482
483 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
484 Author: Peter Tyser <ptyser@xes-inc.com>
485 Date:   Fri Jul 17 19:01:13 2009 -0500
486
487     xpedite1k: Sync organization of board config with other X-ES boards
488
489     This change should have no functional effect
490
491     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
492     Signed-off-by: Stefan Roese <sr@denx.de>
493
494 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
495 Author: Peter Tyser <ptyser@xes-inc.com>
496 Date:   Fri Jul 17 19:01:12 2009 -0500
497
498     xpedite1k: Sync up commands and environment with other X-ES boards
499
500     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
501     Signed-off-by: Stefan Roese <sr@denx.de>
502
503 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
504 Author: Peter Tyser <ptyser@xes-inc.com>
505 Date:   Fri Jul 17 19:01:11 2009 -0500
506
507     xpedite1k: Disable unused ethernet port 1
508
509     The XPedite1000 only has 2 available ethernet ports:
510     ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
511
512     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
513     Signed-off-by: Stefan Roese <sr@denx.de>
514
515 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
516 Author: Peter Tyser <ptyser@xes-inc.com>
517 Date:   Fri Jul 17 19:01:10 2009 -0500
518
519     xpedite1k: Store environment in flash
520
521     Previously an I2C EEPROM was used.  The EEPROM had size, reliability,
522     and access issues which are resolved by storing the environment in
523     flash.
524
525     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
526     Signed-off-by: Stefan Roese <sr@denx.de>
527
528 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
529 Author: Peter Tyser <ptyser@xes-inc.com>
530 Date:   Fri Jul 17 19:01:09 2009 -0500
531
532     xpedite1k: Add support for additional GPIO pins
533
534     Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
535     and a PMC #MONARCH pin.  These pins are not currently used in U-Boot,
536     but are used in OSes and may be used in U-Boot in the future.
537
538     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
539     Signed-off-by: Stefan Roese <sr@denx.de>
540
541 commit 42735815dd9ba39efe51203868aebce04053c8de
542 Author: Peter Tyser <ptyser@xes-inc.com>
543 Date:   Fri Jul 17 19:01:08 2009 -0500
544
545     xpedite1k: Add support for optional flashes
546
547     The XPedite1000 can be built with 4 total flashes:
548     - 512KB AMD socketed
549     - 16MB Intel soldered
550     - 2 x 32MB AMD MirrorBit flashes
551
552     Add support for the optional 2 32MB CFI-compliant AMD flashes
553
554     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
555     Signed-off-by: Stefan Roese <sr@denx.de>
556
557 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
558 Author: Peter Tyser <ptyser@xes-inc.com>
559 Date:   Fri Jul 17 19:01:07 2009 -0500
560
561     xpedite1k: Cleanup coding style
562
563     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
564     Signed-off-by: Stefan Roese <sr@denx.de>
565
566 commit 086ff34a3a7e5e595630d658c1c13778399452d1
567 Author: Peter Tyser <ptyser@xes-inc.com>
568 Date:   Fri Jul 17 19:01:06 2009 -0500
569
570     xpedite1k: Remove support for reading MACs from EEPROM
571
572     By default, the XPedite1000 comes installed with xMon, a proprietary
573     bootloader.  xMon stores its MAC address in an onboard EEPROM.  Rather
574     than requiring a non-standard location in the EEPROM to be reserved for
575     MAC addresses, store the MAC addresses in U-Boot's standard environment.
576     A U-Boot application or OS application can be used to migrate xMon MAC
577     addresses to U-Boot's environment if necessary.
578
579     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
580     Signed-off-by: Stefan Roese <sr@denx.de>
581
582 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
583 Author: Peter Tyser <ptyser@xes-inc.com>
584 Date:   Fri Jul 17 19:01:05 2009 -0500
585
586     xpedite1k: Remove support for fixed SDRAM configuration
587
588     All XPedite1000's have SPD EEPROMs present and no fixed configuration
589     parameters are currently defined or used
590
591     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
592     Signed-off-by: Stefan Roese <sr@denx.de>
593
594 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
595 Author: Peter Tyser <ptyser@xes-inc.com>
596 Date:   Fri Jul 17 19:01:04 2009 -0500
597
598     xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
599
600     POST or command line tests provide similar functionality
601
602     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
603     Signed-off-by: Stefan Roese <sr@denx.de>
604
605 commit 11ad309c183b176d8866944026a63c0f1c626f56
606 Author: Peter Tyser <ptyser@xes-inc.com>
607 Date:   Fri Jul 17 19:01:03 2009 -0500
608
609     xpedite1k: Use standard CFI flash driver
610
611     Using the CFI flash driver will allow write access to the 16MB Intel
612     StrataFlash present on the XPedite1000.  The 512KB socketed (non
613     CFI-compliant flash) will no longer be writable.
614
615     The mapping of the 16MB Strata flash was moved to 0xff000000 and the
616     512KB AMD socketed flash was moved to 0xfe000000.
617
618     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
619     Signed-off-by: Stefan Roese <sr@denx.de>
620
621 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
622 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
623 Date:   Thu Jul 16 22:13:57 2009 +0200
624
625     ppc4xx: Cleanup PLU405 board code
626
627     Some Coding style cleanup (braces, whitespaces, long lines)
628
629     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
630     Signed-off-by: Stefan Roese <sr@denx.de>
631
632 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
633 Author: Dirk Eibach <eibach@gdsys.de>
634 Date:   Fri Jul 17 14:16:40 2009 +0200
635
636     ppc4xx: Add DL-Vision 405EP board support
637
638     Board support for the Guntermann & Drunck DL-Vision.
639
640     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
641     Signed-off-by: Stefan Roese <sr@denx.de>
642
643 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
644 Author: Dirk Eibach <eibach@gdsys.de>
645 Date:   Fri Jul 10 14:47:32 2009 +0200
646
647     ppc4xx: Fix missing freqOPB for 405EP
648
649     In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
650     left out for no obvious reason.
651
652     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
653     Signed-off-by: Stefan Roese <sr@denx.de>
654
655 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
656 Author: Stefan Roese <sr@denx.de>
657 Date:   Tue Jul 14 15:53:08 2009 +0200
658
659     ppc4xx: Fix TLB reset problem with recent 44x images
660
661     Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
662     booting on some 44x platforms. This breakage is only noticed in some
663     cases while powercycling. As it seems, the code in question in start.S
664     didn't invalidate TLB #0. This makes sense since this TLB is used for
665     the bootrom mapping. With the patch mentioned above even TLB #0 got
666     invalidated resulting in an error later on.
667
668     This patch now fixes this issue by only invalidating TLB #0 in the RAM-
669     booting case.
670
671     Tested succesfully on Sequoia and Canyonlands.
672
673     Signed-off-by: Stefan Roese <sr@denx.de>
674     Cc: Dirk Eibach <Eibach@gdsys.de>
675
676 commit 44259bb9e696d22bf1773181111855a29f00cf33
677 Author: Prafulla Wadaskar <prafulla@marvell.com>
678 Date:   Fri Jul 17 19:56:30 2009 +0530
679
680     usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
681
682     This change is cheked in Linux source and fix found to be in sync.
683     This patch is tested for USB host interface on Kirkwood based
684     Sheevaplug platform (ARM little endian board)
685
686     Risk: the impact of this patch is not validated on big endian board.
687     This need to be checked...
688
689     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
690     Signed-off-by: Remy Bohmer <linux@bohmer.net>
691
692 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
693 Author: Wolfgang Denk <wd@denx.de>
694 Date:   Thu Jul 23 22:23:23 2009 +0200
695
696     Coding Style cleanup; update CHANGELOG.
697
698     Signed-off-by: Wolfgang Denk <wd@denx.de>
699
700 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
701 Author: Mike Frysinger <vapier@gentoo.org>
702 Date:   Tue Jul 21 22:59:36 2009 -0400
703
704     autoconf.mk: include before config.mk for top level files
705
706     By including autoconf.mk before config.mk, all top level files can use any
707     config options it sets up (like <arch>_config.mk) or the Makefile itself
708     without being forced to use lazy evaluation.
709
710 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
711 Author: Mark Jackson <mpfj-list@mimc.co.uk>
712 Date:   Tue Jul 21 11:30:53 2009 +0100
713
714     Remove static declaration from gunzip_bmp()
715
716     This patch removes the static declaration from gunzip_bmp()
717
718     Without it, the gunzip_bmp() function is not visible to
719     common/lcd.c and fails to compile with an error.
720
721     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
722
723 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
724 Author: Peter Tyser <ptyser@gmail.com>
725 Date:   Mon Jul 20 21:51:38 2009 -0500
726
727     cmd_tsi148: General cleanup
728
729     - Fix command help message
730     - Disable DEBUG by default
731     - Fix whitespace issues
732     - Fix lines > 80 characters
733
734     Signed-off-by: Peter Tyser <ptyser@gmail.com>
735     Acked-by: Stefan Roese <sr@denx.de>
736
737 commit 9aef73888509d10193615ee5cd9cf439ca44e937
738 Author: Mike Frysinger <vapier@gentoo.org>
739 Date:   Sun Jul 19 15:17:03 2009 -0400
740
741     unify HOST_CFLAGS and HOSTCFLAGS
742
743     The top build system sets up HOSTCFLAGS a bit and exports it, but other
744     places use HOST_CFLAGS instead.  Unify the two as HOSTCFLAGS so that the
745     values stay in sync.
746
747     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
748
749 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
750 Author: Wolfgang Denk <wd@denx.de>
751 Date:   Thu Jul 23 21:16:59 2009 +0200
752
753     Update CHANGELOG
754
755     Signed-off-by: Wolfgang Denk <wd@denx.de>
756
757 commit e3b39f84e974df70065fa248f0f63993b1708c9d
758 Author: André Schwarz <andre.schwarz@matrix-vision.de>
759 Date:   Fri Jul 17 14:50:24 2009 +0200
760
761     update config for mvBC-P (MPC5200)
762
763     This patch adds I2C support for mvBC-P and defines flash layout
764     matching the shipped product.
765
766     Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
767
768 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
769 Author: Kumar Gala <galak@kernel.crashing.org>
770 Date:   Mon Jul 13 09:24:00 2009 -0500
771
772     ahci: Fix gcc 4.4 compiler warning
773
774     ahci.c: In function 'ata_scsiop_read_capacity10':
775     ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
776
777     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
778
779 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
780 Author: Kumar Gala <galak@kernel.crashing.org>
781 Date:   Mon Jul 13 09:23:59 2009 -0500
782
783     drivers/bios_emulator: Fix gcc 4.4 compiler warning
784
785     biosemu.c: In function 'BE_setVGA':
786     biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
787
788     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
789
790 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
791 Author: Detlev Zundel <dzu@denx.de>
792 Date:   Mon Jul 13 16:01:19 2009 +0200
793
794     Re-add support for image type 'Standalone Program'
795
796     Support for this type was lost during the bootm refactoring.
797
798     Signed-off-by: Detlev Zundel <dzu@denx.de>
799
800 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
801 Author: Detlev Zundel <dzu@denx.de>
802 Date:   Mon Jul 13 16:01:18 2009 +0200
803
804     Add error checking for unsupported OS types.
805
806     Signed-off-by: Detlev Zundel <dzu@denx.de>
807
808 commit 982adfc610669482a32127282fe489857a92cfe3
809 Author: Peter Tyser <ptyser@xes-inc.com>
810 Date:   Fri Jul 10 18:46:10 2009 -0500
811
812     ppc: Unlock cache-as-ram in a consistent manner
813
814     Previously, non-e500 architectures only unlocked their data cache which
815     was used as early RAM when booting to Linux using the "bootm" command.
816     This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
817     to unlock their data cache during U-Boot's initialization.  This
818     improves U-Boot performance and provides a common cache state when
819     booting to different OSes.
820
821     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
822
823 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
824 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
825 Date:   Thu Jul 23 04:54:45 2009 -0400
826
827     zlib: updated to v.1.2.3
828
829     This patch updates zlib to the latest stable version.
830
831     Only relevant zlib parts were ported to u-boot tree, as was done for
832     the previously used version of zlib (0.95). New zlib gives faster
833     inflate performance and other improvements, see www.zlib.net
834
835     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
836     Reviewed-by: Angelo Castello <angelo.castello@st.com>
837
838     Edited commit message
839
840     Signed-off-by: Wolfgang Denk <wd@denx.de>
841
842 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
843 Author: Robin Getz <rgetz@blackfin.uclinux.org>
844 Date:   Tue Jul 21 12:15:28 2009 -0400
845
846     Save server's MAC address in environment
847
848     Linux's netconsole works much better when you can pass it the MAC address of
849     the server. (otherwise it just uses broadcast, which everyone else on my
850     network complains about :)
851
852     This sets the env var "serveraddr" (to match ethaddr), so that you can pass
853     it to linux with whatever bootargs you want to....
854
855     addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
856
857     Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
858
859     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
860
861 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
862 Author: Ilya Yanok <yanok@emcraft.com>
863 Date:   Tue Jul 21 19:32:21 2009 +0400
864
865     fec_mxc: driver for FEC ethernet controller on i.MX27
866
867     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
868     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
869
870 commit 0544c63681d2ea3607faf374e9c56f101e365b42
871 Author: Alessio Centazzo <centazzo@gmail.com>
872 Date:   Sat Jul 11 11:56:06 2009 -0700
873
874     ppc4xx: Fixed compilation warning in 4xx_enet.c
875
876     This patch fixes a compilation warning for some Ethernet PHY-less
877     PPC4xx platforms (440SPE based ones) and a potential compilation
878     error for 440SP platforms (use of undefined 'ethgroup' variable).
879     In the original code and in case of 440SPE platforms, 'ethgroup'
880     is initialized to -1 and never modified.  Later in the function,
881     within an #ifdef statement, an 'if statement' executes code only
882     if 'ethgroup' is set to 4, therefore it is harmless to avoid
883     executing the 'if statement' by removing the CONFIG_440SPE from
884     the affected #ifdefs.  In case of 440SP platforms  with on-board
885     Ethernet PHY, 'ethgroup' is undefined but used (there are not such
886     platforms in the repository yet). All other architectures are not
887     affected by this change.
888
889     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
890     Acked-by: Stefan Roese <sr@denx.de>
891     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
892
893 commit 09133f8580f0106429ba3600f1855bd3577ae58b
894 Author: Michael Zaidman <michael.zaidman@gmail.com>
895 Date:   Tue Jul 14 23:37:12 2009 +0300
896
897     DHCP regression on 2009-06
898
899     Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
900     by initializing our IP addr to 0 in order to accept any IP addr
901     assigned to us by the DHCP/BOOTP/RARP server.
902
903     Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
904     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
905     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
906
907 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
908 Author: Prafulla Wadaskar <prafulla@marvell.com>
909 Date:   Thu Jul 16 20:58:02 2009 +0530
910
911     net: phy: bugfixes: mv88E61xx multichip addressing support
912
913     With these fixes, this driver works properly for multi chip
914     addressging mode
915
916     Bugfixes:
917     1. Build error fixed for function mv88e61xx_busychk_multic-fixed
918     2. PHY dev address error detection- fixed
919     3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
920     4. invalid data read ptr was refered for RD_PHY in case of
921         multichip addressing mode -fixed
922
923     The Multichip Address mode is tested with RD6281A board having
924     MV88E6165 switch on it
925
926     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
927     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
928
929 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
930 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
931 Date:   Wed Jul 8 13:05:11 2009 +0200
932
933     arm: Kirkwood: Check the error summary bit for error detection
934
935     The Marvell documentation for the 88f6281 states that the error coding
936     is only valid if the error summary and last frame bits in the transmit
937     descriptor status field are set. This patch adds checks for these for
938     transmit (I would get transmit errors on bootp with the current check,
939     which I believe are spurious).
940
941     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
942     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
943
944 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
945 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
946 Date:   Wed Jul 8 13:03:18 2009 +0200
947
948     arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
949
950     kwgbe_send/recv both have loops waiting for the hardware to set  a bit.
951     GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
952     patch uses readl to force a read from device memory. Other volatile
953     accesses have also been replaced with readl/writel where appropriate
954     (as per suggestions on the U-boot mailing list).
955
956     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
957     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
958
959 commit 3f6b18ffd94621625de961bc566022b0266790f5
960 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
961 Date:   Thu Jul 2 13:21:22 2009 -0400
962
963     MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
964
965     This patch sets the returned value to 0xFFFF if the PHY does not exist
966     and does not assert Transfer Acknowledge. A NULL check for the value
967     pointer is also added for buffer overflow protection.
968
969     Without this patch 'mii info' will  show 'phantom' devices because the
970     value will be not be initialized and return with some random value.
971
972     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
973     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
974
975 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
976 Author: Ben Warren <biggerbadderben@gmail.com>
977 Date:   Mon Jul 20 22:01:11 2009 -0700
978
979     Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
980
981     All in-tree boards that use this controller have CONFIG_NET_MULTI added
982     Also:
983      - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
984      - cleaned up line lengths
985      - modified all boards that override weak function in this driver
986      - added
987
988     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
989     Tested-by: Mike Frysinger <vapier@gentoo.org>
990
991 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
992 Author: Ben Warren <biggerbadderben@gmail.com>
993 Date:   Fri Jul 17 00:50:15 2009 -0700
994
995     Add warning about upcoming removal of old Ethernet API
996
997     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
998
999 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
1000 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1001 Date:   Thu Jul 2 16:15:13 2009 +0530
1002
1003     P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
1004
1005     These PHYs are on P2020RDB platform.
1006
1007     Also revamped Freescale copyright message in drivers/net/tsec.c.
1008
1009     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1010     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1011
1012 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
1013 Author: Robin Getz <rgetz@blackfin.uclinux.org>
1014 Date:   Mon Jul 20 14:53:54 2009 -0400
1015
1016     Add DNS support
1017
1018     On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
1019
1020     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
1021     >
1022     > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
1023     > the serverip environment var is updated.
1024     >
1025     > Probably there are some cosmetic issues with the patch. Unfortunatly I
1026     > do not have the time to correct these. So if anybody else likes DNS
1027     > support in U-Boot and has the time, feel free to patch it in the main tree.
1028
1029     Here it is again - slightly modified & smaller:
1030       - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
1031       - README.dns is added
1032       - syntax is changed (now takes a third option, the env var to store
1033         the result in)
1034       - add a random port() function in net.c
1035       - sort Makefile in ./net/Makefile
1036       - dns just returns unless a env var is given
1037       - run through checkpatch, and clean up style issues
1038       - remove packet from stack
1039       - cleaned up some comments
1040       - failure returns much faster (if server responds, don't wait for
1041         timeout)
1042       - use built in functions (memcpy) rather than byte copy.
1043
1044     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
1045     Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
1046     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1047
1048 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
1049 Author: Kim Phillips <kim.phillips@freescale.com>
1050 Date:   Fri Jul 17 12:17:00 2009 -0500
1051
1052     net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
1053
1054     fix this gcc 4.4 warning:
1055
1056     tsec.c: In function 'tsec_init':
1057     tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
1058
1059     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1060     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1061
1062 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
1063 Author: Mike Frysinger <vapier@gentoo.org>
1064 Date:   Sat Jul 18 21:04:08 2009 -0400
1065
1066     net: rename NetRxPkt to NetRxPacket
1067
1068     The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
1069     rename the minor detractor to follow suite.
1070
1071     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1072     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1073
1074 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
1075 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
1076 Date:   Thu Jun 25 16:33:04 2009 +0900
1077
1078     sh: sh_eth: Remove garbage from printf
1079
1080     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
1081     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1082     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1083
1084 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
1085 Author: Andreas Pretzsch <apr@cn-eng.de>
1086 Date:   Thu Jul 9 21:50:05 2009 +0200
1087
1088     smc911x: add support for LAN9221
1089
1090     Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
1091     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1092
1093 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
1094 Author: David Brownell <david-b@pacbell.net>
1095 Date:   Tue Jun 9 11:14:24 2009 -0700
1096
1097     rm9200 ethernet driver: board-specific quirk (csb337)
1098
1099     CSB337 boards originally shipped with MicroMonitor, not U-Boot;
1100     and with a version using a different convention for recording
1101     Ethernet addresses than anyone else.  To avoid breaking Linux
1102     when it uses U-Boot, have it use the same convention on that
1103     hardware.
1104
1105     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
1106     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1107
1108 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
1109 Author: Heiko Schocher <hs@denx.de>
1110 Date:   Thu Jul 16 09:58:31 2009 +0200
1111
1112     arm, kirkwood: added kw_gpio_set_valid() in gpio.h
1113
1114     Signed-off-by: Heiko Schocher <hs@denx.de>
1115
1116 commit ec16441085f471c03a8c0909579463e31e5b947a
1117 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
1118 Date:   Mon Jun 29 14:45:08 2009 +0200
1119
1120     Kirkwood: add Marvell Kirkwood gpio driver
1121
1122     Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
1123     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
1124     Tested-by: Heiko Schocher <hs@denx.de>
1125
1126 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
1127 Author: Heiko Schocher <hs@denx.de>
1128 Date:   Thu Jul 16 09:59:10 2009 +0200
1129
1130     arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
1131
1132     Signed-off-by: Heiko Schocher <hs@denx.de>
1133
1134 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
1135 Author: Prafulla Wadaskar <prafulla@marvell.com>
1136 Date:   Thu Jul 16 21:02:24 2009 +0530
1137
1138     Marvell RD6281A Board support
1139
1140     This is Marvell's 88F6281_A0 based reference design board
1141
1142     This patch is tested for-
1143     1. Boot from DRAM/NAND flash/NFS
1144     2. File transfer using tftp and loadb
1145     3. NAND flash read/write/erase
1146
1147     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1148     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1149
1150 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
1151 Author: Piotr Ziecik <kosmo@semihalf.com>
1152 Date:   Fri Jul 17 16:35:19 2009 +0200
1153
1154     api: Fix broken build on ARM.
1155
1156     This patch fixes broken build introduced by commit
1157     84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
1158     ifdef CONFIG_API already handle by the Makefile).
1159
1160     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
1161
1162 commit 48677a1ef5f82adca49145a7baf11ece77f51945
1163 Author: Wolfgang Denk <wd@denx.de>
1164 Date:   Wed Jul 22 23:53:23 2009 +0200
1165
1166     Fix "ld: cannot find -lstubs" build error
1167
1168     Commit 1bc15386 moved the examples/ to examples/standalone but failed
1169     to adapt the Makefiles that need to link against libstubs.a
1170
1171     Signed-off-by: Wolfgang Denk <wd@denx.de>
1172     Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1173
1174 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
1175 Author: Wolfgang Denk <wd@denx.de>
1176 Date:   Sat Jul 18 20:47:36 2009 +0200
1177
1178     at91cap9adk: fix #ifdef/#endif pairing
1179
1180     The #ifdef/#endif pairing in this file was obviously messed up.
1181
1182     Signed-off-by: Wolfgang Denk <wd@denx.de>
1183
1184 commit 6b96a20d512b04a808438553874c00cf40812c44
1185 Author: Minkyu Kang <mk7.kang@samsung.com>
1186 Date:   Mon Jul 20 11:40:01 2009 +0900
1187
1188     ARM Cortex A8: Move OMAP3 specific reset handler
1189
1190     Because of the reset_cpu is soc specific, should be move to soc
1191
1192     Cc: Dirk Behme <dirk.behme@googlemail.com>
1193     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
1194
1195 commit 048e7efe91f66094f868281c12e488ce2bae8976
1196 Author: Kumar Gala <galak@kernel.crashing.org>
1197 Date:   Wed Jul 22 10:12:39 2009 -0500
1198
1199     85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
1200
1201     The pixis code used in8/out8 all over the place.  Replace it with
1202     in_8/out_8 macros.
1203
1204     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1205
1206 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
1207 Author: Peter Tyser <ptyser@xes-inc.com>
1208 Date:   Tue Jul 21 13:51:08 2009 -0500
1209
1210     xpedite5370: Enable NAND command support
1211
1212     Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
1213     via the 'nand' command.
1214
1215     Previously, the XPedite5370's NAND chip selects were properly
1216     configured, but NAND support was not enabled.
1217
1218     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1219     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1220
1221 commit 39121c0896a6760bd436d88c17892f49a97902d0
1222 Author: Peter Tyser <ptyser@xes-inc.com>
1223 Date:   Tue Jul 21 13:51:07 2009 -0500
1224
1225     xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
1226
1227     Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
1228     support uncompressing images larger than 8 MB when using the bootm
1229     command.
1230
1231     Note that recent Linux kernels for the 85xx and 86xx map greater than
1232     16MB of memory on bootup, but we use 16MB to maintain compatibility with
1233     older Linux kernels for now.
1234
1235     Signed-off-by: Nate Case <ncase@xes-inc.com>
1236     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1237     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1238
1239 commit 58f31b602dfd52eb7836ab82caa587514e046f02
1240 Author: Peter Tyser <ptyser@xes-inc.com>
1241 Date:   Sun Jul 19 19:17:41 2009 -0500
1242
1243     xpedite5370: Fix I2C GPIO initialization typo
1244
1245     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1246     Acked-by: Heiko Schocher<hs@denx.de>
1247     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1248
1249 commit 5ff821006c6e7647d183ea95817044943bb22e7e
1250 Author: Peter Tyser <ptyser@xes-inc.com>
1251 Date:   Sun Jul 19 19:17:40 2009 -0500
1252
1253     xpedite5200,5370: Use buffered NOR flash writes
1254
1255     Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
1256     improve NOR flash write speeds
1257
1258     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1259     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1260
1261 commit d9c147f371800a479a507a816b2fe572c97da197
1262 Author: Peter Tyser <ptyser@xes-inc.com>
1263 Date:   Fri Jul 17 10:14:48 2009 -0500
1264
1265     85xx, 86xx: Add common board_add_ram_info()
1266
1267     Previously, 85xx and 86xx boards would display DRAM information on
1268     bootup such as:
1269
1270     ...
1271     I2C:   ready
1272     DRAM:
1273     Memory controller interleaving enabled: Bank interleaving!
1274      2 GB
1275     FLASH: 256 MB
1276     ...
1277
1278     This patch moves the printing of the DRAM controller configuration to a
1279     common board_add_ram_info() function which prints out DDR type, width,
1280     CAS latency, and ECC mode.  It also makes the DDR interleaving
1281     information print out in a more sane manner:
1282
1283     ...
1284     I2C:   ready
1285     DRAM:   2 GB (DDR2, 64-bit, CL=4, ECC on)
1286            DDR Controller Interleaving Mode: bank
1287     FLASH: 256 MB
1288     ...
1289
1290     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1292
1293 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
1294 Author: Peter Tyser <ptyser@xes-inc.com>
1295 Date:   Fri Jul 17 10:14:47 2009 -0500
1296
1297     tqm85xx: Remove board_add_ram_info()
1298
1299     This is in preparation for adding one common 8xxx board_add_ram_info()
1300     function for all 8xxx boards
1301
1302     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1303     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1304
1305 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
1306 Author: Peter Tyser <ptyser@xes-inc.com>
1307 Date:   Fri Jul 17 10:14:46 2009 -0500
1308
1309     xes: Remove 8xxx board_add_ram_info() function
1310
1311     This is in preparation for adding one common 8xxx board_add_ram_info()
1312     fuction for all 8xxx boards
1313
1314     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1315     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1316
1317 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
1318 Author: Peter Tyser <ptyser@xes-inc.com>
1319 Date:   Fri Jul 17 10:14:45 2009 -0500
1320
1321     86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
1322
1323     Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
1324     the 86xx user's manual and other Freescale architectures
1325
1326     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1327     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1328
1329 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
1330 Author: Roy Zang <tie-fei.zang@freescale.com>
1331 Date:   Thu Jul 9 10:05:48 2009 +0800
1332
1333     85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
1334
1335     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
1336     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1337
1338 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
1339 Author: Kumar Gala <galak@kernel.crashing.org>
1340 Date:   Tue Jul 14 22:42:01 2009 -0500
1341
1342     85xx: Report which "bank" of NOR flash we are booting from on FSL boards
1343
1344     The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
1345     swizzling the upper address bits of the NOR flash we boot out of which
1346     creates the concept of "virtual" banks.  This is useful in that we can
1347     flash a test of image of u-boot and reset to one of the virtual banks
1348     while still maintaining a working image in "bank 0".
1349
1350     The PIXIS FPGA exposes registers on LBC which we can use to determine
1351     which "bank" we are booting out of (as well as setting which bank to
1352     boot out of).
1353
1354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1355
1356 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
1357 Author: Kumar Gala <galak@kernel.crashing.org>
1358 Date:   Wed Jul 15 13:45:00 2009 -0500
1359
1360     86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
1361
1362     The MPC8641HPCN board is capable of swizzling the upper address bit of
1363     the NOR flash we boot out of which creates the concept of "virtual"
1364     banks.  This is useful in that we can flash a test of image of u-boot
1365     and reset to one of the virtual banks while still maintaining a
1366     working image in "bank 0".
1367
1368     The PIXIS FPGA exposes registers on LBC which we can use to determine
1369     which "bank" we are booting out of (as well as setting which bank to
1370     boot out of).
1371
1372     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1373
1374 commit caf72ff329759b4da71352ab098537c7698c0e9f
1375 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
1376 Date:   Tue Jul 21 10:45:49 2009 +0200
1377
1378     Refresh LZMA-lib to v4.65
1379
1380     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
1381
1382 commit 70ebf31633f372a24505e47846b2628e8435ea37
1383 Author: Wolfgang Denk <wd@denx.de>
1384 Date:   Fri Jul 17 23:35:29 2009 +0200
1385
1386     AT91: factor out ROUND() macro
1387
1388     A large number of boards (all AT91 based) duplicated the ROUND()
1389     macro in their board specific config files. Add the definition to
1390     include/common.h and clean up the board config files.
1391
1392     Signed-off-by: Wolfgang Denk <wd@denx.de>
1393
1394 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
1395 Author: Kumar Gala <galak@kernel.crashing.org>
1396 Date:   Wed Jul 15 08:54:50 2009 -0500
1397
1398     85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
1399
1400     We have always mapped at least 16M in the kernel and we have seen cases
1401     with new kernel features that a kernel image needs more than 8M of
1402     memory.
1403
1404     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1405
1406 commit d4abc757c26c531293f5bbc4262ade44a317eec9
1407 Author: Peter Tyser <ptyser@xes-inc.com>
1408 Date:   Mon Jul 20 19:02:21 2009 -0500
1409
1410     Move api_examples to examples/api
1411
1412     Also add a rule to remove demo.bin which was previously leftover
1413     after a "make clean"
1414
1415     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1416
1417 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
1418 Author: Heiko Schocher <hs@denx.de>
1419 Date:   Tue Jul 21 06:37:28 2009 +0200
1420
1421     83xx, kmeter: fix compile error
1422
1423     CONFIG_SYS_MALLOC_LEN is defined in the board config, and
1424     the keymile-common.h, which collects common options used
1425     by all keymile-boards. This results in a compile error
1426     when compiling the kmeter1 board. So remove this define
1427     in the board config file.
1428
1429     Signed-off-by: Heiko Schocher <hs@denx.de>
1430
1431 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
1432 Author: Heiko Schocher <hs@denx.de>
1433 Date:   Thu Jul 9 12:04:26 2009 +0200
1434
1435     i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
1436
1437     This patch adds the possibility to call a board specific
1438     i2c bus reset routine for the fsl_i2c bus driver, and adds
1439     this option for the keymile kmeter1 board.
1440
1441     The deblock sequence for this board is implemented and
1442     tested in the following way:
1443
1444     CR = 0x20 (release SDA and SCL pin)
1445     CR = 0xa0 (start read)
1446     dummy read
1447     dummy read
1448     if 2. dummy read == 0x00
1449         3. dummy read
1450
1451     CR = 0x80 (SDA and SCL now 1 SR = 0x86)
1452     CR = 0x00 (Modul reset SR=0x81)
1453     CR = 0x80 (SDA and SCL = 1, SR = 0x81)
1454
1455     Signed-off-by: Heiko Schocher <hs@denx.de>
1456
1457 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
1458 Author: Peter Tyser <ptyser@xes-inc.com>
1459 Date:   Fri Jul 10 11:03:19 2009 -0500
1460
1461     Move examples/ to examples/standalone
1462
1463     The current files in examples are all standalone application examples,
1464     so put them in their own subdirectory for organizational purposes
1465
1466     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1467
1468 commit b220c64d86f7c705a183302c3b50076d7e5d876c
1469 Author: Peter Tyser <ptyser@xes-inc.com>
1470 Date:   Fri Jul 10 11:03:15 2009 -0500
1471
1472     Move architecture specific config.mk files into subdirs
1473
1474     This cleans up U-Boot's toplevel directory a bit and makes the
1475     architecture 'config.mk' file naming and location similar to board
1476     and cpu 'config.mk' files
1477
1478     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1479
1480 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
1481 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
1482 Date:   Fri Jul 10 18:25:34 2009 +0800
1483
1484     Add "tags" to .gitignore file.
1485
1486     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
1487     Signed-off-by: Wolfgang Denk <wd@denx.de>
1488
1489 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
1490 Author: Heiko Schocher <hs@denx.de>
1491 Date:   Thu Jul 9 12:04:18 2009 +0200
1492
1493     powerpc: updates for the keymile boards
1494
1495     - CONFIG_SYS_MAX_I2C_BUS changed to 1
1496       We use only one I2C hardwarecontroller on this boards, so
1497       change the CONFIG_SYS_MAX_I2C_BUS to 1.
1498     - common: dont print errormsg if second IVM Block lacks.
1499     - 82xx, mgcoge: fix double mtdpart entry in environment
1500     - 82xx, mgcoge: activate on second Flash the second bank.
1501     - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
1502     - common: Change malloc size to 1MByte for all Keymile boards
1503         We need a bigger malloc area for the environment support (128k)
1504         on some Keymile boards (kmeter1) and the upcoming UBI support.
1505         Change it to 1MB for all Keymile boards to be on the save side.
1506         Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
1507         UBI/UBIFS support.
1508     - Add UBI support to all Keymile boards
1509     - change manner of writing "/localbus/ranges" node
1510         instead of writting the complete "/localbus/ranges" node
1511         before booting Linux, only update the ranges entries
1512         which gets dynamical detected (size of flashes).
1513         This is needed, because keymile adds in the DTS
1514         "/localbus/ranges" node entries, which u-boot must
1515         not overwrite/delete.
1516     - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
1517         The Intel P30 chip has 2 non-identical chips on
1518         one die, so we need to define 2 seperate regions
1519         that are scanned by physmap_of independantly.
1520     - kmeter1: Add MTD concat support to Keymile boards
1521     - 82xx, mgcoge: add "unlock=yes" to default environment
1522     - added CONFIG_MTD_DEVICE to get in sync with mainline code
1523
1524     Signed-off-by: Heiko Schocher <hs@denx.de>
1525     Signed-off-by: Stefan Roese <sr@denx.de>
1526
1527 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
1528 Author: galak <galak@ducky.am.freescale.net>
1529 Date:   Tue Jul 7 15:53:21 2009 -0500
1530
1531     fsl_sata: Fix compiler warnings shown by gcc-4.4
1532
1533     Update fsl_sata to use common structures instead of casting
1534     back and forth between the fsl specific ones and the common ones
1535     (which are identical).
1536
1537     fsl_sata.c: In function 'scan_sata':
1538     fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1539     fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1540     fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1541     fsl_sata.c:545: note: initialized from here
1542     fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1543     fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1544     fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1545     fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1546     fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
1547     ...
1548
1549     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1550
1551 commit 20938e54a207472a090f04f20f30c9e32b14137e
1552 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
1553 Date:   Tue Jul 7 15:58:51 2009 +0200
1554
1555     Add unaligned.h for arm
1556
1557     This patch adds unaligned.h for ARM (needed to build with LZO
1558     compression). The file is taken from the linux kernel, but includes
1559     u-boot headers instead.
1560
1561     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
1562     Acked-by: Stefan Roese <sr@denx.de>
1563
1564 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
1565 Author: Peter Tyser <ptyser@xes-inc.com>
1566 Date:   Sun Jul 19 19:17:42 2009 -0500
1567
1568     Remove last remanants of unused CONFIG_I2C_CMD_TREE
1569
1570     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1571
1572 commit f6ca3b70949790ab5438d6c9a592216cc3616110
1573 Author: Andrzej Wolski <awolski@poczta.fm>
1574 Date:   Fri Jul 17 22:26:54 2009 +0200
1575
1576     ubi: help message correction
1577
1578     Fix incorrect information about size units and correct typo.
1579
1580     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
1581     Signed-off-by: Stefan Roese <sr@denx.de>
1582
1583 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
1584 Author: Peter Tyser <ptyser@xes-inc.com>
1585 Date:   Sun Jul 19 19:17:42 2009 -0500
1586
1587     Remove last remanants of unused CONFIG_I2C_CMD_TREE
1588
1589     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1590
1591 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
1592 Author: Andrzej Wolski <awolski@poczta.fm>
1593 Date:   Fri Jul 17 22:26:54 2009 +0200
1594
1595     ubi: help message correction
1596
1597     Fix incorrect information about size units and correct typo.
1598
1599     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
1600     Signed-off-by: Stefan Roese <sr@denx.de>
1601
1602 commit b86b85e2611d57d834795a92453431a1a340c3c9
1603 Author: Ilya Yanok <yanok@emcraft.com>
1604 Date:   Mon Jun 29 17:53:16 2009 +0400
1605
1606     mmc: set bus width to 1 and clock to minimum early during initialization
1607
1608     We need to switch back to 1-bit before initialization or SD 2.0 cards
1609     will fail to send SCR if we've switched to 4-bit already.
1610
1611     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1612
1613 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
1614 Author: Shinya Kuribayashi <skuribay@pobox.com>
1615 Date:   Sat Jun 20 19:14:33 2009 +0900
1616
1617     config.mk: Remove unused HPATH
1618
1619     This variable is not unused anywhere.
1620
1621     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
1622
1623 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
1624 Author: Grzegorz Bernacki <gjb@semihalf.com>
1625 Date:   Wed Jun 17 16:20:14 2009 +0200
1626
1627     digsy mtc: Enable command line history.
1628
1629     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
1630
1631 commit 37566090766d61beef70c62986b90749920255d8
1632 Author: Mike Frysinger <vapier@gentoo.org>
1633 Date:   Thu Jul 2 19:23:25 2009 -0400
1634
1635     compiler.h: unify system ifdef cruft here
1636
1637     Shove a lot of the HOSTCC and related #ifdef checking crap into the new
1638     compiler.h header so that we can keep all other headers nice and clean.
1639
1640     Also introduce custom uswap functions so we don't have to rely on the non
1641     standard implementations that a host may (or may not in the case of OS X)
1642     provide.  This allows mkimage to finally build cleanly on an OS X system.
1643
1644     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1645
1646 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
1647 Author: Kim Phillips <kim.phillips@freescale.com>
1648 Date:   Mon Jun 15 11:50:40 2009 -0500
1649
1650     common: fix 'dummy' is used uninitialized in this function warning
1651
1652     fix this gcc 4.4 warning:
1653
1654     xyzModem.c: In function 'xyzModem_stream_open':
1655     xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
1656
1657     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1658
1659 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
1660 Author: Mike Frysinger <vapier@gentoo.org>
1661 Date:   Sun Jun 14 23:33:14 2009 -0400
1662
1663     push CROSS_COMPILE out to $(ARCH)_config.mk
1664
1665     Each arch should handle setting a proper default CROSS_COMPILE value in
1666     their own config.mk file rather than having to maintain a large ugly list
1667     in the Makefile.  By using conditional assignment, we don't have to worry
1668     about the variable already being set (env/cmdline/etc...).
1669
1670     The common config.mk file takes care of exporting CROSS_COMPILE already,
1671     and while a few variables (toolchain ones) utilize CROSS_COMPILE before
1672     including the arch config.mk, they do so with deferred assignment.
1673
1674     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1675
1676 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
1677 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1678 Date:   Sat Jun 13 12:55:37 2009 +0200
1679
1680     malloc.h: protect it against multiple include
1681
1682     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1683
1684 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
1685 Author: Wolfgang Denk <wd@denx.de>
1686 Date:   Sun Jul 19 19:37:24 2009 +0200
1687
1688     Fix boards broken after removal of legacy NAND and DoC support
1689
1690     Commit 2419169f removed support for legacy NAND and disk on chip but
1691     missed to update the code for a few boards. This patch fixes the
1692     resulting build issues.
1693
1694     Signed-off-by: Wolfgang Denk <wd@denx.de>
1695
1696 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
1697 Author: Wolfgang Denk <wd@denx.de>
1698 Date:   Sun Jul 19 19:32:37 2009 +0200
1699
1700     cmd_flash.c: fix fix compile error for boards with DataFlash
1701
1702     Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
1703     'addr_first'/'addr_last'") changed the #ifdef logic areound the
1704     declaration of these variables and missed a combination of settings
1705     of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
1706
1707     Also spotted by Alessandro Rubini <rubini@gnudd.com>
1708
1709     Signed-off-by: Wolfgang Denk <wd@denx.de>
1710
1711 commit 341245a28830d3261c41b09d958eeea7bb93587a
1712 Author: Wolfgang Denk <wd@denx.de>
1713 Date:   Sun Jul 19 12:05:15 2009 +0200
1714
1715     pcm030: fix out-of-tree building
1716
1717     Commit 0a87dd90 that was supposed to fix out-of-tree building for the
1718     pcm030 board was unfortunately incomplete.
1719
1720     Signed-off-by: Wolfgang Denk <wd@denx.de>
1721
1722 commit 8bf29b59fce8cc381114929082202d800e313ad5
1723 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
1724 Date:   Tue Jul 7 13:58:51 2009 +0200
1725
1726     Add unaligned.h for arm
1727
1728     This patch adds unaligned.h for ARM (needed to build with LZO
1729     compression). The file is taken from the linux kernel, but includes
1730     u-boot headers instead.
1731
1732     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
1733     Acked-by: Stefan Roese <sr@denx.de>
1734
1735 commit e405afab1dda66c9df3733f6b779d72fc36a0162
1736 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
1737 Date:   Fri Jun 12 18:10:12 2009 +0900
1738
1739     Canyonlands SATA harddisk driver
1740
1741     This patch adds a SATA harddisk driver for the canyonlands.
1742     This patch is kernel driver's porting.
1743     This patch corresponded to not cmd_scsi but cmd_sata.
1744     This patch divided an unused member with ifndef __U_BOOT__ in the structure.
1745
1746     [environment variable, boot script]
1747     setenv bootargs root=/dev/sda7 rw
1748     setenv bootargs ${bootargs} console=ttyS0,115200
1749     ext2load sata 0:2 0x400000 /canyonlands/uImage
1750     ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
1751     fdt addr 0x800000 0x4000
1752     bootm 0x400000 - 0x800000
1753
1754     If you drive SATA-2 disk on Canyonlands, you must change parts from
1755     PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
1756     following disks:
1757
1758     1.Vendor: Fujitsu    Type: MHW2040BS
1759     2.Vendor: Fujitsu    Type: MHW2060BK
1760     3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
1761     4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
1762     5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
1763     6.Vendor: Hitachi    Type: HTS543232L9A300 (CONFIG_LBA48 required)
1764     7.Vendor: Seagate    Type: ST31000333AS (CONFIG_LBA48 required)
1765     8.Vendor: Transcend  Type: TS32GSSD25S-M
1766     9.Vendor: MTRON              Type: MSD-SATA1525-016
1767
1768     Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
1769
1770 commit 52a0e2dee90c17e39634de814b16b96061cfb472
1771 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1772 Date:   Wed Jun 10 19:09:40 2009 +0200
1773
1774     Add support for the Tundra TSI148 VME-bridge
1775
1776     From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1777
1778     This patch adds support for the Tundra TSI148 VME-bridge. It's used on
1779     the upcoming esd VME8349 board.
1780
1781     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
1782     Signed-off-by: Stefan Roese <sr@denx.de>
1783
1784 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
1785 Author: Mike Frysinger <vapier@gentoo.org>
1786 Date:   Thu Jul 16 19:05:30 2009 -0400
1787
1788     Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
1789
1790     MAC addresses should not be hardcoded in boards to avoid random link level
1791     conflicts.
1792
1793     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1794
1795 commit baf357050353aee30c04f3f4b868426cb54468ca
1796 Author: Mike Frysinger <vapier@gentoo.org>
1797 Date:   Fri Jul 10 10:42:06 2009 -0400
1798
1799     Blackfin: bf533-stamp: back down SCLK a bit
1800
1801     While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
1802     SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
1803     the shortened SDRAM traces.  So lower the SCLK speed down to a value that
1804     all three can handle.
1805
1806     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1807
1808 commit 490fe7349102012c48730f6fc14ef36c8d155068
1809 Author: Mike Frysinger <vapier@gentoo.org>
1810 Date:   Thu Jul 9 20:56:56 2009 -0400
1811
1812     Blackfin: split cpu COBJS into multilines
1813
1814     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1815
1816 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
1817 Author: Mike Frysinger <vapier@gentoo.org>
1818 Date:   Thu Jul 9 01:15:05 2009 -0400
1819
1820     Blackfin: add os log functions
1821
1822     Part of the mini Blackfin ABI with operating systems is that they can use
1823     0x4f0-0x4f8 to pass log buffers to/from bootloaders.  So add support to
1824     U-Boot for reading the log buffer.
1825
1826     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1827
1828 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
1829 Author: Kim Phillips <kim.phillips@freescale.com>
1830 Date:   Sat Jul 18 18:42:13 2009 -0500
1831
1832     mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
1833
1834     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1835
1836 commit d39041fcadb1231430201d298c31f6be03d654f7
1837 Author: Wolfgang Denk <wd@denx.de>
1838 Date:   Sun Jul 19 01:15:52 2009 +0200
1839
1840     PATI board: fix compiler warnings
1841
1842     Fix these:
1843     pati.c: In function 'checkboard':
1844     pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
1845     ../common/flash.c: In function 'write_word':
1846     ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
1847     cmd_pati.c: In function 'do_pati':
1848     cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
1849
1850     Signed-off-by: Wolfgang Denk <wd@denx.de>
1851
1852 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
1853 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1854 Date:   Sat May 16 12:14:56 2009 +0200
1855
1856     mpl: printing current stdio devices cleanup
1857
1858     Currently the mpl boards duplicate the code to print the current
1859     devices from common/console.c; use stdio_print_current_devices()
1860     instead
1861
1862     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1863
1864     Edited commit message.
1865
1866     Signed-off-by: Wolfgang Denk <wd@denx.de>
1867
1868 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
1869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1870 Date:   Sat May 16 12:14:55 2009 +0200
1871
1872     console: unify printing current devices
1873
1874     Create stdio_print_current_devices() for this purpose
1875
1876     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1877
1878 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
1879 Author: Wolfgang Denk <wd@denx.de>
1880 Date:   Sat Jul 18 23:18:14 2009 +0200
1881
1882     cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
1883
1884     Signed-off-by: Wolfgang Denk <wd@denx.de>
1885
1886 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
1887 Author: Tom Rix <Tom.Rix@windriver.com>
1888 Date:   Tue Jun 30 15:04:13 2009 -0500
1889
1890     OMAP3 Fix compiler warning for v7_flush_dcache_all
1891
1892     On build of omap3 targets in MAKEALL, the *.ERR files have
1893
1894     cpu.c: In function 'cleanup_before_linux':
1895     cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
1896     cpu.c:64: warning: implicit declaration of function 'get_device_type
1897
1898     The functions v7_flush_dcache_all and get_device_type are declared
1899     in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
1900     declare the functions.
1901
1902     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1903
1904 commit dba107b967332fc8a35867f4d58038626c968800
1905 Author: Wolfgang Denk <wd@denx.de>
1906 Date:   Sat Jul 18 22:09:38 2009 +0200
1907
1908     ARM: make split_by_variant.sh output more useful
1909
1910     The board/armltd/integrator/split_by_variant.sh script used to print
1911     "Configuring for integrator*p board..." no matter which board name
1912     was being compiled. This made it difficult to match MAKEALL output to
1913     board names. This patch fixes this.
1914
1915     Signed-off-by: Wolfgang Denk <wd@denx.de>
1916
1917 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
1918 Author: Wolfgang Denk <wd@denx.de>
1919 Date:   Sat Jul 18 21:52:24 2009 +0200
1920
1921     NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
1922
1923     Commit 8d2effea added a warning for configurations that use NAND
1924     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
1925     failed to fix the affected boards.
1926
1927     This patch covers the non-PPC boards that were missed in the previous
1928     patch (commit 170c1972).
1929
1930     Signed-off-by: Wolfgang Denk <wd@denx.de>
1931
1932 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
1933 Author: Wolfgang Denk <wd@denx.de>
1934 Date:   Sat Jul 18 20:46:38 2009 +0200
1935
1936     at91cap9adk: fix #ifdef/#endif pairing
1937
1938     The #ifdef/#endif pairing in this file was obviously messed up.
1939
1940     Signed-off-by: Wolfgang Denk <wd@denx.de>
1941
1942 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
1943 Author: Prafulla Wadaskar <prafulla@marvell.com>
1944 Date:   Thu Jul 16 20:58:01 2009 +0530
1945
1946     Marvell MV88F6281GTW_GE Board support
1947
1948     This is Marvell's 88F6281_A0 based custom board developed
1949     for wireless access point product
1950
1951     This patch is tested for-
1952     1. Boot from DRAM/SPI flash/NFS
1953     2. File transfer using tftp and loadb
1954     3. SPI flash read/write/erase
1955     4. Booting Linux kernel and RFS from SPI flash
1956     5. Boot from USB supported
1957
1958     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
1959     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1960
1961 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
1962 Author: Prafulla Wadaskar <prafulla@marvell.com>
1963 Date:   Thu Jul 16 20:58:00 2009 +0530
1964
1965     Marvell Sheevaplug Board support
1966
1967     Reference:
1968     http://plugcomputer.org/
1969     http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
1970
1971     This patch is tested for-
1972     1. Boot from DRAM/NAND flash
1973     2. File transfer using tftp
1974     3. NAND flash read/write/erase
1975     4. Linux kernel and RFS Boot from NAND
1976     5. Enabled USB PHY init for kernel need
1977     6. Boot from USB supported
1978
1979     Note: to boot Kirkwood kernel with USB support,
1980         you should add "usb start" in the boot sequence
1981
1982     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
1983
1984 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
1985 Author: Wolfgang Denk <wd@denx.de>
1986 Date:   Sat Jul 18 18:00:25 2009 +0200
1987
1988     pcm030: fix out-of-tree building
1989
1990     Commit c9969947, which added support for the pcm030 board
1991     (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
1992
1993     Signed-off-by: Wolfgang Denk <wd@denx.de>
1994
1995 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
1996 Author: Wolfgang Denk <wd@denx.de>
1997 Date:   Sat Jul 18 16:36:11 2009 +0200
1998
1999     MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
2000
2001     Signed-off-by: Wolfgang Denk <wd@denx.de>
2002
2003 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
2004 Author: Wolfgang Denk <wd@denx.de>
2005 Date:   Sat Jul 18 16:13:18 2009 +0200
2006
2007     8xxx: fix warning: implicit declaration of function 'uec_standard_init'
2008
2009     Commit 8e55258f created function uec_standard_init() to initialize
2010     all UEC interfaces for 83xx and 85xx but failed to provide a
2011     prototype for it.
2012
2013     Signed-off-by: Wolfgang Denk <wd@denx.de>
2014
2015 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
2016 Author: Wolfgang Denk <wd@denx.de>
2017 Date:   Sat Jul 18 15:46:02 2009 +0200
2018
2019     MIP405T: fix compile problem
2020
2021     The "stdio/device: rework function naming convention" patch
2022     (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
2023
2024     Signed-off-by: Wolfgang Denk <wd@denx.de>
2025
2026 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
2027 Author: Wolfgang Denk <wd@denx.de>
2028 Date:   Sat Jul 18 15:32:10 2009 +0200
2029
2030     NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
2031
2032     Commit 8d2effea added a warning for configurations that use NAND
2033     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
2034     failed to fix the affected boards.
2035
2036     Signed-off-by: Wolfgang Denk <wd@denx.de>
2037
2038 commit 6e897a661fb9968ce354165a12cce82e4b889e04
2039 Author: Wolfgang Denk <wd@denx.de>
2040 Date:   Sat Jul 18 15:05:44 2009 +0200
2041
2042     CPCI750: fix compile problem
2043
2044     Commit bc0d3296 removed ppc_error_no.h from Marvell boards
2045     but forgot to update board/esd/cpci750/mv_eth.h
2046
2047     Signed-off-by: Wolfgang Denk <wd@denx.de>
2048
2049 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
2050 Author: Alessandro Rubini <rubini-list@gnudd.com>
2051 Date:   Fri Jul 17 14:42:11 2009 +0200
2052
2053     cmd_i2c: bugfix: add missing brace
2054
2055     The sub-command parser missed a brace, so "return 0;" is always
2056     taken and no error message is diplayed if you say "i2c scan"
2057     instead of "i2c probe", for example.
2058
2059     Proper brace is added. Also, a misleading and unneeded else
2060     is removed.
2061
2062     Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
2063
2064 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
2065 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2066 Date:   Sat May 16 12:14:54 2009 +0200
2067
2068     stdio/device: rework function naming convention
2069
2070     So far the console API uses the following naming convention:
2071
2072         ======Extract======
2073         typedef struct device_t;
2074
2075         int     device_register (device_t * dev);
2076         int     devices_init (void);
2077         int     device_deregister(char *devname);
2078         struct list_head* device_get_list(void);
2079         device_t* device_get_by_name(char* name);
2080         device_t* device_clone(device_t *dev);
2081         =======
2082
2083     which is too generic and confusing.
2084
2085     Instead of using device_XX and device_t we change this
2086     into stdio_XX and stdio_dev
2087
2088     This will also allow to add later a generic device mechanism in order
2089     to have support for multiple devices and driver instances.
2090
2091     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2092
2093     Edited commit message.
2094
2095     Signed-off-by: Wolfgang Denk <wd@denx.de>
2096
2097 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
2098 Author: Peter Tyser <ptyser@xes-inc.com>
2099 Date:   Wed Jul 15 00:01:08 2009 -0500
2100
2101     ppc: Fix compile error for boards with CONFIG_DDR_ECC
2102
2103     A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
2104     which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
2105     defined and resulted in errors such as:
2106
2107     Configuring for canyonlands board...
2108     fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
2109     processor"
2110     make[1]: *** No rule to make target `.depend', needed by `libdma.a'.  Stop.
2111
2112     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2113
2114 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
2115 Author: Prafulla Wadaskar <prafulla@marvell.com>
2116 Date:   Thu Jul 16 20:57:59 2009 +0530
2117
2118     include/config_cmd_default.h cleanup
2119
2120     arranged configurations in alphabetical order
2121     CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
2122
2123     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2124
2125 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
2126 Author: Mike Frysinger <vapier@gentoo.org>
2127 Date:   Sun Jun 14 21:35:22 2009 -0400
2128
2129     sata: namespace curr_device variable
2130
2131     The curr_device variable really should be namespaced with a "sata_" prefix
2132     since it is only used by the sata code.  It also avoids random conflicts
2133     with other pieces of code (like cmd_mmc):
2134     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
2135         multiple definition of `curr_device'
2136     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
2137
2138     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2139
2140 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
2141 Author: Mike Frysinger <vapier@gentoo.org>
2142 Date:   Sun Jun 14 21:35:21 2009 -0400
2143
2144     cmd_mmc: make curr_device static
2145
2146     The curr_device variable isn't used outside of cmd_mmc, so mark it static
2147     to avoid conflicts with other pieces of code (like sata which also exports
2148     a curr_device).  Otherwise we end up with stuff like:
2149     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
2150         multiple definition of `curr_device'
2151     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
2152
2153     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2154
2155 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
2156 Author: Mike Frysinger <vapier@gentoo.org>
2157 Date:   Sun Jun 14 21:35:16 2009 -0400
2158
2159     envcrc: add missing dependencies on env storage
2160
2161     When the envcrc building was made conditional, it missed a bunch of env
2162     storage types, so add all currently supported types.
2163
2164     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2165
2166 commit 2419169f5749d7af501b3b77a5336d1d535320de
2167 Author: Scott Wood <scottwood@freescale.com>
2168 Date:   Thu Jul 16 19:08:04 2009 -0500
2169
2170     Remove legacy NAND and disk on chip references from boards.
2171
2172     Signed-off-by: Scott Wood <scottwood@freescale.com>
2173
2174 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
2175 Author: Shinya Kuribayashi <skuribay@pobox.com>
2176 Date:   Sat Jun 20 19:10:14 2009 +0900
2177
2178     config.mk: Remove $(PCI_CLOCK) reference
2179
2180     The following commit introduced $(PCI_CLOCK) reference so that
2181     we could tweak `PCI_66M' definition via an environment variable.
2182
2183     > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
2184     > Author: Eran Liberty <liberty@freescale.com>
2185     > Date:   Thu Jul 28 10:08:46 2005 -0500
2186     >
2187     >     * Patch by Eran Liberty
2188     >       Add support for the Freescale MPC8349ADS board.
2189
2190     But I suggest a removal of it for the following reasons:
2191
2192     * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
2193       and it seems that MPC8349EMDS port is PCI_66M free.
2194
2195     * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
2196       but they don't need $(PCI_CLOCK) environment variable at all.
2197       PCI_66M is automatically configured via $(BOARD)_config names
2198       with the help of $(findstring _66_,$@).
2199
2200     * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
2201       so only a few people know the existence of it these days.
2202
2203     * Keep config.mk independent from $(BOARD) as much as possible.
2204
2205     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
2206     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2207
2208 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
2209 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2210 Date:   Sat May 23 21:42:36 2009 +0200
2211
2212     fix: missing autoconfig.mk from general Makefile
2213
2214     At the first run of make we generate the autoconf.mk and
2215     autoconf.mk.dep if not already the case and we currently include only
2216     to .dep
2217
2218     In order to use these autogenerated values we need to include it also
2219     even if it's included in config.mk but it's done before their
2220     generation
2221
2222     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2224
2225 commit 1ca298ced07327749b54321815f76fcddb2f9479
2226 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
2227 Date:   Thu Jul 9 16:07:30 2009 +0200
2228
2229     Added support for splash screen positioning
2230
2231     This patch adds support splash image positioning by adding an
2232     additional variable "splashpos" to the environment. Please see
2233     README for details.
2234
2235     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
2236     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2237     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2238
2239 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
2240 Author: Anatolij Gustschin <agust@denx.de>
2241 Date:   Tue Jul 7 13:11:36 2009 +0200
2242
2243     video: mb862xx: replace printf with puts
2244
2245     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2246
2247 commit cce99b2a7dd80683d61360aee56a6ece344950b2
2248 Author: Anatolij Gustschin <agust@denx.de>
2249 Date:   Tue Jul 7 13:27:07 2009 +0200
2250
2251     video: mb862xx: use macros instead of magic numbers
2252
2253     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2254
2255 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
2256 Author: Anatolij Gustschin <agust@denx.de>
2257 Date:   Tue Jul 7 13:24:08 2009 +0200
2258
2259     video: mb862xx: fix coding style and remove dead code
2260
2261     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2262
2263 commit 292ed489dba8cc97b458579003a8001cd4703cd8
2264 Author: Michal Simek <monstr@monstr.eu>
2265 Date:   Tue Jun 30 12:03:50 2009 +0200
2266
2267     microblaze: Remove ignored return type for __arch__swab16 function
2268
2269     This change remove compilation warnings.
2270
2271     Signed-off-by: Michal Simek <monstr@monstr.eu>
2272
2273 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
2274 Author: Michal Simek <monstr@monstr.eu>
2275 Date:   Tue Jun 30 12:02:45 2009 +0200
2276
2277     microblaze: Removed unused variables
2278
2279     Signed-off-by: Michal Simek <monstr@monstr.eu>
2280
2281 commit be33b046b549ad88c204c209508cd7657232ffbd
2282 Author: Scott Wood <scottwood@freescale.com>
2283 Date:   Wed Apr 1 15:02:13 2009 -0500
2284
2285     Remove legacy NAND and disk on chip code.
2286
2287     Legacy NAND had been scheduled for removal.  Any boards that use this
2288     were already not building in the previous release due to an #error.
2289
2290     The disk on chip code in common/cmd_doc.c relies on legacy NAND,
2291     and it has also been removed.  There is newer disk on chip code
2292     in drivers/mtd/nand; someone with access to hardware and sufficient
2293     time and motivation can try to get that working, but for now disk
2294     on chip is not supported.
2295
2296     Signed-off-by: Scott Wood <scottwood@freescale.com>
2297
2298 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
2299 Author: Stefan Roese <sr@denx.de>
2300 Date:   Thu Jun 4 16:40:36 2009 +0200
2301
2302     nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
2303
2304     This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
2305     defines such a 4k plus 218 bytes ECC layout.
2306
2307     Signed-off-by: Stefan Roese <sr@denx.de>
2308     Cc: Scott Wood <scottwood@freescale.com>
2309     Signed-off-by: Scott Wood <scottwood@freescale.com>
2310
2311 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
2312 Author: Stefan Roese <sr@denx.de>
2313 Date:   Thu Jul 16 15:13:04 2009 +0200
2314
2315     nand: ndfc: Remove unnecessary #ifdef's
2316
2317     Now that the 4xx NAND driver ndfc is moved to the common NAND driver
2318     directory we don't need this #ifdef's anymore.
2319
2320     Signed-off-by: Stefan Roese <sr@denx.de>
2321     Cc: Scott Wood <scottwood@freescale.com>
2322     Signed-off-by: Scott Wood <scottwood@freescale.com>
2323
2324 commit 12582ac771b0bf3852817c3bfa4be326522a0665
2325 Author: Stefan Roese <sr@denx.de>
2326 Date:   Thu Jul 16 15:12:48 2009 +0200
2327
2328     nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
2329
2330     Signed-off-by: Stefan Roese <sr@denx.de>
2331     Cc: Scott Wood <scottwood@freescale.com>
2332     Signed-off-by: Scott Wood <scottwood@freescale.com>
2333
2334 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
2335 Author: Valeriy Glushkov <gvv@lstec.com>
2336 Date:   Tue Jul 14 13:51:10 2009 +0300
2337
2338     nand: fixed failed reads on corrected ECC errors in nand_util.c
2339
2340     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
2341     Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
2342     Signed-off-by: Scott Wood <scottwood@freescale.com>
2343
2344 commit ed727d394c5ab139033719772dc95dc25cfa14f7
2345 Author: David Brownell <david-b@pacbell.net>
2346 Date:   Mon Jul 13 16:29:04 2009 -0700
2347
2348     Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
2349
2350     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2351     Signed-off-by: Scott Wood <scottwood@freescale.com>
2352
2353 commit 937076f84c5064f0a79105fce352ac7cf7b33643
2354 Author: Kyungmin Park <kmpark@infradead.org>
2355 Date:   Sat Jul 11 16:49:55 2009 +0900
2356
2357     MTD: OneNAND: Increase the environment size to 4KiB
2358
2359     Also use mtd operation instead of onenand functions
2360
2361     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2362     Signed-off-by: Scott Wood <scottwood@freescale.com>
2363
2364 commit bfadb17f69c256196620c32164775f063a59c34f
2365 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2366 Date:   Wed Jun 10 00:25:38 2009 +0400
2367
2368     mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
2369
2370     Since we have simple hwconfig interface now, we don't need
2371     pci_external_arbiter variable any longer.
2372
2373     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2374     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2375
2376 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
2377 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2378 Date:   Wed Jun 10 00:25:36 2009 +0400
2379
2380     mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
2381
2382     This patch simply converts the board to the hwconfig infrastructure.
2383
2384     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2385     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2386
2387 commit c78c678354c8321737aa07e86831ff14176f4ed5
2388 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2389 Date:   Wed Jun 10 00:25:31 2009 +0400
2390
2391     mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
2392
2393     fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
2394     also will fixup clock-frequency property.
2395
2396     Plus, since DR USB and eSDHC are mutually exclusive, we should
2397     only configure the eSDHC if asked through hwconfig.
2398
2399     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2400     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2401
2402 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
2403 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2404 Date:   Wed Jun 10 00:25:30 2009 +0400
2405
2406     mpc83xx: MPC837XERDB: Add support for FSL eSDHC
2407
2408     This patch adds support for eSDHC on MPC837XERDB boards. The WP
2409     switch doesn't seem to work on RDB boards though, the WP pin is
2410     always asserted (can see the pin state when it's in GPIO mode).
2411
2412     FSL DR USB and FSL eSDHC are mutually exclusive because of pins
2413     multiplexing, so user should specify 'esdhc' or 'dr_usb' options
2414     in the hwconfig environment variable to choose between the
2415     devices.
2416
2417     p.s.
2418     Now we're very close to a monitor len limit (196 bytes left using
2419     gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
2420
2421     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2422     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2423
2424 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
2425 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2426 Date:   Wed Jun 10 00:25:29 2009 +0400
2427
2428     fsl_esdhc: Add device tree fixups
2429
2430     This patch implements fdt_fixup_esdhc() function that is used to fixup
2431     the device tree.
2432
2433     The function adds status = "disabled" propery if esdhc pins muxed away,
2434     otherwise it fixups clock-frequency for esdhc nodes.
2435
2436     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2437     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2438
2439 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
2440 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2441 Date:   Wed Jun 10 00:25:27 2009 +0400
2442
2443     Add simple hwconfig infrastructure
2444
2445     This patch implements simple hwconfig infrastructure: an
2446     interface for software knobs to control a hardware.
2447
2448     This is very simple implementation, i.e. it is implemented
2449     via `hwconfig' environment variable. Later we could write
2450     some "hwconfig <enable|disable|list>" commands, ncurses
2451     interface for Award BIOS-like interface, and frame-buffer
2452     interface for AMI GUI[1] BIOS-like interface with mouse
2453     support[2].
2454
2455     Current implementation details/limitations:
2456
2457     1. Doesn't support options dependencies and mutual exclusion.
2458        We can implement this by integrating apt-get[3] into the
2459        u-boot. But I didn't bother yet.
2460
2461     2. Since we don't implement hwconfig command, i.e. we're working
2462        with the environement directly, there is no way to tell that
2463        toggling a particular option will need a reboot to take
2464        an effect. So, for now it's advised to always reboot the
2465        target after modifying hwconfig variable.
2466
2467     3. We support hwconfig options with arguments. For example,
2468
2469        set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
2470
2471        That means:
2472        - dr_usb - enable Dual-Role USB controller;
2473        - dr_usb:mode=peripheral - USB in Function mode;
2474        - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
2475
2476     The purpose of this simple implementation is to define some
2477     internal API and then we can continue improving user experience
2478     by adding more mature interface, like hwconfig command with
2479     bells and whistles. Or not adding, if we feel that current
2480     interface fits its needs.
2481
2482     [1] http://en.wikipedia.org/wiki/American_Megatrends
2483     [2] Regarding ncurses and GUI with mouse support -- I'm just
2484         kidding.
2485     [3] The comment regarding apt-get is also a joke, meaning that
2486         dependency tracking could be non-trivial. For example, for
2487         enabling HW feature X we may need to disable Y, and turn Z
2488         into reduced mode (like RMII-only interface for ethernet,
2489         no MII).
2490
2491         It's quite trivial to implement simple cases though.
2492
2493     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2494     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2495
2496 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
2497 Author: Jerry Van Baren <gvb.uboot@gmail.com>
2498 Date:   Wed Jul 15 20:42:59 2009 -0400
2499
2500     Improve U-Boot Porting Guide in the README
2501
2502     Update for...
2503     * BDI2000 -> BDI3000 (BDI2000 is obsolete).
2504     * Add a line to read the doc/README.* files
2505     * Fix coding standard violations
2506
2507     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
2508
2509 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
2510 Author: Kim Phillips <kim.phillips@freescale.com>
2511 Date:   Tue Jul 14 16:00:24 2009 -0500
2512
2513     mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
2514
2515     a.k.a cfi_mtd.c does as cfi_flash.c does.  This also prevents
2516     the TQM834x build from doing a:
2517
2518     cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
2519     cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
2520
2521     using gcc 4.4.
2522
2523     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2524     Signed-off-by: Stefan Roese <sr@denx.de>
2525
2526 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
2527 Author: Kim Phillips <kim.phillips@freescale.com>
2528 Date:   Tue Jul 7 18:04:21 2009 -0500
2529
2530     mpc83xx: increase MONITOR_LEN to offset growing pains
2531
2532     Saving the environment leads to overwriting u-boot itself,
2533     bricking boards.  Increase u-boot's image size so the environment
2534     base address doesn't end up overlapping u-boot text.
2535
2536     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2537
2538 commit c31e13260bcd048a94412a47b004386ea6112acf
2539 Author: Valeriy Glushkov <gvv@lstec.com>
2540 Date:   Tue Jun 30 15:48:41 2009 +0300
2541
2542     usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
2543
2544     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
2545     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2546
2547 commit d89e1c36891de793a20a929282acc0fc7b98feac
2548 Author: Valeriy Glushkov <gvv@lstec.com>
2549 Date:   Tue Jun 30 15:48:40 2009 +0300
2550
2551     usb: mpc834x: added support of the MPH USB controller in addition to the DR one
2552
2553     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
2554     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2555
2556 commit d9ac3d5a17ecef0beb70073018925e011b11684e
2557 Author: Kim Phillips <kim.phillips@freescale.com>
2558 Date:   Mon Jun 15 11:51:47 2009 -0500
2559
2560     mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
2561
2562     When enabling NAND support for a board, one must also define
2563     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
2564     for correct output.
2565
2566     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2567     Cc: Dave Liu <daveliu@freescale.com>
2568     Cc: Ron Madrid <ron_madrid@sbcglobal.net>
2569     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
2570
2571 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
2572 Author: Wolfgang Denk <wd@denx.de>
2573 Date:   Sun Jun 14 20:58:53 2009 +0200
2574
2575     mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
2576
2577     Signed-off-by: Wolfgang Denk <wd@denx.de>
2578
2579 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
2580 Author: Wolfgang Denk <wd@denx.de>
2581 Date:   Sun Jun 14 20:58:52 2009 +0200
2582
2583     aria: add JFFS2 and MTDPARTS support; adjust flash map
2584
2585     Signed-off-by: Wolfgang Denk <wd@denx.de>
2586
2587 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
2588 Author: Wolfgang Denk <wd@denx.de>
2589 Date:   Sun Jun 14 20:58:51 2009 +0200
2590
2591     aria: enable NAND flash support
2592
2593     Signed-off-by: Wolfgang Denk <wd@denx.de>
2594
2595 commit 13946925e850db5351982acb691d51716fc754e2
2596 Author: Wolfgang Denk <wd@denx.de>
2597 Date:   Sun Jun 14 20:58:50 2009 +0200
2598
2599     MPC512x: fix typo in comment listing the NAND driver name
2600
2601     Signed-off-by: Wolfgang Denk <wd@denx.de>
2602     Cc: Stefan Roese <sr@denx.de>
2603     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2604
2605 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
2606 Author: Wolfgang Denk <wd@denx.de>
2607 Date:   Sun Jun 14 20:58:49 2009 +0200
2608
2609     mecp5123: cleanup - remove dead code
2610
2611     Remove dead code that was obviously a left-over from copy & paste.
2612
2613     Signed-off-by: Wolfgang Denk <wd@denx.de>
2614     Cc: Stefan Roese <sr@denx.de>
2615     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2616
2617 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
2618 Author: Wolfgang Denk <wd@denx.de>
2619 Date:   Sun Jun 14 20:58:48 2009 +0200
2620
2621     aria: adjust memory controller initialization
2622
2623     Needed for Rev. 2 silicon at 400 MHz
2624
2625     Signed-off-by: Wolfgang Denk <wd@denx.de>
2626
2627 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
2628 Author: Wolfgang Denk <wd@denx.de>
2629 Date:   Sun Jun 14 20:58:47 2009 +0200
2630
2631     MPC512x: factor out common code
2632
2633     Now that we have 3 boards for the MPC512x it turns out that they all
2634     use the very same fixed_sdram() code.
2635
2636     This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
2637     and adds a new header file, include/asm-ppc/mpc512x.h, with some
2638     macros, inline functions and prototype definitions specific to MPC512x
2639     systems.
2640
2641     Signed-off-by: Wolfgang Denk <wd@denx.de>
2642     Cc: Stefan Roese <sr@denx.de>
2643     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2644
2645 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
2646 Author: Wolfgang Denk <wd@denx.de>
2647 Date:   Sun Jun 14 20:58:46 2009 +0200
2648
2649     mecp5123: fix build error
2650
2651     The mecp5123 board did not compile because the MSCAN Clock Control
2652     Registers were missing; these got added, but as an array instead
2653     of 4 individual registers. Adapt the code so it builds.
2654
2655     Signed-off-by: Wolfgang Denk <wd@denx.de>
2656     Cc: Stefan Roese <sr@denx.de>
2657     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2658
2659 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
2660 Author: Wolfgang Denk <wd@denx.de>
2661 Date:   Sun Jun 14 20:58:45 2009 +0200
2662
2663     MPC512x: Add MSCAN1...4 Clock Control Registers
2664
2665     Signed-off-by: Wolfgang Denk <wd@denx.de>
2666     Cc: Stefan Roese <sr@denx.de>
2667     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2668
2669 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
2670 Author: Wolfgang Denk <wd@denx.de>
2671 Date:   Sun Jun 14 20:58:44 2009 +0200
2672
2673     MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
2674
2675     When enabling NAND support for a board, one must also define
2676     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
2677     for correct output.
2678
2679     Signed-off-by: Wolfgang Denk <wd@denx.de>
2680     Cc: Stefan Roese <sr@denx.de>
2681     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2682
2683 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
2684 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
2685 Date:   Fri Jul 10 18:03:57 2009 +0800
2686
2687     issue write command to base for JEDEC flash
2688
2689     For JEDEC flash, we should issue word programming command relative to
2690     base address rather than sector base address. Original source makes
2691     SST Flash fails to program sectors which are not on the 0x10000 boundaries.
2692
2693     e.g.
2694     SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
2695     is 0x1000 bytes.
2696
2697     Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
2698     it sends to 0x46555 and the chip fails to recognize that address.
2699
2700     This patch is tested with SST39LF040.
2701
2702     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
2703     Signed-off-by: Stefan Roese <sr@denx.de>
2704
2705 commit 986922714ffd21ad39f48522d285fffc7aed56b1
2706 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2707 Date:   Sat May 2 11:53:50 2009 +0200
2708
2709     versatile: update config and merge to cfi flash driver
2710
2711     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2712     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
2713     Cc: Catalin Marinas <catalin.marinas@arm.com>
2714
2715 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
2716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2717 Date:   Sat May 2 11:53:49 2009 +0200
2718
2719     versatile: specify the board type on the prompt
2720
2721     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2722     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
2723     Cc: Catalin Marinas <catalin.marinas@arm.com>
2724
2725 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
2726 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
2727 Date:   Thu Jun 25 17:04:15 2009 +0200
2728
2729     at91: Introduction of at91sam9g10 SOC.
2730
2731     AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
2732     faster clock speed: 266/133MHz.
2733
2734     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
2735
2736 commit 22ee647380c42f44528f99b7c1b423725e542102
2737 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
2738 Date:   Thu Jul 9 10:16:29 2009 +0200
2739
2740     at91: Introduction of at91sam9g45 SOC.
2741
2742     AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
2743     It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
2744     peripherals.
2745
2746     The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
2747     On the board you can find 2 USART, USB high speed,
2748     a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
2749
2750     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
2751
2752 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
2753 Author: Daniel Mack <daniel@caiaq.de>
2754 Date:   Tue Jun 23 17:30:05 2009 +0200
2755
2756     pxa: fix CKEN_B register bits
2757
2758     The current defition for CKEN_B register bits is nonsense. Adding 32 to
2759     the shifted value is equal to '| (1 << 5)', and this bit is marked
2760     'reserved' in the PXA docs.
2761
2762     Signed-off-by: Daniel Mack <daniel@caiaq.de>
2763
2764 commit bd876be46f28b5fc2896537f6d01353f332789f7
2765 Author: Daniel Mack <daniel@caiaq.de>
2766 Date:   Tue Jun 23 17:30:04 2009 +0200
2767
2768     pxa: add clock for system bus 2 arbiter
2769
2770     This clock is needed for systems using the USB2 device unit or the 2d
2771     graphics accelerator.
2772
2773     Signed-off-by: Daniel Mack <daniel@caiaq.de>
2774
2775 commit b016000a95514c08cab50e1cba00b019c0801bc4
2776 Author: Grazvydas Ignotas <notasas@gmail.com>
2777 Date:   Wed Jul 8 00:30:01 2009 +0300
2778
2779     OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
2780
2781     Pandora is using both SDRC CSes. The MUX setting is needed
2782     for the second CS clock signal to allow the 2 RAM parts to
2783     be put in self-refresh correctly.
2784
2785     Based on similar patch for beagle and overo by
2786     Jean Pihet and Steve Sakoman.
2787
2788 commit 8672c288703f3c51c829851c8fe6608c7869faaa
2789 Author: Grazvydas Ignotas <notasas@gmail.com>
2790 Date:   Wed Jul 8 00:30:00 2009 +0300
2791
2792     OMAP3 pandora: setup pulls for various GPIOs
2793
2794     Set pullups or pulldowns for GPIOs which need them.
2795     Disable them for others, which have external pulls.
2796     Also make disabled pull setting consistent (some pins had
2797     type set to "up" even if pull type selection was disabled).
2798
2799 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
2800 Author: Grazvydas Ignotas <notasas@gmail.com>
2801 Date:   Wed Jul 8 00:29:59 2009 +0300
2802
2803     OMAP3 pandora: setup pin mux for pins used on rev3 boards
2804
2805     Setup pin mux for GPIO pins connected on rev3 or later
2806     boards. Also change NUB2 IRQ pin. This should not affect
2807     older boards because they don't have any nubs (analog
2808     controllers) attached to them.
2809
2810 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
2811 Author: Grazvydas Ignotas <notasas@gmail.com>
2812 Date:   Wed Jul 8 00:29:58 2009 +0300
2813
2814     OMAP3 pandora: pin mux cleanup
2815
2816     Remove configuration of not unused pins, effectively
2817     leaving them in safe mode.
2818
2819 commit b996165f5a1623a055c03b22d64d6d5da81835d0
2820 Author: Prafulla Wadaskar <prafulla@marvell.com>
2821 Date:   Mon Jul 6 15:50:47 2009 +0530
2822
2823     arm: Kirkwood: bugfix: UART1 bar correction
2824
2825     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2826
2827 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
2828 Author: Kumar Gala <galak@kernel.crashing.org>
2829 Date:   Tue Jul 7 15:48:58 2009 -0500
2830
2831     usb: Fix compiler warning with gcc4.4
2832
2833     ehci-hcd.c: In function 'ehci_submit_root':
2834     ehci-hcd.c:719: warning: value computed is not used
2835     ehci-hcd.c:748: warning: value computed is not used
2836
2837     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2838     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2839
2840 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
2841 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2842 Date:   Wed Jul 8 11:42:19 2009 +0900
2843
2844     sh: Update pci config for Renesas r7780mp board
2845
2846     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2847
2848 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
2849 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2850 Date:   Thu Jun 25 16:31:26 2009 +0900
2851
2852     sh: Add support ESPT-GIGA borad
2853
2854     ESPT-Giga is SH7763-based reference board.
2855     Board support is relatively sparse, presently supporting serial,
2856     gigabit ethernet, USB host, and MTD.
2857
2858     More information (in Japanese) available at:
2859     http://www.cente.jp/product/cente_hard/ESPT-Giga.html
2860
2861     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2862     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2863
2864 commit dae4e0148a1146a5610025ae4b445e841410b659
2865 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
2866 Date:   Fri Jul 3 16:06:37 2009 +0200
2867
2868     Add ESD PCI vendor ID
2869
2870     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
2871
2872 commit 876b3cef537aab2cba8c19505db2876f6057f818
2873 Author: Peter Tyser <ptyser@xes-inc.com>
2874 Date:   Mon Jun 22 18:01:41 2009 -0500
2875
2876     api_examples/Makefile: General cleanup
2877
2878     * Remove symlinking of files located outside api_examples/
2879
2880     * Auto generate dependencies for files located outside api_examples/
2881
2882     * Update names of variables to be similar to those in tools/Makefile
2883
2884     * Fix out of tree build error
2885       Dependencies are calculated for all files in the SRCS variable.
2886       Previously, the SRCS variable contained files which were symlinked
2887       into the api_examples/ directory.  These symlinked files did not exist
2888       when dependencies were calculated when building out of tree.  This
2889       resulted in errors such as:
2890         make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'.  Stop.
2891         make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
2892         make: *** [depend] Error 2
2893
2894       Since symlinked source files are no longer used, this bug no longer
2895       exists.
2896
2897     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2898     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2899
2900 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
2901 Author: Peter Tyser <ptyser@xes-inc.com>
2902 Date:   Mon Jun 22 18:01:40 2009 -0500
2903
2904     api_examples/Makefile: Get rid of unnecessary intermediate LIB target
2905
2906     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2907     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2908
2909 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
2910 Author: Peter Tyser <ptyser@xes-inc.com>
2911 Date:   Mon Jun 22 18:01:39 2009 -0500
2912
2913     api_examples/Makefile: Combine ELF and BIN targets
2914
2915     Combining the two rules cleans up the Makefile a bit
2916
2917     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2918     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2919
2920 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
2921 Author: Peter Tyser <ptyser@xes-inc.com>
2922 Date:   Mon Jun 22 18:01:38 2009 -0500
2923
2924     api_examples/Makefile: Split up variable declarations
2925
2926     This cleans up the Makefile a bit and simplifies future changes
2927
2928     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2929     Acked-by: Rafal Jaworowski <raj@semihalf.com>
2930
2931 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
2932 Author: Timur Tabi <timur@freescale.com>
2933 Date:   Fri Jun 19 14:10:52 2009 -0500
2934
2935     remove _IO_BASE and KSEG1ADDR from board configuration files
2936
2937     The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
2938     driver, but the code that used that macro was removed over a year
2939     ago, so board configuration files no longer need to define it.
2940
2941     The _IO_BASE macro is also automatically defined to 0 if it isn't
2942     already set, so there's no need to define that macro either in the
2943     board configuration files.
2944
2945     Signed-off-by: Timur Tabi <timur@freescale.com>
2946     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2947     Acked-by: Andy Fleming <afleming@freescale.com>
2948     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
2949     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2950
2951 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
2952 Author: Jon Smirl <jonsmirl@gmail.com>
2953 Date:   Sun Jun 14 18:21:28 2009 -0400
2954
2955     board support patch for phyCORE-MPC5200B-tiny
2956
2957     Add support for the Phytec phyCORE-MPC5200B-tiny.
2958     Code originally from Pengutronix.de.
2959     Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
2960     Timer 0/1
2961
2962     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
2963     Acked-by: Grant Likely <grant.likely@secretlab.ca>
2964
2965 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
2966 Author: Mike Frysinger <vapier@gentoo.org>
2967 Date:   Mon Jun 15 13:37:20 2009 -0400
2968
2969     kallsyms: fix escaping of NUL char in strings
2970
2971     The current kallsyms code is using \\0 to escape the backslash in the awk
2972     code, but the shell too needs escaping.  This way we make sure gcc is
2973     passed the \0.  Then gcc itself will consume this as an octal, so we have
2974     to use 000 so gcc will create the final NUL.
2975
2976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2977
2978 commit ed540f07b8ad86909704e9806c1762462cb4995a
2979 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
2980 Date:   Fri Jun 26 10:18:49 2009 -0400
2981
2982     Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
2983
2984     The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
2985     board, so add a simple example of how to do that in the board config.
2986
2987     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
2988     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2989
2990 commit f8bf54b4081c3c3d518830df0017a23ec672a841
2991 Author: Mike Frysinger <vapier@gentoo.org>
2992 Date:   Thu Jun 25 19:40:28 2009 -0400
2993
2994     Blackfin: blackstamp: update spi flash settings
2995
2996     The latest blackstamp boards can only run the SPI flash at 15MHz before
2997     they start to crap out, so lower the max speeds accordingly.  The new SPI
2998     flash also has different sector requirements, so update the environment
2999     sizes as well.
3000
3001     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3002
3003 commit 286070ddc8339666c09bd7912e960b850a8a0318
3004 Author: Mike Frysinger <vapier@gentoo.org>
3005 Date:   Mon Oct 6 03:31:52 2008 -0400
3006
3007     Blackfin: add cache_dump commands
3008
3009     A few debug-type commands used to dump the raw icache/dcache data.  Useful
3010     when trying to track down cache-related bugs.
3011
3012     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3013
3014 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
3015 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3016 Date:   Wed Jul 8 15:31:57 2009 +0200
3017
3018     ppc4xx: Set default PCI device ID for 405EP boards
3019
3020     Current code only sets the PCI vendor id to 0x1014 and
3021     leaved device id to 0x0000.
3022
3023     Ths patch ....
3024     a) uses the correct PCI_VENDOR_ID_IBM macro for this
3025     b) sets the default device ID as stated in the UM to 0x0156
3026        by using PCI_DEVICE_ID_IBM_405GP for this.
3027
3028     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3029     Signed-off-by: Stefan Roese <sr@denx.de>
3030
3031 commit 123f102ec093fba6967066acdf9beb637df2e2d1
3032 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3033 Date:   Wed Jul 8 13:43:55 2009 +0200
3034
3035     ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
3036
3037     This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
3038     to cpu/ppc4xx/4xx_pci.c.
3039
3040     The original cpu_init_f() function enabled the 405EP's internal arbiter
3041     in all situations. Also the HCE bit in cpc0_pci is always set.
3042     The first is not really wanted for PCI adapter designs and the latter
3043     is a general bug for PCI adapter U-Boots. Because it enables
3044     PCI configuration by the system CPU even when the PCI configuration has
3045     not been setup by the 405EP. The one and only correct place is
3046     in pci_405gp_init() (see "Set HCE bit" comment).
3047
3048     So for compatibility reasons the arbiter is still enabled in any case,
3049     but from weak pci_pre_init() so that it can be replaced by board specific
3050     code.
3051
3052     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3053     Signed-off-by: Stefan Roese <sr@denx.de>
3054
3055 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
3056 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3057 Date:   Wed Jul 8 13:43:23 2009 +0200
3058
3059     ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
3060
3061     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3062     Signed-off-by: Stefan Roese <sr@denx.de>
3063
3064 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
3065 Author: Prafulla Wadaskar <prafulla@marvell.com>
3066 Date:   Mon Jun 29 20:56:43 2009 +0530
3067
3068     usb: add Marvell Kirkwood ehci host controller driver
3069
3070     This driver is tested on Sheevaplug platform
3071
3072     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3073     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3074
3075 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
3076 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
3077 Date:   Wed Jun 24 10:08:40 2009 +0530
3078
3079     mpc83xx: USB: fix: access of ehci struct elements
3080
3081     It fixes the access to the 'ehci' struct elements for mpc83xx which
3082     should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
3083     Sorry about that.
3084
3085     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
3086     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3087
3088 commit 08066152735417fc55a5c9de2cec0714c529e4f3
3089 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
3090 Date:   Fri Jun 19 17:56:00 2009 +0530
3091
3092     mpc8xxx: USB: fix: access of ehci struct elements
3093
3094     This patch fixes the access to the 'ehci' struct elements which should
3095     have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
3096     Sorry about that.
3097
3098     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
3099     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3100
3101 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
3102 Author: Bryan Wu <bryan.wu@analog.com>
3103 Date:   Tue Jun 16 05:26:27 2009 -0400
3104
3105     usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
3106
3107     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3108     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3109     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3110
3111 commit 7984967a9405672db1581402d2c2cfae268d1a67
3112 Author: Mike Frysinger <vapier@gentoo.org>
3113 Date:   Tue Jun 16 05:26:25 2009 -0400
3114
3115     usb: musb: drop old musb read/write prototypes
3116
3117     These functions are no longer defined, so remove their prototypes.
3118
3119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3120     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3121
3122 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
3123 Author: Kim Phillips <kim.phillips@freescale.com>
3124 Date:   Mon Jun 15 11:50:07 2009 -0500
3125
3126     usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
3127
3128     fix a stray CONFIG_MPC83XX that escaped commit
3129     0f898604945af4543c1525fc33b6bae621a3b805.
3130
3131     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3132     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3133
3134 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
3135 Author: Michal Simek <monstr@monstr.eu>
3136 Date:   Tue Jun 30 23:47:30 2009 +1000
3137
3138     asm-generic: Consolidate errno.h to asm-generic/errno.h
3139
3140     This patch use blackfin errno.h implementation which
3141     correspond Linux kernel one.
3142
3143     MIPS implemetation is different that's why I keep it.
3144
3145     I removed ppc_error_no.h from Marvell boards which
3146     was the same too.
3147
3148     I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
3149
3150     Acked-by: Stefan Roese <sr@denx.de>
3151     Signed-off-by: Michal Simek <monstr@monstr.eu>
3152
3153 commit 2896b5851f0430bf16529376a4193630e966c788
3154 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3155 Date:   Tue Jul 7 16:01:02 2009 +0200
3156
3157     Command improvements for ubifs
3158
3159     Check that an argument is passed to ubifsmount and that addresses and
3160     sizes are actually numbers for ubifsload. Also improve the instructions
3161     a bit.
3162
3163     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3164     Signed-off-by: Stefan Roese <sr@denx.de>
3165
3166 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
3167 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3168 Date:   Tue Jul 7 16:59:46 2009 +0200
3169
3170     Handle VID header offset in ubi part command
3171
3172     The VID header offset is sometimes needed to initialize the UBI
3173     partition. This patch adds it (optionally) to the command line
3174     for the ubi part command.
3175
3176     (Lines have been properly wrapped since last version)
3177
3178     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3179     Acked-by: Stefan Roese <sr@denx.de>
3180     Signed-off-by: Stefan Roese <sr@denx.de>
3181
3182 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
3183 Author: Wolfgang Denk <wd@denx.de>
3184 Date:   Thu Jul 9 09:56:16 2009 +0200
3185
3186     MAINTAINERS: fix sorting, remove duplicates.
3187
3188     Signed-off-by: Wolfgang Denk <wd@denx.de>
3189
3190 commit efbf14e9a2394a154b12643d4a011994b5096b5a
3191 Author: Heiko Schocher <heiko.schocher@invitel.hu>
3192 Date:   Wed Dec 10 08:27:01 2008 +0100
3193
3194     all platforms: make show_boot_progress() work again
3195
3196     Signed-off-by: Heiko Schocher <hs@denx.de>
3197
3198 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
3199 Author: Prafulla Wadaskar <prafulla@marvell.com>
3200 Date:   Mon Jun 29 15:25:18 2009 +0530
3201
3202     nand: Add Marvell Kirkwood NAND driver
3203
3204     This patch adds a NAND driver for the Marvell Kirkwood SoC's
3205
3206     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3207     Acked-by: Scott Wood <scottwood@freescale.com>
3208
3209 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
3210 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3211 Date:   Mon Jul 6 16:27:33 2009 +0200
3212
3213     ppc4xx: Make pll_write global
3214
3215     This patch makes pll_write on PPC405EP boards
3216     global and callable from C code.
3217
3218     pll_write can be used to dynamically modify the PLB:PCI divider
3219     as it is required for 33/66 MHz pci adapters based on the 405EP.
3220
3221     board_early_init_f() is a good place to do that (check M66EN signal
3222     and call pll_write() when it is required).
3223
3224     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3225     Signed-off-by: Stefan Roese <sr@denx.de>
3226
3227 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
3228 Author: Stefan Roese <sr@denx.de>
3229 Date:   Mon Jul 6 11:44:33 2009 +0200
3230
3231     ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
3232
3233     Signed-off-by: Stefan Roese <sr@denx.de>
3234
3235 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
3236 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3237 Date:   Fri Jul 3 16:06:06 2009 +0200
3238
3239     ppc4xx: Implement is_pci_host() for 405 CPUs
3240
3241     This patch implements the is_pci_host() function in a similiar way
3242     as it is used on 440 targets.
3243
3244     The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
3245     build on 405EP targets because checking the PCI arbiter is different.
3246     So putting the fixed code into a separate function makes the code
3247     more readable.
3248
3249     Also using is_pci_host() on 405 brings 405 and 440 PCI code
3250     a little bit closer.
3251
3252     In preparation for an upcoming 405EP based PMC module I made this
3253     function weak so that it can be overwritten from board specific code.
3254
3255     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3256     Signed-off-by: Stefan Roese <sr@denx.de>
3257
3258 commit 04ddae915f295dee301f15c32100533a48e3b433
3259 Author: Alessio Centazzo <centazzo@gmail.com>
3260 Date:   Wed Jul 1 22:20:51 2009 -0700
3261
3262     ppc4xx: Fixed PPC4xx debug compilation error in uic.c
3263
3264     This patch fixes a debug compilation error for PPC4xx platforms, all
3265     other architectures are not affected by this change.  The 'handler'
3266     pointer was undefined.  The fix is exercised and has effect only if
3267     DEBUG is defined.
3268
3269     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
3270     Signed-off-by: Stefan Roese <sr@denx.de>
3271
3272 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
3273 Author: Felix Radensky <felix@embedded-sol.com>
3274 Date:   Wed Jul 1 11:37:46 2009 +0300
3275
3276     4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
3277
3278     This patch fixes printf format string compilation warnings in several
3279     debug statements. It also fixes the dump of DDR controller MQ registers
3280     found on some 44x and 46x platforms. The current register dump code
3281     uses incorrect DCRs to access these registers.
3282
3283     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
3284     Signed-off-by: Stefan Roese <sr@denx.de>
3285
3286 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
3287 Author: Felix Radensky <felix@embedded-sol.com>
3288 Date:   Mon Jun 22 15:30:42 2009 +0300
3289
3290     ppc4xx: Fix FDT EBC mappings on Canyonlands
3291
3292     This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
3293     First, NAND EBC mapping was missing, making Linux NAND driver
3294     unusable on this board. Second, NOR remapping code assumed that
3295     NOR is always on CS0, however when booting from NAND NOR is on CS3.
3296
3297     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
3298     Signed-off-by: Stefan Roese <sr@denx.de>
3299
3300 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
3301 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3302 Date:   Tue Jun 16 22:29:15 2009 +0900
3303
3304     sh: Revised the build with newest compiler
3305
3306     The check of data became severe from newest gcc.
3307     This patch checked in gcc-4.2 and 4.3 .
3308
3309     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3310
3311 commit be45c632568ba76343c1453b3951ad793f482fd5
3312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3313 Date:   Thu Jun 4 12:06:48 2009 +0200
3314
3315     sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
3316
3317     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3318     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3319     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3320
3321 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
3322 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3323 Date:   Thu Jun 4 12:06:47 2009 +0200
3324
3325     sh3/sh4: fix CONFIG_SYS_HZ to 1000
3326
3327     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3328     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3329     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3330
3331 commit add380f51f34ed1e2678c2abac8d53c91d652f26
3332 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3333 Date:   Thu Jun 4 12:06:46 2009 +0200
3334
3335     sh: introduce clock framework
3336
3337     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3338     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3339     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3340
3341 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
3342 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3343 Date:   Thu Jun 4 12:06:45 2009 +0200
3344
3345     sh: unify linker script
3346
3347     all sh boards use the same cpu linker script so move it to cpu/$(CPU)
3348
3349     that could be overwrite in following order
3350     SOC
3351     BOARD
3352     via the corresponding config.mk
3353
3354     tested on r2dplus
3355
3356     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3357     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3358     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3359
3360 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
3361 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3362 Date:   Thu Jun 4 12:06:44 2009 +0200
3363
3364     sh: make the linker scripts more generic
3365
3366     currently we need to sync the linker script enty and TEXT_BASE manualy
3367     and the reloc_dst is based on it
3368
3369     instead provide it now from the ldflags
3370
3371     tested on r2dplus
3372
3373     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3374     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3375     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3376
3377 commit ce29817212792113cd2d67a9767049a2e262c406
3378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3379 Date:   Thu Jun 4 12:06:43 2009 +0200
3380
3381     sh7785lcr: fix out of tree build
3382
3383     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3384     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3385     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3386
3387 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
3388 Author: HeungJun Kim <riverful.kim@gmail.com>
3389 Date:   Tue Jun 30 14:42:22 2009 +0900
3390
3391     env_onenand: change env_address type from unsigned long to loff_t
3392
3393     If use the onenand boot, the env_relocate_spec() calls mtd->read(),
3394     and the type of the argument #2 of mtd->read() was changed to loff_t.
3395     But, the "env_addr" type is still unsigned long, thus this patch change
3396     the type from unsigned long to loff_t.
3397
3398     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
3399     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
3400     Signed-off-by: Scott Wood <scottwood@freescale.com>
3401
3402 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
3403 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3404 Date:   Thu Jun 18 18:23:27 2009 +0800
3405
3406     fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
3407
3408     The bbt descriptors contains the pointer to the bbt pattern which
3409     are statically initialized memory struct. When relocated to RAM,
3410     these pointers will continue point to NOR flash(or L2 SRAM, or
3411     other boot device). If the contents of NOR flash changed or L2
3412     SRAM disabled, it'll hang the system.
3413
3414     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3415     Signed-off-by: Scott Wood <scottwood@freescale.com>
3416
3417 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
3418 Author: Scott Wood <scottwood@freescale.com>
3419 Date:   Wed Jun 24 17:23:49 2009 -0500
3420
3421     nand_spl: Fix cmd_ctrl usage in nand_boot.c.
3422
3423     When adding large page NAND support to this file, I had a misunderstanding
3424     about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
3425     anywhere I can find) -- it is apparently just a hint to drivers,
3426     which aren't required to preserve the old value for subsequent
3427     non-"change" invocations.
3428
3429     This change makes nand_boot.c no longer assume this.  Note that this
3430     happened to work by chance with some NAND drivers, which don't preserve
3431     the value, but treat 0 equivalently to NAND_CTRL_ALE.
3432
3433     I don't have hardware to test this, so any testing is appreciated.
3434
3435     Signed-off-by: Scott Wood <scottwood@freescale.com>
3436
3437 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
3438 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
3439 Date:   Thu Jun 18 18:41:03 2009 +0100
3440
3441     Bug-fix in drivers mtd nand Makefile
3442
3443     The S3C2410 NAND driver source file is included in the makefile instead of
3444     the object file.
3445
3446     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
3447     Signed-off-by: Scott Wood <scottwood@freescale.com>
3448
3449 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
3450 Author: Guennadi Liakhovetski <lg@denx.de>
3451 Date:   Mon May 18 16:07:22 2009 +0200
3452
3453     nand_spl: read environment early, when booting from NAND using nand_spl
3454
3455     Currently, when booting from NAND using nand_spl, in the beginning the default
3456     environment is used until later in boot process the dynamic environment is read
3457     out. This way environment variables that must be interpreted early, like the
3458     baudrate or "silent", cannot be modified dynamically and remain at their
3459     default values. Fix this problem by reading out main and redundand (if used)
3460     copies of the environment in the nand_spl code.
3461
3462     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3463     Signed-off-by: Scott Wood <scottwood@freescale.com>
3464
3465 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
3466 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3467 Date:   Sat May 16 14:27:40 2009 +0200
3468
3469     mtd: nand: use loff_t for offset
3470
3471     nand_util currently uses size_t which is arch dependent and not always a
3472     unsigned long.  Now use loff_t, as does the linux mtd layer.
3473
3474     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3475     Signed-off-by: Scott Wood <scottwood@freescale.com>
3476
3477 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
3478 Author: Wolfgang Denk <wd@denx.de>
3479 Date:   Sun May 24 17:34:33 2009 +0200
3480
3481     nand/onenand: Fix missing argument checking for "markbad" command
3482
3483     The "nand markbad" and "onenand markbad" commands did not check if an
3484     argument was passed; if this was forgotten, no error was raised but
3485     block 0 was marked as bad.
3486
3487     While fixing this bug, clean up the code a bit and allow to pass more
3488     than one block address, thus allowing to mark several blocks as bad
3489     in a single command invocation.
3490
3491     Signed-off-by: Wolfgang Denk <wd@denx.de>
3492     Signed-off-by: Scott Wood <scottwood@freescale.com>
3493
3494 commit cd84423a09f3a08029fe41c1db96168debd0b51f
3495 Author: Mike Frysinger <vapier@gentoo.org>
3496 Date:   Mon May 25 22:42:28 2009 -0400
3497
3498     mtd: nand: new base driver for memory mapped nand devices
3499
3500     The BF537-STAMP Blackfin board had a driver for working with NAND devices
3501     that are simply memory mapped.  Since there is nothing Blackfin specific
3502     about this, generalize the driver a bit so that everyone can leverage it.
3503
3504     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3505     Signed-off-by: Scott Wood <scottwood@freescale.com>
3506
3507 commit d27bc728cf35e7d7996fbd77154335e66615b213
3508 Author: Guennadi Liakhovetski <lg@denx.de>
3509 Date:   Mon May 18 16:06:45 2009 +0200
3510
3511     env_nand: remove unused variable.
3512
3513     Remove an unused "total" variable in multiple functions.
3514
3515     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3516     Signed-off-by: Scott Wood <scottwood@freescale.com>
3517
3518 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
3519 Author: David Brownell <dbrownell@users.sourceforge.net>
3520 Date:   Sun May 10 15:43:01 2009 -0700
3521
3522     davinci_nand chipselect/init cleanup
3523
3524     Update chipselect handling in davinci_nand.c so that it can
3525     handle 2 GByte chips the same way Linux does:  as one device,
3526     even though it has two halves with independent chip selects.
3527     For such chips the "nand info" command reports:
3528
3529       Device 0: 2x nand0, sector size 128 KiB
3530
3531     Switch to use the default chipselect function unless the board
3532     really needs its own.  The logic for the Sonata board moves out
3533     of the driver into board-specific code.  (Which doesn't affect
3534     current build breakage if its NAND support is enabled...)
3535
3536     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
3537     Signed-off-by: Scott Wood <scottwood@freescale.com>
3538
3539 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
3540 Author: Sandeep Paulraj <s-paulraj@ti.com>
3541 Date:   Sat May 9 12:35:20 2009 -0400
3542
3543     NAND DaVinci: Update to ALE/CLE Mask values
3544
3545     All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
3546     except the DM646x. This was decided by the design team driving the design.
3547     This patch updates the CLE and ALE values for DM646x.
3548     Updated patches for DM646x will be sent shortly.
3549     This applies to u-boot-nand-flash git
3550
3551     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3552     Signed-off-by: Scott Wood <scottwood@freescale.com>
3553
3554 commit 0c1684437ef810c503df29e8d73f63191aa63862
3555 Author: Sandeep Paulraj <s-paulraj@ti.com>
3556 Date:   Wed Apr 29 09:47:09 2009 -0400
3557
3558     ARM DaVinci: Changing ALE Mask Value
3559
3560     The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
3561     from '0xa' to '0x8'. This is the mask we use for all TI releases.
3562
3563     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3564     Signed-off-by: Scott Wood <scottwood@freescale.com>
3565
3566 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
3567 Author: David Brownell <dbrownell@users.sourceforge.net>
3568 Date:   Tue Apr 28 13:19:53 2009 -0700
3569
3570     davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
3571
3572     Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option.  It's not just nasty;
3573     it's also unused by any current boards, and doesn't even match the
3574     main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
3575     on newer chips that support it).
3576
3577     DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
3578     match non-BROKEN code paths for 1-bit HW ECC.  The BROKEN code paths
3579     do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
3580     and 5.0/2.6.18) do ... but only for small pages.  Large page support
3581     is really broken (and it's unclear just what software it was trying
3582     to match!), and the ECC layout was making three more bytes available
3583     for use by filesystem (or whatever) code.
3584
3585     Since this option itself seems broken, remove it.  Add a comment
3586     about the MV/TI compat issue, and the most straightforward way to
3587     address it (should someone really need to solve it).
3588
3589     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
3590     Signed-off-by: Scott Wood <scottwood@freescale.com>
3591
3592 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
3593 Author: David Brownell <dbrownell@users.sourceforge.net>
3594 Date:   Tue Apr 28 13:19:50 2009 -0700
3595
3596     davinci_nand: cleanup I (minor)
3597
3598     Minor cleanup for DaVinci NAND code:
3599
3600      - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
3601        be defined when there are multiple chipselect lines in use
3602        (as with common 2 GByte chips).
3603
3604      - Cleanup handling of EMIF control registers
3605         * Only need one pointer pointing to them
3606         * Remove incorrect and unused struct supersetting them
3607
3608      - Use the standard waitfunc; we don't need a custom version
3609
3610      - Partial legacy cleanup:
3611         * Don't initialize every board like it's a DM6446 EVM
3612         * #ifdef a bit more code for BROKEN_ECC
3613
3614     Sanity checked with small page NAND on dm355 and dm6446 EVMs;
3615     and large page on dm355 EVM (packaged as two devices, not one).
3616
3617     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
3618     Signed-off-by: Scott Wood <scottwood@freescale.com>
3619
3620 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
3621 Author: Wolfgang Denk <wd@denx.de>
3622 Date:   Tue Jul 7 22:35:02 2009 +0200
3623
3624     Coding style cleanup; update CHANGELOG
3625
3626     Signed-off-by: Wolfgang Denk <wd@denx.de>
3627
3628 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
3629 Author: Stefan Roese <sr@denx.de>
3630 Date:   Mon Jun 29 13:30:50 2009 +0200
3631
3632     UBI: Fix build problem noticed on Apollon (arm/testing repo)
3633
3634     This patch fixes a build problem noticed on Apollon by using
3635     mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
3636     So this brings the U-Boot UBI version more in sync with the Linux
3637     version again.
3638
3639     Signed-off-by: Stefan Roese <sr@denx.de>
3640
3641 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
3642 Author: Prafulla Wadaskar <prafulla@marvell.com>
3643 Date:   Mon Jul 6 20:29:15 2009 +0530
3644
3645     sf: Macronix additional chips supported
3646
3647     new chips supported:-
3648     MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
3649     out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
3650
3651     Modified the Macronix flash support to use 2 bytes of device id instead of 1
3652     This was required to support MX25L12855E
3653
3654     Signed-off-by: Piyush Shah <spiyush@marvell.com>
3655     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3656     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3657
3658 commit dd54126715b89ed0c43322aa78b0dad306f043b6
3659 Author: Mike Frysinger <vapier@gentoo.org>
3660 Date:   Fri Jun 19 03:27:28 2009 -0400
3661
3662     sf: sst: add sst25vf###b ids
3663
3664     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3665
3666 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
3667 Author: Mike Frysinger <vapier@gentoo.org>
3668 Date:   Fri Jun 19 03:20:06 2009 -0400
3669
3670     sf: sst: fix sector size
3671
3672     Looks like when I was encoding the sector sizes, I forgot to divide by 8
3673     (due to the stupid marketing driven process that declares all sizes in
3674     useless megabits and not megabytes).
3675
3676     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3677
3678 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
3679 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3680 Date:   Sun Jul 5 01:06:06 2009 +0200
3681
3682     nhk8815: fix MAKEALL
3683
3684     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3685
3686 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
3687 Author: Magnus Lilja <lilja.magnus@gmail.com>
3688 Date:   Sat Jul 4 10:31:24 2009 +0200
3689
3690     MX31: Add NAND SPL boot support to i.MX31 PDK board.
3691
3692     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3693
3694 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
3695 Author: Prafulla Wadaskar <prafulla@marvell.com>
3696 Date:   Mon Jun 29 20:55:54 2009 +0530
3697
3698     arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
3699
3700     This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
3701
3702     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3703
3704 commit 095a460b49022e64df76134300643606e3acb4e9
3705 Author: Alessandro Rubini <rubini@unipv.it>
3706 Date:   Mon Jun 29 10:52:37 2009 +0200
3707
3708     arm nomadik: use 1000 as HZ value and rewrite timer code
3709
3710     This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
3711     timer code, which is now both correct and much smaller.  Unused
3712     functions like udelay_masked() have been removed as no driver uses
3713     them, even the ones that are not currently active for this board.
3714     mtu.h is copied literally from the kernel sources.
3715
3716     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3717     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
3718     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3719
3720 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
3721 Author: Alessandro Rubini <rubini@unipv.it>
3722 Date:   Mon Jun 22 09:18:57 2009 +0200
3723
3724     arm nomadik: allow Nand and OneNand to coexists
3725
3726     The evaluation kit has both Nand and OneNand, both drivers are there
3727     and the two configurations only select a different default for the
3728     jffs partition. This adds the OneNand driver and cleans up storage.
3729
3730     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3731     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
3732
3733 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
3734 Author: Alessandro Rubini <rubini@unipv.it>
3735 Date:   Mon Jun 22 09:18:47 2009 +0200
3736
3737     arm nomadik: cleanup reset
3738
3739     There is only one public release of the Nomadik chip, so the ifdef
3740     in reset code as well as a define in the config file are not needed
3741
3742     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3743     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
3744
3745 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
3746 Author: Alessandro Rubini <rubini@unipv.it>
3747 Date:   Mon Jun 22 09:18:37 2009 +0200
3748
3749     arm nomadik: rename board to nhk8815
3750
3751     This is an error in my side in the initial submission: nobody
3752     calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
3753
3754     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3755     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
3756
3757 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
3758 Author: Stefano Babic <sbabic@denx.de>
3759 Date:   Wed Jul 1 20:40:41 2009 +0200
3760
3761     xscale: add support for the polaris board
3762
3763     The Polaris board is based on the TrizepsIV module of
3764     Keith & Koep (http://www.keith-koep.com).
3765
3766     Signed-off-by: Stefano Babic <sbabic@denx.de>
3767
3768 commit 88bd97501314683b87f3f1edcf55b347c041b722
3769 Author: Stefano Babic <sbabic@denx.de>
3770 Date:   Wed Jul 1 04:33:56 2009 +0200
3771
3772     xscale: fix USB initialization for Trizepsiv module
3773
3774     Due to change in the usb_board_init() prototype, the USB for
3775     the TrizepsIV was not correctly initialized.
3776     Removed dummy print from usb_board_stop().
3777
3778     Signed-off-by: Stefano Babic <sbabic@denx.de>
3779
3780 commit 0b785ddd60120cfb74d18e58c56054238219f6db
3781 Author: Prafulla Wadaskar <prafulla@marvell.com>
3782 Date:   Wed Jul 1 20:34:51 2009 +0200
3783
3784     net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
3785
3786     This patch looks okay on u-boot-net.git/next branch
3787     but when it was merged to u-boot.git/master the last line is missing
3788
3789     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3790     Acked-by: Ben Warren <biggerbadderben@gmail.com>
3791
3792 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
3793 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3794 Date:   Tue Jun 30 21:03:37 2009 +0200
3795
3796     at91: Add esd gmbh MEESC board support
3797
3798     This patch adds support for esd gmbh MEESC board.
3799     The MEESC is based on an Atmel AT91SAM9263 SoC.
3800
3801     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3802
3803 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
3804 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3805 Date:   Tue Jun 30 21:03:35 2009 +0200
3806
3807     ARM: Update mach-types
3808
3809     update against linux v2.6.30
3810
3811     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3812
3813 commit 45627fce18139a74e0755124d27376b520db156c
3814 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3815 Date:   Tue Jun 30 23:03:33 2009 +0200
3816
3817     at91: Add CAN init function
3818
3819     To enable CAN init, CONFIG_CAN has to be defined in the board config file
3820     and at91_can_hw_init() has to be called in the board specific code.
3821
3822     CAN is available on AT91SAM9263 and AT91CAP9 SoC.
3823
3824     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
3825
3826 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
3827 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3828 Date:   Tue Jun 30 23:03:31 2009 +0200
3829
3830     arm: Kirkwood: Correct header define
3831
3832     Correct define typo (. -> ,)
3833
3834     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3835
3836 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
3837 Author: Magnus Lilja <lilja.magnus@gmail.com>
3838 Date:   Wed Jul 1 01:07:55 2009 +0200
3839
3840     MX31: Add basic support for Freescale i.MX31 PDK board.
3841
3842     Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
3843
3844     This patch assumes that some other program performs the actual
3845     NAND boot.
3846
3847     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3848     Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
3849     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3850
3851 commit 8d460a573e2a2ac4834636903865a0428ad0e629
3852 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3853 Date:   Tue Jun 23 00:12:01 2009 +0200
3854
3855     S3C24x0: extract interrupts from timer
3856
3857     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3858
3859 commit c8badbe500a752f42049e51042767ee62ea714e0
3860 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3861 Date:   Sun Jun 28 14:14:21 2009 +0200
3862
3863     dm355/pm9261: add missing CONFIG_NET_MULTI
3864
3865     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3866
3867 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
3868 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3869 Date:   Tue Jun 23 00:12:01 2009 +0200
3870
3871     arm920t/interrupts: Move conditional compilation to Makefile
3872
3873     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3874
3875 commit 06e758e75c79ce8761866bf8165c443584a20893
3876 Author: Kim, Heung Jun <riverful@gmail.com>
3877 Date:   Sat Jun 20 11:02:17 2009 +0200
3878
3879     move L2 cache enable/disable function to cache.c in the omap3 SoC directory
3880
3881     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
3882     CC: Dirk Behme <dirk.behme@googlemail.com>
3883     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3884
3885 commit d583ef5147066d3609de21f3beebbab99a19bad4
3886 Author: Thomas Lange <thomas@corelatus.se>
3887 Date:   Sat Jun 20 11:02:17 2009 +0200
3888
3889     ARM DaVinci: EMIF settings
3890
3891     NAND module should not modify EMIF registers unrelated to CS2
3892     that is used for NAND, i.e. do not modify EWAIT config register
3893     or registers for other Chip Selects.
3894
3895     Without this patch, EMIF configurations made in board_init()
3896     will be invalidated.
3897
3898     Signed-off-by: Thomas Lange <thomas@corelatus.se>
3899
3900 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
3901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3902 Date:   Sat Jun 20 11:02:17 2009 +0200
3903
3904     versatile: config coding style cleanup
3905
3906     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3907     Cc: Peter Pearse <peter.pearse@arm.com>
3908
3909 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
3910 Author: Prafulla Wadaskar <prafulla@marvell.com>
3911 Date:   Sat Jun 20 11:01:53 2009 +0200
3912
3913     arm: Kirkwood: Basic SOCs support
3914
3915     Kirkwood family controllers are highly integrated SOCs
3916     based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
3917
3918     SOC versions supported:-
3919     1) 88F6281-A0       define CONFIG_KW88F6281_A0
3920     2) 88F6192-A0       define CONFIG_KW88F6192_A0
3921
3922     Other supported features:-
3923     1) get_random_hex() fucntion
3924     2) PCI Express port initialization
3925     3) NS16550 driver support
3926
3927     Contributors:
3928     Yotam Admon <yotam@marvell.com>
3929     Michael Blostein <michaelbl@marvell.com
3930
3931     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
3932     Acked-by: Stefan Rose <sr@denx.de>
3933     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3934
3935 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
3936 Author: Prafulla Wadaskar <prafulla@marvell.com>
3937 Date:   Sat Jun 20 11:01:52 2009 +0200
3938
3939     arm: generic cache.h for ARM architectures
3940
3941     This patch is required for Kirkwood SoC support
3942     may be used by other ARM architectures
3943
3944     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3945
3946 commit 9c8c706c92e53433a871a563946c38075d76504d
3947 Author: Matthias Ludwig <mludwig@ultratronik.de>
3948 Date:   Sat Jun 20 11:01:50 2009 +0200
3949
3950     OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
3951
3952     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
3953
3954 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
3955 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
3956 Date:   Wed Jun 24 08:32:09 2009 +0200
3957
3958     at91sam9260/9263: add back up for the rst(reset controller).
3959
3960     On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
3961     set to 0 after being set to 500 ms for the PHY reset.
3962     Do backup the old reset length and restore it after the MACB initialisation.
3963
3964     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
3965     Signed-off-by: Stelian Pop <stelian@popies.net>
3966
3967 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
3968 Author: Kumar Gala <galak@kernel.crashing.org>
3969 Date:   Fri Jul 3 12:45:44 2009 -0500
3970
3971     fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
3972
3973     sys_eeprom.c: In function 'do_mac':
3974     sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
3975     sys_eeprom.c: In function 'mac_read_from_eeprom':
3976     sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
3977
3978     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3979
3980 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
3981 Author: Peter Tyser <ptyser@xes-inc.com>
3982 Date:   Tue Jun 30 17:15:51 2009 -0500
3983
3984     83xx: Add support for fsl_dma driver
3985
3986     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3987     Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
3988     Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
3989     Acked-by: Kim Phillips <kim.phillips@freescale.com>
3990     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3991
3992 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
3993 Author: Peter Tyser <ptyser@xes-inc.com>
3994 Date:   Tue Jun 30 17:15:50 2009 -0500
3995
3996     83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
3997
3998     Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
3999     CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
4000     use
4001
4002     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4003     Acked-by: Kim Phillips <kim.phillips@freescale.com>
4004     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4005
4006 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
4007 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4008 Date:   Thu Jul 2 16:15:01 2009 +0530
4009
4010     8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
4011
4012     Defining the next two configs allows to switch the serial port from the
4013     console using the setenv stdin and stdout
4014       1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
4015       2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
4016
4017     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4018     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4020
4021 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
4022 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4023 Date:   Thu Jul 2 16:14:40 2009 +0530
4024
4025     85xx: Adds GPIO registers to MPC85xx Memory Map.
4026
4027     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4028     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4029
4030 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
4031 Author: Peter Tyser <ptyser@xes-inc.com>
4032 Date:   Tue Jun 30 17:26:01 2009 -0500
4033
4034     86xx: XPedite5170 board support
4035
4036     Initial support for Extreme Engineering Solutions XPedite5170 -
4037     a MPC8640-based 3U VPX single board computer with a PMC/XMC
4038     site.
4039
4040     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4042
4043 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
4044 Author: Timur Tabi <timur@freescale.com>
4045 Date:   Wed Jul 1 16:51:59 2009 -0500
4046
4047     fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
4048
4049     The calculate for rank density in compute_ranksize() for DDR3 used all
4050     integers for the expression, so the result was also a 32-bit integer, even
4051     though the 'bsize' variable is a u64.  Fix the expression to calculate a
4052     true 64-bit value.
4053
4054     Signed-off-by: Timur Tabi <timur@freescale.com>
4055     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4056
4057 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
4058 Author: Peter Tyser <ptyser@xes-inc.com>
4059 Date:   Tue Jun 30 17:15:49 2009 -0500
4060
4061     fsl_dma: Make DMA transactions snoopable
4062
4063     Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
4064     This allows dma transactions to be used for operations such as memory
4065     copies without any additional cache control operations.
4066
4067     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4068     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4069
4070 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
4071 Author: Peter Tyser <ptyser@xes-inc.com>
4072 Date:   Tue Jun 30 17:15:48 2009 -0500
4073
4074     fsl_dma: Break out common memory initialization function
4075
4076     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4077     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4078
4079 commit 79f4333ceb059049b3ee560167d6cbaec493695f
4080 Author: Peter Tyser <ptyser@xes-inc.com>
4081 Date:   Tue Jun 30 17:15:47 2009 -0500
4082
4083     8xxx: Move dma_init() call to common code
4084
4085     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4086     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4087
4088 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
4089 Author: Peter Tyser <ptyser@xes-inc.com>
4090 Date:   Tue Jun 30 17:15:46 2009 -0500
4091
4092     fsl_dma: Move dma function prototypes to common header file
4093
4094     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4095     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4096
4097 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
4098 Author: Peter Tyser <ptyser@xes-inc.com>
4099 Date:   Tue Jun 30 17:15:45 2009 -0500
4100
4101     8xxx: Rename dma_xfer() to dmacpy()
4102
4103     Also update dmacpy()'s argument order to match memcpy's and use
4104     phys_addr_t/phy_size_t for address/size arguments
4105
4106     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4107     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4108
4109 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
4110 Author: Peter Tyser <ptyser@xes-inc.com>
4111 Date:   Tue Jun 30 17:15:44 2009 -0500
4112
4113     fsl_dma: Fix Channel Start bug in dma_check()
4114
4115     The Channel Start (CS) bit in the Mode Register (MR) should actually be
4116     cleared as the comment in the code suggests.  Previously, CS was being
4117     set, not cleared.
4118
4119     Assuming normal operation of the DMA engine, this change shouldn't have
4120     any real affect.
4121
4122     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4123     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4124
4125 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
4126 Author: Peter Tyser <ptyser@xes-inc.com>
4127 Date:   Tue Jun 30 17:15:43 2009 -0500
4128
4129     fsl_dma: Add support for arbitrarily large transfers
4130
4131     Support DMA transfers larger than the DMA controller's limit of
4132     (2 ^ 26 - 1) bytes
4133
4134     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4136
4137 commit a730393a362741c318b21771b8d7b2647e546c3e
4138 Author: Peter Tyser <ptyser@xes-inc.com>
4139 Date:   Tue Jun 30 17:15:42 2009 -0500
4140
4141     fsl_dma: Use proper I/O access functions
4142
4143     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4144     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4145
4146 commit 9c06071a6077ba95e9d43226156e39567d5d064a
4147 Author: Peter Tyser <ptyser@xes-inc.com>
4148 Date:   Tue Jun 30 17:15:41 2009 -0500
4149
4150     fsl_dma: Add bitfield definitions for common registers
4151
4152     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4153     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4154
4155 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
4156 Author: Peter Tyser <ptyser@xes-inc.com>
4157 Date:   Tue Jun 30 17:15:40 2009 -0500
4158
4159     8xxx: Break out DMA code to a common file
4160
4161     DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
4162     previous CONFIG_DDR_ECC
4163
4164     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4165     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4166
4167 commit 6bbced671719518d0e28ff422623cd7ce396cbda
4168 Author: Mark Jackson <mpfj-list@mimc.co.uk>
4169 Date:   Mon Jun 29 15:59:10 2009 +0100
4170
4171     Atmel LCD driver GUARDTIME fix
4172
4173     This patch allows the guard time parameter to be set in
4174     the Atmel LCDC driver.
4175
4176     By default, the previous value of 1 is used, unless the
4177     setting is defined elsewhere.
4178
4179     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
4180
4181 commit 29c35182462feea09f322e51913759a53359a3e0
4182 Author: Roy Zang <tie-fei.zang@freescale.com>
4183 Date:   Tue Jun 30 13:56:23 2009 +0800
4184
4185     85xx: Add pci e1000 Ethernet support for P2020 board
4186
4187     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
4188     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4189
4190 commit 156984a3611c28093919d3e3c042f722b5548253
4191 Author: Kumar Gala <galak@kernel.crashing.org>
4192 Date:   Thu Jun 18 08:39:42 2009 -0500
4193
4194     8xxx: Fix PCI bus address setup for 36-bit configs
4195
4196     We want the outbound PCI memory map to end at the 4G boundary so we
4197     can maximize the amount of space available for inbound mappings if
4198     we have large amounts of memory.
4199
4200     This matches the device tree setup in the kernel for the 36-bit physical
4201     configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
4202
4203     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4204
4205 commit 480f61790565d77432b70b4016b73f2ae27d530f
4206 Author: Kumar Gala <galak@kernel.crashing.org>
4207 Date:   Thu Jun 18 08:23:01 2009 -0500
4208
4209     86xx: Add CPU_TYPE_ENTRY support
4210
4211     Unify with 83xx and 85xx and use CPU_TYPE_ENTRY.  We are going to use
4212     this to convey the # of cores and DDR width in the near future so its
4213     good to keep in sync.
4214
4215     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4216
4217 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
4218 Author: Peter Meerwald <pmeerw@pmeerw.net>
4219 Date:   Mon Jun 29 15:48:33 2009 -0400
4220
4221     Blackfin: TWI/I2C: fix pure writes
4222
4223     If doing a pure write with register address and data (not a read/write
4224     combo transfer), we don't set the initial transfer length properly which
4225     ends up causing only the register address to be transferred.
4226
4227     While we're here, fix the i2c_write() parameter description of the buffer.
4228
4229     Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
4230     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4231
4232 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
4233 Author: Prafulla Wadaskar <prafulla@marvell.com>
4234 Date:   Sat May 30 01:13:33 2009 +0530
4235
4236     spi: Add Marvell Kirkwood SPI driver
4237
4238     This patch adds a SPI driver for the Marvell Kirkwood SoC's.
4239
4240     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4241
4242 commit 6bde171a4c4116cee179167cb65335a28f99932d
4243 Author: Minkyu Kang <mk7.kang@samsung.com>
4244 Date:   Thu Jun 25 19:21:33 2009 +0900
4245
4246     s3c64xx: move the reset_cpu function
4247
4248     Because of the reset_cpu is soc specific, should be move to soc
4249     And read reset value from SYS_ID register instead of hard code
4250     this patch also supports s3c6410
4251
4252     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
4253
4254 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
4255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4256 Date:   Sun May 17 00:58:37 2009 +0200
4257
4258     integrator: merge integratorap and integratorcp
4259
4260     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4261     Acked-by: Peter Pearse <peter.pearse@arm.com>
4262
4263 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
4264 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4265 Date:   Sun May 17 00:58:36 2009 +0200
4266
4267     integratorap/cp: use cfi driver
4268
4269     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4270     Acked-by: Peter Pearse <peter.pearse@arm.com>
4271
4272 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
4273 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4274 Date:   Sun May 17 00:58:36 2009 +0200
4275
4276     integratorap/cp/versatile: remove non used functions
4277
4278     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4279     Acked-by: Peter Pearse <peter.pearse@arm.com>
4280
4281 commit f54851a6e3844b7e01581b5a9681f294118b7529
4282 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4283 Date:   Sun May 17 00:58:36 2009 +0200
4284
4285     integratorcp: split timer support
4286
4287     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4288     Acked-by: Peter Pearse <peter.pearse@arm.com>
4289
4290 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
4291 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4292 Date:   Sun May 17 00:58:36 2009 +0200
4293
4294     integratorap: split timer support
4295
4296     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4297     Acked-by: Peter Pearse <peter.pearse@arm.com>
4298
4299 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
4300 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4301 Date:   Sun May 17 00:58:36 2009 +0200
4302
4303     integratorap: split pci support
4304
4305     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4306     Acked-by: Peter Pearse <peter.pearse@arm.com>
4307
4308 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
4309 Author: Ilya Yanok <yanok@emcraft.com>
4310 Date:   Mon Jun 8 04:12:50 2009 +0400
4311
4312     arm: add support for CONFIG_GENERIC_MMC
4313
4314     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
4315
4316 commit 47d19da4d3f9ac4787abe9dee32406478424be52
4317 Author: Ilya Yanok <yanok@emcraft.com>
4318 Date:   Mon Jun 8 04:12:46 2009 +0400
4319
4320     serial_mx31: allow it to work with mx27 too and rename to serial_mxc
4321
4322     UART hardware on i.MX27 is the same as on the i.MX31 so we just
4323     need to provide the driver with correct address of the registers.
4324
4325     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
4326
4327 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
4328 Author: Ilya Yanok <yanok@emcraft.com>
4329 Date:   Mon Jun 8 04:12:45 2009 +0400
4330
4331     mx27: basic cpu support
4332
4333     This patch adds generic code to support Freescale's i.MX27 SoCs.
4334
4335     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
4336
4337 commit dd2f6965a6c71f6f711ec98827880152e022c236
4338 Author: Magnus Lilja <lilja.magnus@gmail.com>
4339 Date:   Sat Jun 13 20:50:03 2009 +0200
4340
4341     i.MX31: Create a common device file.
4342
4343     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
4344
4345 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
4346 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4347 Date:   Sat Jun 13 20:50:02 2009 +0200
4348
4349     ARM: Add macros.h to be used in assembler file.
4350
4351     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4352
4353 commit 40c642bc19b9fa2906e3172487a522fee456340b
4354 Author: Magnus Lilja <lilja.magnus@gmail.com>
4355 Date:   Sat Jun 13 20:50:01 2009 +0200
4356
4357     MX31: Add NAND SPL for i.MX31.
4358
4359     This patch adds the NAND SPL framework needed to boot i.MX31 boards
4360     from NAND.
4361
4362     It has been tested on a i.MX31 PDK board with large page NAND. Small
4363     page NANDs should work as well, but this has not been tested.
4364
4365     Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
4366     whether this is compatible with a particular setup depends on how
4367     the NAND device is programmed by the flash programmer (e.g. JTAG
4368     debugger).
4369
4370     The patch is based on the work by Maxim Artamonov.
4371
4372     Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
4373     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
4374
4375 commit df81238b3e27a791da996a9208402ac8f40b9862
4376 Author: Magnus Lilja <lilja.magnus@gmail.com>
4377 Date:   Sat Jun 13 20:50:00 2009 +0200
4378
4379     ARM1136: Introduce CONFIG_PRELOADER macro.
4380
4381     Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
4382     in start.S. In preparation for adding support for NAND SPL
4383     the macro CONFIG_PRELOADER is introducted and replaces the
4384     CONFIG_ONENAND_IPL in start.S.
4385
4386     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
4387
4388 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
4389 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4390 Date:   Sat Jun 13 12:50:04 2009 +0200
4391
4392     at91: unify nor boot support
4393
4394     the lowlevel init sequence is the same so unify it
4395
4396     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4397
4398 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
4399 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4400 Date:   Sat Jun 13 12:48:36 2009 +0200
4401
4402     at91sam9263ek: add nor flash support
4403
4404     this will allow you to store use it for the env and to boot directly U-Boot from
4405
4406     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4407
4408 commit 329492329700812c6df275aa0fda09d609cd0fd4
4409 Author: Ilko Iliev <iliev@ronetix.at>
4410 Date:   Fri Jun 12 21:20:39 2009 +0200
4411
4412     at91: add support for the PM9261 board of Ronetix GmbH
4413
4414     The PM9261 board is based on the AT91SAM9261-EK board.
4415
4416     Here is the page on Ronetix website:
4417     http://www.ronetix.at/starter_kit_9261.html
4418
4419     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
4420     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4421
4422 commit 01550a2b650fbabc03334f9eadcc6083601a2414
4423 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4424 Date:   Fri Jun 12 21:20:38 2009 +0200
4425
4426     pm9263: use macro instead of hardcode value for the lowlevel_init
4427
4428     optimize a few the RAM init
4429
4430     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
4431     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4432
4433 commit 7a11c7f9747240dc770954d320569596c0fbcb50
4434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4435 Date:   Fri Jun 12 21:20:37 2009 +0200
4436
4437     pm9263: lowlevel init update
4438
4439     move PSRAM init to pm9263.c
4440     this will allow us after to make the nor lowlevel_init generic
4441
4442     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4443
4444 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
4445 Author: Mike Frysinger <vapier@gentoo.org>
4446 Date:   Mon Jun 15 00:25:19 2009 -0400
4447
4448     Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
4449
4450     The way the ALL variable is used allows for config.mk's to add more
4451     targets themselves without having to clutter up the top level Makefile.
4452
4453     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4454
4455 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
4456 Author: Mike Frysinger <vapier@gentoo.org>
4457 Date:   Sun Jun 14 22:29:35 2009 -0400
4458
4459     Blackfin: fix SPI flash speed define name
4460
4461     The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
4462     CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
4463
4464     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4465
4466 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
4467 Author: Mike Frysinger <vapier@gentoo.org>
4468 Date:   Sun Jun 14 22:26:31 2009 -0400
4469
4470     Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
4471
4472     Building the compression code in lib_generic/ with -O2 rather than -Os
4473     gives a nice speed boost without too much code size increase.
4474
4475     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4476
4477 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
4478 Author: Mike Frysinger <vapier@gentoo.org>
4479 Date:   Sun Jun 14 21:23:27 2009 -0400
4480
4481     Blackfin: bf548-ezkit: bump up monitor size
4482
4483     The latest version of U-Boot got a bit fatter in the BSS section which
4484     caused overflows in the RAM region, so increase the monitor size.
4485
4486     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4487
4488 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
4489 Author: Vivi Li <vivi.li@analog.com>
4490 Date:   Fri Jun 12 10:53:22 2009 +0000
4491
4492     Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
4493
4494     The SPI flash layer is much stricter about sector usage than the eeprom
4495     layer we used to use, so update the env settings to better match the
4496     sector alignment of the flashes we use.
4497
4498     Signed-off-by: Vivi Li <vivi.li@analog.com>
4499     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4500
4501 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
4502 Author: Vivi Li <vivi.li@analog.com>
4503 Date:   Fri Jun 12 10:33:23 2009 +0000
4504
4505     Blackfin: bump up default JTAG console timeout
4506
4507     The debug tools that interface with the other side of the JTAG console
4508     got much slower when generalizing things, so bump up the default timeout
4509     value on the U-Boot side to cope.  Hopefully at some point we can improve
4510     the debug tools to speed things back up.
4511
4512     Signed-off-by: Vivi Li <vivi.li@analog.com>
4513     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4514
4515 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
4516 Author: Mike Frysinger <vapier@gentoo.org>
4517 Date:   Mon Jun 1 19:08:33 2009 -0400
4518
4519     Blackfin: add jtagconsole helper script
4520
4521     This script is similar to the netconsole script, but instead works with
4522     the JTAG console device driver that exists on Blackfin parts.
4523
4524     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4525
4526 commit 60f61e6d7655400bb785a2ef637581679941f6d1
4527 Author: Remy Bohmer <linux@bohmer.net>
4528 Date:   Sat May 2 21:49:18 2009 +0200
4529
4530     Convert DM9000 driver for CONFIG_NET_MULTI
4531
4532     All drivers need to be converted to CONFIG_NET_MULTI.
4533     This patch converts the dm9000 driver.
4534
4535     Signed-off-by: Thomas Smits <ts.smits@gmail.com>
4536     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4537     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4538
4539 commit 9131589ada4dda0718604d0a425ca46e52775f6e
4540 Author: Prafulla Wadaskar <prafulla@marvell.com>
4541 Date:   Sun Jun 14 22:33:46 2009 +0530
4542
4543     net: Add Marvell Kirkwood gigabit ethernet driver
4544
4545     This patch adds a egiga driver for the Marvell Kirkwood SoC's.
4546
4547     Contributors:
4548     Yotam Admon <yotam@marvell.com>
4549     Michael Blostein <michaelbl@marvell.com
4550
4551     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
4552     Acked-by: Stefan Rose <sr@denx.de>
4553     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4554     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4555
4556 commit 7835f4b94927ecb5affd99aad62592108db606ad
4557 Author: s-paulraj@ti.com <s-paulraj@ti.com>
4558 Date:   Tue May 12 11:45:34 2009 -0400
4559
4560     DaVinci Network Driver Updates
4561
4562     Different flavours of DaVinci SOC's have differences in their EMAC IP
4563     This patch does the following
4564     1) Updates base addresses for DM365
4565     2) Updates MDIO frequencies for DM365 and DM646x
4566     3) Update EMAC wrapper registers for DM365 and DM646x
4567
4568     Patch applies to u-boot-net git. the EMAC driver itself
4569     will be updated shortly to add support for DM365 and DM646x
4570
4571     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
4572     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4573
4574 commit 44578bea14e49035331a8f0e000e935e0d830ff4
4575 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4576 Date:   Tue May 26 08:29:29 2009 -0400
4577
4578     Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
4579
4580      From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
4581     From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4582     Date: Wed, 20 May 2009 18:26:01 -0400
4583     Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
4584
4585     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4586     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4587
4588 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
4589 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4590 Date:   Thu Jun 4 09:39:48 2009 +0200
4591
4592     A VLAN tagged DHCP request/discover is 4 bytes short
4593
4594     The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
4595     If sending a VLAN tagged frame (when env variable vlan is set) this
4596     should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
4597
4598     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4599     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4600
4601 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
4602 Author: Ben Warren <biggerbadderben@gmail.com>
4603 Date:   Tue Apr 28 16:39:19 2009 -0700
4604
4605     Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
4606
4607     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4608
4609 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
4610 Author: Ben Warren <biggerbadderben@gmail.com>
4611 Date:   Tue May 26 00:34:07 2009 -0700
4612
4613     Switched davinci_emac Ethernet driver to use newer API
4614
4615     Added CONFIG_NET_MULTI to all Davinci boards
4616     Removed all calls to Davinci network driver from board code
4617     Added cpu_eth_init() to cpu/arm926ejs/cpu.c
4618
4619     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4620
4621 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
4622 Author: Ben Warren <biggerbadderben@gmail.com>
4623 Date:   Mon Apr 27 23:19:10 2009 -0700
4624
4625     Initial cleanup of Davinci Ethernet driver
4626
4627      Removed pointless #ifdefs
4628      Moved functions around in file in preparation for switch to newer API
4629
4630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4631
4632 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
4633 Author: Ben Warren <biggerbadderben@gmail.com>
4634 Date:   Tue May 26 00:17:59 2009 -0700
4635
4636     Moved Davinci Ethernet driver to drivers/net
4637
4638     This driver has been renamed davinci_emac.c
4639
4640     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4641
4642 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
4643 Author: Prafulla Wadaskar <prafulla@marvell.com>
4644 Date:   Tue May 19 01:40:16 2009 +0530
4645
4646     Marvell MV88E61XX Switch Driver support
4647
4648     Chips supported:-
4649     1. 88E6161 6 port gbe swtich with 5 integrated PHYs
4650     2. 88E6165 6 port gbe swtich with 5 integrated PHYs
4651     2. 88E6132 3 port gbe swtich with 2 integrated PHYs
4652     Platform specific configuration supported for:-
4653     default or router port vlan configuration
4654     led_init configuration
4655     mdip/n polarity reversal configuration
4656
4657     Note: This driver is supported and tested against
4658     kirkwood egiga interface
4659
4660     Contributors:
4661     Yotam Admon <yotam@marvell.com>
4662     Michael Blostein <michaelbl@marvell.com
4663
4664     Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
4665     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
4666     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4667
4668 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
4669 Author: Zach LeRoy <zleroy@xes-inc.com>
4670 Date:   Fri May 22 10:26:33 2009 -0500
4671
4672     tsec: Add support for BCM5482S PHY
4673
4674     Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
4675     Acked-by: Kumar Gala <galak@kernel.crashing.org>
4676     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4677
4678 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
4679 Author: Mike Frysinger <vapier@gentoo.org>
4680 Date:   Sun Jun 14 06:29:07 2009 -0400
4681
4682     Blackfin: unify u-boot linker scripts
4683
4684     All the Blackfin linker scripts were duplicated across the board dirs with
4685     no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
4686     unify all of them in the lib_blackfin/ dir and for the few boards that
4687     need to embedded the environment directly, add a LDS_BOARD_TEXT define for
4688     them to customize via their board config file.  This is much simpler than
4689     forcing them to duplicate the rest of the linker script.
4690
4691     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4692
4693 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
4694 Author: Mike Frysinger <vapier@gentoo.org>
4695 Date:   Fri May 29 17:02:37 2009 -0400
4696
4697     Blackfin: bf518f-ezbrd: enable SST SPI flash driver
4698
4699     The BF51xF parts have an internal SST SPI flash, so make sure the driver is
4700     enabled by default so we can access it.
4701
4702     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4703
4704 commit f348ab85f741dc98b2d202c04b5f430eace94925
4705 Author: Mike Frysinger <vapier@gentoo.org>
4706 Date:   Fri Apr 24 17:22:40 2009 -0400
4707
4708     Blackfin: convert specific pre/post config headers to common method
4709
4710     The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
4711     common Blackfin board defines.  The common method now is to use config.h,
4712     so convert blackfin-config-post.h to that.  Rename the still Blackfin
4713     specific blackfin-config-pre.h to config-pre.h so the naming conventions
4714     at least line up.
4715
4716     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4717
4718 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
4719 Author: Mike Frysinger <vapier@gentoo.org>
4720 Date:   Fri Apr 24 17:11:47 2009 -0400
4721
4722     Blackfin: enable LZMA for all ADI boards
4723
4724     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4725
4726 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
4727 Author: Mike Frysinger <vapier@gentoo.org>
4728 Date:   Mon Apr 13 05:52:45 2009 -0400
4729
4730     Blackfin: make default ADI env more flexible
4731
4732     Allow boards to easily override the root= and default bootcmd, allow
4733     people to tweak the file used in default bootcmds at runtime via one env
4734     var, and add a stock nandboot command.
4735
4736     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4737
4738 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
4739 Author: Hoan Hoang <hnhoan@i-syst.com>
4740 Date:   Sun Jan 18 22:44:17 2009 -0500
4741
4742     Blackfin: ibf-dsp561: new board port
4743
4744     Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
4745     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4746
4747 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
4748 Author: Mike Frysinger <vapier@gentoo.org>
4749 Date:   Sun Oct 12 23:28:33 2008 -0400
4750
4751     Blackfin: blackstamp: new board port
4752
4753     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4754
4755 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
4756 Author: Mike Frysinger <vapier@gentoo.org>
4757 Date:   Sun Oct 12 23:22:25 2008 -0400
4758
4759     Blackfin: bf537-srv1: new board port
4760
4761     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4762
4763 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
4764 Author: Mike Frysinger <vapier@gentoo.org>
4765 Date:   Sun Oct 12 23:16:52 2008 -0400
4766
4767     Blackfin: bf537-minotaur: new board port
4768
4769     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4770
4771 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
4772 Author: Mike Frysinger <vapier@gentoo.org>
4773 Date:   Sun Oct 12 23:08:03 2008 -0400
4774
4775     Blackfin: bf537-pnav: new board port
4776
4777     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4778
4779 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
4780 Author: Mike Frysinger <vapier@gentoo.org>
4781 Date:   Sun Oct 12 21:55:45 2008 -0400
4782
4783     Blackfin: cm-bf527: new board port
4784
4785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4786
4787 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
4788 Author: Mike Frysinger <vapier@gentoo.org>
4789 Date:   Sun Oct 12 21:54:07 2008 -0400
4790
4791     Blackfin: cm-bf548: new board port
4792
4793     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4794
4795 commit 9417d9a21384279308abe5b4dd8dfd418742484c
4796 Author: Mike Frysinger <vapier@gentoo.org>
4797 Date:   Sun Oct 12 21:49:28 2008 -0400
4798
4799     Blackfin: tcm-bf537: new board port
4800
4801     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4802
4803 commit e548321af00e869af7194896576beb9b68457ff7
4804 Author: Mike Frysinger <vapier@gentoo.org>
4805 Date:   Sun Oct 12 21:45:05 2008 -0400
4806
4807     Blackfin: cm-bf561: new board port
4808
4809     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4810
4811 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
4812 Author: Mike Frysinger <vapier@gentoo.org>
4813 Date:   Sun Oct 12 21:41:06 2008 -0400
4814
4815     Blackfin: cm-bf537e: new board port
4816
4817     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4818
4819 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
4820 Author: Mike Frysinger <vapier@gentoo.org>
4821 Date:   Sun Oct 12 21:36:22 2008 -0400
4822
4823     Blackfin: cm-bf533: new board port
4824
4825     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4826
4827 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
4828 Author: Mike Frysinger <vapier@gentoo.org>
4829 Date:   Thu Nov 27 16:50:32 2008 -0500
4830
4831     Blackfin: new spibootldr command
4832
4833     Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
4834     so add a new 'spibootldr' command to take advantage of it.
4835
4836     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4837
4838 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
4839 Author: Mike Frysinger <vapier@gentoo.org>
4840 Date:   Mon Oct 6 04:42:33 2008 -0400
4841
4842     Blackfin: support embedding the environment into loader files (LDRs)
4843
4844     For the most part, the Blackfin processor boots files in the LDR format
4845     rather than binary/ELF files.  So we want to export the environment as a
4846     raw blob to the LDR utility so it can embed it at the right location.
4847
4848     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4849
4850 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
4851 Author: Mike Frysinger <vapier@gentoo.org>
4852 Date:   Sun Jun 14 11:03:48 2009 -0400
4853
4854     add %.c->%.i and %.c->%.s rules
4855
4856     The Linux kernel has some helper rules which allow you to quickly produce
4857     some of the intermediary files from C source.  Specifically, you can
4858     create .i files which is the preprocessed output and you can create .s
4859     files which is the assembler output.  This is useful when you are trying
4860     to track down header/macro expansion errors or inline assembly errors.
4861
4862     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4863     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4864
4865 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
4866 Author: Mike Frysinger <vapier@gentoo.org>
4867 Date:   Sat May 30 01:02:03 2009 -0400
4868
4869     make sure toplevel $(SUBDIRS) is always declared
4870
4871     The $(SUBDIRS) variable is only declared when U-Boot has been configured,
4872     but it gets used all the time.  In the non-configured case, it is used to
4873     generate a helpful error message, but it needs to be set properly for that
4874     to occur.
4875
4876     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4877
4878 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
4879 Author: Grzegorz Bernacki <gjb@semihalf.com>
4880 Date:   Fri Jun 12 11:33:55 2009 +0200
4881
4882     digsy mtc: Add description to GPIO initial configuration.
4883
4884     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4885
4886 commit 12304871bc7839145f2b4238923e9023616d7399
4887 Author: Grzegorz Bernacki <gjb@semihalf.com>
4888 Date:   Fri Jun 12 11:33:54 2009 +0200
4889
4890     digsy MTC: Add 'mtc' command.
4891
4892     New command allows to:
4893          o check FW version
4894          o set LED status
4895          o set digital output status
4896          o get digital input status
4897
4898     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4899
4900 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
4901 Author: Grzegorz Bernacki <gjb@semihalf.com>
4902 Date:   Fri Jun 12 11:33:53 2009 +0200
4903
4904     digsy MTC: Add SPI support.
4905
4906     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4907
4908 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
4909 Author: Grzegorz Bernacki <gjb@semihalf.com>
4910 Date:   Fri Jun 12 11:33:52 2009 +0200
4911
4912     mpc52xx: Add SPI driver.
4913
4914     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4915
4916 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
4917 Author: Mike Frysinger <vapier@gentoo.org>
4918 Date:   Sun Jun 14 09:33:00 2009 -0400
4919
4920     allow boards to customize compiler options on a per-file/dir basis
4921
4922     With our Blackfin boards, we like to build the compression routines with
4923     -O2 as our tests show a pretty good size/speed tradeoff.  For the rest of
4924     U-Boot though, we want to stick with the default -Os as that is mostly
4925     control code.  So in our case, we would add a line like so to the board
4926     specific config.mk file:
4927         CFLAGS_lib_generic += -O2
4928
4929     Now all files under lib_generic/ will have -O2 appended to their build.
4930
4931     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4932     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4933
4934 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
4935 Author: Wolfgang Denk <wd@denx.de>
4936 Date:   Sun Jun 14 21:30:39 2009 +0200
4937
4938     Prepare v2009.06
4939
4940     Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
4941
4942     Signed-off-by: Wolfgang Denk <wd@denx.de>
4943
4944 commit c3147c1762f8caf99649051116a2411bdf887c10
4945 Author: Wolfgang Denk <wd@denx.de>
4946 Date:   Sun Jun 14 20:31:36 2009 +0200
4947
4948     Revert "SMC911x driver fixed for NFS boot"
4949
4950     This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
4951     which causes compile warnings ("large integer implicitly truncated
4952     to unsigned type") on all systems that use this driver. The warning
4953     results from passing long constants (TX_CFG, RX_CFG) into
4954     smc911x_set_mac_csr() which is declared to accept "unsigned
4955     character" arguments only.
4956
4957     Being close to a release, with nobody available to actually test the
4958     code or the suggested fixes, it seems better to revert the patch.
4959
4960 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
4961 Author: Peter Tyser <ptyser@xes-inc.com>
4962 Date:   Fri May 22 10:26:37 2009 -0500
4963
4964     xes: Update Freescale clock code to work with 86xx processors
4965
4966     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4968
4969 commit 25623937bb81cae788d767e6c59a11c96fc82866
4970 Author: Peter Tyser <ptyser@xes-inc.com>
4971 Date:   Fri May 22 10:26:36 2009 -0500
4972
4973     xes: Update Freescale DDR code to work with 86xx processors
4974
4975     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4976     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4977
4978 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
4979 Author: Peter Tyser <ptyser@xes-inc.com>
4980 Date:   Fri May 22 10:26:35 2009 -0500
4981
4982     xes: Update Freescale PCI code to work with 86xx processors
4983
4984     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4985     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4986
4987 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
4988 Author: Peter Tyser <ptyser@xes-inc.com>
4989 Date:   Fri May 22 10:26:32 2009 -0500
4990
4991     85xx: Add PORBMSR and PORDEVSR shift defines
4992
4993     Add defines similar to those already used for the the 86xx architecture.
4994     This will ease sharing of PCI code between the 85xx and 86xx
4995     architectures.
4996
4997     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4998     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4999
5000 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
5001 Author: Peter Tyser <ptyser@xes-inc.com>
5002 Date:   Thu May 21 12:10:00 2009 -0500
5003
5004     fsl/85xx, 86xx: Sync up DMA code
5005
5006     The following changes were made to sync up the DMA code between the 85xx
5007     and 86xx architectures which will make it easier to break out common
5008     8xxx DMA code:
5009
5010     85xx:
5011     - Don't set STRANSINT and SPCIORDER fields in SATR register.  These bits
5012       only have an affect when the SBPATMU bit is set.
5013     - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
5014       status register.  We may as well clear all 32 bits of the register...
5015
5016     86xx:
5017     - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
5018     - Add clearing of errors in the DMA status register when initializing
5019       the controller
5020     - Clear the channel start bit in the DMA mode register after a transfer
5021
5022     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5023     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5024
5025 commit b1f12650d332eadac1306a772cab6096abee6ddd
5026 Author: Peter Tyser <ptyser@xes-inc.com>
5027 Date:   Thu May 21 12:09:59 2009 -0500
5028
5029     fsl: Create common fsl_dma.h for 85xx and 86xx cpus
5030
5031     Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
5032     reduce a large amount of code duplication
5033
5034     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5035     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5036
5037 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
5038 Author: Haiying Wang <Haiying.Wang@freescale.com>
5039 Date:   Wed May 20 12:30:41 2009 -0400
5040
5041     85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
5042
5043     On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
5044     UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
5045     disable UEC6 and UEC8 by default.
5046
5047     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5048     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5049
5050 commit e8efef7c1b457442583a8b9d38d8a5b667661616
5051 Author: Haiying Wang <Haiying.Wang@freescale.com>
5052 Date:   Thu Jun 4 16:12:42 2009 -0400
5053
5054     drivers/qe: add sgmii support in for UEC driver
5055
5056     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5057     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5058
5059 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
5060 Author: Haiying Wang <Haiying.Wang@freescale.com>
5061 Date:   Thu Jun 4 16:12:41 2009 -0400
5062
5063     qe: Pass in uec_info struct through uec_initialize
5064
5065     The uec driver contains code to hard code configuration information for the uec
5066     ethernet controllers. This patch creates an array of uec_info structures, which
5067     are then parsed by the corresponding driver instance to determine configuration.
5068     It also creates function uec_standard_init() to initialize all UEC interfaces
5069     for 83xx and 85xx.
5070
5071     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5073
5074 commit 9a6110897fc9282ade598bbba70ad72b940436e3
5075 Author: Haiying Wang <Haiying.Wang@freescale.com>
5076 Date:   Thu Jun 4 16:12:40 2009 -0400
5077
5078     fsl: Update the number of ethxaddr in reading system eeprom
5079
5080     We support up to 8 mac addresses in system eeprom, so we define the macro
5081     MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
5082     according to mac_count.
5083
5084     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5085     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5086
5087 commit f82107f637f167a77803c0933f9b24741a91c711
5088 Author: Haiying Wang <Haiying.Wang@freescale.com>
5089 Date:   Wed May 20 12:30:37 2009 -0400
5090
5091     85xx: Add RMII support for MPC8569MDS
5092
5093     This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
5094     support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
5095     enalbe_mpc8569mds_qe_uec which is  more accurate.
5096
5097     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5098     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5099
5100 commit 750098d33bc362ac4263863e92da158cf011063f
5101 Author: Haiying Wang <Haiying.Wang@freescale.com>
5102 Date:   Wed May 20 12:30:36 2009 -0400
5103
5104     85xx: Add UEC3 and UEC4 support for MPC8569MDS
5105
5106     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5107     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5108
5109 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
5110 Author: Haiying Wang <Haiying.Wang@freescale.com>
5111 Date:   Wed May 20 12:30:35 2009 -0400
5112
5113     drivers/qe: Add more SNUM number for QE
5114
5115     Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
5116     1000 mode.
5117
5118     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5119     Acked-by: Timur Tabi <timur@freescale.com>
5120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5121
5122 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
5123 Author: Haiying Wang <Haiying.Wang@freescale.com>
5124 Date:   Thu May 21 15:34:14 2009 -0400
5125
5126     drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
5127
5128     Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
5129     define MAX_QE_RISC for QE based silicons.
5130
5131     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5132     Acked-by: Timur Tabi <timur@freescale.com>
5133     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5134
5135 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
5136 Author: Haiying Wang <Haiying.Wang@freescale.com>
5137 Date:   Wed May 20 12:30:29 2009 -0400
5138
5139     85xx: Add QE clk support
5140
5141     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5142     Acked-by: Timur Tabi <Timur@freescale.com>
5143     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5144
5145 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
5146 Author: Kumar Gala <galak@kernel.crashing.org>
5147 Date:   Wed May 20 01:11:33 2009 -0500
5148
5149     85xx: Added MPC8535/E identifiers
5150
5151     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5152
5153 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
5154 Author: Kumar Gala <galak@kernel.crashing.org>
5155 Date:   Thu May 21 08:36:43 2009 -0500
5156
5157     85xx: Always attempt ethernet device tree fixup
5158
5159     Its reasonable that we may have ethernet devices but dont have drivers
5160     or support enabled for them in u-boot and want the device tree fixed up.
5161     Unconditionally calling the ethernet fixup is fine since if we dont have
5162     ethernet nodes that match (or aliases) we will not attempt to do
5163     anything.
5164
5165     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5166     Acked-by: Timur Tabi <timur@freescale.com>
5167
5168 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
5169 Author: Haiying Wang <Haiying.Wang@freescale.com>
5170 Date:   Thu May 21 15:32:13 2009 -0400
5171
5172     drivers/qe: Rename the camel-case identifiers in uec
5173
5174     Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
5175
5176     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5177
5178 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
5179 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
5180 Date:   Fri Apr 3 15:36:13 2009 -0500
5181
5182     85xx: Add P2020DS support
5183
5184     The patch adds support for P2020DS reference platform.
5185     DDR3 interface uses hard-coded initialization rather than SPD
5186     for now and was tested at 667Mhz. Some PIXIS register
5187     definitions and associated code sections need to be fixed.
5188     TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
5189     tested under u-boot.
5190
5191     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
5192     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
5193     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5194
5195 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
5196 Author: Stefan Roese <sr@denx.de>
5197 Date:   Tue Jun 9 16:57:47 2009 +0200
5198
5199     mpc512x: MPC5121ADS: Add NAND support
5200
5201     This patch adds NAND support to the MPC5121ADS board. Please
5202     note that the image size increased since NAND support didn't
5203     fit in the current image size (256k).
5204
5205     Signed-off-by: Stefan Roese <sr@denx.de>
5206     Signed-off-by: Wolfgang Denk <wd@denx.de>
5207     Cc: Wolfgang Denk <wd@denx.de>
5208
5209 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
5210 Author: Stefan Roese <sr@denx.de>
5211 Date:   Tue Jun 9 16:57:03 2009 +0200
5212
5213     nand/mpc512x: Add MPC512x NAND support (NFC)
5214
5215     This patch adds NAND Flash Controller driver for MPC5121 revision 2.
5216     All device features, except hardware ECC and power management, are
5217     supported.
5218
5219     This NFC driver replaces the one orignally posted by John Rigby:
5220
5221     "[PATCH] Freescale NFC NAND driver"
5222
5223     It's a port of the Linux driver version posted by Piotr Ziecik a few
5224     weeks ago. Using this driver has the following advantages (from my
5225     point of view):
5226
5227     - Compatibility with the Linux NAND driver (e.g. ECC usage)
5228     - Better code quality in general
5229     - Resulting U-Boot image is a bit smaller (approx. 3k)
5230     - Better to sync with newer Linux driver versions
5231
5232     The only disadvantage I can see, is that HW-ECC is not supported right
5233     now. But this could be added later (e.g. port from Linux driver after
5234     it's supported there). Using HW-ECC on the MCP5121 NFC has a general
5235     problem because of the ECC usage in the spare area. This collides with
5236     JFFS2 for example.
5237
5238     Signed-off-by: Stefan Roese <sr@denx.de>
5239     Cc: Piotr Ziecik <kosmo@semihalf.com>
5240     Cc: Wolfgang Denk <wd@denx.de>
5241     Cc: John Rigby <jcrigby@gmail.com>
5242     Cc: Scott Wood <scottwood@freescale.com>
5243
5244 commit e53b507cee5d976953134a565c72fd32c967d7dd
5245 Author: Stefan Roese <sr@denx.de>
5246 Date:   Tue Jun 9 11:50:40 2009 +0200
5247
5248     mpc512x: Add esd gmbh mecp5123 board support
5249
5250     MECP5123 is a MPC5121E based module by esd gmbh.
5251
5252     Signed-off-by: Stefan Roese <sr@denx.de>
5253     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5254
5255 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
5256 Author: Stefan Roese <sr@denx.de>
5257 Date:   Tue Jun 9 11:50:05 2009 +0200
5258
5259     mcp512x: Add macros for SCFR LPC divisor access
5260
5261     Thos macros will be used by the esd mecp5123 board.
5262
5263     Signed-off-by: Stefan Roese <sr@denx.de>
5264
5265 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
5266 Author: Stefan Roese <sr@denx.de>
5267 Date:   Mon Jun 8 09:38:07 2009 +0200
5268
5269     mpc512x: Fix problem with I2C access before relocation
5270
5271     This is needed for the upcoming esd MECP5123 board port which uses
5272     I2C EEPROM for environment storage.
5273
5274     Signed-off-by: Stefan Roese <sr@denx.de>
5275     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5276     Acked-by: Heiko Schocher<hs@denx.de>
5277
5278 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
5279 Author: Stefan Roese <sr@denx.de>
5280 Date:   Thu Jun 4 13:35:39 2009 +0200
5281
5282     74xx_7xx: CPCI750: Add CPCI adapter/target support
5283
5284     The CPCI750 can be built as CPCI host or adapter/target board. This patch
5285     adds support for runtime detection of those variants.
5286
5287     Signed-off-by: Stefan Roese <sr@denx.de>
5288     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5289
5290 commit ae7a2739d7a0704437376e229bb21940952c55be
5291 Author: Stefan Roese <sr@denx.de>
5292 Date:   Fri Jun 5 05:45:41 2009 +0200
5293
5294     74xx_7xx: CPCI750: Enable access to PCI function > 0
5295
5296     The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
5297     patch enables access to those functions.
5298
5299     Signed-off-by: Stefan Roese <sr@denx.de>
5300     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5301
5302 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
5303 Author: Stefan Roese <sr@denx.de>
5304 Date:   Thu Jun 4 13:35:37 2009 +0200
5305
5306     74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
5307
5308     Signed-off-by: Stefan Roese <sr@denx.de>
5309     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5310
5311 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
5312 Author: Stefan Roese <sr@denx.de>
5313 Date:   Thu Jun 4 13:35:36 2009 +0200
5314
5315     74xx_7xx: CPCI750: Add loadpci command
5316
5317     This command is used to load/boot an OS-image which is transferred from
5318     the CPCI host to the CPCI target/adapter.
5319
5320     Signed-off-by: Stefan Roese <sr@denx.de>
5321     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5322
5323 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
5324 Author: Stefan Roese <sr@denx.de>
5325 Date:   Thu Jun 4 13:35:35 2009 +0200
5326
5327     74xx_7xx: CPCI750: Add commandline editing/history
5328
5329     Signed-off-by: Stefan Roese <sr@denx.de>
5330     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5331
5332 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
5333 Author: Stefan Roese <sr@denx.de>
5334 Date:   Thu Jun 4 16:55:34 2009 +0200
5335
5336     UBI: Add compile-time check for correct malloc area configuration
5337
5338     UBI is quite memory greedy and requires at least approx. 512k of malloc
5339     area. This patch adds a compile-time check, so that boards will not
5340     build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
5341
5342     Signed-off-by: Stefan Roese <sr@denx.de>
5343
5344 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
5345 Author: Prafulla Wadaskar <prafulla@marvell.com>
5346 Date:   Mon Apr 6 21:24:43 2009 +0530
5347
5348     sf: new Macronix MX25xx SPI flash driver
5349
5350     Added macronix SF driver for MTD framework
5351     MX25L12805D is supported and tested
5352     TBD: sector erase implementation, other deivces support
5353
5354     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5355     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5356
5357 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
5358 Author: Todor I Mollov <tmollov@ucsd.edu>
5359 Date:   Sat Apr 4 07:14:44 2009 -0400
5360
5361     sf: atmel: implement power-of-two write/erase funcs
5362
5363     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
5364     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5365     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5366
5367 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
5368 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5369 Date:   Mon May 25 17:23:18 2009 +0530
5370
5371     mpc85xx: 8536ds: Add USB related CONFIGs
5372
5373     This patch adds CONFIGs for enabling USB in mpc8536ds and also
5374     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
5375     Copyright.
5376
5377     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5378     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5379
5380 commit 6823e9b01290977c4d9c90381459c01f66e12e79
5381 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5382 Date:   Mon May 25 17:23:17 2009 +0530
5383
5384     mpc83xx: 8315erdb: Add USB related CONFIGs
5385
5386     This patch adds CONFIGs for enabling USB in mpc8315erdb and also
5387     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
5388     Copyright.
5389
5390     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5391     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5392
5393 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
5394 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5395 Date:   Thu May 21 17:32:48 2009 +0530
5396
5397     mpc85xx: USB: Add support
5398
5399     The following patch adds 85xx-specific USB support and also
5400     revamps Copyright in immap_85xx.h
5401
5402     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5403     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5404
5405 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
5406 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5407 Date:   Mon May 25 17:23:16 2009 +0530
5408
5409     mpc83xx: USB: Reorganized its support
5410
5411     The following patch reorganizes/reworks the USB support for mpc83xx
5412     as under:-
5413
5414       * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
5415         cpu/mpx83xx/cpu_init.c
5416
5417       * Board specific usb_phy_type is read from the environment
5418
5419       * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
5420
5421       * Copyrights revamped in most of the following files
5422
5423     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5424     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5425
5426 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
5427 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5428 Date:   Thu May 21 17:32:27 2009 +0530
5429
5430     mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
5431
5432     The following patch moves 8xxx-specifc USB #defines from
5433     drivers/usb/host/ehci-fsl.h to include/usb.
5434
5435     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5436     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5437
5438 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
5439 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
5440 Date:   Thu May 21 17:32:15 2009 +0530
5441
5442     mpc8xxx: USB: Removed reenablement of its interface
5443
5444     To prepare for the 85xx USB support, which requires interface enablement
5445     only once in (specified) order, no different than instructions for
5446     enabling the interface under 83xx.  It is unknown why the original author
5447     enabled the interface twice (checked for references in errata, etc).
5448
5449     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
5450     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5451
5452 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
5453 Author: Peter Tyser <ptyser@xes-inc.com>
5454 Date:   Fri May 22 17:23:25 2009 -0500
5455
5456     83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
5457
5458     Use the standard lowercase "x" capitalization that other Freescale
5459     architectures use for CPU defines to prevent confusion and errors
5460
5461     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5462     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5463
5464 commit 0f898604945af4543c1525fc33b6bae621a3b805
5465 Author: Peter Tyser <ptyser@xes-inc.com>
5466 Date:   Fri May 22 17:23:24 2009 -0500
5467
5468     83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
5469
5470     Use the standard lowercase "xx" capitalization that other Freescale
5471     architectures use for CPU defines to prevent confusion and errors
5472
5473     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5474     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5475
5476 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
5477 Author: Stefan Roese <sr@denx.de>
5478 Date:   Tue Jun 2 16:53:16 2009 +0200
5479
5480     mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
5481
5482     This patch removes the duplicated code for baudrate generator configuration
5483     in the PSC serial_init() implementation by calling serial_setbrg() instead
5484     of duplicating the code.
5485
5486     Signed-off-by: Stefan Roese <sr@denx.de>
5487
5488 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
5489 Author: Stefan Roese <sr@denx.de>
5490 Date:   Tue Jun 2 16:53:15 2009 +0200
5491
5492     mpc512x: Fix PSC divisor calculation for baudrate setting
5493
5494     The wrong input frequency was used in serial_setbrg(). This patch fixes
5495     this by using ips_clk as input frequency for the PSC baudrate generator.
5496
5497     Signed-off-by: Stefan Roese <sr@denx.de>
5498
5499 commit 52568c3654b2b257016d52167805ae132faac14e
5500 Author: Wolfgang Denk <wd@denx.de>
5501 Date:   Sat May 16 10:47:46 2009 +0200
5502
5503     MPC512x: add support for ARIA board
5504
5505     ARIA is a MPC5121E based COM Express module by Dave/DENX.
5506
5507     Signed-off-by: Wolfgang Denk <wd@denx.de>
5508     Cc: John Rigby <jcrigby@gmail.com>
5509
5510 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
5511 Author: Wolfgang Denk <wd@denx.de>
5512 Date:   Sat May 16 10:47:45 2009 +0200
5513
5514     MPC512x: remove include/mpc512x.h
5515
5516     Move needed definitions (register descriptions etc.) from
5517     include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
5518
5519     Instead of using a #define'd register offset, use a function that
5520     provides the PATA controller's base address.
5521
5522     All the rest of include/mpc512x.h are register offset definitions
5523     which can be eliminated by proper use of C structures.
5524
5525     There are only a few register offsets remaining that are needed in
5526     cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
5527     which is intended as a temporary workaround only. In a later patch
5528     this file will be removed, too, and then auto-generated from the
5529     respective C structs.
5530
5531     Signed-off-by: Wolfgang Denk <wd@denx.de>
5532     Cc: John Rigby <jcrigby@gmail.com>
5533
5534 commit a927e491b2a326c1e9c4313e3ce4042988422697
5535 Author: Wolfgang Denk <wd@denx.de>
5536 Date:   Sat May 16 10:47:44 2009 +0200
5537
5538     MPC512x FEC: get rid of duplicated struct ethernet_regs
5539
5540     Use existing struct fec512x instead.
5541
5542     Signed-off-by: Wolfgang Denk <wd@denx.de>
5543     Cc: John Rigby <jcrigby@gmail.com>
5544     Acked-by: Ben Warren <biggerbadderben@gmail.com>
5545
5546 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
5547 Author: Wolfgang Denk <wd@denx.de>
5548 Date:   Sat May 16 10:47:43 2009 +0200
5549
5550     MPC512x: use I/O accessors instead of pointer accesses
5551
5552     This commit changes the MPC512x code to use I/O accessor calls (i.e.
5553     out_*() and in_*()) instead of using deprecated pointer accesses.
5554
5555     Signed-off-by: Wolfgang Denk <wd@denx.de>
5556     Cc: John Rigby <jcrigby@gmail.com>
5557
5558 commit 19dc7e179268be148e550c36203208c662610d76
5559 Author: Wolfgang Denk <wd@denx.de>
5560 Date:   Sat May 16 10:47:42 2009 +0200
5561
5562     MPC512x: add more hardware description to immap_512x.h
5563
5564     - add GPIO module description
5565     - add Address Latch Timing Register description
5566     - add IO Control Memory Map
5567     - add FEC Memory Map
5568
5569     Also change board/freescale/mpc5121ads/mpc5121ads.c and
5570     cpu/mpc512x/iopin.c as needed.
5571
5572     Signed-off-by: Wolfgang Denk <wd@denx.de>
5573     Cc: John Rigby <jcrigby@gmail.com>
5574
5575 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
5576 Author: Wolfgang Denk <wd@denx.de>
5577 Date:   Sat May 16 10:47:41 2009 +0200
5578
5579     Rename ads5121 board into mpc5121ads
5580
5581     We rename the board so we use a consistent name in U-Boot and in
5582     Linux.  Also, we use this opportunity to move the board into the
5583     Freecale vendor directory.
5584
5585     Signed-off-by: Wolfgang Denk <wd@denx.de>
5586     Cc: John Rigby <jcrigby@gmail.com>
5587
5588 commit debf87415579c0f50aab9e0832976d4506babe0f
5589 Author: Wolfgang Denk <wd@denx.de>
5590 Date:   Sat May 16 10:47:40 2009 +0200
5591
5592     cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
5593
5594     Signed-off-by: Wolfgang Denk <wd@denx.de>
5595     Cc: John Rigby <jcrigby@gmail.com>
5596
5597 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
5598 Author: Wolfgang Denk <wd@denx.de>
5599 Date:   Sat May 16 10:47:39 2009 +0200
5600
5601     cpu/mpc512x/pci.c: minor coding style cleanup
5602
5603     Get rid of variable declaration in the middle of the code.
5604
5605     Signed-off-by: Wolfgang Denk <wd@denx.de>
5606     Cc: John Rigby <jcrigby@gmail.com>
5607
5608 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
5609 Author: Wolfgang Denk <wd@denx.de>
5610 Date:   Sat May 16 10:47:38 2009 +0200
5611
5612     mpc512x: Move common files to share them by several boards
5613
5614     We will soon see several new MPC521x based boards added.  This patch
5615     moves files that are not board specific to a common directory so they
5616     can be shared by all such ports.  It also splits off common IDE code
5617     into a new file, cpu/mpc512x/ide.c .
5618
5619     Signed-off-by: Wolfgang Denk <wd@denx.de>
5620     Cc: John Rigby <jcrigby@gmail.com>
5621
5622 commit 03e069dc0a765d506f78a68319acf33d432e035b
5623 Author: Wolfgang Denk <wd@denx.de>
5624 Date:   Sat May 16 10:47:37 2009 +0200
5625
5626     mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
5627
5628     Signed-off-by: Wolfgang Denk <wd@denx.de>
5629     Cc: John Rigby <jcrigby@gmail.com>
5630
5631 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
5632 Author: Wolfgang Denk <wd@denx.de>
5633 Date:   Sun May 24 17:06:54 2009 +0200
5634
5635     General help message cleanup
5636
5637     Many of the help messages were not really helpful; for example, many
5638     commands that take no arguments would not print a correct synopsis
5639     line, but "No additional help available." which is not exactly wrong,
5640     but not helpful either.
5641
5642     Commit ``Make "usage" messages more helpful.'' changed this
5643     partially. But it also became clear that lots of "Usage" and "Help"
5644     messages (fields "usage" and "help" in struct cmd_tbl_s respective)
5645     were actually redundant.
5646
5647     This patch cleans this up - for example:
5648
5649     Before:
5650         => help dtt
5651         dtt - Digital Thermometer and Thermostat
5652
5653         Usage:
5654         dtt         - Read temperature from digital thermometer and thermostat.
5655
5656     After:
5657         => help dtt
5658         dtt - Read temperature from Digital Thermometer and Thermostat
5659
5660         Usage:
5661         dtt
5662
5663     Signed-off-by: Wolfgang Denk <wd@denx.de>
5664
5665 commit 94796d8544d4248028141bad11c6a74b840e9d6e
5666 Author: Wolfgang Denk <wd@denx.de>
5667 Date:   Sun May 24 19:17:29 2009 +0200
5668
5669     Make "usage" messages more helpful.
5670
5671     In case of incorrect command invocations U-Boot used to print pretty
5672     useless "usage" messages, for example:
5673
5674         => nand markbad
5675         Usage:
5676         nand - NAND sub-system
5677
5678     In the result, the user would have to run the "help" command to get
5679     the (available) information about correct command usage. Change this,
5680     so that this information gets always printed.
5681
5682     Note that this changes the user interface of all commands, but
5683     hopefully to the better.
5684
5685     Signed-off-by: Wolfgang Denk <wd@denx.de>
5686
5687 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
5688 Author: Mike Frysinger <vapier@gentoo.org>
5689 Date:   Sun May 24 02:26:19 2009 -0400
5690
5691     nvedit: speed up printing of environment
5692
5693     The printing code would check the same environment byte multiple times and
5694     write to the console one byte at a time.  For some devices (such as the
5695     Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
5696     damned slow.  So create a small 16 byte buffer to fill up and send to puts
5697     as needed.  In the process, unify the different print functions, shrink
5698     the resulting code (source and compiled), and avoid excess env reads as
5699     those too can be somewhat expensive depending on the board.
5700
5701     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5702
5703 commit 3112030a430553768de5d30c05bedf8710784452
5704 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5705 Date:   Fri May 22 19:28:52 2009 +0200
5706
5707     config.mk: remove un-needed REMOTE_BUILD check
5708
5709     as $(obj) is empty when in tree build
5710
5711     %.s:        %.S
5712         $(CPP) $(AFLAGS) -o $@ $<
5713
5714     and
5715
5716     $(obj)%.s:  %.S
5717         $(CPP) $(AFLAGS) -o $@ $<
5718
5719     are the same
5720
5721     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5722     Acked-by: Mike Frysinger <vapier@gentoo.org>
5723
5724 commit 651351fe980b20217b014b9a888398f18d77951c
5725 Author: Tom Rix <Tom.Rix@windriver.com>
5726 Date:   Wed May 20 07:55:41 2009 -0500
5727
5728     FAT replace compare_sign with strncmp.
5729
5730     The static function compare_sign is only used to compare the fs_type string
5731     and does not do anything more than what strncmp does.
5732
5733     The addition of the trailing '\0' to fs_type, while legal, is not needed
5734     because the it is never printed out and strncmp does not depend on NULL
5735     terminated strings.
5736
5737     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5738
5739 commit ecb1dc892297d5d99876907328fed732feefeab2
5740 Author: Mike Frysinger <vapier@gentoo.org>
5741 Date:   Wed May 20 04:35:14 2009 -0400
5742
5743     Add support for Linux-like kallsysms
5744
5745     The kernel stores address<->symbol names in it so things can be decoded at
5746     runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.
5747
5748     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5749
5750 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
5751 Author: Wolfgang Denk <wd@denx.de>
5752 Date:   Sun May 17 16:01:54 2009 +0200
5753
5754     cmd_mtdparts.c: allow to omit definitions for default settings
5755
5756     There is actually no good reason to enforce that all board
5757     configuations must define default settings for "mtdids" and
5758     "mtdparts".  Actually this may be difficult to handle, especially on
5759     boards where different sizes of flash chips can be fit, so there is no
5760     real "default" partition map for all boards.
5761
5762     Lift this arbitrary limitation.
5763
5764     Signed-off-by: Wolfgang Denk <wd@denx.de>
5765
5766 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
5767 Author: Stefan Roese <sr@denx.de>
5768 Date:   Tue May 12 14:31:56 2009 +0200
5769
5770     cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
5771
5772     This patch removes all references to the direct CFI FLASH interface
5773     (via flash_info[]). Now that all FLASH types currently handled in
5774     mtdparts are available (if selected, see below) via the MTD infrastructure.
5775     This is NOR, NAND and OneNAND right now. This can be achieved by defining
5776     the following options:
5777
5778     CONFIG_MTD_DEVICE (for all FLASH types)
5779
5780     plus
5781
5782     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
5783
5784     So we need to add those defines to the board config headers currently
5785     using the mtdparts commands. This is done via another patch, so
5786     we shouldn't break mtdparts compatibility.
5787
5788     One big advantage from this solution is that the cmd_mtdparts.c is
5789     *much* cleaner now. Lot's of #ifdef's are removed and the code itself
5790     is smaller. Additionally the newly added MDT concatenation feature
5791     can new be used via the mtdparts infrastructure and therefor via
5792     UBI etc.
5793
5794     Signed-off-by: Stefan Roese <sr@denx.de>
5795     Cc: Ladislav Michl <ladis@linux-mips.org>
5796     Cc: Scott Wood <scottwood@freescale.com>
5797
5798 commit d558107c18708050f05b6639b2192efb67c905dc
5799 Author: Stefan Roese <sr@denx.de>
5800 Date:   Tue May 12 14:31:18 2009 +0200
5801
5802     mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
5803
5804     This new define enables mtdcore.c compilation and with this we can
5805     select the MTD device infrastructure needed for the reworked mtdparts
5806     command.
5807
5808     We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
5809     CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
5810     for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
5811
5812     Signed-off-by: Stefan Roese <sr@denx.de>
5813     Cc: Scott Wood <scottwood@freescale.com>
5814
5815 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
5816 Author: Stefan Roese <sr@denx.de>
5817 Date:   Tue May 12 14:32:58 2009 +0200
5818
5819     mtd: MTD related config header changes (mtdparts command)
5820
5821     By changing the cmd_mtdparts to only use the MTD infrastructure and
5822     not the direct interface to the CFI NOR FLASH driver we now need
5823     to add the MTD infrastructure to all boards using those mtdparts
5824     commands. This patch adds those components:
5825
5826     CONFIG_MTD_DEVICE (for all FLASH types)
5827
5828     plus
5829
5830     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
5831
5832     To all board maintainers: Please test this on your platforms and
5833     report any problems/issues found. Thanks.
5834
5835     Signed-off-by: Stefan Roese <sr@denx.de>
5836     Cc: Wolfgang Denk <wd@denx.de>
5837     Cc: Ron Madrid <info@sheldoninst.com>
5838     Cc: Georg Schardt <schardt@team-ctech.de>
5839     Cc: Michal Simek <monstr@monstr.eu>
5840     Cc: Ladislav Michl <ladis@linux-mips.org>
5841     Cc: Martin Krause <martin.krause@tqs.de>
5842     Cc: Gary Jennejohn <garyj@denx.de>
5843     Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
5844
5845 commit 8d2effea23e938631126a7888008a0637e13b389
5846 Author: Stefan Roese <sr@denx.de>
5847 Date:   Mon May 11 16:03:55 2009 +0200
5848
5849     mtd: Update MTD infrastructure to support 64bit device size
5850
5851     This patch brings the U-Boot MTD infrastructure in sync with the current
5852     Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
5853     support and a resync of the mtdpart.c file which has seen multiple fixes
5854     meanwhile.
5855
5856     Signed-off-by: Stefan Roese <sr@denx.de>
5857     Cc: Scott Wood <scottwood@freescale.com>
5858     Cc: Kyungmin Park <kmpark@infradead.org>
5859
5860 commit 0a57265533c412adf6024f4b4955141f4346b2b9
5861 Author: Stefan Roese <sr@denx.de>
5862 Date:   Tue May 12 14:29:39 2009 +0200
5863
5864     mtd: Add MTD concat support to concatenate multiple MTD NOR devices
5865
5866     This patch adds concatenation support to the U-Boot MTD infrastructure.
5867     By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
5868     all found NOR devices into one single MTD device. This can be used by
5869     e.g by UBI to access a partition that spans over multiple NOR chips.
5870
5871     Signed-off-by: Stefan Roese <sr@denx.de>
5872
5873 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
5874 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5875 Date:   Sat Apr 25 14:57:52 2009 +0200
5876
5877     make MODEM SUPPORT generic instead of duplicate it
5878
5879     and fix comment
5880
5881     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5882
5883     Adjusted Copyright message.
5884
5885     Signed-off-by: Wolfgang Denk <wd@denx.de>
5886
5887 commit a30f519bd0cde78ba46b424314de94fdab863726
5888 Author: Tom Rix <Tom.Rix@windriver.com>
5889 Date:   Tue Jun 2 20:53:56 2009 -0500
5890
5891     ZOOM2 detect the version of the zoom2 board at runtime.
5892
5893     There are currently 3 versions of the zoom2 board.
5894     The production board, that is currently being released.
5895     The beta board, similar in form to the production board but not released.
5896     The alpha board, a set of PCBs with a very limited circulation.
5897
5898     GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
5899     the board is a production board, otherwise it is a beta board.
5900
5901     The alpha board will likely be mistaken for a beta board.  An alpha board
5902     was unavailible for testing.
5903
5904     This has been tested on the beta and production boards.
5905
5906     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5907     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5908
5909 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
5910 Author: Tom Rix <Tom.Rix@windriver.com>
5911 Date:   Wed Jun 3 01:53:57 2009 -0500
5912
5913     Beagle Convert the board version detection to use the OMAP3 GPIO interface.
5914
5915     There is no new functionality in the change.
5916
5917     This change is a conversion from the using raw register access to using
5918     the OMAP3 GPIO API described in doc/README.omap3.
5919
5920     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5921     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5922
5923 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
5924 Author: Tom Rix <Tom.Rix@windriver.com>
5925 Date:   Wed Jun 3 01:53:55 2009 -0500
5926
5927     Fix a typo in the instructions on using omap3's gpio interface.
5928
5929     Using the example for reading a gpio, shows the problem.
5930     NULL should be the gpio number.
5931
5932     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5933     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5934
5935 commit 0c9520efd651ce13451654a35307ec87d4a13a69
5936 Author: Tom Rix <Tom.Rix@windriver.com>
5937 Date:   Fri May 29 18:57:32 2009 -0500
5938
5939     ZOOM2 Define GPIO banks used.
5940
5941     Enable the function and interface clocks for banks 2,3,5 and 6.
5942
5943     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5944     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5945
5946 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
5947 Author: Tom Rix <Tom.Rix@windriver.com>
5948 Date:   Fri May 29 18:57:31 2009 -0500
5949
5950     OMAP3 Turn on the GPIO bank clocks
5951
5952     The function and interface clocks for each GPIO bank, except the first, must
5953     be explicitly turned on.  These are controlled by the config level defines
5954     CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
5955
5956     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5957     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
5958
5959 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
5960 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5961 Date:   Thu Mar 26 15:26:01 2009 -0400
5962
5963     Coldfire M5271: Activate u-boot system timer interrupt.
5964
5965     This patch assigns the u-boot system timer interrupt to
5966     interrupt level 3, priority 6. Without this patch the interrupt
5967     will be a level 0, priority 0, which disables it and cause
5968     u-boot functions that relies on the timer (e.g. sleep command)
5969     to never return.
5970
5971     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5972
5973 commit dc26965ad3acdfb18780361d77a276b2843a90af
5974 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5975 Date:   Mon Mar 23 13:35:48 2009 -0400
5976
5977     Compier warning cleanup
5978
5979     Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
5980
5981     Cleanup on compiler warnings on unused variables now that
5982     bd->bi_enetaddr is no longer used.
5983
5984     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5985
5986 commit 42a83765d54f042b4079e05a3438789542429981
5987 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5988 Date:   Fri Mar 20 15:30:10 2009 -0400
5989
5990     Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
5991
5992     Ported from lib_ppc/interrupts.c, this adds the ability for
5993     the coldfire system timer to auto-reset the watchdog when
5994     dtimer_interrupts is called.
5995
5996     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5997
5998 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
5999 Author: Prafulla Wadaskar <prafulla@marvell.com>
6000 Date:   Sun May 31 14:53:20 2009 +0200
6001
6002     arch_misc_init support for ARM architectures
6003
6004     This patch is required for Kirkwood support
6005     may be used by other ARM architectures
6006
6007     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
6008
6009 commit b2403589b4d9996394bafc73eca3623f43ac2c31
6010 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6011 Date:   Sun May 31 14:53:18 2009 +0200
6012
6013     at91: move cpu info print to cpu
6014
6015     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6016
6017 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
6018 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6019 Date:   Sun May 31 12:44:46 2009 +0200
6020
6021     at91: move cpu name define to arm/arch/ cpu header
6022
6023     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6024
6025 commit 5bb59b3c906ee01adfaac9565443e5236a793079
6026 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6027 Date:   Sun May 31 12:44:45 2009 +0200
6028
6029     at91: extract reset from timer
6030
6031     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6032
6033 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
6034 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6035 Date:   Sun May 31 12:44:43 2009 +0200
6036
6037     omap24xx: rename reset file
6038
6039     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6040
6041 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
6042 Author: Dirk Behme <dirk.behme@googlemail.com>
6043 Date:   Sun May 31 12:44:42 2009 +0200
6044
6045     OMAP3: Fix CKE1 MUX setting to allow self-refresh
6046
6047     The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
6048     setting is needed for the second CS clock signal to allow the 2 RAM
6049     parts to be put in self-refresh correctly. This also works on rev B
6050     Beagle boards with 128M of RAM.
6051
6052     From: Steve Sakoman <steve@sakoman.com>
6053     From: Jean Pihet <jpihet@mvista.com>
6054     Signed-off-by: Jean Pihet <jpihet@mvista.com>
6055     Signed-off-by: Steve Sakoman <steve@sakoman.com>
6056     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6057
6058 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
6059 Author: Dirk Behme <dirk.behme@googlemail.com>
6060 Date:   Sun May 31 12:44:41 2009 +0200
6061
6062     OMAP3: Zoom2: Enable Board and CPU info
6063
6064     With other OMAP3 boards we recently switched to CPU and Board
6065     info API. From parallel merge, this is missing for Zoom2.
6066     Enable it for Zoom2, too.
6067
6068     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6069     Acked-by: Tom Rix <Tom.Rix@windriver.com>
6070
6071 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
6072 Author: Tom Rix <Tom.Rix@windriver.com>
6073 Date:   Sun May 31 12:44:39 2009 +0200
6074
6075     ZOOM2 Add led support.
6076
6077     This patch controls the large LED on the top left of the zoom2.
6078
6079     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6080
6081 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
6082 Author: Tom Rix <Tom.Rix@windriver.com>
6083 Date:   Sun May 31 12:44:37 2009 +0200
6084
6085     ZOOM2 Add serial support.
6086
6087     Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
6088     The default serial is from the USB connector on left side of the debug board.
6089     The USB connector will produce 2 of the 4 UARTS.  On your host pick the first
6090     enumeration.
6091
6092     The details of the setting of the serial gpmc setup are not available.
6093     The values were provided by another party.
6094
6095     The serial port set up is the same with Zoom1.
6096     Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
6097
6098     The kernel bootargs are
6099     console=ttyS3,115200n8
6100
6101     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6102
6103 commit 3ea201b016ab259a5ac8824af767569522768c47
6104 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6105 Date:   Sun May 31 12:44:27 2009 +0200
6106
6107     lh7a40x: move serial driver to drivers/serial
6108
6109     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6110
6111 commit 379be585eb2343d8814a5cee5fb3da930d846bee
6112 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6113 Date:   Sat May 16 22:48:46 2009 +0200
6114
6115     pxa: move serial driver to drivers/serial
6116
6117     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6118
6119 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
6120 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6121 Date:   Sat May 9 13:21:19 2009 +0200
6122
6123     arm: remove cpu_init
6124
6125     move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
6126
6127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6128
6129 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
6130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6131 Date:   Sat May 9 13:21:18 2009 +0200
6132
6133     arm: unify interrupt init
6134
6135     all arm init the IRQ stack the same way
6136     so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
6137
6138     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6139
6140 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
6141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6142 Date:   Fri May 8 20:24:12 2009 +0200
6143
6144     arm: unify linker script
6145
6146     all arm boards except a few use the same cpu linker script
6147     so move it to cpu/$(CPU)
6148
6149     that could be overwrite in following order
6150     SOC
6151     BOARD
6152     via the corresponding config.mk
6153
6154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6155
6156 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
6157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6158 Date:   Sat May 16 10:02:05 2009 +0200
6159
6160     afeb9260: fix macb device init
6161
6162     uses PA10, PA11 for ETX2 and ETX3.
6163
6164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6165
6166 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
6167 Author: Stefan Roese <sr@denx.de>
6168 Date:   Wed May 27 10:34:32 2009 +0200
6169
6170     ppc4xx: Remove PCI async bootup message if PCI is not used
6171
6172     Signed-off-by: Stefan Roese <sr@denx.de>
6173
6174 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
6175 Author: Wolfgang Denk <wd@denx.de>
6176 Date:   Fri May 15 09:19:52 2009 +0200
6177
6178     TQM834x: use buffered writes to accelerate writing to flash
6179
6180     Also enable display of 'E'mpty sectors in "flinfo" output.
6181
6182     Signed-off-by: Wolfgang Denk <wd@denx.de>
6183     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6184
6185 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
6186 Author: Wolfgang Denk <wd@denx.de>
6187 Date:   Thu May 14 23:18:34 2009 +0200
6188
6189     TQM834x: add FDT support
6190
6191     Signed-off-by: Wolfgang Denk <wd@denx.de>
6192     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6193
6194 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
6195 Author: Wolfgang Denk <wd@denx.de>
6196 Date:   Thu May 14 23:18:33 2009 +0200
6197
6198     TQM834x: fix environment size; add redundant env.
6199
6200     Also reserve more space for U-Boot as it will probably grow soon.
6201
6202     Signed-off-by: Wolfgang Denk <wd@denx.de>
6203     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6204
6205 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
6206 Author: Thomas Lange <thomas@corelatus.se>
6207 Date:   Sun May 3 20:07:33 2009 +0200
6208
6209     ARM DaVinci: Reset with watchdog enabled
6210
6211     Once the Davinci watchdog has been enabled, the timeout
6212     value cannot be changed. If the timeout in use is long,
6213     it can take a long time for card to reset. By writing
6214     an invalid service key, we can trigger an immediate reset.
6215
6216     Signed-off-by: Thomas Lange <thomas@corelatus.se>
6217
6218 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
6219 Author: Wolfgang Denk <wd@denx.de>
6220 Date:   Fri May 15 10:07:43 2009 +0200
6221
6222     video: Add an option to skip video initialization
6223
6224     This patch adds an option to skip the video initialization on for all
6225     video drivers. This is needed for the CPCI750 which can be built as
6226     CPCI host and adapter/target board. And the adapter board can't
6227     access the video cards located on the CompactPCI bus.
6228
6229     Signed-off-by: Stefan Roese <sr@denx.de>
6230     Cc: Anatolij Gustschin <agust@denx.de>
6231
6232     Rebased against simplifying patch.
6233     Signed-off-by: Wolfgang Denk <wd@denx.de>
6234
6235 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
6236 Author: Wolfgang Denk <wd@denx.de>
6237 Date:   Fri May 15 10:07:42 2009 +0200
6238
6239     drv_video_init(): simplify logic
6240
6241     Simplify nesting of drv_video_init() and use a consistent way of
6242     indicating failure / success. Before, it took me some time to realize
6243     which of the returns was due to an error condition and which of them
6244     indicated success.
6245
6246     Signed-off-by: Wolfgang Denk <wd@denx.de>
6247     Cc: Anatolij Gustschin <agust@denx.de>
6248
6249 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
6250 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6251 Date:   Wed May 13 21:01:13 2009 +0200
6252
6253     at91: regroup IP hw init in one file per soc
6254
6255     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6256
6257 commit 28b00324becf3552134ae1e086509dc9c3d6e932
6258 Author: David Brownell <dbrownell@users.sourceforge.net>
6259 Date:   Fri May 15 23:48:37 2009 +0200
6260
6261     dm355 evm support
6262
6263     Initial U-Boot support for the DaVinci DM355 EVM.  This is a board
6264     from Spectrum Digital.  Board docs include schematic and firmware
6265     for its microcontroller:
6266
6267       http://c6000.spectrumdigital.com/evmdm355/revd/
6268
6269     Most of the DM355 chip is fully documented by TI, the most notable
6270     exception being the MPEG/JPEG coprocessor (programmable using codecs
6271     available at no cost from TI), which is omitted from its DM335 sibling:
6272
6273       http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
6274
6275     This version can boot from the on-board DM9000 Ethernet chip, after
6276     being loaded (from NAND, MMC/SD, or UART).  In the near future, NAND
6277     and USB support could be added ... NAND support is being held back
6278     until the support for the 4-bit ECC hardware is ready.
6279
6280     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6281
6282 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
6283 Author: Sanjeev Premi <premi@ti.com>
6284 Date:   Fri May 15 23:48:37 2009 +0200
6285
6286     OMAP3EVM: Set default bootfile
6287
6288     The current configuration doesn't define default
6289     bootfile; leading to this warning at execution:
6290
6291     OMAP3_EVM # dhcp
6292     ...
6293     ...
6294     DHCP client bound to address 192.168.1.11
6295     *** Warning: no boot file name; using 'AC18BE16.img'
6296     TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
6297     sending through gateway 192.168.1.1
6298     Filename 'AC18BE16.img'.
6299     Load address: 0x82000000
6300     Loading: *
6301     TFTP error: 'File not found' (1)
6302
6303     Signed-off-by: Sanjeev Premi <premi@ti.com>
6304
6305 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
6306 Author: s-paulraj@ti.com <s-paulraj@ti.com>
6307 Date:   Fri May 15 23:48:36 2009 +0200
6308
6309     ARM DaVinci: Minor Updates to base addresses
6310
6311     Patch adds base addresses for DaVinci DM365. Updated patches for DM365
6312     will be posted soon.
6313
6314     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6315
6316 commit de193e8e369f5f029ed3b6e2fc60341098eea766
6317 Author: Tom Rix <Tom.Rix@windriver.com>
6318 Date:   Fri May 15 23:48:36 2009 +0200
6319
6320     ZOOM2 Add support for debug board detection.
6321
6322     The logicpd web site is a good source for general information on this board.
6323     Please start looking here if the below links are broken.
6324     http://www.logicpd.com
6325
6326     This is a pdf of the product
6327     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
6328
6329     This is a pdf of the product quick start guide.
6330     The debug board is described here.
6331     http://support.logicpd.com/downloads/1165/
6332
6333     This is a wiki showing the debug board in use
6334     https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
6335
6336     The zoom2 has an auxillary board that contains the serial, net, jtag and
6337     battery simulator.  This change supports a runtime check if the debug board is
6338     connected.
6339
6340     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6341
6342 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
6343 Author: Tom Rix <Tom.Rix@windriver.com>
6344 Date:   Fri May 15 23:48:36 2009 +0200
6345
6346     OMAP3 Port kernel omap gpio interface.
6347
6348     Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
6349     The orignal source is in linux/arch/arm/plat-omap/gpio.c
6350
6351     See doc/README.omap3 for instructions on use.
6352
6353     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6354
6355 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
6356 Author: Tom Rix <Tom.Rix@windriver.com>
6357 Date:   Fri May 15 23:48:36 2009 +0200
6358
6359     ZOOM2 Add initial support for Zoom2
6360
6361     Zoom2 is a new board from Texas Instruments and LogicPD
6362
6363     The logicpd web site is a good source for general information on this board.
6364     Please start looking here if the below links are broken.
6365     http://www.logicpd.com
6366
6367     This is a pdf of the product
6368     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
6369     This is the product description web page
6370     http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
6371
6372     This patch provides a zoom2 base target by copying zoom1 and by making some
6373     obvious changes.
6374
6375     To configure, run
6376     make omap3_zoom2_config
6377
6378     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6379
6380 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
6381 Author: Sandeep Paulraj <s-paulraj@ti.com>
6382 Date:   Fri May 15 23:48:33 2009 +0200
6383
6384     ARM DaVinci:Consolidate common u-boot.lds
6385
6386     The u-boot.lds is common for all DaVinci boards. The patch removes
6387     multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
6388     folder. This addresses one of the comments i received while submitting
6389     patches for DM3xx
6390
6391     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6392
6393 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
6394 Author: Tom Rix <Tom.Rix@windriver.com>
6395 Date:   Fri May 15 23:47:52 2009 +0200
6396
6397     OMAP Consolidate common u-boot.lds to cpu layer.
6398
6399     The u-boot.lds file is common for all omap boards.
6400     Move a cleaned up version to the cpu layer and add makefile logic to use it.
6401
6402     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6403
6404 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
6405 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6406 Date:   Fri May 15 23:47:14 2009 +0200
6407
6408     arm/dcc: add xscale support
6409
6410     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6411
6412 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
6413 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6414 Date:   Fri May 15 23:47:14 2009 +0200
6415
6416     arm/dcc: use static support to allow to use it at anytime
6417
6418     the dcc can be used at the start of the cpu
6419
6420     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6421
6422 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
6423 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6424 Date:   Fri May 15 23:47:13 2009 +0200
6425
6426     ARM: Update mach-types
6427
6428     update against linux v2.6.29
6429
6430     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6431
6432 commit 2907798926ee932f453ac8538e7a6c05c18428a5
6433 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6434 Date:   Fri May 15 23:47:13 2009 +0200
6435
6436     arm920/926/926: remove non needed header
6437
6438     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6439
6440 commit 269dfea017b09c5a999d3053d00505c19789c350
6441 Author: David Brownell <david-b@pacbell.net>
6442 Date:   Fri May 15 23:47:13 2009 +0200
6443
6444     davinci dm6446evm NAND update
6445
6446     This updates the optional (non-default!) NAND support for the
6447     DaVinci DM6446 EVM:
6448
6449      - include MTD partitioning, defaulting to what Linux uses
6450
6451      - use a flash-based BBT, which among other things speeds bootup
6452
6453     This matches code that's now queued for mainline Linux, and might
6454     even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
6455     that the U-Boot $mtdparts environment variable can be passed as-is
6456     on the kernel command line as a cmdlinepart override.
6457
6458     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6459
6460 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
6461 Author: David Brownell <dbrownell@users.sourceforge.net>
6462 Date:   Fri May 15 23:47:12 2009 +0200
6463
6464     davinci: display correct clock info
6465
6466     Move the clock-rate dumping code into the cpu/.../davinci area
6467     where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
6468     updating the format and showing the DSP clock (where relevant).
6469
6470     Switch boards to use the cpuinfo() hook for this stuff.
6471
6472     Remove a few now-obsolete PLL #defines.
6473
6474     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6475
6476 commit daea928829098cae3c9ec6b801e52ba616725034
6477 Author: Tom Rix <Tom.Rix@windriver.com>
6478 Date:   Fri May 15 23:47:12 2009 +0200
6479
6480     ZOOM1 Remove more legacy NAND defines.
6481
6482     These legacy NAND defines are no longer needed by this target.
6483
6484     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6485
6486 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
6487 Author: Tom Rix <Tom.Rix@windriver.com>
6488 Date:   Fri May 15 23:47:12 2009 +0200
6489
6490     LED Add documentation describing the status_led and colour led API.
6491
6492     This document describes the u-boot status LED API.
6493     This allows common u-boot commands to use a board's leds to
6494     provide status for activities like booting and downloading files.
6495
6496     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6497
6498 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
6499 Author: Tom Rix <Tom.Rix@windriver.com>
6500 Date:   Fri May 15 23:47:12 2009 +0200
6501
6502     ARM Add blue colour LED to status_led.
6503
6504     There is exiting support for red,yellow,green but no blue.
6505     The main LED on the zoom2 is a blue LED.
6506
6507     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6508
6509 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
6510 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6511 Date:   Fri May 15 23:47:02 2009 +0200
6512
6513     arm: timer and interrupt init rework
6514
6515     actually the timer init use the interrupt_init as init callback
6516     which make the interrupt and timer implementation difficult to follow
6517
6518     so now rename it as int timer_init(void) and use interrupt_init for interrupt
6519
6520     btw also remane the corresponding file to the functionnality implemented
6521
6522     as ixp arch implement two timer - one based on interrupt - so all the timer
6523     related code is moved to timer.c
6524
6525     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6526
6527 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
6528 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6529 Date:   Fri May 15 23:45:22 2009 +0200
6530
6531     OMAP3: Reorganize Makefile style
6532
6533     Reformat COBJS handling.
6534
6535     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6536     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6537
6538 commit b1966982718347f67317b3fb356439743ca68a37
6539 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6540 Date:   Fri May 15 23:45:22 2009 +0200
6541
6542     OMAP3: Remove dublicated interrupt code
6543
6544     Remove duplicated interrupt code. Original, identical code can be found
6545     in lib_arm/interrupts.c
6546
6547     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6548     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6549
6550 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
6551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6552 Date:   Fri May 15 23:45:22 2009 +0200
6553
6554     at91rm9200: move reset code to reset.c
6555
6556     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6557
6558 commit 2c75c78d94574ee996db2aa9b511258519471dd6
6559 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6560 Date:   Fri May 15 23:45:22 2009 +0200
6561
6562     ixp/interrupts: Move conditional compilation to Makefile
6563
6564     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6565
6566 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
6567 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6568 Date:   Fri May 15 23:45:20 2009 +0200
6569
6570     arm: cleanup remaining CONFIG_INIT_CRITICAL
6571
6572     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6573
6574 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
6575 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6576 Date:   Fri May 15 23:45:12 2009 +0200
6577
6578     arm946es: remove non used timer
6579
6580     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6581
6582 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
6583 Author: David Brownell <dbrownell@users.sourceforge.net>
6584 Date:   Fri May 15 23:44:09 2009 +0200
6585
6586     davinci: add basic dm355/dm350/dm335 support
6587
6588     Add some basic declarations for DaVinci DM355/DM350/DM335 support,
6589     keyed on CONFIG_SOC_DM355.  (DM35X isn't quite right because the
6590     DM357 is very different; while the DM355 is like a DM355 without
6591     the MPEG/JPEG coprocessor).
6592
6593     These have different peripherals than the DM6446, and some of
6594     the peripherals are at different addresses.  Notably for U-Boot,
6595     there's no EMAC, and the NAND controller address is different
6596
6597     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6598
6599 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
6600 Author: David Brownell <dbrownell@users.sourceforge.net>
6601 Date:   Fri May 15 23:44:09 2009 +0200
6602
6603     davinci: fix dm644x buglets
6604
6605     Fix two buglets in the dm644x support:  don't set two must-be-zero
6606     bits in the UART management register; and only include the I2C hooks
6607     if the I2C driver is being included.
6608
6609     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6610
6611 commit f79043681ff44bae435c06f830e51e1546db7e19
6612 Author: David Brownell <dbrownell@users.sourceforge.net>
6613 Date:   Fri May 15 23:44:08 2009 +0200
6614
6615     davinci: split out some dm644x-specific bits from psc
6616
6617     Split out DaVinci DM6446-specific bits from more generic bits:
6618
6619      - Add a CONFIG_SOC_DM644X.  All current boards use DM6446 chips;
6620        DM6443 and DM6441 chips differ in available peripherals.
6621
6622      - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
6623        which is conditionally built.  It provides device-specific setup.
6624
6625     Plus minor coding style and comment updates with respect to the PSC.
6626
6627     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6628
6629 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
6630 Author: David Brownell <dbrownell@users.sourceforge.net>
6631 Date:   Fri May 15 23:44:08 2009 +0200
6632
6633     davinci: cpu-specific build uses conditional make syntax
6634
6635     Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
6636     Add the first conditional: for EMAC driver support.  Not all
6637     chips have an EMAC; and boards might not use it, anyway.
6638
6639     This doesn't touch PHY configuration; that should eventually
6640     become conditional too.
6641
6642     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6643
6644 commit 7b7808ae6dace59287f565e9323cda7b098a5612
6645 Author: David Brownell <dbrownell@users.sourceforge.net>
6646 Date:   Fri May 15 23:44:06 2009 +0200
6647
6648     davinci: move psc support board-->cpu
6649
6650     Move DaVinci PSC support from board/* to cpu/* where it belongs.
6651     The PSC module manages clocks and resets for all DaVinci-family
6652     SoCs, and isn't at all board-specific.
6653
6654     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6655
6656 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
6657 Author: David Brownell <david-b@pacbell.net>
6658 Date:   Tue Apr 14 08:52:58 2009 -0700
6659
6660     DaVinci now respects SKIP_LOWLEVEL_INIT
6661
6662     Don't needlessly include lowlevel init code; that's only really
6663     needed with boot-from NOR (not boot-from-NAND).  The 2nd stage
6664     loader (UBL) handles that before it loads U-Boot.
6665
6666     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6667
6668 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
6669 Author: David Brownell <dbrownell@users.sourceforge.net>
6670 Date:   Sun Apr 12 22:49:26 2009 -0700
6671
6672     DaVinci Ethernet cleanup
6673
6674     Chips without the EMAC controller won't need the utilities
6675     it uses to read an Ethernet address from EEPROM; so don't
6676     include them needlessly.
6677
6678     Use is_valid_ether() to validate the address from EEPROM.
6679     All-zero addresses aren't the only invalid addresses.
6680     A fully erased EEPROM returns all-ones, also invalid...
6681
6682     Switch those Ethernet utilities to use "%pM" for printing
6683     MAC addresses; and not say ROM when they mean EEPROM.
6684
6685     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6686     Acked-by: Ben Warren <biggerbadderben@gmail.com>
6687
6688 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
6689 Author: Stefan Roese <sr@denx.de>
6690 Date:   Mon May 11 15:50:12 2009 +0200
6691
6692     lib_arch/board.c: Move malloc initialization before flash_init()
6693
6694     This patch moves the malloc initialization before calling flash_init().
6695     Upcoming changes to the NOR FLASH common CFI driver with optional
6696     MTD infrastructure and MTD concatenation support will call malloc().
6697     And nothing really speaks against enabling malloc just a little earlier
6698     in the boot stage. Some architectures already enable malloc before
6699     calling flash_init() so they don't need any changes here.
6700
6701     Signed-off-by: Stefan Roese <sr@denx.de>
6702     Cc: Wolfgang Denk <wd@denx.de>
6703     Cc: Mike Frysinger <vapier@gentoo.org>
6704     Cc: Scott McNutt <smcnutt@psyent.com>
6705     Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
6706     Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6707     Cc: Daniel Hellstrom <daniel@gaisler.com>
6708     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6709     Cc: John Rigby <jcrigby@gmail.com>
6710
6711 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
6712 Author: Stefan Roese <sr@denx.de>
6713 Date:   Mon May 11 13:46:14 2009 +0200
6714
6715     ppc4xx: Add Sequoia RAM-booting target
6716
6717     This patch adds another build target for the AMCC Sequoia PPC440EPx
6718     eval board. This RAM-booting version is targeted for boards without
6719     NOR FLASH (NAND booting) which need a possibility to initially
6720     program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
6721     configured to setup the SDRAM, this debugger can load this RAM-
6722     booting image to the target address in SDRAM (in this case 0x1000000)
6723     and start it there. Then U-Boot's standard NAND commands can be
6724     used to program the NAND FLASH (e.g. "nand write ...").
6725
6726     Here the commands to load and start this image from the BDI2000:
6727
6728     440EPX>reset halt
6729     440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
6730     440EPX>go 0x1000000
6731
6732     Please note that this image automatically scans for an already
6733     initialized SDRAM TLB (detected by EPN=0). This TLB will not be
6734     cleared. This TLB doesn't need to be TLB #0, this RAM-booting
6735     version will detect it and preserve it. So booting via BDI2000
6736     will work and booting with a complete different TLB init via
6737     U-Boot works as well.
6738
6739     Signed-off-by: Stefan Roese <sr@denx.de>
6740
6741 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
6742 Author: Mike Frysinger <vapier@gentoo.org>
6743 Date:   Wed May 6 08:41:45 2009 -0400
6744
6745     tools/envcrc: add --binary option to export embedded env
6746
6747     The --binary option to envcrc can be used to export the embedded env as a
6748     binary blob so that it can be manipulated/examined/whatever externally.
6749
6750     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6751
6752 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
6753 Author: Ben Warren <biggerbadderben@gmail.com>
6754 Date:   Tue Apr 28 16:50:53 2009 -0700
6755
6756     Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
6757
6758     All in-tree PPC4xx boards now use CONFIG_NET_MULTI
6759
6760     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6761     Signed-off-by: Stefan Roese <sr@denx.de>
6762
6763 commit 70be6c2d40076f14062b892152649f9a62832fc9
6764 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6765 Date:   Wed Apr 29 09:51:01 2009 +0200
6766
6767     4xx: Add support for DP405 hardware variants
6768
6769     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6770     Signed-off-by: Stefan Roese <sr@denx.de>
6771
6772 commit de47a34d4de1d007a8951efd072283516d580ffa
6773 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6774 Date:   Wed Apr 29 09:51:00 2009 +0200
6775
6776     4xx: Remove binary cpld bitstream from DP405 board
6777
6778     This patch removes the cpld binary bitstream that is
6779     used by esd's cpld command on DP405 boards.
6780
6781     Because u-boot with an external cpld bitstream may not
6782     take more space in flash than before the u-boot binary is
6783     shrinked a little bit. Some unused featues have been
6784     removed therefore.
6785
6786     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6787     Signed-off-by: Stefan Roese <sr@denx.de>
6788
6789 commit 700d553fd3afe804086de8f73d95153315eb0c32
6790 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6791 Date:   Wed Apr 29 09:50:59 2009 +0200
6792
6793     4xx: Remove binary cpld bitstream from VOM405 board
6794
6795     This patch removes the cpld binary bitstream that is
6796     used by esd's cpld command on VOM405 boards.
6797
6798     Because u-boot with an external cpld bitstream may not
6799     take more space in flash than before the u-boot binary is
6800     shrinked a little bit.
6801
6802     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6803     Signed-off-by: Stefan Roese <sr@denx.de>
6804
6805 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
6806 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6807 Date:   Wed Apr 29 09:50:58 2009 +0200
6808
6809     4xx: Remove binary cpld bitstream from PMC405 board
6810
6811     This patch removes the cpld binary bitstream that is
6812     used by esd's cpld command on PMC405 boards.
6813
6814     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6815     Signed-off-by: Stefan Roese <sr@denx.de>
6816
6817 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
6818 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6819 Date:   Wed Apr 29 09:50:57 2009 +0200
6820
6821     4xx: Remove binary cpld bitstream from CMS700 board
6822
6823     This patch removes the cpld binary bitstream that is
6824     used by esd's cpld command on CMS700 boards.
6825
6826     Because u-boot with an external cpld bitstream may not
6827     take more space in flash than before the u-boot binary is
6828     shrinked a little bit. Some unused featues have been
6829     removed therefore.
6830
6831     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6832     Signed-off-by: Stefan Roese <sr@denx.de>
6833
6834 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
6835 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6836 Date:   Wed Apr 29 09:50:56 2009 +0200
6837
6838     esd/common: extend cpld command with address parameter
6839
6840     This patch adds support for an address parameter to esd's
6841     cpld command. This is in preparation to remove compiled-in
6842     binary cpld (xsvf) bitstreams.
6843
6844     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6845     Signed-off-by: Stefan Roese <sr@denx.de>
6846
6847 commit 9166b776350d16460c7330bfb0a50154ea0a1903
6848 Author: Peter Tyser <ptyser@xes-inc.com>
6849 Date:   Sat Apr 18 22:34:06 2009 -0500
6850
6851     cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
6852
6853     When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
6854     correct, eg:
6855
6856     => help i2c
6857     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
6858     speed [speed] - show or set I2C bus speed
6859     i2c dev [dev] - show or set current I2C bus
6860     ...
6861
6862     It has been changed to:
6863     i2c speed [speed] - show or set I2C bus speed
6864     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
6865     i2c dev [dev] - show or set current I2C bus
6866     ...
6867
6868     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6869
6870 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
6871 Author: Peter Tyser <ptyser@xes-inc.com>
6872 Date:   Sat Apr 18 22:34:05 2009 -0500
6873
6874     cmd_i2c: Clean up trivial helper functions
6875
6876     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6877
6878 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
6879 Author: Peter Tyser <ptyser@xes-inc.com>
6880 Date:   Sat Apr 18 22:34:04 2009 -0500
6881
6882     cmd_i2c: Clean up i2c command argument parsing
6883
6884     argc and argv should only be modified once instead of once for
6885     every i2c sub-command
6886
6887     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6888
6889 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
6890 Author: Peter Tyser <ptyser@xes-inc.com>
6891 Date:   Sat Apr 18 22:34:03 2009 -0500
6892
6893     i2c: Update references to individual i2c commands
6894
6895     The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
6896     and isdram are no longer available so all references to them have been
6897     updated to the new form of "i2c <cmd>".
6898
6899     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6900
6901 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
6902 Author: Peter Tyser <ptyser@xes-inc.com>
6903 Date:   Sat Apr 18 22:34:02 2009 -0500
6904
6905     i2c: Remove deprecated individual i2c commands
6906
6907     The following individual I2C commands have been removed: imd, imm, inm,
6908     imw, icrc32, iprobe, iloop, isdram.
6909
6910     The functionality of the individual commands is still available via
6911     the 'i2c' command.
6912
6913     This change only has an impact on those boards which did not have
6914     CONFIG_I2C_CMD_TREE defined.
6915
6916     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6917
6918 commit 655b34a78adf60ef260981688837904208883ae9
6919 Author: Peter Tyser <ptyser@xes-inc.com>
6920 Date:   Sat Apr 18 22:34:01 2009 -0500
6921
6922     i2c: Create common default i2c_[set|get]_bus_speed() functions
6923
6924     New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
6925     replace a number of architecture-specific implementations.
6926
6927     Also, providing default functions will allow all boards to enable
6928     CONFIG_I2C_CMD_TREE.  This was previously not possible since the
6929     tree-form of the i2c command provides the ability to display and modify
6930     the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
6931     present.
6932
6933     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6934
6935 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
6936 Author: Peter Tyser <ptyser@xes-inc.com>
6937 Date:   Sat Apr 18 22:34:00 2009 -0500
6938
6939     cm5200: Make function test command names more unique
6940
6941     Add "_test" to cm5200's function test command names to prevent
6942     overlap with common, global function names.  Originally, the
6943     "do_i2c" function test command interfered with
6944     common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
6945
6946     The functions were also made static as they are not globally accessed.
6947
6948     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6949
6950 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
6951 Author: Peter Tyser <ptyser@xes-inc.com>
6952 Date:   Fri Apr 24 15:34:09 2009 -0500
6953
6954     tsi108_i2c: Add i2c_init() stub function
6955
6956     Add the i2c_init() function so that the tsi108_i2c.c driver fits
6957     U-Boot's standard I2C API which is utilized by cmd_i2c.c
6958
6959     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6960
6961 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
6962 Author: Peter Tyser <ptyser@xes-inc.com>
6963 Date:   Fri Apr 24 15:34:08 2009 -0500
6964
6965     mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
6966
6967     Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
6968     it can use the common 'i2c speed' command.  Note that the I2C controller
6969     utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
6970     dynamically.
6971
6972     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6973
6974 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
6975 Author: Peter Tyser <ptyser@xes-inc.com>
6976 Date:   Fri Apr 24 15:34:07 2009 -0500
6977
6978     Marvell: i2c cleanup
6979
6980     The following changes were made, primarily to bring the Marvell i2c
6981     driver in line with U-Boot's current I2C API:
6982     - Made i2c_init() globally accessible
6983     - Made i2c_read() and i2c_write() return an integer
6984     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
6985       offhand chance someone adds slave support in the future
6986
6987     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6988
6989 commit 54afc6ee10c8cd09598d814d49e601359b005e49
6990 Author: Peter Tyser <ptyser@xes-inc.com>
6991 Date:   Fri Apr 24 15:34:06 2009 -0500
6992
6993     cpci750: i2c cleanup
6994
6995     The following changes were made, primarily to bring the cpci750 i2c
6996     driver in line with U-Boot's current I2C API:
6997     - Made i2c_init() globally accessible
6998     - Made i2c_read() and i2c_write() return an integer
6999     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
7000       offhand chance someone adds slave support in the future
7001
7002     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7003
7004 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
7005 Author: Peter Tyser <ptyser@xes-inc.com>
7006 Date:   Fri Apr 24 15:34:05 2009 -0500
7007
7008     i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
7009
7010     Many boards/controllers/drivers don't support an I2C slave interface,
7011     however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
7012     default
7013
7014     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7015
7016 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
7017 Author: Kumar Gala <galak@kernel.crashing.org>
7018 Date:   Thu Jun 11 23:42:35 2009 -0500
7019
7020     fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
7021
7022     The ddr code computes most things as 64-bit quantities and had some places
7023     in the middle that it was using phy_addr_t and phys_size_t.
7024
7025     Instead we use unsigned long long through out and only at the last stage of
7026     setting the LAWs and reporting the amount of memory to the board code do we
7027     truncate down to what we can cover via phys_size_t.
7028
7029     This has the added benefit that the DDR controller itself is always setup
7030     the same way regardless of how much memory we have.  Its only the LAW
7031     setup that limits what is visible to the system.
7032
7033     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7034
7035 commit d4b130dc80761b430dc5b410159cd158fca1a348
7036 Author: Kumar Gala <galak@kernel.crashing.org>
7037 Date:   Thu Jun 11 23:40:34 2009 -0500
7038
7039     85xx: Use print_size to report amount of memory not mapped by TLBs
7040
7041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7042
7043 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
7044 Author: Haiying Wang <Haiying.Wang@freescale.com>
7045 Date:   Wed May 20 12:30:42 2009 -0400
7046
7047     85xx: Add README for MPC8569MDS
7048
7049     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7050     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7051
7052 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
7053 Author: Haiying Wang <Haiying.Wang@freescale.com>
7054 Date:   Wed May 20 12:30:33 2009 -0400
7055
7056     85xx: Add UART1 support for MPC8569MDS
7057
7058     MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
7059     those pins before using UART1.
7060
7061     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7062     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7063
7064 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
7065 Author: Haiying Wang <Haiying.Wang@freescale.com>
7066 Date:   Wed May 20 12:30:32 2009 -0400
7067
7068     85xx: Add PIB support at CS4/CS5 for MPC8569MDS
7069
7070     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7071     Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
7072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7073
7074 commit fb27949059f1bc84381a6216a819090f0cdbaa70
7075 Author: Haiying Wang <Haiying.Wang@freescale.com>
7076 Date:   Thu Jun 4 16:12:39 2009 -0400
7077
7078     85xx: Fix some settings for MPC8569MDS board
7079
7080     - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
7081     malloc to support up to eight Ethernet interfaces.
7082     - Move Environment address out of uboot thus the saved environment variables
7083     will not be erased after u-boot is re-programmed.
7084
7085     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7086     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7087
7088 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
7089 Author: Haiying Wang <Haiying.Wang@freescale.com>
7090 Date:   Wed May 20 12:30:30 2009 -0400
7091
7092     85xx: Fix MURAM size for MPC8569
7093
7094     MPC8569 has 128K bytes MURAM.
7095
7096     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7097     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7098
7099 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
7100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7101 Date:   Fri May 22 20:23:51 2009 +0200
7102
7103     at91/cpu.c: add missing Copyright & GPL header
7104
7105     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7106
7107 commit aa446a591aca46ef2b53cc6598ea8091feb45444
7108 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
7109 Date:   Sun Jun 7 21:45:16 2009 +0900
7110
7111     apollon: Fix a OBJCFLAGS typo
7112
7113     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
7114
7115 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
7116 Author: Wolfgang Denk <wd@denx.de>
7117 Date:   Wed Jun 10 00:19:28 2009 +0200
7118
7119     Prepare 2009.06-rc3
7120
7121     Update CHANGELOG
7122
7123     Signed-off-by: Wolfgang Denk <wd@denx.de>
7124
7125 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
7126 Author: Wolfgang Denk <wd@denx.de>
7127 Date:   Wed Jun 10 00:15:11 2009 +0200
7128
7129     rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
7130
7131     Signed-off-by: Wolfgang Denk <wd@denx.de>
7132
7133 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
7134 Author: Daniel Mack <daniel@caiaq.de>
7135 Date:   Thu Jun 4 19:44:12 2009 +0200
7136
7137     ubifs: fix small error path mismatch
7138
7139     In do_readpage(), don't free 'dn' if its allocation failed.
7140
7141     Signed-off-by: Daniel Mack <daniel@caiaq.de>
7142
7143 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
7144 Author: Wolfgang Denk <wd@denx.de>
7145 Date:   Thu Jun 4 00:31:07 2009 +0200
7146
7147     EP88x: fix broken linker script
7148
7149     Signed-off-by: Wolfgang Denk <wd@denx.de>
7150     Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
7151
7152 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
7153 Author: Wolfgang Denk <wd@denx.de>
7154 Date:   Fri May 15 00:16:02 2009 +0200
7155
7156     TQM85xx: minor config file cleanup
7157
7158     Remove "saveenv" from "update" definition: the environment is outside
7159     the U-Boot image on TQM85xx and therefor not affected by updates.
7160
7161     Also "beautify" code a bit (vertical alignment).
7162
7163     Signed-off-by: Wolfgang Denk <wd@denx.de>
7164
7165 commit c0296b1801fc9426d772fa75fe58458db605dfee
7166 Author: Wolfgang Denk <wd@denx.de>
7167 Date:   Fri May 15 00:16:01 2009 +0200
7168
7169     TQM85xx: adapt for new flash types
7170
7171     Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
7172     series while new boards have 'N' type Flashes from the S29GLxxxN
7173     series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
7174
7175     We now change the configuration to the new flash types for all
7176     boards; this also works on old boards - we just waste two flash
7177     sectors for the environment which could be smaller there.
7178
7179     Signed-off-by: Wolfgang Denk <wd@denx.de>
7180
7181 commit 6735104924f06340071a6914a9ee3345607fc102
7182 Author: Dave Liu <daveliu@freescale.com>
7183 Date:   Mon May 18 17:49:23 2009 +0800
7184
7185     85xx: Fix the wrong SYS_CLK_IN for 8569MDS
7186
7187     The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
7188     The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
7189     so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
7190
7191     Signed-off-by: Dave Liu <daveliu@freescale.com>
7192
7193 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
7194 Author: Dave Liu <daveliu@freescale.com>
7195 Date:   Fri May 15 10:27:44 2009 +0800
7196
7197     85xx: Fix the wrong BCSR address of 8569MDS
7198
7199     The BCSR17[7] = 1 will unlock the write protect of FLASH.
7200     The WP# pin only controls the write protect of top/bottom sector,
7201     That is why we can save env, but we can't write the first sector
7202     before the patch.
7203
7204     Signed-off-by: Dave Liu <daveliu@freescale.com>
7205
7206 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
7207 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
7208 Date:   Tue Jun 2 16:27:10 2009 -0500
7209
7210     85xx: bugfix for reading maximum TLB size on mpc85xx
7211
7212     The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
7213     This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
7214     (256 MB)
7215     which made u-boot hang in board_init_f() when trying to create a new stack
7216     in RAM.
7217     I have an mpc8540 with one 1GB dimm.
7218
7219     Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
7220     Signed-off-by: Andy Fleming <afleming@freescale.com>
7221     Acked-by: Kumar Gala <galak@kernel.crashing.org>
7222
7223 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
7224 Author: Dave Liu <daveliu@freescale.com>
7225 Date:   Fri Mar 27 14:32:43 2009 +0800
7226
7227     85xx: Fix the clock adjust of mpc8569mds board
7228
7229     Currently the clk_adj is 6 (3/4 cycle), The settings will cause
7230     the DDR controller hang at the data init. Change the clk_adj
7231     from 6 to 4 (1/2 cycle), make the memory system stable.
7232
7233     Signed-off-by: Dave Liu <daveliu@freescale.com>
7234
7235 commit faa14babd7466dfade358f9cac128ae246b9bf1b
7236 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
7237 Date:   Fri Jun 5 16:54:31 2009 +0200
7238
7239     at91: fix a USB problem for AT91SAM9261
7240
7241     This patch corrects the missing PLLB initialization in usb_cpu_init()
7242     for AT91SAM9261.
7243     Because of the missing PLLB initialization, the USB support for all
7244     AT91SAM9261 based boards will work only if the PLLB is configured by a
7245     precedent bootloader.
7246
7247     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
7248     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7249     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7250
7251 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
7252 Author: Felix Radensky <felix@embedded-sol.com>
7253 Date:   Sun May 31 20:44:15 2009 +0300
7254
7255     ppc4xx/net: Fix MDIO clock setup
7256
7257     This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
7258     Current code assumes that the value of sysinfo.freqOPB is 100000000
7259     when OPB frequency is 100MHz. In reality it is 100000001. As a result
7260     MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
7261     the standard. This in not a problem on boards equipped with Marvell PHYs
7262     (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
7263     but can be a problem for other PHYs (e.g. Realtek ones).
7264
7265     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
7266     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7267
7268 commit d65e34d12514de2bbe3b8f519761d641c081bad0
7269 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7270 Date:   Wed Feb 25 14:27:29 2009 +0900
7271
7272     rtl8169: fix PCI system memory address
7273
7274     When PCI device use system memory, some PCI host controller should be
7275     set physical memory address.
7276
7277     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7278     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7279
7280 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
7281 Author: Manikandan Pillai <mani.pillai@ti.com>
7282 Date:   Wed Apr 8 09:14:35 2009 +0530
7283
7284     SMC911x driver fixed for NFS boot
7285
7286     eth_halt() function in the smc911x drivers used to call the
7287     smc911x_reset() function. eth_halt() used to be called after
7288     tftp transfers. This used to put the ethernet chip in reset
7289     while the linux boots up resulting in the ethernet driver
7290     not coming up. NFS boot used to fail as a result.
7291
7292     This patch calls smc911x_shutdown() instead of smc911x_reset().
7293     Some comments received has also been fixed.
7294
7295     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
7296     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7297
7298 commit e5a3bc2401a23f1890611f020f57f94824a534db
7299 Author: Remy Bohmer <linux@bohmer.net>
7300 Date:   Sun May 3 12:11:40 2009 +0200
7301
7302     Add config option for disabling DM9000-SROM support.
7303
7304     Some boards do not have SROM support for the DM9000 network adapter.
7305     Instead of listing these board names in the driver code, make this
7306     option configurable from the board config file.
7307
7308     It also removes a build warning for the at91sam9261ek board:
7309     'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
7310
7311     And it repaires the trizepsiv board build which was broken around the
7312     same routines
7313
7314     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7315     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7316
7317 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
7318 Author: Kim Phillips <kim.phillips@freescale.com>
7319 Date:   Fri Jun 5 14:11:33 2009 -0500
7320
7321     mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
7322
7323     In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
7324     impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
7325     SICRH[TSIOB1] was erroneously being set high.
7326
7327     U-Boot always operated this PHY interface in GMII mode.  It is assumed this
7328     was missed in the clean up by the original board porters, and copied along
7329     to the TQM and sbc boards.
7330
7331     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7332     Acked-by: Ira Snyder <iws@ovro.caltech.edu>
7333     Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
7334     Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7335     CC: Dave Liu <DaveLiu@freescale.com>
7336
7337 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
7338 Author: Daniel Mack <daniel@caiaq.de>
7339 Date:   Wed Apr 8 13:23:37 2009 +0200
7340
7341     smc911x: write back the manually set MAC address
7342
7343     If the MAX address is given by the environment, write it back to the
7344     hardware.
7345
7346     Signed-off-by: Daniel Mack <daniel@caiaq.de>
7347     Cc: Sascha Hauer <s.hauer@pengutronix.de>
7348     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7349
7350 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
7351 Author: Wolfgang Denk <wd@denx.de>
7352 Date:   Fri May 15 00:16:03 2009 +0200
7353
7354     Redundant Environment: protect full sector size
7355
7356     Several boards used different ways to specify the size of the
7357     protected area when enabling flash write protection for the sectors
7358     holding the environment variables: some used CONFIG_ENV_SIZE and
7359     CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
7360     a mix of both for the "normal" and the "redundant" areas.
7361
7362     Normally, this makes no difference at all. However, things are
7363     different when you have to deal with boards that can come with
7364     different types of flash chips, which may have different sector
7365     sizes.
7366
7367     Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
7368     biggest sector size, which may include several sectors on boards using
7369     the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
7370     or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
7371     case that only the first of these sectors get protected, while the
7372     following ones aren't.
7373
7374     This is no real problem, but it can be confusing for the user -
7375     especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
7376     "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
7377     "redundant" area.
7378
7379     To avoid such inconsistencies, I changed all sucn boards that I found
7380     to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
7381     not cause any functional changes to the code.
7382
7383     Signed-off-by: Wolfgang Denk <wd@denx.de>
7384     Cc: Paul Ruhland
7385     Cc: Pantelis Antoniou <panto@intracom.gr>
7386     Cc: Stefan Roese <sr@denx.de>
7387     Cc: Gary Jennejohn <garyj@denx.de>
7388     Cc: Dave Ellis <DGE@sixnetio.com>
7389     Acked-by: Stefan Roese <sr@denx.de>
7390
7391 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
7392 Author: Ilya Yanok <yanok@emcraft.com>
7393 Date:   Thu May 14 14:03:09 2009 +0400
7394
7395     mmc: it's safe to ignore mmc_send_if_cond() return value
7396
7397     Return value of mmc_send_if_cond() can be safely ignored (as it is
7398     done in Linux). This makes older cards work with MXC MCI controller.
7399
7400     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7401
7402 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
7403 Author: Stefan Roese <sr@denx.de>
7404 Date:   Mon May 11 15:54:13 2009 +0200
7405
7406     cfi_mtd: Fix bug in last sector detection
7407
7408     This patch now enabled this cfi-mtd wrapper to correctly detect and
7409     erase the last sector in an NOR FLASH device.
7410
7411     Signed-off-by: Stefan Roese <sr@denx.de>
7412
7413 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
7414 Author: Yauhen Kharuzhy <jekhor@gmail.com>
7415 Date:   Thu May 7 00:43:30 2009 +0300
7416
7417     mmc: Fix decoding of SCR & function switch data on little-endian machines
7418
7419     SCR & switch data are read from card as big-endian words and should be
7420     converted to CPU byte order.
7421
7422     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
7423     Signed-off-by: Andy Fleming <afleming@freescale.com>
7424
7425 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
7426 Author: Yauhen Kharuzhy <jekhor@gmail.com>
7427 Date:   Thu May 7 13:08:53 2009 +0300
7428
7429     mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
7430
7431     Cards which are not compatible with SD 2.0 standard, may return response
7432     for CMD8 command, but it will be invalid in terms of SD 2.0. We should
7433     accept this case as admissible, just like Linux does.
7434
7435     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
7436     Signed-off-by: Andy Fleming <afleming@freescale.com>
7437
7438 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
7439 Author: Rabin Vincent <rabin@rab.in>
7440 Date:   Sun Apr 5 13:30:56 2009 +0530
7441
7442     mmc: drop unnecessary casts
7443
7444     Now that response is a uint, we can drop all the casts.
7445
7446     Signed-off-by: Rabin Vincent <rabin@rab.in>
7447
7448 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
7449 Author: Rabin Vincent <rabin@rab.in>
7450 Date:   Sun Apr 5 13:30:55 2009 +0530
7451
7452     mmc: fix response decoding on little endian
7453
7454     The mmc code defines the response as an array of chars.  However, it
7455     access the response bytes both as (i) an array of four uints (with
7456     casts) and (ii) as individual chars.  The former case is used more
7457     often, including by the driver when it assigns the response.
7458
7459     The char-wise accesses are broken on little endian systems because they
7460     assume that the bytes in the uints are in big endian byte order.
7461
7462     This patch fixes this by changing the response to be an array of four
7463     uints and replacing the char-wise accesses with equivalent uint-wise
7464     accesses.
7465
7466     Signed-off-by: Rabin Vincent <rabin@rab.in>
7467
7468 commit 9b1f942c09dd942e6de3185caa81c111b14de567
7469 Author: Rabin Vincent <rabin@rab.in>
7470 Date:   Sun Apr 5 13:30:54 2009 +0530
7471
7472     mmc: use lldiv to fix arm eabi build
7473
7474     The generic MMC core uses direct long long divisions, which do not build
7475     with ARM EABI toolchains.  Use lldiv() instead, which works everywhere.
7476
7477     Signed-off-by: Rabin Vincent <rabin@rab.in>
7478
7479 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
7480 Author: Rabin Vincent <rabin@rab.in>
7481 Date:   Sun Apr 5 13:30:53 2009 +0530
7482
7483     mmc: check find_mmc_device return value
7484
7485     find_mmc_device returns NULL if an invalid device number is specified.
7486     Check for this to avoid dereferencing NULL pointers.
7487
7488     Signed-off-by: Rabin Vincent <rabin@rab.in>
7489
7490 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
7491 Author: Rabin Vincent <rabin@rab.in>
7492 Date:   Sun Apr 5 13:30:52 2009 +0530
7493
7494     mmc: clean up help texts
7495
7496     Remove some repeated words and superfluous newlines in the mmc command
7497     help entries.
7498
7499     Signed-off-by: Rabin Vincent <rabin@rab.in>
7500
7501 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
7502 Author: Mike Frysinger <vapier@gentoo.org>
7503 Date:   Fri May 29 17:01:48 2009 -0400
7504
7505     Blackfin: spi: fix pin handling of SPI0 SSEL4
7506
7507     CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
7508     peripheral in order to work.
7509
7510     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7511
7512 commit 2157359dad2533987f5eb0181ef543693fad6a33
7513 Author: Mike Frysinger <vapier@gentoo.org>
7514 Date:   Tue May 26 02:51:57 2009 -0400
7515
7516     Blackfin: fix if() logic in bootrom evt1 check
7517
7518     A missing set of parenthesis caused the silicon revision to apply only to
7519     the BF533 and not the BF531/BF532 variants.
7520
7521     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7522
7523 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
7524 Author: Stefan Roese <sr@denx.de>
7525 Date:   Sat May 16 12:04:22 2009 +0200
7526
7527     jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
7528
7529     Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
7530     mtdparts_init() is available in both files, cmd_mtdparts.c and
7531     cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
7532     the jffs2/mtdparts command/file split those 2 different versions
7533     already existed. So this is nothing new. The main problem is that the
7534     variables "current_dev" and "current_partnum" are declared in both
7535     files now. This doesn't work.
7536
7537     This patch now changes the names of those variable to more specific
7538     names: "current_mtd_dev" and "current_mtd_partnum". This is because
7539     this patch also changes the declaration from static to global, so
7540     that they can be used from both files.
7541
7542     Please note that my first tests were not successful. The MTD devices
7543     selected via mtdparts are now accessed but I'm failing to see the
7544     directory listed via the "ls" command. Nothing is displayed. Perhaps
7545     I didn't generate the JFFS2 image correctly (I never used JFFS2 in
7546     U-Boot before). Not sure. Perhaps somebody else could take a look at
7547     this as well. I'll continue looking into this on Monday.
7548
7549     Signed-off-by: Stefan Roese <sr@denx.de>
7550     Cc: Wolfgang Denk <wd@denx.de>
7551     Cc: Detlev Zundel <dzu@denx.de>
7552     Cc: Ilya Yanok <yanok@emcraft.com>
7553     Cc: Renaud barbier <renaud.barbier@ge.com>
7554
7555 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
7556 Author: Graf Yang <graf.yang@analog.com>
7557 Date:   Sun May 24 02:34:34 2009 -0400
7558
7559     Blackfin: bf518f-ezbrd: setup portmux for async flash
7560
7561     The pins for async memory where parallel flash lives are not enabled by
7562     default, so make sure we mux them as needed.
7563
7564     Signed-off-by: Graf Yang <graf.yang@analog.com>
7565     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7566
7567 commit f40f6db278f602b55820693634a7256b0b4e4b80
7568 Author: Stefan Roese <sr@denx.de>
7569 Date:   Wed May 20 10:58:03 2009 +0200
7570
7571     nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
7572
7573     This patch enables Smart Media (SMC) ECC byte ordering which is used
7574     on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
7575     incompatible ECC byte ordering to the Linux kernel NDFC driver.
7576
7577     Signed-off-by: Stefan Roese <sr@denx.de>
7578     Acked-by: Scott Wood <scottwood@freescale.com>
7579
7580 commit 399aab7748bef053d59612211e1bd7a3fabfce18
7581 Author: Stefan Roese <sr@denx.de>
7582 Date:   Wed May 20 10:58:02 2009 +0200
7583
7584     ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
7585
7586     This patch now uses the correct ECC byte order (Smart Media - SMC)
7587     to be used on the 4xx NAND FLASH driver. Without this patch we have
7588     incompatible ECC byte ordering to the Linux kernel NDFC driver.
7589
7590     Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
7591     drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
7592     a seperate patch.
7593
7594     Signed-off-by: Stefan Roese <sr@denx.de>
7595     Acked-by: Scott Wood <scottwood@freescale.com>
7596
7597 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
7598 Author: Stefan Roese <sr@denx.de>
7599 Date:   Wed May 20 10:58:01 2009 +0200
7600
7601     ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
7602
7603     This patch moves the definition for the PPC4xx NAND FLASH controller
7604     (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
7605     upcoming fix for the ECC byte ordering of the NDFC driver.
7606
7607     Signed-off-by: Stefan Roese <sr@denx.de>
7608     Acked-by: Scott Wood <scottwood@freescale.com>
7609
7610 commit 2df72b82bc9e17b88dc82735a067749220beb025
7611 Author: Kim Phillips <kim.phillips@freescale.com>
7612 Date:   Tue May 19 12:53:36 2009 -0500
7613
7614     common: fix inline--weak error spotted by gcc 4.4
7615
7616     cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
7617
7618     removing the inline attribute fixes it.
7619
7620     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7621
7622 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
7623 Author: Kim Phillips <kim.phillips@freescale.com>
7624 Date:   Tue May 19 12:53:32 2009 -0500
7625
7626     TQM834x: remove defines causing gcc4.4 warnings
7627
7628     Configuring for TQM834x board...
7629     cpu_init.c: In function 'cpu_init_f':
7630     cpu_init.c:262: warning: array subscript is above array bounds
7631     cpu_init.c:263: warning: array subscript is above array bounds
7632     cpu_init.c:270: warning: array subscript is above array bounds
7633     ...
7634
7635     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7636
7637 commit 0850301747228a3327f2815a85284d26ade3de95
7638 Author: Andreas Huber <andreas.huber@keymile.com>
7639 Date:   Tue May 19 11:06:30 2009 +0200
7640
7641     UBI: fix return code in ubi_volume_read
7642
7643     Return -ENODEV instead of 0 when trying to read from a non existing volume.
7644
7645     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
7646     Signed-off-by: Stefan Roese <sr@denx.de>
7647
7648 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
7649 Author: Graf Yang <graf.yang@analog.com>
7650 Date:   Tue May 19 04:40:08 2009 -0400
7651
7652     Blackfin: fix timer_init()/timer_reset()
7653
7654     The timer_init() function was not using the right csync instruction, nor
7655     was it doing it right after disabling the core timer.
7656
7657     The timer_reset() function would reset the timestamp, but not the actual
7658     timer, so there was a common edge case where get_timer() return a jump of
7659     one timestamp (couple milliseconds) right after resetting.  This caused
7660     many functions to improperly timeout right away.
7661
7662     Signed-off-by: Graf Yang <graf.yang@analog.com>
7663     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7664
7665 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
7666 Author: Shinya Kuribayashi <skuribay@pobox.com>
7667 Date:   Sat May 16 09:12:09 2009 +0900
7668
7669     MIPS: lib_mips/board.c: Remove unused variables
7670
7671     This fixes the following build warnings:
7672
7673     board.c: In function 'board_init_r':
7674     board.c:328: warning: unused variable 'i'
7675     board.c:326: warning: unused variable 'e'
7676
7677     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
7678
7679 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
7680 Author: Shinya Kuribayashi <skuribay@pobox.com>
7681 Date:   Sat May 16 09:12:09 2009 +0900
7682
7683     MIPS: Make all extern-ed functions in bitops.h static
7684
7685     All these functions are expected to be static inline-ed.
7686     This patch also fixes the following build warnings on MIPS targets:
7687
7688     include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
7689     include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
7690     include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
7691     include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
7692
7693     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
7694
7695 commit 87423d740b91329b8d1d0b73cafd6930993b558a
7696 Author: Thomas Lange <thomas@corelatus.se>
7697 Date:   Fri Apr 24 16:22:16 2009 +0200
7698
7699     MIPS: Implement ethernet halt for au1x00
7700
7701     Implement ethernet halt() by putting MAC0 in reset.
7702     If we do not do this, we will get memory corruption
7703     when ethernet frames are received during early OS boot.
7704
7705     Signed-off-by: Thomas Lange <thomas@corelatus.se>
7706     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
7707
7708 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
7709 Author: Wolfgang Denk <wd@denx.de>
7710 Date:   Fri May 15 23:29:23 2009 +0200
7711
7712     Prepare v2009.06-rc2
7713
7714     Update CHANGELOG.
7715
7716     Signed-off-by: Wolfgang Denk <wd@denx.de>
7717
7718 commit f4317ea91942f44cc1c433277927b61618e9b0a5
7719 Author: Daniel Mack <daniel@caiaq.de>
7720 Date:   Tue May 5 12:48:29 2009 +0200
7721
7722     ARM: fix PXA build by defining UP2OCR
7723
7724     U-Boot does not currently build for PXA platforms with USB support
7725     enabled:
7726
7727     usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
7728
7729     Signed-off-by: Daniel Mack <daniel@caiaq.de>
7730     Cc: Markus Klotzbuecher <mk@denx.de>
7731
7732     Edited commit message.
7733     Signed-off-by: Wolfgang Denk <wd@denx.de>
7734
7735 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
7736 Author: Wolfgang Denk <wd@denx.de>
7737 Date:   Fri May 15 22:32:57 2009 +0200
7738
7739     Minor Coding Style fix; update CHANGELOG.
7740
7741     Signed-off-by: Wolfgang Denk <wd@denx.de>
7742
7743 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
7744 Author: Wolfgang Denk <wd@denx.de>
7745 Date:   Fri May 15 09:27:58 2009 +0200
7746
7747     IDE: bail out of dev_print() for unknown device types
7748
7749     Commit 574b319512 introduced a subtle bug by mixing a list of tests
7750     for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
7751     then mostly did not work because "dev_desc->type" cannot take any
7752     "IF_*" type values. A later fix in commit 8ec6e332ea changed the
7753     switch() into testing "dev_desc->if_type", but at this point the
7754     initial test for unknown device types was completely lost, which
7755     resulted in output like that for IDE ports without device attached:
7756
7757       Device 1: Model:  Firm:  Ser#:
7758                 Type: # 1F #
7759                 Capacity: not available
7760
7761     This patch re-introduces the missing test for unknown device types.
7762
7763     Signed-off-by: Wolfgang Denk <wd@denx.de>
7764     Cc: Stefan Roese <sr@denx.de>
7765     Cc: Detlev Zundel <dzu@denx.de>
7766     Tested-by: Stefan Roese <sr@denx.de>
7767
7768 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
7769 Author: Stefan Roese <sr@denx.de>
7770 Date:   Thu May 14 07:25:13 2009 +0200
7771
7772     74xx_7xx: Fix rounding problem in CPU frequency calculation
7773
7774     This patch fixes a problem in the CPU frequency calculation. Without it
7775     a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
7776
7777     Signed-off-by: Stefan Roese <sr@denx.de>
7778
7779 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
7780 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7781 Date:   Wed May 13 22:24:12 2009 +0200
7782
7783     console.h: remove unused prototype 'console_realloc'
7784
7785     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7786
7787 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
7788 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7789 Date:   Wed May 13 22:16:31 2009 +0200
7790
7791     api: remove un-needed ifdef CONFIG_API already handle by the Makefile
7792
7793     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7794
7795 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
7796 Author: Detlev Zundel <dzu@denx.de>
7797 Date:   Wed May 13 10:54:10 2009 +0200
7798
7799     Fix e-mail address of Gary Jennejohn.
7800
7801     Signed-off-by: Detlev Zundel <dzu@denx.de>
7802
7803 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
7804 Author: Emil Medve <Emilian.Medve@Freescale.com>
7805 Date:   Tue May 12 13:48:32 2009 -0500
7806
7807     Remove inline qualifier from show_boot_progress()
7808
7809     The 'inline' is conflicting with the semantic of 'weak' attribute and with the
7810     way the show_boot_progress() function is used.
7811
7812     Also gcc 4.4 is complaining about it:
7813
7814     main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
7815
7816     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
7817
7818 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
7819 Author: Wolfgang Denk <wd@denx.de>
7820 Date:   Tue May 12 15:17:35 2009 +0200
7821
7822     MPC8260: fixup device tree by property instead of path
7823
7824     cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
7825     clock frequencies in the device tree, using a CPU path
7826     "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
7827
7828     However, this does not work when one board config file (here:
7829     MPC8260ADS.h) is intended to be used for several diffrent CPUs and
7830     therefor contains a generic definition like "cpu@0", as the device
7831     trees that will then be loaded will contain specific names like
7832     "PowerPC,8272@0".
7833
7834     We switch to using do_fixup_by_prop_u32() instead, so we can search
7835     for device_type="cpu", as it is done in other architectures, too.
7836
7837     Signed-off-by: Wolfgang Denk <wd@denx.de>
7838     Cc: Heiko Schocher <hs@denx.de>
7839     Acked-by: Heiko Schocher <hs@denx.de>
7840     Tested-by: Heiko Schocher <hs@denx.de>
7841
7842 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
7843 Author: Rohit Hagargundgi <h.rohit@samsung.com>
7844 Date:   Mon Mar 9 19:45:46 2009 +0530
7845
7846     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
7847
7848     Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
7849     CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
7850     and is used by OneNAND ipl when reading U-Boot image.
7851
7852     Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
7853     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
7854
7855 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
7856 Author: Ben Warren <biggerbadderben@gmail.com>
7857 Date:   Tue Apr 28 17:04:51 2009 -0700
7858
7859     Schedule removal of non-CONFIG_NET_MULTI net driver API
7860
7861     This will make CONFIG_NET_MULTI the only net driver configuration and
7862     we'll be able to remove this option.
7863
7864     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7865
7866 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
7867 Author: Detlev Zundel <dzu@denx.de>
7868 Date:   Tue May 5 16:04:06 2009 +0200
7869
7870     powerpc/inka4x0: Remove left-over ide reset code.
7871
7872     The pin which was used in preliminary versions of the board for ide
7873     reset is really connected to the rtc clock.
7874
7875     Signed-off-by: Detlev Zundel <dzu@denx.de>
7876
7877 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
7878 Author: Marco Stornelli <marco.stornelli@gmail.com>
7879 Date:   Tue Apr 28 19:04:02 2009 +0200
7880
7881     Add imls utility command
7882
7883     This patch adds, under tools folder, a new command called imls. Its
7884     goal is the same of UBoot's imls but it can be used as Linux shell
7885     command. It reads from raw mtd partition and prints the list of the
7886     stored images.
7887
7888     Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
7889
7890 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
7891 Author: Heiko Schocher <hs@denx.de>
7892 Date:   Tue Apr 28 08:36:11 2009 +0200
7893
7894     netloop: updates for NetLoop
7895
7896     Fix some issues introduced from commit:
7897     2f70c49e5b9813635ad73666aa30f304c7fdeda9
7898     suggested by Mike Frysinger.
7899
7900     - added some comment for the env_id variable in common_cmd_nvedit.c
7901     - moved some variables in fn scope instead of file scope
7902     - NetInitLoop now static void
7903
7904     Signed-off-by: Heiko Schocher <hs@denx.de>
7905     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7906
7907 commit 3c1d89545de11822f8b5afb5646a57757620bd95
7908 Author: Heiko Schocher <hs@denx.de>
7909 Date:   Tue Apr 28 07:48:39 2009 +0200
7910
7911     82xx, ids8247: added ids8247 board to MAKEALL script
7912
7913     Signed-off-by: Heiko Schocher <hs@denx.de>
7914
7915 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
7916 Author: Detlev Zundel <dzu@denx.de>
7917 Date:   Thu May 7 13:08:55 2009 +0200
7918
7919     arm/imx31_phycore: Fix bi_arch_number
7920
7921     Signed-off-by: Detlev Zundel <dzu@denx.de>
7922     Cc: Sascha Hauer <s.hauer@pengutronix.de>
7923
7924 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
7925 Author: Sascha Hauer <s.hauer@pengutronix.de>
7926 Date:   Fri May 15 10:21:33 2009 +0200
7927
7928     remove myself as phycore/litekit Maintainer
7929
7930     I never acked a patch that adds me as phycore i.MX31 maintainer nor was
7931     it me who pushed the patches, so remove myself from the maintainer list
7932     so that other people do not longer wait for my ack.
7933
7934     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
7935
7936 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
7937 Author: Sergey Lapin <slapin@ossfans.org>
7938 Date:   Tue May 12 12:25:14 2009 +0400
7939
7940     AFEB9260 network fix
7941
7942     AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
7943     Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
7944     not 0.
7945
7946     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
7947
7948 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
7949 Author: Graf Yang <graf.yang@analog.com>
7950 Date:   Tue May 5 02:26:27 2009 -0400
7951
7952     Blackfin: bf518f-ezbrd: reset ethernet PHY during init
7953
7954     We don't know what state the ethernet PHY is in when starting up, so make
7955     sure we set it to a sane state.  This fixes troubles seen when Linux boots
7956     up, configures the PHY is a non-default state, and then the system reboots
7957     into U-Boot which previously expected a reset state only.
7958
7959     Signed-off-by: Graf Yang <graf.yang@analog.com>
7960     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7961
7962 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
7963 Author: Mike Frysinger <vapier@gentoo.org>
7964 Date:   Tue May 5 01:35:41 2009 -0400
7965
7966     Blackfin: bf527-ezkit: fix SPI flash env params
7967
7968     The BF527-EZKIT settings for storing the environment in SPI flash wasn't
7969     using the correct sector settings for the SPI flash part that is actually
7970     on the board.
7971
7972     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7973
7974 commit f58bf804a14324c6c9186a7a664fa23281780e8b
7975 Author: Mike Frysinger <vapier@gentoo.org>
7976 Date:   Fri Apr 24 23:54:19 2009 -0400
7977
7978     Blackfin: avoid get_sclk() with early serial debug
7979
7980     When the clock functions were changed to use cached values (and thereby
7981     avoiding expensive math functions), early serial debug broke because the
7982     baud programming is called before external memory is available.
7983
7984     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7985
7986 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
7987 Author: Mike Frysinger <vapier@gentoo.org>
7988 Date:   Fri Apr 24 23:39:41 2009 -0400
7989
7990     Blackfin: fix booting with older bootroms (no EVT1)
7991
7992     When dropping jump block support, the assumption was that all bootroms
7993     supported entry point redirection via the EVT1 register.  Unfortunately,
7994     this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
7995     and older and BF561).  No one really noticed earlier because these parts
7996     usually are booted by bypassing the bootrom entirely, and older BF533
7997     parts are not supported at all (too many anomalies).
7998
7999     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8000
8001 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
8002 Author: Mike Frysinger <vapier@gentoo.org>
8003 Date:   Fri Apr 24 23:22:48 2009 -0400
8004
8005     Blackfin: recurse with early serial initcode
8006
8007     Make sure we recurse through serial_putc() rather than bang on the UART
8008     transmit register directly to avoid hardware overflows when using \n.
8009
8010     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8011
8012 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
8013 Author: Wolfgang Denk <wd@denx.de>
8014 Date:   Fri May 1 21:59:12 2009 +0200
8015
8016     Prepare v2009.06-rc1
8017
8018     Update CHANGELOG.
8019
8020     Signed-off-by: Wolfgang Denk <wd@denx.de>
8021
8022 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
8023 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8024 Date:   Fri May 1 15:38:06 2009 +0200
8025
8026     at91: remove lowlevel_init.S
8027
8028     lowlevel_init.S is not used any more so remove it.
8029     As consequence, we also don't have to generate u-boot.lds
8030     but can use a static version as before.
8031
8032     This also fixes the out-of-tree build problem introduced
8033     with commit f0a2c7b4 "at91: add support for the PM9263 board"
8034
8035     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8036     Signed-off-by: Wolfgang Denk <wd@denx.de>
8037
8038 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
8039 Author: Wolfgang Denk <wd@denx.de>
8040 Date:   Fri May 1 00:16:11 2009 +0200
8041
8042     Update CHANGELOG; minor coding style cleanup.
8043
8044     Signed-off-by: Wolfgang Denk <wd@denx.de>
8045
8046 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
8047 Author: Manikandan Pillai <mani.pillai@ti.com>
8048 Date:   Tue Apr 21 17:29:05 2009 +0200
8049
8050     OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
8051
8052     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8053     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
8054
8055 commit ac9140037a84629c5583066ff1a177396c47d89d
8056 Author: Dirk Behme <dirk.behme@googlemail.com>
8057 Date:   Fri Apr 17 14:27:56 2009 +0200
8058
8059     OMAP3: Beagle: Set pinmux conditionally for Rev C boards
8060
8061     The Beagle Rev C boards pull UART2 from an alternate set of balls.
8062
8063     Signed-off-by: Steve Sakoman <steve@sakoman.com>
8064     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8065
8066 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
8067 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8068 Date:   Mon Apr 27 18:33:33 2009 +0200
8069
8070     ubifs: BUG: Blocks commpressed with zlib
8071
8072     Blocks compressed with zlib dont have the full gzip header.
8073
8074     Without this patch, block compressed with zlib cannot be readed!
8075
8076     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8077
8078 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
8079 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8080 Date:   Mon Apr 27 18:33:32 2009 +0200
8081
8082     lib_generic: gunzip: New function zunzip
8083
8084     Separate gunzip in
8085
8086     gunzip: Find the end of the header and call zunzip.
8087     zunzip: Inflate gunzip block without header.
8088
8089     UBI fs blocks can be compresed in lzo, zlib or no-compression. The
8090     current implementation of u-boot supported all the compressions but
8091     there was a bug in the implementation of the zlib blocks.
8092
8093     UBIFS's Zlib blocks do not have header but they were compressed using
8094     gunzip, a function used to decompress gunzip files/sectors with a
8095     header.
8096
8097     This patch adds a new function zunzip that uncompress a zlib block with
8098     no header.
8099
8100     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8101
8102 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
8103 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
8104 Date:   Thu Apr 23 15:37:16 2009 +0200
8105
8106     at91: fixed plla calc when no USB support is active
8107
8108     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
8109     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8110
8111 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
8112 Author: Ladislav Michl <ladis@linux-mips.org>
8113 Date:   Wed Apr 22 01:12:04 2009 +0200
8114
8115     arm925t: Fix CONFIG_SYS_HZ to 1000
8116
8117     Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
8118     get_timer.
8119
8120     Changes since original version:
8121     * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
8122       improve timer resolution.
8123
8124     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
8125
8126 commit 42bf4b2248146abdc592bde0009c6ea42067f437
8127 Author: Dirk Behme <dirk.behme@googlemail.com>
8128 Date:   Tue Apr 14 20:15:17 2009 +0200
8129
8130     OMAP3: Remove legacy NAND defines
8131
8132     Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
8133
8134     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8135
8136 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
8137 Author: Sanjeev Premi <premi@ti.com>
8138 Date:   Mon Apr 27 21:27:54 2009 +0530
8139
8140     OMAP3: Print correct silicon revision
8141
8142     The function display_board_info() displays incorrect
8143     silicon revision - based on the return value from
8144     function get_cpu_rev().
8145
8146     This patch fixes the problem.
8147
8148     Signed-off-by: Sanjeev Premi <premi@ti.com>
8149
8150 commit 90006e9b33bcdbf241b0295d186e3634137907a9
8151 Author: Sanjeev Premi <premi@ti.com>
8152 Date:   Mon Apr 27 21:27:44 2009 +0530
8153
8154     OMAP3: Remove unused board-types
8155
8156     The board-types defined in struct omap3_sysinfo seem to be
8157     unused. The function display_board_info() is passed
8158     board type as an argument; which is ignored.
8159
8160     This patch removes all uses of board-type, related definitions
8161     and functions.
8162
8163     Signed-off-by: Sanjeev Premi <premi@ti.com>
8164
8165 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
8166 Author: Sanjeev Premi <premi@ti.com>
8167 Date:   Mon Apr 27 21:27:27 2009 +0530
8168
8169     OMAP3: Use functions print_cpuinfo() and checkboard()
8170
8171     Use the functions print_cpuinfo() and checkboard() to
8172     display the cpu and board specific information.
8173
8174     These functions reuse content from the existing function
8175     display_board_info() - which has been removed.
8176
8177     Also, updated the existig OMAP3 configurations to
8178     define:
8179      - CONFIG_DISPLAY_CPUINFO
8180      - CONFIG_DISPLAY_BOARDINFO
8181
8182     Signed-off-by: Sanjeev Premi <premi@ti.com>
8183
8184 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
8185 Author: Stefan Roese <sr@denx.de>
8186 Date:   Wed Mar 18 11:17:37 2009 +0100
8187
8188     MTD: Change cfi-mtd to accept non-uniform sector sizes
8189
8190     With this patch non-uniform NOR FLASH chips (chips with multiple erase
8191     regions) can be exported via the cfi-mtd layer and therefor used by UBI.
8192     We select the largest sector size as erasesize. The cfi driver will make
8193     sure that the smaller sectors are handled correctly.
8194
8195     Signed-off-by: Stefan Roese <sr@denx.de>
8196
8197 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
8198 Author: Anatolij Gustschin <agust@denx.de>
8199 Date:   Thu Apr 23 12:35:22 2009 +0200
8200
8201     video: fix bug in cfb_console.c code
8202
8203     Fix bug in drawing long version/info strings:
8204     U-Boot version string like
8205     "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
8206     is long and doesn't wrap around correctly while drawing
8207     beside the logo. Such long strings partially overwrite
8208     the logo. This patch is an attempt to fix it.
8209
8210     Signed-off-by: Anatolij Gustschin <agust@denx.de>
8211
8212 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
8213 Author: Wolfgang Denk <wd@denx.de>
8214 Date:   Tue Apr 28 08:50:31 2009 +0200
8215
8216     cmd_ext2.c: fix compile warnings
8217
8218     Get rid of these warnings:
8219
8220     cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
8221     cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
8222
8223     Signed-off-by: Wolfgang Denk <wd@denx.de>
8224
8225 commit 28afe0160f87ff74574150d703055a965f91422a
8226 Author: Heiko Schocher <hs@denx.de>
8227 Date:   Mon Apr 27 10:48:20 2009 +0200
8228
8229     ids8247: Remove legacy NAND defines
8230
8231     because legacy NAND support is deprecated converting to current
8232     NAND interface. !This just compile, because I have no more the
8233     hardware to test it.
8234
8235     Signed-off-by: Heiko Schocher <hs@denx.de>
8236
8237 commit dbd33614404b65aa441c5620c3dbd560c4460c09
8238 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8239 Date:   Mon Apr 27 09:13:31 2009 +0200
8240
8241     ubifs: BUG realpath string must be ended with NULL
8242
8243     If the memory used to copy the link_make is "dirty" the string wont
8244     be ended with NULL, throwing out multiple memory bugs.
8245
8246     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8247     Acked-by: Stefan Roese <sr@denx.de>
8248
8249 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
8250 Author: Peter Tyser <ptyser@xes-inc.com>
8251 Date:   Fri Apr 24 15:59:56 2009 -0500
8252
8253     bmp_logo: Check return value of fread()
8254
8255     Add basic error handling to fread() function calls.  This prevents
8256     compililation warnings such as:
8257
8258     bmp_logo.c: In function â€˜main’:
8259     bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
8260     attribute warn_unused_result
8261     ...
8262
8263     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8264
8265 commit eea8be86d1c2b570660d1f6c553845e13164231a
8266 Author: Peter Tyser <ptyser@xes-inc.com>
8267 Date:   Fri Apr 24 15:59:46 2009 -0500
8268
8269     ncb: Check return value of write()
8270
8271     This prevents the compilation warning:
8272
8273     ncb.c: In function 'main':
8274     ncb.c:32: warning: ignoring return value of â€˜write’, declared with
8275     attribute warn_unused_result
8276
8277     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8278
8279 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
8280 Author: Stefan Roese <sr@denx.de>
8281 Date:   Fri Apr 24 15:59:35 2009 +0200
8282
8283     mtd: nand/onenand: Register mtd device upon device scanning
8284
8285     With this patch the NAND and OneNAND devices are registered in the MTD
8286     subsystem and can then be referenced by the mtdcore code (e.g.
8287     get_mtd_device_nm()). This is needed for the new "ubi part" command
8288     syntax without the flash type parameter (nor|nand|onenand).
8289
8290     Signed-off-by: Stefan Roese <sr@denx.de>
8291
8292 commit 10bb62d85a0850dbad1fdd34123378686373f166
8293 Author: Stefan Roese <sr@denx.de>
8294 Date:   Fri Apr 24 15:58:33 2009 +0200
8295
8296     mtd: nand: Include linux/mtd/partitions.h in nand_base.h
8297
8298     This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
8299     defined:
8300
8301     nand_base.c: In function 'nand_release':
8302     nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
8303
8304     Signed-off-by: Stefan Roese <sr@denx.de>
8305
8306 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
8307 Author: Stefan Roese <sr@denx.de>
8308 Date:   Fri Apr 24 20:24:19 2009 +0200
8309
8310     ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
8311
8312     This patch removes the now unnecessary flash type parameter from the
8313     "ubi part" command. Currently the user has to define the type of flash
8314     he will be using UBI on. Example:
8315
8316     => ubi part nor partition1
8317
8318     With this patch this type parameter is not needed anymore. The user can
8319     now select the partition directly without the flash type paramter.
8320     Example:
8321
8322     => ubi part partition1
8323
8324     This breaks backward compatibility right now because of the change in the
8325     command syntax. But UBI support is still quite fresh and the advantage of
8326     this new command is syntax big enough for this change. Additionally the
8327     code is much cleaner now.
8328
8329     Signed-off-by: Stefan Roese <sr@denx.de>
8330     CC: Kyungmin Park <kyungmin.park@samsung.com>
8331
8332 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
8333 Author: Detlev Zundel <dzu@denx.de>
8334 Date:   Thu Apr 23 13:14:20 2009 +0200
8335
8336     mips/vcth: Use generic 16550 uart driver
8337
8338     As the common code also handles baudrate switching, which the board
8339     specific vct.c driver did not support, this is one of the rare
8340     occassions where deleting code actually adds a feature :)
8341
8342     Signed-off-by: Detlev Zundel <dzu@denx.de>
8343     Acked-by: Stefan Roese <sr@denx.de>
8344     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
8345
8346 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
8347 Author: Ladislav Michl <ladis@linux-mips.org>
8348 Date:   Tue Apr 21 02:26:31 2009 +0200
8349
8350     Separate mtdparts command from jffs2
8351
8352     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
8353     > Currently the mtdparts commands are included in the jffs2 command support.
8354     > This doesn't make sense anymore since other commands (e.g. UBI) use this
8355     > infrastructure as well now. This patch separates the mtdparts commands from
8356     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
8357     > support is needed.
8358
8359     One more leftover... Let nboot command know about partitions even if JFFS2
8360     support is not enabled.
8361
8362     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
8363     Acked-by: Stefan Roese <sr@denx.de>
8364
8365 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
8366 Author: Peter Tyser <ptyser@xes-inc.com>
8367 Date:   Mon Apr 20 11:22:13 2009 -0500
8368
8369     cmd_ide: Remove unused AmigaOneG3SE code
8370
8371     The output_data_short() and input_data_short() functions for the
8372     AmigaOneG3SE are unused and result in compiler warnings.
8373
8374     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8375
8376 commit c93c102ace00764a56dbdf78bac134a23906721e
8377 Author: Peter Tyser <ptyser@xes-inc.com>
8378 Date:   Mon Apr 20 11:21:40 2009 -0500
8379
8380     AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
8381
8382     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8383
8384 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
8385 Author: Peter Tyser <ptyser@xes-inc.com>
8386 Date:   Mon Apr 20 11:09:05 2009 -0500
8387
8388     Replace __asm references with __asm__
8389
8390     __asm__ follows gcc's documented syntax and is generally more common
8391     than __asm.  This change is only asthetic and should not affect
8392     functionality.
8393
8394     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8395
8396 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
8397 Author: Peter Tyser <ptyser@xes-inc.com>
8398 Date:   Mon Apr 20 11:08:46 2009 -0500
8399
8400     Replace __attribute references with __attribute__
8401
8402     __attribute__ follows gcc's documented syntax and is generally more
8403     common than __attribute.  This change is only asthetic and should not
8404     affect functionality.
8405
8406     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8407
8408 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
8409 Author: David Brownell <dbrownell@users.sourceforge.net>
8410 Date:   Thu Apr 16 19:55:48 2009 -0700
8411
8412     mtdpart command: align output columns
8413
8414     Make the headers in the "mtdparts" command output line up
8415     with their columns ... strike the extra TAB character.
8416
8417     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8418
8419 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
8420 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
8421 Date:   Thu Apr 16 10:51:03 2009 +0900
8422
8423     Remove sa1100.h
8424
8425     sa1100.h is not used anywhere, then remove it.
8426
8427     $ find . -name '*.h' -empty -print
8428     ./include/sa1100.h
8429     $ git grep 'sa1100.h' .
8430     $
8431
8432     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
8433     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8434
8435 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
8436 Author: Stefan Roese <sr@denx.de>
8437 Date:   Tue Apr 14 17:51:21 2009 +0200
8438
8439     UBIFS: Remove tnc_commit.c which is not used in the read-only version
8440
8441     I missed removing this file while implementing the UBIFS support. It's
8442     not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
8443     for spotting.
8444
8445     Signed-off-by: Stefan Roese <sr@denx.de>
8446
8447 commit 6356daff70867822bdb23cea49f98e65421a25b8
8448 Author: Adrian Hunter <adrian.hunter@nokia.com>
8449 Date:   Tue Apr 14 17:50:38 2009 +0200
8450
8451     UBIFS: fix recovery bug
8452
8453     UBIFS did not recovery in a situation in which it could
8454     have. The relevant function assumed there could not be
8455     more nodes in an eraseblock after a corrupted node, but
8456     in fact the last (NAND) page written might contain anything.
8457     The correct approach is to check for empty space (0xFF bytes)
8458     from then on.
8459
8460     Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
8461     Signed-off-by: Stefan Roese <sr@denx.de>
8462
8463 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
8464 Author: Gao Guanhua <B22826@freescale.com>
8465 Date:   Tue Apr 14 14:37:35 2009 +0800
8466
8467     fs: Fix the wrong type of var
8468
8469     The filelen should be signed type, not unsigned type.
8470     otherwise, The condition as below never take.
8471         if (filelen < 0)
8472
8473     Signed-off-by: Gao Guanhua <B22826@freescale.com>
8474     Signed-off-by: Dave Liu <daveliu@freescale.com>
8475
8476 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
8477 Author: Wolfgang Denk <wd@denx.de>
8478 Date:   Tue Apr 28 00:29:34 2009 +0200
8479
8480     Update CHANGELOG
8481
8482     Signed-off-by: Wolfgang Denk <wd@denx.de>
8483
8484 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
8485 Author: David Brownell <dbrownell@users.sourceforge.net>
8486 Date:   Thu Apr 16 23:15:15 2009 -0700
8487
8488     dm9000 EEPROM reading bugfix
8489
8490     Make the U-Boot dm9000 driver read addresses from EEPROM just
8491     like Linux does ... read six bytes, instead of reading twelve
8492     bytes and then discarding every other one.
8493
8494     Using the right Ethernet address is a big win.
8495
8496     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8497     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8498     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8499
8500 commit d4c02e6f5d49880123e7f584b88f857ffd874381
8501 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8502 Date:   Wed Feb 25 14:27:24 2009 +0900
8503
8504     rtl8169: fix cache coherency problem
8505
8506     Fix the problem that cannot access actual data when CPU data cache enabled.
8507
8508     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8509     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8510     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8511
8512 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
8513 Author: Dirk Behme <dirk.behme@googlemail.com>
8514 Date:   Tue Apr 21 17:30:51 2009 +0200
8515
8516     OMAP3: Fix changed mmc init command
8517
8518     In recent U-Boot mmcinit changed to mmc init.
8519
8520     Signed-off-by: Steve Sakoman <steve@sakoman.com>
8521     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8522
8523 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
8524 Author: Wolfgang Denk <wd@denx.de>
8525 Date:   Sun Apr 26 20:39:26 2009 +0200
8526
8527     lib_arm/board.c: remove misleading "test-only" comment.
8528
8529     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
8530     had been marked as "test-only", which is plain wrong considering
8531     current usage.  Delete this misleading comment.
8532
8533     Signed-off-by: Wolfgang Denk <wd@denx.de>
8534
8535 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
8536 Author: David Brownell <dbrownell@users.sourceforge.net>
8537 Date:   Sun Apr 12 15:40:16 2009 -0700
8538
8539     minor DaVinci clock cleanup
8540
8541     Minor cleanup to clock-related defines for DaVinci DM6446 boards:
8542
8543      - CONFIG_SYS_CLK_FREQ is unused; remove it.
8544
8545      - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
8546
8547     On DM6446 both of those peripheral clocks actually come from the
8548     same source, the primary oscillator.  Having them use the same
8549     symbol avoids bugs in the clone'n'modify development cycle.
8550
8551     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8552
8553 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
8554 Author: Minkyu Kang <mk7.kang@samsung.com>
8555 Date:   Mon Apr 6 19:59:29 2009 +0900
8556
8557     s3c64xx: remove unnecessary definition
8558
8559     CONFIG_S3C6400 is must defined at config header file
8560     That definition is unnecessary at this file
8561
8562     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8563
8564 commit 14b9308d511b53042ef478936e367a67282df66a
8565 Author: Heiko Schocher <hs@denx.de>
8566 Date:   Fri Apr 24 06:50:45 2009 +0200
8567
8568     83xx: searching "muram-data" by compatible property
8569
8570     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
8571     in the muram-data node, the reg entry needs to be updated.
8572     This is done in fdt_fixup_muram(), but we should use
8573     the compatible "fsl,qe-muram-data" for searching the
8574     node instead of searching the muram-data node with
8575     an absolute path.
8576
8577     Signed-off-by: Heiko Schocher <hs@denx.de>
8578     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8579
8580 commit 8e15088794807944b221c11609d36789efc7f767
8581 Author: Anatolij Gustschin <agust@denx.de>
8582 Date:   Thu Apr 23 21:29:34 2009 +0200
8583
8584     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
8585
8586     The size of U-Boot binary for MPC8360ERDK increased
8587     (> 2 flash sectors now), so 'saveenv' will partially
8588     overwrite U-Boot in flash and will brick the board.
8589     This patch moves environment offset to fourth flash
8590     sector and also fixes CONFIG_SYS_MONITOR_LEN.
8591
8592     Signed-off-by: Anatolij Gustschin <agust@denx.de>
8593     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8594
8595 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
8596 Author: Michael Zaidman <michael.zaidman@gmail.com>
8597 Date:   Sat Apr 4 01:43:00 2009 +0300
8598
8599     NetLoop initialization bug
8600
8601     The patch fixes the bug of partial initialization of global network
8602     parameters.
8603
8604     Upon u-boot's start up the first ping command causes a failure of the
8605     consequent TFTP command. It happens in the recently added mechanism of
8606     the NetLoop initialization where initialization of global network
8607     parameters is separated in the NetInitLoop routine which is called per
8608     env_id change. Thus, ping request will initialize the network parameters
8609     necessary for ping operation only, afterwards the env_changed_id will be
8610     set to the env_id that will prevent all following initialization requests
8611     from other protocols.
8612     The problem is that the initialized by ping subset of network parameters
8613     is not sufficient for other protocols and particularly for TFTP which
8614     requires the NetServerIp also.
8615
8616     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
8617     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8618
8619 commit b11f664f52c2855990107c18f242223377183575
8620 Author: Timur Tabi <timur@freescale.com>
8621 Date:   Thu Apr 9 10:27:05 2009 -0500
8622
8623     net: fix ULI 526x macro usage in netdev.h
8624
8625     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
8626     is used everywhere else, so that's the correct macro name.  Without this fix,
8627     Ethernet will not work on the Freescale MPC8610 HPCD.
8628
8629     Signed-off-by: Timur Tabi <timur@freescale.com>
8630     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8631
8632 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
8633 Author: David Brownell <dbrownell@users.sourceforge.net>
8634 Date:   Sun Apr 12 15:38:06 2009 -0700
8635
8636     fix DaVinci NS16550_REG_SIZE regression
8637
8638     Update the DaVinci DM6446 boards to use the new convention
8639     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
8640     from the original 4 bytes, but these chips are little-endian.
8641
8642     (Resolves a regression added recently by the include/ns16550.h
8643     patch to "Unify structure declaration for registers".  The code
8644     previously worked just fine because the registers were accessed
8645     as host-endian words, not as bytes.)
8646
8647     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8648
8649 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
8650 Author: Mike Frysinger <vapier@gentoo.org>
8651 Date:   Sun Apr 12 22:29:20 2009 -0400
8652
8653     cmd_nand: drop duplicate NULL ptr check
8654
8655     The first if statement checks for NULL ptrs, so there is no need to check
8656     it again in later else cases (such as .oob).
8657
8658     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8659     CC: Scott Wood <scottwood@freescale.com>
8660
8661 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
8662 Author: David Brownell <dbrownell@users.sourceforge.net>
8663 Date:   Mon Apr 13 08:03:38 2009 -0700
8664
8665     CMD_UBI != MTD_PARTITIONS
8666
8667     Fix dependency goofage:  it should certainly be possible to have the
8668     partition support without bringing in UBI commands.
8669
8670     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
8671     Acked-by: Stefan Roese <sr@denx.de>
8672
8673 commit 6ebff365eb63093ca35b687316002535c6a18820
8674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8675 Date:   Thu Apr 16 21:30:48 2009 +0200
8676
8677     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
8678
8679     The timer has been rewrote with a precision at ~0,18%
8680
8681     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8682     Tested-by: Sergey Lapin <slapin@ossfans.org>
8683     Tested-by: Eric BENARD <ebenard@free.fr>
8684
8685 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
8686 Author: Ilko Iliev <iliev@ronetix.at>
8687 Date:   Thu Apr 16 21:30:48 2009 +0200
8688
8689     at91: add support for the PM9263 board of Ronetix GmbH
8690
8691     The PM9263 board is based on the AT91SAM9263-EK board.
8692
8693     Here is the page on Ronetix website:
8694     http://www.ronetix.at/starter_kit_9263.html
8695
8696     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
8697     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8698
8699 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
8700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8701 Date:   Thu Apr 16 21:30:44 2009 +0200
8702
8703     at91sam9/at91cap: improve clock framework
8704
8705     calculate dynamically the clock rate and pllb setting for usb
8706
8707     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8708
8709 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
8710 Author: Stefan Roese <sr@denx.de>
8711 Date:   Wed Apr 15 14:08:48 2009 +0200
8712
8713     ppc4xx: Disable POST memory test on NAND-booting Kilauea
8714
8715     Don't run the memory POST on the NAND-booting version. It will
8716     overwrite part of the U-Boot image which is already loaded from NAND
8717     to SDRAM. We were just lucky that it booted at all with this SDRAM
8718     test enabled.
8719
8720     Signed-off-by: Stefan Roese <sr@denx.de>
8721
8722 commit 9a929170be89b27bce677504da27e88600c06c49
8723 Author: Stefan Roese <sr@denx.de>
8724 Date:   Wed Apr 15 14:06:26 2009 +0200
8725
8726     ppc4xx: Disable POST memory test on NAND-booting Sequoia
8727
8728     Don't run the memory POST on the NAND-booting version. It will
8729     overwrite part of the U-Boot image which is already loaded from NAND
8730     to SDRAM. We were just lucky that it booted at all with this SDRAM
8731     test enabled.
8732
8733     Signed-off-by: Stefan Roese <sr@denx.de>
8734
8735 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
8736 Author: Stefan Roese <sr@denx.de>
8737 Date:   Wed Apr 15 11:32:53 2009 +0200
8738
8739     ppc4xx: Remove unused code for Sequoia NAND booting version
8740
8741     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
8742     used at all. This patch changes it's define to the currently used value of
8743     133333333 and removes the unnecessary code.
8744
8745     Signed-off-by: Stefan Roese <sr@denx.de>
8746
8747 commit cf9409885cbe01405bad76790e99f8adf3351f4d
8748 Author: Stefan Roese <sr@denx.de>
8749 Date:   Wed Apr 15 10:50:48 2009 +0200
8750
8751     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
8752
8753     This additional text in the bootup log helps to see if the board is
8754     configured for NAND-booting. Especially helpful for boards that can
8755     boot from NOR and NAND (e.g. most of the AMCC eval boards).
8756
8757     Signed-off-by: Stefan Roese <sr@denx.de>
8758
8759 commit 5132106a27b8fb302677852b26ffd319b40d17e2
8760 Author: Stefan Roese <sr@denx.de>
8761 Date:   Wed Apr 8 10:36:22 2009 +0200
8762
8763     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
8764
8765     Currently the NOR & NAND support in Linux only works for the "standard"
8766     Sequoia, the version booting for NOR flash. The NAND-booting version
8767     has the chip-selects swapped. Here the chip-select mappings:
8768
8769     "Standard" NOR-booting version:
8770     CS0 NOR
8771     CS3 NAND
8772
8773     NAND-booting version:
8774     CS0 NAND
8775     CS3 NOR
8776
8777     With this path the dtb gets fixed-up, so that the correct chip-select
8778     numbers are patched in the dtb enabling correct NOR & NAND support
8779     in Linux on the NAND-booting Sequoia version.
8780
8781     Signed-off-by: Stefan Roese <sr@denx.de>
8782
8783 commit aad4eca4ba8d597747199d8af723426681557dda
8784 Author: Mike Frysinger <vapier@gentoo.org>
8785 Date:   Sat Apr 4 09:10:27 2009 -0400
8786
8787     Blackfin: audit UART for all known anomalies
8788
8789     There is no code change here, just new comments, but this keeps me from
8790     having to do another audit from scratch in the future.
8791
8792     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8793
8794 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
8795 Author: Mike Frysinger <vapier@gentoo.org>
8796 Date:   Sat Apr 4 08:40:13 2009 -0400
8797
8798     Blackfin: add check for anomaly 05000362
8799
8800     DESCRIPTION:
8801     The column address width settings for banks 2 and 3 are misconnected in
8802     the SDRAM controller.  Accesses to bank 2 will result in an error if the
8803     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
8804     that of bank 2.
8805
8806     WORKAROUND:
8807     If using bank 2, make sure that banks 2 and 3 have the same column address
8808     width settings in the EBIU_SDBCTL register.  This must be the case
8809     regardless of whether or not bank 3 is enabled.
8810
8811     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8812
8813 commit c2e07449f546fb375289cdac1a608fdc20357873
8814 Author: Mike Frysinger <vapier@gentoo.org>
8815 Date:   Sat Apr 4 08:29:55 2009 -0400
8816
8817     Blackfin: add comment about anomaly 05000430 avoidance
8818
8819     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8820
8821 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
8822 Author: Mike Frysinger <vapier@gentoo.org>
8823 Date:   Sat Apr 4 08:10:22 2009 -0400
8824
8825     Blackfin: add workaround for anomaly 05000242
8826
8827     DESCRIPTION:
8828     If the DF bit is set prior to a hardware reset, the PLL will continue to
8829     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
8830     cleared in the PLL_CTL register.
8831
8832     WORKAROUND:
8833     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
8834     2 after reset.
8835
8836     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8837
8838 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
8839 Author: Mike Frysinger <vapier@gentoo.org>
8840 Date:   Sat Apr 4 08:09:24 2009 -0400
8841
8842     Blackfin: add workaround for anomaly 05000171
8843
8844     DESCRIPTION:
8845     The Boot ROM is executed at power up/reset and changes the value of the
8846     SICA_IWR registers from their default reset value of 0xFFFF, but does not
8847     restore them.
8848
8849     WORKAROUND:
8850     User code should not rely on the default value of these registers.  Set
8851     the desired values explicitly.
8852
8853     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8854
8855 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
8856 Author: Mike Frysinger <vapier@gentoo.org>
8857 Date:   Sat Apr 4 08:22:36 2009 -0400
8858
8859     Blackfin: update anomaly sheets
8860
8861     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8862
8863 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
8864 Author: Graf Yang <graf.yang@analog.com>
8865 Date:   Sat Apr 4 07:45:57 2009 -0400
8866
8867     Blackfin: nand: flush peripheral before polling it
8868
8869     We need to make sure the data written to the nand flash controller makes
8870     it there before we start polling its status register.  Otherwise, we may
8871     get stale data and return before the controller is actually ready.
8872
8873     Signed-off-by: Graf Yang <graf.yang@analog.com>
8874     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8875     Acked-by: Scott Wood <scottwood@freescale.com>
8876
8877 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
8878 Author: Remy Bohmer <linux@bohmer.net>
8879 Date:   Sun Apr 5 11:43:28 2009 +0200
8880
8881     Support for PXA27X UDC.
8882
8883         This Patch adds Support for PXA27X UDC.
8884         (Rebased to drivers/usb reorganisation)
8885
8886     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
8887     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8888
8889 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
8890 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8891 Date:   Fri Apr 3 12:46:58 2009 +0200
8892
8893     drivers/usb: regorganisation
8894
8895     move to linux usb driver organisation
8896
8897     as following
8898
8899     drivers/usb/gadget
8900     drivers/usb/host
8901     drivers/usb/musb
8902
8903     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8904     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8905
8906 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
8907 Author: Todor I Mollov <tmollov@ucsd.edu>
8908 Date:   Sat Apr 4 06:53:06 2009 -0400
8909
8910     Blackfin: spi: make cs deassert function deterministic
8911
8912     Blackfin SPI driver was not driving the SPI chip-select high before
8913     putting the chip-select signals into tri-state mode.  This is probably
8914     something that slipped by unnoticed in most designs.  If the signals are
8915     put directly into a tri-state mode, then the board is relying on the
8916     pull-up resistors to pull up the chip-select before the next transaction.
8917     Most of the time this is fine, except when you have two transactions that
8918     follow each other very closely, such as the flash erase and read status
8919     register commands.  In this case I was seeing a 500ns separation between
8920     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
8921     timing spec about half the time and resulted in intermittent errors.  (A
8922     stronger pull up would fix this, but our design is targeted for low power
8923     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
8924     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
8925     chip-selects high before putting them into tri-state.  For me, this
8926     resulted in a rise time of 5ns instead of the previous rise time of about
8927     1us, and fully satisfied the timing spec of the chip.
8928
8929     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
8930     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8931
8932 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
8933 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8934 Date:   Sat Dec 13 21:08:05 2008 +0100
8935
8936     integratorap: fix PCI support
8937
8938     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8939
8940 commit 1c397508c836dfcb01fb2471c71de0727051f117
8941 Author: Dirk Behme <dirk.behme@googlemail.com>
8942 Date:   Mon Mar 30 21:15:23 2009 +0200
8943
8944     OMAP3: Update Overo pin mux for new expansion board
8945
8946     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
8947     switches. This patch changes the pinmux configuration for those pins.
8948     They were previously set up for unused MMC3_DAT4-7.
8949
8950     Signed-off-by: Steve Sakoman <steve@sakoman.com>
8951     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8952
8953 commit ab298231518675b3784aea88ee9b978438f99e63
8954 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8955 Date:   Sun Apr 5 13:08:03 2009 +0200
8956
8957     arm: unify reset command
8958
8959     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8960
8961 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
8962 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8963 Date:   Sun Apr 5 13:06:31 2009 +0200
8964
8965     arm: clean cache management
8966
8967     unify arm cache management except for non standard cache as ARM7TDMI
8968
8969     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8970
8971 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
8972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8973 Date:   Sun Apr 5 13:02:43 2009 +0200
8974
8975     arm: update co-processor 15 access
8976
8977     import system.h from linux
8978
8979     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8980
8981 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
8982 Author: Guennadi Liakhovetski <lg@denx.de>
8983 Date:   Sun Apr 5 00:42:02 2009 +0200
8984
8985     ARM: add the imx31_phycore_eet target to MAINTAINERS
8986
8987     imx31_phycore_eet is a variant of the imx31_phycore board with a few
8988     extensions, which justifies a separate entry in the MAINTAINERS list,
8989     whereas normally all entries sharing a single configuration file and a
8990     board/ directory have only one entry in MAINTAINERS.
8991
8992     Reported-by: Wolfgang Denk <wd@denx.de>
8993     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8994
8995 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
8996 Author: Guennadi Liakhovetski <lg@denx.de>
8997 Date:   Sun Apr 5 00:37:07 2009 +0200
8998
8999     ARM: fix out-of-tree build of imx31_phycore_eet
9000
9001     Fix out-of-tree build of the imx31_phycore_eet target.
9002
9003     Reported-by: Wolfgang Denk <wd@denx.de>
9004     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
9005
9006 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
9007 Author: Jon Smirl <jonsmirl@gmail.com>
9008 Date:   Sat Apr 4 17:44:51 2009 -0400
9009
9010     mpc5200: reduce delays in i2c
9011
9012     The previous code waited 1000us before checking i2c
9013     status. Measurement shows i2c is usually ready in
9014     under 50us. Change the polling interval to 15us,
9015     loop 6,667 times to keep the polling timeout constant
9016     at 100ms.
9017
9018 commit 36003268968949110ef145d9f2eaf8439c96d25b
9019 Author: Sanjeev Premi <premi@ti.com>
9020 Date:   Fri Apr 3 14:00:07 2009 +0530
9021
9022     OMAP: Fix compile issue
9023
9024     Fixes this compile error:
9025     board.c: In function 'do_switch_ecc':
9026     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
9027     make[1]: *** [board.o] Error 1
9028     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
9029     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
9030
9031     This is due to the fact that current command uses long
9032     help for the usage print even if the CONFIG_SYS_LONGHELP
9033     is not enabled. (Thanks Jean-Christophe for explanation).
9034
9035     Signed-off-by: Sanjeev Premi <premi@ti.com>
9036
9037 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
9038 Author: Minkyu Kang <mk7.kang@samsung.com>
9039 Date:   Fri Apr 3 09:56:16 2009 +0900
9040
9041     s3c64xx: fix the wrong gpio offset
9042
9043     This patch fix the wrong gpio offset
9044
9045     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
9046
9047 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
9048 Author: Kyungmin Park <kmpark@infradead.org>
9049 Date:   Wed Nov 26 10:18:13 2008 +0900
9050
9051     Move machine specific code to board at s3c64xx (v2)
9052
9053     Move machine specific code to smdk6400.
9054     Some board use OneNAND instead of NAND.
9055
9056     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
9057     So it's better to use macro instead of hard-coded value.
9058
9059     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9060
9061 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
9062 Author: Tom Rix <Tom.Rix@windriver.com>
9063 Date:   Wed Apr 1 22:02:19 2009 -0500
9064
9065     ZOOM1 Remove legacy NAND defines
9066
9067     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9068
9069 commit 5891151707ee5902fe62d554c247f42865815757
9070 Author: Tom Rix <Tom.Rix@windriver.com>
9071 Date:   Wed Apr 1 22:02:20 2009 -0500
9072
9073     OMAP3 Fix multiline formatting in board init files.
9074
9075     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9076
9077 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
9078 Author: Wolfgang Denk <wd@denx.de>
9079 Date:   Sun Apr 5 00:27:57 2009 +0200
9080
9081     Update CHANGELOG, coding style cleanup.
9082
9083 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
9084 Author: Wolfgang Denk <wd@denx.de>
9085 Date:   Sun Apr 5 00:18:44 2009 +0200
9086
9087     One more fix for building env_embedded.o
9088
9089     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
9090     commit afcbce07, we also need to do the same for
9091     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
9092
9093     Signed-off-by: Wolfgang Denk <wd@denx.de>
9094
9095 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
9096 Author: Scott Wood <scottwood@freescale.com>
9097 Date:   Thu Apr 2 16:15:10 2009 -0500
9098
9099     common/image.c: Relocate strings in tables.
9100
9101     Without this, u-boot can crash or print garbage if the original link
9102     address no longer points to a valid string.
9103
9104     Signed-off-by: Scott Wood <scottwood@freescale.com>
9105
9106 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
9107 Author: Scott Wood <scottwood@freescale.com>
9108 Date:   Thu Apr 2 16:10:36 2009 -0500
9109
9110     mpc8260: Fill in brg's clock-frequency in device tree.
9111
9112     Signed-off-by: Scott Wood <scottwood@freescale.com>
9113
9114 commit c73ed274a211699739d83c2cef92853dc6716e15
9115 Author: Scott Wood <scottwood@freescale.com>
9116 Date:   Thu Apr 2 18:20:43 2009 -0500
9117
9118     MPC8260ADS: Add nfsboot/ramboot to default environment.
9119
9120     This brings it in line with other Freescale boards.
9121
9122     Signed-off-by: Scott Wood <scottwood@freescale.com>
9123
9124 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
9125 Author: Andreas Huber <andreas.huber@keymile.com>
9126 Date:   Thu Apr 2 17:15:34 2009 +0200
9127
9128     UBI/cfi-mtd: Fix mtd name for multiple chips
9129
9130     On platforms with multiple NOR chips, currently only the first one
9131     can be selected using the "ubi part" command. This patch fixes this
9132     problem by using different names for the NOR "mtd devices".
9133
9134     It also changes the name of the NOR MTD device from "cfi-mtd" to
9135     "norX" (X indexing the device numer) to better match the mtdparts
9136     defaults.
9137
9138     Signed-off-by: Stefan Roese <sr@denx.de>
9139     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
9140
9141 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
9142 Author: Peter Korsgaard <jacmet@sunsite.dk>
9143 Date:   Tue Mar 31 17:52:16 2009 +0200
9144
9145     tools/setlocalversion: use git svn instead of git-svn
9146
9147     Use the new "git <subcmd>" syntax instead of the deprecated
9148     "git-<subcmd>".
9149
9150     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9151
9152 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
9153 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9154 Date:   Tue Mar 31 14:09:40 2009 +0800
9155
9156     eSPI: add the eSPI register support
9157
9158     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9159
9160 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
9161 Author: Minkyu Kang <mk7.kang@samsung.com>
9162 Date:   Mon Mar 30 14:55:51 2009 +0900
9163
9164     cmd_mmc: add support for device command for selecting mmc device
9165
9166     This patch improves device command for selecting mmc device
9167
9168     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
9169
9170 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
9171 Author: Alan Carvalho de Assis <acassis@gmail.com>
9172 Date:   Sat Mar 28 19:50:16 2009 -0300
9173
9174     Small fix to m5282evb
9175
9176     This is just a small fix to get u-boot on m5282evb.
9177
9178     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
9179
9180 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
9181 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
9182 Date:   Fri Mar 27 10:21:14 2009 +0100
9183
9184     UBIFS: add R/O compatibility
9185
9186     Now UBIFS is supported by u-boot. If we ever decide to change the
9187     media format, then people will have to upgrade their u-boots to
9188     mount new format images. However, very often it is possible to
9189     preserve R/O forward-compatibility, even though the write
9190     forward-compatibility is not preserved.
9191
9192     This patch introduces a new super-block field which stores the
9193     R/O compatibility version.
9194
9195     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
9196     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
9197     Signed-off-by: Stefan Roese <sr@denx.de>
9198
9199 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
9200 Author: Mike Frysinger <vapier@gentoo.org>
9201 Date:   Mon Mar 23 22:27:34 2009 -0400
9202
9203     more command usage cleanup
9204
9205     Fix up a few dangling commands like in "Command usage cleanup" commit.
9206
9207     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9208
9209 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
9210 Author: Ladislav Michl <ladis@linux-mips.org>
9211 Date:   Mon Mar 23 12:06:07 2009 +0100
9212
9213     Separate mtdparts command from jffs2
9214
9215     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
9216     > Currently the mtdparts commands are included in the jffs2 command support.
9217     > This doesn't make sense anymore since other commands (e.g. UBI) use this
9218     > infrastructure as well now. This patch separates the mtdparts commands from
9219     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
9220     > support is needed.
9221
9222     ... and to make it useful for NAND chips as well, we should also remove now
9223     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
9224     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
9225     but that can be fixed later (tm).
9226
9227     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
9228
9229 commit b196ca75503ce307c535b87bf47d51f05e7530df
9230 Author: Mike Frysinger <vapier@gentoo.org>
9231 Date:   Sun Mar 22 22:18:01 2009 -0400
9232
9233     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
9234
9235     Rather than sticking Blackfin-specific stuff into the eeprom example, use
9236     an indirect macro so that any board can override it with their own magic
9237     sauce in their board config file.
9238
9239     Also fix some spurious semi-colons in defines while I'm at it ...
9240
9241     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9242     CC: Ben Warren <biggerbadderben@gmail.com>
9243
9244 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
9245 Author: Sascha Hauer <s.hauer@pengutronix.de>
9246 Date:   Sat Mar 21 09:38:46 2009 -0400
9247
9248     mpc52xx phy: initialize only when needed
9249
9250     Do not initialize phy on startup, instead initialize it
9251     when we actually need it.
9252
9253     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
9254
9255 commit 03bab0091948196b9558248684c04f60943ca4b5
9256 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9257 Date:   Mon Mar 30 16:51:40 2009 +0200
9258
9259     at91sam9263ek: enable hush and auto complete support
9260
9261     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9262     Acked-by: Stelian Pop <stelian@popies.net>
9263
9264 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
9265 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9266 Date:   Fri Mar 27 23:26:44 2009 +0100
9267
9268     at91: move dataflash spi driver to drivers/spi
9269
9270     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9271
9272 commit 2b7178afce59f71e95da657273f4132012098c1f
9273 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9274 Date:   Fri Mar 27 23:26:44 2009 +0100
9275
9276     at91: move usb driver to drivers/usb
9277
9278     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9279
9280 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
9281 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9282 Date:   Fri Mar 27 23:26:43 2009 +0100
9283
9284     at91rm9200: Reset update
9285
9286     Update the rm9200 reset sequence to try executing a board-specific reset
9287     function and move specific board reset to board.
9288
9289     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9290
9291 commit 3524049cd053746298e4cfab2449882e75c146fc
9292 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9293 Date:   Fri Mar 27 23:26:43 2009 +0100
9294
9295     at91rm9200: move serial shutdown code to serial drivers
9296
9297     introduce serial_exit for this purpose. Use it only when the rm9200
9298     serial driver is active
9299
9300     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9301
9302 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
9303 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9304 Date:   Fri Mar 27 23:26:43 2009 +0100
9305
9306     at91rm9200: move serial driver to drivers/serial
9307
9308     add CONFIG_AT91RM9200_USART to activate the driver
9309
9310     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9311
9312 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
9313 Author: Ulf Samuelsson <ulf@atmel.com>
9314 Date:   Fri Mar 27 23:26:43 2009 +0100
9315
9316     Add support for the AT91RM9200EK Board.
9317
9318     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
9319     ARM9-based 32-bit RISC microcontroller and enables real-time code development
9320     and evaluation.
9321
9322     Here is the chip page on Atmel website:
9323     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
9324
9325     with
9326         - NOR (cfi driver)
9327         - DataFlash
9328         - USB OHCI
9329         - Net
9330         - I2C (hard)
9331
9332     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
9333     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9334
9335 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
9336 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9337 Date:   Fri Mar 27 23:26:42 2009 +0100
9338
9339     add dataflash mmc mux missing support
9340
9341     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9342
9343 commit 2a325ce3c705ab2d82760afc541c511328472df8
9344 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9345 Date:   Fri Mar 27 23:26:42 2009 +0100
9346
9347     at91rm9200dk: Move conditional compilation to Makefile
9348
9349     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9350
9351 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
9352 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9353 Date:   Fri Mar 27 23:26:42 2009 +0100
9354
9355     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
9356
9357     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9358
9359 commit 843a2654bce74192de2b5a43474fdc27a572ab40
9360 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9361 Date:   Fri Mar 27 23:26:42 2009 +0100
9362
9363     at91sam9: add watchdog support
9364
9365     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
9366     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9367
9368 commit a47492ac60657dd9d59c713aa049319ea6eabd52
9369 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9370 Date:   Fri Mar 27 13:14:52 2009 +0100
9371
9372     at91sam9/at91cap: spi init add hardware chip select support
9373
9374     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9375
9376 commit 66932ac3929c7a145a6ef6574a96fd7535154951
9377 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9378 Date:   Sat Apr 4 19:15:40 2009 +0200
9379
9380     netstar: fix crc32.c dependancy location
9381
9382     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9383
9384 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
9385 Author: Scott Wood <scottwood@freescale.com>
9386 Date:   Fri Apr 3 15:24:40 2009 -0500
9387
9388     MPC8260ADS: Define CONFIG_HAS_ETH0.
9389
9390     This is required so that the MAC address will be updated in the device tree.
9391
9392     Signed-off-by: Scott Wood <scottwood@freescale.com>
9393
9394 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
9395 Author: Scott Wood <scottwood@freescale.com>
9396 Date:   Fri Apr 3 15:26:45 2009 -0500
9397
9398     PQ2FADS: Enable PCI.
9399
9400     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
9401
9402     Signed-off-by: Scott Wood <scottwood@freescale.com>
9403
9404 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
9405 Author: Wolfgang Denk <wd@denx.de>
9406 Date:   Sat Apr 4 16:57:50 2009 +0200
9407
9408     Fix quoting bug introduced by commit 74de7aef
9409
9410     Signed-off-by: Wolfgang Denk <wd@denx.de>
9411
9412 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
9413 Author: Wolfgang Denk <wd@denx.de>
9414 Date:   Sat Apr 4 16:14:51 2009 +0200
9415
9416     Fix implicit declaration of function 'htons'
9417
9418     Include <netinet/in.h> instead of <linux/in.h> to get htons()
9419     prototpye.
9420
9421     Signed-off-by: Wolfgang Denk <wd@denx.de>
9422
9423 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
9424 Author: Kumar Gala <galak@kernel.crashing.org>
9425 Date:   Sat Apr 4 10:21:02 2009 -0500
9426
9427     fsl_law: Fix bug in calculation of LAW sizing
9428
9429     In set_ddr_laws() when we determined how much of the size requested
9430     to be mapped was covered by the the first LAW we needed to recalculate
9431     the size based on what was actually mapped.
9432
9433     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9434
9435 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
9436 Author: Kumar Gala <galak@kernel.crashing.org>
9437 Date:   Thu Apr 2 13:57:05 2009 -0500
9438
9439     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
9440
9441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9442
9443 commit c8514622e2713d9c47919acfe23fce386782afe7
9444 Author: Kumar Gala <galak@kernel.crashing.org>
9445 Date:   Thu Apr 2 13:22:48 2009 -0500
9446
9447     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
9448
9449     Rename the pci header for FSL HW so we can move some prototypes
9450     in there and stop doing explicit externs
9451
9452     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9453
9454 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
9455 Author: Wolfgang Denk <wd@denx.de>
9456 Date:   Sat Apr 4 16:10:40 2009 +0200
9457
9458     Fix building of env_embedded.o
9459
9460     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
9461     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
9462     building for many boards.
9463
9464     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
9465     set.
9466
9467     Signed-off-by: Wolfgang Denk <wd@denx.de>
9468
9469 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
9470 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9471 Date:   Sat Apr 4 12:49:11 2009 +0200
9472
9473     rename include/zlib.h to include/u-boot/zlib.h
9474
9475     Some systems have zlib.h installed in /usr/include/. This isn't the
9476     desired file for u-boot code - we want the one in include/zlib.h.
9477     This rename will avoid the conflict.
9478
9479     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9480     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9481
9482 commit ae644c178f097874a92a6d934f364985fc7e075a
9483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9484 Date:   Sat Apr 4 12:46:31 2009 +0200
9485
9486     tools/Makefile: fix image.c dependancy location
9487
9488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9489     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9490
9491 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
9492 Author: Mike Frysinger <vapier@gentoo.org>
9493 Date:   Sat Apr 4 07:42:25 2009 -0400
9494
9495     tools: add ncb to gitignore
9496
9497     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9498
9499 commit 453c0d7558215cbc8636d94af172886d84e0dbba
9500 Author: Detlev Zundel <dzu@denx.de>
9501 Date:   Fri Apr 3 16:45:46 2009 +0200
9502
9503     include/ns16550.h: Unify structure declaration for registers
9504
9505     Instead of special casing the different access patterns, use common
9506     code with light macros sprinkled in to accomodate for the different
9507     layouts of the register structure.
9508
9509     Note that this also changes the types of the registers for the
9510     "positively packed (>1)" cases.  As the registers truly are unsigned
9511     chars, this is surely the Right Thing, but it is a semantic change.
9512     Note that for this case depending on the endianness on the bus, we may
9513     see a change of behaviour.
9514
9515     Signed-off-by: Detlev Zundel <dzu@denx.de>
9516
9517 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
9518 Author: Peter Tyser <ptyser@xes-inc.com>
9519 Date:   Fri Mar 13 18:54:52 2009 -0500
9520
9521     Delete now unused tools/Makefile.win32
9522
9523     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9524
9525 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
9526 Author: Peter Tyser <ptyser@xes-inc.com>
9527 Date:   Fri Mar 13 18:54:51 2009 -0500
9528
9529     Add support for building native win32 tools
9530
9531     Add support for compiling the host tools in the tools directory using
9532     the MinGW toolchain.  This produces executables which can be used on
9533     standard Windows computers without requiring cygwin.
9534
9535     One must specify the MinGW compiler and strip utilities as if they
9536     were the host toolchain in order to build win32 executables, eg:
9537
9538     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
9539
9540     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9541
9542 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
9543 Author: Peter Tyser <ptyser@xes-inc.com>
9544 Date:   Fri Mar 13 18:54:50 2009 -0500
9545
9546     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
9547
9548     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9549
9550 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
9551 Author: Peter Tyser <ptyser@xes-inc.com>
9552 Date:   Fri Mar 13 18:54:49 2009 -0500
9553
9554     tools/Makefile: Create generic build rules
9555
9556     Create a few generic build rules to replace the current method which has
9557     1 build target for each file
9558
9559     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9560
9561 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
9562 Author: Peter Tyser <ptyser@xes-inc.com>
9563 Date:   Fri Mar 13 18:54:48 2009 -0500
9564
9565     tools/Makefile: Use auto-generated object file dependencies
9566
9567     Files in the SRCS variable have their dependencies automatically
9568     generated so remove duplicate explicit dependencies
9569
9570     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9571
9572 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
9573 Author: Peter Tyser <ptyser@xes-inc.com>
9574 Date:   Fri Mar 13 18:54:47 2009 -0500
9575
9576     tools/Makefile: Remove symlinks for remaining source files
9577
9578     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9579
9580 commit eed073315b6447eceadf7468a4c2b757442c7c6f
9581 Author: Peter Tyser <ptyser@xes-inc.com>
9582 Date:   Fri Mar 13 18:54:46 2009 -0500
9583
9584     tools/Makefile: Dynamically generate libfdt object dependencies
9585
9586     Add the libfdt files to the SRCS variable so that they have their
9587     dependencies automatically generated
9588
9589     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9590
9591 commit c0170175393b94560fa7a5da6dd31377df5f4a72
9592 Author: Peter Tyser <ptyser@xes-inc.com>
9593 Date:   Fri Mar 13 18:54:45 2009 -0500
9594
9595     tools/Makefile: Remove symlinks for fdt targets
9596
9597     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9598
9599 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
9600 Author: Peter Tyser <ptyser@xes-inc.com>
9601 Date:   Fri Mar 13 18:54:44 2009 -0500
9602
9603     tools/Makefile: Add libfdt/ to the include search path
9604
9605     This change makes the process of symlinking libfdt_internal.h
9606     unnecessary
9607
9608     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9609
9610 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
9611 Author: Peter Tyser <ptyser@xes-inc.com>
9612 Date:   Fri Mar 13 18:54:43 2009 -0500
9613
9614     tools: Remove unecessary symlinking of zlib.h
9615
9616     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
9617     was previously necessary to give U-Boot's version of zlib.h precedence
9618     over the host computer's version of zlib.h.
9619
9620     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9621
9622 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
9623 Author: Peter Tyser <ptyser@xes-inc.com>
9624 Date:   Fri Mar 13 18:54:42 2009 -0500
9625
9626     tools/Makefile: Add tools/ to the include search path
9627
9628     This change makes the process of symlinking mkimage.h and fdt_host.h
9629     unnecessary
9630
9631     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9632
9633 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
9634 Author: Peter Tyser <ptyser@xes-inc.com>
9635 Date:   Fri Mar 13 18:54:41 2009 -0500
9636
9637     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
9638
9639     Also conditionally add ncb.o to OBJ_FILES list
9640
9641     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9642
9643 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
9644 Author: Peter Tyser <ptyser@xes-inc.com>
9645 Date:   Fri Mar 13 18:54:40 2009 -0500
9646
9647     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
9648
9649     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9650
9651 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
9652 Author: Peter Tyser <ptyser@xes-inc.com>
9653 Date:   Fri Mar 13 18:54:39 2009 -0500
9654
9655     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
9656
9657     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9658
9659 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
9660 Author: Peter Tyser <ptyser@xes-inc.com>
9661 Date:   Fri Mar 13 18:54:38 2009 -0500
9662
9663     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
9664
9665     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9666
9667 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
9668 Author: Peter Tyser <ptyser@xes-inc.com>
9669 Date:   Fri Mar 13 18:54:37 2009 -0500
9670
9671     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
9672
9673     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9674
9675 commit eeba8617908e33f7e7db3b1588c04ca65b856793
9676 Author: Peter Tyser <ptyser@xes-inc.com>
9677 Date:   Fri Mar 13 18:54:36 2009 -0500
9678
9679     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
9680
9681     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9682
9683 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
9684 Author: Peter Tyser <ptyser@xes-inc.com>
9685 Date:   Fri Mar 13 18:54:35 2009 -0500
9686
9687     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
9688
9689     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9690
9691 commit ee3584a5970230ee96aae19505ad3226734ee4ff
9692 Author: Peter Tyser <ptyser@xes-inc.com>
9693 Date:   Fri Mar 13 18:54:34 2009 -0500
9694
9695     tools/Makefile: Split variable declarations into multiple lines
9696
9697     Split variable declarations into multiple lines and use the standard
9698     VAR-y convention.  Also move object and binary variable declarations to
9699     after config.mk has been included to allow for these lists to utilize
9700     the CONFIG_XXX variables.
9701
9702     These changes lay the groundwork for conditional compilation of files
9703     in the tools directory.
9704
9705     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9706
9707 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
9708 Author: Peter Tyser <ptyser@xes-inc.com>
9709 Date:   Fri Mar 13 18:54:33 2009 -0500
9710
9711     tools/Makefile: Remove inappropriate double-tabs
9712
9713     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9714
9715 commit 652f4ba076689fd0acd447561a777b1c440a4b57
9716 Author: Peter Tyser <ptyser@xes-inc.com>
9717 Date:   Fri Mar 13 18:54:32 2009 -0500
9718
9719     tools/Makefile: Remove HOSTARCH HOSTOS defines
9720
9721     The values of HOSTARCH and HOSTOS which are exported from the top-level
9722     Makefile should be used
9723
9724     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9725
9726 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
9727 Author: Peter Tyser <ptyser@xes-inc.com>
9728 Date:   Fri Mar 13 18:54:31 2009 -0500
9729
9730     gen_eth_addr: Use POSIX rand() and srand()
9731
9732     Replace random()/srandom() use with rand()/srand() to support
9733     compilation with the mingw toolchain.  The rand()/srand() functions are
9734     generally more common and are functionally equivalent to the original
9735     random()/srandom() calls.
9736
9737     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9738
9739 commit 24d2ae5e9debe4b75151a55251031a14477fa875
9740 Author: Peter Tyser <ptyser@xes-inc.com>
9741 Date:   Fri Mar 13 18:54:28 2009 -0500
9742
9743     elf.h: Use stdint.h to provide standard typedefs for WIN32
9744
9745     The original code provided an incomplete set of typedefs for WIN32
9746     compiles and replicated the standard typedefs that are already
9747     provided by stdint.h
9748
9749     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9750
9751 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
9752 Author: Peter Tyser <ptyser@xes-inc.com>
9753 Date:   Fri Mar 13 18:54:27 2009 -0500
9754
9755     common/Makefile: Conditionally compile env_embedded.o
9756
9757     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9758
9759 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
9760 Author: Peter Tyser <ptyser@xes-inc.com>
9761 Date:   Fri Mar 13 18:54:26 2009 -0500
9762
9763     Makefile: Add removal of *.exe files to clean target
9764
9765     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9766
9767 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
9768 Author: Peter Tyser <ptyser@xes-inc.com>
9769 Date:   Fri Mar 13 18:54:25 2009 -0500
9770
9771     Makefile: Make autoconf.mk a dependency of the depend target
9772
9773     The original code did not generate autoconf.mk until after some targets
9774     dependencies had already been calculated, for example the directories in
9775     the SUBDIRS variable
9776
9777     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9778
9779 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
9780 Author: unsik Kim <donari75@gmail.com>
9781 Date:   Wed Feb 25 11:31:24 2009 +0900
9782
9783     mflash: Initial mflash support
9784
9785     Mflash is fusion memory device mainly targeted consumer eletronic and
9786     mobile phone.
9787     Internally, it have nand flash and other hardware logics and supports
9788     some different operation (ATA, IO, XIP) modes.
9789
9790     IO mode is custom mode for the host that doesn't have IDE interface.
9791     (Many mobile targeted SoC doesn't have IDE bus)
9792
9793     This driver support mflash IO mode.
9794
9795     Followings are brief descriptions about IO mode.
9796
9797     1. IO mode based on ATA protocol and uses some custom command. (read
9798        confirm, write confirm)
9799     2. IO mode uses SRAM bus interface.
9800
9801     Signed-off-by: unsik Kim <donari75@gmail.com>
9802
9803 commit 200779e3e2a9aeda7030b171a8c39d7797019917
9804 Author: Detlev Zundel <dzu@denx.de>
9805 Date:   Fri Apr 3 11:53:01 2009 +0200
9806
9807     Rename common ns16550 constants with UART_ prefix to prevent conflicts
9808
9809     Fix problems introduced in commit
9810     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
9811     diagnosis functions for inka4x0] which redefined MSR_RI which is
9812     already used on PowerPC systems.
9813
9814     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
9815     be needed for other redundant occurrences though.
9816
9817     Signed-off-by: Detlev Zundel <dzu@denx.de>
9818
9819 commit 99067b08f4a0ce20ff337a35211239f334d8f451
9820 Author: Scott Wood <scottwood@freescale.com>
9821 Date:   Wed Apr 1 15:33:24 2009 -0500
9822
9823     Noisily disable the legacy NAND subsystem.
9824
9825     Legacy NAND is marked for feature removal after April 2009 (i.e. this
9826     upcoming release).  There are still several boards that reference it
9827     (though many do so only for disk-on-chip support which has been silently
9828     disabled for a while now).  These boards will now fail to build
9829     with #error, though the code is still there if the user removes #error.
9830
9831     The plan is to remove the code outright in the next release, along with
9832     any board code that refers to it (such as board/esd/common/auto_update.c).
9833
9834     Also, remove the legacy NAND API description from README.nand.
9835
9836     Signed-off-by: Scott Wood <scottwood@freescale.com>
9837
9838 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
9839 Author: apgmoorthy <moorthy.apg@samsung.com>
9840 Date:   Fri Mar 27 14:45:23 2009 +0530
9841
9842     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
9843
9844     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
9845     However, u-boot image for apollon board is 195KB making the board
9846     unbootable with OneNAND.
9847
9848     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
9849     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
9850
9851     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
9852     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
9853     Signed-off-by: Scott Wood <scottwood@freescale.com>
9854
9855 commit 74de7aefd79690bae8cf5a5120f5962d444be089
9856 Author: Wolfgang Denk <wd@denx.de>
9857 Date:   Wed Apr 1 23:34:12 2009 +0200
9858
9859     Add "source" command; prepare removal of "autoscr" command
9860
9861     According to the doc/feature-removal-schedule.txt, the "autoscr"
9862     command will be replaced by the "source" command in approximately 6
9863     months from now.
9864
9865     This patch prepares this change and starts a 6 month transition
9866     period as follows:
9867
9868     - The new "source" command has been added, which implements exactly
9869       the same functionlaity as the old "autoscr" command before
9870     - The old "autoscr" command name is kept as an alias for compatibility
9871     - Command sequences, script files atc. have been adapted to use the
9872       new "source" command
9873     - Related environment variables ("autoscript", "autoscript_uname")
9874       have *not* been adapted yet; these will be renamed resp. removed in
9875       a separate patch when the support for the "autoscr" command get's
9876       finally dropped.
9877
9878     Signed-off-by: Wolfgang Denk <wd@denx.de>
9879
9880 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
9881 Author: Wolfgang Denk <wd@denx.de>
9882 Date:   Thu Apr 2 17:31:09 2009 +0200
9883
9884     Add "GPL cleanup" task to feature-removal-schedule.txt
9885
9886     Announce removal of all non-GPL or GPL-incompatible files
9887     after August 2009.
9888
9889     Signed-off-by: Wolfgang Denk <wd@denx.de>
9890
9891 commit d9596ffbdc79cea285010b67dd20a4618303f624
9892 Author: Mike Frysinger <vapier@gentoo.org>
9893 Date:   Thu Apr 2 12:51:28 2009 -0400
9894
9895     sf: stmicro: dont send 4 bytes when reading status register
9896
9897     I can't find anywhere in the datasheet that says the status register needs
9898     3 dummy bytes sent to it before being able to read back the first real
9899     result.  Tests on a Blackfin board show that after writing the opcode, the
9900     status register starts coming back immediately.  So only write out the
9901     read status register opcode before polling the result.
9902
9903     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9904     CC: Jason McMullan <mcmullan@netapp.com>
9905     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9906
9907 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
9908 Author: Mike Frysinger <vapier@gentoo.org>
9909 Date:   Thu Apr 2 08:11:31 2009 -0400
9910
9911     sf: set common timeouts in seconds, not milliseconds
9912
9913     Since timeouts are only hit when there is a problem in the system, we
9914     don't want to prematurely timeout on a functioning setup.  Thus having
9915     low timeouts (in milliseconds) doesn't gain us anything in the production
9916     case, but rather increases likely hood of causing problems where none
9917     otherwise exist.
9918
9919     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9920     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9921
9922 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
9923 Author: Mike Frysinger <vapier@gentoo.org>
9924 Date:   Thu Apr 2 06:51:49 2009 -0400
9925
9926     sf: stmicro: use common page timeout define
9927
9928     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9929     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9930
9931 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
9932 Author: Mike Frysinger <vapier@gentoo.org>
9933 Date:   Sat Mar 28 06:41:09 2009 -0400
9934
9935     sf: always read 5 bytes for the idcode
9936
9937     Some SPI flash drivers like to have extended id information available
9938     (like the spansion flash), so rather than making it re-issue the ID cmd
9939     to get at the last 2 bytes, have the common code read 5 bytes rather than
9940     just 3.  This also matches the Linux behavior where it always reads 5 id
9941     bytes from all flashes.
9942
9943     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9944     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9945     CC: Mingkai Hu <Mingkai.hu@freescale.com>
9946
9947 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
9948 Author: Mike Frysinger <vapier@gentoo.org>
9949 Date:   Fri Mar 27 16:34:21 2009 -0400
9950
9951     sf: stmicro: drop redundant id read
9952
9953     The common SPI flash code reads the idcode and passes it down to the SPI
9954     flash driver, so there is no need to read it again ourselves.
9955
9956     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9957     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9958     CC: Jason McMullan <mcmullan@netapp.com>
9959     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9960
9961 commit 1c5874374e091b4bb62917c519861f7682fe066e
9962 Author: Mike Frysinger <vapier@gentoo.org>
9963 Date:   Fri Mar 27 19:27:58 2009 -0400
9964
9965     sf: add driver for SST flashes
9966
9967     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9968     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9969
9970 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
9971 Author: Mike Frysinger <vapier@gentoo.org>
9972 Date:   Mon Mar 23 23:03:58 2009 -0400
9973
9974     sf: drop DEBUG defines
9975
9976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9977     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9978
9979 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
9980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9981 Date:   Sun Jan 4 07:44:07 2009 +0100
9982
9983     mtd: add some at45 spi flash support
9984
9985      - AT45DB321D
9986      - AT45DB161D
9987      - AT45DB081D
9988      - AT45DB041D
9989      - AT45DB021D
9990      - AT45DB011D
9991
9992     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9993     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9994
9995 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
9996 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9997 Date:   Tue Mar 31 14:09:41 2009 +0800
9998
9999     mtd: SPI Flash: Support the Spansion Flash
10000
10001     Add MTD SPI Flash support for S25FL008A, S25FL016A,
10002     S25FL032A, S25FL064A, S25FL128P.
10003
10004     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10005     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10006
10007 commit 40587701924aa0afc86b3840421b4cc6de42c748
10008 Author: Mike Frysinger <vapier@gentoo.org>
10009 Date:   Mon Mar 30 20:56:45 2009 -0400
10010
10011     Blackfin: force all boards to HZ of 1000
10012
10013     Since the Blackfin timer code requires HZ to be 1000, barf on any board
10014     that tries to use a different value.
10015
10016     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10017
10018 commit f4032d2eec9d71a59c6c724671e577f67a76839b
10019 Author: Mike Frysinger <vapier@gentoo.org>
10020 Date:   Fri Mar 27 21:07:45 2009 -0400
10021
10022     Blackfin: bf533-stamp: drop old spi flash driver
10023
10024     Now that the common SPI flash code supports all the flashes, we can stop
10025     using the old driver.
10026
10027     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10028
10029 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
10030 Author: Mike Frysinger <vapier@gentoo.org>
10031 Date:   Thu Mar 26 15:42:12 2009 -0400
10032
10033     Blackfin: add BF538/BF539 SPI portmux handling
10034
10035     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10036
10037 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
10038 Author: Mike Frysinger <vapier@gentoo.org>
10039 Date:   Mon Mar 23 22:36:10 2009 -0400
10040
10041     Blackfin: do not delay on output bytes
10042
10043     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10044
10045 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
10046 Author: Mike Frysinger <vapier@gentoo.org>
10047 Date:   Mon Mar 23 22:17:27 2009 -0400
10048
10049     Blackfin: drop newline from OTP help
10050
10051     Looks like I accidentally added a newline to the OTP help when merging and
10052     older change.
10053
10054     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10055
10056 commit d3c38d96b991d641a33f7748130dae008563cdc9
10057 Author: Mike Frysinger <vapier@gentoo.org>
10058 Date:   Sun Mar 22 23:43:31 2009 -0400
10059
10060     Blackfin: convert bfin_sdh to legacy mmc
10061
10062     The Blackfin SDH controller is still using the legacy framework, so update
10063     the driver to use the renamed functions.
10064
10065     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10066
10067 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
10068 Author: Mike Frysinger <vapier@gentoo.org>
10069 Date:   Sun Feb 22 16:30:38 2009 -0500
10070
10071     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
10072
10073     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10074
10075 commit ad9073211ca9e62162a39851e082b8d07a662fb6
10076 Author: Mike Frysinger <vapier@gentoo.org>
10077 Date:   Fri Feb 13 17:10:58 2009 -0500
10078
10079     Blackfin: fix crash when booting from external memory
10080
10081     When testing a u-boot binary that hasn't been booted from the bootrom, we
10082     have to make sure the bootstruct structure has sane storage space.  If we
10083     don't, the initcode will crash when it tries to dereference an invalid
10084     pointer.
10085
10086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10087
10088 commit 84a9dda324c3faa56be14449d7519b993d9397a9
10089 Author: Mike Frysinger <vapier@gentoo.org>
10090 Date:   Sun Oct 12 21:32:52 2008 -0400
10091
10092     Blackfin: bf518f-ezbrd: new board port
10093
10094     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10095
10096 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
10097 Author: Mike Frysinger <vapier@gentoo.org>
10098 Date:   Sun Oct 12 21:30:48 2008 -0400
10099
10100     Blackfin: bf526-ezbrd: new board port
10101
10102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10103
10104 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
10105 Author: Mike Frysinger <vapier@gentoo.org>
10106 Date:   Sun Oct 12 21:25:33 2008 -0400
10107
10108     Blackfin: bf538f-ezkit: new board port
10109
10110     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10111
10112 commit d9a5d113b93583c984711127ab8503e136ed1e4a
10113 Author: Mike Frysinger <vapier@gentoo.org>
10114 Date:   Sun Oct 12 20:59:12 2008 -0400
10115
10116     Blackfin: bf527-ezkit: new board port
10117
10118     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10119
10120 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
10121 Author: Mike Frysinger <vapier@gentoo.org>
10122 Date:   Sun Oct 12 05:05:42 2008 -0400
10123
10124     Blackfin: bf548-ezkit: new board port
10125
10126     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10127
10128 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
10129 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
10130 Date:   Tue Mar 3 14:23:59 2009 +0100
10131
10132     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
10133
10134     Allow the inclusion of libfdt.h in C++ source.
10135
10136     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
10137     Acked-by: David Gibson <david@gibson.dropbear.id.au>
10138
10139 commit 13d93f38e86818739317b0206d597265cf9e675e
10140 Author: Emil Medve <Emilian.Medve@Freescale.com>
10141 Date:   Mon Feb 23 10:43:36 2009 -0600
10142
10143     Fix a possible overflow case detected by gcc 4.3.2
10144
10145     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
10146     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
10147
10148     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
10149
10150 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
10151 Author: David Gibson <david@gibson.dropbear.id.au>
10152 Date:   Fri Feb 6 14:03:24 2009 +1100
10153
10154     libfdt: Rework/cleanup fdt_next_tag()
10155
10156     Currently, callers of fdt_next_tag() must usually follow the call with
10157     some sort of call to fdt_offset_ptr() to verify that the blob isn't
10158     truncated in the middle of the tag data they're going to process.
10159     This is a bit silly, since fdt_next_tag() generally has to call
10160     fdt_offset_ptr() on at least some of the data following the tag for
10161     its own operation.
10162
10163     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
10164     verify the data between its starting offset and the offset it returns
10165     in nextoffset.  This simplifies fdt_get_property() which no longer has
10166     to verify itself that the property data is all present.
10167
10168     At the same time, I neaten and clarify the error handling for
10169     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
10170     a tag value in some circumstances - which almost none of the callers
10171     checked for.  Also, fdt_next_tag() could return FDT_END either because
10172     it encountered an FDT_END tag, or because it reached the end of the
10173     structure block - no way was provided to tell between these cases.
10174
10175     With this patch, fdt_next_tag() always returns FDT_END with a negative
10176     value in nextoffset for an error.  This means the several places which
10177     loop looking for FDT_END will still work correctly - they only need to
10178     check for errors at the end.  The errors which fdt_next_tag() can
10179     report are:
10180         - -FDT_ERR_TRUNCATED if it reached the end of the structure
10181            block instead of finding a tag.
10182
10183         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
10184                tag data couldn't be verified with fdt_offset_ptr().
10185
10186     This patch also updates the callers of fdt_next_tag(), where
10187     appropriate, to make use of the new error reporting.
10188
10189     Finally, the prototype for the long gone _fdt_next_tag() is removed
10190     from libfdt_internal.h.
10191
10192     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10193
10194 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
10195 Author: David Gibson <david@gibson.dropbear.id.au>
10196 Date:   Fri Feb 6 14:01:56 2009 +1100
10197
10198     libfdt: Rework fdt_next_node()
10199
10200     Currently fdt_next_node() will find the next node in the blob
10201     regardless of whether it is above, below or at the same level in the
10202     tree as the starting node - the depth parameter is updated to indicate
10203     which is the case.  When a depth parameter is supplied, this patch
10204     makes it instead terminate immediately when it finds the END_NODE tag
10205     for a node at depth 0.  In this case it returns the offset immediately
10206     past the END_NODE tag.
10207
10208     This has a couple of advantages.  First, this slightly simplifies
10209     fdt_subnode_offset(), which no longer needs to explicitly check that
10210     fdt_next_node()'s iteration hasn't left the starting node.  Second,
10211     this allows fdt_next_node() to be used to implement
10212     _fdt_node_end_offset() considerably simplifying the latter function.
10213
10214     The other users of fdt_next_node() either don't need to iterate out of
10215     the starting node, or don't pass a depth parameter at all.  Any
10216     callers that really need to iterate out of the starting node, but keep
10217     tracking depth can do so by biasing the initial depth value.
10218
10219     This is a semantic change, but I think it's very unlikely to break any
10220     existing library users.
10221
10222     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10223
10224 commit c123098035be8bae3859bbfbd06861f197c07631
10225 Author: Scott Wood <scottwood@freescale.com>
10226 Date:   Tue Mar 31 17:49:36 2009 -0500
10227
10228     mpc83xx: Set guarded bit on BAT that covers the end of the address space
10229
10230     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
10231     address space; however, not all of this space is covered by a device.  In
10232     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
10233     at the far end of the address space.
10234
10235     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
10236     some circumstances, this leads to the CPU speculatively loading from
10237     0xfffffff8 if p is NULL.  This leads to a machine check.
10238
10239     Signed-off-by: Scott Wood <scottwood@freescale.com>
10240
10241     continuation to the remaining mpc83xx boards that suffer from the same problem.
10242
10243     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10244
10245 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
10246 Author: Kim Phillips <kim.phillips@freescale.com>
10247 Date:   Mon Mar 30 14:28:05 2009 -0500
10248
10249     rtc: remove broken rtc_read and rtc_write declarations
10250
10251     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
10252     EPSON)" introduces the following build error on boards configuring e.g,
10253     the ds1374 rtc:
10254
10255     Configuring for MPC837XEMDS board...
10256     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
10257     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
10258     ds1374.c:104: error: conflicting types for 'rtc_write'
10259     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
10260
10261     this reverts the erroneous chunk.
10262
10263     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10264     Acked-by: Detlev Zundel <dzu@denx.de>
10265     CC: Detlev Zundel <dzu@denx.de>
10266     CC: Andreas Pfefferle <ap@denx.de>
10267
10268 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
10269 Author: Kumar Gala <galak@kernel.crashing.org>
10270 Date:   Tue Mar 31 17:58:13 2009 -0500
10271
10272     85xx/86xx: Ensure MP boot page is not used
10273
10274     We had a bug on 86xx in which the boot page used to bring up secondary
10275     cores was being overwritten and used for the malloc region in u-boot.
10276
10277     We need to reserve the region of memory that the boot page is going to
10278     be put at so nothing uses it.
10279
10280     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10281     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
10282
10283 commit c840d26c752141b94bbc24ac748ddd45752a955a
10284 Author: Kumar Gala <galak@kernel.crashing.org>
10285 Date:   Tue Mar 31 23:11:05 2009 -0500
10286
10287     85xx: Introduce determine_mp_bootpg() helper.
10288
10289     Match determine_mp_bootpg() that was added for 86xx.  We need this to
10290     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
10291     make sure to reserve the region of memory used for the MP bootpg() so
10292     other u-boot code doesn't use it.
10293
10294     Also added a comment about how cpu_reset() is dealing w/an errata on
10295     early 85xx MP HW.
10296
10297     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10298
10299 commit 7649a590b53ee548f41428bf20780f74ce9fc099
10300 Author: Kumar Gala <galak@kernel.crashing.org>
10301 Date:   Tue Mar 31 23:02:38 2009 -0500
10302
10303     86xx: Cleanup MP support
10304
10305     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
10306     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
10307       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
10308       to reserve the region of memory used for the MP bootpg() so other
10309       u-boot code doesn't use it.
10310     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
10311       allow cmd_mp.c to build and work. In the future we should look at
10312       implementing all these functions. This could be common w/85xx if we
10313       use spin tables on 86xx.
10314
10315     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10316
10317 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
10318 Author: Becky Bruce <beckyb@kernel.crashing.org>
10319 Date:   Tue Mar 31 18:38:37 2009 -0500
10320
10321     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
10322
10323     We're missing the board_lmb_reserve definitions that allow
10324     cpu_mp_lmb_reserve to be called; this means that Linux
10325     is free to reallocate reserved pages.  Linux currently boots
10326     because we're getting lucky - the page we've reserved is
10327     high enough in memory that it isn't allocated by Linux
10328     while we still need it to be in existence.
10329
10330     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10331     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10332
10333 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
10334 Author: Ladislav Michl <ladis@linux-mips.org>
10335 Date:   Tue Mar 31 13:43:10 2009 +0200
10336
10337     NetStar: fix NAND
10338
10339     Fix NAND support broken during new NAND code merge. Move those few lines of
10340     code to board/netstar/netstar.c
10341
10342     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10343
10344 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
10345 Author: Jens Scharsig <esw@bus-elektronik.de>
10346 Date:   Tue Mar 31 08:18:29 2009 +0200
10347
10348     soft_i2c.c compiler/linker error
10349
10350     This patch fix the compiler/linker errors
10351
10352     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
10353     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
10354
10355     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
10356     uesd/undef (wrong define order)
10357
10358     and
10359
10360     removes additional empty lines
10361
10362     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
10363
10364 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
10365 Author: Haiying Wang <Haiying.Wang@freescale.com>
10366 Date:   Fri Mar 27 17:02:45 2009 -0400
10367
10368     MPC85xx: Add MPC8569MDS board support
10369
10370     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
10371     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
10372
10373     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10374     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
10375     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10376
10377 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
10378 Author: Haiying Wang <Haiying.Wang@freescale.com>
10379 Date:   Fri Mar 27 17:02:44 2009 -0400
10380
10381     MPC85xx: Add MPC8569 CPU support
10382
10383     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
10384     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
10385     then invalidate it after LBCR bit 13 is set.
10386
10387     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10389
10390 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
10391 Author: Haiying Wang <Haiying.Wang@freescale.com>
10392 Date:   Thu Mar 26 17:01:49 2009 -0400
10393
10394     MPC85xx: Load and enable QE microcode patch in IRAM
10395
10396     For the silicon which doesn't have ROM support in QE, it always needs to load
10397     a pre-built ucode binary to IRAM so that QE can work.
10398
10399     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10400     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
10401
10402 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
10403 Author: Kumar Gala <galak@kernel.crashing.org>
10404 Date:   Thu Mar 19 09:16:10 2009 -0500
10405
10406     85xx: Add support for additional e500mc features
10407
10408     * Enable backside L2
10409     * e500mc no longer has timebase enable in HID (moved to CCSR register)
10410
10411     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10412
10413 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
10414 Author: Dave Liu <daveliu@freescale.com>
10415 Date:   Sat Mar 14 12:48:30 2009 +0800
10416
10417     fsl-ddr: add the DDR3 SPD infrastructure
10418
10419     - support mirrored DIMMs, not support register DIMMs
10420     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
10421     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
10422
10423     Signed-off-by: Dave Liu <daveliu@freescale.com>
10424     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
10425
10426 commit 6a8197836702991468cead5ead073f589e2623ad
10427 Author: Dave Liu <daveliu@freescale.com>
10428 Date:   Sat Mar 14 12:48:19 2009 +0800
10429
10430     fsl-ddr: Fix two bugs in the ddr infrastructure
10431
10432     1. wr_lat
10433        UM said the total write latency for DDR2 is equal to
10434        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
10435        so, the WR_LAT = CL - 1;
10436     2. rd_to_pre
10437        we missed to add the ADD_LAT for DDR2 case.
10438
10439     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10440     Signed-off-by: Dave Liu <daveliu@freescale.com>
10441
10442 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
10443 Author: Kumar Gala <galak@kernel.crashing.org>
10444 Date:   Thu Mar 26 01:34:39 2009 -0500
10445
10446     83xx: Use common LSDMR defines from asm/fsl_lbc.h
10447
10448     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10449     Acked-by: Kim Phillips <kim.phillips@freescale.com>
10450
10451 commit b0fe93eda69721aef1fdef576164b668fad83bbd
10452 Author: Kumar Gala <galak@kernel.crashing.org>
10453 Date:   Thu Mar 26 01:34:38 2009 -0500
10454
10455     85xx: Use common LSDMR defines from asm/fsl_lbc.h
10456
10457     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10458
10459 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
10460 Author: Kumar Gala <galak@kernel.crashing.org>
10461 Date:   Thu Mar 26 01:34:37 2009 -0500
10462
10463     Add LSDMR (SDRAM Mode Register) definition on localbus
10464
10465     The masks for various bit defines of LSDMR are common and thus we can
10466     define them in one place rather than replicating them in each config.h
10467
10468     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10469
10470 commit 89c00fb15859213788f0ad089934c376fb356099
10471 Author: Ladislav Michl <ladis@linux-mips.org>
10472 Date:   Mon Mar 30 18:58:41 2009 +0200
10473
10474     OMAP: use {read,write}l to access timer registers
10475
10476     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10477
10478 commit 81472d893fa565c9d300928a40e504a689bde131
10479 Author: Ladislav Michl <ladis@linux-mips.org>
10480 Date:   Mon Mar 30 18:58:41 2009 +0200
10481
10482     OMAP: rename timer divisor
10483
10484     Divisor field is called PTV not PVT.
10485
10486     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10487     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10488
10489 commit fe672d60b2a8c9e803596ba4533fa1776015551d
10490 Author: Ladislav Michl <ladis@linux-mips.org>
10491 Date:   Mon Mar 30 18:58:40 2009 +0200
10492
10493     OMAP: reindent timer code
10494
10495     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10496
10497 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
10498 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10499 Date:   Mon Mar 30 18:58:40 2009 +0200
10500
10501     s3c2410: move nand driver to drivers/mtd/nand
10502
10503     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10504
10505 commit d3b635774194404bcd424f6b376419bce22076ad
10506 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10507 Date:   Mon Mar 30 18:58:40 2009 +0200
10508
10509     s3c24x0: move i2c driver to drivers/i2c
10510
10511     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10512
10513 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
10514 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10515 Date:   Mon Mar 30 18:58:39 2009 +0200
10516
10517     s3c24x0: move serial driver to drivers/serial
10518
10519     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10520
10521 commit 942ba9969b9efa25f816c238861ecb339c54ed73
10522 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10523 Date:   Mon Mar 30 18:58:39 2009 +0200
10524
10525     davinci: move i2c driver to drivers/i2c
10526
10527     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10528
10529 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
10530 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10531 Date:   Mon Mar 30 18:58:39 2009 +0200
10532
10533     davinci: move nand driver to drivers/mtd/nand
10534
10535     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10536
10537 commit d3e55d0774a180c1837bd7ddec464015e883bd86
10538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10539 Date:   Mon Mar 30 18:58:38 2009 +0200
10540
10541     imx: move serial driver to drivers/serial
10542
10543     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10544
10545 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
10546 Author: Detlev Zundel <dzu@denx.de>
10547 Date:   Mon Mar 30 00:31:36 2009 +0200
10548
10549     inka4x0: Use proper accessor macros for memory mapped registers.
10550
10551     Signed-off-by: Detlev Zundel <dzu@denx.de>
10552
10553 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
10554 Author: Detlev Zundel <dzu@denx.de>
10555 Date:   Mon Mar 30 00:31:35 2009 +0200
10556
10557     inka4x0: Add hardware diagnosis and RTC in configuration.
10558
10559     This patch adds the board specific communication routines needed by
10560     the external 4543 RTC.
10561
10562     Signed-off-by: Detlev Zundel <dzu@denx.de>
10563     Signed-off-by: Andreas Pfefferle <ap@denx.de>
10564
10565 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
10566 Author: Detlev Zundel <dzu@denx.de>
10567 Date:   Mon Mar 30 00:31:34 2009 +0200
10568
10569     inka4x0: Add hardware diagnosis functions for inka4x0
10570
10571     This patch adds advanced diagnosis functions for the inka4x0 board.
10572
10573     Signed-off-by: Andreas Pfefferle <ap@denx.de>
10574     Signed-off-by: Detlev Zundel <dzu@denx.de>
10575
10576 commit 04e11cf383ff6231535fd981023bb1306b2133d4
10577 Author: Detlev Zundel <dzu@denx.de>
10578 Date:   Mon Mar 30 00:31:33 2009 +0200
10579
10580     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
10581
10582     Signed-off-by: Detlev Zundel <dzu@denx.de>
10583     Signed-off-by: Andreas Pfefferle <ap@denx.de>
10584
10585 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
10586 Author: Detlev Zundel <dzu@denx.de>
10587 Date:   Mon Mar 30 00:31:32 2009 +0200
10588
10589     drivers/twserial: Add protocol driver for "three wire serial" interface.
10590
10591     This pretty unintelligent interface is used on some RTC chips.
10592
10593     Signed-off-by: Detlev Zundel <dzu@denx.de>
10594
10595 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
10596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10597 Date:   Sun Mar 29 23:01:42 2009 +0200
10598
10599     arm720t/clps7111: move serial driver to drivers/serial
10600
10601     add CONFIG_CLPS7111_SERIAL to activate the driver
10602
10603     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10604
10605 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
10606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10607 Date:   Sun Mar 29 23:01:42 2009 +0200
10608
10609     lpc2292: move serial driver to drivers/serial
10610
10611     add CONFIG_LPC2292_SERIAL to activate the driver
10612
10613     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10614
10615 commit 176a600d0ecdaccbac483d2ba992d0119f853119
10616 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10617 Date:   Sun Mar 29 23:01:42 2009 +0200
10618
10619     ks8695: move serial driver to drivers/serial
10620
10621     add CONFIG_KS8695_SERIAL to activate the driver
10622
10623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10624
10625 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
10626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10627 Date:   Sun Mar 29 23:01:42 2009 +0200
10628
10629     s3c64xx: move usb driver to drivers/usb
10630
10631     add CONFIG_USB_S3C64XX to activate the driver
10632
10633     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10634
10635 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
10636 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10637 Date:   Sun Mar 29 23:01:41 2009 +0200
10638
10639     imx31: move serial driver to drivers/serial
10640
10641     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10642
10643 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
10644 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10645 Date:   Sun Mar 29 23:01:41 2009 +0200
10646
10647     netarm: move serial driver to drivers/serial
10648
10649     add CONFIG_NETARM_SERIAL to activate the driver
10650
10651     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10652
10653 commit 412ab705888742add435dd6ffc2e8bda14962235
10654 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10655 Date:   Sun Mar 29 23:01:41 2009 +0200
10656
10657     sa1100: move serial driver to drivers/serial
10658
10659     add CONFIG_SA1100_SERIAL to activate the driver
10660
10661     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10662
10663 commit b2368754a9202225fd072e159fb78da7d2cdb623
10664 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10665 Date:   Sun Mar 29 23:01:41 2009 +0200
10666
10667     s3c44b0: extract cache from cpu.c
10668
10669     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10670
10671 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
10672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10673 Date:   Sun Mar 29 23:01:41 2009 +0200
10674
10675     s3c44b0: move serial driver to drivers/serial
10676
10677     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10678
10679 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
10680 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10681 Date:   Sun Mar 29 23:01:40 2009 +0200
10682
10683     s3c44b0: move rtc driver to drivers/rtc
10684
10685     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10686
10687 commit 50f601cca8985615f9e3de4c34887448ade8a64b
10688 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10689 Date:   Sun Mar 29 23:01:40 2009 +0200
10690
10691     s3c44b0: move i2c driver to drivers/i2c
10692
10693     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10694
10695 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
10696 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10697 Date:   Sun Mar 29 23:01:36 2009 +0200
10698
10699     s3c4510b: move specific code to soc directory
10700
10701     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10702
10703 commit 04531f3c11c693dc54924f82c41979d960309c9d
10704 Author: Ladislav Michl <ladis@linux-mips.org>
10705 Date:   Wed Mar 25 23:43:58 2009 +0100
10706
10707     NetStar: add RTC support
10708
10709     Add RTC support.
10710
10711     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10712
10713 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
10714 Author: Ladislav Michl <ladis@linux-mips.org>
10715 Date:   Wed Mar 25 23:43:50 2009 +0100
10716
10717     NetStar: use generic flash driver
10718
10719     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10720
10721 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
10722 Author: Ladislav Michl <ladis@linux-mips.org>
10723 Date:   Mon Mar 16 23:31:20 2009 +0100
10724
10725     NetStar: update crcit utility
10726
10727     Make crc32 function to match its prototype. Use more meaningful identifiers.
10728
10729     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10730
10731 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
10732 Author: Ladislav Michl <ladis@linux-mips.org>
10733 Date:   Mon Mar 23 17:46:27 2009 +0100
10734
10735     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
10736
10737     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10738
10739 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
10740 Author: Wolfgang Denk <wd@denx.de>
10741 Date:   Sun Mar 29 00:58:16 2009 +0100
10742
10743     VCMA9: fix compile errors
10744
10745     Fix these:
10746     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
10747     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
10748
10749     Signed-off-by: Wolfgang Denk <wd@denx.de>
10750
10751 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
10752 Author: Wolfgang Denk <wd@denx.de>
10753 Date:   Sun Mar 29 00:54:21 2009 +0100
10754
10755     ARM: fix warning: 'print_eth' defined but not used
10756
10757     This warning got issued for all ARM systems that don't have
10758     CONFIG_CMD_NET enabled.
10759
10760     Signed-off-by: Wolfgang Denk <wd@denx.de>
10761
10762 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
10763 Author: Ladislav Michl <ladis@linux-mips.org>
10764 Date:   Mon Mar 23 18:16:34 2009 +0100
10765
10766     cs8900 compile fix
10767
10768     cs8900.c: In function 'eth_init':
10769     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
10770     cs8900.c:165: error: invalid operands to binary <<
10771     cs8900.c:166: error: invalid operands to binary <<
10772     cs8900.c:167: error: invalid operands to binary <<
10773
10774     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
10775     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10776
10777 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
10778 Author: Wolfgang Denk <wd@denx.de>
10779 Date:   Sat Mar 28 20:16:16 2009 +0100
10780
10781     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
10782
10783     ...and some other compile warnings.
10784
10785     Signed-off-by: Wolfgang Denk <wd@denx.de>
10786
10787 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
10788 Author: Wolfgang Denk <wd@denx.de>
10789 Date:   Sat Mar 28 16:17:29 2009 +0100
10790
10791     mpc8xx/ether.c: fix warning: unused variable 'bd'
10792
10793     Also minor coding style cleanup.
10794
10795     Signed-off-by: Wolfgang Denk <wd@denx.de>
10796
10797 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
10798 Author: Detlev Zundel <dzu@denx.de>
10799 Date:   Wed Mar 25 17:27:52 2009 +0100
10800
10801     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
10802
10803     Other commands implementing subcommands can reuse this code nicely.
10804
10805     Signed-off-by: Detlev Zundel <dzu@denx.de>
10806     Signed-off-by: Andreas Pfefferle <ap@denx.de>
10807
10808 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
10809 Author: Detlev Zundel <dzu@denx.de>
10810 Date:   Tue Mar 24 18:02:33 2009 +0100
10811
10812     mpc5xxx: Add structure definition for several more register blocks.
10813
10814     Signed-off-by: Detlev Zundel <dzu@denx.de>
10815
10816 commit 739b0e594677a0676577bc95db4495a5563fc7f8
10817 Author: Detlev Zundel <dzu@denx.de>
10818 Date:   Fri Mar 27 15:03:55 2009 +0100
10819
10820     MAINTAINERS: Add entry for 'inka4x0' board.
10821
10822     Signed-off-by: Detlev Zundel <dzu@denx.de>
10823
10824 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
10825 Author: Detlev Zundel <dzu@denx.de>
10826 Date:   Fri Mar 27 15:03:54 2009 +0100
10827
10828     MAINTAINERS: Keep list sorted.
10829
10830     Signed-off-by: Detlev Zundel <dzu@denx.de>
10831
10832 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
10833 Author: Mike Frysinger <vapier@gentoo.org>
10834 Date:   Thu Mar 26 11:17:41 2009 -0400
10835
10836     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
10837
10838     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
10839
10840     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10841     CC: Ben Warren <biggerbadderben@gmail.com>
10842
10843 commit 76756e41cde0a617e781a604cc47dfaef63697cd
10844 Author: Heiko Schocher <hs@denx.de>
10845 Date:   Thu Mar 26 07:33:59 2009 +0100
10846
10847     ppc: cleanup compiler errors/warnings
10848
10849     Current u-boot top of tree builds with warnings/errors for
10850     the following boards:
10851
10852     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
10853     RPXClassic debris PN62
10854
10855     following patch solves this.
10856
10857     Signed-off-by: Heiko Schocher <hs@denx.de>
10858     Acked-by: Mike Frysinger <vapier@gentoo.org>
10859
10860 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
10861 Author: Stefan Roese <sr@denx.de>
10862 Date:   Thu Mar 26 16:14:13 2009 +0100
10863
10864     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
10865
10866     This patch fixes a bug in the Sequoia TLB init code to reconfigure
10867     the correct TLB (boot space) after running from RAM. This bug was
10868     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
10869     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
10870     TLB in the Sequoia init.S file.
10871
10872     Signed-off-by: Stefan Roese <sr@denx.de>
10873
10874 commit e2b66fe453a3679f807b37fc5923d89214302764
10875 Author: Wolfgang Denk <wd@denx.de>
10876 Date:   Thu Mar 26 10:00:57 2009 +0100
10877
10878     ads5121: enable instruction cache
10879
10880     Enabling the instruction cache significantly accelerates U-Boot
10881     operations like CRC checking, image uncompression, etc.
10882
10883     Kudos to Andrea Scian for pointing out.
10884
10885     Signed-off-by: Wolfgang Denk <wd@denx.de>
10886
10887 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
10888 Author: Jon Smirl <jonsmirl@gmail.com>
10889 Date:   Sun Mar 22 22:55:45 2009 -0400
10890
10891     mpc5200: suppress printf until console initialized
10892
10893     On boards which have the environment in eeprom, i2c_init() is called
10894     before the console and RAM are initialized.
10895     Suppress printfs until the console is initialized.
10896
10897     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
10898     Acked-by: Heiko Schocher <hs@denx.de>
10899
10900 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
10901 Author: Guennadi Liakhovetski <lg@denx.de>
10902 Date:   Wed Mar 25 11:36:50 2009 +0100
10903
10904     ARM: Add the imx31_phycore_eet board to MAKEALL
10905
10906     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10907
10908 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
10909 Author: Nishanth Menon <nm@ti.com>
10910 Date:   Wed Mar 25 22:13:56 2009 +0100
10911
10912     OMAP3:Beagle: Enable mtdparts
10913
10914     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
10915     provides a flexible way to create and maintain u-boot mtd
10916     partitions. This allows commands such as "nand erase fs"
10917     to work and the user no longer needs to decode the absolute
10918     nand offsets. This patch enables this function for beagleboard
10919
10920     Signed-off-by: Nishanth Menon <nm@ti.com>
10921     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10922
10923 commit 4de1a5daab079ddc8ce1274144700203d692105c
10924 Author: Mike Frysinger <vapier@gentoo.org>
10925 Date:   Sun Feb 22 16:26:35 2009 -0500
10926
10927     Blackfin: bf537-stamp: split post code out into dedicated post.c
10928
10929     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10930
10931 commit 5e8f245743ed14c89e495ba2c027703db9813160
10932 Author: Mike Frysinger <vapier@gentoo.org>
10933 Date:   Sat Oct 11 22:51:56 2008 -0400
10934
10935     Blackfin: add support for S25FL128 parts
10936
10937     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10938
10939 commit bf1e028bf3eab1d702fa0627cade4460688f3913
10940 Author: Mike Frysinger <vapier@gentoo.org>
10941 Date:   Sat Oct 11 22:51:23 2008 -0400
10942
10943     Blackfin: overhaul SPI flash handling to speed things up
10944
10945     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10946
10947 commit efcc08cededa2168b96f12a22a5872340880d334
10948 Author: Mike Frysinger <vapier@gentoo.org>
10949 Date:   Sat Oct 11 22:51:05 2008 -0400
10950
10951     Blackfin: add support for SST SPI flashes
10952
10953     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10954
10955 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
10956 Author: Mike Frysinger <vapier@gentoo.org>
10957 Date:   Sat Oct 11 22:50:10 2008 -0400
10958
10959     Blackfin: add hack for crappy m25p80
10960
10961     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10962
10963 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
10964 Author: Mike Frysinger <vapier@gentoo.org>
10965 Date:   Wed Jan 21 20:47:12 2009 -0500
10966
10967     Blackfin: bf537-stamp: increase monitor size
10968
10969     The new jffs2 code pushed the code size just over the limit, so increase
10970     the limit a bit more.
10971
10972     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10973
10974 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
10975 Author: Mike Frysinger <vapier@gentoo.org>
10976 Date:   Mon Dec 8 16:16:11 2008 -0500
10977
10978     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
10979
10980     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
10981     increase the speed of SCLK to 125MHz rather than 100MHz.
10982
10983     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10984
10985 commit 751e54c3b77311b720b794813cce20546f288ada
10986 Author: Mike Frysinger <vapier@gentoo.org>
10987 Date:   Sat Oct 11 22:44:14 2008 -0400
10988
10989     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
10990
10991     Use the common net eth functions to setup the env/global data with the MAC
10992     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
10993
10994     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10995
10996 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
10997 Author: Mike Frysinger <vapier@gentoo.org>
10998 Date:   Tue Dec 9 13:47:39 2008 -0500
10999
11000     Blackfin: add clkin_hz= to default kernel command line for ADI boards
11001
11002     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11003
11004 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
11005 Author: Mike Frysinger <vapier@gentoo.org>
11006 Date:   Sun Oct 12 23:49:13 2008 -0400
11007
11008     Blackfin: bf533-stamp: bump up default clocks
11009
11010     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
11011     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
11012
11013     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11014
11015 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
11016 Author: Mike Frysinger <vapier@gentoo.org>
11017 Date:   Sat Oct 11 22:40:22 2008 -0400
11018
11019     Blackfin: bf533-stamp: rewrite startup LED notifications
11020
11021     Again, don't clobber pins that we aren't actually using, and use the common
11022     LED framework rather than our own hob-job-but-not-really-working.
11023
11024     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11025
11026 commit cf6f469e2730fc8ab3523808b828be000d6eee77
11027 Author: Mike Frysinger <vapier@gentoo.org>
11028 Date:   Sun Jun 1 09:09:48 2008 -0400
11029
11030     Blackfin: unify common ADI board settings
11031
11032     Rather than duplicate the same ADI settings in every ADI board, create a
11033     common ADI config header and have all ADI boards start using that.  This
11034     will also make merging the ~10 boards I have to forward port a lot easier.
11035
11036     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11037
11038 commit 196c74311f394c6eb08bd9ab07a35671299b9851
11039 Author: Kyungmin Park <kmpark@infradead.org>
11040 Date:   Tue Mar 3 09:05:53 2009 +0900
11041
11042     Reduce OneNAND IPL common code
11043
11044     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
11045     bootloader, but it's common code used about 300~400 bytes. So board
11046     specific codes, such as lowlevel_init, can't has enough code. It make
11047     a difficult to implement OneNAND IPL.
11048
11049     his patch make this common code as small as possible. and give
11050     lowlevel_init can have more codes.
11051
11052     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
11053     Signed-off-by: Scott Wood <scottwood@freescale.com>
11054
11055 commit 16f2f5a351004129e79e79816697a367fd9e5446
11056 Author: Wolfgang Grandegger <wg@grandegger.com>
11057 Date:   Wed Feb 11 18:38:24 2009 +0100
11058
11059     Add multi-chip NAND support for the TQM8548 modules
11060
11061     This patches configures the NAND UPM-FSL driver with multi-chip
11062     support for the Micron MT29F8G08FAB NAND flash memory on the
11063     TQM8548 modules.
11064
11065     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11066     Signed-off-by: Scott Wood <scottwood@freescale.com>
11067
11068 commit 33846df28fa1f4cf96a96c18142d48d813caa892
11069 Author: Wolfgang Grandegger <wg@grandegger.com>
11070 Date:   Wed Feb 11 18:38:23 2009 +0100
11071
11072     Add wait flags to support board/chip specific delays
11073
11074     The NAND flash on the TQM8548_BE modules requires a short delay after
11075     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
11076     requires a further short delay after writing out a buffer. Normally the
11077     R/B pin should be checked, but it's not connected on the TQM8548_BE.
11078     The corresponding Linux FSL UPM driver uses similar delay points at the
11079     same locations. To manage these extra delays in a more general way, I
11080     introduced the "wait_flags" field allowing the board-specific driver to
11081     specify various types of extra delay.
11082
11083     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11084     Signed-off-by: Scott Wood <scottwood@freescale.com>
11085
11086 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
11087 Author: Wolfgang Grandegger <wg@grandegger.com>
11088 Date:   Wed Feb 11 18:38:22 2009 +0100
11089
11090     Add support for TQM-specific chip select logic to FSL-UPM
11091
11092     For the NAND chips on the TQM8548 modules, a special chip-select logic is
11093     used. It uses dedicated address lines to be set via UPM machine address
11094     register (mar). This patch adds such support to the FSL-UPM driver.
11095
11096     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11097     Signed-off-by: Scott Wood <scottwood@freescale.com>
11098
11099 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
11100 Author: Wolfgang Grandegger <wg@grandegger.com>
11101 Date:   Wed Feb 11 18:38:21 2009 +0100
11102
11103     Add multi chip support to the FSL-UPM driver
11104
11105     This patch adds support for multi-chip NAND devices to the FSL-UPM
11106     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
11107     called with the argument "chip_nr" to allow testing the proper chip
11108     select line. The NAND support of the MPC8360ERDK is updated as well.
11109     No other boards are currently using the FSL UPM driver.
11110
11111     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11112     Signed-off-by: Scott Wood <scottwood@freescale.com>
11113
11114 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
11115 Author: Wolfgang Grandegger <wg@grandegger.com>
11116 Date:   Wed Feb 11 18:38:20 2009 +0100
11117
11118     Enable multi chip support in the NAND layer
11119
11120     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
11121     Multi-chips devices are displayed as shown:
11122
11123       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
11124
11125     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11126     Signed-off-by: Scott Wood <scottwood@freescale.com>
11127
11128 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
11129 Author: Mike Frysinger <vapier@gentoo.org>
11130 Date:   Sat Oct 11 21:58:33 2008 -0400
11131
11132     Blackfin: put memory into self-refresh before/after programming clocks
11133
11134     When initializing the core clocks, stick external memory into self-refresh.
11135     This gains us a few cool things:
11136      - support suspend-to-RAM with Linux
11137      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
11138      - make sure settings are stable before flashing new version
11139      - finally fully unify initialize startup code path between LDR/non-LDR
11140
11141     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11142
11143 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
11144 Author: Mike Frysinger <vapier@gentoo.org>
11145 Date:   Sat Oct 11 21:56:08 2008 -0400
11146
11147     Blackfin: do not program voltage regulator on parts that do not have one
11148
11149     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
11150     regulator, so do not attempt to program the memory as if it does.
11151
11152     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11153
11154 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
11155 Author: Mike Frysinger <vapier@gentoo.org>
11156 Date:   Sun Jun 1 01:28:24 2008 -0400
11157
11158     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
11159
11160     If the board config does not specify an explicit EBIU_SDBCTL value, set it
11161     up with sane values based on other configuration options.
11162
11163     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11164
11165 commit 3986e981f565c08f10c7e526af8cb518d741c349
11166 Author: Mike Frysinger <vapier@gentoo.org>
11167 Date:   Sat Dec 6 18:06:58 2008 -0500
11168
11169     Blackfin: handle reboot anomaly 432
11170
11171     Workaround anomaly 432:
11172     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
11173     register before executing the PLL programming sequence.  Therefore, any
11174     interrupt enabled in the SIC_IWR1 register prior to the call to
11175     bfrom_SysControl() can prematurely terminate the idle sequence required
11176     for the PLL to relock properly. SIC_IWR0 is properly handled.
11177
11178     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11179
11180 commit 7e1d212b6da492c6ea32c62af92e185284f41291
11181 Author: Mike Frysinger <vapier@gentoo.org>
11182 Date:   Sat Oct 18 04:04:49 2008 -0400
11183
11184     Blackfin: kill off LDR jump block
11185
11186     The Boot ROM uses EVT1 as the entry point so set that rather than having
11187     to use a tiny jump block in the default EVT1 location.
11188
11189     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11190
11191 commit a75fa148d60b1975403441e45565621bba50d2d9
11192 Author: Mike Frysinger <vapier@gentoo.org>
11193 Date:   Tue Jan 6 10:00:48 2009 -0500
11194
11195     Blackfin: simplify symbol_lookup() a bit
11196
11197     No need to skip a byte as the symbol table handles this.
11198
11199     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11200
11201 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
11202 Author: Mike Frysinger <vapier@gentoo.org>
11203 Date:   Sat Feb 7 05:43:21 2009 -0500
11204
11205     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
11206
11207     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11208
11209 commit 58130f8920151d9e8942bbdf3388f2defb47e415
11210 Author: Mike Frysinger <vapier@gentoo.org>
11211 Date:   Sat Feb 7 05:41:17 2009 -0500
11212
11213     Blackfin: drop SPORT_TX read helper macros
11214
11215     The SPORT_TX registers cannot be read (the hardware will trigger an error),
11216     so drop the read helper macros.
11217
11218     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11219
11220 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
11221 Author: Mike Frysinger <vapier@gentoo.org>
11222 Date:   Sat Feb 7 05:25:35 2009 -0500
11223
11224     Blackfin: unify duplicate CPU port definitions
11225
11226     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11227
11228 commit 744fd240d181b0b05b1436e1b655c9a62526c752
11229 Author: Mike Frysinger <vapier@gentoo.org>
11230 Date:   Fri Feb 6 00:59:50 2009 -0500
11231
11232     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
11233
11234     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
11235     are no longer used/needed.
11236
11237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11238
11239 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
11240 Author: Mike Frysinger <vapier@gentoo.org>
11241 Date:   Mon Oct 6 04:01:26 2008 -0400
11242
11243     Blackfin: print out Flash: before checking it
11244
11245     If there is some problem in the flash init/checking code, it's nicer to see
11246     the message "Flash:" before crashing.  This way the source of the problem
11247     is a bit more straightforward.
11248
11249     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11250
11251 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
11252 Author: Mike Frysinger <vapier@gentoo.org>
11253 Date:   Thu Aug 7 15:33:09 2008 -0400
11254
11255     Blackfin: safely flush data caches when in writeback mode
11256
11257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11258
11259 commit c06f2b13022703611bc3e512bd34f9014a46f448
11260 Author: Mike Frysinger <vapier@gentoo.org>
11261 Date:   Thu Aug 7 13:21:48 2008 -0400
11262
11263     Blackfin: update lockbox api according to latest documentation
11264
11265     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11266
11267 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
11268 Author: Mike Frysinger <vapier@gentoo.org>
11269 Date:   Sat Oct 11 21:49:06 2008 -0400
11270
11271     Blackfin: mark bfin_reset static
11272
11273     The function is only used locally, so mark it static.
11274
11275     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11276
11277 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
11278 Author: Sonic Zhang <Sonic.Zhang@analog.com>
11279 Date:   Fri Mar 20 19:28:20 2009 -0400
11280
11281     Blackfin: spi: there is no PORTJ_FER MMR on BF537
11282
11283     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
11284     then there is no PORTJ_FER register for us to worry about.
11285
11286     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
11287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11288
11289 commit e82b762f293debc53c5afa90f37264f6b07520f9
11290 Author: Mike Frysinger <vapier@gentoo.org>
11291 Date:   Tue Mar 17 13:58:23 2009 -0400
11292
11293     Blackfin: fix jtag console tstc
11294
11295     The jtag tstc operation was checking the hardware to see if data is
11296     available from it (which is fine for the jtag getc operation), but the
11297     higher layers need to know whether any data is available.  Since we have
11298     to read up to 4 bytes at a time from the hardware, the higher layers need
11299     to know they can consume the cached bytes as well.
11300
11301     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11302
11303 commit bc683f58b1f1d8d20546fe019483967a51a49df1
11304 Author: Mike Frysinger <vapier@gentoo.org>
11305 Date:   Sun Feb 22 16:23:41 2009 -0500
11306
11307     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
11308
11309     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11310
11311 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
11312 Author: Mike Frysinger <vapier@gentoo.org>
11313 Date:   Sun Feb 22 16:02:27 2009 -0500
11314
11315     Blackfin: unify net-related init code
11316
11317     Unify all of the net-related init code in the common Blackfin board init
11318     code to clean up the ifdef mess a bit.
11319
11320     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11321
11322 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
11323 Author: Mike Frysinger <vapier@gentoo.org>
11324 Date:   Wed Feb 18 12:51:48 2009 -0500
11325
11326     Blackfin: fix SWRST/SYSCR register sizes
11327
11328     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11329
11330 commit a9d6777d39154978b9ef9c682b2627a3480b194c
11331 Author: Mike Frysinger <vapier@gentoo.org>
11332 Date:   Wed Feb 18 12:51:31 2009 -0500
11333
11334     Blackfin: update anomaly lists
11335
11336     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11337
11338 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
11339 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11340 Date:   Thu Mar 19 18:31:38 2009 +0100
11341
11342     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
11343
11344     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11345     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11346
11347 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
11348 Author: Eric Schumann <E.Schumann@phytec.de>
11349 Date:   Sat Mar 21 09:59:34 2009 -0400
11350
11351     Make flash protection work, when the environment is in EEPROM
11352
11353     On the pcm030 the environment is located in the onboard EEPROM. But we want
11354     to handle flash sector protection in a safe manner. So we must read the
11355     unlock environment variable from EEPROM instead from flash.
11356
11357     This patch is required as long the evironment is saved into the EEPROM.
11358
11359     Stefan: Additional change as suggested by Wolfgang, use bigger char array
11360     (instead of 4).
11361
11362     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
11363     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
11364     Acked-by: Wolfgang Denk <wd@denx.de>
11365     Signed-off-by: Stefan Roese <sr@denx.de>
11366
11367 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
11368 Author: Jon Smirl <jonsmirl@gmail.com>
11369 Date:   Sat Mar 21 11:17:56 2009 -0400
11370
11371     Add define for mpc5200 CDM_CLK_ENA
11372
11373     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
11374
11375 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
11376 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
11377 Date:   Sun Mar 22 14:48:16 2009 +0100
11378
11379     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
11380
11381     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
11382
11383     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
11384     It is essentially the same, with a few minor differences.
11385
11386     Here is the chip page on Atmel website:
11387     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
11388
11389     Signed-off-by: Justin Waters <justin.waters@timesys.com>
11390     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
11391     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11392
11393 commit 118d168035cc93f586da4812c89cb153eb9f4243
11394 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11395 Date:   Sun Mar 22 14:28:14 2009 +0100
11396
11397     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
11398
11399     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11400
11401 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
11402 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11403 Date:   Sun Mar 22 14:28:13 2009 +0100
11404
11405     cmc_pu2: fix misc_init_r prototype
11406
11407     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11408
11409 commit 53158aea995221706b42c7bad9f717b31ae20414
11410 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11411 Date:   Sun Jan 11 03:32:01 2009 +0100
11412
11413     at91sam9xeek: fix soc name
11414
11415     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11416
11417 commit 74c076d6c33d6d42ab065541a38383587879e7b7
11418 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11419 Date:   Sun Mar 22 10:22:34 2009 +0100
11420
11421     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
11422
11423     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11424
11425 commit 163966087d62680547f188a93c61d01c8155254e
11426 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11427 Date:   Sat Mar 21 21:08:01 2009 +0100
11428
11429     atmel/at91/boards: compile dataflash partition only when dataflash is
11430
11431     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11432
11433 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
11434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11435 Date:   Sat Mar 21 21:08:00 2009 +0100
11436
11437     at91sam9/at91cap: move common macb initialisation to cpu
11438
11439     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11440
11441 commit f3f91f886bc8927fd692ac411b7423a87ffec532
11442 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11443 Date:   Sat Mar 21 21:08:00 2009 +0100
11444
11445     at91sam9/at91cap: move common usb host initialisation to cpu
11446
11447     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11448
11449 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
11450 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11451 Date:   Sat Mar 21 21:08:00 2009 +0100
11452
11453     at91sam9/at91cap: move common led management to cpu
11454
11455     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11456
11457 commit 7ebafb7ec1a0285af8380623c009576f92583b98
11458 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11459 Date:   Sat Mar 21 21:07:59 2009 +0100
11460
11461     at91sam9/at91cap: move common spi initialisation to cpu
11462
11463     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11464
11465 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
11466 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11467 Date:   Sat Mar 21 21:07:59 2009 +0100
11468
11469     at91sam9/at91cap: move common serial initialisation to cpu
11470
11471     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11472
11473 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
11474 Author: Wolfgang Denk <wd@denx.de>
11475 Date:   Sat Mar 21 22:04:41 2009 +0100
11476
11477     Prepare 2009.03
11478
11479     Update CHANGELOG
11480
11481     Signed-off-by: Wolfgang Denk <wd@denx.de>
11482
11483 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
11484 Author: Vivek Kutal <vivek.kutal@azingo.com>
11485 Date:   Mon Feb 23 21:35:11 2009 +0530
11486
11487     Replaced endpoint numbers with appropriate macros in usbtty.c.
11488
11489     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
11490     Signed-off-by: Remy Bohmer <linux@bohmer.net>
11491
11492 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
11493 Author: Michael Lawnick <ml.lawnick@gmx.de>
11494 Date:   Thu Mar 19 10:06:41 2009 +0100
11495
11496     UBIFS: Missing offset relocation for compressor 'none'
11497
11498     On systems where U-Boot is linked to another address than it really lays
11499     (e.g. backup image), calls via function pointers must be fixed with a
11500     '+= gd->reloc_off'.
11501     This was not done for none_compr in ubifs_compressors_init() what leads
11502     to system crash on ubifsmount command.
11503
11504     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
11505     Acked-by: Stefan Roese <sr@denx.de>
11506
11507 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
11508 Author: Stefan Roese <sr@denx.de>
11509 Date:   Thu Mar 19 15:35:50 2009 +0100
11510
11511     UBIFS: Add UBIFS commands
11512
11513     This patchset adds these UBIFS related commands:
11514
11515     - ubifsmount
11516       Mount an UBIFS volume
11517
11518     - ubifsls
11519       List a directory of the mounted UBIFS volume
11520
11521     - ubifsload
11522       Load a file from the mounted UBIFS volume to memory
11523
11524     Signed-off-by: Stefan Roese <sr@denx.de>
11525
11526 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
11527 Author: Stefan Roese <sr@denx.de>
11528 Date:   Thu Mar 19 15:35:05 2009 +0100
11529
11530     UBIFS: Implement read-only UBIFS support in U-Boot
11531
11532     The U-Boot UBIFS implementation is largely a direct copy from the current
11533     Linux version (2.6.29-rc6). As already done in the UBI version we have an
11534     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
11535     ...). This makes it possible to use the original Linux code with very
11536     little changes. And by this we can better update to later Linux versions.
11537
11538     I removed some of the Linux features that are not used in the U-Boot
11539     version (e.g. garbage-collection, write support).
11540
11541     Signed-off-by: Stefan Roese <sr@denx.de>
11542     CC: Artem Bityutskiy <dedekind@infradead.org>
11543     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
11544
11545 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
11546 Author: Stefan Roese <sr@denx.de>
11547 Date:   Thu Mar 19 15:34:56 2009 +0100
11548
11549     Add LZO decompressor support
11550
11551     This patch adds LZO decompression support to U-Boot. It is needed for
11552     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
11553     decompressor. Since we only support read-only in UBIFS, only the
11554     decompressor is needed.
11555
11556     All this is copied with minor changes from the current Linux kernel
11557     version (2.6.28-rc8).
11558
11559     This patch only implements this LZO decompressor support for PPC.
11560     Other platforms using UBIFS will have to add the required
11561     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
11562     from the Linux source tree as I have done it for PPC in this patch.
11563
11564     Signed-off-by: Stefan Roese <sr@denx.de>
11565
11566 commit 68d7d65100e84df00bca971c114092731b441090
11567 Author: Stefan Roese <sr@denx.de>
11568 Date:   Thu Mar 19 13:30:36 2009 +0100
11569
11570     Separate mtdparts command from jffs2
11571
11572     Currently the mtdparts commands are included in the jffs2 command support.
11573     This doesn't make sense anymore since other commands (e.g. UBI) use this
11574     infrastructure as well now. This patch separates the mtdparts commands from
11575     the jffs2 commands making it possible to only select mtdparts when no JFFS2
11576     support is needed.
11577
11578     Signed-off-by: Stefan Roese <sr@denx.de>
11579     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
11580
11581 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
11582 Author: Stefan Roese <sr@denx.de>
11583 Date:   Wed Feb 25 12:11:15 2009 +0100
11584
11585     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
11586
11587     Signed-off-by: Stefan Roese <sr@denx.de>
11588
11589 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
11590 Author: Grzegorz Bernacki <gjb@semihalf.com>
11591 Date:   Tue Mar 17 10:06:40 2009 +0100
11592
11593     Add support for the digsy MTC board.
11594
11595     This is the InterControl custom device based on the MPC5200B chip.
11596
11597     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
11598
11599 commit ff7dc067369e30066744f096995aef7d97574d15
11600 Author: Stefan Roese <sr@denx.de>
11601 Date:   Mon Feb 23 16:52:36 2009 +0100
11602
11603     powerpc: Fix compilation warning in board.c
11604
11605     Fix this warning:
11606
11607     board.c: In function 'board_init_r':
11608     board.c:653: warning: unused variable 'i'
11609     board.c:651: warning: unused variable 'e'
11610
11611     Signed-off-by: Stefan Roese <sr@denx.de>
11612
11613 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
11614 Author: Stefan Roese <sr@denx.de>
11615 Date:   Mon Feb 23 16:42:51 2009 +0100
11616
11617     ppc4xx: Don't write the MAC address into the internal SoC registers
11618
11619     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
11620     addresses into the SoC registers instead.
11621
11622     Signed-off-by: Stefan Roese <sr@denx.de>
11623
11624 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
11625 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11626 Date:   Fri Feb 20 10:19:19 2009 +0100
11627
11628     ppc4xx: Use correct io accessors for esd 405/440 boards
11629
11630     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
11631     macros. Also volatile pointer references are replaced by the
11632     new accessors.
11633
11634     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11635     Signed-off-by: Stefan Roese <sr@denx.de>
11636
11637 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
11638 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11639 Date:   Fri Feb 20 10:19:18 2009 +0100
11640
11641     ppc4xx: Use correct io accessors for esd 405 boards
11642
11643     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
11644     macros. Also volatile pointer references are replaced by the
11645     new accessors.
11646
11647     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11648     Signed-off-by: Stefan Roese <sr@denx.de>
11649
11650 commit a59205d1519375d027f97a545ad642ab20fce6f8
11651 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11652 Date:   Fri Feb 20 10:19:17 2009 +0100
11653
11654     ppc4xx: Cleanup linker scripts of esd 4xx boards
11655
11656     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11657     Signed-off-by: Stefan Roese <sr@denx.de>
11658
11659 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
11660 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11661 Date:   Fri Feb 20 10:19:16 2009 +0100
11662
11663     ppc4xx: Update TEXT_BASE for DASA_SIM boards
11664
11665     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
11666
11667     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11668     Signed-off-by: Stefan Roese <sr@denx.de>
11669
11670 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
11671 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11672 Date:   Fri Feb 20 10:19:15 2009 +0100
11673
11674     ppc4xx: DU405 maintenance fix
11675
11676     -strip unused features
11677     -fix resetting phy
11678
11679     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11680     Signed-off-by: Stefan Roese <sr@denx.de>
11681
11682 commit 75511b47ac2647be48218dbb93af05b21f404f67
11683 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11684 Date:   Fri Feb 20 10:19:14 2009 +0100
11685
11686     ppc4xx: Abort autoboot only by space key on CPCI405 boards
11687
11688     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11689     Signed-off-by: Stefan Roese <sr@denx.de>
11690
11691 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
11692 Author: Graeme Russ <graeme.russ@gmail.com>
11693 Date:   Tue Feb 24 21:14:56 2009 +1100
11694
11695     Add basic relocation to i386 port
11696
11697     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
11698
11699 commit 8c63d47651f77d9fb887cad433370b866eb0a193
11700 Author: Graeme Russ <graeme.russ@gmail.com>
11701 Date:   Tue Feb 24 21:14:45 2009 +1100
11702
11703     Implement SC520 timers
11704
11705     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11706
11707 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
11708 Author: Graeme Russ <graeme.russ@gmail.com>
11709 Date:   Tue Feb 24 21:14:32 2009 +1100
11710
11711     Factor out SC520 sub-features
11712
11713     Moved sub-features of the SC520 code which is currently selectively compiled
11714     using #ifdef out of sc520.c into individual files selectively compiled via
11715     the makefile
11716
11717     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11718
11719 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
11720 Author: Graeme Russ <graeme.russ@gmail.com>
11721 Date:   Tue Feb 24 21:13:40 2009 +1100
11722
11723     Rewrite i386 interrupt handling
11724
11725     Rewrite interrupt handling functionality for the i386 port. Separated
11726     functionality into separate CPU and Architecture components.
11727
11728     It appears as if the i386 interrupt handler functionality was intended
11729     to allow multiple handlers to be installed for a given interrupt.
11730     Unfortunately, this functionality was not fully implemented and also
11731     had the problem that irq_free_handler() does not allow the passing
11732     of the handler function pointer and therefore could never be used to
11733     free specific handlers that had been installed for a given IRQ.
11734
11735     There were also various issues with array bounds not being fully
11736     tested.
11737
11738     I had two objectives in mind for the new implementation:
11739
11740     1) Keep the implementation as similar as possible to existing
11741        implementations. To that end, I have used the leon2/3
11742        implementations as the reference
11743
11744     2) Seperate CPU and Architecture specific elements. All specific i386
11745        interrupt functionality is now in cpu/i386/ with the high level
11746        API and architecture specific code in lib_i386. Functionality
11747        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
11748        been further split out into an individual file to allow for the
11749        implementation of the PIC architecture of the SC520 CPU (supports
11750        more IRQs)
11751
11752     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11753
11754 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
11755 Author: Graeme Russ <graeme.russ@gmail.com>
11756 Date:   Tue Feb 24 21:12:35 2009 +1100
11757
11758     Move ali512x.h
11759
11760     Moved ali512x.h from include/asm-i386/ic/ to /include
11761
11762     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11763
11764 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
11765 Author: Graeme Russ <graeme.russ@gmail.com>
11766 Date:   Tue Feb 24 21:12:20 2009 +1100
11767
11768     Rename SC520 Configuration Options
11769
11770     Options are now all uniformly CONFIG_SYS_SC520_<option>
11771
11772     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
11773
11774 commit f62fb99941c625605aa16a0097b396a5c16d2c88
11775 Author: Trent Piepho <xyzzy@speakeasy.org>
11776 Date:   Wed Feb 18 15:22:05 2009 -0800
11777
11778     Fix all linker script to handle all rodata sections
11779
11780     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
11781     which needs to be added the the linker script.  Instead of just adding this
11782     one section, we use a wildcard ".rodata*" to get all rodata linker section
11783     gcc has now and might add in the future.
11784
11785     However, '*(.rodata*)' by itself will result in sub-optimal section
11786     ordering.  The sections will be sorted by object file, which causes extra
11787     padding between the unaligned rodata.str.1.1 of one object file and the
11788     aligned rodata of the next object file.  This is easy to fix by using the
11789     SORT_BY_ALIGNMENT command.
11790
11791     This patch has not be tested one most of the boards modified.  Some boards
11792     have a linker script that looks something like this:
11793
11794     *(.text)
11795     . = ALIGN(16);
11796     *(.rodata)
11797     *(.rodata.str1.4)
11798     *(.eh_frame)
11799
11800     I change this to:
11801
11802     *(.text)
11803     . = ALIGN(16);
11804     *(.eh_frame)
11805     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
11806
11807     This means the start of rodata will no longer be 16 bytes aligned.
11808     However, the boundary between text and rodata/eh_frame is still aligned to
11809     16 bytes, which is what I think the real purpose of the ALIGN call is.
11810
11811     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
11812
11813 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
11814 Author: Mike Frysinger <vapier@gentoo.org>
11815 Date:   Wed Feb 11 18:26:08 2009 -0500
11816
11817     remove bi_enet*addr from global data for all arches
11818
11819     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11820     CC: Ben Warren <biggerbadderben@gmail.com>
11821     CC: Daniel Hellstrom <daniel@gaisler.com>
11822     CC: Michal Simek <monstr@seznam.cz>
11823     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11824     CC: Scott McNutt <smcnutt@psyent.com>
11825     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11826
11827 commit eb85aa594c1b57a1e3be9689b65171a137a36432
11828 Author: Mike Frysinger <vapier@gentoo.org>
11829 Date:   Wed Feb 11 20:07:19 2009 -0500
11830
11831     ppc: mark global bi_enet*addr as legacy
11832
11833     The environment is the canonical storage location of the mac address, so
11834     we're killing off the global data location and moving everything to
11835     querying the env directly.
11836
11837     In the ppc case, these things are part of the legacy ABI, so keep them
11838     around but mark them as legacy so no new code will touch them.
11839
11840     Also stop calling load_sernum_ethaddr() since all boards now implement
11841     this as a stub.
11842
11843     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11844     CC: Ben Warren <biggerbadderben@gmail.com>
11845
11846 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
11847 Author: Mike Frysinger <vapier@gentoo.org>
11848 Date:   Wed Feb 11 20:09:52 2009 -0500
11849
11850     boards: get mac address from env and move load_sernum_ethaddr() to board init
11851
11852     The environment is the canonical storage location of the mac address, so
11853     we're killing off the global data location and moving everything to
11854     querying the env directly.
11855
11856     Rather than have common ppc code call a board-specific function like
11857     load_sernum_ethaddr(), have each board call it in its own board-specific
11858     misc_init_r() function.
11859
11860     The boards that get converted here are:
11861         - kup4k/kup4x
11862         - pcs440ep
11863         - tqm8xx
11864
11865     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11866     CC: Ben Warren <biggerbadderben@gmail.com>
11867     CC: Stefan Roese <sr@denx.de>
11868
11869 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
11870 Author: Mike Frysinger <vapier@gentoo.org>
11871 Date:   Wed Feb 11 19:55:01 2009 -0500
11872
11873     cmc_pu2: get mac address from environment
11874
11875     The environment is the canonical storage location of the mac address, so
11876     we're killing off the global data location and moving everything to
11877     querying the env directly.
11878
11879     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
11880     handle this board specially in common ARM code.
11881
11882     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11883     CC: Ben Warren <biggerbadderben@gmail.com>
11884
11885 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
11886 Author: Mike Frysinger <vapier@gentoo.org>
11887 Date:   Mon Feb 16 18:03:14 2009 -0500
11888
11889     boards: move board_get_enetaddr() into board-specific init
11890
11891     The environment is the canonical storage location of the mac address, so
11892     we're killing off the global data location and moving everything to
11893     querying the env directly.
11894
11895     Rather than have the common ppc code have board-specific hooks, move the
11896     board_get_enetaddr() function into the board-specific init functions.
11897
11898     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11899     CC: Ben Warren <biggerbadderben@gmail.com>
11900
11901 commit f11e6ff5b1859d9213f0d501b3309e065f487543
11902 Author: Mike Frysinger <vapier@gentoo.org>
11903 Date:   Wed Feb 11 19:39:55 2009 -0500
11904
11905     arm: get mac address from environment
11906
11907     The environment is the canonical storage location of the mac address, so
11908     we're killing off the global data location and moving everything to
11909     querying the env directly.
11910
11911     Some warts are remaining and should be killed off (by moving the func to
11912     the appropriate board init code):
11913         - davinci_eth_set_mac_addr
11914         - cs8900_get_enetaddr
11915         - smc_set_mac_addr
11916
11917     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11918     CC: Ben Warren <biggerbadderben@gmail.com>
11919
11920 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
11921 Author: Mike Frysinger <vapier@gentoo.org>
11922 Date:   Wed Feb 11 19:36:20 2009 -0500
11923
11924     nx823: get mac address from environment
11925
11926     The environment is the canonical storage location of the mac address, so
11927     we're killing off the global data location and moving everything to
11928     querying the env directly.
11929
11930     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
11931     into misc_init_r() as is the env setup.  This lets us kill off the former
11932     function in the process.
11933
11934     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11935     CC: Ben Warren <biggerbadderben@gmail.com>
11936
11937 commit 19b5b533ccd522abeb501d510750693c35e20456
11938 Author: Mike Frysinger <vapier@gentoo.org>
11939 Date:   Wed Feb 11 18:27:18 2009 -0500
11940
11941     lib_*/board.c: do not initialize bi_enet*addr in global data
11942
11943     Since everyone is using the environment for mac address storage, there is
11944     no point in seeding the global data.
11945
11946     The arches that are converted here:
11947         i386
11948         m68k
11949         microblaze
11950         mips
11951         nios
11952         nios2
11953         sh
11954         sparc
11955
11956     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11957     CC: Ben Warren <biggerbadderben@gmail.com>
11958     CC: Daniel Hellstrom <daniel@gaisler.com>
11959     CC: Michal Simek <monstr@seznam.cz>
11960     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11961     CC: Scott McNutt <smcnutt@psyent.com>
11962     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11963
11964 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
11965 Author: Mike Frysinger <vapier@gentoo.org>
11966 Date:   Wed Feb 11 19:19:54 2009 -0500
11967
11968     npe: get mac address from environment
11969
11970     The environment is the canonical storage location of the mac address, so
11971     we're killing off the global data location and moving everything to
11972     querying the env directly.
11973
11974     The resulting code can also be simplified even further.
11975
11976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11977     CC: Stefan Roese <sr@denx.de>
11978     CC: Ben Warren <biggerbadderben@gmail.com>
11979
11980 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
11981 Author: Mike Frysinger <vapier@gentoo.org>
11982 Date:   Wed Feb 11 19:18:41 2009 -0500
11983
11984     cpu/: get mac address from environment
11985
11986     The environment is the canonical storage location of the mac address, so
11987     we're killing off the global data location and moving everything to
11988     querying the env directly.
11989
11990     The cpus that get converted here:
11991         at91rm9200
11992         mpc512x
11993         mpc5xxx
11994         mpc8260
11995         mpc8xx
11996         ppc4xx
11997
11998     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11999     CC: Ben Warren <biggerbadderben@gmail.com>
12000     CC: John Rigby <jrigby@freescale.com>
12001     CC: Stefan Roese <sr@denx.de>
12002
12003 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
12004 Author: Mike Frysinger <vapier@gentoo.org>
12005 Date:   Wed Feb 11 19:09:54 2009 -0500
12006
12007     lan91c96/smc91111/smc911x: get mac address from environment
12008
12009     The environment is the canonical storage location of the mac address, so
12010     we're killing off the global data location and moving everything to
12011     querying the env directly.
12012
12013     Also, do not bother checking the EEPROM if the env is setup.  This
12014     simplifies the code greatly.
12015
12016     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12017     Signed-off-by: Wolfgang Dnek <wd@denx.de>
12018     CC: Ben Warren <biggerbadderben@gmail.com>
12019     CC: Rolf Offermanns <rof@sysgo.de>
12020     CC: Erik Stahlman <erik@vt.edu>
12021     CC: Daris A Nevil <dnevil@snmc.com>
12022     CC: Sascha Hauer <s.hauer@pengutronix.de>
12023
12024 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
12025 Author: Mike Frysinger <vapier@gentoo.org>
12026 Date:   Wed Feb 11 19:14:09 2009 -0500
12027
12028     sh_eth: get mac address from environment
12029
12030     The environment is the canonical storage location of the mac address, so
12031     we're killing off the global data location and moving everything to
12032     querying the env directly.
12033
12034     The sh_eth driver can also be simplified a bit by using enetaddr member of
12035     the eth_device structure.
12036
12037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12038     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12039     CC: Carlos Munoz <carlos@kenati.com>
12040     CC: Ben Warren <biggerbadderben@gmail.com>
12041
12042 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
12043 Author: Mike Frysinger <vapier@gentoo.org>
12044 Date:   Wed Feb 11 19:06:09 2009 -0500
12045
12046     cs8900: get mac address from environment
12047
12048     The environment is the canonical storage location of the mac address, so
12049     we're killing off the global data location and moving everything to
12050     querying the env directly.
12051
12052     The cs8900 driver also changes slightly in that the hardware is not
12053     consulted if the mac address in the env is sane.
12054
12055     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12056     CC: Marius Groeger <mgroeger@sysgo.de>
12057     CC: Ben Warren <biggerbadderben@gmail.com>
12058
12059 commit c4b8762f11d337e6a9d90c227b2871d65d372469
12060 Author: Mike Frysinger <vapier@gentoo.org>
12061 Date:   Wed Feb 11 19:04:25 2009 -0500
12062
12063     bcm570x: get mac address from environment
12064
12065     The environment is the canonical storage location of the mac address, so
12066     we're killing off the global data location and moving everything to
12067     querying the env directly.
12068
12069     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
12070     no need to pass the NodeAddress as a second parameter.  So drop the second
12071     argument to the LM_SetMacAddress() function (and update the tigon3 driver
12072     accordingly).
12073
12074     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12075     CC: Ben Warren <biggerbadderben@gmail.com>
12076
12077 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
12078 Author: Mike Frysinger <vapier@gentoo.org>
12079 Date:   Wed Feb 11 19:01:26 2009 -0500
12080
12081     drivers/net/: get mac address from environment
12082
12083     The environment is the canonical storage location of the mac address, so
12084     we're killing off the global data location and moving everything to
12085     querying the env directly.
12086
12087     The drivers that get converted here:
12088         3c589
12089         4xx_enet
12090         dc2114x
12091         dm9000x
12092         enc28j60
12093         fsl_mcdmafec
12094         ks8695eth
12095         mcffec
12096         rtl8019
12097         rtl8169
12098         s3c4510b_eth
12099         xilinx_emac
12100         xilinx_emaclite
12101
12102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12103     CC: Ben Warren <biggerbadderben@gmail.com>
12104     CC: Rolf Offermanns <rof@sysgo.de>
12105     CC: Stefan Roese <sr@denx.de>
12106     CC: Sascha Hauer <saschahauer@web.de>
12107     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12108     CC: Greg Ungerer <greg.ungerer@opengear.com>
12109     CC: Xue Ligong <lgxue@hotmail.com>
12110     CC: Masami Komiya <mkomiya@sonare.it>
12111     CC: Curt Brune <curt@cucy.com>
12112     CC: Michal SIMEK <monstr@monstr.eu>
12113
12114 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
12115 Author: Mike Frysinger <vapier@gentoo.org>
12116 Date:   Wed Feb 11 18:38:38 2009 -0500
12117
12118     boards: get mac address from environment
12119
12120     The boards that get converted here to use the environment for the mac
12121     address rather than global data:
12122         debris
12123         mgcoge
12124         mgsuvd
12125         muas3001
12126         netstal
12127         pn62
12128         sixnet
12129         vcma9
12130         xilinx (the ones that use xilinx_enet)
12131
12132     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12133     CC: Ben Warren <biggerbadderben@gmail.com>
12134     CC: Sangmoon Kim <dogoil@etinsys.com>
12135     CC: Heiko Schocher <hs@denx.de>
12136     CC: David Mueller <d.mueller@elsoft.ch>
12137     CC: Niklaus Giger <niklaus.giger@netstal.com>
12138     CC: Wolfgang Grandegger <wg@denx.de>
12139     CC: Dave Ellis <DGE@sixnetio.com>
12140     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
12141
12142 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
12143 Author: Mike Frysinger <vapier@gentoo.org>
12144 Date:   Wed Feb 11 18:36:45 2009 -0500
12145
12146     AmigaOneG3SE/enet: get mac address from environment
12147
12148     Always use the MAC address that is stored in the environment first before
12149     falling back to the ROM.  This also cuts out any comparison steps: if the
12150     mac in the env is sane, the ROM is never consulted.
12151
12152     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12153     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
12154     CC: Ben Warren <biggerbadderben@gmail.com>
12155
12156 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
12157 Author: Mike Frysinger <vapier@gentoo.org>
12158 Date:   Wed Feb 11 18:52:38 2009 -0500
12159
12160     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
12161
12162     Since the ethernet layer handles updating of device addresses itself from
12163     the environment, there is no point in calling eth_set_enetaddr().
12164
12165     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12166     CC: Ben Warren <biggerbadderben@gmail.com>
12167
12168 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
12169 Author: Mike Frysinger <vapier@gentoo.org>
12170 Date:   Wed Feb 11 18:54:07 2009 -0500
12171
12172     lynxkdi: get mac address from environment
12173
12174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12175     CC: Ben Warren <biggerbadderben@gmail.com>
12176
12177 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
12178 Author: Mike Frysinger <vapier@gentoo.org>
12179 Date:   Wed Feb 11 18:51:43 2009 -0500
12180
12181     bootvx: get mac address from environment
12182
12183     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12184     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
12185     CC: Ben Warren <biggerbadderben@gmail.com>
12186
12187 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
12188 Author: Mike Frysinger <vapier@gentoo.org>
12189 Date:   Wed Feb 11 18:50:10 2009 -0500
12190
12191     bdinfo: get mac address from environment
12192
12193     Add a new print_eth() function to automate the eth*addr env var acquisition
12194     and display.  Affects all arches.
12195
12196     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12197     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12198     CC: Scott McNutt <smcnutt@psyent.com>
12199     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12200     CC: Michal Simek <monstr@seznam.cz>
12201     CC: Daniel Hellstrom <daniel@gaisler.com>
12202     CC: Ben Warren <biggerbadderben@gmail.com>
12203
12204 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
12205 Author: Mike Frysinger <vapier@gentoo.org>
12206 Date:   Wed Feb 11 18:23:48 2009 -0500
12207
12208     net: get mac address from environment and use eth util funcs
12209
12210     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12211     CC: Ben Warren <biggerbadderben@gmail.com>
12212
12213 commit 500b6c51e4c41f4562cb48344af98deb7e342731
12214 Author: Mike Frysinger <vapier@gentoo.org>
12215 Date:   Mon Oct 13 15:06:25 2008 -0400
12216
12217     Blackfin: bfin_mac: force boards to setup the MAC themselves
12218
12219     Since the on-chip MAC does not have an eeprom or similar interface, force
12220     all Blackfin boards that use this driver to setup the board data with a
12221     proper MAC.
12222
12223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12224     CC: Ben Warren <biggerbadderben@gmail.com>
12225
12226 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
12227 Author: Mike Frysinger <vapier@gentoo.org>
12228 Date:   Wed Feb 11 14:12:34 2009 -0500
12229
12230     doc/README.enetaddr: document proper MAC usage
12231
12232     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12233     CC: Ben Warren <biggerbadderben@gmail.com>
12234
12235 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
12236 Author: Mike Frysinger <vapier@gentoo.org>
12237 Date:   Thu Jan 29 19:43:44 2009 -0500
12238
12239     net: new utility functions for working with enetaddr's
12240
12241     Declare new utility functions for converting between the environment
12242     variables (eth*addr) and the binary MAC address representation.  This way
12243     we can unify all the random places that already do this kind of thing.
12244
12245     The functions in question:
12246         eth_parse_enetaddr - "..." -> {...}
12247         eth_getenv_enetaddr - env -> {...}
12248         eth_setenv_enetaddr - {...} -> env
12249
12250     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12251     CC: Ben Warren <biggerbadderben@gmail.com>
12252
12253 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
12254 Author: Mike Frysinger <vapier@gentoo.org>
12255 Date:   Tue Feb 17 00:00:53 2009 -0500
12256
12257     convert print_IPaddr() to %pI4
12258
12259     Now that our printf functions support the %pI4 modifier like the kernel,
12260     let's drop the inflexible print_IPaddr() function and covert over to the
12261     %pI4 modifier.
12262
12263     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12264     CC: Ben Warren <biggerbadderben@gmail.com>
12265
12266 commit 6c6166f52983dac775e3852f9d0f49d033f27108
12267 Author: Mike Frysinger <vapier@gentoo.org>
12268 Date:   Mon Feb 16 23:21:36 2009 -0500
12269
12270     vsprintf: pull updates from Linux kernel
12271
12272     This brings in support for the %p modifier which allows us to easily print
12273     out things like ip addresses, mac addresses, and pointers.
12274
12275     It also converts the rarely used 'q' length modifier to the common 'L'
12276     modifier when dealing with quad types.
12277
12278     While this new code is a bit larger (~1k .text), most of it should be made
12279     up by converting the existing ip/mac address code to use format modifiers.
12280
12281     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12282
12283 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
12284 Author: Jon Smirl <jonsmirl@gmail.com>
12285 Date:   Thu Mar 19 23:04:18 2009 -0400
12286
12287     .gitignore for generated files in api_examples directory
12288
12289     Add .gitignore for generated files in api_examples directory
12290
12291     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
12292     Signed-off-by: Wolfgang Denk <wd@denx.de>
12293
12294 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
12295 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12296 Date:   Wed Mar 18 12:27:04 2009 +0900
12297
12298     net: sh_eth: Remove sh_eth_reset() from halt function
12299
12300     sh_eth_reset is function to reset Ether IP.
12301     The MAC address is stored in IP, but it is initialized by this function.
12302     OS (e.g. Linux Kernel) can not use this device when initialized.
12303     This revises this problem.
12304
12305     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12306
12307 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
12308 Author: Anatolij Gustschin <agust@denx.de>
12309 Date:   Fri Mar 20 12:45:50 2009 +0100
12310
12311     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
12312
12313     PCI outbound address map configuration doesn't match the
12314     PCI memory address range covered by appropriate TLB entry
12315     configuration for canyonlands causing machine check
12316     exceptions while accessing PCI memory regions. This patch
12317     provides a fix for this issue.
12318
12319     Kazuaki Ichinohe observed and reported this issue while
12320     testing display output with PCI ATI video card on canyonlands.
12321
12322     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12323     Signed-off-by: Stefan Roese <sr@denx.de>
12324
12325 commit 7a88601a34132548c3c591ea87ab3468b51121b0
12326 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12327 Date:   Fri Mar 6 10:09:37 2009 -0500
12328
12329     CFI: geometry reversal for STMicro M29W320DT
12330
12331     Follow up to the flash_fixup_stm to fix geometry reversal
12332     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
12333
12334     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12335     Signed-off-by: Stefan Roese <sr@denx.de>
12336
12337 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
12338 Author: Mike Frysinger <vapier@gentoo.org>
12339 Date:   Wed Feb 25 17:29:40 2009 -0500
12340
12341     smc911x_eeprom: update register API
12342
12343     The smc911x driver changed the naming convention for its register funcs,
12344     so update the eeprom code accordingly.
12345
12346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12347     CC: Ben Warren <biggerbadderben@gmail.com>
12348
12349 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
12350 Author: Grzegorz Bernacki <gjb@semihalf.com>
12351 Date:   Tue Mar 17 10:06:39 2009 +0100
12352
12353     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
12354
12355     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
12356     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
12357     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
12358     Total5200 and will be used by digsy MTC and other boards with
12359     ATA CS on I2C pins.
12360
12361     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
12362
12363 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
12364 Author: Heiko Schocher <hs@denx.de>
12365 Date:   Thu Mar 12 07:37:34 2009 +0100
12366
12367     8xx: add support for new keymile kmsupx4 board.
12368
12369     This patch adds support for the kmsupx4 board from Keymile,
12370     based on a Freescale MPC852T CPU
12371
12372     - serial console on SMC1
12373     - 32 MB SDRAM
12374     - 32 MB NOR Flash
12375     - Ethernet over SCC3
12376     - I2C Bitbang
12377
12378     Signed-off-by: Heiko Schocher <hs@denx.de>
12379
12380 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
12381 Author: Heiko Schocher <hs@denx.de>
12382 Date:   Thu Mar 12 07:37:28 2009 +0100
12383
12384     8xx, mgsuvd: rename board to a more generic name
12385
12386     renaming the "mgsuvd" board port into "km8xx", because
12387     there come more similar boards from keymile.
12388     Compiling the mgsuvd board with "make mgsuvd_config"
12389     remains.
12390
12391     Signed-off-by: Heiko Schocher <hs@denx.de>
12392
12393 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
12394 Author: Heiko Schocher <hs@denx.de>
12395 Date:   Thu Mar 12 07:37:23 2009 +0100
12396
12397     8xx, mgsuvd: Coding Style cleanup config file
12398
12399     Signed-off-by: Heiko Schocher <hs@denx.de>
12400
12401 commit 364123db6730d32330f818b65360d2cd27396667
12402 Author: Heiko Schocher <hs@denx.de>
12403 Date:   Thu Mar 12 07:37:18 2009 +0100
12404
12405     powerpc: common updates for keymile boards
12406
12407     - added to keymile-common.h:
12408       - bootcount support
12409       - COMMAND HISTORY
12410       - CONFIG_AUTO_COMPLETE
12411       - CONFIG_SYS_FLASH_PROTECTION
12412       - JFFS2 support
12413       - CONFIG_VERSION_VARIABLE
12414     - extracted common I2C settings for all boards
12415     - common default environment settings summarized
12416
12417     Signed-off-by: Heiko Schocher <hs@denx.de>
12418
12419 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
12420 Author: Heiko Schocher <hs@denx.de>
12421 Date:   Thu Mar 12 07:37:15 2009 +0100
12422
12423     8xx, icache: enabling ICache not before running from RAM
12424
12425     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
12426     is not enabled before code runs from RAM.
12427
12428     Signed-off-by: Heiko Schocher <hs@denx.de>
12429
12430 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
12431 Author: Heiko Schocher <hs@denx.de>
12432 Date:   Thu Mar 12 07:37:11 2009 +0100
12433
12434     82xx, mgcoge: fix environment sector size
12435
12436     Size of one environment sector is 0x20000.
12437
12438     Signed-off-by: Heiko Schocher <hs@denx.de>
12439
12440 commit 27057d416c7cc9eb1860953da8836352c07f13e9
12441 Author: Ladislav Michl <ladis@linux-mips.org>
12442 Date:   Mon Mar 16 23:27:31 2009 +0100
12443
12444     NetStar: config reindentation
12445
12446     Fix indentation broken by symbol renames. "Sort" driver related definitons.
12447
12448     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12449
12450 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
12451 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12452 Date:   Tue Mar 17 11:21:43 2009 +0000
12453
12454     ColdFire: Fix incorrect definition
12455
12456     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12457
12458 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
12459 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12460 Date:   Mon Mar 2 19:16:45 2009 +0000
12461
12462     ColdFire: Fix M5329EVB and M5373EVB nand issue
12463
12464     The Nand flash was unable to read and write properly
12465     due to Nand Chip Select (nCE) setup was in reverse
12466     order. Also, increase the Nand time out value to 60.
12467
12468     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12469
12470 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
12471 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12472 Date:   Tue Jan 27 15:19:35 2009 +0000
12473
12474     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
12475
12476     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
12477     ColdFire compiler.
12478
12479     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12480
12481 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
12482 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12483 Date:   Tue Jan 27 12:57:47 2009 +0000
12484
12485     ColdFire: Provide gzip image size V2 & V3 platforms
12486
12487     Default gzip bootm size is 8MB. Some platforms require
12488     more than 8MB
12489
12490     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12491
12492 commit c3a9e6374210679a81f611c1bcf968988bc20e41
12493 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12494 Date:   Wed Feb 18 11:49:31 2009 +0000
12495
12496     ColdFire: Fix M54451 serial boot dram setup
12497
12498     The serial boot dram extended/standard mode register was not
12499     setup and was using default DRAM setup causing the U-boot was
12500     unstable to boot up in serial mode.
12501
12502     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12503
12504 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
12505 Author: arun c <arun.edarath@gmail.com>
12506 Date:   Thu Dec 4 15:57:15 2008 +0530
12507
12508     Coldfire: XL Bus minor fixes
12509
12510     According to coldfire manual data timeout > address time out
12511     also use correct macro to program XARB_CFG
12512
12513     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
12514
12515 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
12516 Author: Scott Wood <scottwood@freescale.com>
12517 Date:   Tue Mar 17 12:06:04 2009 -0500
12518
12519     NAND: Have nboot accept .e and .i as legacy no-ops.
12520
12521     This was intended to happen before, but a trivial bug prevented it.
12522
12523     Signed-off-by: Scott Wood <scottwood@freescale.com>
12524
12525 commit 0987505540918b2464b73069af3a5b766dbd3ceb
12526 Author: Ladislav Michl <ladis@linux-mips.org>
12527 Date:   Fri Mar 13 14:38:19 2009 +0100
12528
12529     NAND: Make nboot skip bad blocks
12530
12531     nboot command currently does not skip bad blocks and gives read error when
12532     loading image stored over bad block. With patch applied, nboot works as
12533     expected:
12534
12535     Device 0 bad blocks:
12536       00780000
12537       014a0000
12538       02000000
12539       02cc0000
12540       04aa0000
12541
12542     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
12543        Image Name:   Linux-2.6.22-omap1
12544        Created:      2008-11-20  23:44:32 UTC
12545        Image Type:   ARM Linux Kernel Image (uncompressed)
12546        Data Size:    1052520 Bytes =  1 MB
12547        Load Address: 10008000
12548        Entry Point:  10008000
12549     Skipping bad block 0x02cc0000
12550     Automatic boot of image at addr 0x10400000 ...
12551     ...
12552
12553     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
12554     Signed-off-by: Scott Wood <scottwood@freescale.com>
12555
12556 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
12557 Author: Stefan Roese <sr@denx.de>
12558 Date:   Thu Mar 12 07:27:25 2009 +0100
12559
12560     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
12561
12562     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
12563     the DDR2 configuration to only use one CS (rank). As this code is most
12564     likely copied from the original Sequoia version, this error was copied
12565     as well.
12566
12567     This patch also removes some dead code.
12568
12569     Signed-off-by: Stefan Roese <sr@denx.de>
12570
12571 commit 9199b9cc8f56aca26504b48cf702176208f46e54
12572 Author: Stefan Roese <sr@denx.de>
12573 Date:   Thu Mar 12 07:24:40 2009 +0100
12574
12575     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
12576
12577     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
12578     the DDR2 configuration to only use one CS (rank). As this code is most
12579     likely copied from the original Sequoia version, this error was copied
12580     as well.
12581
12582     Signed-off-by: Stefan Roese <sr@denx.de>
12583
12584 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
12585 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
12586 Date:   Wed Mar 11 10:54:46 2009 +0200
12587
12588     Fix AMCC Sequoia board DDR memory configuration
12589
12590     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
12591     specifies that BankSel#1 is not connected, while bootloader memory
12592     configuration is (board/amcc/sequoia/sdram.c):
12593            mtsdram(DDR0_10, 0x00000300);
12594     i.e. both Chip Selects used - not correct.
12595
12596     If we change to correct value here:
12597            mtsdram(DDR0_10, 0x00000100);
12598     memory is accessible OK also.
12599
12600     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
12601     Signed-off-by: Stefan Roese <sr@denx.de>
12602
12603 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
12604 Author: Wolfgang Denk <wd@denx.de>
12605 Date:   Sun Mar 15 22:40:09 2009 +0100
12606
12607     Prepare 2009.03-rc2
12608
12609     Update CHANEGLOG, fix minor coding style issue.
12610
12611     Signed-off-by: Wolfgang Denk <wd@denx.de>
12612
12613 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
12614 Author: Jerry Van Baren <gvb.uboot@gmail.com>
12615 Date:   Fri Mar 13 11:40:10 2009 -0400
12616
12617     mpc83xx: Add bank configuration to FSL spd_sdram.c
12618
12619     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
12620     bank SDRAMs.
12621
12622     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
12623     Acked-by: Dave Liu <daveliu@freescale.com>
12624     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12625
12626 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
12627 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
12628 Date:   Fri Mar 13 08:58:14 2009 +0100
12629
12630     mpc83xx: correctly set encryption and I2C bus 0 clock
12631
12632     This patch makes sure the correct mask is applied when setting
12633     the encryption and I2C bus 0 clock in SCCR.
12634     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
12635     won't function.
12636
12637     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
12638     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12639
12640 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
12641 Author: Dirk Behme <dirk.behme@googlemail.com>
12642 Date:   Thu Mar 12 19:30:50 2009 +0100
12643
12644     OMAP3: Add support for OMAP3 die ID
12645
12646     Read and store OMAP3 die ID in U-Boot environment.
12647
12648     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
12649
12650 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
12651 Author: Jon Smirl <jonsmirl@gmail.com>
12652 Date:   Wed Mar 11 15:08:56 2009 -0400
12653
12654     MPC5200 FEC MII speed register
12655
12656     Set a non-zero speed in the MII register so that MII commands will work.
12657
12658     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
12659
12660 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
12661 Author: Yusuke.Goda <goda.yusuke@renesas.com>
12662 Date:   Fri Mar 13 16:08:18 2009 +0900
12663
12664     sh: ap325rxa: Change the wait cycle in the area 5
12665
12666     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
12667     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12668
12669 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
12670 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12671 Date:   Wed Feb 25 16:04:26 2009 +0900
12672
12673     sh: Fix cannot work rtl8139 on r2dplus
12674
12675     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
12676     registration.
12677
12678     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12679     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12680
12681 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
12682 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12683 Date:   Fri Feb 27 18:35:41 2009 +0900
12684
12685     sh: Add netdev header fixing of warning/build
12686
12687     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12688     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12689
12690 commit ada9318252f51c2626e9837c623f9812b0308dea
12691 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12692 Date:   Tue Mar 3 15:11:17 2009 +0900
12693
12694     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
12695
12696     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
12697     for this mode. This command changes PMB for using 512MB system memory.
12698
12699     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12700     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12701
12702 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
12703 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12704 Date:   Wed Feb 25 14:26:42 2009 +0900
12705
12706     sh: Add some register value configurable to PCI of SH7780
12707
12708     Some register value was hardcoded for System memory size 128MB and
12709     memory offset 0x08000000. This patch fixed the problem.
12710
12711     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12712     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12713
12714 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
12715 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12716 Date:   Wed Feb 25 14:26:52 2009 +0900
12717
12718     sh: Add system memory registration to PCI for SH4
12719
12720     It is necessary for some pci device driver.
12721
12722     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12723     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12724
12725 commit b3061b40db691245a7bb9a55354b4edacbf3902d
12726 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12727 Date:   Wed Feb 25 14:26:55 2009 +0900
12728
12729     sh: Add value for PCI system memory registration of sh7785lcr
12730
12731     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12732     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12733
12734 commit 6d84ae3956a6cd7aebd86f661130752594e60124
12735 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12736 Date:   Tue Mar 3 15:11:08 2009 +0900
12737
12738     sh: Add macros for SH-4A 32-Bit Address Extended Mode
12739
12740     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12741     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12742
12743 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
12744 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12745 Date:   Tue Feb 3 13:35:05 2009 +0900
12746
12747     sh: use write{8,16,32} in ms7720se lowlevel_init
12748
12749     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12750     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12751
12752 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
12753 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
12754 Date:   Mon Mar 9 18:07:53 2009 -0500
12755
12756     tsec: report when there is no vendor specific PHY support
12757
12758     Commit af1c2b84 added a generic phy support, with an ID of zero
12759     and a 32 bit mask; meaning that it will match on any PHY ID.
12760
12761     The problem is that there is a test that checked if a matching
12762     PHY was found, and if not, it printed the non-matching ID.
12763     But since there will always be a match (on the generic PHY,
12764     worst case), this test will never trip.
12765
12766     In the case of a misconfigured PHY address, or of a PHY that
12767     isn't explicitly supported outside of the generic support,
12768     you will never see the ID of 0xffffffff, or the ID of the
12769     real (but unsupported) chip.  It will silently fall through
12770     onto the generic support.
12771
12772     This change makes that test useful again, and ensures that
12773     the selection of generic PHY support doesn't happen without
12774     some sort of notice.  It also makes it explicitly clear that
12775     the generic PHY must be last in the PHY table.
12776
12777     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12778     Acked-by: Andy Fleming <afleming@freescale.com>
12779
12780 commit c279dfc10186ceba78d3862036f158750e86599a
12781 Author: Wolfgang Denk <wd@denx.de>
12782 Date:   Mon Mar 9 10:53:05 2009 +0100
12783
12784     SIMPC8313 board: fix out of tree building.
12785
12786     Fix typo in makefile which broke out of tree builds.
12787
12788     Also use expolicit "rm" instead of "ln -sf" which is known to be
12789     unreliable.
12790
12791     Signed-off-by: Wolfgang Denk <wd@denx.de>
12792     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12793
12794 commit 49b5aff491bd574935ecaf8545152066a25eff3d
12795 Author: ksi@koi8.net <ksi@koi8.net>
12796 Date:   Mon Feb 23 10:53:13 2009 -0800
12797
12798     Add eTSEC 1/2 IO override control (corrected)
12799
12800     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
12801
12802     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
12803
12804 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
12805 Author: Andy Fleming <afleming@freescale.com>
12806 Date:   Fri Mar 6 19:05:52 2009 -0600
12807
12808     fsl: Remove unnecessary debug printfs
12809
12810     These were left in accidentally, and are not really useful unless the
12811     code is as broken as it was when it was being developed.
12812
12813     Signed-off-by: Andy Fleming <afleming@freescale.com>
12814
12815 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
12816 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
12817 Date:   Tue Feb 24 02:37:59 2009 -0600
12818
12819     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
12820
12821     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
12822     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
12823
12824     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
12825
12826 commit a922fdb87af25c25c032424908dcf60fbf3250ea
12827 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12828 Date:   Tue Feb 24 06:13:10 2009 +0100
12829
12830     PXA: timer use do_div and simplify it
12831
12832     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12833
12834 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
12835 Author: Wolfgang Denk <wd@denx.de>
12836 Date:   Mon Mar 9 10:51:39 2009 +0100
12837
12838     SIMPC8313 board: fix out of tree building.
12839
12840     Fix typo in makefile which broke out of tree builds.
12841
12842     Also use expolicit "rm" instead of "ln -sf" which is known to be
12843     unreliable.
12844
12845     Signed-off-by: Wolfgang Denk <wd@denx.de>
12846
12847 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
12848 Author: Heiko Schocher <hs@denx.de>
12849 Date:   Tue Feb 24 11:30:51 2009 +0100
12850
12851     8360, kmeter1: added bootcount feature.
12852
12853     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
12854
12855     The bootcounter uses 8 bytes from the muram,
12856     because no other memory was found on this
12857     CPU for the bootcount feature. So we must
12858     correct the muram size in DTS before booting
12859     Linux.
12860
12861     This feature is actual only implemented for
12862     MPC8360, because not all 83xx CPU have qe,
12863     and therefore no muram, which this feature
12864     uses.
12865
12866     Signed-off-by: Heiko Schocher <hs@denx.de>
12867     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12868
12869 commit 1e7ed2565031e01abc18c713030a0a9829c07684
12870 Author: Heiko Schocher <hs@denx.de>
12871 Date:   Tue Feb 24 11:30:48 2009 +0100
12872
12873     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
12874
12875     old code implemented the QE_ENET10 errata only for Silicon
12876     Revision 2.0. New code reads now the Silicon Revision
12877     register and sets dependend on the Silicon Revision the
12878     values as advised in the QE_ENET10 errata.
12879
12880     Signed-off-by: Heiko Schocher <hs@denx.de>
12881     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12882
12883 commit 605f78e34a3f0103693b891f2573edd352e7d495
12884 Author: Heiko Schocher <hs@denx.de>
12885 Date:   Tue Feb 24 11:30:44 2009 +0100
12886
12887     83xx, kmeter1: updates for 2009.03
12888
12889     - HRCW update
12890       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
12891       HRCWH_LALE_EARLY added
12892     - DDR-SDRAM settings modified. This solves sporadically
12893       problems with this memory.
12894     - CS1 now 128 MB window size
12895     - CS3 now 512 MB window size
12896     - PRAM activated
12897     - MTDPARTS_DEFAULT defined
12898     - CONFIG_HOSTNAME added
12899     - MONITOR_LEN now 384 KB
12900
12901     Signed-off-by: Heiko Schocher <hs@denx.de>
12902     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12903
12904 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
12905 Author: Heiko Schocher <hs@denx.de>
12906 Date:   Tue Feb 24 11:30:40 2009 +0100
12907
12908     83xx, kmeter1: autodetect size of DDR II RAM
12909
12910     it is possible that some board variants have different DDR II
12911     RAM sizes. So we autodetect the size of the assembled RAM.
12912
12913     Signed-off-by: Heiko Schocher <hs@denx.de>
12914     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12915
12916 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
12917 Author: Heiko Schocher <hs@denx.de>
12918 Date:   Tue Feb 24 11:30:37 2009 +0100
12919
12920     83xx, i2c: add mux support for fsl_i2c
12921
12922     This patch adds I2C mux support for the fsl_i2c driver. This
12923     allows you to add "new" i2c busses, which are reached over
12924     i2c muxes. For more infos, please look in the README and
12925     search for CONFIG_I2C_MUX.
12926
12927     Signed-off-by: Heiko Schocher <hs@denx.de>
12928     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12929
12930 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
12931 Author: Heiko Schocher <hs@denx.de>
12932 Date:   Tue Feb 24 11:30:34 2009 +0100
12933
12934     83xx, kmeter1: add I2C, dtt, eeprom support
12935
12936     This patch adds I2C support for the Keymile kmeter1 board.
12937     It uses the First I2C Controller from the CPU, for
12938     accessing 4 temperature sensors, an eeprom with IVM data
12939     and the booteeprom over a pca9547 mux.
12940
12941     Signed-off-by: Heiko Schocher <hs@denx.de>
12942     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12943
12944 commit db1d72afd77287bc8577210f3f71ab249dcf146f
12945 Author: Heiko Schocher <hs@denx.de>
12946 Date:   Tue Feb 24 11:30:30 2009 +0100
12947
12948     i2c, dtt: move dtt_init () to board_init_r ()
12949
12950     In case where a board not uses CONFIG_POST, it is not
12951     necessary to init the DTTs when running from flash.
12952
12953     Signed-off-by: Heiko Schocher <hs@denx.de>
12954     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12955
12956 commit 5b0055547f0246908b79cc300170d87380b69e18
12957 Author: Dave Liu <daveliu@freescale.com>
12958 Date:   Wed Feb 25 12:31:32 2009 +0800
12959
12960     83xx: Fix some bugs in spd sdram code
12961
12962     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
12963       tRTP according to DDR2 JEDEC spec.
12964     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
12965     3. add the support of DDR2-533,667,800 DIMMs
12966     4. cpo
12967     5. make the AL to min to gain better performance.
12968
12969     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
12970     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
12971
12972     items 1, 2 and 5:
12973     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
12974
12975     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
12976     Signed-off-by: Dave Liu <daveliu@freescale.com>
12977     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12978
12979 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
12980 Author: Valeriy Glushkov <gvv@lstec.com>
12981 Date:   Wed Feb 4 18:27:49 2009 +0200
12982
12983     MPC8349ITX: several config issues fixed
12984
12985     The previous version rebooted forever with DDR bigger than 256MB.
12986     Access the DS1339 RTC chip is on I2C1 bus.
12987     Allow DHCP.
12988
12989     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
12990     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12991
12992 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
12993 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12994 Date:   Thu Feb 19 18:20:39 2009 +0300
12995
12996     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
12997
12998     The SerDes initialization should be finished before negating the reset
12999     signal according to the reference manual. This isn't an issue on real
13000     hardware, but we'd better stick to the specifications anyway.
13001
13002     Suggested-by: Liu Dave <DaveLiu@freescale.com>
13003     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13004     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13005
13006 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
13007 Author: Heiko Schocher <hs@denx.de>
13008 Date:   Wed Feb 25 12:28:32 2009 +0100
13009
13010     i2c, dtt: move dtt_init () to board_init_r ()
13011
13012     it is not necessary to init the DTTs so early,
13013     so move this init to board_init_r ().
13014
13015     Signed-off-by: Heiko Schocher <hs@denx.de>
13016
13017 commit 00cc5595a7caac8066b408774383a956c2e26797
13018 Author: Anatolij Gustschin <agust@denx.de>
13019 Date:   Wed Feb 25 20:28:13 2009 +0100
13020
13021     lcd: Fix compilation warning in common/lcd.c
13022
13023     Fix following warning while compilation for mcc200 board:
13024
13025     lcd.c: In function 'lcd_display_bitmap':
13026     lcd.c:625: warning: unused variable 'cmap'
13027
13028     Signed-off-by: Anatolij Gustschin <agust@denx.de>
13029
13030 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
13031 Author: Graeme Russ <graeme.russ@gmail.com>
13032 Date:   Tue Feb 24 21:11:24 2009 +1100
13033
13034     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
13035
13036     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
13037
13038     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
13039
13040 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
13041 Author: Mike Frysinger <vapier@gentoo.org>
13042 Date:   Mon Feb 23 10:29:47 2009 -0500
13043
13044     smc911x: split out useful defines/functions into local header
13045
13046     The smc911x driver has a lot of useful defines/functions which can be used
13047     by pieces of code (such as example eeprom programmers).  Rather than
13048     forcing each place to duplicate these defines/functions, split them out
13049     of the smdc911x driver into a local header.
13050
13051     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13052     Acked-by: Ben Warren <biggerbadderben@gmail.com>
13053     CC: Sascha Hauer <s.hauer@pengutronix.de>
13054     CC: Guennadi Liakhovetski <lg@denx.de>
13055     CC: Magnus Lilja <lilja.magnus@gmail.com>
13056     CC: Ben Warren <biggerbadderben@gmail.com>
13057
13058 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
13059 Author: Guennadi Liakhovetski <lg@denx.de>
13060 Date:   Tue Feb 24 10:44:02 2009 +0100
13061
13062     ARM: add an "eet" variant of the imx31_phycore board
13063
13064     The "eet" variant of the imx31_phycore board has an OLED display, using a
13065     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
13066     chip-select for it. With this configuration you can display 256 colour BMP
13067     images in 16-bit RGB (RGB565) LCD mode.
13068
13069     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13070     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13071
13072 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
13073 Author: Guennadi Liakhovetski <lg@denx.de>
13074 Date:   Fri Feb 6 10:37:57 2009 +0100
13075
13076     video: add an i.MX31 framebuffer driver
13077
13078     Add a driver for the Synchronous Display Controller and the Display
13079     Interface on i.MX31, using IPU for DMA channel setup. So far only
13080     displaying of bitmaps is supported, no text output.
13081
13082     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13083     Acked-by: Anatolij Gustschin <agust@denx.de>
13084
13085 commit b245e65ee3c4cce3ccf008a21f4528239655876c
13086 Author: Guennadi Liakhovetski <lg@denx.de>
13087 Date:   Fri Feb 6 10:37:53 2009 +0100
13088
13089     LCD: support 8bpp BMPs on 16bpp displays
13090
13091     This patch also simplifies some ifdefs in lcd.c, introduces a generic
13092     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
13093     over to.
13094
13095     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13096     Acked-by: Anatolij Gustschin <agust@denx.de>
13097
13098 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
13099 Author: Mark Jackson <mpfj@mimc.co.uk>
13100 Date:   Fri Feb 6 10:37:49 2009 +0100
13101
13102     Add 16bpp BMP support
13103
13104     This patch adds 16bpp BMP support to the common lcd code.
13105
13106     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
13107
13108     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
13109     this to other platforms should be a simple task !!
13110
13111     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13112     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13113     Acked-by: Anatolij Gustschin <agust@denx.de>
13114
13115 commit 689551c5ff1b394b88412f3df22144e79468d3a9
13116 Author: Guennadi Liakhovetski <lg@denx.de>
13117 Date:   Fri Feb 6 10:37:41 2009 +0100
13118
13119     A driver for the S6E63D6 SPI display controller from Samsung
13120
13121     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
13122     It only provides access to controller's registers so the client can freely
13123     configure it.
13124
13125     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13126     Acked-by: Anatolij Gustschin <agust@denx.de>
13127
13128 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
13129 Author: Guennadi Liakhovetski <lg@denx.de>
13130 Date:   Fri Feb 13 09:26:40 2009 +0100
13131
13132     i.MX31: support GPIO as a chip-select in the mxc_spi driver
13133
13134     Some SPI devices have special requirements on chip-select handling.
13135     With this patch we can use a GPIO as a chip-select and strictly follow
13136     the SPI_XFER_BEGIN and SPI_XFER_END flags.
13137
13138     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13139     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13140
13141 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
13142 Author: Guennadi Liakhovetski <lg@denx.de>
13143 Date:   Sat Feb 7 01:18:07 2009 +0100
13144
13145     i.MX31: add a simple gpio driver
13146
13147     This is a minimal driver, so far only managing output. It will
13148     be used by the mxc_spi.c driver.
13149
13150     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13151     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13152
13153 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
13154 Author: Guennadi Liakhovetski <lg@denx.de>
13155 Date:   Sat Feb 7 00:09:12 2009 +0100
13156
13157     i.MX31: fix SPI driver for shorter than 32 bit
13158
13159     Fix setting the SPI Control register, 8 and 16-bit transfers
13160     and a wrong pointer in the free routine in the mxc_spi driver.
13161
13162     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13163     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13164
13165 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
13166 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13167 Date:   Thu Feb 19 18:20:52 2009 +0300
13168
13169     mpc83xx: MPC837XERDB: Add PCIe support
13170
13171     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
13172     slots. Let's support them.
13173
13174     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13175     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13176
13177 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
13178 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13179 Date:   Thu Feb 19 18:20:50 2009 +0300
13180
13181     mpc83xx: PCI: Fix hard-coded first_busno value
13182
13183     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
13184     erroneously re-use PCI0's first_busno for PCI1 hoses.
13185
13186     NOTE: The patch is untested. All MPC83xx FSL boards I have have
13187     PCI1 in miniPCI form, for which I don't have any cards handy.
13188
13189     But looking in cpu/mpc85xx/pci.c:
13190     ...
13191     #ifdef CONFIG_MPC85XX_PCI2
13192             hose = &pci_hose[1];
13193
13194             hose->first_busno = pci_hose[0].last_busno + 1;
13195
13196     And considering that we do the same for MPC83xx PCI-E support,
13197     I think this patch is correct.
13198
13199     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13200     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13201
13202 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
13203 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13204 Date:   Thu Feb 19 18:20:46 2009 +0300
13205
13206     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
13207
13208     This patch fixes copy-paste issue: pci_hose[0]'s first and last
13209     busnos were used to fixup pci1's nodes.
13210
13211     We don't see this bug triggering only because Linux reenumerate
13212     buses anyway.
13213
13214     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13215     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13216
13217 commit b24a99f6666ac278ec9f9c1334518af828833d19
13218 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13219 Date:   Thu Feb 19 18:20:44 2009 +0300
13220
13221     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
13222
13223     This patch fixes an issue in config space read accessors: we should
13224     fill-in the value even if we fail (e.g. skipping devices), otherwise
13225     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
13226
13227     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13228     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13229
13230 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
13231 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13232 Date:   Thu Feb 19 18:20:42 2009 +0300
13233
13234     mpc83xx: PCIe: Don't start bus enumeration at 0
13235
13236     Currently we assign first_busno = 0 for the first PCIe hose, but this
13237     scheme won't work if we have ordinary PCI hose already registered (its
13238     first_busno value is 0 too).
13239
13240     The old code worked fine only because we have PCI disabled on
13241     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
13242     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
13243     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
13244     triggers.
13245
13246     So, to fix the issue, we should use pci_last_busno() + 1 for the
13247     first_busno (i.e. last available busno).
13248
13249     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
13250     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13251     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13252
13253 commit cc2a8c7751ddbae3116660064f446888538b93e9
13254 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13255 Date:   Thu Feb 19 18:20:41 2009 +0300
13256
13257     PCI: Add pci_last_busno() helper
13258
13259     This is just a handy routine that reports last PCI busno: we walk
13260     down all the hoses and return last hose's last_busno.
13261
13262     Will be used by PCI/PCIe initialization code.
13263
13264     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
13265     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13266
13267 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
13268 Author: Becky Bruce <beckyb@kernel.crashing.org>
13269 Date:   Mon Feb 23 13:56:51 2009 -0600
13270
13271     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
13272
13273     Currently, we get 256MB as the default, but since all the 86xx
13274     board configs define a 2G BAT mapping for RAM, raise default
13275     to 2G.
13276
13277     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
13278     Acked-by: Jon Loeliger <jdl@freescale.com>
13279
13280 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
13281 Author: Becky Bruce <beckyb@kernel.crashing.org>
13282 Date:   Thu Feb 12 10:43:32 2009 -0600
13283
13284     mpc8641hpcn: Indicate 36-bit addr map in boot messages
13285
13286     If 36-bit addressing is enabled, print a message on the console
13287     when we boot.
13288
13289     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
13290
13291 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
13292 Author: Mark Jackson <mpfj-list@mimc.co.uk>
13293 Date:   Fri Feb 13 15:48:18 2009 +0000
13294
13295     Setup extra MIMC200 chip selects
13296
13297     Added code to setup the extra Flash and FRAM chip selects as used on the
13298     MIMC200 board.
13299
13300     V2 moves the init code from the common "cpu.c" file into the board specific
13301     setup file.
13302
13303     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13304     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13305
13306 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
13307 Author: Mark Jackson <mpfj@mimc.co.uk>
13308 Date:   Mon Nov 24 12:10:56 2008 +0000
13309
13310     MIMC200: tidy GCLK init code
13311
13312     Change the MIMC200 startup code to use the built-in (rather than
13313     hard-coded) funtions for setting up gclk outputs.
13314
13315     We'll also move the code to the new, more-appropriate
13316     board_postclk_init() routine.
13317
13318     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13319     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13320
13321 commit b423f94063bf04e92047ff85c7e53441eb3b712b
13322 Author: Olav Morken <olavmrk@gmail.com>
13323 Date:   Fri Jan 23 12:56:32 2009 +0100
13324
13325     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
13326
13327     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
13328     workaround, two NOPs can be inserted.
13329
13330     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
13331     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
13332     Signed-off-by: Olav Morken <olavmrk@gmail.com>
13333     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13334
13335 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
13336 Author: Gunnar Rangoy <gunnar@rangoy.com>
13337 Date:   Fri Jan 23 12:56:29 2009 +0100
13338
13339     AVR32: Make GPIO implmentation cpu dependent
13340
13341     There are some differences in the implementation of GPIO in the
13342     at32uc chip compared to the ap700x series.
13343
13344     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
13345     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
13346     Signed-off-by: Olav Morken <olavmrk@gmail.com>
13347     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13348
13349 commit a38de083d2979db3680f0d0978c509a172c8fa00
13350 Author: Olav Morken <olavmrk@gmail.com>
13351 Date:   Fri Jan 23 12:56:28 2009 +0100
13352
13353     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
13354
13355     The AVR32A architecture (which AT32UC3A-series is based on) has a
13356     different memory layout than the AVR32B-architecture. This patch moves
13357     addrspace.h to an arch-dependent directory in preparation for
13358     AT32UC3A-support. It also moves some address-space manipulation
13359     functions from io.h to addrspace.h.
13360
13361     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
13362     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
13363     Signed-off-by: Olav Morken <olavmrk@gmail.com>
13364     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13365
13366 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
13367 Author: Olav Morken <olavmrk@gmail.com>
13368 Date:   Fri Jan 23 12:56:27 2009 +0100
13369
13370     AVR32: Make cacheflush cpu-dependent
13371
13372     The AT32UC3A series of processors doesn't contain any cache, and issuing
13373     cache control instructions on those will cause an exception. This commit
13374     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
13375
13376     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
13377     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
13378     Signed-off-by: Olav Morken <olavmrk@gmail.com>
13379     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13380
13381 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
13382 Author: Heiko Schocher <hs@denx.de>
13383 Date:   Tue Feb 10 09:38:52 2009 +0100
13384
13385     netloop: speed up NetLoop
13386
13387     NetLoop polls every cycle with getenv some environment variables.
13388     This is horribly slow, especially when the environment is big.
13389
13390     This patch reads only the environment variables in NetLoop,
13391     when they were changed.
13392
13393     Also moved the init part of the NetLoop function in a seperate
13394     function.
13395
13396     Signed-off-by: Heiko Schocher <hs@denx.de>
13397     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13398
13399 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
13400 Author: Mike Frysinger <vapier@gentoo.org>
13401 Date:   Mon Dec 22 02:56:07 2008 -0500
13402
13403     smc911x_eeprom: new example app for managing newer SMC parts
13404
13405     A forward port of the last version to work with the newer smc911x driver.
13406     I only have a board with a LAN9218 part on it, so that is the only one
13407     I've tested.  But there isn't anything in this that would make it terribly
13408     chip specific afaik.
13409
13410     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13411     CC: Sascha Hauer <s.hauer@pengutronix.de>
13412     CC: Guennadi Liakhovetski <lg@denx.de>
13413     CC: Magnus Lilja <lilja.magnus@gmail.com>
13414     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13415
13416 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
13417 Author: Pieter Henning <phenning@vastech.co.za>
13418 Date:   Sun Feb 22 23:17:15 2009 -0800
13419
13420     Added Vitesse VSC8211 definitions to TSEC driver
13421
13422     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
13423     the phy_info list in tsec.c
13424
13425     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
13426     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13427
13428 commit 32688e572ff96715b41420e9a7f280db6c399b65
13429 Author: Wolfgang Denk <wd@denx.de>
13430 Date:   Mon Feb 23 00:22:21 2009 +0100
13431
13432     Update CHANGELOG;  Prepare 2009.03-rc1
13433
13434     Signed-off-by: Wolfgang Denk <wd@denx.de>
13435
13436 commit 80b827c2b78329c6503b271e43d9eb693d644710
13437 Author: Wolfgang Denk <wd@denx.de>
13438 Date:   Sun Feb 22 23:45:40 2009 +0100
13439
13440     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
13441
13442     The file was generated from building versatile_defconfig.
13443
13444     Signed-off-by: Wolfgang Denk <wd@denx.de>
13445
13446 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
13447 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13448 Date:   Sun Feb 22 14:24:11 2009 +0900
13449
13450     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
13451
13452     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
13453     like this:
13454
13455     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
13456     Configuring for dbau1x00 board...
13457     au1x00_eth.c: In function 'au1x00_send':
13458     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13459     au1x00_eth.c: In function 'au1x00_recv':
13460     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13461     au1x00_eth.c: In function 'au1x00_init':
13462     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13463     au1x00_eth.c: In function 'au1x00_recv':
13464     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13465     au1x00_eth.c: In function 'au1x00_init':
13466     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13467     au1x00_eth.c: In function 'au1x00_send':
13468     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
13469
13470     We're passing a volatile pointer to a function which is expecting a non-
13471     volatile pointer.  That's potentially dangerous, so gcc warns about it.
13472     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
13473
13474     To fix this, we add a volatile attribute to the argument in question.
13475     The virt_to_phys function in Linux kernel also does the same thing.
13476
13477     Signed-off-by: Stefan Roese <sr@denx.de>
13478     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13479
13480 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
13481 Author: Dirk Behme <dirk.behme@googlemail.com>
13482 Date:   Fri Feb 20 17:51:28 2009 +0100
13483
13484     OMAP3: Clean up MMC code
13485
13486     Clean up OMAP3 MMC code:
13487
13488     * Convert register access to struct & readx/writex style
13489     * Replace hardcode values by macros
13490     * Remove macro defined twice
13491
13492     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13493
13494 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
13495 Author: Dirk Behme <dirk.behme@googlemail.com>
13496 Date:   Thu Feb 12 18:55:43 2009 +0100
13497
13498     OMAP3: Pandora: Update pin mux
13499
13500     Clock pin must have input enabled for MMC3 to work.
13501     Also enable pull-ups for cmd/data lines to be consistent
13502     with remaining MMC host pin setup.
13503
13504     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
13505
13506 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
13507 Author: Dirk Behme <dirk.behme@googlemail.com>
13508 Date:   Thu Feb 12 18:55:42 2009 +0100
13509
13510     OMAP3: Add OMAP3 auto detection
13511
13512     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
13513     and removes hardcoded values.
13514
13515     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
13516     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13517
13518 commit f956fd0338f4990793a10f767929ba4963665261
13519 Author: Dirk Behme <dirk.behme@googlemail.com>
13520 Date:   Thu Feb 12 18:55:41 2009 +0100
13521
13522     OMAP3: Beagle: Add board revision detection
13523
13524     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
13525     which might need different software handling. For this, GPIO pin 171 (GPIO
13526     module 6, offset 11) can be used to check for board revision. If this pin
13527     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
13528
13529     To handle board differences you can call function beagle_get_revision().
13530     E.g.:
13531
13532     if (beagle_get_revision()) {
13533
13534     /* do special revision C stuff here */
13535
13536     }
13537
13538     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13539
13540 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
13541 Author: Dirk Behme <dirk.behme@googlemail.com>
13542 Date:   Thu Feb 12 18:55:40 2009 +0100
13543
13544     OMAP3: Overo: Clean up pin mux and GPIO configuration
13545
13546     * Make Overo GPIO114 an input for touchscreen PENDOWN
13547     * Make Overo GPIO144-147 readable
13548     * Make Overo EHCI pinmux match beagle rev c setup
13549     * Adjust pinmux for SMSC911X network chip support
13550     * Remove unnecessary GPIO setup
13551     * Fix merge error in Makefile
13552
13553     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
13554     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13555
13556 commit 2579019b8248e5f166e60e37065766efc8a49dbc
13557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13558 Date:   Sun Feb 22 17:08:41 2009 +0100
13559
13560     nmdk8815: fix onenand support
13561
13562     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13563
13564 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
13565 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13566 Date:   Sun Feb 22 17:56:50 2009 +0100
13567
13568     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
13569
13570     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13571
13572 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
13573 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13574 Date:   Sun Feb 22 17:49:43 2009 +0100
13575
13576     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
13577
13578     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13579
13580 commit 4f5728987f4f9f7845688482aa2b7f2127768165
13581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13582 Date:   Sun Feb 22 15:49:28 2009 +0100
13583
13584     arm: add uart dcc support
13585
13586     Serial driver via the EmbeddedICE macrocell's DCC channel using
13587     co-processor 14.
13588
13589     It does include a timeout to ensure that the system does not
13590     totally freeze when there is nothing connected to read.
13591
13592     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13593
13594 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
13595 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13596 Date:   Fri Nov 21 14:35:56 2008 -0500
13597
13598     ARM DaVinci: Add common peripherals and modules enable functions.
13599
13600     Taken all the duplicated code for enabling common modules and apply
13601     software workarounds from the board specific code into common
13602     functions. Also added comments explaining the workarounds
13603     (from TI errata documents) and replaced some numerical bit numbers
13604     with more meaningful defines.
13605
13606     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
13607
13608 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
13609 Author: Alessandro Rubini <rubini@unipv.it>
13610 Date:   Mon Feb 9 15:53:33 2009 +0100
13611
13612     Enable Ethernet for Nomadik 8815 Evaluation Kit
13613
13614     This trivially enables Ethernet support in the debug board
13615     by setting up the proper chip select.
13616
13617     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13618     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
13619
13620 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
13621 Author: Alessandro Rubini <rubini@unipv.it>
13622 Date:   Mon Feb 9 15:53:31 2009 +0100
13623
13624     Nand driver for Nomadik SoC
13625
13626     This driver implements the ECC algorithm described in
13627     the CPU data sheet and uses the OOB layout chosen in
13628     already-released development systems (shipped with a custom-made
13629     u-boot 1.3.1).
13630
13631     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13632     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
13633
13634 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
13635 Author: Alessandro Rubini <rubini@unipv.it>
13636 Date:   Mon Feb 9 15:53:31 2009 +0100
13637
13638     Added nomadik.h header
13639
13640     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13641     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
13642
13643 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
13644 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
13645 Date:   Wed Oct 29 20:05:18 2008 +0900
13646
13647     r8a66597-hcd: fix cannot use external hub
13648
13649     Fix the problem that cannot use external hub, because this driver
13650     did not control correctly a DEVADDx register.
13651
13652     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
13653     Signed-off-by: Remy Bohmer <linux@bohmer.net>
13654
13655 commit e1ffaee728190e76a4596a3579d94e730143585f
13656 Author: Mike Frysinger <vapier@gentoo.org>
13657 Date:   Thu Feb 19 01:20:27 2009 -0500
13658
13659     Blackfin: disable syscontrol code for now
13660
13661     Looks like the initcode updates fell out of order during my merges.  The
13662     patch that really fixes up this code is part of power-on overhaul and so
13663     is too large for merging at this point.  Instead, we can disable the code
13664     as no currently in-tree board depends on it.  The next merge window will
13665     fix things up properly.
13666
13667     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13668
13669 commit 1b228d68f54832edd867ef98520f760f68192ab7
13670 Author: Mike Frysinger <vapier@gentoo.org>
13671 Date:   Thu Feb 19 01:19:49 2009 -0500
13672
13673     Blackfin: bf537-stamp: fix I2C board defines
13674
13675     The previous merge for cleaning up the I2C driver incorrectly reverted the
13676     CFG_xxx rename for some of the I2C defines.
13677
13678     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13679     Signed-off-by: Heiko Schocher <hs@denx.de>
13680
13681 commit 09fee8e8677a6265e89144ccc163bf00e321769e
13682 Author: Wolfgang Denk <wd@denx.de>
13683 Date:   Sun Feb 22 01:19:52 2009 +0100
13684
13685     Coding Style cleanup; update CHANGELOG
13686
13687     Signed-off-by: Wolfgang Denk <wd@denx.de>
13688
13689 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
13690 Author: Wolfgang Denk <wd@denx.de>
13691 Date:   Sun Feb 22 01:17:47 2009 +0100
13692
13693     Makefile: fix cleanup
13694
13695     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
13696     to adapt the cleanup rules in the Makefile
13697
13698     Signed-off-by: Wolfgang Denk <wd@denx.de>
13699
13700 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
13701 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13702 Date:   Fri Feb 20 13:01:56 2009 -0500
13703
13704     Cleanup the comment for m68k linux boot argument passing.
13705
13706     This patch clarifies the way m68k passes linux boot argument.
13707     The one gotcha here is that the assembly instruction that
13708     the compiler uses to jump to the kernel is 'jsr' which pushes the
13709     program counter for the instruction after the jsr into the stack pointer.
13710
13711     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13712     Signed-off-by: Wolfgang Denk <wd@denx.de>
13713
13714 commit 4d41650eec959668280a612467bd95c7b8398513
13715 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
13716 Date:   Tue Feb 10 16:44:45 2009 +0000
13717
13718     sh: Fix rsk7203 in tree build
13719
13720     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
13721
13722 commit fca0cecff73db99d99ad094cca7980472b8a11b5
13723 Author: Minkyu Kang <mk7.kang@samsung.com>
13724 Date:   Wed Feb 18 09:05:52 2009 +0900
13725
13726     bootm: Reduce the unnecessary memmove
13727
13728     Although load address and image start address are same address,
13729     bootm command always does memmove.
13730     That is unnecessary memmove and can be taken few milliseconds
13731     (about 500 msec to 1000 msec).
13732     If skip this memmove, we can reduce the boot time.
13733
13734     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
13735
13736 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
13737 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
13738 Date:   Sun Feb 15 22:29:15 2009 +0100
13739
13740     fpga: Fix Spartan III FPGA booting
13741
13742     This patch does some minor fixing of the Xilinx Spartan III
13743     FPGA boot code:
13744
13745     - Fixed call order of post configuration callback and
13746       success message printing (result of copy-paste?)
13747     - remove obsolete comment
13748     - minor coding style cleanup
13749
13750     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13751
13752 commit 3818b677641038d27b2663fbd6771ad38c932f86
13753 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
13754 Date:   Sun Feb 15 22:28:36 2009 +0100
13755
13756     fpga: Fix Spartan II FPGA booting
13757
13758     This patch does some minor fixing of the Xilinx Spartan II
13759     FPGA boot code:
13760
13761     - Fixed call order of post configuration callback and
13762       success message printing (result of copy-paste?)
13763     - relocate post configuration callback only when it
13764       is implemented
13765     - remove obsolete comment
13766     - minor coding style cleanup
13767
13768     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13769
13770 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
13771 Author: Mike Frysinger <vapier@gentoo.org>
13772 Date:   Wed Feb 11 20:26:52 2009 -0500
13773
13774     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
13775
13776     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13777
13778 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
13779 Author: Derek Ou <dou@siconix.com>
13780 Date:   Tue Feb 3 16:00:07 2009 -0700
13781
13782     lcd_putc bug fix for tab.
13783
13784     Signed-off-by: Derek Ou <dou@siconix.com>
13785
13786 commit 35c9e14d8096e519fe76c953a43d52a09617345c
13787 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
13788 Date:   Mon Feb 2 09:46:21 2009 +0900
13789
13790     MIPS: cpu/mips/Makefile: Add a missing START line
13791
13792     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
13793     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
13794     line.  This patch puts it back.
13795
13796     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
13797
13798 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
13799 Author: Wolfgang Denk <wd@denx.de>
13800 Date:   Sat Feb 21 21:51:21 2009 +0100
13801
13802     Enable ext2 support for TQM8xxL/M based boards
13803
13804     Signed-off-by: Wolfgang Denk <wd@denx.de>
13805
13806 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
13807 Author: Tom Rix <Tom.Rix@windriver.com>
13808 Date:   Fri Feb 20 03:47:50 2009 +0100
13809
13810     ARM:PXA Use new definitions in mmc.h
13811
13812     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
13813     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13814
13815 commit 682beeac34dc9ab18fab58b26973d2e29d113717
13816 Author: Andy Fleming <afleming@freescale.com>
13817 Date:   Fri Feb 20 03:47:50 2009 +0100
13818
13819     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
13820
13821     These names are being taken over by the new MMC framework.  Hopefuly
13822     the PXA can be easily ported, and these functions will go away entirely.
13823
13824     Signed-off-by: Andy Fleming <afleming@freescale.com>
13825     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13826
13827 commit b03d92e5584935886ff91d5aa0755dc8888b7187
13828 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13829 Date:   Fri Feb 20 03:47:50 2009 +0100
13830
13831     pxa: move mmc drivers to drivers/mmc
13832
13833     introduce new macro CONFIG_PXA_MMC to activate it
13834
13835     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13836
13837 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
13838 Author: Tom Rix <Tom.Rix@windriver.com>
13839 Date:   Thu Feb 19 19:27:22 2009 -0600
13840
13841     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
13842
13843     These structures are defined in the common mmc.h
13844
13845     This was compile checked on cerf250.
13846
13847 commit 94a3312920b6f9b5da27309549fb73650718c10a
13848 Author: Micha Kalfon <smichak.uv@gmail.com>
13849 Date:   Wed Feb 11 19:50:11 2009 +0200
13850
13851     pxa: fixing get_timer to return time in miliseconds.
13852
13853     Fixing the get_timer function to return time in miliseconds instead of
13854     ticks. Also fixed PXA boards to use the conventional value of 1000 for
13855     CONFIG_SYS_HZ.
13856
13857     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
13858
13859 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
13860 Author: Tom Rix <Tom.Rix@windriver.com>
13861 Date:   Thu Feb 19 16:45:43 2009 -0600
13862
13863     ARM:OMAP3 Change mmc_init to mmc_legacy_init
13864
13865     omap3_mmc.c was changed to define mmc_legacy_init.
13866     Remove unused functions.
13867
13868     Compile tested on all arm
13869     Runtime tested on Zoom1.
13870
13871     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
13872
13873 commit 9e80bb21629988063574f88ca0d28baadff4d963
13874 Author: Heiko Schocher <hs@denx.de>
13875 Date:   Thu Feb 19 17:23:58 2009 +0100
13876
13877     82xx, mgcoge: updates for 2009.03
13878
13879     - activate CS4 for accessing the FPGA
13880     - activate Rx buf len > 1 on SMC
13881     - pram activated
13882     - MTDPARTS_DEFAULT defined
13883     - update the size of the flashes in the DTS
13884       before booting Linux
13885     - MONITOR_LEN updated to 384k
13886     - added CONFIG_HOSTNAME
13887     - added CONFIG_ENV_BUFFER_PRINT
13888     - Environment size reduced to 16k
13889
13890     Signed-off-by: Heiko Schocher <hs@denx.de>
13891
13892 commit df909554e2401f307925e1bd45d576e4176d9de9
13893 Author: Heiko Schocher <hs@denx.de>
13894 Date:   Thu Feb 19 17:24:01 2009 +0100
13895
13896     8xx, mgsuvd: updates for 2009.03
13897
13898     - activate Rx buf len > 1 on SMC
13899     - pram activated
13900     - MTDPARTS_DEFAULT defined
13901     - update the size of the flash in the DTS
13902       before booting Linux
13903     - MONITOR_LEN updated to 384k
13904     - added CONFIG_HOSTNAME
13905     - added CONFIG_ENV_BUFFER_PRINT
13906     - Environment size reduced to 16k
13907
13908     Signed-off-by: Heiko Schocher <hs@denx.de>
13909
13910 commit 3511b4e208e12be85b532866f1c660aa2e021557
13911 Author: Dirk Behme <dirk.behme@googlemail.com>
13912 Date:   Wed Feb 18 19:59:39 2009 +0100
13913
13914     MMC: Don't use new framework code if not enabled
13915
13916     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
13917     isn't enabled.
13918
13919     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
13920
13921 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
13922 Author: Wolfgang Denk <wd@denx.de>
13923 Date:   Thu Feb 19 13:53:29 2009 +0100
13924
13925     TQM8xxL: make some room in low memory for future needs
13926
13927     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
13928     small boot sectors in the flash. This patch makes some room in the
13929     first sector to prepare for a size increase of lib_generic/vsprintf.o
13930     by a future patch.
13931
13932     Signed-off-by: Wolfgang Denk <wd@denx.de>
13933
13934 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
13935 Author: Kim Phillips <kim.phillips@freescale.com>
13936 Date:   Wed Feb 18 18:06:18 2009 -0600
13937
13938     README: remove duplicate entry
13939
13940     it's been around since the original commit (2ad6b513) that added two
13941     identical entries.
13942
13943     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13944
13945 commit 1bba30efe1717bea13026e15c7c7d906419fac69
13946 Author: Wolfgang Denk <wd@denx.de>
13947 Date:   Thu Feb 19 00:41:08 2009 +0100
13948
13949     Coding style cleanup, update CHANGELOG
13950
13951     Signed-off-by: Wolfgang Denk <wd@denx.de>
13952
13953 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
13954 Author: Kim Phillips <kim.phillips@freescale.com>
13955 Date:   Wed Feb 18 17:43:59 2009 -0600
13956
13957     sata_sil3114: fix compiler warning
13958
13959     judging from other printfs in the same file, it seems ata should be
13960     postpended with the interface number, not the address of the global
13961     port variable.  Fixes this for current u-boot-mpc83xx tree:
13962
13963     Configuring for MPC8349ITX board...
13964     sata_sil3114.c: In function 'sata_bus_softreset':
13965     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
13966     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
13967
13968     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13969
13970 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
13971 Author: Ron Madrid <ron_madrid@sbcglobal.net>
13972 Date:   Wed Feb 18 14:30:44 2009 -0800
13973
13974     Create configuration option for restricted ns16550 functions
13975
13976     This patch will create a configuration option for a minimum configuration for
13977     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
13978     configuration option to the SIMPC8313.h config file in order to fix the NAND
13979     bootstrap build error.  This option will exclude all functions with exception of
13980     NS16550_putc and NS16550_init.  This will be used primarily to save space and
13981     remove unused code from builds in which space is limited.
13982
13983     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
13984
13985 commit 7b0bc0219db8981613259473cf19699ac259b4fb
13986 Author: Kim Phillips <kim.phillips@freescale.com>
13987 Date:   Wed Feb 18 16:14:29 2009 -0600
13988
13989     mkconfig: include board config.h before asm/config.h
13990
13991     swapping the include order suppresses warnings for board configs
13992     that define their own CONFIG_MAX_MEM_MAPPED:
13993
13994     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
13995                     from /home/r1aaha/git/u-boot/include/common.h:35,
13996                     from simpc8313.c:26:
13997     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
13998     "CONFIG_MAX_MEM_MAPPED" redefined
13999     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
14000                     from /home/r1aaha/git/u-boot/include/common.h:35,
14001                     from simpc8313.c:26:
14002     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
14003     the location of the previous definition
14004
14005     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14006
14007 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
14008 Author: Wolfgang Denk <wd@denx.de>
14009 Date:   Wed Feb 18 21:35:38 2009 +0100
14010
14011     Fix build errors after making flash_get_info() non-static
14012
14013     Fix for these build problems:
14014     error: static declaration of 'flash_get_info' follows non-static declaration
14015
14016     Signed-off-by: Wolfgang Denk <wd@denx.de>
14017
14018 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
14019 Author: Stefan Roese <sr@denx.de>
14020 Date:   Wed Feb 18 13:18:00 2009 +0100
14021
14022     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
14023
14024     This patch fixes a problem recently seen on some 4xx platforms. For
14025     example on Kilauea PCIe slot #0.
14026
14027     Signed-off-by: Stefan Roese <sr@denx.de>
14028
14029 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
14030 Author: Stefan Roese <sr@denx.de>
14031 Date:   Wed Feb 18 14:05:37 2009 +0100
14032
14033     ppc4xx: Some more PMC405 coding-style cleanup
14034
14035     Signed-off-by: Stefan Roese <sr@denx.de>
14036
14037 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
14038 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
14039 Date:   Sun Feb 15 22:27:47 2009 +0100
14040
14041     ppc4xx: Update PMC405 board support
14042
14043     This patch prepares the good old PMC405 board support for
14044     upcoming PMC405V2 patches.
14045
14046     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14047     Signed-off-by: Stefan Roese <sr@denx.de>
14048
14049 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
14050 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
14051 Date:   Sun Feb 15 22:26:54 2009 +0100
14052
14053     ppc4xx: Cleanup PMC405 board support
14054
14055     This patch fixes coding style for PMC405 board support.
14056     Also some unneeded features/code is removed.
14057
14058     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14059     Signed-off-by: Stefan Roese <sr@denx.de>
14060
14061 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
14062 Author: Ilya Yanok <yanok@emcraft.com>
14063 Date:   Thu Feb 5 04:08:20 2009 +0100
14064
14065     qong: changes to Dave/DENX Qong configuration
14066
14067     1. Changes to the default environment:
14068       - "bootcmd" defined as "run flash_self"
14069       - "saveenv" command removed from "update"
14070       - "uboot" changed to "u-boot" (also in "load")
14071       - "addmtd" variable defined (and added to all boot commands)
14072     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
14073     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
14074     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
14075     with truncated "bootargs" environment variable.
14076
14077     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14078
14079 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
14080 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14081 Date:   Sun Feb 1 17:07:52 2009 +0100
14082
14083     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
14084
14085     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14086
14087 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
14088 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14089 Date:   Sun Feb 1 17:07:51 2009 +0100
14090
14091     common/console: coding style cleanup
14092
14093     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14094
14095 commit daaf74f176b548dfd34a9990231f4189201d57ba
14096 Author: Mike Frysinger <vapier@gentoo.org>
14097 Date:   Thu Jan 29 20:02:23 2009 -0500
14098
14099     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
14100
14101     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
14102     into the Makefile so we avoid pointless compiling of the file.
14103
14104     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14105
14106 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
14107 Author: Mike Frysinger <vapier@gentoo.org>
14108 Date:   Thu Jan 29 20:02:07 2009 -0500
14109
14110     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
14111
14112     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
14113     avoid pointless compiles.
14114
14115     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14116
14117 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
14118 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
14119 Date:   Thu Jan 29 10:35:40 2009 +0200
14120
14121     include/image.h: Ease grepping of image_* functions
14122
14123     Because the functions have been defined using macros, grepping for
14124     their definitions is not possible. This patch adds the real function
14125     names in comments.
14126
14127     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
14128     Acked-by: Mike Frysinger <vapier@gentoo.org>
14129
14130 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
14131 Author: Mike Frysinger <vapier@gentoo.org>
14132 Date:   Wed Jan 28 19:08:14 2009 -0500
14133
14134     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
14135
14136     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
14137     rather than a generic "env" command, or anything else related to the
14138     environment.  So, let's make sure the define is named accordingly.
14139
14140     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14141
14142 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
14143 Author: Valeriy Glushkov <gvv@lstec.com>
14144 Date:   Fri Jan 23 20:02:17 2009 +0200
14145
14146     disable imls command if no flash is defined
14147
14148     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
14149
14150     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
14151
14152 commit 923aa48126259c13de95131203f1d28bfa5cb889
14153 Author: Rafal Jaworowski <raj@semihalf.com>
14154 Date:   Fri Jan 23 13:27:18 2009 +0100
14155
14156     API: Improve glue mid-layer of the API demo application.
14157
14158     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
14159     read, which allows for better control and error handling (this introduces
14160     additional error code API_ESYSC returned by the glue mid-layer).
14161
14162     - Clean up definitions naming and usage.
14163
14164     - Other minor cosmetics.
14165
14166     Note these changes do not touch the API proper, so the interface between
14167     U-Boot and standalone applications remains unchanged.
14168
14169     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
14170
14171 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
14172 Author: Rafal Jaworowski <raj@semihalf.com>
14173 Date:   Fri Jan 23 13:27:17 2009 +0100
14174
14175     API: Only output test data when reading was successful.
14176
14177     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14178
14179 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
14180 Author: Rafal Jaworowski <raj@semihalf.com>
14181 Date:   Fri Jan 23 13:27:16 2009 +0100
14182
14183     API: Provide syscall entry point for the ARM architecture.
14184
14185     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14186     Acked-by: Rafal Jaworowski <raj@semihalf.com>
14187
14188 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
14189 Author: Rafal Jaworowski <raj@semihalf.com>
14190 Date:   Fri Jan 23 13:27:15 2009 +0100
14191
14192     API: Use stack pointer as API signature search hint in the glue layer.
14193
14194     De-hardcode range in RAM we search for the API signature. Instead use the stack
14195     pointer as a hint to narrow down the range in which the signature could reside
14196     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
14197     from stack area). Adjust PowerPC code in API demo to the new scheme.
14198
14199     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14200     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
14201
14202 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
14203 Author: Wolfgang Denk <wd@denx.de>
14204 Date:   Tue Feb 17 10:26:38 2009 +0100
14205
14206     TQM8260: fix locations of kernel and ramdisk images in flash
14207
14208     After introducing redundant environment the kernel images was
14209     overlapping with environment.
14210
14211     Signed-off-by: Wolfgang Denk <wd@denx.de>
14212
14213 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
14214 Author: Heiko Schocher <hs@denx.de>
14215 Date:   Wed Feb 11 19:26:15 2009 +0100
14216
14217     83xx: add missing TIMING_CFG1_CASLAT_* defines
14218
14219     Signed-off-by: Heiko Schocher <hs@denx.de>
14220     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14221
14222 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
14223 Author: Valeriy Glushkov <gvv@lstec.com>
14224 Date:   Thu Feb 5 14:35:21 2009 +0200
14225
14226     mpc8349itx: allow SATA boot from the onboard SIL1334
14227
14228     This patch allows using of SATA devices connected
14229     to the onboard PCI SIL1334 SATA controller.
14230
14231     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
14232     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14233
14234 commit e1ac387f4645499746856adc1aeaa9787da2eca6
14235 Author: Andy Fleming <afleming@freescale.com>
14236 Date:   Thu Oct 30 16:50:14 2008 -0500
14237
14238     83xx: Add eSDHC support on 8379 EMDS board
14239
14240     Signed-off-by: Andy Fleming <afleming@freescale.com>
14241
14242 commit 80522dc8369a89938369fbcee572e662373bc9a3
14243 Author: Andy Fleming <afleming@freescale.com>
14244 Date:   Thu Oct 30 16:51:33 2008 -0500
14245
14246     85xx: Add eSDHC support for 8536 DS
14247
14248     Signed-off-by: Andy Fleming <afleming@freescale.com>
14249
14250 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
14251 Author: Andy Fleming <afleming@freescale.com>
14252 Date:   Thu Oct 30 16:47:16 2008 -0500
14253
14254     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
14255
14256     This uses the new MMC framework
14257
14258     Some contributions by Dave Liu <daveliu@freescale.com>
14259
14260     Signed-off-by: Andy Fleming <afleming@freescale.com>
14261
14262 commit 272cc70b211e945e4413122aa73868f6ada732a5
14263 Author: Andy Fleming <afleming@freescale.com>
14264 Date:   Thu Oct 30 16:41:01 2008 -0500
14265
14266     Add MMC Framework
14267
14268     Here's a new framework (based roughly off the linux one) for managing
14269     MMC controllers.  It handles all of the standard SD/MMC transactions,
14270     leaving the host drivers to implement only what is necessary to
14271     deal with their specific hardware.
14272
14273     This also hooks the infrastructure into the PowerPC board code
14274     (similar to how the ethernet infrastructure now hooks in)
14275
14276     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
14277
14278     Signed-off-by: Andy Fleming <afleming@freescale.com>
14279
14280 commit 1de97f9856f697380cc504126ab92561ed238803
14281 Author: Andy Fleming <afleming@freescale.com>
14282 Date:   Thu Oct 30 16:31:39 2008 -0500
14283
14284     Eliminated arch-specific mmc header requirement
14285
14286     The current MMC infrastructure relies on the existence of an
14287     arch-specific header file.  This isn't necessary, and a couple
14288     drivers were forced to implement dummy files to meet this requirement.
14289     Instead, we move the stuff in those header files into a more appropriate
14290     place, and eliminate the stubs and the #include of asm/arch/mmc.h
14291
14292     Signed-off-by: Andy Fleming <afleming@freescale.com>
14293
14294 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
14295 Author: Andy Fleming <afleming@freescale.com>
14296 Date:   Thu Oct 30 16:21:00 2008 -0500
14297
14298     Convert mmc_init to mmc_legacy_init
14299
14300     This is to get it out of the way of incoming MMC framework
14301
14302     Signed-off-by: Andy Fleming <afleming@freescale.com>
14303
14304 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
14305 Author: Andy Fleming <afleming@freescale.com>
14306 Date:   Thu Oct 30 16:19:25 2008 -0500
14307
14308     Eliminate support for using MMC as memory
14309
14310     MMC cards are not memory, so we stop treating them that way.
14311
14312     Signed-off-by: Andy Fleming <afleming@freescale.com>
14313
14314 commit e1be0d25ecf494ae81245ca438738ba839d6329b
14315 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
14316 Date:   Sun Jan 4 08:46:38 2009 +0530
14317
14318     32bit BUg fix for DDR2 on 8572
14319
14320     This errata fix is required for 32 bit DDR2 controller on 8572.
14321     May  also be required for P10XX20XX platforms
14322
14323     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
14324
14325 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
14326 Author: Andy Fleming <afleming@freescale.com>
14327 Date:   Mon Feb 16 09:40:20 2009 -0600
14328
14329     TQM85xx: Fix a couple warnings in TQM8548 build
14330
14331     The ecm variable in sdram.c was being declared for all 8548, but only
14332     used by specific 8548 boards, so we make that variable require those
14333     specific boards, too
14334
14335     The nand code was using an index "i" into a table, and then re-using "i"
14336     to set addresses for each upm.  However, then it relied on the old value
14337     of i still being there to enable things.  Changed the second "i" to "j"
14338
14339     Signed-off-by: Andy Fleming <afleming@freescale.com>
14340
14341 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
14342 Author: Wolfgang Grandegger <wg@grandegger.com>
14343 Date:   Wed Feb 11 18:38:26 2009 +0100
14344
14345     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
14346
14347     This patch adds the workaround for erratum DDR20 according to MPC8548
14348     Device Errata document, Rev. 1: "CKE signal may not function correctly
14349     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
14350     processor version 2.1 and the work-around must be removed.
14351
14352     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14353
14354 commit 080408fdc71706adcb883d22125637c54f6010b1
14355 Author: Wolfgang Grandegger <wg@grandegger.com>
14356 Date:   Wed Feb 11 18:38:25 2009 +0100
14357
14358     MPC85xx: TQM8548: use cache for AG and BE variants
14359
14360     This patch makes accesses to the system memory cachable by removing the
14361     caching-inhibited and guarded flags from the relevant TLB entries for
14362     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
14363     are configured similarly.
14364
14365     This results in a big averall performace improvement. TFTP downloads,
14366     NAND Flash accesses, kernel boots, etc. are much faster.
14367
14368     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14369
14370 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
14371 Author: Wolfgang Grandegger <wg@grandegger.com>
14372 Date:   Wed Feb 11 18:38:24 2009 +0100
14373
14374     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
14375
14376     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
14377     module.
14378
14379     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
14380     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14381
14382 commit 88b0e88d186479349e5a2b771e82775109e10fb4
14383 Author: Wolfgang Grandegger <wg@grandegger.com>
14384 Date:   Wed Feb 11 18:38:23 2009 +0100
14385
14386     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
14387
14388     According to new TQM8548 timing specification:
14389     Refresh Recovery: 34 -> 53 clocks
14390     CKE pulse width:  1 -> 3 cycles
14391     Window for four activities: 13 -> 14 cycles
14392
14393     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
14394     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14395
14396 commit a865bcdac89278cac4dfc07dec8299403110499d
14397 Author: Wolfgang Grandegger <wg@grandegger.com>
14398 Date:   Wed Feb 11 18:38:22 2009 +0100
14399
14400     MPC85xx: TQM8548: add support for the TQM8548_AG module
14401
14402     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
14403     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
14404     with "$ make TQM8548_AG_config".
14405
14406     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14407
14408 commit ad7ee5d43b0db94079d56521dabca25674f28747
14409 Author: Wolfgang Grandegger <wg@grandegger.com>
14410 Date:   Wed Feb 11 18:38:21 2009 +0100
14411
14412     MPC85xx: TQM8548: add support for the TQM8548_BE module
14413
14414     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
14415     interface. With NAND support, the image is significantly larger and
14416     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
14417     module with "$ make TQM8548_BE_config".
14418
14419     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14420
14421 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
14422 Author: Wolfgang Grandegger <wg@grandegger.com>
14423 Date:   Wed Feb 11 18:38:20 2009 +0100
14424
14425     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
14426
14427     The TQM8548_AG module does not have the standard PCI/PCI-X interface
14428     connected but just the PCI Express interface . So far it was not
14429     possible to disable it without disabling the complete PCI interface
14430     (CONFIG_PCI) including PCI Express.
14431
14432     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14433
14434 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
14435 Author: Wolfgang Grandegger <wg@grandegger.com>
14436 Date:   Wed Feb 11 18:38:19 2009 +0100
14437
14438     MPC85xx: TQM85xx: fix flash protection for boot loader
14439
14440     As the reset vector is located at 0xfffffffc, all flash sectors from the
14441     beginning of the U-Boot binary to 0xffffffff must be protected. On the
14442     TQM8548-AG having small sectors at the end of the flash it happened that
14443     the last two sector were not protected and an "erase all" left an
14444     un-bootable system behind:
14445
14446     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
14447       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
14448       Erase timeout: 8192 ms, write timeout: 1 ms
14449
14450       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
14451       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
14452
14453     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
14454     board BSPs as well.
14455
14456     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14457
14458 commit a1c8a719262151f97119e76166043ee3da3f97b2
14459 Author: Peter Tyser <ptyser@xes-inc.com>
14460 Date:   Fri Feb 6 14:30:40 2009 -0600
14461
14462     86xx: Update CPU info output on bootup
14463
14464     - Update style of 86xx CPU information on boot to more closely
14465       match 85xx boards
14466     - Fix detection of 8641/8641D
14467     - Use strmhz() to display frequencies
14468     - Display L1 information
14469     - Display L2 cache size
14470     - Fixed CPU/SVR version output
14471
14472     == Before ==
14473     Freescale PowerPC
14474     CPU:
14475         Core: E600 Core 0, Version: 0.2, (0x80040202)
14476         System: Unknown, Version: 2.1, (0x80900121)
14477         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
14478         L2: Enabled
14479     Board: X-ES XPedite5170 3U VPX SBC
14480
14481     == After ==
14482     CPU:   8641D, Version: 2.1, (0x80900121)
14483     Core:  E600 Core 0, Version: 2.2, (0x80040202)
14484     Clock Configuration:
14485            CPU:1066.667 MHz, MPX:533.333 MHz
14486            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
14487     L1:    D-cache 32 KB enabled
14488            I-cache 32 KB enabled
14489     L2:    512 KB enabled
14490     Board: X-ES XPedite5170 3U VPX SBC
14491
14492     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14493
14494 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
14495 Author: Peter Tyser <ptyser@xes-inc.com>
14496 Date:   Thu Feb 5 11:25:24 2009 -0600
14497
14498     86xx: Update Global Utilities structure
14499
14500     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14501
14502 commit 4ef630df773e45806d701bf5d25c328778bb4cde
14503 Author: Peter Tyser <ptyser@xes-inc.com>
14504 Date:   Thu Feb 5 11:25:25 2009 -0600
14505
14506     86xx: Reset update
14507
14508     Update the 86xx reset sequence to try executing a board-specific reset
14509     function.  If the board-specific reset is not implemented or does not
14510     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
14511     reset procedure than the previous method and allows all board
14512     peripherals to be reset if needed.
14513
14514     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14515
14516 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
14517 Author: Kumar Gala <galak@kernel.crashing.org>
14518 Date:   Tue Feb 10 23:53:40 2009 -0600
14519
14520     fsl-ddr: Allow system to boot if we have more than 4G of memory
14521
14522     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
14523     an error and hang.  Instead of doing that since DDR is mapped in the
14524     lowest priority LAWs we setup the DDR controller and the max amount
14525     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
14526
14527     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14528     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
14529
14530 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
14531 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14532 Date:   Wed Jan 21 17:17:33 2009 -0600
14533
14534     mpc85xx: Add support for the P2020
14535
14536     Added various p2020 processor specific details:
14537     * SVR for p2020, p2020E
14538     * immap updates for LAWs and DDR on p2020
14539     * LAW defines related to p2020
14540
14541     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14542     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
14543     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14544
14545 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
14546 Author: Kumar Gala <galak@kernel.crashing.org>
14547 Date:   Tue Feb 10 17:36:15 2009 -0600
14548
14549     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
14550
14551     Added some info that is printed out when we boot to distiquish if we
14552     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
14553     different address maps.
14554
14555     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14556
14557 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
14558 Author: Andy Fleming <afleming@freescale.com>
14559 Date:   Fri Dec 5 20:10:22 2008 -0600
14560
14561     Fixup SGMII PHY ids in the device tree
14562
14563     The device tree's PHY addresses need to be fixed up if we're using the
14564     SGMII Riser Card.
14565
14566     The 8572, 8536, and 8544 DS boards were modified to call this function.
14567
14568     Code idea taken from Liu Yu <yu.liu@freescale.com>
14569
14570     Signed-off-by: Andy Fleming <afleming@freescale.com>
14571
14572 commit 5dc0cf68f8f101042997d75188081d8526d705ea
14573 Author: Andy Fleming <afleming@freescale.com>
14574 Date:   Wed Feb 11 15:10:31 2009 -0600
14575
14576     Make some minor whitespace changes to eliminate line-wrapping
14577
14578     Signed-off-by: Andy Fleming <afleming@freescale.com>
14579
14580 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
14581 Author: Andy Fleming <afleming@freescale.com>
14582 Date:   Wed Feb 11 15:07:24 2009 -0600
14583
14584     Add eth_get_dev_by_index
14585
14586     This allows code to iterate through the ethernet devices
14587
14588     Signed-off-by: Andy Fleming <afleming@freescale.com>
14589
14590 commit b67305120aaf268a6140125346678166d14f1f47
14591 Author: Kumar Gala <galak@kernel.crashing.org>
14592 Date:   Mon Feb 9 22:03:04 2009 -0600
14593
14594     85xx: Fix bug in device tree setup in 36-bit physical confg
14595
14596     In the 36-bit physical config for MPC8572DS when need the start address
14597     of memory and it size to be kept in phys_*_t instead of a ulong since
14598     we support >4G of memory in the config and ulong cant represent that.
14599     Otherwise we end up seeing the memory node in the device tree reporting
14600     back we have memory starting @ 0 and of size 0.
14601
14602     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14603
14604 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
14605 Author: Kumar Gala <galak@kernel.crashing.org>
14606 Date:   Mon Feb 9 22:03:05 2009 -0600
14607
14608     85xx: Fix address map for 36-bit config of MPC8572DS
14609
14610     When we introduced the 36-bit config of the MPC8572DS board we had the
14611     wrong PCI MEM bus address map.  Additionally, the change to the address
14612     map exposes a small issue in our dummy read on the ULI bus.  We need
14613     to use the new mapping functions to handle that read properly in the
14614     36-bit config.
14615
14616     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14617
14618 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
14619 Author: Kumar Gala <galak@kernel.crashing.org>
14620 Date:   Fri Feb 6 09:56:35 2009 -0600
14621
14622     85xx: Fix how we map DDR memory
14623
14624     Previously we only allowed power-of-two memory sizes and didnt
14625     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
14626     and should properly handle any size that we can make in the TLBs
14627     we have available to us
14628
14629     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14630
14631 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
14632 Author: Kumar Gala <galak@kernel.crashing.org>
14633 Date:   Fri Feb 6 09:56:34 2009 -0600
14634
14635     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
14636
14637     If we only have one controller we can completely ignore how
14638     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
14639     and think we have twice as much memory.
14640
14641     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14642
14643 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
14644 Author: Kumar Gala <galak@kernel.crashing.org>
14645 Date:   Wed Feb 4 09:35:57 2009 -0600
14646
14647     85xx: Format cpu freq printing to handle 8 cores
14648
14649     Only print 4 cpu freq per line.  This way when we have 8 cores its a
14650     bit more readable.
14651
14652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14653
14654 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
14655 Author: Abraham, Thomas <t-abraham@ti.com>
14656 Date:   Tue Oct 28 16:51:31 2008 +0530
14657
14658     USB: Remove LUN number from CDB
14659
14660     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.
14661
14662     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
14663     Signed-off-by: Remy Bohmer <linux@bohmer.net>
14664
14665 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
14666 Author: Atin Malaviya <atin.malaviya@gmail.com>
14667 Date:   Tue Feb 3 15:17:10 2009 -0500
14668
14669     Added usbtty_configured() check. Fixed attribute(packed) warnings.
14670
14671     V3: Fixed line-wrap problem due to user error in mail!
14672
14673     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
14674     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
14675     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
14676
14677     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
14678     Signed-off-by: Remy Bohmer <linux@bohmer.net>
14679
14680 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
14681 Author: Guennadi Liakhovetski <lg@denx.de>
14682 Date:   Fri Feb 13 09:23:36 2009 +0100
14683
14684     i.MX31: Start the I2C clock on driver initialisation
14685
14686     i.MX31 powers on with most clocks running, so, after a power on this explicit
14687     clock start up is not required. However, as Linux boots it disables most clocks
14688     to save power. This includes the I2C clock. If we then soft reboot from Linux
14689     the I2C clock stays off. This breaks the phycore, which has its environment in
14690     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
14691     initialisation routine.
14692
14693     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14694     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14695
14696 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
14697 Author: Mike Frysinger <vapier@gentoo.org>
14698 Date:   Wed Feb 11 20:36:14 2009 -0500
14699
14700     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
14701
14702     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
14703     common code are no longer needed.
14704
14705     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14706
14707 commit c2d9befa0b4695b89476fb5d259742c09afe243f
14708 Author: Heiko Schocher <hs@denx.de>
14709 Date:   Thu Feb 12 08:08:54 2009 +0100
14710
14711     82xx, mgcoge: fix compile error
14712
14713     With actual u-boot compiling the mgcoge port fails, because
14714     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
14715     necessary to define CONFIG_NET_MULTI.
14716
14717     Seems to me the mgcoge port is the only actual existing 8260
14718     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
14719     to be fixed.
14720
14721     Signed-off-by: Heiko Schocher <hs@denx.de>
14722
14723 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
14724 Author: Dirk Eibach <eibach@gdsys.de>
14725 Date:   Mon Feb 9 08:18:34 2009 +0100
14726
14727     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
14728
14729     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
14730     Signed-off-by: Stefan Roese <sr@denx.de>
14731
14732 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
14733 Author: Carolyn Smith <carolyn.smith@tektronix.com>
14734 Date:   Thu Feb 12 06:13:44 2009 +0100
14735
14736     ppc4xx: Fix initialization of the SDRAM_CODT register
14737
14738     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
14739     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
14740     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
14741
14742     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
14743     Signed-off-by: Stefan Roese <sr@denx.de>
14744
14745 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
14746 Author: Stefan Roese <sr@denx.de>
14747 Date:   Wed Feb 11 09:29:33 2009 +0100
14748
14749     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
14750
14751     Some AMCC eval boards do have a board_eth_init() function calling
14752     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
14753     with the new eth_init rework.
14754
14755     Signed-off-by: Stefan Roese <sr@denx.de>
14756
14757 commit c645012aefebb301e6907d148c6c8efacac049d4
14758 Author: Adam Graham <agraham@amcc.com>
14759 Date:   Mon Feb 9 13:18:12 2009 -0800
14760
14761     ppc4xx: Autocalibration can set RDCC to over aggressive value.
14762
14763     The criteria of the AMCC SDRAM Controller DDR autocalibration
14764     U-Boot code is to pick the largest passing write/read/compare
14765     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
14766     Cycle Select value.
14767
14768     On some Kilauea boards the DDR autocalibration algorithm can
14769     find a large passing write/read/compare window with a small
14770     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
14771     value "T1 Sample".
14772
14773     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
14774     "T1 Sample" proves to be to aggressive when later on U-Boot
14775     relocates into DDR memory and executes.
14776
14777     The memory traces on the Kilauea board are short so on some
14778     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
14779     value of "T1 Sample" shows up as a potentially valid value for
14780     the DDR autocalibratiion algorithm.
14781
14782     The fix is to define a weak default function which provides
14783     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
14784     to accept for DDR autocalibration.  The default will be the
14785     "T2 Sample" value.  A board developer who has a well defined
14786     board and chooses to be more aggressive can always provide
14787     their own board specific string function with the more
14788     aggressive "T1 Sample" value or stick with the default
14789     minimum SDRAM_RDCC.[RDSS] value of "T2".
14790
14791     Also put in a autocalibration loop fix for case where current
14792     write/read/compare passing window size is the same as a prior
14793     window size, then in this case choose the write/read/compare
14794     result that has the associated smallest RDCC T-Sample value.
14795
14796     Signed-off-by: Adam Graham <agraham@amcc.com>
14797     Signed-off-by: Stefan Roese <sr@denx.de>
14798
14799 commit 2ede879fcb67470524847bb4fc8972651bb46184
14800 Author: Stefan Roese <sr@denx.de>
14801 Date:   Wed Feb 11 09:37:12 2009 +0100
14802
14803     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
14804
14805     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
14806     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
14807
14808     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
14809     boards right now.
14810
14811     Signed-off-by: Stefan Roese <sr@denx.de>
14812
14813 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
14814 Author: Wolfgang Denk <wd@denx.de>
14815 Date:   Thu Feb 12 00:08:39 2009 +0100
14816
14817     Coding style cleanup; update CHANGELOG
14818
14819     Signed-off-by: Wolfgang Denk <wd@denx.de>
14820
14821 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
14822 Author: Peter Tyser <ptyser@xes-inc.com>
14823 Date:   Fri Jan 30 16:36:40 2009 -0600
14824
14825     Add feature-removal-schedule.txt
14826
14827     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14828
14829 commit 255d28e1642e8fc32a6753226be1a96b481ce111
14830 Author: Heiko Schocher <hs@denx.de>
14831 Date:   Tue Feb 10 09:32:38 2009 +0100
14832
14833     8xx serial, smc: Coding-Style cleanup serial SMC driver
14834
14835     Signed-off-by: Heiko Schocher <hs@denx.de>
14836
14837 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
14838 Author: Heiko Schocher <hs@denx.de>
14839 Date:   Tue Feb 10 09:31:47 2009 +0100
14840
14841     8xx serial, smc: add configurable SMC Rx buffer len
14842
14843     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
14844     With this option it is possible to allow the receive
14845     buffer for the SMC on 8xx to be greater then 1. In case
14846     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
14847     old version.
14848
14849     When defining CONFIG_SYS_SMC_RXBUFLEN also
14850     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
14851     idle timeout for the SMC.
14852
14853     Signed-off-by: Heiko Schocher <hs@denx.de>
14854
14855 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
14856 Author: Mike Frysinger <vapier@gentoo.org>
14857 Date:   Thu Feb 5 21:04:36 2009 -0500
14858
14859     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
14860
14861     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
14862     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
14863     code in the process.
14864
14865     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14866
14867 commit ab76e9848a1f4db64d14233741d739a3b3360c93
14868 Author: Mike Frysinger <vapier@gentoo.org>
14869 Date:   Thu Feb 5 21:04:50 2009 -0500
14870
14871     bzip2: move ifdef handling to Makefile COBJS-$(...)
14872
14873     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14874
14875 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
14876 Author: Jerry Van Baren <gvb.uboot@gmail.com>
14877 Date:   Thu Feb 5 22:18:02 2009 -0500
14878
14879     Fix whitespace damage: double space changed to a tab
14880
14881     At some point an intentional double space at the end of the sentence
14882     got changed into a tab in the GPL header line:
14883      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14884
14885     This patch fixes the damage.
14886
14887     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
14888
14889 commit 4f975678de995b55749d5e84590c268972a7c835
14890 Author: Heiko Schocher <hs@denx.de>
14891 Date:   Tue Feb 10 09:53:29 2009 +0100
14892
14893     cfi: make flash_get_info() non static
14894
14895     If on your board is more than one flash, you must know
14896     the size of every single flash, for example, for updating
14897     the DTS before booting Linux. So make this function
14898     flash_get_info() extern, and you can have all info
14899     about your flashes.
14900
14901     Signed-off-by: Heiko Schocher <hs@denx.de>
14902     Signed-off-by: Stefan Roese <sr@denx.de>
14903
14904 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
14905 Author: Ben Warren <biggerbadderben@gmail.com>
14906 Date:   Thu Feb 5 23:58:25 2009 -0800
14907
14908     net: removed board-specific CONFIGs from MPC5xxx FEC driver
14909
14910     Added new CONFIG options for the three type of MAC-PHY interconnect and
14911     applied them all relevant board config files
14912
14913     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14914
14915 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
14916 Author: Mike Frysinger <vapier@gentoo.org>
14917 Date:   Thu Feb 5 21:04:47 2009 -0500
14918
14919     net/sntp.c: move ifdef into Makefile COBJS-$(...)
14920
14921     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14922     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14923
14924 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
14925 Author: Andy Fleming <afleming@freescale.com>
14926 Date:   Tue Feb 3 18:26:41 2009 -0600
14927
14928     tsec: Fix a bug in soft-resetting
14929
14930     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
14931     clock cycles, so it's been mostly working.  But we had no guarantee, and at
14932     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
14933     enforces a 2 microsecond gap between assertion and deassertion.
14934
14935     Signed-off-by: Andy Fleming <afleming@freescale.com>
14936     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14937
14938 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
14939 Author: Simon Munton <simon@nidoran.m5data.com>
14940 Date:   Mon Feb 2 09:44:08 2009 +0000
14941
14942     Fix 100Mbs ethernet operation on sh7763 based boards
14943
14944     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
14945     used in the GECMR register. Following diff fixes the problem
14946
14947     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
14948     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14949
14950 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
14951 Author: ksi@koi8.net <ksi@koi8.net>
14952 Date:   Fri Feb 6 16:27:55 2009 -0800
14953
14954     Fix MPC8260 with ethernet on SCC
14955
14956     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
14957     typo or something...
14958
14959     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
14960     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14961
14962 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
14963 Author: Heiko Schocher <hs@denx.de>
14964 Date:   Fri Jan 30 12:56:15 2009 +0100
14965
14966     82xx serial, smc: Coding-Style cleanup serial SMC driver
14967
14968     Signed-off-by: Heiko Schocher <hs@denx.de>
14969
14970 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
14971 Author: Heiko Schocher <hs@denx.de>
14972 Date:   Fri Jan 30 12:55:38 2009 +0100
14973
14974     82xx serial, smc: add configurable SMC Rx buffer len
14975
14976     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
14977     With this option it is possible to allow the receive
14978     buffer for the SMC on 82xx to be greater then 1. In case
14979     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
14980     old version.
14981
14982     When defining CONFIG_SYS_SMC_RXBUFLEN also
14983     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
14984     idle timeout for the SMC.
14985
14986     Signed-off-by: Heiko Schocher <hs@denx.de>
14987
14988 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
14989 Author: Kumar Gala <galak@kernel.crashing.org>
14990 Date:   Fri Feb 6 08:08:06 2009 -0600
14991
14992     ppc: Fix roll over bug in flush_cache()
14993
14994     If we call flush_cache(0xfffff000, 0x1000) it would never
14995     terminate the loop since end = 0xffffffff and we'd roll over
14996     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
14997
14998     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14999
15000 commit 87c9063963561d3d01064be34d0c30855a56587b
15001 Author: Kumar Gala <galak@kernel.crashing.org>
15002 Date:   Thu Feb 5 20:40:58 2009 -0600
15003
15004     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
15005
15006     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
15007     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
15008
15009     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15010     Acked-by: Stefan Roese <sr@denx.de>
15011
15012 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
15013 Author: Kumar Gala <galak@kernel.crashing.org>
15014 Date:   Thu Feb 5 20:40:57 2009 -0600
15015
15016     Add an architecture specific config.h for common defines
15017
15018     We have common defines that we duplicate in various ways.  Having an
15019     arch specific config.h gives us a common location for those defines.
15020
15021     Eventually we should be able to replace this when we have proper
15022     Kconfig support.
15023
15024     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15025
15026 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
15027 Author: Becky Bruce <beckyb@kernel.crashing.org>
15028 Date:   Tue Feb 3 18:10:56 2009 -0600
15029
15030     mpc8641hpcn: Change PCI MEM pci bus address
15031
15032     Now that the rest of u-boot can support it, change the PCI bus
15033     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
15034     and use the same bus address for both PCI1 and PCI2.  This will
15035     maximize the amount of PCI address space left over to map RAM
15036     on systems with large amounts of memory.
15037
15038     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15039
15040 commit 1785dbeed43599eed1d8875673c96912cd770141
15041 Author: Becky Bruce <beckyb@kernel.crashing.org>
15042 Date:   Tue Feb 3 18:10:55 2009 -0600
15043
15044     drivers/block/ahci: Fix pci mapping bug
15045
15046     The code assumes that the pci bus address and the virtual
15047     address used to access a region are the same, but they might
15048     not be.  Fix this assumption.
15049
15050     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15051
15052 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
15053 Author: Becky Bruce <beckyb@kernel.crashing.org>
15054 Date:   Tue Feb 3 18:10:54 2009 -0600
15055
15056     MPC8641HPCN: Enable CONFIG_ADDR_MAP
15057
15058     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15059
15060 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
15061 Author: Becky Bruce <beckyb@kernel.crashing.org>
15062 Date:   Tue Feb 3 18:10:53 2009 -0600
15063
15064     mpc8641hpcn: Clean up PCI mapping concepts
15065
15066     Clean up PCI mapping concepts in the 8641 config - rename _BASE
15067     to _BUS, as it's actually a PCI bus address, separate virtual
15068     and physical addresses into _VIRT and _PHYS, and use each
15069     appopriately.
15070
15071     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15072
15073 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
15074 Author: Becky Bruce <beckyb@kernel.crashing.org>
15075 Date:   Tue Feb 3 18:10:52 2009 -0600
15076
15077     mpc86xx: Add support to populate addr map based on BATs
15078
15079     If CONFIG_ADDR_MAP is enabled, update the address map
15080     whenever we write a bat.
15081
15082     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15083
15084 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
15085 Author: Becky Bruce <beckyb@kernel.crashing.org>
15086 Date:   Tue Feb 3 18:10:51 2009 -0600
15087
15088     powerpc: Move duplicated BAT defines to mmu.h
15089
15090     The BAT fields are architected; there's no need for these to be in
15091     cpu-specific files.  Drop the duplication and move these to
15092     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
15093     used by the alaska board, and switch to using the BATU_BL_xxx defines
15094     used by all the other boards.  The BL_ defines previously in use
15095     had to be shifted into the proper position for use, which was inefficient.
15096
15097     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15098
15099 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
15100 Author: Becky Bruce <beckyb@kernel.crashing.org>
15101 Date:   Tue Feb 3 18:10:50 2009 -0600
15102
15103     drivers/pci: Create pci_map_bar function
15104
15105     It is no longer always true that the pci bus address can be
15106     used as the virtual address for pci accesses.  pci_map_bar()
15107     is created to return the virtual address for a pci region.
15108
15109     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15110
15111 commit 2ecca3401775b125c3b9ff65766befb23989414b
15112 Author: Becky Bruce <beckyb@kernel.crashing.org>
15113 Date:   Tue Feb 3 18:10:49 2009 -0600
15114
15115     mpc8641hpcn: Set up outbound pci windows before inbound
15116
15117     Because the inbound pci windows are mapped generously, set up
15118     the more specific outbound windows first.  This way, when we
15119     search the pci regions for something, we will hit on the more
15120     specific region.  This can actually be a problem on systems
15121     with large amounts of RAM.
15122
15123     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15124
15125 commit b81b773ead0687114dc8a800f99ea6e504447739
15126 Author: Becky Bruce <beckyb@kernel.crashing.org>
15127 Date:   Mon Feb 2 16:34:52 2009 -0600
15128
15129     mpc8641hpcn: Use physical address in flash banks defintion
15130
15131     If the VA and PA of the flash aren't the same, the banks list
15132     should be initialized to hold the physical address.  Correct this.
15133
15134     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15135
15136 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
15137 Author: Ilya Yanok <yanok@emcraft.com>
15138 Date:   Tue Feb 10 00:22:31 2009 +0100
15139
15140     qong: support for Dave/DENX QongEVB-LITE board
15141
15142     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
15143
15144     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
15145     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15146
15147 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
15148 Author: Ilya Yanok <yanok@emcraft.com>
15149 Date:   Mon Feb 9 18:45:28 2009 +0100
15150
15151     dnet: driver for Dave DNET ethernet controller
15152
15153     Driver for Dave DNET ethernet controller (used on Dave/DENX
15154     QongEVB-LITE board).
15155
15156     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
15157     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15158
15159 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
15160 Author: Kumar Gala <galak@kernel.crashing.org>
15161 Date:   Fri Feb 6 09:49:32 2009 -0600
15162
15163     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
15164
15165     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
15166     we should give preference to memory regions that aren't system memory.
15167
15168     Its possible that we have over mapped system memory in the regions and
15169     we want to avoid depending on the order of the regions.
15170
15171     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15172
15173 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
15174 Author: Kumar Gala <galak@kernel.crashing.org>
15175 Date:   Fri Feb 6 09:49:31 2009 -0600
15176
15177     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
15178
15179     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
15180     can be confusing when reading the code.
15181
15182     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
15183     for system memory mapping purposes.
15184
15185     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15186
15187 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
15188 Author: Ilya Yanok <yanok@emcraft.com>
15189 Date:   Sun Feb 8 00:59:43 2009 +0300
15190
15191     mx31: add GPIO registers definitions
15192
15193     Added definitions for i.MX31 processor GPIO registers.
15194
15195     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
15196
15197 commit 8da601280a8acbc3385784780ed35130e53812f1
15198 Author: Peter Tyser <ptyser@xes-inc.com>
15199 Date:   Wed Feb 4 13:47:22 2009 -0600
15200
15201     NAND: Add timeout for reset command
15202
15203     Without the timeout present an infinite loop can occur if the
15204     NAND device is broken or not present.
15205
15206     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15207     Signed-off-by: Scott Wood <scottwood@freescale.com>
15208
15209 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
15210 Author: Peter Tyser <ptyser@xes-inc.com>
15211 Date:   Wed Feb 4 13:39:40 2009 -0600
15212
15213     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
15214
15215     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
15216     for disabling the "No NAND device found!!!" warning when
15217     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
15218     for silencing the warning.
15219
15220     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15221     Signed-off-by: Scott Wood <scottwood@freescale.com>
15222
15223 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
15224 Author: Valeriy Glushkov <gvv@lstec.com>
15225 Date:   Mon Jan 19 16:32:59 2009 +0200
15226
15227     NAND: Fixed invalid pointers to static relocated chip names
15228
15229     Dear Wolfgang,
15230
15231     You are right, the patch was ugly.
15232     The new one seems to be better.
15233
15234     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
15235     Signed-off-by: Scott Wood <scottwood@freescale.com>
15236
15237 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
15238 Author: Nishanth Menon <nm@ti.com>
15239 Date:   Mon Feb 2 18:20:12 2009 -0600
15240
15241     ARM:OMAP3:Zoom1: Add nand unlock option
15242
15243     Enable NAND_UNLOCK option for unlocking nand for
15244     erase/write operations
15245
15246     Signed-off-by: Nishanth Menon <nm@ti.com>
15247
15248 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
15249 Author: derek@siconix.com <derek@siconix.com>
15250 Date:   Mon Jan 26 14:08:17 2009 -0700
15251
15252     env_nand: fix env memory release
15253
15254     This fixes a bug that tmp environment memory not being released.
15255
15256     Signed-off-by: Derek Ou <dou@siconix.com>
15257     Signed-off-by: Scott Wood <scottwood@freescale.com>
15258
15259 commit 05fd88776419df59e7f37bac063a209409dd801d
15260 Author: Guennadi Liakhovetski <lg@denx.de>
15261 Date:   Fri Feb 6 10:37:45 2009 +0100
15262
15263     ARM: remove unused variable
15264
15265     The "size" variable in start_armboot() in lib_arm/board.c is only really
15266     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
15267     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
15268
15269     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15270
15271 commit 6989e4f546d960a407dd5425f800dff9751c8132
15272 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15273 Date:   Thu Feb 5 09:33:50 2009 -0500
15274
15275     Coldfire: M527x: Add missing GPIO register address defines
15276
15277     Add missing GPIO registers address definition for Coldfire M5271.
15278
15279     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15280
15281 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
15282 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15283 Date:   Fri Jan 23 14:42:58 2009 -0500
15284
15285     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
15286
15287     Modified mii_init to support boards with PHYs that are not set to
15288     autonegotiate, but still want to use u-boot's mii commands to probe
15289     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
15290
15291     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15292
15293 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
15294 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15295 Date:   Fri Jan 23 11:44:30 2009 -0500
15296
15297     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
15298
15299     Applied the patch for baudrate divider value truncation for
15300     serial_init to serial_setbrg as well.
15301
15302     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15303
15304 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
15305 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15306 Date:   Fri Jan 23 14:07:05 2009 -0500
15307
15308     Coldfire: M5271EVB: Board header update (dependencies)
15309
15310     Cleanup for M5271EVB:
15311     Added clarification on the use of CONFIG_SYS_CLOCK.
15312     Modified to use u-boot's HUSH parser.
15313     Cleanup on environment settings.
15314     Removed compiler warning by defining CONFIG_SYS_CS0_*
15315
15316     Dependencies:
15317     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
15318     This depends on a patch to include/asm-m68k/m5271.h
15319     that defines the multiplier and divider ratios.
15320
15321     Removed the definition of CONFIG_SYS_FECI2C.
15322     This depends on a patch that removes the use of it in
15323     cpu/mcf52x2/cpu_init.c
15324
15325     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15326
15327 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
15328 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15329 Date:   Thu Jan 29 14:36:06 2009 -0500
15330
15331     Coldfire: M5271: Allow board header file to specify clock multiplier
15332
15333     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
15334
15335     Allow the board header file to set their own multiplier and divider.
15336     Added the #define for the multiplier and divider to the cpu header file.
15337
15338     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15339
15340 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
15341 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15342 Date:   Fri Jan 23 10:47:13 2009 -0500
15343
15344     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
15345
15346     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
15347     Use read-modify-write to activate the FEC pins without disabling I2C.
15348
15349     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15350
15351 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
15352 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15353 Date:   Fri Jan 23 09:45:34 2009 -0500
15354
15355     Coldfire: cmd_bdinfo cleanup
15356
15357     CONFIG_M68K bdinfo cleanup:
15358
15359     Fixed compiler warning about baudrate printing.
15360     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
15361
15362     Added printing of "cpufreq"
15363
15364     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15365
15366 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
15367 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15368 Date:   Fri Jan 23 09:27:00 2009 -0500
15369
15370     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
15371
15372     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
15373     was causing the bus clock (not CPU clock) to be declared twice as
15374     fast as it actually is. This causes UARTS to operate at half the
15375     specified baudrate.
15376
15377     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15378
15379 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
15380 Author: Dirk Eibach <eibach@gdsys.de>
15381 Date:   Tue Feb 3 15:15:21 2009 +0100
15382
15383     ppc4xx: Make PCIE support selectable
15384
15385     On some platforms PCIE support is not required, but would be included
15386     because the cpu supports it. To reduce fooprint it is now configurable
15387     via CONFIG_PCI_DISABLE_PCIE.
15388
15389     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15390     Signed-off-by: Stefan Roese <sr@denx.de>
15391
15392 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
15393 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15394 Date:   Tue Feb 3 22:13:16 2009 +0100
15395
15396     ppc4xx: Only fixup opb attached UARTs
15397
15398     This patch updates the fdt UART clock fixup code to
15399     only touch CPU internal UARTs on 4xx systems.
15400     Only these UARTs are definitely clocked by gd->uart_clk.
15401
15402     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15403     Signed-off-by: Stefan Roese <sr@denx.de>
15404
15405 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
15406 Author: Mike Frysinger <vapier@gentoo.org>
15407 Date:   Tue Jan 13 11:00:29 2009 -0500
15408
15409     Blackfin: move default boot SPI CS to common code
15410
15411     Move the default SPI CS that we boot from into common code so that it can
15412     be used in other SPI drivers and environment settings.
15413
15414     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15415
15416 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
15417 Author: Mike Frysinger <vapier@gentoo.org>
15418 Date:   Wed Dec 10 12:33:54 2008 -0500
15419
15420     Blackfin: dynamically update UART speed when initializing
15421
15422     Previously, booting over the UART required the baud rate to be known ahead
15423     of time.  Using a bit of tricky simple math, we can calculate the new board
15424     rate based on the old divisors.
15425
15426     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15427     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
15428
15429 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
15430 Author: Mike Frysinger <vapier@gentoo.org>
15431 Date:   Tue Dec 9 17:21:08 2008 -0500
15432
15433     Blackfin: add support for fast SPI reads with Boot ROM
15434
15435     Newer Blackfin boot roms support using the fast SPI read command rather than
15436     just the slow one.  If the functionality is available, then use it.
15437
15438     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15439
15440 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
15441 Author: Mike Frysinger <vapier@gentoo.org>
15442 Date:   Sat Oct 11 21:46:52 2008 -0400
15443
15444     Blackfin: check for reserved settings in DDR MMRs
15445
15446     Some bits of the DDR MMRs should not be set.  If they do, bad things may
15447     happen (like random failures or hardware destruction).
15448
15449     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15450
15451 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
15452 Author: Mike Frysinger <vapier@gentoo.org>
15453 Date:   Sat Oct 11 21:54:00 2008 -0400
15454
15455     Blackfin: set default voltage levels for BF538/BF539 parts
15456
15457     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15458
15459 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
15460 Author: Mike Frysinger <vapier@gentoo.org>
15461 Date:   Sun Jun 1 01:29:57 2008 -0400
15462
15463     Blackfin: use on-chip syscontrol() rom function when available
15464
15465     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
15466     to be used to properly program the memory and voltage settings as it will
15467     include (possibly critical) factory tested bias values.
15468
15469     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15470
15471 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
15472 Author: Stefan Roese <sr@denx.de>
15473 Date:   Thu Feb 5 11:44:52 2009 +0100
15474
15475     cfi_flash: Fix typo in cfi_flash.c
15476
15477     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
15478     introduced a small typo and compilation warning for systems with CFI
15479     legacy support (e.g. hcu4). This patch fixes it.
15480
15481     Signed-off-by: Stefan Roese <sr@denx.de>
15482
15483 commit 28745db969b72693754991c838f68a7fb4a8b1ab
15484 Author: Stefan Roese <sr@denx.de>
15485 Date:   Thu Jan 29 11:21:38 2009 +0100
15486
15487     jedec_flash: Only use manufacturer defines from common flash.h
15488
15489     This patch removes the double defined manufacturer defines from
15490     jedec_flash.c. Since the common defines in flash.h are 32bit
15491     we now need the (16) cast. This patch also removes the compilation
15492     warning (e.g. seen on hcu5):
15493
15494     ./MAKEALL hcu5
15495     Configuring for hcu5 board...
15496     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
15497
15498     Signed-off-by: Stefan Roese <sr@denx.de>
15499
15500 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
15501 Author: Stefan Roese <sr@denx.de>
15502 Date:   Thu Feb 5 11:25:57 2009 +0100
15503
15504     cfi_flash: Silence compilation warning
15505
15506     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
15507     introduced a small compilation warning. This patch fixes it.
15508
15509     Signed-off-by: Stefan Roese <sr@denx.de>
15510
15511 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
15512 Author: Becky Bruce <beckyb@kernel.crashing.org>
15513 Date:   Mon Feb 2 16:34:51 2009 -0600
15514
15515     flash/cfi_flash: Use virtual sector start address, not phys
15516
15517     include/flash.h was commented to say that the address in
15518     flash_info->start was a physical address.  However, from u-boot's
15519     point of view, and looking at most flash code, it makes more
15520     sense for this to be a virtual address.  So I corrected the
15521     comment to indicate that this was a virtual address.
15522
15523     The only flash driver that was actually treating the address
15524     as physical was the mtd/cfi_flash driver.  However, this code
15525     was using it inconsistently as it actually directly dereferenced
15526     the "start" element, while it used map_physmem to get a
15527     virtual address in other places.  I changed this driver so
15528     that the code which initializes the info->start field calls
15529     map_physmem to get a virtual address, eliminating the need for
15530     further map_physmem calls.  The code is now consistent.
15531
15532     The *only* place a physical address should be used is when defining the
15533     flash banks list that is used to initialize the flash_info struct,
15534     usually found in the board config file.
15535
15536     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
15537     Signed-off-by: Stefan Roese <sr@denx.de>
15538
15539 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
15540 Author: Wolfgang Denk <wd@denx.de>
15541 Date:   Wed Feb 4 09:42:20 2009 +0100
15542
15543     Fix compiler warning
15544
15545     (shows up only when DEBUG is enabled)
15546
15547     Signed-off-by: Wolfgang Denk <wd@denx.de>
15548
15549 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
15550 Author: Mike Frysinger <vapier@gentoo.org>
15551 Date:   Mon Oct 6 03:45:55 2008 -0400
15552
15553     Blackfin: update anomaly lists
15554
15555     Update the anomaly lists to match latest anomaly sheets.
15556
15557     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15558
15559 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
15560 Author: Ralph Kondziella <rk@argos-messtechnik.de>
15561 Date:   Mon Jan 26 12:34:36 2009 -0700
15562
15563     ADS5121 Add PATA support
15564
15565     Original patch from Ralph Kondziella
15566     plus clean up by Wolfgang Denk
15567     plus changes by John Rigby
15568         use ips clock not lpc
15569         port forward to current u-boot release
15570
15571     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
15572     Signed-off-by: Wolfgang Denk <wd@denx.de>
15573     Signed-off-by: John Rigby <jrigby@freescale.com>
15574
15575 commit abfbd0ae4967df18102345db4f4b529a13da107b
15576 Author: Martha Marx <mmarx@silicontkx.com>
15577 Date:   Mon Jan 26 10:45:07 2009 -0700
15578
15579     ADS5121 Add IC Ident Module (IIM) support
15580
15581     IIM (IC Identification Module) is the fusebox for the mpc5121.
15582     Use #define CONFIG_IIM to turn on the clock for this module
15583     use #define CONFIG_CMD_FUSE to add fusebox commands.
15584     Fusebox commands include the ability to read
15585     the status, read the register cache, override the register cache,
15586     program the fuses and sense them.
15587
15588     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
15589     Signed-off-by: John Rigby <jrigby@freescale.com>
15590
15591 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
15592 Author: John Rigby <jrigby@freescale.com>
15593 Date:   Fri Jan 23 10:33:15 2009 -0700
15594
15595     ADS5121 Fix rev2 silicon pci iopad config
15596
15597     Reset config is not correct
15598
15599     Signed-off-by: John Rigby <jrigby@freescale.com>
15600
15601 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
15602 Author: John Rigby <jrigby@freescale.com>
15603 Date:   Wed Nov 19 13:57:34 2008 -0700
15604
15605     ADS5121 DIU Add diu_bmp_addr env
15606
15607     Add support for using a bmp other than
15608     FSL_Logo_BMP for the DIU splash screen.
15609
15610     Can now set the env var "diu_bmp_addr" to
15611     the address of a BMP in flash to use instead
15612     of the default FSL_Logo_BMP.
15613
15614     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
15615     Signed-off-by: John Rigby <jrigby@freescale.com>
15616
15617 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
15618 Author: John Rigby <jrigby@freescale.com>
15619 Date:   Thu Oct 30 16:39:35 2008 -0600
15620
15621     ADS5121 DIU Make inclusion of FSL logo optional
15622
15623     Make inclusion of FSL logo optional and
15624     turn it off by default.
15625
15626     Signed-off-by: John Rigby <jrigby@freescale.com>
15627
15628 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
15629 Author: Remy Bohmer <linux@bohmer.net>
15630 Date:   Sun Feb 1 12:27:53 2009 +0100
15631
15632     Compile warning fix in onenand_uboot.h
15633
15634     Regression since merge window after 2009.01
15635
15636     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15637
15638 commit a270d1e7295c3d829f42c0480117941dfc1c6477
15639 Author: Stefan Roese <sr@denx.de>
15640 Date:   Thu Jan 29 06:33:55 2009 +0100
15641
15642     USB: Add EHCI support for VCT EHCI controller (really with driver now)
15643
15644     Somehow I missed the real driver part in my last patch version. This patch
15645     now adds the driver.
15646
15647     Signed-off-by: Stefan Roese <sr@denx.de>
15648     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15649
15650 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
15651 Author: Cliff Cai <cliff.cai@analog.com>
15652 Date:   Sat Nov 29 18:22:38 2008 -0500
15653
15654     Blackfin: add driver for on-chip MMC/SD controller
15655
15656     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
15657
15658     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
15659     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15660
15661 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
15662 Author: Mike Frysinger <vapier@gentoo.org>
15663 Date:   Sat Oct 11 22:47:34 2008 -0400
15664
15665     Blackfin: add port muxing for BF51x SPI
15666
15667     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15668
15669 commit fc68f9f85959664d528daea2aef5ef54974331ce
15670 Author: Mike Frysinger <vapier@gentoo.org>
15671 Date:   Tue Jan 6 06:16:19 2009 -0500
15672
15673     Blackfin: output booting source when booting
15674
15675     Knowing the booting source of the part is useful, especially when the part
15676     can switch dynamically between sources.
15677
15678     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15679
15680 commit 8df3ce0f49c37947800ac7c84e751499882619fc
15681 Author: Mike Frysinger <vapier@gentoo.org>
15682 Date:   Thu Dec 11 06:30:46 2008 -0500
15683
15684     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
15685
15686     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
15687     the Blackfin on-chip bootrom to boot out of SPI flash.
15688
15689     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15690
15691 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
15692 Author: Mike Frysinger <vapier@gentoo.org>
15693 Date:   Thu Dec 11 04:06:26 2008 -0500
15694
15695     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
15696
15697     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15698
15699 commit e5eb93e77391bcc308697116c544ea1340aaae8a
15700 Author: Mike Frysinger <vapier@gentoo.org>
15701 Date:   Sat Dec 6 02:54:52 2008 -0500
15702
15703     Blackfin: add port I bits
15704
15705     Some people need to access port I, so make sure the pins are defined.
15706
15707     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15708
15709 commit 8a6b272596d43de0db4943eac7af58c3534c4026
15710 Author: Sonic Zhang <Sonic.Zhang@analog.com>
15711 Date:   Wed Nov 26 22:16:45 2008 -0500
15712
15713     Blackfin: add driver for on-chip ATAPI controller
15714
15715     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
15716
15717     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
15718     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15719
15720 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
15721 Author: Mike Frysinger <vapier@gentoo.org>
15722 Date:   Wed Nov 26 21:43:06 2008 -0500
15723
15724     Blackfin: add driver for on-chip NAND controller
15725
15726     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
15727
15728     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15729
15730 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
15731 Author: Mike Frysinger <vapier@gentoo.org>
15732 Date:   Wed Nov 12 07:18:15 2008 -0500
15733
15734     Blackfin: build with -mno-fdpic
15735
15736     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
15737     up u-boot, including ones that output FDPIC ELF by default.
15738
15739     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15740
15741 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
15742 Author: Mike Frysinger <vapier@gentoo.org>
15743 Date:   Tue Nov 11 05:43:57 2008 -0500
15744
15745     Blackfin: fix up EBIU defines
15746
15747     The EBIU defines for EBSZ 256/512 were incorrect.
15748
15749     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15750
15751 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
15752 Author: Mike Frysinger <vapier@gentoo.org>
15753 Date:   Wed Nov 5 12:45:24 2008 -0500
15754
15755     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
15756
15757     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
15758     as usable with the source/destination addresses and the count size.
15759
15760     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15761
15762 commit b93c68648426f906d63b98117496b6415f505f39
15763 Author: Mike Frysinger <vapier@gentoo.org>
15764 Date:   Wed Nov 5 08:50:23 2008 -0500
15765
15766     Blackfin: only flag L1 instruction for DMA memcpy
15767
15768     The performance difference from doing an 8 bit DMA memcpy vs an optimized
15769     core memcpy can be pretty big when you add in the overhead of setting up the
15770     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
15771     actually require it.
15772
15773     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15774
15775 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
15776 Author: Mike Frysinger <vapier@gentoo.org>
15777 Date:   Wed Nov 5 07:20:37 2008 -0500
15778
15779     Blackfin: dma_memcpy(): fix random failures
15780
15781     We have to make sure the DMA channel is actually disabled in hardware before
15782     attempting to reprogram it.  Otherwise the new settings are ignored and we
15783     end up with random hangs/failures.
15784
15785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15786
15787 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
15788 Author: Mike Frysinger <vapier@gentoo.org>
15789 Date:   Tue Nov 4 00:04:03 2008 -0500
15790
15791     Blackfin: rewrite cache handling functions
15792
15793     Take the cache flush functions from the kernel as they use hardware loops in
15794     order to get optimal performance.
15795
15796     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15797
15798 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
15799 Author: Mike Frysinger <vapier@gentoo.org>
15800 Date:   Mon Nov 3 22:30:05 2008 -0500
15801
15802     Blackfin: setup bi_enetaddr for single nets
15803
15804     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
15805     based on $ethaddr, so set it up.
15806
15807     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15808
15809 commit 40599239e7875b39e2a5c12e6545992041c72c52
15810 Author: Mike Frysinger <vapier@gentoo.org>
15811 Date:   Fri Oct 24 22:48:47 2008 -0400
15812
15813     Blackfin: cache core/system clock values
15814
15815     Calculating the clocks requires a bit of calls to gcc math functions, so
15816     cache the values after the first run since they'll most likely never
15817     change once U-Boot is up and running.
15818
15819     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15820
15821 commit 6957a6209b02f6b69607fc47425f13731cc477f1
15822 Author: Mike Frysinger <vapier@gentoo.org>
15823 Date:   Fri Oct 24 18:18:16 2008 -0400
15824
15825     Blackfin: enable --gc-sections
15826
15827     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
15828     and linking with --gc-sections.
15829
15830     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15831
15832 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
15833 Author: Mike Frysinger <vapier@gentoo.org>
15834 Date:   Mon Oct 20 21:08:54 2008 -0400
15835
15836     Blackfin: dont check baud if it wont actually get used
15837
15838     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15839
15840 commit 400f5778f375bc99c73c8488c555def261ccfab7
15841 Author: Mike Frysinger <vapier@gentoo.org>
15842 Date:   Tue Oct 14 07:54:09 2008 -0400
15843
15844     Blackfin: add driver for on-chip SPI controller
15845
15846     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
15847
15848     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15849
15850 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
15851 Author: Mike Frysinger <vapier@gentoo.org>
15852 Date:   Sat Oct 18 05:33:51 2008 -0400
15853
15854     Blackfin: only build post code when CONFIG_POST
15855
15856     Save some time by using CONFIG_POST in the Makefile rather than C files.
15857
15858     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15859
15860 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
15861 Author: Mike Frysinger <vapier@gentoo.org>
15862 Date:   Thu Jan 8 11:57:57 2009 -0500
15863
15864     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
15865
15866     Redo how pointers are managed to get rid of ugly casts and strict pointer
15867     aliasing issues that are highlighted by gcc 4.3.
15868
15869     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15870     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15871
15872 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
15873 Author: Mike Frysinger <vapier@gentoo.org>
15874 Date:   Tue Dec 9 17:46:21 2008 -0500
15875
15876     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
15877
15878     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
15879     does exactly the same thing as common "CONFIG_RMII".
15880
15881     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15882     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15883
15884 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
15885 Author: Mike Frysinger <vapier@gentoo.org>
15886 Date:   Wed Nov 5 06:36:15 2008 -0500
15887
15888     Blackfin: bfin_mac: use common debug()
15889
15890     Rather then defining our own DEBUGF(), just use the common debug().
15891
15892     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15893     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15894
15895 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
15896 Author: Mike Frysinger <vapier@gentoo.org>
15897 Date:   Mon Oct 20 13:59:51 2008 -0400
15898
15899     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
15900
15901     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
15902     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
15903
15904     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15905     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15906
15907 commit ac45af4e63ea925f4accc98453aab1a1166c196d
15908 Author: Mike Frysinger <vapier@gentoo.org>
15909 Date:   Tue Oct 14 04:52:00 2008 -0400
15910
15911     Blackfin: bfin_mac: cleanup MII/PHY functions
15912
15913     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
15914     existing common linux/miiphy.h code and hook into the `mii` command.
15915
15916     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15917     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15918
15919 commit 6b310a05f0d10c751f22468040932139f71c71d3
15920 Author: Mike Frysinger <vapier@gentoo.org>
15921 Date:   Tue Oct 14 00:31:30 2008 -0400
15922
15923     Blackfin: bfin_mac: set MDCDIV based on SCLK
15924
15925     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
15926     use the real algorithm so it gets set correctly regardless of SCLK.
15927
15928     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15929     Acked-by: Ben Warren <biggerbadderben@gmail.com>
15930
15931 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
15932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15933 Date:   Sat Jan 31 09:10:48 2009 +0100
15934
15935     ixp: move serial to drivers/serial
15936
15937     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15938
15939 commit f90c8022f448bc5e93090e4b714368e52e912f0f
15940 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15941 Date:   Sat Jan 31 09:04:58 2009 +0100
15942
15943     ixp: move pci init in arm/board instead of cpu
15944
15945     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15946
15947 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
15948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15949 Date:   Sat Jan 31 08:56:49 2009 +0100
15950
15951     ixp: move pci drivers to drivers/pci
15952
15953     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15954
15955 commit 012d5bab09a534e4800b02f50cf508e6837202ea
15956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15957 Date:   Sat Jan 31 08:53:44 2009 +0100
15958
15959     ixp: Move conditional compilation to Makefile
15960
15961     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15962
15963 commit f693f501d67434df1f815fd1824a71973ae08207
15964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15965 Date:   Sat Jan 31 08:53:44 2009 +0100
15966
15967     ixp: add missing os define
15968
15969     need by arm-elf toolchains and no impact on the arm-linux one
15970
15971     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15972
15973 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
15974 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15975 Date:   Sat Jan 31 09:53:39 2009 +0100
15976
15977     ixp: remove the option to include the Microcode
15978
15979     instead the board will have to load it from flash or ram
15980     which will be specified by npe_ucode env var
15981
15982     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15983
15984 commit 1b017baf2071d8daf643bce87250db898c606c66
15985 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15986 Date:   Fri Jan 30 09:45:23 2009 +0100
15987
15988     ixp/npe: Move conditional compilation to Makefile
15989
15990     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15991
15992 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
15993 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15994 Date:   Wed Jan 28 21:58:04 2009 +0100
15995
15996     SX1: add hardware V2 support
15997
15998     In the V2 the 2 flash has been replace by one 32MB flash
15999
16000     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16001
16002 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
16003 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16004 Date:   Wed Jan 28 21:58:03 2009 +0100
16005
16006     SX1: Fix second flash mapping
16007
16008     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16009
16010 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
16011 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16012 Date:   Wed Jan 28 21:58:03 2009 +0100
16013
16014     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
16015
16016     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16017
16018 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
16019 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16020 Date:   Wed Jan 28 21:57:59 2009 +0100
16021
16022     move Samsung's board to board/samsung
16023
16024     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16025
16026 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
16027 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16028 Date:   Thu Jan 29 12:07:21 2009 +0100
16029
16030     move ARM Ltd. to vendor dir
16031
16032     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16033
16034 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
16035 Author: Larry Johnson <lrj@acm.org>
16036 Date:   Wed Jan 28 15:30:37 2009 -0500
16037
16038     ppc4xx: Clean up configuration file for Korat board
16039
16040     This patch updates the default environmental variables for the
16041     Korat PPC 440EPx board, and makes additional minor fixes.
16042
16043     Signed-off-by: Larry Johnson <lrj@acm.org>
16044     Signed-off-by: Stefan Roese <sr@denx.de>
16045
16046 commit f20405e31680efc36293c59b4963db57c9d93df4
16047 Author: Larry Johnson <lrj@acm.org>
16048 Date:   Wed Jan 28 15:30:02 2009 -0500
16049
16050     ppc4xx: Add variable "korat_usbcf" for Korat board
16051
16052     The new environment variable "korat_usbcf" selects the USB
16053     port used by the Korat board's CompactFlash controller.
16054
16055     Signed-off-by: Larry Johnson <lrj@acm.org>
16056     Signed-off-by: Stefan Roese <sr@denx.de>
16057
16058 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
16059 Author: Gunnar Rangoy <gunnar@rangoy.com>
16060 Date:   Fri Jan 23 12:56:31 2009 +0100
16061
16062     AVR32: macb - Search for PHY id
16063
16064     This patch adds support for searching through available PHY-addresses in
16065     the macb-driver. This is needed for the ATEVK1100 evaluation board,
16066     where the PHY-address will be initialized to either 1 or 7.
16067
16068     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
16069     enabled tells the driver to search for the PHY address.
16070
16071     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
16072     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
16073     Signed-off-by: Olav Morken <olavmrk@gmail.com>
16074     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16075
16076 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
16077 Author: Olav Morken <olavmrk@gmail.com>
16078 Date:   Fri Jan 23 12:56:26 2009 +0100
16079
16080     Fix IP alignment problem
16081
16082     This patch removes volatile from:
16083     volatile IP_t *ip = (IP_t *)xip;
16084
16085     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
16086     using volatile, which causes an exception since xip isn't aligned on a word
16087     boundary.
16088
16089     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
16090     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
16091     Signed-off-by: Olav Morken <olavmrk@gmail.com>
16092     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16093
16094 commit 12a8b9db12f82a189ff143a58731007f5469da61
16095 Author: Ron Madrid <ron_madrid@sbcglobal.net>
16096 Date:   Wed Jan 28 16:17:21 2009 -0800
16097
16098     Marvell 88E1118 interrupt fix
16099
16100     This patch adjusts the LED control so that interrupt lines are not reading LEDs
16101     and effectively causing indefinite interrupts to the controller.
16102
16103     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
16104     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16105
16106 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
16107 Author: Stefan Roese <sr@denx.de>
16108 Date:   Wed Jan 21 17:14:26 2009 +0100
16109
16110     net: smc911x.c: Add LAN9211 to chip_ids[] array
16111
16112     Signed-off-by: Stefan Roese <sr@denx.de>
16113     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16114
16115 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
16116 Author: Mike Frysinger <vapier@gentoo.org>
16117 Date:   Tue Jan 27 16:53:39 2009 -0500
16118
16119     Move is_valid_ether_addr() to include/net.h
16120
16121     Import the is_valid_ether_addr() function from the Linux kernel.
16122
16123     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16124     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16125
16126 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
16127 Author: Michal Simek <monstr@monstr.eu>
16128 Date:   Mon Jan 5 12:25:13 2009 +0100
16129
16130     net: Sort Makefile labels
16131
16132     Signed-off-by: Michal Simek <monstr@monstr.eu>
16133     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16134
16135 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
16136 Author: Wolfgang Denk <wd@denx.de>
16137 Date:   Wed Jan 28 23:06:42 2009 +0100
16138
16139     85xx: Fix compile breakage with sbc8540 and sbc8560
16140
16141     This fixes an error which raises just a warning:
16142     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
16143
16144     Signed-off-by: Wolfgang Denk <wd@denx.de>
16145
16146 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
16147 Author: Mike Frysinger <vapier@gentoo.org>
16148 Date:   Wed Jan 28 13:48:55 2009 -0500
16149
16150     SPD823TS: do not define CONFIG_CMD_ENV
16151
16152     Since the SPD823TS board does not actually have any writable flash to save
16153     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
16154     disabled.
16155
16156     This fixes the build error:
16157     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
16158     common/cmd_nvedit.c:557: undefined reference to `saveenv'
16159     make: *** [u-boot] Error 1
16160
16161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16162
16163 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
16164 Author: Dirk Behme <dirk.behme@googlemail.com>
16165 Date:   Wed Jan 28 21:40:16 2009 +0100
16166
16167     OMAP3: Add Zoom1 board support
16168
16169     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
16170     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
16171
16172     Signed-off-by: Nishanth Menon <nm@ti.com>
16173     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
16174
16175 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
16176 Author: Dirk Behme <dirk.behme@googlemail.com>
16177 Date:   Wed Jan 28 21:39:58 2009 +0100
16178
16179     OMAP3: Add Pandora support
16180
16181     Add Pandora support.
16182
16183     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
16184     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16185     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
16186
16187 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
16188 Author: Dirk Behme <dirk.behme@googlemail.com>
16189 Date:   Wed Jan 28 21:39:58 2009 +0100
16190
16191     OMAP3: Add EVM board
16192
16193     Add EVM board support.
16194
16195     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
16196     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16197     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
16198
16199 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
16200 Author: Dirk Behme <dirk.behme@googlemail.com>
16201 Date:   Wed Jan 28 21:39:57 2009 +0100
16202
16203     OMAP3: Add Overo board
16204
16205     Add Overo board support.
16206
16207     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
16208     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16209     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
16210
16211 commit f904cdbb68167c647887f19929ad295dbaac8862
16212 Author: Dirk Behme <dirk.behme@googlemail.com>
16213 Date:   Tue Jan 27 18:19:12 2009 +0100
16214
16215     OMAP3: Add common power code, README, and BeagleBoard
16216
16217     Add BeagleBoard support, common power code and README.
16218
16219     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
16220     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
16221
16222 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
16223 Author: Kumar Gala <galak@kernel.crashing.org>
16224 Date:   Wed Jan 28 08:31:10 2009 -0600
16225
16226     85xx: Fix compile breakage with MPC8540EVAL
16227
16228     Configuring for MPC8540EVAL board...
16229     mpc8540eval.c: In function 'checkboard':
16230     mpc8540eval.c:53: error: invalid operands to binary /
16231     make[1]: *** [mpc8540eval.o] Error 1
16232
16233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16234
16235 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
16236 Author: Bryan Wu <bryan.wu@analog.com>
16237 Date:   Sun Jan 18 23:04:27 2009 -0500
16238
16239     usb_scan_devices: fix output with no devices
16240
16241     We should check the return of usb_new_device() so that if no USB device is
16242     found, we print out the right message rather than always saying "new usb
16243     device found".
16244
16245     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
16246     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16247     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16248
16249 commit f1c1f540243438246aefb703fdcf16957e3a72e1
16250 Author: Stefan Roese <sr@denx.de>
16251 Date:   Thu Jan 22 10:11:21 2009 +0100
16252
16253     USB: Add high-speed (480Mb/s) to all USB related outputs
16254
16255     With this patch the USB related connection speed output ("usb tree" command and
16256     debug output) is now high-speed enabled.
16257
16258     This patch also fixes a compilation warning when debugging is enabled.
16259
16260     Signed-off-by: Stefan Roese <sr@denx.de>
16261     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16262
16263 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
16264 Author: Stefan Roese <sr@denx.de>
16265 Date:   Wed Jan 21 17:12:19 2009 +0100
16266
16267     USB: Add dcache support to the EHCI driver
16268
16269     This patch adds routines to handle (flush/invalidate) the dcache for the
16270     QH and qTD structures and data buffers. This is needed on platforms using
16271     this EHCI support with dcache enabled (like the MIPS VCT board port).
16272
16273     Signed-off-by: Stefan Roese <sr@denx.de>
16274     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16275
16276 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
16277 Author: Stefan Roese <sr@denx.de>
16278 Date:   Wed Jan 21 17:12:28 2009 +0100
16279
16280     USB: Add EHCI support for VCT EHCI controller
16281
16282     Signed-off-by: Stefan Roese <sr@denx.de>
16283     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16284
16285 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
16286 Author: Stefan Roese <sr@denx.de>
16287 Date:   Wed Jan 21 17:12:10 2009 +0100
16288
16289     USB: Add config option to call ehci_hcd_init() again after EHCI reset
16290
16291     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
16292     to call ehci_hcd_init() again after ehci_reset() is executed. This
16293     is needed for the upcoming VCT EHCI support which needs to re-init
16294     the hcd part again after the EHCI CMD_RESET is executed.
16295
16296     Signed-off-by: Stefan Roese <sr@denx.de>
16297     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16298
16299 commit 597eb28bd9691266b7b804364cda577cdb51d106
16300 Author: Stefan Roese <sr@denx.de>
16301 Date:   Wed Jan 21 17:12:01 2009 +0100
16302
16303     USB: Fix speed detection on EHCI cntr with root hub transaction translators
16304
16305     This patch fixes an issue that the speed of USB devices was not detected
16306     correctly on some EHCI controllers. This will be used on the upcoming VCT
16307     EHCI support.
16308
16309     Signed-off-by: Stefan Roese <sr@denx.de>
16310     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16311
16312 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
16313 Author: Thomas Abraham <t-abraham@ti.com>
16314 Date:   Sun Jan 4 09:41:20 2009 +0530
16315
16316     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
16317
16318     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
16319     configuration file.
16320
16321     Signed-off-by: Ravi Babu <ravibabu@ti.com>
16322     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
16323     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16324     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
16325     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16326
16327 commit 538ef967715322f64ee08efa2296d9682111b014
16328 Author: Thomas Abraham <t-abraham@ti.com>
16329 Date:   Sun Jan 4 09:41:16 2009 +0530
16330
16331     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
16332
16333     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
16334     controller hook up to USB core layer.
16335
16336     Signed-off-by: Ravi Babu <ravibabu@ti.com>
16337     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
16338     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16339     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
16340     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16341
16342 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
16343 Author: Thomas Abraham <t-abraham@ti.com>
16344 Date:   Sun Jan 4 09:41:13 2009 +0530
16345
16346     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
16347
16348     Adding DM6446 (TI DaVinci) platform specific USB functionality for
16349     USB Phy and VBUS initialization.
16350
16351     Signed-off-by: Ravi Babu <ravibabu@ti.com>
16352     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
16353     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16354     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
16355     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16356
16357 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
16358 Author: Thomas Abraham <t-abraham@ti.com>
16359 Date:   Sun Jan 4 09:41:09 2009 +0530
16360
16361     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
16362
16363     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
16364     platform.
16365
16366     Signed-off-by: Ravi Babu <ravibabu@ti.com>
16367     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
16368     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16369     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
16370     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16371
16372 commit a142896934c755e679ba87e227a8e449f39b0012
16373 Author: Thomas Abraham <t-abraham@ti.com>
16374 Date:   Sun Jan 4 09:41:03 2009 +0530
16375
16376     usb : musb : Adding host controller driver for Mentor USB controller
16377
16378     Adding Mentor USB core functionality and Mentor USB Host controller
16379     functionality for Mentor USB OTG controller (musbhdrc).
16380
16381     Signed-off-by: Ravi Babu <ravibabu@ti.com>
16382     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
16383     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16384     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
16385     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16386
16387 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
16388 Author: Mike Frysinger <vapier@gentoo.org>
16389 Date:   Thu Jan 1 18:27:27 2009 -0500
16390
16391     usb.h: use standard __LITTLE_ENDIAN from Linux headers
16392
16393     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
16394     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
16395     already setting up.
16396
16397     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16398     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16399
16400 commit 7b6e31eb17e3ff76238a60803fc531517d516223
16401 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16402 Date:   Wed Dec 31 10:33:56 2008 +0100
16403
16404     USB ehci ixp4xx support
16405
16406     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
16407
16408     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16409     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16410
16411 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
16412 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16413 Date:   Wed Dec 31 10:33:22 2008 +0100
16414
16415     USB ehci remove infinite loop and use handshake function
16416
16417     USB ehci code cleanup. Use handshake instead of infinite while loop
16418     to check the STD_ASS status
16419
16420     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16421     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16422
16423 commit 8fea2914ac974029b65926ef8247d908f84d202d
16424 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16425 Date:   Wed Dec 31 10:32:41 2008 +0100
16426
16427     Add initial support for USB ehci pci
16428
16429     Add USB ehci pci support. This patch doesn't include any
16430     pci_ids and it is not tested on real hardware.
16431
16432     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16433     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16434
16435 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
16436 Author: Bryan Wu <Bryan.Wu@analog.com>
16437 Date:   Thu Jan 1 19:48:07 2009 -0500
16438
16439     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
16440
16441     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
16442     does not like to be reset, so check for it.
16443
16444     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
16445     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16446     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16447
16448 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
16449 Author: Thomas Abraham <t-abraham@ti.com>
16450 Date:   Sun Jan 4 12:15:35 2009 +0530
16451
16452     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
16453
16454     This patch populates the 'priv' field of the USB keyboard device_t
16455     structure. The 'priv' field is populated with the address of the
16456     'struct usb_device' structure that represents the USB device.
16457
16458     The 'priv' field can then be used in the 'usb_event_poll' function to
16459     determine the USB device that requires to be polled. An
16460     example of its usage in 'usb_event_poll' function is as below.
16461
16462         device_t *dev;
16463         struct usb_device *usb_kbd_dev;
16464
16465         <snip>
16466
16467         dev = device_get_by_name("usbkbd");
16468         usb_kbd_dev = (struct usb_device *)dev->priv;
16469         iface = &usb_kbd_dev->config.if_desc[0];
16470
16471     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
16472     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16473
16474 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
16475 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16476 Date:   Thu Dec 18 10:05:37 2008 +0100
16477
16478     USB change speed
16479
16480     USB changes the speed according to the port status
16481
16482     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16483     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16484
16485 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
16486 Author: Remy Böhmer <linux@bohmer.net>
16487 Date:   Sat Dec 13 22:51:58 2008 +0100
16488
16489     EHCI fix code and ixp4xx test.
16490     USB ehci configuration parameter:
16491
16492     #define CONFIG_CMD_USB          1
16493     #define CONFIG_USB_STORAGE      1
16494     #define CONFIG_USB_EHCI
16495     #define CONFIG_USB_EHCI_IXP4XX      1
16496     #define CONFIG_EHCI_IS_TDI  1
16497     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
16498     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
16499     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
16500     #define CONFIG_LEGACY_USB_INIT_SEQ      1
16501
16502     2 USB Device(s) found
16503            scanning bus for storage devices... 0 Storage Device(s) found
16504     => usb tree
16505
16506     Device Tree:
16507       1  Hub (1.5MBit/s, 0mA)
16508       |  u-boot EHCI Host Controller
16509       |
16510       |+-2  Mass Storage (12MBit/s, 100mA)
16511            Sony Storage Media 0C07040930296
16512
16513     =>
16514
16515     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16516     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16517
16518 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
16519 Author: michael <michael@panicking.retis>
16520 Date:   Thu Dec 11 13:43:55 2008 +0100
16521
16522     [PATCH] This patch add varius fix to the ehci.
16523     - fix ehci_readl, ehci_writel
16524     - introduce new define in ehci.h
16525     - introduce the handshake function for waiting on a register
16526     - fix usb_ehci_fsl with the new HC_LENGTH macro
16527
16528     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16529     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16530
16531 commit db63299b1dd2894ade542278210bccd046de6435
16532 Author: michael <michael@panicking.retis>
16533 Date:   Wed Dec 10 17:55:19 2008 +0100
16534
16535     [PATCH] Fix EHCI usb. I start to test on a
16536     IXP465 board and I find some errors in the code. This
16537     patch fix:
16538     - descriptor initizialization (config, interface and endpoint
16539       must be one next-to the other when the USB_DT_CONFIG message
16540       is send.
16541     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
16542       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
16543     - Introduce the linux version of the usb_config_descriptor and
16544       usb_interface descriptor. This descriptor does't contains
16545       u-boot extension.
16546
16547     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16548     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16549
16550 commit 6b92487dcf9afe83a3570153d66940fdb293be76
16551 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16552 Date:   Fri Nov 28 13:22:09 2008 +0100
16553
16554     USB ehci freescale support
16555
16556     Add USB ehci freescale support
16557
16558     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16559     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16560
16561 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
16562 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16563 Date:   Fri Nov 28 13:20:46 2008 +0100
16564
16565     USB ehci core support
16566
16567     Add USB ehci core support
16568
16569     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16570     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16571
16572 commit 3e126484df7868e341545cce740b24b62b0cd3b7
16573 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16574 Date:   Fri Nov 28 13:19:19 2008 +0100
16575
16576     Prepare USB layer for ehci
16577
16578     Prepare USB layer for ehci support
16579
16580     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16581     Signed-off-by: Remy Böhmer <linux@bohmer.net>
16582
16583 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
16584 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
16585 Date:   Wed Dec 10 15:52:06 2008 +0100
16586
16587     USB storage cleanup patch
16588
16589     Cleanup usb storage
16590
16591     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
16592     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16593
16594 commit fe033ad6d0883063fe857237abb9436fab03208c
16595 Author: Mike Frysinger <vapier@gentoo.org>
16596 Date:   Sun Oct 12 06:02:55 2008 -0400
16597
16598     Blackfin: fixup misc warnings such as printf's and missing casts
16599
16600     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16601
16602 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
16603 Author: Mike Frysinger <vapier@gentoo.org>
16604 Date:   Sun Oct 12 22:09:26 2008 -0400
16605
16606     Blackfin: convert old boards to use COBJS-y Makefile style
16607
16608     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16609
16610 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
16611 Author: Mike Frysinger <vapier@gentoo.org>
16612 Date:   Sat Oct 11 22:38:37 2008 -0400
16613
16614     Blackfin: bf533-stamp: rewrite resource swap logic
16615
16616     The old swap function tended to clobber unrelated pins and screw up masks.
16617     Rewrite the thing from scratch so it only uses the resources it needs.
16618
16619     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16620
16621 commit 29d4ea0a9073c82469184331010136f52edf8db6
16622 Author: Mike Frysinger <vapier@gentoo.org>
16623 Date:   Sat Oct 11 22:08:42 2008 -0400
16624
16625     Blackfin: bootldr: implement BF53x/BF56x LDR loader
16626
16627     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
16628     arbitrary memory locations, so implement a basic one in software.
16629
16630     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16631
16632 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
16633 Author: Mike Frysinger <vapier@gentoo.org>
16634 Date:   Sat Oct 11 22:05:42 2008 -0400
16635
16636     Blackfin: implement real write support for OTP
16637
16638     Now that real documentation has been released for the OTP interface and
16639     the on-chip ROM wrt writing/timings, implement support for reading/writing
16640     as well as dumping/locking.
16641
16642     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16643
16644 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
16645 Author: Mike Frysinger <vapier@gentoo.org>
16646 Date:   Sat Oct 11 22:04:05 2008 -0400
16647
16648     Blackfin: update on-chip ROM API
16649
16650     This brings the API for the on-chip ROM in line with the toolchain and
16651     hardware documentation.
16652
16653     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16654
16655 commit 7633903bff432ec7b27905dce7396958553f2be6
16656 Author: Mike Frysinger <vapier@gentoo.org>
16657 Date:   Sat Oct 11 21:52:17 2008 -0400
16658
16659     Blackfin: allow serial console to be disabled
16660
16661     Some devices have no UART device pulled out, so allow people to disable the
16662     driver completely in favor of other methods (like JTAG-console).
16663
16664     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16665
16666 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
16667 Author: Mike Frysinger <vapier@gentoo.org>
16668 Date:   Sat Oct 11 21:51:20 2008 -0400
16669
16670     Blackfin: support console-over-JTAG
16671
16672     The Blackfin JTAG has the ability to pass data via a back-channel without
16673     halting the processor.  Utilize that channel to emulate a console.
16674
16675     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16676
16677 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
16678 Author: Mike Frysinger <vapier@gentoo.org>
16679 Date:   Sat Oct 11 21:49:06 2008 -0400
16680
16681     Blackfin: handle new anomalies with reset
16682
16683     Workaround fun new anomalies related to software reset of the processor.
16684
16685     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16686
16687 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
16688 Author: Mike Frysinger <vapier@gentoo.org>
16689 Date:   Sat Oct 11 21:44:00 2008 -0400
16690
16691     Blackfin: pass RETX to Linux
16692
16693     Make sure we save the value of RETX at power on and then pass it on to the
16694     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
16695
16696     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16697
16698 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
16699 Author: Mike Frysinger <vapier@gentoo.org>
16700 Date:   Sat Oct 11 21:40:26 2008 -0400
16701
16702     Blackfin: clarify relocation comment during init
16703
16704     People often ask questions about the init process and when things go
16705     from flash to relocated base, so clarify the comments a bit.
16706
16707     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16708
16709 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
16710 Author: Mike Frysinger <vapier@gentoo.org>
16711 Date:   Sat Oct 11 21:23:41 2008 -0400
16712
16713     Blackfin: just set SP register directly during init
16714
16715     No need to set the SP register indirectly to the configured value when it
16716     can be set directly.
16717
16718     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16719
16720 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
16721 Author: Mike Frysinger <vapier@gentoo.org>
16722 Date:   Sat Oct 11 21:15:53 2008 -0400
16723
16724     Blackfin: add portmuxing for UARTs on the BF51x
16725
16726     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16727
16728 commit 4f6a313240c531042f16909a3a170ab047b95779
16729 Author: Mike Frysinger <vapier@gentoo.org>
16730 Date:   Sun Jun 1 01:26:29 2008 -0400
16731
16732     Blackfin: respect CONFIG_CLKIN_HALF
16733
16734     As pointed out by Ivan Koryakovskiy, the initialization code was not
16735     actually respecting the CONFIG_CLKIN_HALF option when configuring the
16736     PLL_CTL register.
16737
16738     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16739
16740 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
16741 Author: Mike Frysinger <vapier@gentoo.org>
16742 Date:   Sun Jun 1 01:21:34 2008 -0400
16743
16744     Blackfin: use common memcpy routine during init
16745
16746     Rather than using a local custom memcpy function, just call the existing
16747     optimized Blackfin version.
16748
16749     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16750
16751 commit 362c943347364e9373af4c5530778491ab56ec2e
16752 Author: Mike Frysinger <vapier@gentoo.org>
16753 Date:   Wed Apr 9 02:27:06 2008 -0400
16754
16755     Blackfin: set default boot SPI CS for BF538/BF539
16756
16757     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
16758     Blackfin parts.
16759
16760     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16761
16762 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
16763 Author: Mike Frysinger <vapier@gentoo.org>
16764 Date:   Wed Apr 9 02:20:59 2008 -0400
16765
16766     Blackfin: punt unused BF533-STAMP definitions
16767
16768     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16769
16770 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
16771 Author: Mike Frysinger <vapier@gentoo.org>
16772 Date:   Fri Apr 18 20:44:11 2008 -0400
16773
16774     Blackfin: resurrect BF533-STAMP video splash driver
16775
16776     This video driver used to live in the Blackfin cpu directory, but it was
16777     lost during the unification process.  This brings it back.
16778
16779     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16780
16781 commit a750d038f2548d846ea1e046d873dc932d041319
16782 Author: Mike Frysinger <vapier@gentoo.org>
16783 Date:   Wed Apr 9 02:31:29 2008 -0400
16784
16785     Blackfin: tighten up post memory coding style
16786
16787     No functional changes here; just cleanup code style a bit.
16788
16789     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16790
16791 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
16792 Author: Mike Frysinger <vapier@gentoo.org>
16793 Date:   Wed Apr 9 02:29:18 2008 -0400
16794
16795     Blackfin: bf537-stamp nand: fix more style errors in previous commit
16796
16797     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16798
16799 commit 41f3325ae9add641036d7cb362e884b698e53f07
16800 Author: Mike Frysinger <vapier@gentoo.org>
16801 Date:   Sat Oct 11 20:31:17 2008 -0400
16802
16803     Blackfin: drop dead/wrong debug code in initdram()
16804
16805     The DEBUG code in initdram() is quite old and was never really useful, so
16806     just drop it altogether.  Common Blackfin debug code does a better job.
16807
16808     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16809
16810 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
16811 Author: Mike Frysinger <vapier@gentoo.org>
16812 Date:   Sat Oct 11 20:30:28 2008 -0400
16813
16814     Blackfin: bf533-ezkit: shuffle flash defines a little
16815
16816     Some of the flash defines weren't in the correct location and caused build
16817     problems in some configurations, so let's move types and defines to better
16818     local locations.
16819
16820     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16821
16822 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
16823 Author: Mike Frysinger <vapier@gentoo.org>
16824 Date:   Mon Oct 6 04:16:47 2008 -0400
16825
16826     Blackfin: overhaul i2c driver
16827
16828     The current Blackfin i2c driver does not work properly with certain devices
16829     due to it breaking up transfers incorrectly.  This is a rewrite of the
16830     driver and relocates it to the newer place in the source tree.
16831
16832     Also remove duplicated I2C speed defines in Blackfin board configs and
16833     disable I2C slave address usage since it isn't implemented.
16834
16835     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16836
16837 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
16838 Author: Mike Frysinger <vapier@gentoo.org>
16839 Date:   Mon Oct 6 04:00:07 2008 -0400
16840
16841     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
16842
16843     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
16844     128kB when setting up the default flash protection region for U-Boot
16845     itself.
16846
16847     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16848
16849 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
16850 Author: Mike Frysinger <vapier@gentoo.org>
16851 Date:   Mon Oct 6 03:57:39 2008 -0400
16852
16853     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
16854
16855     When setting up the global data, rather than relying on sizeof(), use the
16856     common CONFIG_SYS_GBL_DATA_SIZE define.
16857
16858     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16859
16860 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
16861 Author: Mike Frysinger <vapier@gentoo.org>
16862 Date:   Mon Oct 6 03:52:24 2008 -0400
16863
16864     Blackfin: implement general support for CONFIG_STATUS_LED
16865
16866     Here are the Blackfin-specific and board-independent pieces for status leds.
16867
16868     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16869
16870 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
16871 Author: Mike Frysinger <vapier@gentoo.org>
16872 Date:   Mon Oct 6 03:49:32 2008 -0400
16873
16874     Blackfin: do not init i2c in Blackfin board init
16875
16876     The common code takes care of calling i2c_init() when needed, so no point
16877     in us doing it as well.
16878
16879     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16880
16881 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
16882 Author: Mike Frysinger <vapier@gentoo.org>
16883 Date:   Mon Oct 6 03:42:20 2008 -0400
16884
16885     Blackfin: bfin_mac: update port muxing
16886
16887     Adds support more Blackfin parts and fixes broken muxing for older ones.
16888
16889     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16890
16891 commit 05b75e48832fc4afeecf8e76d704349557dffa35
16892 Author: Mike Frysinger <vapier@gentoo.org>
16893 Date:   Mon Oct 6 03:35:44 2008 -0400
16894
16895     Blackfin: fix dcache handling when doing dma memcpy's
16896
16897     Our dcache invalidate function doesn't just invalidate, it also flushes.
16898     So rename the function accordingly and fix the dma_memcpy() function so it
16899     doesn't inadvertently corrupt the data destination.
16900
16901     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16902
16903 commit 68e5632494168095d75f120af70043b68afd2476
16904 Author: Mike Frysinger <vapier@gentoo.org>
16905 Date:   Thu Aug 7 18:56:56 2008 -0400
16906
16907     Blackfin: dont generate ldrs with --force
16908
16909     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16910
16911 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
16912 Author: Mike Frysinger <vapier@gentoo.org>
16913 Date:   Thu Aug 7 18:55:30 2008 -0400
16914
16915     Blackfin: pass --bmode/--initcode when creating ldr
16916
16917     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16918
16919 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
16920 Author: Mike Frysinger <vapier@gentoo.org>
16921 Date:   Thu Aug 7 18:39:27 2008 -0400
16922
16923     Blackfin: minimize time cache is turned off when replacing cplb entries
16924
16925     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16926
16927 commit 21d631360430cf0ae9099612273cd4de28911ba9
16928 Author: Mike Frysinger <vapier@gentoo.org>
16929 Date:   Thu Aug 7 15:31:13 2008 -0400
16930
16931     Blackfin: split cache handling out of dma_memcpy()
16932
16933     Creating a new dma_memcpy() function that skips all cache checks allows us
16934     to use the function in very early init where the cache is not yet setup.
16935
16936     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16937
16938 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
16939 Author: Mike Frysinger <vapier@gentoo.org>
16940 Date:   Thu Aug 7 15:30:49 2008 -0400
16941
16942     Blackfin: abort dma_memcpy() for L1 scratchpad
16943
16944     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16945
16946 commit 81b799add709177e838466461f7b9989488b0fd5
16947 Author: Mike Frysinger <vapier@gentoo.org>
16948 Date:   Thu Aug 7 15:27:52 2008 -0400
16949
16950     Blackfin: rename bootm.c to boot.c
16951
16952     The boot file contains functions for more than just "bootm", so rename it
16953     accordingly.
16954
16955     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16956
16957 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
16958 Author: Mike Frysinger <vapier@gentoo.org>
16959 Date:   Thu Aug 7 13:22:37 2008 -0400
16960
16961     Blackfin: set more sane default board config values
16962
16963     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16964
16965 commit 36cd52a00794fb15ffab05d640acca92d7482993
16966 Author: Mike Frysinger <vapier@gentoo.org>
16967 Date:   Thu Aug 7 15:24:59 2008 -0400
16968
16969     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
16970
16971     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16972
16973 commit c8054bc12e00669bd7588f2b30fef48aa94babac
16974 Author: Mike Frysinger <vapier@gentoo.org>
16975 Date:   Thu Aug 7 13:21:27 2008 -0400
16976
16977     Blackfin: add bit defines for DDR parts
16978
16979     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16980
16981 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
16982 Author: Mike Frysinger <vapier@gentoo.org>
16983 Date:   Thu Aug 7 13:21:11 2008 -0400
16984
16985     Blackfin: add defines to describe active bootrom behavior
16986
16987     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16988
16989 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
16990 Author: Kim Phillips <kim.phillips@freescale.com>
16991 Date:   Tue Jan 27 16:03:53 2009 -0600
16992
16993     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
16994
16995     extend commit c70564e6b1bd08f3230182392238907f3531a87e
16996     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
16997     to the simpc8313 build and fix this:
16998
16999     ...Large Page NAND...Configuring for SIMPC8313 board...
17000     nand_boot_fsl_elbc.o: In function `nand_boot':
17001     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
17002     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
17003     make: *** [nand_spl] Error 2
17004
17005     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17006
17007 commit 54a7cc4912feefa45be961cc47cc159563725d2f
17008 Author: Wolfgang Denk <wd@denx.de>
17009 Date:   Wed Jan 28 09:25:31 2009 +0100
17010
17011     mpc8536ds.c: include sata.h to for needed function prototypes
17012
17013     Signed-off-by: Wolfgang Denk <wd@denx.de>
17014
17015 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
17016 Author: Peter Tyser <ptyser@xes-inc.com>
17017 Date:   Tue Jan 27 18:03:12 2009 -0600
17018
17019     Command usage cleanup
17020
17021     Remove command name from all command "usage" fields and update
17022     common/command.c to display "name - usage" instead of
17023     just "usage". Also remove newlines from command usage fields.
17024
17025     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17026
17027 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
17028 Author: Peter Tyser <ptyser@xes-inc.com>
17029 Date:   Tue Jan 27 18:03:11 2009 -0600
17030
17031     amcc: Clean up command usage output
17032
17033     Update taihu and taishan commands to use cmd_usage() function
17034     to display usage messages.
17035
17036     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17037
17038 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
17039 Author: Peter Tyser <ptyser@xes-inc.com>
17040 Date:   Tue Jan 27 18:03:10 2009 -0600
17041
17042     Standardize command usage messages with cmd_usage()
17043
17044     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17045
17046 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
17047 Author: Peter Tyser <ptyser@xes-inc.com>
17048 Date:   Tue Jan 27 18:03:09 2009 -0600
17049
17050     pcs440ep: Clean up led command definition
17051
17052     The pcs440ep's led command usage formatting is non-standard.  It
17053     was made standard in preparation for larger command usage updates.
17054
17055     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17056
17057 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
17058 Author: Peter Tyser <ptyser@xes-inc.com>
17059 Date:   Tue Jan 27 18:03:08 2009 -0600
17060
17061     Clean up diufb command definitions
17062
17063     The diufb command usage formatting is non-standard.  It was
17064     made standard in preparation for larger command usage updates.
17065
17066     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17067
17068 commit 6450a8485836fc80615ae6de6a864c33369b44f5
17069 Author: Wolfgang Denk <wd@denx.de>
17070 Date:   Wed Jan 28 00:29:26 2009 +0100
17071
17072     Update CHANGELOG, tiny coding style cleanup.
17073
17074     Signed-off-by: Wolfgang Denk <wd@denx.de>
17075
17076 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
17077 Author: Mike Frysinger <vapier@gentoo.org>
17078 Date:   Tue Jan 27 16:12:21 2009 -0500
17079
17080     SATA: do not auto-initialize during boot
17081
17082     Rather than have the board code initialize SATA automatically during boot,
17083     make the user manually run "sata init".  This brings the SATA subsystem in
17084     line with common U-Boot policy.
17085
17086     Rather than having a dedicated weak function "is_sata_supported", people
17087     can override sata_initialize() to do their weird board stuff.  Then they
17088     can call the actual __sata_initialize().
17089
17090     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17091
17092 commit 50970839712dda35399e2fa83fe818df9354d618
17093 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17094 Date:   Mon Jan 26 08:45:14 2009 -0500
17095
17096     part_efi: Fix partition size calculation due to inclusive ending LBA.
17097
17098     The ending LBA is inclusive. Hence, the partition size should be
17099     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
17100
17101     This is confirmed against the results from the parted tool.
17102     (e.g. use parted /dev/sda -s unit S print) and observe the size.
17103
17104     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17105
17106 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
17107 Author: Tomasz Figa <tomasz.figa@gmail.com>
17108 Date:   Tue Dec 30 18:35:57 2008 +0100
17109
17110     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
17111
17112     This patch fixes a bug (?) introduced after inclusion of the new
17113     JFFS2 code.
17114
17115     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
17116     fill in part->sector_size (keeping it as 0), but a correct value is
17117     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
17118     to be in the same place of the memory, what obviously means
17119     impossibility to use the JFFS2 partition.
17120
17121     This problem is fixed in this patch by including sector size
17122     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
17123
17124     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
17125
17126 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
17127 Author: Mike Frysinger <vapier@gentoo.org>
17128 Date:   Tue Dec 30 02:59:25 2008 -0500
17129
17130     saveenv: standardize enablement
17131
17132     Rather than special casing each environment type for enabling the saveenv
17133     command, have them all behave the same.  This avoids bitrot as new env
17134     sources are added/removed.
17135
17136     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17137
17138 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
17139 Author: Andrew Dyer <adyer@righthandtech.com>
17140 Date:   Mon Dec 29 17:36:01 2008 -0600
17141
17142     soft_i2c.c add option for repeated start in i2c_read()
17143
17144     This patch adds a #define to optionally change the behaviour of
17145     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
17146     stop-start between sending the device address pointer write and
17147     reading back the data.  The current behaviour is retained as the
17148     default.
17149
17150     While most devices will work either way, I have a smart battery(*)
17151     that requires repeated start, and someone at some point found a
17152     device that required a stop-start.
17153
17154     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
17155
17156     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17157
17158 commit 3429071700963ca2f944c51d695a7481af0cee33
17159 Author: Wolfgang Denk <wd@denx.de>
17160 Date:   Tue Jan 27 22:07:14 2009 +0100
17161
17162     {delta,zylonite}/lowlevel_init.S: fix typo
17163
17164     Commit 9d803d8c mistakenly changed some constants
17165     from 0x300 into 300 - this patch fixes it.
17166
17167     Pointed out by Tom Evans <tom@ceos.com.au>, see
17168     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
17169     details.
17170
17171     Signed-off-by: Wolfgang Denk <wd@denx.de>
17172
17173 commit 1bc434373013af241835c14011ac3f291dccbf53
17174 Author: Stefan Althoefer <stefan.althoefer@web.de>
17175 Date:   Sat Dec 20 19:40:41 2008 +0100
17176
17177     drivers/net/e1000.c: missing terminator for supported devices
17178
17179     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
17180
17181 commit 65f7d41031a70b1649b35020995c505edca91533
17182 Author: Wolfgang Denk <wd@denx.de>
17183 Date:   Tue Jan 27 21:36:28 2009 +0100
17184
17185     fat.c: fix warning: array subscript is above array bounds
17186
17187     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
17188
17189     Signed-off-by: Wolfgang Denk <wd@denx.de>
17190
17191 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
17192 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17193 Date:   Fri Jan 2 15:11:41 2009 +0100
17194
17195     Fix gunzip in case of insufficient output buffer
17196
17197     U-Boot's gunzip() function does not handle the return code
17198     of zlib's inflate() function correctly. gunzip() is implemented
17199     to uncompress all input data in one run. So the correct return
17200     code for the good case is Z_STREAM_END. In case of insufficient
17201     output buffer memory inflate returns Z_OK. For gunzip() this
17202     is an error.
17203
17204     It also makes sense to me to call inflateEnd() also in case
17205     of an error.
17206
17207     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17208
17209 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
17210 Author: Stefan Roese <sr@denx.de>
17211 Date:   Wed Jan 21 17:25:01 2009 +0100
17212
17213     MIPS: Add VCT board series support (Part 3/3)
17214
17215     Signed-off-by: Stefan Roese <sr@denx.de>
17216
17217 commit ae691e5719c48f1d2826cb72722497d1d162765b
17218 Author: Stefan Roese <sr@denx.de>
17219 Date:   Wed Jan 21 17:24:49 2009 +0100
17220
17221     MIPS: Add VCT board series support (Part 2/3)
17222
17223     Signed-off-by: Stefan Roese <sr@denx.de>
17224
17225 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
17226 Author: Stefan Roese <sr@denx.de>
17227 Date:   Wed Jan 21 17:24:39 2009 +0100
17228
17229     MIPS: Add VCT board series support (Part 1/3)
17230
17231     Signed-off-by: Stefan Roese <sr@denx.de>
17232
17233 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
17234 Author: Stefan Roese <sr@denx.de>
17235 Date:   Wed Jan 21 17:20:20 2009 +0100
17236
17237     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
17238
17239     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
17240     Those functions are needed for the upcoming dcache support for the USB
17241     EHCI driver. I chose this API because those cache handling functions are
17242     already present in the PPC architecture.
17243
17244     Signed-off-by: Stefan Roese <sr@denx.de>
17245     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17246
17247 commit de832a99414ff06a4b2cdc9f5280b387da039834
17248 Author: Stefan Roese <sr@denx.de>
17249 Date:   Mon Jan 26 10:05:20 2009 +0100
17250
17251     nand_spl: Fix compile problem with board_nand_init() prototype
17252
17253     This patch removes the now obsolete and additionally wrongly defined
17254     board_nand_init() prototype from nand_spl/nand_boot.c.
17255
17256     Signed-off-by: Stefan Roese <sr@denx.de>
17257     Signed-off-by: Scott Wood <scottwood@freescale.com>
17258
17259 commit e8eac437189430d8e04a5d254ed92c58bc534a79
17260 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17261 Date:   Wed Jan 14 08:44:26 2009 -0500
17262
17263     CFI: Add geometry reversal for STMicro M29W320ET
17264
17265     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
17266
17267     Modeled after flash_fixup_amd, this patch handles the geometry reversal
17268     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
17269     Since I cannot test all STM's chips, the detection is implemented as
17270     narrow as possible for now.
17271
17272     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
17273     Signed-off-by: Stefan Roese <sr@denx.de>
17274
17275 commit 0f8e851e897b535959a0781171910cd97f33c30c
17276 Author: Jens Gehrlein <sew_s@tqs.de>
17277 Date:   Tue Dec 16 17:25:55 2008 +0100
17278
17279     CFI: increase performance of function find_sector()
17280
17281     Tested on TQM5200S-BD with Samsung K8P2815UQB
17282
17283     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
17284     Signed-off-by: Stefan Roese <sr@denx.de>
17285
17286 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
17287 Author: Jens Gehrlein <sew_s@tqs.de>
17288 Date:   Tue Dec 16 17:25:54 2008 +0100
17289
17290     CFI: avoid redundant function call in single word programming mode
17291
17292     The function find_sector() doesn't need to be called twice in
17293     the case of AMD command set.
17294     Tested on TQM5200S-BD with Samsung K8P2815UQB.
17295
17296     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
17297     Signed-off-by: Stefan Roese <sr@denx.de>
17298
17299 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
17300 Author: Stefan Roese <sr@denx.de>
17301 Date:   Mon Jan 26 10:15:23 2009 +0100
17302
17303     ppc4xx: Remove compilation warning in gdppc440etc.c
17304
17305     Signed-off-by: Stefan Roese <sr@denx.de>
17306
17307 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
17308 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17309 Date:   Fri Jan 2 12:19:47 2009 +0100
17310
17311     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
17312
17313     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
17314     Either they define or undef it. Because it's not used in any source
17315     files this patch removes any references to it.
17316
17317     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17318     Signed-off-by: Stefan Roese <sr@denx.de>
17319
17320 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
17321 Author: Dirk Eibach <eibach@gdsys.de>
17322 Date:   Tue Dec 9 13:12:40 2008 +0100
17323
17324     ppc4xx: Add GDsys PowerPC 440 ETX board support.
17325
17326     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
17327     Based on the AMCC Yosemite board support by Stefan Roese.
17328
17329     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
17330     Signed-off-by: Stefan Roese <sr@denx.de>
17331
17332 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
17333 Author: Dirk Eibach <eibach@gdsys.de>
17334 Date:   Tue Dec 9 11:00:07 2008 +0100
17335
17336     ppc4xx: Improve DDR autodetect
17337
17338     Added support for a second memory bank to DDR autodetection for 440
17339     platforms.
17340     Made hardcoded values configurable.
17341
17342     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
17343     Signed-off-by: Stefan Roese <sr@denx.de>
17344
17345 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
17346 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17347 Date:   Fri Nov 21 12:06:26 2008 +0900
17348
17349     sh: sh7763rdp: Update sh7763rdp config
17350
17351     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
17352
17353     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17354     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17355
17356 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
17357 Author: Gary Jennejohn <garyj@denx.de>
17358 Date:   Thu Nov 20 12:28:38 2008 +0100
17359
17360     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
17361
17362     This change is needed for mgcoge because it uses two ethernet drivers.
17363
17364     Add a check for the presence of the PIGGY board on mgcoge.  Without this
17365     board networking cannot work and the initialization must be aborted.
17366
17367     Only allocate rtx once to prevent DPRAM exhaustion.
17368
17369     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
17370     soon) in eth.c.
17371
17372     Signed-off-by: Gary Jennejohn <garyj@denx.de>
17373     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17374
17375 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
17376 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17377 Date:   Fri Nov 21 12:04:18 2008 +0900
17378
17379     sh: sh_eth: Change new network API
17380
17381     sh_eth used old network API. This patch changed new API.
17382
17383     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17384     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17385
17386 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
17387 Author: Stefan Roese <sr@denx.de>
17388 Date:   Wed Nov 12 13:31:02 2008 +0100
17389
17390     net: smc911x: Make register read/write functions weak
17391
17392     This patch changes the reg_read/_write to smc911x_reg_read/_write
17393     and defines then as weak so that they can be overridden by board
17394     specific version.
17395
17396     This will be used by the upcoming VCTH board support.
17397
17398     Signed-off-by: Stefan Roese <sr@denx.de>
17399     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17400
17401 commit 8b69b563039989885969d24465c56f8ac4c07c4c
17402 Author: Heiko Schocher <hs@denx.de>
17403 Date:   Thu Nov 20 09:57:14 2008 +0100
17404
17405     powerpc: net: support for the SMSC LAN8700 PHY
17406
17407     Signed-off-by: Heiko Schocher <hs@denx.de>
17408     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17409
17410 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
17411 Author: Alessandro Rubini <rubini@unipv.it>
17412 Date:   Sat Jan 24 18:10:37 2009 +0100
17413
17414     Initial support for Nomadik 8815 development board
17415
17416     The NMDK8815 board is distributed by ST Microelectornics.
17417     Other (proprietary) code must be run to unlock the CPU before
17418     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
17419
17420     This is the initial port, with basic infrastructure and
17421     a working serial port.
17422
17423     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
17424     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
17425     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17426
17427 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
17428 Author: Dirk Behme <dirk.behme@googlemail.com>
17429 Date:   Sun Dec 14 09:47:18 2008 +0100
17430
17431     OMAP3: Add I2C support
17432
17433     Add I2C support.
17434
17435     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17436
17437 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
17438 Author: Dirk Behme <dirk.behme@googlemail.com>
17439 Date:   Sun Dec 14 09:47:17 2008 +0100
17440
17441     OMAP3: Add MMC support
17442
17443     Add MMC support.
17444
17445     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17446
17447 commit 12201a13547ec22ddcdae278e74465e54a3be60c
17448 Author: Dirk Behme <dirk.behme@googlemail.com>
17449 Date:   Sun Dec 14 09:47:16 2008 +0100
17450
17451     OMAP3: Add NAND support
17452
17453     Add NAND support.
17454
17455     Signed-off-by: Nishanth Menon <nm@ti.com>
17456     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
17457     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17458
17459 commit 91eee546737ae21d930af479530997174c342b13
17460 Author: Dirk Behme <dirk.behme@googlemail.com>
17461 Date:   Sun Dec 14 09:47:15 2008 +0100
17462
17463     OMAP3: Add common board, interrupt and system info
17464
17465     Add common board, interrupt and system info code.
17466
17467     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17468
17469 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
17470 Author: Dirk Behme <dirk.behme@googlemail.com>
17471 Date:   Sun Dec 14 09:47:14 2008 +0100
17472
17473     OMAP3: Add common clock, memory and low level code
17474
17475     Add common clock, memory and low level code
17476
17477     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17478
17479 commit 0b02b184003e6a5023e05d5f31de54db279b1431
17480 Author: Dirk Behme <dirk.behme@googlemail.com>
17481 Date:   Sun Dec 14 09:47:13 2008 +0100
17482
17483     OMAP3: Add common cpu and start code
17484
17485     Add common cpu and start code.
17486
17487     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17488
17489 commit a8b6450546cd507d331b8fde384791d84bde5651
17490 Author: Dirk Behme <dirk.behme@googlemail.com>
17491 Date:   Sun Dec 14 09:47:12 2008 +0100
17492
17493     OMAP3: Add OMAP3, memory and function prototype headers
17494
17495     Add OMAP3, memory and function prototype header files for OMAP3.
17496
17497     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17498
17499 commit 2c803210a464abbac35752ca1c737514360b4c32
17500 Author: Dirk Behme <dirk.behme@googlemail.com>
17501 Date:   Sun Dec 14 09:47:11 2008 +0100
17502
17503     OMAP3: Add pin mux, clock and cpu headers
17504
17505     Add pin mux, clock and cpu header files for OMAP3.
17506
17507     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17508
17509 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
17510 Author: Maxim Artamonov <scn1874@yandex.ru>
17511 Date:   Wed Dec 3 05:38:17 2008 +0300
17512
17513     bugfix for i.mx31 CCM_UPCTL reg
17514
17515     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
17516
17517 commit 24113a44ed5cd3257a0237c3961e121812fca6db
17518 Author: Mike Frysinger <vapier@gentoo.org>
17519 Date:   Tue Dec 30 03:15:38 2008 -0500
17520
17521     easylogo: add optional gzip support
17522
17523     Some images can be quite large, so add an option to compress the
17524     image data with gzip in the U-Boot image. Then at runtime, the
17525     board can decompress it with the normal zlib functions.
17526
17527     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17528
17529 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
17530 Author: Bryan Wu <bryan.wu@analog.com>
17531 Date:   Fri Jan 2 20:47:45 2009 -0500
17532
17533     fat: fix unaligned errors
17534
17535     A couple of buffers in the fat code are declared as an array of bytes.
17536     But it is then cast up to a structure with 16bit and 32bit members.
17537     Since GCC assumes structure alignment here, we have to force the
17538     buffers to be aligned according to the structure usage.
17539
17540     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
17541     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17542
17543 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
17544 Author: Brad Bozarth <bflinux@yumbrad.com>
17545 Date:   Thu Jan 1 22:45:47 2009 -0500
17546
17547     spi flash: fix crash due to spi flash miscommunication
17548
17549     Higher spi flash layers expect to be given back a pointer that was
17550     malloced so that it can free the result, but the lower layers return
17551     a pointer that is in the middle of the malloced memory. Reorder the
17552     members of the lower spi structures so that things work out.
17553
17554     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
17555     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17556     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17557
17558 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
17559 Author: Yuri Tikhonov <yur@emcraft.com>
17560 Date:   Sat Dec 20 14:54:21 2008 +0300
17561
17562     FPU POST: fix warnings when building with 2.18 binutils
17563
17564     When compile u-boot with the 2.18 binutils the following
17565     warning messages for each object file in post/lib_ppc/fpu/ is
17566     produced at the linking stage:
17567
17568     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
17569     ...
17570
17571     This is because of the fact that, in general, the soft-float and
17572     hard-float ABIs are incompatible; the 2.18 binutils do checking
17573     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
17574     produce the worning like above if these are not compatible.
17575
17576     The incompatibility of ABIs is concerned only the float values:
17577     e.g. the soft-float ABI assumes the float argument passing in the
17578     pair of rX registers, and the hard-float ABI assumes passing of
17579     the float argument in the fX register. When we don't pass the float
17580     arguments between the functions compiled with different floatness,
17581     then such an application will work correctly.
17582     This is the case for the FPU POST: u-boot (compiled with soft-float)
17583     doesn't pass to (and doesn't get from) the FPU POST functions any
17584     floats; there are no functions exported from the post/lib_ppc/fpu/
17585     objects which would work with float parameters/returns too. So, we
17586     can reassure the linker not to worry about the difference in ABI
17587     attributes of linking files just by setting the 'soft-float'
17588     attribute for the objects in post/lib_ppc/fpu. And this patch does
17589     this.
17590
17591     Also, to avoid passing both soft- and hard-float options in CFLAGS
17592     when compiling the files from post/lib_ppc/fpu (which is OK, but
17593     looks rather dirty) this patch removes the soft-float string from
17594     CFLAGS in post/lib_ppc/fpu/Makefile.
17595
17596     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17597
17598 commit a7c9310457e85b4598abe5b304108edf11332e2f
17599 Author: Peter Tyser <ptyser@xes-inc.com>
17600 Date:   Wed Dec 17 16:36:22 2008 -0600
17601
17602     Add support for Maxim's DS4510 I2C device
17603
17604     Initial support for the DS4510, a CPU supervisor with
17605     integrated EEPROM, SRAM, and 4 programmable non-volatile
17606     GPIO pins. The CONFIG_DS4510 define enables support
17607     for the device while the CONFIG_CMD_DS4510 define
17608     enables the ds4510 command. The additional
17609     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
17610     CONFIG_DS4510_RST defines add additional sub-commands
17611     to the ds4510 command when defined.
17612
17613     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17614
17615 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
17616 Author: Dirk Eibach <eibach@gdsys.de>
17617 Date:   Tue Dec 16 14:51:56 2008 +0100
17618
17619     common: Iteration limit for memory test.
17620
17621     The iteration limit is passed to mtest as a fourth parameter:
17622     [start [end [pattern [iterations]]]]
17623     If no fourth parameter is supplied, there is no iteration limit and the
17624     test will loop forever.
17625
17626     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
17627
17628 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
17629 Author: Stefan Roese <sr@denx.de>
17630 Date:   Mon Dec 15 15:40:12 2008 +0100
17631
17632     serial: Rename driver vcth to vct to support other board variants
17633
17634     Moved driver vcth.c to vct.c to better reflect the VCT board series.
17635     This driver is now used by the VCT platforms:
17636
17637     vct_premium
17638     vct_platinum
17639     vct_platinumsvc
17640
17641     Signed-off-by: Stefan Roese <sr@denx.de>
17642
17643 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
17644 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17645 Date:   Fri Dec 12 00:45:27 2008 +0900
17646
17647     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
17648
17649     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17650
17651 commit c3284b030b1cd492b4f46c576aea01bef258599d
17652 Author: Peter Korsgaard <jacmet@sunsite.dk>
17653 Date:   Wed Dec 10 16:24:16 2008 +0100
17654
17655     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
17656
17657     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
17658     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
17659     !CONFIG_AUTOBOOT_KEYED case.
17660
17661     Do this by reversing the loop so we do at least one iteration before
17662     checking for timeout.
17663
17664     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
17665
17666 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
17667 Author: Niklaus Giger <niklaus.giger@netstal.com>
17668 Date:   Mon Dec 8 17:24:08 2008 +0100
17669
17670     Added legacy flash ST Micro M29W040B
17671
17672 commit 626d07348e5f9f302f4ea182161a89f7362a0488
17673 Author: Graeme Russ <graeme.russ@gmail.com>
17674 Date:   Mon Dec 8 20:04:51 2008 +1100
17675
17676     Fixed off-by-one errors in lib_m68k/interrupts.c
17677
17678     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17679
17680 commit a5989c42ae5e295f274a795c426c47819bbdbfda
17681 Author: Graeme Russ <graeme.russ@gmail.com>
17682 Date:   Sun Dec 7 10:29:05 2008 +1100
17683
17684     Removed all references to CONFIG_SYS_RESET_GENERIC
17685
17686     Generic i386 reset - #define made redundant by weak function
17687
17688     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17689
17690 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
17691 Author: Graeme Russ <graeme.russ@gmail.com>
17692 Date:   Sun Dec 7 10:29:04 2008 +1100
17693
17694     Remove #ifdef CONFIG_SC520 in source code
17695
17696     CONFIG_SC520 is now used for conditional compile
17697
17698     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17699
17700 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
17701 Author: Graeme Russ <graeme.russ@gmail.com>
17702 Date:   Sun Dec 7 10:29:03 2008 +1100
17703
17704     Added MMCR reset functionality
17705
17706     Reset function specific to AMD SC520 microcontroller - Is more of a
17707     'hard reset' that the triple fault.
17708
17709     Requires CONFIG_SYS_RESET_SC520 to be defined in config
17710
17711     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
17712     but ld requires that a object file in a library arhive MUST contain
17713     at least one function which does not override a weak function (and is
17714     called from outside the object file) in order for that object file to
17715     be extracted from the archive. This would be the only function on the
17716     new file, and hence, will never get linked in.
17717
17718     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17719
17720 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
17721 Author: Graeme Russ <graeme.russ@gmail.com>
17722 Date:   Sun Dec 7 10:29:02 2008 +1100
17723
17724     Moved generic (triple fault) reset code
17725
17726     Moved from interrupts.c to cpu.c and made into a weak function to
17727     allow vendor specific override
17728
17729     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
17730     added to the vendor specific code without the need to remember to
17731     #undef usage of the generic method and if you forget to include your
17732     custom reset method, you will always get the default.
17733
17734     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17735
17736 commit 9933d609020c297788f53f334c8465fa7a99b10c
17737 Author: Graeme Russ <graeme.russ@gmail.com>
17738 Date:   Sun Dec 7 10:29:01 2008 +1100
17739
17740     Moved definition of set_vector() to new header file
17741
17742     This allows for future tidy ups and functionality that will require
17743     set_vector ()
17744
17745     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17746
17747 commit 407976185e0dda2c90e89027121a1071b9c77bfb
17748 Author: Graeme Russ <graeme.russ@gmail.com>
17749 Date:   Sun Dec 7 10:29:00 2008 +1100
17750
17751     Moved sc520 specific code into new cpu/i386/sc520 folder
17752
17753     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17754     Signed-off-by: Wolfgang Denk <wd@denx.de>
17755
17756 commit 85ffbbd51914925a542d8528be7f072e5ab02157
17757 Author: Graeme Russ <graeme.russ@gmail.com>
17758 Date:   Sun Dec 7 10:28:58 2008 +1100
17759
17760     Renamed cpu/i386/reset.S to resetvec.S
17761
17762     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
17763     for CPU reset functions
17764
17765     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17766
17767 commit a3f4c123f569474e80ea012b8db0de46afdb6443
17768 Author: Wolfgang Denk <wd@denx.de>
17769 Date:   Sat Jan 24 01:01:49 2009 +0100
17770
17771     Makefile: keep lists sorted.
17772
17773     Signed-off-by: Wolfgang Denk <wd@denx.de>
17774
17775 commit c620c01e96814558470698ed5cab1bf2f504d1b5
17776 Author: Graeme Russ <graeme.russ@gmail.com>
17777 Date:   Sun Dec 7 10:28:57 2008 +1100
17778
17779     Added initial eNET board support
17780
17781     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17782
17783 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
17784 Author: Gary Jennejohn <garyj@denx.de>
17785 Date:   Thu Nov 20 11:37:26 2008 +0100
17786
17787     POWERPC 82xx: add the SCC as an HDLC controller
17788
17789     Right now this is only used by keymile.
17790
17791     Signed-off-by: Gary Jennejohn <garyj@denx.de>
17792
17793 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
17794 Author: Heiko Schocher <hs@denx.de>
17795 Date:   Thu Nov 20 09:59:09 2008 +0100
17796
17797     powerpc, keymile boards: extract identical config options
17798
17799     This patch extracts the identical config options for the
17800     keymile boards mgcoge, mgsuvd and kmeter1 in a new
17801     common config file keymile-common.h.
17802
17803     Signed-off-by: Heiko Schocher <hs@denx.de>
17804
17805 commit 210c8c00aad3328145204adab434bb7d70b06b75
17806 Author: Heiko Schocher <hs@denx.de>
17807 Date:   Fri Nov 21 08:29:40 2008 +0100
17808
17809     powerpc: keymile: Add a check for the PIGGY debug board
17810
17811     Check the presence of the PIGGY on the keymile boards mgcoge,
17812     mgsuvd and kmeter1. If the PIGGY is not present, dont register
17813     this Ethernet device.
17814
17815     Signed-off-by: Heiko Schocher <hs@denx.de>
17816     Acked-by: Ben Warren <biggerbadderben@gmail.com>
17817
17818 commit de0443614af4d16675ab436665aeb11ddc9f7214
17819 Author: Heiko Schocher <hs@denx.de>
17820 Date:   Thu Nov 20 09:57:47 2008 +0100
17821
17822     powerpc: 83xx: add support for the kmeter1 board
17823
17824     This patch adds support for the kmeter1 board from Keymile,
17825     based on a Freescale MPC8360 CPU.
17826
17827     - serial console on UART 1
17828     - 256 MB DDR2 RAM
17829     - 64 MB NOR Flash
17830     - Ethernet RMII Mode over UCC4
17831     - PHY SMSC LAN8700
17832
17833     Signed-off-by: Heiko Schocher <hs@denx.de>
17834
17835 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
17836 Author: Sergei Poselenov <sposelenov@emcraft.com>
17837 Date:   Tue Nov 4 13:51:18 2008 +0100
17838
17839     Add a do_div() wrapper macro, lldiv().
17840
17841     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
17842     the dividend and returns the result of division, so it is useful
17843     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
17844
17845     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17846
17847 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
17848 Author: Kumar Gala <galak@kernel.crashing.org>
17849 Date:   Fri Jan 23 14:22:14 2009 -0600
17850
17851     85xx: Add a 36-bit physical configuration for MPC8572DS
17852
17853     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
17854     to allow for larger memory sizes.
17855
17856     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17857
17858 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
17859 Author: Kumar Gala <galak@kernel.crashing.org>
17860 Date:   Fri Jan 23 14:22:13 2009 -0600
17861
17862     85xx: Handle eLBC difference w/36-bit physical
17863
17864     The eLBC only handles 32-bit physical address in systems with 36-bit
17865     physical.  The previos generation of LBC handled 34-bit physical
17866     address in 36-bit systems.  Added a new CONFIG option to convey
17867     the difference between the LBC and eLBC.
17868
17869     Also added defines for XAM bits used in LBC for the extended 34-bit
17870     support.
17871
17872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17873
17874 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
17875 Author: Kumar Gala <galak@kernel.crashing.org>
17876 Date:   Fri Jan 23 14:22:12 2009 -0600
17877
17878     85xx: Use BR_ADDR macro for NAND chipselects
17879
17880     Use the new BR_ADDR macro to properly setup the address field of the
17881     localbus chipselects used by NAND.
17882
17883     This allows us to deal with 36-bit phys on these boards in the future.
17884
17885     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17886
17887 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
17888 Author: Haiying Wang <Haiying.Wang@freescale.com>
17889 Date:   Thu Jan 15 11:58:35 2009 -0500
17890
17891     Add secondary CPUs processor frequency for e500 core
17892
17893     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
17894     and prints each CPU's frequency separately. It also fixes up each CPU's
17895     frequency in "clock-frequency" of fdt blob.
17896
17897     Signed-off-by: James Yang <James.Yang@freescale.com>
17898     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17899
17900 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
17901 Author: Dave Liu <daveliu@freescale.com>
17902 Date:   Fri Nov 21 16:31:53 2008 +0800
17903
17904     85xx: enable the auto self refresh for wake up ARP
17905
17906     The wake up ARP feature need use the memory to process
17907     wake up packet, we enable auto self refresh to support it.
17908
17909     Signed-off-by: Dave Liu <daveliu@freescale.com>
17910     Acked-by: Andy Fleming <afleming@freescale.com>
17911
17912 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
17913 Author: Dave Liu <daveliu@freescale.com>
17914 Date:   Fri Nov 21 16:31:43 2008 +0800
17915
17916     fsl-ddr: use the 1T timing as default configuration
17917
17918     For light loaded system, we use the 1T timing to gain better
17919     memory performance, but for some heavily loaded system,
17920     you have to add the 2T timing options to board files.
17921
17922     Signed-off-by: Dave Liu <daveliu@freescale.com>
17923     Acked-by: Andy Fleming <afleming@freescale.com>
17924
17925 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
17926 Author: Dave Liu <daveliu@freescale.com>
17927 Date:   Fri Nov 21 16:31:35 2008 +0800
17928
17929     fsl-ddr: make the self refresh idle threshold configurable
17930
17931     Some 85xx processors have the advanced power management feature,
17932     such as wake up ARP, that needs enable the automatic self refresh.
17933
17934     If the DDR controller pass the SR_IT (self refresh idle threshold)
17935     idle cycles, it will automatically enter self refresh. However,
17936     anytime one transaction is issued to the DDR controller, it will
17937     reset the counter and exit self refresh state.
17938
17939     Signed-off-by: Dave Liu <daveliu@freescale.com>
17940     Acked-by: Andy Fleming <afleming@freescale.com>
17941
17942 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
17943 Author: Dave Liu <daveliu@freescale.com>
17944 Date:   Fri Nov 21 16:31:29 2008 +0800
17945
17946     fsl-ddr: clean up the ddr code for DDR3 controller
17947
17948     - The DDR3 controller is expanding the bits for timing config
17949     - Add the DDR3 32-bit bus mode support
17950
17951     Signed-off-by: Dave Liu <daveliu@freescale.com>
17952     Acked-by: Andy Fleming <afleming@freescale.com>
17953
17954 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
17955 Author: Dave Liu <daveliu@freescale.com>
17956 Date:   Fri Nov 21 16:31:22 2008 +0800
17957
17958     fsl-ddr: update the bit mask for DDR3 controller
17959
17960     According to the latest 8572 UM, the DDR3 controller
17961     is expanding the bit mask, and we use the extend ACTTOPRE
17962     mode when tRAS more than 19 MCLK.
17963
17964     Signed-off-by: Dave Liu <daveliu@freescale.com>
17965
17966 commit aca5f018a8386b85469482ed9867e3e29a2437d0
17967 Author: Kumar Gala <galak@kernel.crashing.org>
17968 Date:   Tue Dec 2 16:08:40 2008 -0600
17969
17970     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
17971
17972     Introduce a new define to seperate out the virtual address that PCI
17973     IO space is at from the physical address.  In most situations these are
17974     mapped 1:1.  However any code accessing the bus should use VIRT.
17975
17976     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17977     Acked-by: Andy Fleming <afleming@freescale.com>
17978
17979 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
17980 Author: Kumar Gala <galak@kernel.crashing.org>
17981 Date:   Tue Dec 2 16:08:39 2008 -0600
17982
17983     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
17984
17985     Introduce a new define to seperate out the virtual address that PCI
17986     memory is at from the physical address.  In most situations these are
17987     mapped 1:1.  However any code accessing the bus should use VIRT.
17988
17989     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17990     Acked-by: Andy Fleming <afleming@freescale.com>
17991
17992 commit a6e04c344ad1eefd47a75484441b385da815b8df
17993 Author: Kumar Gala <galak@kernel.crashing.org>
17994 Date:   Tue Dec 2 16:08:38 2008 -0600
17995
17996     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
17997
17998     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
17999     of TLBs.  This is what we should have always been using from the start.
18000
18001     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18002     Acked-by: Andy Fleming <afleming@freescale.com>
18003
18004 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
18005 Author: Kumar Gala <galak@kernel.crashing.org>
18006 Date:   Tue Dec 2 16:08:37 2008 -0600
18007
18008     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
18009
18010     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
18011     of _IO_BASE so we are more explicit.
18012
18013     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18014
18015 commit 10795f42cb94e71bcb262b615084f69dd886399a
18016 Author: Kumar Gala <galak@kernel.crashing.org>
18017 Date:   Tue Dec 2 16:08:36 2008 -0600
18018
18019     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
18020
18021     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
18022     of _MEM_BASE so we are more explicit.
18023
18024     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18025     Acked-by: Andy Fleming <afleming@freescale.com>
18026
18027 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
18028 Author: Kumar Gala <galak@kernel.crashing.org>
18029 Date:   Tue Dec 2 14:19:34 2008 -0600
18030
18031     85xx: separate FLASH BASE virtual from physical address
18032
18033     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
18034     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
18035
18036     This allows us to deal with 36-bit phys on these boards in the future.
18037
18038     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18039     Acked-by: Andy Fleming <afleming@freescale.com>
18040
18041 commit 52b565f5ad23b682489055b187767d8bf1c2e444
18042 Author: Kumar Gala <galak@kernel.crashing.org>
18043 Date:   Tue Dec 2 14:19:33 2008 -0600
18044
18045     85xx: separate PIXIS virtual from physical address
18046
18047     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
18048     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
18049
18050     This allows us to deal with 36-bit phys on these boards in the future.
18051
18052     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18053     Acked-by: Andy Fleming <afleming@freescale.com>
18054
18055 commit 30837e5b21d5a742983581ab9ee3fac085311d19
18056 Author: Haiying Wang <Haiying.Wang@freescale.com>
18057 Date:   Tue Nov 11 08:52:09 2008 -0500
18058
18059     Add README file for MPC8572DS board
18060
18061     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
18062     Acked-by: Andy Fleming <afleming@freescale.com>
18063
18064 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
18065 Author: Mike Frysinger <vapier@gentoo.org>
18066 Date:   Mon Oct 20 16:15:04 2008 -0400
18067
18068     Blackfin: use common strmhz() in system output
18069
18070     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18071
18072 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
18073 Author: Ron Madrid <ron_madrid@sbcglobal.net>
18074 Date:   Thu Jan 22 15:05:24 2009 -0800
18075
18076     mpc83xx: New board support for SIMPC8313
18077
18078     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
18079     board boots from NAND devices and is configureable for either large or small
18080     page devices.  The board supports non-soldered DDR2, one ethernet port, a
18081     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
18082     to the eLBC providing glue logic to a TMS320C67xx DSP.
18083
18084     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
18085     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18086
18087 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
18088 Author: Mike Frysinger <vapier@gentoo.org>
18089 Date:   Sun Jan 18 19:46:06 2009 -0500
18090
18091     nand: fixup printf modifiers to match types used
18092
18093     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18094     Signed-off-by: Scott Wood <scottwood@freescale.com>
18095
18096 commit 389e6620e2271096df3316917528003627db4021
18097 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
18098 Date:   Tue Jan 20 16:57:55 2009 +0100
18099
18100     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
18101
18102     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
18103     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
18104     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
18105     tested before ".jffs2s" and only the first two characters are compared.
18106
18107     Correction:
18108     Test for ".jffs2s" first and compare the first 7 characters.
18109
18110     Signed-off-by: Scott Wood <scottwood@freescale.com>
18111
18112 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
18113 Author: Wolfgang Grandegger <wg@grandegger.com>
18114 Date:   Fri Jan 16 18:55:54 2009 +0100
18115
18116     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
18117
18118     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
18119     changes the default from 8 to 1 for the legacy and the new MTD
18120     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
18121     in the board config files because none of the boards use multi
18122     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
18123     define
18124
18125      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
18126
18127     but that's bogus and did not work anyhow.
18128
18129     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
18130     Signed-off-by: Scott Wood <scottwood@freescale.com>
18131
18132 commit c70564e6b1bd08f3230182392238907f3531a87e
18133 Author: Dave Liu <daveliu@freescale.com>
18134 Date:   Tue Dec 2 11:48:51 2008 +0800
18135
18136     NAND: Fix cache and memory inconsistency issue
18137
18138     We load the secondary stage u-boot image from NAND to
18139     system memory by nand_load, but we did not flush d-cache
18140     to memory, nor invalidate i-cache before we jump to RAM.
18141     When the system has cache enabled and the TLB/page attribute
18142     of system memory is cacheable, it will cause issues.
18143
18144     - 83xx family is using the d-cache lock, so all of d-cache
18145       access is cache-inhibited. so you can't see the issue.
18146     - 85xx family is using d-cache, i-cache enable, partial
18147       cache lock. you will see the issue.
18148
18149     This patch fixes the cache issue.
18150
18151     Signed-off-by: Dave Liu <daveliu@freescale.com>
18152     Signed-off-by: Scott Wood <scottwood@freescale.com>
18153
18154 commit 50657c273278f74378e1ac39b41d612b92fdffa0
18155 Author: Nishanth Menon <menon.nishanth@gmail.com>
18156 Date:   Sat Dec 13 09:43:06 2008 -0600
18157
18158     NAND: Enable nand lock, unlock feature
18159
18160     Enable nand lock, unlock and status of lock feature.
18161     Not every device and platform requires this, hence,
18162     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
18163
18164     Nand unlock and status operate on block boundary instead
18165     of page boundary. Details in:
18166     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
18167
18168     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
18169     Includes preliminary suggestions from Scott Wood
18170
18171     Signed-off-by: Nishanth Menon <nm@ti.com>
18172     Signed-off-by: Scott Wood <scottwood@freescale.com>
18173
18174 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
18175 Author: Mike Frysinger <vapier@gentoo.org>
18176 Date:   Sat Dec 6 02:40:55 2008 -0500
18177
18178     NAND: move board_nand_init to nand.h
18179
18180     Rather than putting the function prototype for board_nand_init() in the one
18181     place where it gets called, put it into nand.h so that every place that also
18182     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
18183     such as using the wrong return value (void rather than int) when defining
18184     the function.
18185
18186     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18187     Signed-off-by: Scott Wood <scottwood@freescale.com>
18188
18189 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
18190 Author: Stefan Roese <sr@denx.de>
18191 Date:   Tue Dec 2 11:06:47 2008 +0100
18192
18193     OneNAND: Additional sync with 2.6.27
18194
18195     - Add subpage write support
18196     - Add onenand_oob_64/32 ecclayout
18197
18198     This has been missing and without it UBI has some incompatibilies issues
18199     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
18200     placed differently (2048 instead of 512) without this fix.
18201
18202     Signed-off-by: Stefan Roese <sr@denx.de>
18203     Signed-off-by: Scott Wood <scottwood@freescale.com>
18204
18205 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
18206 Author: Kyungmin Park <kmpark@infradead.org>
18207 Date:   Thu Nov 13 15:14:33 2008 +0900
18208
18209     Add markbad function
18210
18211     Add missing markbad function
18212     If not, it's hang when it entered the mtd->mark_bad().
18213
18214     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18215
18216 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
18217 Author: Stefan Roese <sr@denx.de>
18218 Date:   Wed Nov 12 13:47:24 2008 +0100
18219
18220     OneNAND: Bad block aware read/write command support
18221
18222     Update OneNAND command to support bad block awareness.
18223     Also change the OneNAND command style to better match the
18224     NAND version.
18225
18226     Signed-off-by: Stefan Roese <sr@denx.de>
18227     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
18228
18229 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
18230 Author: Stefan Roese <sr@denx.de>
18231 Date:   Tue Nov 11 10:29:09 2008 +0100
18232
18233     OneNAND: Save version_id in onenand_chip struct
18234
18235     The version (ver_id) was not stored in the onenand_chip structure and
18236     because of this the continuous locking scheme could be enabled on some
18237     chips.
18238
18239     Signed-off-by: Stefan Roese <sr@denx.de>
18240
18241 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
18242 Author: Stefan Roese <sr@denx.de>
18243 Date:   Tue Nov 11 10:28:53 2008 +0100
18244
18245     OneNAND: Fix compiler warnings
18246
18247     Signed-off-by: Stefan Roese <sr@denx.de>
18248
18249 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
18250 Author: Dave Liu <daveliu@freescale.com>
18251 Date:   Tue Nov 4 14:55:06 2008 +0800
18252
18253     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
18254
18255     Signed-off-by: Dave Liu <daveliu@freescale.com>
18256
18257 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
18258 Author: Kyungmin Park <kmpark@infradead.org>
18259 Date:   Tue Nov 4 09:24:07 2008 +0900
18260
18261     Sync with 2.6.27
18262
18263     Sync with OneNAND kernel codes
18264
18265     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18266
18267 commit e7f325be9edeb84bb457301776bbac1f7257dafc
18268 Author: Michal Simek <monstr@monstr.eu>
18269 Date:   Mon Jan 5 13:35:31 2009 +0100
18270
18271     microblaze: Use cache functions (especially cache status)
18272     in systems which are configured without flash
18273
18274 commit e9b737deb2c30125362d20e24170617476026e94
18275 Author: Michal Simek <monstr@monstr.eu>
18276 Date:   Mon Jan 5 13:29:32 2009 +0100
18277
18278     microblaze: Add cache flush
18279
18280 commit b4f8dda35bfad447b4106828232705b2e878d168
18281 Author: Michal Simek <monstr@monstr.eu>
18282 Date:   Mon Jan 5 13:28:40 2009 +0100
18283
18284     microblaze: Add bootup messages to board.c
18285
18286 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
18287 Author: Michal Simek <monstr@monstr.eu>
18288 Date:   Fri Dec 19 13:25:55 2008 +0100
18289
18290     microblaze: Change microblaze-generic config file
18291
18292     Signed-off-by: Michal Simek <monstr@monstr.eu>
18293
18294 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
18295 Author: Michal Simek <monstr@monstr.eu>
18296 Date:   Fri Dec 19 13:14:05 2008 +0100
18297
18298     microblaze: Rename ml401 to microblaze-generic
18299
18300     Signed-off-by: Michal Simek <monstr@monstr.eu>
18301
18302 commit 6677876181cc8772bca8a372479a500d160f3993
18303 Author: Scott Wood <scottwood@freescale.com>
18304 Date:   Tue Jan 20 11:56:11 2009 -0600
18305
18306     83xx: Use the proper sequence for updating IMMR.
18307
18308     This ensures that subsequent accesses properly hit the new window.
18309
18310     The dcbi during the NAND loop was accidentally working around this;
18311     it's no longer necessary, as the cache is not enabled.
18312
18313     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
18314     Signed-off-by: Scott Wood <scottwood@freescale.com>
18315     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18316
18317 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
18318 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18319 Date:   Thu Jan 8 04:26:19 2009 +0300
18320
18321     mpc83xx: Add PCI-E support for MPC837XEMDS boards
18322
18323     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
18324     provides two PCI-E (x2) ports. Though, only one port can be used in x2
18325     mode. Two ports can function simultaneously in x1 mode.
18326
18327     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
18328
18329     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18330     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18331
18332 commit 8f11e34b31a7be124a3239653f33af9510502045
18333 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18334 Date:   Thu Jan 8 04:26:17 2009 +0300
18335
18336     mpc83xx: Add PCI-E support for MPC8315ERDB boards
18337
18338     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
18339     support them.
18340
18341     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18342     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18343
18344 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
18345 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18346 Date:   Thu Jan 8 04:26:12 2009 +0300
18347
18348     mpc83xx: Add support for MPC83xx PCI-E controllers
18349
18350     This patch adds support for MPC83xx PCI-E controllers in Root Complex
18351     mode.
18352
18353     The patch is based on Tony Li and Dave Liu work[1].
18354
18355     Though unlike the original patch, by default we don't register PCI-E
18356     buses for use in U-Boot, we only configure the controllers for future
18357     use in other OSes (Linux). This is done because we don't have enough
18358     of spare BATs to map all the PCI-E regions.
18359
18360     To actually use PCI-E in U-Boot, users should explicitly define
18361     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
18362     only then U-Boot will able to access PCI-E, but at the cost of disabled
18363     address translation.
18364
18365     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
18366
18367     Signed-off-by: Tony Li <tony.li@freescale.com>
18368     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18369     Acked-by: Dave Liu <daveliu@freescale.com>
18370     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18371
18372 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
18373 Author: Ira Snyder <iws@ovro.caltech.edu>
18374 Date:   Mon Jan 12 13:33:17 2009 -0800
18375
18376     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
18377
18378     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
18379     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
18380     "Clocking in PCI Agent Mode".
18381
18382     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
18383     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18384
18385 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
18386 Author: Ira Snyder <iws@ovro.caltech.edu>
18387 Date:   Mon Jan 12 13:32:26 2009 -0800
18388
18389     83xx: PCI agent mode fixes for multi-board systems
18390
18391     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
18392     the boards will lock up the PCI bus by scanning against each other.
18393
18394     The boards lock against each other by trying to access the PCI bus before
18395     clearing their configuration lock bit. Both boards end up in a loop,
18396     sending and receiving "Target Not Ready" messages forever.
18397
18398     When running in PCI agent mode, the scanning now takes place after the
18399     boards have cleared their configuration lock bit.
18400
18401     Also, add a missing declaration to the mpc83xx.h header file, fixing a
18402     build warning.
18403
18404     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
18405     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18406
18407 commit 455a46915b82896cc2070eb326d075555c2bc580
18408 Author: Ron Madrid <ron_madrid@sbcglobal.net>
18409 Date:   Fri Dec 12 13:12:45 2008 -0800
18410
18411     mpc83xx: Size optimization of start.S
18412
18413     Currently there are in excess of 100 bytes located at the beginning of the image
18414     built by start.S that are not being utilized.  This patch moves a few functions
18415     into this part of the image.  This will create a greater number of *available*
18416     bytes that can be used by board specific code in NAND builds and will decrease
18417     the size of the assembled code in other builds.
18418
18419     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
18420     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18421
18422 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
18423 Author: Wolfgang Denk <wd@denx.de>
18424 Date:   Wed Jan 21 23:08:12 2009 +0100
18425
18426     Prepare v2009.01
18427
18428     Signed-off-by: Wolfgang Denk <wd@denx.de>
18429
18430 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
18431 Author: Wolfgang Denk <wd@denx.de>
18432 Date:   Sun Jan 18 21:37:48 2009 +0100
18433
18434     Prepare 2009.01-rc3
18435
18436     Update CHANGELOG
18437
18438     Signed-off-by: Wolfgang Denk <wd@denx.de>
18439
18440 commit 4cda437898f7873752f0201757cd33f12196ce87
18441 Author: Mike Frysinger <vapier@gentoo.org>
18442 Date:   Sat Jan 17 13:32:42 2009 -0500
18443
18444     build system: treat all Darwin's alike
18445
18446     The x86 based version of Darwin behaves the same quirky way as the powerpc
18447     Darwin, so only check HOSTOS when setting up Darwin workarounds.
18448
18449     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18450
18451 commit c088a108c75db565e07292fd668dfa5491e85bc2
18452 Author: Peter Korsgaard <jacmet@sunsite.dk>
18453 Date:   Wed Jan 14 13:52:24 2009 +0100
18454
18455     fdt_resize(): fix actualsize calculations with unaligned blobs
18456
18457     The code in fdt_resize() to extend the fdt size to end on a page boundary
18458     is wrong for fdt's not located at an address aligned on a page boundary.
18459     What's even worse, the code would make actualsize shrink rather than grow
18460     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
18461     causing fdt_add_mem_rsv to fail.
18462
18463     Fix it by aligning end address (blob + size) to a page boundary instead.
18464     For aligned fdt's this is equivalent to what we had before.
18465
18466     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18467
18468 commit fadad1573fb16c90025f08a2861d6047d093cba7
18469 Author: Mike Frysinger <vapier@gentoo.org>
18470 Date:   Fri Jan 9 04:38:17 2009 -0500
18471
18472     ncb: use socklen_t
18473
18474     The recvfrom() function takes a socklen_t, not an int.
18475
18476     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18477
18478 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
18479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18480 Date:   Sun Jan 11 16:35:16 2009 +0100
18481
18482     sh: serial: use readx/writex accessors
18483
18484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18485     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18486
18487 commit 9e1fa628bdb64745811cdd26c4f953846c076180
18488 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18489 Date:   Sun Jan 11 16:35:15 2009 +0100
18490
18491     sh: serial: coding style cleanup
18492
18493     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18494     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18495
18496 commit c9935c992575922b7ef13eec0656ed8665d324e3
18497 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18498 Date:   Sun Jan 11 17:48:56 2009 +0900
18499
18500     sh: Fix compile error on lowlevel_init file
18501
18502     lowlevel_init of SH was corrected to use the write/readXX macro.
18503     However, there was a problem that was not able to be compiled partially.
18504     This patch corrected this.
18505
18506     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18507
18508 commit a5b04d00bfeb940c62232972ce644d50b45797f9
18509 Author: Kieran Bingham <kieranbingham@gmail.com>
18510 Date:   Tue Dec 30 01:16:03 2008 +0000
18511
18512     sh: Fix up rsk7203 target for out of tree build
18513
18514     Fix up rsk7203 target to build successfully using out-of-tree build.
18515
18516     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
18517     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18518
18519 commit f7e78f3b74aae9caca2997bad865a72338326c0a
18520 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18521 Date:   Sat Dec 20 19:29:49 2008 +0100
18522
18523     sh: use write{8,16,32} in all lowlevel_init
18524
18525     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18526     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18527
18528 commit e4430779623af500de1cee7892c379f07ef59813
18529 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18530 Date:   Sat Dec 20 19:29:48 2008 +0100
18531
18532     sh: lowlevel_init coding style cleanup
18533
18534     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18535     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18536
18537 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
18538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18539 Date:   Sat Dec 20 15:27:45 2008 +0100
18540
18541     sh: update sh2/sh2a timer coding style
18542
18543     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18544     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18545
18546 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
18547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18548 Date:   Sat Dec 20 15:25:22 2008 +0100
18549
18550     sh: update sh timer coding style
18551
18552     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18553     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18554
18555 commit 0e3ece33801e377be67ffa29f083421ad820f28b
18556 Author: Wolfgang Denk <wd@denx.de>
18557 Date:   Wed Jan 14 23:26:05 2009 +0100
18558
18559     Prepare 2009.01-rc2
18560
18561     Update CHANGELOG.
18562
18563     Signed-off-by: Wolfgang Denk <wd@denx.de>
18564
18565 commit e92c9a860e44c14513c8909ce4299e253a775eeb
18566 Author: Wolfgang Denk <wd@denx.de>
18567 Date:   Wed Jan 14 22:35:30 2009 +0100
18568
18569     cpu/mpc824x/Makefile: fix warning with parallel builds
18570
18571     Parallel builds would occasionally issue this build warning:
18572
18573         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
18574
18575     Use "ln -sf" as quick work around for the issue.
18576
18577     Signed-off-by: Wolfgang Denk <wd@denx.de>
18578
18579 commit 3ba605d4beec649438539e7df97b5fedb26592fb
18580 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18581 Date:   Fri Jan 2 12:18:49 2009 +0100
18582
18583     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
18584
18585     This patch adds esd's loadpci BSP command to CPCI4052 and
18586     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
18587
18588     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18589     Signed-off-by: Stefan Roese <sr@denx.de>
18590
18591 commit 600fe46fb3dab7f07604f9009904f31584415114
18592 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18593 Date:   Fri Jan 2 12:18:12 2009 +0100
18594
18595     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
18596
18597     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18598     Signed-off-by: Stefan Roese <sr@denx.de>
18599
18600 commit f6a1f490d224c600a09137e58d1026d150b8e679
18601 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18602 Date:   Fri Jan 2 12:17:36 2009 +0100
18603
18604     ppc4xx: Cleanup CPCI405 board code
18605
18606     This patch cleans up CPCI405 board support:
18607     - wrap long lines
18608     - unification of spaces in function calls
18609     - remove dead code
18610
18611     Use correct io accessors on peripherals.
18612
18613     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18614     Signed-off-by: Stefan Roese <sr@denx.de>
18615
18616 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
18617 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18618 Date:   Fri Jan 2 12:16:35 2009 +0100
18619
18620     ppc4xx: Enable auto RS485 mode on PLU405 boards
18621
18622     This patch turns on the auto RS485 mode in the 2nd external
18623     uart on PLU405 boards. This is a special mode of the used
18624     Exar XR16C2850 uart. Because these boards only have a 485 physical
18625     layer connected it's a good idea to turn it on by default.
18626
18627     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18628     Signed-off-by: Stefan Roese <sr@denx.de>
18629
18630 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
18631 Author: Haiying Wang <Haiying.Wang@freescale.com>
18632 Date:   Tue Jan 13 16:29:28 2009 -0500
18633
18634     Some changes of TLB entry setting for MPC8572DS
18635
18636     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
18637     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
18638     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
18639
18640     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
18641
18642     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
18643
18644 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
18645 Author: Haiying Wang <Haiying.Wang@freescale.com>
18646 Date:   Tue Jan 13 16:29:22 2009 -0500
18647
18648     Change DDR tlb start entry to CONFIG param for 85xx
18649
18650     So that we can locate the DDR tlb start entry to the value other than 8. By
18651     default, it is still 8.
18652
18653     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
18654
18655 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
18656 Author: Roy Zang <tie-fei.zang@freescale.com>
18657 Date:   Fri Jan 9 16:02:35 2009 +0800
18658
18659     Change PCIE1&2 deciide logic on MPC8544DS board more readable
18660
18661     The IO port selection for MPC8544DS board:
18662      Port                       cfg_io_ports
18663      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
18664      PCIE2              0x4, 0x5, 0x6, 0x7
18665      PCIE3              0x6, 0x7
18666      This patch changes the PCIE12 and PCIE2 logic more readable.
18667     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
18668
18669 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
18670 Author: Roy Zang <tie-fei.zang@freescale.com>
18671 Date:   Fri Jan 9 16:01:52 2009 +0800
18672
18673     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
18674
18675     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
18676     PCIE1 bit.
18677     On MPC8572DS board, PCIE refers to PCIE1.
18678     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
18679
18680 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
18681 Author: Roy Zang <tie-fei.zang@freescale.com>
18682 Date:   Fri Jan 9 16:00:55 2009 +0800
18683
18684     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
18685
18686     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
18687      This patch fixes this issue.
18688      For MPC8572
18689      Port                       cfg_io_ports
18690      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
18691      PCIE2              0x3, 0x7
18692      PCIE3              0x7
18693
18694     For MPC8544
18695     Port                        cfg_io_ports
18696     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
18697     PCIE2               0x4, 0x5, 0x6, 0x7
18698     PCIE3               0x6, 0x7
18699     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
18700
18701 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
18702 Author: Becky Bruce <beckyb@kernel.crashing.org>
18703 Date:   Wed Dec 3 22:36:44 2008 -0600
18704
18705     mpc8610hpcd: Fix PCI mapping concepts
18706
18707     Rename _BASE to _BUS, as it's actually a PCI bus address,
18708     separate virtual and physical addresses into _VIRT and _PHYS,
18709     and use each appopriately.  This makes the code easier to read
18710     and understand, and facilitates mapping changes going forward.
18711
18712     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
18713
18714 commit 79e436cad3b4a7db88408c3f05175028f30d700d
18715 Author: Becky Bruce <beckyb@kernel.crashing.org>
18716 Date:   Wed Dec 3 22:36:26 2008 -0600
18717
18718     sbc8641d: Fix PCI mapping concepts
18719
18720     Rename _BASE to _BUS, as it's actually a PCI bus address,
18721     separate virtual and physical addresses into _VIRT and _PHYS,
18722     and use each appopriately.  This makes the code easier to read
18723     and understand, and facilitates mapping changes going forward.
18724
18725     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
18726
18727 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
18728 Author: Wolfgang Denk <wd@denx.de>
18729 Date:   Mon Jan 12 14:50:35 2009 +0100
18730
18731     MPC86xx: fix build warnings
18732
18733     Signed-off-by: Wolfgang Denk <wd@denx.de>
18734
18735 commit 032a1c934ef4dc003281f57302b6e693062c1868
18736 Author: Mike Frysinger <vapier@gentoo.org>
18737 Date:   Mon Jan 5 16:09:44 2009 -0500
18738
18739     bf537-stamp/nand: fix board_nand_init prototype
18740
18741     The board_nand_init() function should return an int, not void.
18742
18743     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18744
18745 commit 687f952e4119594ab913be11c90f7f018c2a7a79
18746 Author: Mike Frysinger <vapier@gentoo.org>
18747 Date:   Thu Dec 11 07:04:48 2008 -0500
18748
18749     Blackfin: drop CONFIG_SPI handling in board init
18750
18751     The eeprom SPI init functions are duplicated as the common code already
18752     executes these for us.
18753
18754     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18755
18756 commit e7e684b10d73a303902208594c7c3e7e0d753282
18757 Author: Mike Frysinger <vapier@gentoo.org>
18758 Date:   Fri Oct 24 17:51:57 2008 -0400
18759
18760     Blackfin: fix out-of-tree building with ldscripts
18761
18762     Many of the Blackfin board linker scripts are preprocessed, so make sure we
18763     output the linker script into the build tree rather than the source tree.
18764
18765     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18766
18767 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
18768 Author: Mike Frysinger <vapier@gentoo.org>
18769 Date:   Fri Oct 24 17:48:54 2008 -0400
18770
18771     Blackfin: fix linker scripts to work with --gc-sections
18772
18773     Make sure all .text sections get pulled in and the entry point is properly
18774     referenced so they don't get discarded when linking with --gc-sections.
18775
18776     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18777
18778 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
18779 Author: Mike Frysinger <vapier@gentoo.org>
18780 Date:   Sat Oct 11 20:45:44 2008 -0400
18781
18782     Blackfin: set proper LDRFLAGS for parallel booting LDRs
18783
18784     In order to boot an LDR out of parallel flash, the ldr utility needs a few
18785     flags to tell it to generate the right header.
18786
18787     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18788
18789 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
18790 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18791 Date:   Tue Jan 6 21:41:59 2009 +0100
18792
18793     at91rm9200: move define from lowlevel_init to header
18794
18795     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18796
18797 commit 8a48686fac2030287765f1970ea046bd5734b733
18798 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18799 Date:   Sat Jan 3 17:22:26 2009 +0100
18800
18801     m501sk: move to the common memory setup
18802
18803     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18804
18805 commit d481c80d78f954133c035dae6c7d22de3625795d
18806 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18807 Date:   Sat Jan 3 17:22:25 2009 +0100
18808
18809     at91rm9200: rename lowlevel init value to CONFIG_SYS_
18810
18811     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18812
18813 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
18814 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
18815 Date:   Tue Jan 6 21:13:14 2009 +0100
18816
18817     at91: add at91sam9xeek board support
18818
18819     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
18820     it as another entry for at91sam9260 in the Makefile.
18821
18822     Check documentation at :
18823     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
18824
18825     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
18826     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18827
18828 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
18829 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18830 Date:   Tue Jan 6 21:15:57 2009 +0100
18831
18832     fix bmp_logo.h make dependencies to allow parallel build
18833
18834     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18835
18836 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
18837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18838 Date:   Sat Jan 3 17:22:24 2009 +0100
18839
18840     at91: Fix Atmel's at91sam9 boards out of tree build
18841
18842     introduced in commit 89a7a87f084c
18843
18844     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18845
18846 commit 0668236bafaa1c11c521652a2facebc74beecbf0
18847 Author: Wolfgang Denk <wd@denx.de>
18848 Date:   Tue Dec 30 22:56:11 2008 +0100
18849
18850     README: update mailing list name and hits to patch submission.
18851
18852     Signed-off-by: Wolfgang Denk <wd@denx.de>
18853
18854 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
18855 Author: Peter Tyser <ptyser@xes-inc.com>
18856 Date:   Tue Dec 23 16:32:01 2008 -0600
18857
18858     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
18859
18860     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18861
18862 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
18863 Author: Peter Tyser <ptyser@xes-inc.com>
18864 Date:   Tue Dec 23 16:32:00 2008 -0600
18865
18866     XPedite5200 board support cleanup
18867
18868     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18869
18870 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
18871 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18872 Date:   Tue Dec 2 21:58:04 2008 +0100
18873
18874     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
18875
18876     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18877     Signed-off-by: Remy Böhmer <linux@bohmer.net>
18878
18879 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
18880 Author: Trent Piepho <tpiepho@freescale.com>
18881 Date:   Wed Dec 3 15:16:37 2008 -0800
18882
18883     mpc8[56]xx: Put localbus clock in sysinfo and gd
18884
18885     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
18886     and print it out, but don't save it.
18887
18888     This changes where its calculated and stored to be more consistent with the
18889     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
18890
18891     The localbus frequency is added to sysinfo and calculated when sysinfo is
18892     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
18893
18894     get_clocks() copies the frequency into the global data, as the other
18895     frequencies are, into a new field that is only enabled for MPC85xx and
18896     MPC86xx.
18897
18898     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
18899     from sysinfo, like the other frequencies, instead of calculating it on the
18900     spot.
18901
18902     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18903     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18904     Acked-by: Jon Loeliger <jdl@freescale.com>
18905
18906 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
18907 Author: Trent Piepho <tpiepho@freescale.com>
18908 Date:   Wed Dec 3 15:16:36 2008 -0800
18909
18910     mpc86xx: Double local bus clock divider
18911
18912     The local bus clock divider should be doubled for both 8610 and 8641.
18913
18914     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18915     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18916     Acked-by: Jon Loeliger <jdl@freescale.com>
18917
18918 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
18919 Author: Trent Piepho <tpiepho@freescale.com>
18920 Date:   Wed Dec 3 15:16:35 2008 -0800
18921
18922     mpc8568: Double local bus clock divider
18923
18924     The clock divider for the MPC8568 local bus should be doubled, like the
18925     other newer MPC85xx chips.
18926
18927     Since there are now more chips with a 2x divider than a 1x, and any new
18928     85xx chips will probably be 2x, invert the sense of the #if so that it
18929     lists the 1x chips instead of the 2x ones.
18930
18931     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
18932     Acked-by: Kumar Gala <galak@kernel.crashing.org>
18933     Acked-by: Jon Loeliger <jdl@freescale.com>
18934
18935 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
18936 Author: Dave Liu <daveliu@freescale.com>
18937 Date:   Tue Dec 16 12:09:27 2008 +0800
18938
18939     85xx: Fix the boot window issue
18940
18941     If one custom board is using the 8MB flash, it is set
18942     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
18943     The current start.S code will be broken at switch_as.
18944
18945     It is because the TLB1[15] is set as 16MB page size,
18946     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
18947
18948     For the 8MB flash case, the EPN = 0xefxxxxxx,
18949     RPN = 0xffxxxxxx. Assume the virt address of switch_as
18950     is 0xef7ff18c, the real address of the instruction at
18951     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
18952     of the range of the default 8MB boot LAW window
18953     0xff800000 - 0xffffffff.
18954
18955     So when we switch to AS1 address space at switch_as,
18956     the core can't fetch the instruction at switch_as any
18957     more. It will cause broken issue.
18958
18959     Signed-off-by: Dave Liu <daveliu@freescale.com>
18960
18961 commit 58da8890d5fbd074746037722a423de9ac408616
18962 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18963 Date:   Thu Dec 11 15:47:50 2008 -0500
18964
18965     sbc8548: use proper PHY address
18966
18967     The values given for the PHY address were wrong, so the code
18968     read no valid PHY ID, and fell through to the generic PHY
18969     support, which would work on 1000M but would not auto negotiate
18970     down to 100M or 10M.
18971
18972     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18973
18974 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
18975 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18976 Date:   Thu Dec 11 15:47:51 2008 -0500
18977
18978     sbc8548: enable command line editing by default.
18979
18980     Lets make things a bit more user friendly.  It isn't 1985 anymore.
18981
18982     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18983
18984 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
18985 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18986 Date:   Thu Dec 11 15:47:49 2008 -0500
18987
18988     sbc8548: don't enable the 3rd and 4th eTSEC
18989
18990     These interfaces don't have usable connectors on the board, so don't
18991     bother enumerating or configuring them.
18992
18993     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18994
18995 commit 181a3650113883728927928b3ac81ad6dade4b2c
18996 Author: Haiying Wang <Haiying.Wang@freescale.com>
18997 Date:   Wed Dec 3 10:08:19 2008 -0500
18998
18999     Set IVPR to kenrel entry point in second core boot page
19000
19001     Assuming the OSes exception vectors start from the base of kernel address, and
19002     the kernel physical starting address can be relocated to an non-zero address.
19003     This patch enables the second core to have a valid IVPR for debugger before
19004     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
19005     value for second core which runs kernel at different physical address other
19006     than 0x0.
19007
19008     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19009
19010 commit a5d212a263c58cc746481bf1fc878510533ce7d6
19011 Author: Trent Piepho <tpiepho@freescale.com>
19012 Date:   Wed Dec 3 15:16:34 2008 -0800
19013
19014     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
19015
19016     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
19017     instead of four.
19018
19019     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
19020     should be safe as the fifth bit was defined as reserved and set to 0.
19021
19022     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
19023
19024     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
19025     Acked-by: Kumar Gala <galak@kernel.crashing.org>
19026     Acked-by: Jon Loeliger <jdl@freescale.com>
19027
19028 commit 58ec4866ed916c7e422f5107bb27b0822084728e
19029 Author: Trent Piepho <tpiepho@freescale.com>
19030 Date:   Wed Dec 3 15:16:38 2008 -0800
19031
19032     mpc8[56]xx: Put localbus clock in device tree
19033
19034     Export the localbus frequency in the device tree, the same way the CPU, TB,
19035     CCB, and various other frequencies are exported in their respective device
19036     tree nodes.
19037
19038     Some localbus devices need this information to be programed correctly, so
19039     it makes sense to export it along with the other frequencies.
19040
19041     Unfortunately, when someone wrote the localbus dts bindings, they didn't
19042     bother to define what the "compatible" property should be.  So it seems no
19043     one was quite sure what to put in their dts files.
19044
19045     Based on current existing dts files in the kernel source, I've used
19046     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
19047     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
19048     apparently not entirely backward compatible with the pq3 LBC and so eLBC
19049     equipped platforms like 8572 won't use pq3-localbus.
19050
19051     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
19052     and is also looked for by the Linux code.  On MPC8641, I've also used
19053     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
19054     which don't use "fsl,elbc" or any other acceptable name to match on.
19055
19056     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
19057     Acked-by: Kumar Gala <galak@kernel.crashing.org>
19058     Acked-by: Jon Loeliger <jdl@freescale.com>
19059
19060 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
19061 Author: Kumar Gala <galak@kernel.crashing.org>
19062 Date:   Tue Dec 16 14:59:22 2008 -0600
19063
19064     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
19065
19066     The current code that determines which bank/chipselect is used for a
19067     given NAND instance only worked for 32-bit addresses and assumed
19068     a 1:1 mapping.  This breaks in 36-bit physical configs.
19069
19070     The proper way to handle this is to use the virt_to_phys() and
19071     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
19072     with the the virtual address the NAND code uses.
19073
19074     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19075     Acked-by: Scott Wood <scottwood@freescale.com>
19076
19077 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
19078 Author: Kumar Gala <galak@kernel.crashing.org>
19079 Date:   Tue Dec 16 14:59:21 2008 -0600
19080
19081     ppc: Use addrmap in virt_to_phys and map_physmem.
19082
19083     If we have addr map support enabled use the mapping functions to
19084     implement virt_to_phys() and map_physmem().
19085
19086     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19087
19088 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
19089 Author: Kumar Gala <galak@kernel.crashing.org>
19090 Date:   Tue Dec 16 14:59:20 2008 -0600
19091
19092     85xx: Add support to populate addr map based on TLB settings
19093
19094     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19095
19096 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
19097 Author: Peter Tyser <ptyser@xes-inc.com>
19098 Date:   Mon Dec 1 13:47:13 2008 -0600
19099
19100     XPedite5200 board support
19101
19102     Initial support for Extreme Engineering Solutions XPedite5200 -
19103     a MPC8548-based PMC single board computer.
19104
19105     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19106
19107 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
19108 Author: Peter Tyser <ptyser@xes-inc.com>
19109 Date:   Wed Oct 29 12:39:27 2008 -0500
19110
19111     85xx: Enable inbound PCI config cycles for X-ES boards
19112
19113     Update X-ES Freescale boards to allow inbound PCI configuration
19114     cycles when configured as agent/endpoint.
19115
19116     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19117
19118 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
19119 Author: Peter Tyser <ptyser@xes-inc.com>
19120 Date:   Wed Dec 17 16:36:23 2008 -0600
19121
19122     XPedite5370 board support
19123
19124     Initial support for Extreme Engineering Solutions XPedite5370 -
19125     a MPC8572-based 3U VPX single board computer with a PMC/XMC
19126     site.
19127
19128     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19129
19130 commit e92739d34e2d6b6aca93b2598248210710897ce8
19131 Author: Peter Tyser <ptyser@xes-inc.com>
19132 Date:   Wed Dec 17 16:36:21 2008 -0600
19133
19134     Add support for PCA953x I2C gpio devices
19135
19136     Initial support for NXP's 4 and 8 bit I2C gpio expanders
19137     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
19138     enables support for the devices while the CONFIG_CMD_PCA953X
19139     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
19140     define enables an 'info' sub-command which provides summary
19141     information for the given pca953x device.
19142
19143     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19144
19145 commit 7a8979591171676417ab36852d8811a8c46accd8
19146 Author: Peter Tyser <ptyser@xes-inc.com>
19147 Date:   Wed Oct 29 12:39:26 2008 -0500
19148
19149     pci/fsl_pci_init: Enable inbound PCI config cycles
19150
19151     Add fsl_pci_config_unlock() function to enable a
19152     PCI/PCIe interface configured in agent/endpoint mode to
19153     respond to inbound PCI configuration cycles.
19154
19155     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19156
19157 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
19158 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19159 Date:   Wed Dec 17 16:43:18 2008 +0100
19160
19161     avr32: Remove second definition of virt_to_phys()
19162
19163     The second definition introduced by 65e43a1063 conflicts with the
19164     existing one.
19165
19166     Also, convert the existing definition to use phys_addr_t. The volatile
19167     qualifier is still needed due to brain damage elsewhere.
19168
19169     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19170
19171 commit b616f2b545f73757669b37386f0b37bb61fc6797
19172 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19173 Date:   Mon Sep 8 22:27:18 2008 +0200
19174
19175     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
19176
19177     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19178     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19179
19180 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
19181 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19182 Date:   Tue Dec 16 22:10:31 2008 +0100
19183
19184     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
19185
19186     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19187     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19188
19189 commit 13095b2f07dacb1f863772266c1789d47a523a8a
19190 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19191 Date:   Tue Dec 16 22:10:30 2008 +0100
19192
19193     MIPS: qemu_mips: move env storage just after u-boot
19194
19195     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19196     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19197
19198 commit aced78d852d0b009e8aaa1445af8cb40861ee549
19199 Author: Wolfgang Denk <wd@denx.de>
19200 Date:   Tue Dec 16 23:48:27 2008 +0100
19201
19202     Prepare 2009.01-rc1
19203
19204     Signed-off-by: Wolfgang Denk <wd@denx.de>
19205
19206 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
19207 Author: Wolfgang Denk <wd@denx.de>
19208 Date:   Tue Dec 16 23:13:46 2008 +0100
19209
19210     include/configs/at91cap9adk.h: fix typo.
19211
19212     Signed-off-by: Wolfgang Denk <wd@denx.de>
19213
19214 commit 45ca04f2377361593151d2d4da51f8ba4832d233
19215 Author: Wolfgang Denk <wd@denx.de>
19216 Date:   Tue Dec 16 22:32:25 2008 +0100
19217
19218     board/trab/memory.c: Fix compile problems.
19219
19220     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
19221
19222     Actually we'd need a major cleanup here - as it turns out,
19223     board/trab/memory.c is more or less a verbatim copy of
19224     post/drivers/memory.c ... but then, trab is EOL anyway,r
19225     so this is not worth the effort.
19226
19227     Signed-off-by: Wolfgang Denk <wd@denx.de>
19228
19229 commit ff49ea8977b56916edd5b1766d9939010e30b181
19230 Author: Scott Wood <scottwood@freescale.com>
19231 Date:   Tue Dec 16 14:24:16 2008 -0600
19232
19233     NAND: Mark the BBT as scanned prior to calling scan_bbt.
19234
19235     Otherwise, recursion can occur if scan_bbt does not find a bad block
19236     table, and tries to write one, and the attempt to erase the BBT area
19237     causes a bad block check.
19238
19239     Signed-off-by: Scott Wood <scottwood@freescale.com>
19240
19241 commit 584eedab66d0828f2d571a24b10526c4e65f547b
19242 Author: Ilya Yanok <yanok@emcraft.com>
19243 Date:   Thu Dec 11 05:51:57 2008 +0300
19244
19245     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
19246
19247     Include <linux/mtd/compat.h> header for min_t definition instead of
19248     providing our own one. Removes warnings in case of OneNAND support
19249     enabled.
19250
19251     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
19252     just for min_t...
19253
19254     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19255     Acked-by: Stefan Roese <sr@denx.de>
19256
19257 commit b1ffecec37b57a59c139042267faac458e5324e9
19258 Author: Becky Bruce <beckyb@kernel.crashing.org>
19259 Date:   Wed Dec 3 23:04:37 2008 -0600
19260
19261     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
19262
19263     Casting a pointer to a phys_addr_t when it's an unsigned long long
19264     on a 32-bit system without first casting to a non-pointer type
19265     generates a compiler warning. Fix this.
19266
19267     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
19268
19269 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
19270 Author: Wolfgang Denk <wd@denx.de>
19271 Date:   Tue Dec 16 16:22:50 2008 +0100
19272
19273     trab: make trab_fkt standalone code independent of libgcc
19274
19275     Use our own local functions in lib_arm/ instead.
19276
19277     Signed-off-by: Wolfgang Denk <wd@denx.de>
19278
19279 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
19280 Author: Wolfgang Denk <wd@denx.de>
19281 Date:   Tue Dec 16 14:44:06 2008 +0100
19282
19283     post/Makefile: fix dependency problem with parallel builds
19284
19285     Parallel builds (using "make -jN") would occasionally fail with error
19286     messages like
19287         ppc_4xxFP-objdump: string.o: File format not recognized
19288     or
19289         post/libpost.a(cpu.o): In function `cpu_post_test':
19290         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
19291     or similar. We now make sure to run the 'postdeps" step before
19292     attempting to build the specific POST libraries.
19293
19294     Signed-off-by: Wolfgang Denk <wd@denx.de>
19295
19296 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
19297 Author: Wolfgang Denk <wd@denx.de>
19298 Date:   Tue Dec 16 14:41:02 2008 +0100
19299
19300     Makefile: fix dependency problem with parallel builds
19301
19302     Parallel builds (using "make -jN") would occasionally fail with error
19303     messages like
19304         include/autoconf.mk:212: *** missing separator.  Stop.
19305     Line numbers and affected boards were changing. Obviously some
19306     Makefiles included autoconf.mk while it was still being written to.
19307     As a fix, we now write to a temporary file first and then rename it,
19308     so that it is really ready to use as soon as it appears.
19309
19310     Signed-off-by: Wolfgang Denk <wd@denx.de>
19311
19312 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
19313 Author: Wolfgang Denk <wd@denx.de>
19314 Date:   Tue Dec 16 01:02:17 2008 +0100
19315
19316     Coding style cleanup, update CHANGELOG.
19317
19318     Signed-off-by: Wolfgang Denk <wd@denx.de>
19319
19320 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
19321 Author: Mike Frysinger <vapier@gentoo.org>
19322 Date:   Thu Dec 11 18:39:08 2008 -0500
19323
19324     spi/stmicro: fix debug() display of cmd
19325
19326     The stmicro_wait_ready() func tries to show the actual opcode that was sent
19327     to the device, but instead it displays the array pointer.  Fix it to pull
19328     out the opcode from the start of the array.
19329
19330     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19331
19332 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
19333 Author: Mike Frysinger <vapier@gentoo.org>
19334 Date:   Thu Dec 11 06:23:37 2008 -0500
19335
19336     env_sf: support embedded environments
19337
19338     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
19339     size is larger than the env size, then it means the env is embedded in a
19340     block.  So we have to save/restore the part of the sector which is not the
19341     environment.  Previously, saving the environment in SPI flash in this
19342     setup would probably brick the board as the rest of the sector tends to
19343     contain actual U-Boot data/code.
19344
19345     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19346     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19347
19348 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
19349 Author: Timur Tabi <timur@freescale.com>
19350 Date:   Wed Dec 3 11:28:30 2008 -0600
19351
19352     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
19353
19354     All implementations of the functions i2c_reg_read() and
19355     i2c_reg_write() are identical. We can save space and simplify the
19356     code by converting these functions into inlines and putting them in
19357     i2c.h.
19358
19359     Signed-off-by: Timur Tabi <timur@freescale.com>
19360     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19361
19362 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
19363 Author: Dave Liu <daveliu@freescale.com>
19364 Date:   Fri Dec 5 15:36:14 2008 +0800
19365
19366     lib_ppc: rework the flush_cache
19367
19368     - It is possible to miss flush/invalidate the last
19369       cache line, we fix it at here.
19370     - add the volatile and memory clobber.
19371
19372     They are pointed by Scott Wood.
19373
19374     Signed-off-by: Dave Liu <daveliu@freescale.com>
19375
19376 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
19377 Author: Kumar Gala <galak@kernel.crashing.org>
19378 Date:   Sat Dec 13 17:20:28 2008 -0600
19379
19380     Introduce addr_map library
19381
19382     Add a library that helps in translating between virtual and physical
19383     addresses.  This library can be useful as a simple means to implement
19384     map_physmem() and virt_to_phys() for platforms that need functionality
19385     beyond the simple 1:1 mapping.
19386
19387     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19388
19389 commit 65e43a10631537dcb92c302d36301a12308216c3
19390 Author: Kumar Gala <galak@kernel.crashing.org>
19391 Date:   Sat Dec 13 17:20:27 2008 -0600
19392
19393     Introduce virt_to_phys()
19394
19395     virt_to_phys() returns the physical address given a virtual. In most
19396     cases this will be just the input value as the vast majority of
19397     systems run in a 1:1 mode.
19398
19399     However in systems that are not running this way it should report the
19400     physical address or ~0 if no mapping exists for the given virtual
19401     address.
19402
19403     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19404
19405 commit 45845301af3de8675c1f7bbc815c6de35452605a
19406 Author: Yuri Tikhonov <yur@emcraft.com>
19407 Date:   Sun Dec 7 22:12:50 2008 +0100
19408
19409     POST Make: fix the sub-dir dependencies missing.
19410
19411     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19412
19413 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
19414 Author: Martin Michlmayr <tbm@cyrius.com>
19415 Date:   Wed Aug 6 14:44:05 2008 +0300
19416
19417     Fix a typo in fw_env.config
19418
19419     Reported-by: Martin Michlmayr <tbm@cyrius.com>
19420     Signed-off-by: Wolfgang Denk <wd@denx.de>
19421
19422 commit ba490b7761c62b549c222a9723e532dc801a3899
19423 Author: Peter Tyser <ptyser@xes-inc.com>
19424 Date:   Mon Dec 1 16:22:45 2008 -0600
19425
19426     Remove unused CONFIG_ADDR_STREAMING defines
19427
19428     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19429
19430 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
19431 Author: Peter Tyser <ptyser@xes-inc.com>
19432 Date:   Mon Nov 24 11:54:47 2008 -0600
19433
19434     cmd_mem: Remove unused variable
19435
19436     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19437
19438 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
19439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19440 Date:   Sun Dec 14 10:29:39 2008 +0100
19441
19442     Fix new found CFG_
19443
19444     Also fix some minor typos.
19445
19446     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19447     Signed-off-by: Wolfgang Denk <wd@denx.de>
19448
19449 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
19450 Author: Sergei Poselenov <sposelenov@emcraft.com>
19451 Date:   Fri Sep 19 12:07:34 2008 +0200
19452
19453     Remove compiler warning: target CPU does not support interworking
19454
19455     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
19456
19457     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
19458     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19459
19460 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
19461 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19462 Date:   Mon Nov 24 13:33:51 2008 +0100
19463
19464     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
19465
19466     FDT support is used for both FIT style images and for architectures
19467     that can pass a fdt blob to an OS (ppc, m68k, sparc).
19468
19469     For other architectures and boards which do not pass a fdt blob to an
19470     OS but want to use the new uImage format, we just need FIT support.
19471
19472     Now we can have the 4 following configurations :
19473
19474     1) FIT only             CONFIG_FIT
19475     2) fdt blob only        CONFIG_OF_LIBFDT
19476     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
19477     4) none                 none
19478
19479     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19480
19481 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
19482 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19483 Date:   Wed Dec 10 15:13:32 2008 +0100
19484
19485     ppc4xx: Disable EEPROM write access on PMC440 boards
19486
19487     This patch disables EEPROM wrtie access by default on PMC440 board.
19488
19489     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19490
19491 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
19492 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19493 Date:   Wed Dec 10 15:12:56 2008 +0100
19494
19495     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
19496
19497     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19498
19499 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
19500 Author: Stefan Roese <sr@denx.de>
19501 Date:   Tue Nov 18 16:36:12 2008 +0100
19502
19503     MIPS: Flush data cache upon relocation
19504
19505     This patch now adds a flush to the data cache upon relocation. The
19506     current implementation is missing this. Only a comment states that it
19507     should be done. So let's really do it now.
19508
19509     Signed-off-by: Stefan Roese <sr@denx.de>
19510     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19511
19512 commit 44174343688dba32571a34550dba08971c65fef1
19513 Author: Stefan Roese <sr@denx.de>
19514 Date:   Tue Nov 18 16:36:22 2008 +0100
19515
19516     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
19517
19518     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
19519     enables support for boards where the lowlevel initialization is
19520     already done when U-Boot runs (e.g. via OnChip ROM).
19521
19522     This will be used in the upcoming VCTH board support.
19523
19524     Signed-off-by: Stefan Roese <sr@denx.de>
19525     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19526
19527 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
19528 Author: Stefan Roese <sr@denx.de>
19529 Date:   Wed Nov 12 13:18:02 2008 +0100
19530
19531     MIPS: Add board_early_init_f() to init_sequence
19532
19533     This patch adds the board_early_init_f() call to the MIPS init
19534     sequence. A weak dummy implementation is also added which can be
19535     overridden by a board specific version.
19536
19537     This will be used by the upcoming VCTH board support.
19538
19539     Signed-off-by: Stefan Roese <sr@denx.de>
19540     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19541
19542 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
19543 Author: Stefan Roese <sr@denx.de>
19544 Date:   Wed Nov 12 13:18:19 2008 +0100
19545
19546     MIPS: Add onenand_init() to board.c and move nand_init()
19547
19548     This patch adds a call to onenand_init() for OneNAND support and moves
19549     the nand_init() call to an earlier place, so that the environment can
19550     be used from NAND and OneNAND.
19551
19552     Signed-off-by: Stefan Roese <sr@denx.de>
19553     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19554
19555 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
19556 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19557 Date:   Tue Dec 9 11:32:46 2008 +0900
19558
19559     sh: Update sh2/sh2a timer
19560
19561     Renesas SH2/SH2A timer broken.
19562     This patch fix timer function.
19563
19564     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19565     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19566
19567 commit a319f1496210117b73198e3d889ffffaf6825d00
19568 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19569 Date:   Fri Dec 5 07:27:37 2008 +0100
19570
19571     sh: r2dplus fix register access
19572
19573     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19574     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19575
19576 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
19577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19578 Date:   Tue Dec 2 07:40:03 2008 +0100
19579
19580     sh: r2dplus/lowlevel_init: coding style fix
19581
19582     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19583     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19584
19585 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
19586 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19587 Date:   Tue Nov 25 11:05:19 2008 +0900
19588
19589     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
19590
19591     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
19592     CACHE_OC_WAY_SHIFT every CPU.
19593     This patch corrects these values.
19594
19595     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19596     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19597
19598 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
19599 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19600 Date:   Thu Nov 20 16:44:42 2008 +0900
19601
19602     sh: Update sh timer function
19603
19604     Change to write/readX function and fix timer problem.
19605
19606     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19607     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19608
19609 commit b81786cff476c41e332eaeb679158f6527cd67d4
19610 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19611 Date:   Tue Nov 4 11:58:58 2008 +0900
19612
19613     sh: Migo-R: Update BSC value
19614
19615     A value of BSC CS4 was wrong, Fixed it.
19616
19617     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19618     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19619
19620 commit 5783758fd260a02f44566ad8f29f899565cd0403
19621 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19622 Date:   Mon Nov 17 16:52:09 2008 +0900
19623
19624     sh: Update ms7722se board config
19625
19626     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19627     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19628
19629 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
19630 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19631 Date:   Mon Nov 17 16:53:09 2008 +0900
19632
19633     sh: Update SuperH serial driver
19634
19635     The address of SCFSR register is wrong at SH7720/SH7721.
19636     This patch fix this.
19637
19638     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19639     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19640
19641 commit 9a1d3557dcd47365c12eeab584b822e57d994352
19642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19643 Date:   Tue Nov 11 22:20:15 2008 +0100
19644
19645     sh: fix rsk7203 and MigoR out of tree build
19646
19647     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19648     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19649
19650 commit 1951f847f0a851853871b613ad7cf21a5242226c
19651 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19652 Date:   Wed Dec 10 14:41:25 2008 +0100
19653
19654     ppc4xx: Update TEXT_BASE for CPCI405 boards
19655
19656     This patch fixes building U-Boot for CPCI405 boards.
19657
19658     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19659     Signed-off-by: Stefan Roese <sr@denx.de>
19660
19661 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
19662 Author: Stefan Roese <sr@denx.de>
19663 Date:   Tue Dec 9 20:08:01 2008 +0100
19664
19665     ppc4xx: Remove some features from ALPR to fit into 256k again
19666
19667     Signed-off-by: Stefan Roese <sr@denx.de>
19668
19669 commit 3b089e4f889a2902449d55e081c886ae607cae89
19670 Author: Stefan Roese <sr@denx.de>
19671 Date:   Wed Dec 10 10:32:59 2008 +0100
19672
19673     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
19674
19675     With this patch we set the type back to NONE upon failing UBI partition
19676     initialization. Otherwise further calls to the UBI subsystem would try
19677     to really access the non-existing UBI partition.
19678
19679     Thanks to Michael Lawnick for pointing this out.
19680
19681     Signed-off-by: Stefan Roese <sr@denx.de>
19682
19683 commit 817329351639a8895cd9b87b33aeff043f3d5a44
19684 Author: Stefan Roese <sr@denx.de>
19685 Date:   Wed Dec 10 10:28:33 2008 +0100
19686
19687     UBI: Return -ENOMEM upon failing malloc
19688
19689     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
19690     failing malloc().
19691
19692     Signed-off-by: Stefan Roese <sr@denx.de>
19693
19694 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
19695 Author: Ben Warren <biggerbadderben@gmail.com>
19696 Date:   Tue Dec 9 23:34:15 2008 -0800
19697
19698     Fix compile error in building MBX860T.
19699
19700     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19701
19702 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
19703 Author: Michal Simek <monstr@monstr.eu>
19704 Date:   Tue Nov 25 11:42:20 2008 +0100
19705
19706     microblaze: Remove XUPV2P board
19707
19708     ---
19709
19710     Microblaze platforms use generic settings and to have
19711     many platforms is confusing that's why I decided to remove this
19712     platform from U-BOOT. ml401 tree is sufficient for covering
19713     all Microblaze platforms.
19714
19715     This change will go through microblaze custodian tree.
19716
19717 commit 99ba6f353582720defff6e6e6761dc455a207d31
19718 Author: Michal Simek <monstr@monstr.eu>
19719 Date:   Mon Nov 24 18:25:41 2008 +0100
19720
19721     microblaze: Remove CONFIG_LIBFDT due to error in common files
19722
19723 commit e7d591e823a991513833af7030468409e25a3b13
19724 Author: Michal Simek <monstr@monstr.eu>
19725 Date:   Mon Nov 24 11:43:00 2008 +0100
19726
19727     microblaze: Fix ml401 uart16550 setting
19728
19729     Signed-off-by: Michal Simek <monstr@monstr.eu>
19730
19731 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
19732 Author: Michal Simek <monstr@monstr.eu>
19733 Date:   Mon Nov 24 11:38:22 2008 +0100
19734
19735     microblaze: Set up relocation is done
19736
19737 commit bcb6dd9187d4b23c748704767bd12d20c829e996
19738 Author: Mike Frysinger <vapier@gentoo.org>
19739 Date:   Tue Dec 9 23:20:31 2008 -0500
19740
19741     tools/netconsole: new script for working with netconsole over UDP
19742
19743     While the doc/README.NetConsole does have a snippet for people to
19744     create their own netcat script, it's a lot easier to make a simple
19745     dedicated script and tell people to use it.
19746
19747     Also spruce it up a bit to make it user friendly.
19748
19749     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19750
19751 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
19752 Author: Sonic Zhang <Sonic.Zhang@analog.com>
19753 Date:   Tue Dec 9 23:20:18 2008 -0500
19754
19755     fs/fat: handle FAT on SATA
19756
19757     The FAT file system driver should also handle FAT on SATA devices.
19758
19759     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
19760     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19761
19762 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
19763 Author: Ben Warren <biggerbadderben@gmail.com>
19764 Date:   Tue Dec 9 23:26:31 2008 -0800
19765
19766     Fix compile error in building MBX860T.
19767     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
19768
19769     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19770
19771 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
19772 Author: Jerry Van Baren <gvb.uboot@gmail.com>
19773 Date:   Mon Nov 24 08:15:02 2008 -0500
19774
19775     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
19776
19777     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
19778     following warnings from FDT:
19779
19780     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
19781     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
19782
19783     Fix: Protect the definition of uintptr_t when compiling on the host
19784     system.
19785
19786     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
19787
19788 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
19789 Author: Graeme Russ <graeme.russ@gmail.com>
19790 Date:   Sat Nov 22 08:43:29 2008 +1100
19791
19792     Moved sc520 PCI definitions to stand-alone file
19793
19794     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
19795
19796 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
19797 Author: Graeme Russ <graeme.russ@gmail.com>
19798 Date:   Sat Nov 22 08:43:21 2008 +1100
19799
19800     Fixed path to sc520 SSI include file
19801
19802     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
19803
19804 commit d4f70da544c33db3e4fce6473dea4ecca4322545
19805 Author: Graeme Russ <graeme.russ@gmail.com>
19806 Date:   Fri Nov 21 06:28:05 2008 +1100
19807
19808     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
19809
19810     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
19811
19812 commit c034075a713b60e654c64e88e87da29440f31bb4
19813 Author: Stefan Roese <sr@denx.de>
19814 Date:   Wed Nov 12 13:30:10 2008 +0100
19815
19816     serial: Add vcth UART driver
19817
19818     This patch adds the UART driver for the upcoming VCTH board support.
19819
19820     Signed-off-by: Stefan Roese <sr@denx.de>
19821
19822 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
19823 Author: Ilya Yanok <yanok@emcraft.com>
19824 Date:   Thu Nov 13 19:49:36 2008 +0300
19825
19826     jffs2: cache data_crc results
19827
19828     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
19829     jffs2_1pass_read_inode() data_crc is going to be calculated on each
19830     inode access. This patch adds caching of data_crc() results. There
19831     is no significant improvement in speed (because of flash access
19832     caching added in previous patch I think, crc in RAM is really fast)
19833     but this patch impacts memory usage -- every b_node structure uses
19834     12 bytes instead of 8.
19835
19836     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19837     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19838
19839 commit 9b7076229ec6a958bd835ab70745f7676297ce82
19840 Author: Ilya Yanok <yanok@emcraft.com>
19841 Date:   Thu Nov 13 19:49:35 2008 +0300
19842
19843     jffs2: summary support
19844
19845     This patch adds support for reading fs information from summary
19846     node instead of scanning full eraseblock.
19847
19848     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19849
19850 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
19851 Author: Ilya Yanok <yanok@emcraft.com>
19852 Date:   Thu Nov 13 19:49:34 2008 +0300
19853
19854     jffs2: add buffer to cache flash accesses
19855
19856     With this patch JFFS2 code allocates memory buffer of max_totlen size
19857     (size of the largest node, calculated during scan time) and uses it to
19858     store entire node. Speeds up loading. If malloc fails we use old ways
19859     to do things.
19860
19861     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19862     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19863
19864 commit 8a36d31f72411144ac0412ee7e1880e801acd754
19865 Author: Ilya Yanok <yanok@emcraft.com>
19866 Date:   Thu Nov 13 19:49:33 2008 +0300
19867
19868     jffs2: rewrite jffs2 scanning code based on Linux one
19869
19870     Rewrites jffs2_1pass_build_lists() function in style of Linux's
19871     jffs2_scan_medium() and jffs2_scan_eraseblock().
19872     This includes:
19873      - Caching flash acceses
19874      - Smart dealing with free space
19875
19876     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19877     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19878
19879 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
19880 Author: Ilya Yanok <yanok@emcraft.com>
19881 Date:   Thu Nov 13 19:49:32 2008 +0300
19882
19883     jffs2: add sector_size field to part_info structure
19884
19885     This patch adds sector_size field to part_info structure (used
19886     by new JFFS2 code).
19887
19888     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19889
19890 commit f73846956778a7dfee83403ef9747aff77198848
19891 Author: Ilya Yanok <yanok@emcraft.com>
19892 Date:   Thu Nov 13 19:49:31 2008 +0300
19893
19894     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
19895
19896     We need to update i_version inside cycle to find really latest version
19897     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
19898     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
19899
19900     Signed-off-by: Alexey Neyman <avn@emcraft.com>
19901     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19902
19903 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
19904 Author: Wolfgang Denk <wd@denx.de>
19905 Date:   Tue Dec 9 23:13:51 2008 +0100
19906
19907     evb64260: fix "cast to pointer from integer of different size" warnings
19908
19909     Signed-off-by: Wolfgang Denk <wd@denx.de>
19910
19911 commit d2776827315c3d469b8cb4cec14d58877798daa2
19912 Author: Stefan Althoefer <stefan.althoefer@web.de>
19913 Date:   Sun Dec 7 19:39:11 2008 +0100
19914
19915     USB: descriptor handling
19916
19917     Hi,
19918
19919     I found a bug when working with the u-boot USB subsystem on IXP425 processor
19920     (big endian Xscale aka ARMv5).
19921     I recognized that the second usb_endpoint_descriptor of the attached memory
19922     stick was corrupted.
19923
19924     The reason for this are the packed structures below (either u-boot and
19925     u-boot-usb):
19926
19927     --------------
19928     /* Endpoint descriptor */
19929     struct usb_endpoint_descriptor {
19930         unsigned char  bLength;
19931         unsigned char  bDescriptorType;
19932         unsigned char  bEndpointAddress;
19933         unsigned char  bmAttributes;
19934         unsigned short wMaxPacketSize;
19935         unsigned char  bInterval;
19936         unsigned char  bRefresh;
19937         unsigned char  bSynchAddress;
19938
19939     } __attribute__ ((packed));
19940     /* Interface descriptor */
19941     struct usb_interface_descriptor {
19942         unsigned char  bLength;
19943         unsigned char  bDescriptorType;
19944         unsigned char  bInterfaceNumber;
19945         unsigned char  bAlternateSetting;
19946         unsigned char  bNumEndpoints;
19947         unsigned char  bInterfaceClass;
19948         unsigned char  bInterfaceSubClass;
19949         unsigned char  bInterfaceProtocol;
19950         unsigned char  iInterface;
19951
19952         unsigned char  no_of_ep;
19953         unsigned char  num_altsetting;
19954         unsigned char  act_altsetting;
19955         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
19956     } __attribute__ ((packed));
19957     ------------
19958
19959     As usb_endpoint_descriptor is only 7byte in length, the start of all
19960     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
19961     of these structures also not word aligned.
19962
19963     ARMv5 Architecture however does not support non-aligned multibyte
19964     data type (see A2.8 of ARM Architecture Reference Manual).
19965
19966     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
19967     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19968
19969 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
19970 Author: Kumar Gala <galak@kernel.crashing.org>
19971 Date:   Tue Dec 9 10:27:33 2008 -0600
19972
19973     drivers/fsl_pci_init: Fix compile warning
19974
19975     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
19976     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
19977
19978     The check only makes sense if we are CONFIG_PHYS_64BIT
19979
19980     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19981
19982 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
19983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19984 Date:   Sun Dec 7 09:45:35 2008 +0100
19985
19986     usbtty/omap: update to current API
19987
19988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19989     Signed-off-by: Remy Böhmer <linux@bohmer.net>
19990
19991 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
19992 Author: Anatolij Gustschin <agust@denx.de>
19993 Date:   Tue Dec 9 17:52:05 2008 +0100
19994
19995     video: fix FADS823 and RRvision compiling issues
19996
19997     Since commit 561858ee building for FADS823 and RRvision
19998     doesn't work. Let's include version.h and timestamp.h
19999     unconditionally to fix the problem.
20000
20001     Signed-off-by: Anatolij Gustschin <agust@denx.de>
20002
20003 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
20004 Author: Stefan Roese <sr@denx.de>
20005 Date:   Tue Dec 2 10:53:47 2008 +0100
20006
20007     UBI: Fix size parsing in "ubi create"
20008
20009     Signed-off-by: Stefan Roese <sr@denx.de>
20010
20011 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
20012 Author: Stefan Roese <sr@denx.de>
20013 Date:   Thu Nov 27 14:07:09 2008 +0100
20014
20015     UBI: Enable re-initializing of the "ubi part" command
20016
20017     With this patch now, the user can call "ubi part" multiple times to
20018     re-connect the UBI device to another MTD partition.
20019
20020     Signed-off-by: Stefan Roese <sr@denx.de>
20021
20022 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
20023 Author: Stefan Roese <sr@denx.de>
20024 Date:   Thu Nov 27 14:05:15 2008 +0100
20025
20026     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
20027
20028     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
20029     first call of add_mtd_partitions(). Otherwise this won't work on platforms
20030     where the relocation is broken (like MIPS or PPC).
20031
20032     Signed-off-by: Stefan Roese <sr@denx.de>
20033
20034 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
20035 Author: Trent Piepho <tpiepho@freescale.com>
20036 Date:   Wed Nov 12 17:29:48 2008 -0800
20037
20038     Section name should be ".data", not "data"
20039
20040     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
20041     Signed-off-by: Wolfgang Denk <wd@denx.de>
20042
20043 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
20044 Author: Wolfgang Denk <wd@denx.de>
20045 Date:   Tue Dec 9 00:39:08 2008 +0100
20046
20047     MAKEALL: Automatically use parallel builds
20048
20049     Add logic to the MAKEALL script to determine the number of CPU cores
20050     on the system, and run a parallel build if there is more than one.
20051     Usually this significantrly accelerates builds.
20052
20053     Allow to manually adjust the number of parallel make jobs by using
20054     the "BUILD_NCPUS" environment variable.
20055
20056     Signed-off-by: Wolfgang Denk <wd@denx.de>
20057
20058 commit 268405fa7c44156c5192a70779920c70906af8d6
20059 Author: Wolfgang Denk <wd@denx.de>
20060 Date:   Tue Dec 9 00:24:30 2008 +0100
20061
20062     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
20063
20064     Signed-off-by: Wolfgang Denk <wd@denx.de>
20065
20066 commit 153176a9414120ca1736f3cc4951623d6e14e6af
20067 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20068 Date:   Tue Nov 11 06:08:59 2008 +0100
20069
20070     avr32/bootm: remove unused variable 'ret'
20071
20072     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20073     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20074
20075 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
20076 Author: Peter Tyser <ptyser@xes-inc.com>
20077 Date:   Wed Nov 12 13:06:48 2008 -0600
20078
20079     Remove unneeded CONFIG_SHELL references
20080
20081     Make should be using the bash shell by default which makes
20082     CONFIG_SHELL unnecessary
20083
20084     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20085
20086 commit cf7a7b99794bac936899819b95539be1dbd71708
20087 Author: Peter Tyser <ptyser@xes-inc.com>
20088 Date:   Wed Nov 12 12:33:20 2008 -0600
20089
20090     Use bash for default GNU Make shell application
20091
20092     Some Make script commands rely on bash-specific features like brace
20093     expansion, so default to bash for the SHELL variable with a fallback
20094     to the standard sh shell
20095
20096     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20097
20098 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
20099 Author: Heiko Schocher <hs@denx.de>
20100 Date:   Wed Nov 12 09:50:45 2008 +0100
20101
20102     jffs2: rename devices_init () in common/jffs2.c
20103
20104     rename devices_init () in common/jffs2.c to
20105     jffs2_devices_init (), because there is also a
20106     devices_init () in common/devices.c.
20107
20108     Signed-off-by: Heiko Schocher <hs@denx.de>
20109
20110 commit af5eb847a10f1037590001355d88bab3fe7be48b
20111 Author: Daniel Hellstrom <daniel@gaisler.com>
20112 Date:   Mon Nov 10 12:46:20 2008 +0000
20113
20114     SPARC: Fixed compiler error introduced by commit c160a9544743
20115
20116     This patch fixes a build error for the SPARC platform. It was
20117     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
20118
20119     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
20120
20121 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
20122 Author: Gary Jennejohn <garyj@denx.de>
20123 Date:   Sun Nov 9 12:50:59 2008 +0100
20124
20125     mgsuvd add the board-specific part of the HDLC driver
20126
20127     Signed-off-by: Gary Jennejohn <garyj@denx.de>
20128
20129 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
20130 Author: Gary Jennejohn <garyj@denx.de>
20131 Date:   Sun Nov 9 12:45:03 2008 +0100
20132
20133     mgcoge add the board-specific part of the HDLC driver
20134
20135     Signed-off-by: Gary Jennejohn <garyj@denx.de>
20136
20137 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
20138 Author: Gary Jennejohn <garyj@denx.de>
20139 Date:   Sun Nov 9 12:36:15 2008 +0100
20140
20141     keymile add the common parts of the HDLC driver
20142
20143     This implements the ICN protocol used across the backplane and is
20144     needed by all the keymile boards.
20145
20146     Signed-off-by: Gary Jennejohn <garyj@denx.de>
20147
20148 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
20149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20150 Date:   Fri Nov 7 22:46:22 2008 +0100
20151
20152     drivers/bios_emulator: Move conditional compilation to Makefile
20153
20154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20155
20156 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
20157 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20158 Date:   Thu Nov 6 14:01:51 2008 -0500
20159
20160     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
20161
20162     Corrected endian order printing for compact flash serial number.
20163
20164     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20165
20166 commit 16a28ef219c27423a1ef502f19070c4d375079b8
20167 Author: Gary Jennejohn <garyj@denx.de>
20168 Date:   Thu Nov 6 15:04:23 2008 +0100
20169
20170     IOMUX: Add console multiplexing support.
20171
20172     Modifications to support console multiplexing.  This is controlled using
20173     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
20174
20175     This allows a user to specify multiple console devices in the environment
20176     with a command like this: setenv stdin serial,nc.  As a result, the user can
20177     enter text on both the serial and netconsole interfaces.
20178
20179     All devices - stdin, stdout and stderr - can be set in this manner.
20180
20181     1) common/iomux.c and include/iomux.h contain the environment setting
20182     implementation.
20183     2) doc/README.iomux contains a somewhat more detailed description.
20184     3) The implementation in (1) is called from common/cmd_nvedit.c to
20185     handle setenv and from common/console.c to handle initialization of
20186     input/output devices at boot time.
20187     4) common/console.c also contains the code needed to poll multiple console
20188     devices for input and send output to all devices registered for output.
20189     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
20190     when CONFIG_SYS_CONSOLE_MUX is set.
20191
20192     Signed-off-by: Gary Jennejohn <garyj@denx.de>
20193
20194 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
20195 Author: Mike Frysinger <vapier@gentoo.org>
20196 Date:   Tue Nov 4 16:03:46 2008 -0500
20197
20198     strings: use puts() rather than printf()
20199
20200     When running `strings` on really long strings, the stack tends to get
20201     smashed due to printf().  Switch to puts() instead since we're only passing
20202     the data through.
20203
20204     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20205
20206 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
20207 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
20208 Date:   Mon Nov 3 22:16:18 2008 +0100
20209
20210     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
20211
20212     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
20213
20214 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
20215 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
20216 Date:   Mon Nov 3 22:15:34 2008 +0100
20217
20218     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
20219
20220     - fix size too small by one in sprintf
20221     - changed old (pre 2004) device name ibmEmac to emac
20222     - boot device may be overriden in board config
20223     - servername may be defined in board config
20224     - additional parameters may be defined in board config
20225     - fixed some line wrappings
20226     - replaced  redundant MAX define by max
20227
20228     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
20229
20230 commit e9084b23d16102f44ace24379a1c0c352497ef80
20231 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
20232 Date:   Mon Nov 3 22:14:36 2008 +0100
20233
20234     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
20235
20236     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
20237
20238 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
20239 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
20240 Date:   Mon Nov 3 22:13:47 2008 +0100
20241
20242     README: Document CONFIG_SYS parameters for vxworks
20243
20244     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
20245
20246 commit ace514837cac656e29c37a19569cb8ea83071126
20247 Author: Peter Tyser <ptyser@xes-inc.com>
20248 Date:   Fri Oct 31 11:12:38 2008 -0500
20249
20250     lcd: Let the board code show board-specific info cleanup
20251
20252     remove unneeded version.h from lcd.c
20253
20254     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20255     Signed-off-by: Wolfgang Denk <wd@denx.de>
20256
20257 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
20258 Author: Peter Tyser <ptyser@xes-inc.com>
20259 Date:   Mon Nov 3 09:30:59 2008 -0600
20260
20261     Update U-Boot's build timestamp on every compile
20262
20263     Use the GNU 'date' command to auto-generate a new U-Boot
20264     timestamp on every compile.
20265
20266     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20267
20268 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
20269 Author: Remy Bohmer <linux@bohmer.net>
20270 Date:   Thu Dec 4 22:25:57 2008 +0100
20271
20272     Remove redundant armv4 flag from arm926ejs compile flags
20273
20274     Currently the arm926ejs tree has the armv4 option set during compilation.
20275     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
20276
20277     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20278
20279 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
20280 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
20281 Date:   Sat Dec 6 13:11:14 2008 +0100
20282
20283     at91: Choose environment variables location within make config target
20284
20285     This patch adds the possiblity to choose the media where the environment will
20286     be located. This allow to choose this fundamental configuration without editing
20287     config files.
20288
20289     Documentation file added.
20290
20291     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
20292     Acked-by: Stelian Pop <stelian@popies.net>
20293     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20294
20295 commit 1450c4a6682378567030414a9f1198c39b7730c7
20296 Author: Anatolij Gustschin <agust@denx.de>
20297 Date:   Mon Nov 3 15:30:34 2008 +0100
20298
20299     lwmon, tqm8xx: Fix build errors
20300
20301     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
20302     lcd: Let the board code show board-specific info
20303
20304     introduced some bugs which prevent U-Boot building
20305     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
20306     be defined in the board configuration.
20307
20308     Also "LCD enabled" building for TQM823L doesn't work
20309     since this commit.
20310
20311     This patch fixes above-mentioned issues.
20312
20313     Signed-off-by: Anatolij Gustschin <agust@denx.de>
20314
20315 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
20316 Author: Mike Frysinger <vapier@gentoo.org>
20317 Date:   Sun Nov 2 01:18:18 2008 -0400
20318
20319     ignore .gdb_history files
20320
20321     When using gdb, history files will often get generated.  So ignore them.
20322
20323     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20324
20325 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
20326 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20327 Date:   Fri Oct 31 12:26:55 2008 +0100
20328
20329     FPGA: move fpga drivers to drivers/fpga
20330
20331     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20332
20333 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
20334 Author: Peter Tyser <ptyser@xes-inc.com>
20335 Date:   Mon Dec 1 16:29:38 2008 -0600
20336
20337     net: Fix TftpStart() ip:filename bug
20338
20339     The TftpStart() function modifies the 'BootFile'
20340     string when 'BootFile' contains both an IP address
20341     and filename (eg 1.2.3.4:/path/file). This causes
20342     subsequent calls to TftpStart to incorrectly parse
20343     the TFTP filename and server IP address to use.
20344     For example:
20345
20346     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
20347     Speed: 100, half duplex
20348     Using eTSEC1 device
20349     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
20350                      ^^^^^^^^^^ CORRECT
20351     Filename '/home/ptyser/non_existant'.
20352               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
20353     Load address: 0x100000
20354     Loading: *
20355     TFTP error: 'File not found' (1)
20356     Starting again
20357
20358     eTSEC2: No link.
20359     Speed: 100, half duplex
20360     Using eTSEC1 device
20361     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
20362                      ^^^^^^^^^^ WRONG
20363     Filename '10.52.0.62'.
20364               ^^^^^^^^^^ WRONG
20365     Load address: 0x100000
20366     Loading: *
20367     TFTP error: 'File not found' (1)
20368     Starting again
20369
20370     TftpStart() was modified to not modify the 'BootFile' string.
20371
20372     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20373     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20374
20375 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
20376 Author: Peter Tyser <ptyser@xes-inc.com>
20377 Date:   Mon Dec 1 16:26:21 2008 -0600
20378
20379     net: Add additional IP fragmentation check
20380
20381     Ignore IP packets which have the "more fragments" flag bit
20382     set.  This flag indicates the IP packet is fragmented and
20383     must be ignored by U-Boot.
20384
20385     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20386     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20387
20388 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
20389 Author: Peter Tyser <ptyser@xes-inc.com>
20390 Date:   Mon Dec 1 16:26:20 2008 -0600
20391
20392     net: Define IP flag field values
20393
20394     These defines were pulled from the "Add simple
20395     IP/UDP fragmentation support" patch from Frank
20396     Haverkamp <haver@vnet.ibm.com>.
20397
20398     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20399     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20400
20401 commit 23afaba65ec5206757e589ef334a8b38168c045f
20402 Author: Anatolij Gustschin <agust@denx.de>
20403 Date:   Tue Dec 2 10:31:04 2008 +0100
20404
20405     net: tsec: Fix Marvell 88E1121R phy init
20406
20407     This patch tries to ensure that phy interrupt pin
20408     won't be asserted after booting. We experienced
20409     following issues with current 88E1121R phy init:
20410
20411     Marvell 88E1121R phy can be hardware-configured
20412     to share MDC/MDIO and interrupt pins for both ports
20413     P0 and P1 (e.g. as configured on socrates board).
20414     Port 0 interrupt pin will be shared by both ports
20415     in such configuration. After booting Linux and
20416     configuring eth0 interface, port 0 phy interrupts
20417     are enabled. After rebooting without proper eth0
20418     interface shutdown port 0 phy interrupts remain
20419     enabled so any change on port 0 (link status, etc.)
20420     cause assertion of the interrupt. Now booting Linux
20421     and configuring eth1 interface will cause permanent
20422     phy interrupt storm as the registered phy 1 interrupt
20423     handler doesn't acknowledge phy 0 interrupts. This
20424     of course should be fixed in Linux driver too.
20425
20426     Signed-off-by: Anatolij Gustschin <agust@denx.de>
20427     Acked-by: Andy Fleming <afleming@freescale.com>
20428     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20429
20430 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
20431 Author: Peter Tyser <ptyser@xes-inc.com>
20432 Date:   Tue Dec 2 12:59:51 2008 -0600
20433
20434     net: Fix download command parsing
20435
20436     When CONFIG_SYS_HUSH_PARSER is defined network download
20437     commands with 1 argument in the format 'tftp "/path/file"'
20438     do not work as expected. The hush command parser strips
20439     the quotes from "/path/file" which causes the network
20440     commands to interpret "/path/file" as an address
20441     instead of the intended filename.
20442
20443     The previous check for a leading quote in netboot_common()
20444     was replaced with a check which ensures only valid
20445     numbers are treated as addresses.
20446
20447     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20448     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20449
20450 commit 3c2c2f427905040c1513d0c51d637689cba48346
20451 Author: Remy Bohmer <linux@bohmer.net>
20452 Date:   Thu Nov 27 22:30:27 2008 +0100
20453
20454     Remove non-ascii characters from fat code
20455
20456     This code contains some non-ascii characters in comment lines and code.
20457     Most editors do not display those characters properly and editing those
20458     files results always in diffs at these places which are usually not required
20459     to be changed at all. This is error prone.
20460
20461     So, remove those weird characters and replace them by normal C-style
20462     equivalents for which the proper defines were already in the header.
20463
20464     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20465
20466 commit dc889e865356497d3e495570118c2245ebce2631
20467 Author: Dave Liu <daveliu@freescale.com>
20468 Date:   Fri Nov 28 20:16:58 2008 +0800
20469
20470     85xx: fix the wrong DDR settings for MPC8572DS
20471
20472     The default DDR freq is 400MHz or 800M data rate,
20473     the old settings is pure wrong for the default case.
20474
20475     Signed-off-by: Dave Liu <daveliu@freescale.com>
20476     Acked-by: Andy Fleming <afleming@freescale.com>
20477
20478 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
20479 Author: Kumar Gala <galak@kernel.crashing.org>
20480 Date:   Mon Nov 24 10:29:26 2008 -0600
20481
20482     85xx: init gd as early as possible
20483
20484     Moved up the initialization of GD so C code like set_tlb() can use
20485     gd->flags to determine if we've relocated or not in the future.
20486
20487     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20488     Acked-by: Andy Fleming <afleming@freescale.com>
20489
20490 commit aed461af81012a398a205e9be67ab37667491838
20491 Author: Kumar Gala <galak@kernel.crashing.org>
20492 Date:   Mon Nov 24 10:29:25 2008 -0600
20493
20494     85xx: Fix relocation of CCSRBAR
20495
20496     If the virtual address for CCSRBAR is the same after relocation but
20497     the physical address is changing we'd end up having two TLB entries with
20498     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
20499     temp virt address to access the old CCSRBAR to relocate it.
20500
20501     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20502     Acked-by: Andy Fleming <afleming@freescale.com>
20503
20504 commit ea154a1781135d822eedee7567cc156089eae93c
20505 Author: Kumar Gala <galak@kernel.crashing.org>
20506 Date:   Mon Nov 24 10:25:14 2008 -0600
20507
20508     FSL: Moved BR_PHYS_ADDR for localbus to common header
20509
20510     The BR_PHYS_ADDR macro is useful on all machines that have local bus
20511     which is pretty much all 83xx/85xx/86xx chips.
20512
20513     Additionally most 85xx & 86xx will need it if they want to support
20514     36-bit physical addresses.
20515
20516     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20517     Acked-by: Andy Fleming <afleming@freescale.com>
20518
20519 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
20520 Author: Peter Tyser <ptyser@xes-inc.com>
20521 Date:   Mon Dec 1 13:47:12 2008 -0600
20522
20523     85xx: Add PORDEVSR_PCI1 define
20524
20525     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
20526
20527     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
20528
20529     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20530     Signed-off-by: Andy Fleming <afleming@freescale.com>
20531
20532 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
20533 Author: Becky Bruce <becky.bruce@freescale.com>
20534 Date:   Fri Nov 21 19:24:22 2008 -0600
20535
20536     drivers/fsl_pci_init: Fix inbound window mapping bug
20537
20538     The current code will cause the creation of a 4GB window
20539     starting at 0 if we have more than 4GB of RAM installed,
20540     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
20541     to return erroneous information. Limit the size to 4GB - 1;
20542     which causes the code to create one 2GB and one 1GB window
20543     instead.
20544
20545     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
20546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20547     Acked-by: Andy Fleming <afleming@freescale.com>
20548
20549 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
20550 Author: Jon Loeliger <jdl@freescale.com>
20551 Date:   Thu Nov 20 15:36:48 2008 -0600
20552
20553     Removed unused CONFIG_L1_INIT_RAM symbol.
20554
20555     Prevent further viral propogation of the unused
20556     symbol CONFIG_L1_INIT_RAM by just removing it.
20557
20558     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20559     Acked-by: Andy Fleming <afleming@freescale.com>
20560
20561 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
20562 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
20563 Date:   Wed Oct 29 09:21:44 2008 -0500
20564
20565     fsl ddr skip interleaving if not supported.
20566
20567     Removed while(1) hang if memctl_intlv_ctl is set wrong.
20568     Remove embedded tabs from strings.
20569
20570     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
20571     Acked-by: Kumar Gala <galak@kernel.crashing.org>
20572     Acked-by: Andy Fleming <afleming@freescale.com>
20573
20574 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
20575 Author: Anatolij Gustschin <agust@denx.de>
20576 Date:   Thu Nov 13 18:08:57 2008 +0100
20577
20578     85xx: socrates: fix DDR SDRAM tlb entry configuration
20579
20580     since commit be0bd8234b9777ecd63c4c686f72af070d886517
20581     tlb entry for socrates DDR SDRAM will be reconfigured
20582     by setup_ddr_tlbs() from initdram() causing an
20583     inconsistency with previously configured DDR SDRAM tlb
20584     entry from tlb_table:
20585
20586     socrates>l2cam 7 9
20587     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
20588       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
20589       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
20590       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
20591
20592     This patch makes the presence of the DDR SDRAM tlb entry in
20593     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
20594     inconsistency.
20595
20596     Signed-off-by: Anatolij Gustschin <agust@denx.de>
20597     Acked-by: Andy Fleming <afleming@freescale.com>
20598
20599 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
20600 Author: Peter Tyser <ptyser@xes-inc.com>
20601 Date:   Tue Nov 11 10:17:10 2008 -0600
20602
20603     85xx: Add CPU 2 errata workaround to all 8548 boards
20604
20605     All mpc8548-based boards should implement the suggested workaround
20606     to CPU 2 errata. Without the workaround, its possible for the
20607     8548's core to hang while executing a msync or mbar 0 instruction
20608     and a snoopable transaction from an I/O master tagged to make
20609     quick forward progress is present.
20610
20611     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20612     Acked-by: Andy Fleming <afleming@freescale.com>
20613
20614 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
20615 Author: Dave Liu <daveliu@freescale.com>
20616 Date:   Tue Oct 28 17:53:45 2008 +0800
20617
20618     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
20619
20620     we need TLB entry for DDR at !SPD case.
20621
20622     Signed-off-by: Dave Liu <daveliu@freescale.com>
20623     Acked-by: Andy Fleming <afleming@freescale.com>
20624
20625 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
20626 Author: Dave Liu <daveliu@freescale.com>
20627 Date:   Tue Oct 28 17:53:38 2008 +0800
20628
20629     85xx: remove the unused ddr_enable_ecc in the board file
20630
20631     The DDR controller of 8548/8544/8568/8572/8536 processors
20632     have the ECC data init feature, and the new DDR code is
20633     using the feature, and we don't need the way with DMA to
20634     init memory any more.
20635
20636     Signed-off-by: Dave Liu <daveliu@freescale.com>
20637     Acked-by: Andy Fleming <afleming@freescale.com>
20638
20639 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
20640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20641 Date:   Sun Nov 30 19:36:53 2008 +0100
20642
20643     at91rm9200dk: Fix typo
20644
20645     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20646
20647 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
20648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20649 Date:   Sun Nov 30 19:36:50 2008 +0100
20650
20651     AT91: remove non supported board AT91RM9200DF macro
20652
20653     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20654
20655 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
20656 Author: Ilko Iliev <iliev@ronetix.at>
20657 Date:   Tue Dec 2 17:27:54 2008 +0100
20658
20659     mtd/dataflash.c: fix a problem with the last partition
20660
20661     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
20662     partition can be defined to use the area to the end of dataflash size.
20663     Now it is possible to have only one dataflash partition from 0 to the end
20664     of of dataflash size.
20665
20666     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
20667
20668 commit 03f797793b124dccaae145b977d15d6cb9e74504
20669 Author: Ilko Iliev <iliev@ronetix.at>
20670 Date:   Tue Dec 2 17:20:17 2008 +0100
20671
20672     fix some coding style violations.
20673
20674     This patch fix some coding style violations.
20675
20676     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
20677
20678 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
20679 Author: Stefan Roese <sr@denx.de>
20680 Date:   Thu Nov 27 14:11:37 2008 +0100
20681
20682     OneNAND: Add missing mtd info struct before calling onenand_erase()
20683
20684     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
20685     for use in UBI) via CONFIG_MTD_PARTITIONS.
20686
20687     Signed-off-by: Stefan Roese <sr@denx.de>
20688     Signed-off-by: Scott Wood <scottwood@freescale.com>
20689
20690 commit 29382d4064fbaff5daacff4c3209370fa5713966
20691 Author: Becky Bruce <becky.bruce@freescale.com>
20692 Date:   Thu Nov 20 16:43:52 2008 -0600
20693
20694     mpc8641: Fix error in README
20695
20696     I made some updates to the code that didn't make it into the
20697     README - fix this
20698
20699     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20700
20701 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
20702 Author: Jon Loeliger <jdl@freescale.com>
20703 Date:   Thu Nov 20 12:01:02 2008 -0600
20704
20705     Removed unused CONFIG_L1_INIT_RAM symbol.
20706
20707     Prevent further viral propogation of the unused
20708     symbol CONFIG_L1_INIT_RAM by just removing it.
20709
20710     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20711
20712 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
20713 Author: Jon Loeliger <jdl@freescale.com>
20714 Date:   Thu Nov 20 14:02:56 2008 -0600
20715
20716     86xx: Fix non-64-bit compilation problems.
20717
20718     Introducing 64-bit (36-bit) support for the MPC8641HPCN
20719     failed to accomodate the other two 86xx boards.
20720     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
20721     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
20722     with nominal 32-bit values.
20723
20724     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20725     Acked-by: Becky Bruce <becky.bruce@freescale.com>
20726
20727 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
20728 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
20729 Date:   Wed Nov 26 17:40:37 2008 +0100
20730
20731     Remove obsolete command (apply afte USB style patch, 80 chars strict)
20732
20733     Remove USB obsolete commmand
20734
20735     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
20736     Signed-off-by: Remy Böhmer <linux@bohmer.net>
20737
20738 commit de39f8c19d7c12017248c49d432dcb81db68f724
20739 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
20740 Date:   Wed Nov 26 17:41:34 2008 +0100
20741
20742     USB style patch, 80 chars strict
20743
20744     USB Code style patch
20745
20746     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
20747     Signed-off-by: Remy Böhmer <linux@bohmer.net>
20748
20749 commit d10c5a87cb8affbb4d35a311370316d4383d598e
20750 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20751 Date:   Fri Nov 7 22:46:21 2008 +0100
20752
20753     drivers/usb: Move conditional compilation to Makefile
20754
20755     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20756     Signed-off-by: Remy Böhmer <linux@bohmer.net>
20757
20758 commit 2077e348c2a84901022ad95311b47b70361e6daa
20759 Author: Scott Wood <scottwood@freescale.com>
20760 Date:   Tue Nov 25 10:47:02 2008 -0600
20761
20762     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
20763
20764     This caused the operation to be needlessly repeated if there were
20765     no bad blocks and no errors.
20766
20767     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
20768     Signed-off-by: Scott Wood <scottwood@freescale.com>
20769
20770 commit 89295028e7d8f7a524f485328279d72fdb102385
20771 Author: Michal Simek <monstr@monstr.eu>
20772 Date:   Mon Nov 24 12:09:50 2008 +0100
20773
20774     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
20775
20776     This BSP should be outside u-boot source tree.
20777     The second reason is that xilinx ppc405 was moved to generic platform.
20778
20779     Signed-off-by: Michal Simek <monstr@monstr.eu>
20780     Signed-off-by: Stefan Roese <sr@denx.de>
20781
20782 commit 24eea623d4974a169026a975ba12fb23d48154b1
20783 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20784 Date:   Mon Nov 24 15:11:10 2008 +0100
20785
20786     ppc4xx: Remove unused features
20787
20788     This patch disables some unused features from the PCI405 configuration
20789     to keep U-Boot image size below 192k.
20790
20791     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20792     Signed-off-by: Stefan Roese <sr@denx.de>
20793
20794 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
20795 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20796 Date:   Mon Nov 24 15:11:09 2008 +0100
20797
20798     ppc4xx: Use correct io accessors for PCI405
20799
20800     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20801     Signed-off-by: Stefan Roese <sr@denx.de>
20802
20803 commit 348c849d86a6f0785752b9bc497a34658713d1d1
20804 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20805 Date:   Mon Nov 24 15:11:08 2008 +0100
20806
20807     ppc4xx: Remove unused code from PCI405 code
20808
20809     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20810     Signed-off-by: Stefan Roese <sr@denx.de>
20811
20812 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
20813 Author: Heiko Schocher <hs@denx.de>
20814 Date:   Thu Nov 20 09:59:09 2008 +0100
20815
20816     powerpc, keymile boards: extract identical config options
20817
20818     This patch extracts the identical config options for the
20819     keymile boards mgcoge, mgsuvd and kmeter1 in a new
20820     common config file keymile-common.h.
20821
20822     Signed-off-by: Heiko Schocher <hs@denx.de>
20823     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20824
20825 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
20826 Author: Heiko Schocher <hs@denx.de>
20827 Date:   Fri Nov 21 08:29:40 2008 +0100
20828
20829     powerpc: keymile: Add a check for the PIGGY debug board
20830
20831     Check the presence of the PIGGY on the keymile boards mgcoge,
20832     mgsuvd and kmeter1. If the PIGGY is not present, dont register
20833     this Ethernet device.
20834
20835     Signed-off-by: Heiko Schocher <hs@denx.de>
20836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20837
20838 commit 58c696eed839af894e0265064669c402dc28b371
20839 Author: Wolfgang Denk <wd@xpert.denx.de>
20840 Date:   Mon Nov 24 21:50:59 2008 +0100
20841
20842     AT91RM9200DK: fix broken boot from NOR flash
20843
20844     Signed-off-by: Wolfgang Denk <wd@denx.de>
20845
20846 commit 8052352f20b33bef8f9872fc983eac73d4693c38
20847 Author: Jens Scharsig <esw@bus-elektronik.de>
20848 Date:   Tue Nov 18 10:48:46 2008 +0100
20849
20850     at91rm9200: fix broken boot from nor flash
20851
20852     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
20853     CONFIG_AT91RM9200 is defined and nor preloader is used.
20854
20855     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
20856
20857 commit 25ea652e907516a283b38237e83712a918f125d7
20858 Author: Piotr Ziecik <kosmo@semihalf.com>
20859 Date:   Mon Nov 17 15:58:00 2008 +0100
20860
20861     UBI: Add proof-of-concept CFI flash support
20862
20863     With this patch UBI can be used on CFI flash chips.
20864
20865     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20866     Signed-off-by: Stefan Roese <sr@denx.de>
20867
20868 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
20869 Author: Piotr Ziecik <kosmo@semihalf.com>
20870 Date:   Mon Nov 17 15:57:59 2008 +0100
20871
20872     mtd: Remove a printf() from add_mtd_device().
20873
20874     Remove a printf() from add_mtd_device(), which produces spurious output.
20875
20876     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20877     Signed-off-by: Stefan Roese <sr@denx.de>
20878
20879 commit 91809ed51d8327a8dbbf29aa98a091154c282171
20880 Author: Piotr Ziecik <kosmo@semihalf.com>
20881 Date:   Mon Nov 17 15:57:58 2008 +0100
20882
20883     cfi-mtd: Add cfi-mtd driver.
20884
20885     Add cfi-mtd driver, which exports CFI flash to MTD layer.
20886     This allows CFI flash devices to be used from MTD layer.
20887
20888     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
20889     option. Initialization is done by calling cfi_mtd_init() from
20890     flash_init().
20891
20892     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20893     Signed-off-by: Stefan Roese <sr@denx.de>
20894
20895 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
20896 Author: Piotr Ziecik <kosmo@semihalf.com>
20897 Date:   Mon Nov 17 15:49:32 2008 +0100
20898
20899     cfi_flash: Add interface for flash verbosity control
20900
20901     Add interface for flash verbosity control. It allows
20902     to disable output from low-level flash API. It is useful
20903     when calling these low-level functions from context other
20904     than flash commands (for example the MTD/CFI interface
20905     implmentation).
20906
20907     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20908     Signed-off-by: Stefan Roese <sr@denx.de>
20909
20910 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
20911 Author: Piotr Ziecik <kosmo@semihalf.com>
20912 Date:   Thu Nov 20 15:17:38 2008 +0100
20913
20914     cfi_flash: Export flash_sector_size() function.
20915
20916     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
20917     so that it can be used in the upcoming cfi-mtd driver.
20918
20919     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
20920     Signed-off-by: Stefan Roese <sr@denx.de>
20921
20922 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
20923 Author: Stefan Roese <sr@denx.de>
20924 Date:   Mon Nov 17 14:45:22 2008 +0100
20925
20926     cfi_flash: Make all flash access functions weak
20927
20928     This patch defines all flash access functions as weak so that
20929     they can be overridden by board specific versions.
20930
20931     This will be used by the upcoming VCTH board support where the NOR
20932     FLASH unfortunately can't be accessed memory-mapped. Special
20933     accessor functions are needed here.
20934
20935     To enable this weak functions you need to define
20936     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
20937     Otherwise the "old" default functions will be used resulting
20938     in smaller code.
20939
20940     Signed-off-by: Stefan Roese <sr@denx.de>
20941     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20942
20943 commit a5c4067017631d903e1afa6ad615f0ce19fea517
20944 Author: Stefan Roese <sr@denx.de>
20945 Date:   Mon Nov 24 08:31:16 2008 +0100
20946
20947     UBI: Change parsing of size in commands to default to hex
20948
20949     Currently the size parameters of the UBI commands (e.g. "ubi write") are
20950     decoded as decimal instead of hex as default. This patch now interprets
20951     all these values consistantly as hex, as all other standard U-Boot commands
20952     do.
20953
20954     Signed-off-by: Stefan Roese <sr@denx.de>
20955
20956 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
20957 Author: Stefan Roese <sr@denx.de>
20958 Date:   Fri Nov 21 13:06:06 2008 +0100
20959
20960     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
20961
20962     Signed-off-by: Stefan Roese <sr@denx.de>
20963
20964 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
20965 Author: Yuri Tikhonov <yur@emcraft.com>
20966 Date:   Fri Nov 14 16:19:19 2008 +0300
20967
20968     ppc4xx: katmai: Change default config
20969
20970      This patch enables support for EXT2, and increases the
20971     CONFIG_SYS_BOOTMAPSZ size for the default configuration
20972     of the katmai boards to use them as the RAID-reference
20973     AMCC setups.
20974
20975      EXT2 enabling allows one to boot kernels from the EXT2
20976     formatted Compact Flash cards.
20977
20978      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
20979     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
20980     the memory area with DTB file (which is placed at the
20981     end of the bootmap area) will turn out to be overlapped
20982     with the BSS segment of the 256KB kernel, and zeroed
20983     in early_init() of Linux.
20984
20985      Actually, increasing of the bootmap size could be done
20986     via setting of the bootm_size U-Boot variable, but it looks
20987     like the current U-Boot implementation have some bootm_size-
20988     related functionality lost. In many places through the U-Boot
20989     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
20990     (instead of trying to read the corresponding value from the
20991     environment). The same is truth for the boot_jump_linux()
20992     function in lib_ppc/bootm.c, where U-Boot transfers control
20993     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
20994     value to the booting kernel.
20995
20996     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20997     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
20998     Signed-off-by: Stefan Roese <sr@denx.de>
20999
21000 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
21001 Author: Dave Mitchell <dmitch71@gmail.com>
21002 Date:   Thu Nov 20 14:09:50 2008 -0600
21003
21004     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
21005
21006     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
21007     internal SRAM.
21008
21009     Adjusted internal SRAM initialization to match updated user
21010     manual recommendation.
21011
21012     OCM & ISRAM are now mapped as follows:
21013             physical        virtual         size
21014     ISRAM   0x4_0000_0000   0xE300_0000     256k
21015     OCM     0x4_0004_0000   0xE304_0000     64k
21016
21017     A single TLB was used for this mapping.
21018
21019     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
21020     Signed-off-by: Stefan Roese <sr@denx.de>
21021
21022 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
21023 Author: Dave Mitchell <dmitch71@gmail.com>
21024 Date:   Thu Nov 20 14:00:49 2008 -0600
21025
21026     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
21027
21028     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
21029     L2 cache DCRs from ppc440.h to this new header.
21030
21031     Also converted these DCR defines from lowercase to uppercase and
21032     modified referencing modules to use them.
21033
21034     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
21035     Signed-off-by: Stefan Roese <sr@denx.de>
21036
21037 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
21038 Author: Steven A. Falco <sfalco@harris.com>
21039 Date:   Thu Nov 20 14:37:57 2008 -0500
21040
21041     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
21042
21043     The definitions of bits in SDR_CFG are incorrect, and not used within
21044     U-Boot.  Therefore, they can be removed.
21045
21046     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
21047     and are unused, so they can be removed too.
21048
21049     A definition for SDR0_DDRCFG is added.
21050
21051     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21052     Signed-off-by: Stefan Roese <sr@denx.de>
21053
21054 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
21055 Author: Dirk Behme <dirk.behme@gmail.com>
21056 Date:   Mon Nov 10 20:15:25 2008 +0100
21057
21058     ARM: OMAP: Convert IO macros
21059
21060     Convert IO macros to readx/writex.
21061
21062     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
21063
21064 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
21065 Author: Ilko Iliev <iliev@ronetix.at>
21066 Date:   Sun Nov 9 15:53:14 2008 +0100
21067
21068     lib_arm: do_bootm_linux() - correct a small mistake
21069
21070     This patch corrects a small bug in the "if" condition:
21071     the parameter "flag" is 0 and the "if" condition is always true.
21072     The result is - the boom command doesn't start the kernel.
21073     Affected targets: all arm based.
21074
21075     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
21076
21077 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
21078 Author: Stelian Pop <stelian@popies.net>
21079 Date:   Sun Nov 9 00:14:46 2008 +0100
21080
21081     AT91: Enable PLLB for USB
21082
21083     At least some (old ?) versions of the AT91Bootstrap do not set up the
21084     PLLB correctly to 48 MHz in order to make USB host function correctly.
21085
21086     This patch sets up the PLLB to the same values Linux uses, and makes USB
21087     work ok on the following CPUs:
21088         - AT91CAP9
21089         - AT91SAM9260
21090         - AT91SAM9263
21091
21092     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
21093     the relevant AT91CAP9/AT91SAM9 atmel boards.
21094
21095     Signed-off-by: Stelian Pop <stelian@popies.net>
21096     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21097
21098 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
21099 Author: Stelian Pop <stelian@popies.net>
21100 Date:   Fri Nov 7 13:55:14 2008 +0100
21101
21102     AT91: Use AT91_CPU_CLOCK in displays
21103
21104     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
21105     speed in the LCD driver.
21106
21107     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
21108     corresponding board clocks.
21109
21110     Signed-off-by: Stelian Pop <stelian@popies.net>
21111
21112 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
21113 Author: Heiko Schocher <hs@denx.de>
21114 Date:   Thu Nov 20 09:57:47 2008 +0100
21115
21116     powerpc: 83xx: add support for the kmeter1 board
21117
21118     This patch adds support for the kmeter1 board from Keymile,
21119     based on a Freescale MPC8360 CPU.
21120
21121     - serial console on UART 1
21122     - 256 MB DDR2 RAM
21123     - 64 MB NOR Flash
21124     - Ethernet RMII Mode over UCC4
21125     - PHY SMSC LAN8700
21126
21127     Signed-off-by: Heiko Schocher <hs@denx.de>
21128     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21129
21130 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
21131 Author: Stefan Roese <sr@denx.de>
21132 Date:   Thu Nov 20 11:46:20 2008 +0100
21133
21134     ppc4xx: Clear all potentially pending exceptions in MCSR
21135
21136     This is needed on Canyonlands which still has an exception pending
21137     while running relocate_code(). This leads to a failure after trap_init()
21138     is moved to the top of board_init_r().
21139
21140     Signed-off-by: Stefan Roese <sr@denx.de>
21141
21142 commit facdad5f2602e899a01746916beddbf9e856b5ee
21143 Author: Heiko Schocher <hs@denx.de>
21144 Date:   Wed Nov 19 10:10:30 2008 +0100
21145
21146     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
21147
21148     Signed-off-by: Heiko Schocher <hs@denx.de>
21149     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21150
21151 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
21152 Author: Howard Gregory <Greg.Howard@freescale.com>
21153 Date:   Tue Nov 4 14:55:33 2008 +0800
21154
21155     mpc83xx: Improve the performance of DDR memory
21156
21157     modify the CAS timings. my understanding is that these
21158     settings decrease various wait times in the DDR interface.
21159     Because these wait times are in clock cycles, and the DDR
21160     clock on the 8315 RDB runs slower than on some other 83xx
21161     platforms, we can dial down these values without a problem,
21162     thereby decreasing the latency of memory a little.
21163
21164     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
21165     Signed-off-by: Dave Liu <daveliu@freescale.com>
21166     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21167
21168 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
21169 Author: Kyungmin Park <kyungmin.park@samsung.com>
21170 Date:   Fri Oct 24 14:55:33 2008 +0200
21171
21172     ARM: Add Apollon UBI support
21173
21174     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
21175     macro.
21176
21177     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21178     Signed-off-by: Stefan Roese <sr@denx.de>
21179
21180 commit 694a0b3f1c0accd0de94b89555155d69f8022824
21181 Author: Kyungmin Park <kyungmin.park@samsung.com>
21182 Date:   Wed Nov 19 11:47:05 2008 +0100
21183
21184     UBI: Add UBI command support
21185
21186     This patch adds these UBI commands:
21187
21188     ubi part [nand|onenand] [part] - Show or set current partition
21189     ubi info [l[ayout]] -Display volume and UBI layout information
21190     ubi create[vol] volume [size] [type] - Create volume name with size
21191     ubi write[vol] address volume size - Write volume from address with size
21192     ubi read[vol] address volume [size] - Read volume to address with size
21193     ubi remove[vol] volume - Remove volume
21194
21195     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21196     Signed-off-by: Stefan Roese <sr@denx.de>
21197
21198 commit 58be3a1056d88c6d05f3e914389282807e69923a
21199 Author: Kyungmin Park <kyungmin.park@samsung.com>
21200 Date:   Wed Nov 19 16:38:24 2008 +0100
21201
21202     UBI: Add basic UBI support to U-Boot (Part 8/8)
21203
21204     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21205     It's based on the Linux UBI version and basically has a "OS"
21206     translation wrapper that defines most Linux specific calls
21207     (spin_lock() etc.) into no-ops. Some source code parts have been
21208     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21209     this version with the Linux version and simplifies future UBI
21210     ports/bug-fixes from the Linux version.
21211
21212     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21213     Signed-off-by: Stefan Roese <sr@denx.de>
21214
21215 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
21216 Author: Kyungmin Park <kyungmin.park@samsung.com>
21217 Date:   Wed Nov 19 16:36:36 2008 +0100
21218
21219     UBI: Add basic UBI support to U-Boot (Part 7/8)
21220
21221     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21222     It's based on the Linux UBI version and basically has a "OS"
21223     translation wrapper that defines most Linux specific calls
21224     (spin_lock() etc.) into no-ops. Some source code parts have been
21225     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21226     this version with the Linux version and simplifies future UBI
21227     ports/bug-fixes from the Linux version.
21228
21229     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21230     Signed-off-by: Stefan Roese <sr@denx.de>
21231
21232 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
21233 Author: Kyungmin Park <kyungmin.park@samsung.com>
21234 Date:   Wed Nov 19 16:32:36 2008 +0100
21235
21236     UBI: Add basic UBI support to U-Boot (Part 6/8)
21237
21238     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21239     It's based on the Linux UBI version and basically has a "OS"
21240     translation wrapper that defines most Linux specific calls
21241     (spin_lock() etc.) into no-ops. Some source code parts have been
21242     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21243     this version with the Linux version and simplifies future UBI
21244     ports/bug-fixes from the Linux version.
21245
21246     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21247     Signed-off-by: Stefan Roese <sr@denx.de>
21248
21249 commit c91a719daa331b5856109313371e4ece5ec06d96
21250 Author: Kyungmin Park <kyungmin.park@samsung.com>
21251 Date:   Wed Nov 19 16:28:06 2008 +0100
21252
21253     UBI: Add basic UBI support to U-Boot (Part 5/8)
21254
21255     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21256     It's based on the Linux UBI version and basically has a "OS"
21257     translation wrapper that defines most Linux specific calls
21258     (spin_lock() etc.) into no-ops. Some source code parts have been
21259     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21260     this version with the Linux version and simplifies future UBI
21261     ports/bug-fixes from the Linux version.
21262
21263     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21264     Signed-off-by: Stefan Roese <sr@denx.de>
21265
21266 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
21267 Author: Kyungmin Park <kyungmin.park@samsung.com>
21268 Date:   Wed Nov 19 16:27:23 2008 +0100
21269
21270     UBI: Add basic UBI support to U-Boot (Part 4/8)
21271
21272     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21273     It's based on the Linux UBI version and basically has a "OS"
21274     translation wrapper that defines most Linux specific calls
21275     (spin_lock() etc.) into no-ops. Some source code parts have been
21276     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21277     this version with the Linux version and simplifies future UBI
21278     ports/bug-fixes from the Linux version.
21279
21280     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21281     Signed-off-by: Stefan Roese <sr@denx.de>
21282
21283 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
21284 Author: Kyungmin Park <kyungmin.park@samsung.com>
21285 Date:   Wed Nov 19 16:26:54 2008 +0100
21286
21287     UBI: Add basic UBI support to U-Boot (Part 3/8)
21288
21289     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21290     It's based on the Linux UBI version and basically has a "OS"
21291     translation wrapper that defines most Linux specific calls
21292     (spin_lock() etc.) into no-ops. Some source code parts have been
21293     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21294     this version with the Linux version and simplifies future UBI
21295     ports/bug-fixes from the Linux version.
21296
21297     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21298     Signed-off-by: Stefan Roese <sr@denx.de>
21299
21300 commit 961df83361aff9a14f226214224eb8a06e05ba24
21301 Author: Kyungmin Park <kyungmin.park@samsung.com>
21302 Date:   Wed Nov 19 16:25:44 2008 +0100
21303
21304     UBI: Add basic UBI support to U-Boot (Part 2/8)
21305
21306     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21307     It's based on the Linux UBI version and basically has a "OS"
21308     translation wrapper that defines most Linux specific calls
21309     (spin_lock() etc.) into no-ops. Some source code parts have been
21310     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21311     this version with the Linux version and simplifies future UBI
21312     ports/bug-fixes from the Linux version.
21313
21314     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21315     Signed-off-by: Stefan Roese <sr@denx.de>
21316
21317 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
21318 Author: Kyungmin Park <kyungmin.park@samsung.com>
21319 Date:   Wed Nov 19 16:23:06 2008 +0100
21320
21321     UBI: Add basic UBI support to U-Boot (Part 1/8)
21322
21323     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
21324     It's based on the Linux UBI version and basically has a "OS"
21325     translation wrapper that defines most Linux specific calls
21326     (spin_lock() etc.) into no-ops. Some source code parts have been
21327     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
21328     this version with the Linux version and simplifies future UBI
21329     ports/bug-fixes from the Linux version.
21330
21331     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21332     Signed-off-by: Stefan Roese <sr@denx.de>
21333
21334 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
21335 Author: Kyungmin Park <kyungmin.park@samsung.com>
21336 Date:   Wed Nov 19 16:20:36 2008 +0100
21337
21338     MTD: Add MTD paritioning infrastructure
21339
21340     This MTD part infrastructure will be used by the upcoming
21341     UBI support.
21342
21343     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21344     Signed-off-by: Stefan Roese <sr@denx.de>
21345
21346 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
21347 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
21348 Date:   Thu Oct 16 22:54:03 2008 +0530
21349
21350     Align end of bss by 4 bytes
21351
21352     Most of the bss initialization loop increments 4 bytes
21353     at a time. And the loop end is checked for an 'equal'
21354     condition. Make the bss end address aligned by 4, so
21355     that the loop will end as expected.
21356
21357     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
21358     Signed-off-by: Wolfgang Denk <wd@denx.de>
21359
21360 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
21361 Author: Becky Bruce <becky.bruce@freescale.com>
21362 Date:   Mon Nov 10 19:45:35 2008 -0600
21363
21364     mpc8641: fix address-cells default in old .dts detection
21365
21366     address-cells defaults to 2, not 1; so in the unlikely
21367     event that it isn't specified, this patch is required
21368     for correct operation.
21369
21370     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21371
21372 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
21373 Author: Becky Bruce <becky.bruce@freescale.com>
21374 Date:   Fri Oct 31 17:14:39 2008 -0500
21375
21376     lib_ppc: Move trap_init to occur earlier
21377
21378     Doing trap_init immediately once we're running from RAM
21379     means we're no longer dependent on the physical location of
21380     the flash on non-BookE platforms. Before trap_init, those
21381     platforms switch to real mode and go to 0xfff00100 on exception.
21382     After the switch, they go to 0x00000100  This makes it easier to
21383     move the flash location.
21384
21385     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21386
21387 commit d52082b12c6e545705a19433a2f4142526536189
21388 Author: Becky Bruce <becky.bruce@freescale.com>
21389 Date:   Fri Nov 7 13:46:19 2008 -0600
21390
21391     mpc8641: Try to detect old .dts files
21392
21393     Since we've changed the memory map of the board, be nice and
21394     add some checking to try to catch out-of-date .dts files.  We do
21395     this by checking the CCSRBAR location in the .dts and comparing
21396     it to the CCSRBAR location in u-boot.  If they don't match, a
21397     warning msg is printed.  This isn't foolproof, but it's simple and
21398     will catch most of the cases where an out-of-date .dts is present,
21399     including all of the cases where a new u-boot is used with an old
21400     standard MPC8641 .dts file as supplied with Linux.
21401
21402     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21403
21404 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
21405 Author: Becky Bruce <becky.bruce@freescale.com>
21406 Date:   Thu Nov 6 13:04:09 2008 -0600
21407
21408     toplevel Makefile: Add MPC8641HPCN_36BIT target
21409
21410     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
21411
21412     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21413
21414 commit 3111d32c494e8251b90917447796a7206b757e1e
21415 Author: Becky Bruce <becky.bruce@freescale.com>
21416 Date:   Thu Nov 6 17:37:35 2008 -0600
21417
21418     mpc8641: Support 36-bit physical addressing
21419
21420     This patch creates a memory map with all the devices
21421     in 36-bit physical space, in addition to the 32-bit map.
21422     The CCSR relocation is moved (again, sorry) to
21423     allow for the physical address to be 36 bits - this
21424     requires translation to be enabled.  With 36-bit physical
21425     addressing enabled, we are no longer running with VA=PA
21426     translations.  This means we have to distinguish between
21427     the two in the config file.  The existing region name is
21428     used to indicate the virtual address, and a _PHYS variety
21429     is created to represent the physical address.
21430
21431     Large physical addressing is not enabled by default.
21432     Set CONFIG_PHYS_64BIT in the config file to turn this on.
21433
21434     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21435
21436 commit c759a01a0022de9378a3a761f49786f87684c916
21437 Author: Becky Bruce <becky.bruce@freescale.com>
21438 Date:   Thu Nov 6 17:36:04 2008 -0600
21439
21440     mpc8641: Change 32-bit memory map
21441
21442     The memory map on the 8641hpcn is modified to look more like
21443     the 85xx boards; this is a step towards a more standardized
21444     layout going forward. As part of this change, we now relocate
21445     the flash.
21446
21447     The regions for some of the mappings were far larger than they
21448     needed to be.  I have reduced the mappings to match the
21449     actual sizes supported by the hardware.
21450
21451     In addition I have removed the comments at the head
21452     of the BAT blocks in the config file, rather than updating
21453     them.  These get horribly out of date, and it's a simple
21454     matter to look at the defines to see what they are set to
21455     since everything is right here in the same file.
21456
21457     Documentation has been changed to reflect the new map, as this
21458     change is user visible, and affects the OS which runs post-uboot.
21459
21460     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21461
21462 commit bf9a8c34309ed9276258295db9e9212aabb2531a
21463 Author: Becky Bruce <becky.bruce@freescale.com>
21464 Date:   Wed Nov 5 14:55:35 2008 -0600
21465
21466     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
21467
21468     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
21469     of the bootpage in flash.   Use this to create an early mapping
21470     definition for the FLASH, and change the early_bats code to use this.
21471
21472     This  change facilitates the relocation of the flash since the early
21473     mappings are no longer tied to the final location of the flash.
21474
21475     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21476
21477 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
21478 Author: Becky Bruce <becky.bruce@freescale.com>
21479 Date:   Wed Nov 5 14:55:34 2008 -0600
21480
21481     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
21482
21483     Using a mtmsr/blr means that you have to be executing at the
21484     same virtual address once you enable translation.  This is
21485     unnecessarily restrictive, and is not really how this is
21486     usually done.  Change it to use the more common mtspr SRR0/SRR1
21487     and rfi method.
21488
21489     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21490
21491 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
21492 Author: Becky Bruce <becky.bruce@freescale.com>
21493 Date:   Wed Nov 5 14:55:33 2008 -0600
21494
21495     mpc8641: make DIAG_ADDR == FLASH_BASE
21496
21497     Currently, that's what it is, but it's hardcoded.
21498
21499     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21500
21501 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
21502 Author: Becky Bruce <becky.bruce@freescale.com>
21503 Date:   Wed Nov 5 14:55:32 2008 -0600
21504
21505     mpc8641: Drop imaginary second flash bank, map 8MB
21506
21507     There's a lot of setup and foo for the second flash
21508     bank.  The problem is, this board doesn't actually have one.
21509     Clean this up.  Also, the flash is 8M in size.  Get rid
21510     of the confusing aliased overmapping, and just map 8M.
21511
21512     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21513
21514 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
21515 Author: Becky Bruce <becky.bruce@freescale.com>
21516 Date:   Wed Nov 5 14:55:31 2008 -0600
21517
21518     mpc8641: only define CONFIG_ENV_SIZE once
21519
21520     It's currently defined twice inside in an if/else block, but
21521     both halves set the same value.  Move the define outside
21522     the if.
21523
21524     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21525
21526 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
21527 Author: Becky Bruce <becky.bruce@freescale.com>
21528 Date:   Wed Nov 5 14:55:30 2008 -0600
21529
21530     mpc86xx: Move setup_bats into cpu_init_f
21531
21532     In order to later allow for a physical relocation of the
21533     flash, setup_bats, which sets up the final BAT mapping
21534     for the board, needs to happen *after* init_laws().
21535     Otherwise, there will be no window programmed for the flash
21536     at the new physical location at the point when we change
21537     the mmu translation.
21538
21539     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21540
21541 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
21542 Author: Becky Bruce <becky.bruce@freescale.com>
21543 Date:   Wed Nov 5 14:55:29 2008 -0600
21544
21545     mpc8641: Remove extra "0" from BR2 define
21546
21547     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21548
21549 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
21550 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21551 Date:   Thu Oct 23 09:08:18 2008 -0400
21552
21553     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
21554
21555     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
21556     This adds support for PHY-less MAC connections to the UEC.
21557
21558     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21559     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21560
21561 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
21562 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21563 Date:   Thu Oct 23 16:27:24 2008 +0000
21564
21565     ColdFire: Add mii driver in drivers/net
21566
21567     All CF platforms' mii.c are consolidated into one
21568
21569     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21570     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21571
21572 commit 25a859066b3af1070eb69f12022113c0a91bd813
21573 Author: Ben Warren <biggerbadderben@gmail.com>
21574 Date:   Mon Oct 27 23:53:17 2008 -0700
21575
21576     Moved initialization of PPC4xx EMAC to cpu_eth_init()
21577
21578     Removed initialization of the driver from net/eth.c
21579
21580     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21581     Acked-by: Stefan Roese <sr@denx.de>
21582
21583 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
21584 Author: Ben Warren <biggerbadderben@gmail.com>
21585 Date:   Sun Nov 9 21:29:23 2008 -0800
21586
21587     Moved PPC4xx EMAC driver to drivers/net
21588
21589     Also changed path in all linker scripts that reference this driver
21590
21591     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21592     Acked-by: Stefan Roese <sr@denx.de>
21593
21594 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
21595 Author: Ben Warren <biggerbadderben@gmail.com>
21596 Date:   Mon Oct 27 23:50:15 2008 -0700
21597
21598     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
21599
21600     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
21601
21602     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21603     Acked-by: Stefan Roese <sr@denx.de>
21604
21605 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
21606 Author: Ben Warren <biggerbadderben@gmail.com>
21607 Date:   Thu Oct 23 22:02:49 2008 -0700
21608
21609     Moved initialization of MPC8XX SCC to cpu_eth_init()
21610
21611     Removed initialization of the driver from net/eth.c
21612
21613     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21614
21615 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
21616 Author: Ben Warren <biggerbadderben@gmail.com>
21617 Date:   Wed Oct 22 23:47:51 2008 -0700
21618
21619     Moved initialization of MPC8220 FEC to cpu_eth_init()
21620
21621     Removed initialization of the driver from net/eth.c
21622
21623     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21624
21625 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
21626 Author: Ben Warren <biggerbadderben@gmail.com>
21627 Date:   Wed Oct 22 23:32:48 2008 -0700
21628
21629     Moved initialization of QE Ethernet controller to cpu_eth_init()
21630
21631     Removed initialization of the driver from net/eth.c
21632
21633     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21634
21635 commit 3456a148276d5494b53ee40242efb6462d163504
21636 Author: Ben Warren <biggerbadderben@gmail.com>
21637 Date:   Wed Oct 22 23:20:29 2008 -0700
21638
21639     Moved initialization of FCC Ethernet controller to cpu_eth_init
21640
21641     Affected boards:
21642         Several MPC8xx boards
21643         Several MPC8260/MPC8272 boards
21644         Several MPC85xx boards
21645
21646     Removed initialization of the driver from net/eth.c
21647
21648     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21649
21650 commit 62e15b497f5c6334c059512678c8db7940ae4c61
21651 Author: Ben Warren <biggerbadderben@gmail.com>
21652 Date:   Thu Oct 30 22:15:35 2008 -0700
21653
21654     Fix typo in cpu/mpc85xx/cpu.c
21655
21656     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
21657
21658     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21659
21660 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
21661 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21662 Date:   Sun Oct 19 12:08:50 2008 +0900
21663
21664     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
21665
21666     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
21667     as a part of ongoing eth_initialize cleanup work.  The function ret value
21668     is also fixed as it should be negative on fail.
21669
21670     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21671     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21672
21673 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
21674 Author: Ben Warren <biggerbadderben@gmail.com>
21675 Date:   Fri Sep 5 01:55:22 2008 -0400
21676
21677     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
21678
21679     Also, removed the driver initialization from net/eth.c
21680
21681     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21682
21683 commit f2a7806fc23e82d30c8548911369e0c530607354
21684 Author: Clive Stubbings <uboot@xentech.co.uk>
21685 Date:   Mon Oct 27 15:05:00 2008 +0000
21686
21687     xilinx_emaclite buffer overrun
21688
21689     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
21690     PKTSIZE_ALIGN bytes long.
21691
21692     Acked-by: Michal Simek <monstr@monstr.eu>
21693
21694     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21695
21696 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
21697 Author: richardretanubun <richardretanubun@ruggedcom.com>
21698 Date:   Fri Sep 26 08:59:12 2008 -0400
21699
21700     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
21701
21702     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
21703     This patch makes these function use the devname argument that is passed in to
21704     allow access to the phy registers of other devices in devlist[].
21705
21706     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
21707
21708     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21709
21710 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
21711 Author: richardretanubun <richardretanubun@ruggedcom.com>
21712 Date:   Mon Oct 6 15:31:43 2008 -0400
21713
21714     Adds two more ethernet interface to 83xx
21715
21716     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
21717     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
21718     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21719
21720 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
21721 Author: Stelian Pop <stelian@popies.net>
21722 Date:   Fri Nov 7 13:54:31 2008 +0100
21723
21724     AT91: Replace AT91_BASE_EMAC by the board specific values.
21725
21726     AT91_BASE_EMAC is never used outside the board specific files,
21727     so replace its usage by the board specific AT91xxx_BASE_EMAC.
21728
21729     Signed-off-by: Stelian Pop <stelian@popies.net>
21730     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21731
21732 commit c91e17affa175ce06afa89b04752301eb4a61666
21733 Author: Stelian Pop <stelian@popies.net>
21734 Date:   Fri Nov 7 12:09:21 2008 +0100
21735
21736     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
21737
21738     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
21739     Since they are never used outside the board specific files, they can
21740     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
21741     AT91xxx_ID_US2.
21742
21743     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
21744
21745     Signed-off-by: Stelian Pop <stelian@popies.net>
21746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21747
21748 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
21749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21750 Date:   Sat Nov 1 10:47:59 2008 +0100
21751
21752     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
21753
21754     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21755
21756 commit 1079432e04ccf71aa3684181186182cd63512f19
21757 Author: Sergey Lapin <slapin@ossfans.org>
21758 Date:   Fri Oct 31 12:28:43 2008 +0100
21759
21760     Custom AFEB9260 board support
21761
21762     This patch provides support for AFEB9260 board, a product of
21763     OpenSource hardware and software. Some commertial projects
21764     are made with this design. A board is basically AT91SAM9260-EK
21765     with some modifications and different peripherals and different
21766     parts used. Main purpose of this project is to gain experience in
21767     hardware design.
21768     More info: http://groups.google.com/group/arm9fpga-evolution-board
21769     (In Russian only, sorry).
21770     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
21771
21772     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
21773
21774 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
21775 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
21776 Date:   Tue Oct 21 13:17:16 2008 +0900
21777
21778     Change to use "do_div" macro
21779
21780     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
21781
21782 commit e352495318d8056a00faa21b633b3e4374bfbf52
21783 Author: Roman Mashak <romez777@gmail.com>
21784 Date:   Wed Oct 22 16:00:26 2008 -0400
21785
21786     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
21787
21788     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
21789     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
21790
21791     Signed-off-by: Roman Mashak <romez777@gmail.com>
21792
21793 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
21794 Author: Roman Mashak <romez777@gmail.com>
21795 Date:   Tue Oct 21 03:01:41 2008 -0700
21796
21797     ARM/Versatile port: Removed unused functions
21798
21799     Removal of never used functions.
21800
21801     Signed-off-by: Roman Mashak <romez777@gmail.com>
21802
21803 commit 1266df887781c779deaf6d05eea2ef90a470cb34
21804 Author: Becky Bruce <becky.bruce@freescale.com>
21805 Date:   Mon Nov 3 15:44:01 2008 -0600
21806
21807     powerpc: change 86xx SMP boot method
21808
21809     We put the bootpg for the secondary cpus into memory and use
21810     BPTR to get to it.  This is a step towards converting to the
21811     ePAPR boot methodology.  Also, the code is written to
21812     deal properly with more than 4GB of RAM.
21813
21814     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21815
21816 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
21817 Author: Becky Bruce <becky.bruce@freescale.com>
21818 Date:   Fri Oct 31 17:13:49 2008 -0500
21819
21820     8641HPCN: Config file cleanup
21821
21822     There are several items in the config file that were hardcoded
21823     but that should really be based on other config options, since
21824     the regions are contiguous and depend on being so.  This cleans
21825     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
21826     addresses into the proper format for BR registers.
21827
21828     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21829
21830 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
21831 Author: Becky Bruce <becky.bruce@freescale.com>
21832 Date:   Fri Oct 31 17:13:32 2008 -0500
21833
21834     86xx: Make dram_size a phys_size_t
21835
21836     It's currently a long and should be phys_size_t.
21837
21838     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21839
21840 commit 104992fc541302a6bac74448e01e7fdad20abca0
21841 Author: Becky Bruce <becky.bruce@freescale.com>
21842 Date:   Sun Nov 2 18:19:32 2008 -0600
21843
21844     powerpc 86xx: Handle CCSR relocation earlier
21845
21846     Currently, the CCSR gets relocated while translation is
21847     enabled, meaning we need 2 BAT translations to get to both the
21848     old location and the new location.  Also, the DEFAULT
21849     CCSR location has a dependency on the BAT that maps the
21850     FLASH region.  Moving the relocation removes this unnecessary
21851     dependency. This makes it easier and more intutive to
21852     modify the board's memory map.
21853
21854     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
21855     BAT for CCSR space.
21856
21857     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21858
21859 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
21860 Author: Becky Bruce <becky.bruce@freescale.com>
21861 Date:   Fri Oct 31 17:14:14 2008 -0500
21862
21863     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
21864
21865     You can't actually have both, and with some coming changes to
21866     change the memory map for the board and support 36-bit physical,
21867     we need the extra BAT that is being consumed by having both.
21868
21869     I also make non-PCI configs build cleanly, for the sake of sanity.
21870
21871     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21872
21873 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
21874 Author: Becky Bruce <becky.bruce@freescale.com>
21875 Date:   Fri Oct 31 17:14:00 2008 -0500
21876
21877     mpc8641: Stop supporting non-PCI_PNP configs
21878
21879     We don't actually ever do this, remove the code so we
21880     can stop maintaining it.
21881
21882     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21883
21884 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
21885 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21886 Date:   Fri Oct 24 12:59:12 2008 +0000
21887
21888     ColdFire: Fix M5329EVB and M5373EVB nand issue
21889
21890     Fix compilation issue caused by a few mismatches.
21891     Provide proper nand chip select enable/disable in
21892     nand_hwcontrol() rather than in board_nand_init()
21893     just enable once. Remove redundant local nand driver
21894     functions - nand_read_byte(), nand_write_byte() and
21895     nand_dev_ready() to use common nand driver.
21896
21897     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21898
21899 commit 1b2708442224a551a0b865b52710306333888932
21900 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21901 Date:   Wed Oct 22 11:55:30 2008 +0000
21902
21903     ColdFire: Fix compilation error
21904
21905     The error was caused by the change for strmhz() in cpu.c.
21906     A few of them were one extra close parenthesis.
21907
21908     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21909
21910 commit 536e7dac16769954915a484e682a2efb28699133
21911 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21912 Date:   Wed Oct 22 11:38:21 2008 +0000
21913
21914     ColdFire: Add MCF5301x CPU and M53017EVB support
21915
21916     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21917
21918 commit a21d0c2cc9add8894d971ab791f4032f077db817
21919 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21920 Date:   Tue Oct 21 15:37:02 2008 +0000
21921
21922     ColdFire: Add SBF support for M52277EVB
21923
21924     Add serial boot support
21925
21926     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21927
21928 commit b202816c61042c183fe67d097a5893b0f2dafba0
21929 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21930 Date:   Tue Oct 21 14:19:26 2008 +0000
21931
21932     ColdFire: Use CFI driver for M5272C3
21933
21934     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21935
21936 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
21937 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21938 Date:   Tue Oct 21 13:47:54 2008 +0000
21939
21940     ColdFire: Relocate FEC's GPIO and mii functions protocols
21941
21942     Place FEC pin assignments in cpu_init.c from platform's
21943     mii.c
21944
21945     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21946
21947 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
21948 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21949 Date:   Tue Oct 21 12:15:44 2008 +0000
21950
21951     ColdFire: Remove platforms mii.c file
21952
21953     Will use mcfmii.c driver in drivers/net rather than
21954     keep creating new mii.c for each future platform.
21955     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
21956     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
21957     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
21958     mii.c
21959
21960     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21961
21962 commit 012522fef3b382469125beb46a315ab4dee02fb0
21963 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21964 Date:   Tue Oct 21 10:03:07 2008 +0000
21965
21966     ColdFire: Modules header files cleanup
21967
21968     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
21969     MDHA, SKHA, INTC, and FlexBus structures and
21970     definitions in immap_5xxx.h to more unify modules
21971     header files. Append DSPI support for m547x_8x.
21972     SSI cleanup. Remove USB Host structure from immap_539.h.
21973     Apply changes to use FlexBus structures in mcf52x2's
21974     cpu_init.c and platform configuration files.
21975
21976     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21977
21978 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
21979 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21980 Date:   Tue Oct 21 08:52:36 2008 +0000
21981
21982     ColdFire: Remove linker file
21983
21984     Each different build for M54455EVB and M5235EVB will
21985     create a u-boot.lds linker file. It is redundant to
21986     keep the u-boot.lds
21987
21988     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21989
21990 commit 0829323073c505556ed5f5073f91adb504584d45
21991 Author: Peter Tyser <ptyser@xes-inc.com>
21992 Date:   Fri Oct 31 11:26:44 2008 -0500
21993
21994     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
21995
21996     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21997
21998 commit a80b21d5127583171d6e9bc7f722947641898012
21999 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22000 Date:   Fri Oct 31 12:12:12 2008 +0100
22001
22002     common/Makefile: create others group for non core, environment and command files
22003
22004     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22005
22006 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
22007 Author: Wolfgang Denk <wd@denx.de>
22008 Date:   Fri Oct 31 01:13:37 2008 +0100
22009
22010     TQM8260: use CFI flash driver instead of custom driver.
22011
22012     Signed-off-by: Wolfgang Denk <wd@denx.de>
22013
22014 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
22015 Author: Andy Fleming <afleming@freescale.com>
22016 Date:   Thu Oct 30 17:35:30 2008 -0500
22017
22018     Consolidate MAX/MIN definitions
22019
22020     There were several, now there is one (two if you count the lower-case
22021     versions).
22022
22023     Signed-off-by: Andy Fleming <afleming@freescale.com>
22024
22025 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
22026 Author: Heiko Schocher <hs@denx.de>
22027 Date:   Thu Oct 30 09:23:09 2008 +0100
22028
22029     mgsuvd: remove unused defines in config file.
22030
22031     Signed-off-by: Heiko Schocher <hs@denx.de>
22032
22033 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
22034 Author: Wolfgang Denk <wd@denx.de>
22035 Date:   Sun Nov 2 16:14:22 2008 +0100
22036
22037     Coding Style cleanup, update CHANGELOG
22038
22039     Signed-off-by: Wolfgang Denk <wd@denx.de>
22040
22041 commit a47f957ab523019992fdef857af01bd71c58a4da
22042 Author: Alessandro Rubini <rubini-list@gnudd.com>
22043 Date:   Fri Oct 31 22:33:21 2008 +0100
22044
22045     NAND: Allow NAND and OneNAND to coexist
22046
22047     This removes in nand.h code that is verbatim duplicated from bbm.h,
22048     including directly bbm.h in nand.h. The previous state of affairs
22049     prevented compiling code for a board hosting both NAND and OneNAND chips.
22050
22051     Reported-by: Scott Wood <scottwood@freescale.com>
22052     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22053     Signed-off-by: Scott Wood <scottwood@freescale.com>
22054
22055 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
22056 Author: Scott Wood <scottwood@freescale.com>
22057 Date:   Fri Oct 31 13:51:12 2008 -0500
22058
22059     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
22060
22061     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
22062     Signed-off-by: Scott Wood <scottwood@freescale.com>
22063
22064 commit c57fc28947e248fb03c49a28b467686299895055
22065 Author: Jason Jin <Jason.Jin@freescale.com>
22066 Date:   Fri Oct 31 05:07:04 2008 -0500
22067
22068     NAND: Add NAND support for MPC8536DS board
22069
22070     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
22071     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
22072     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
22073
22074     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
22075     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22076     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22077
22078 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
22079 Author: Haiying Wang <Haiying.Wang@freescale.com>
22080 Date:   Fri Oct 31 05:06:14 2008 -0500
22081
22082     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
22083
22084     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
22085
22086     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22087     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22088
22089 commit 51b572a801be57790fe26adaa530210e7fba59cc
22090 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22091 Date:   Fri Oct 24 10:49:48 2008 +0900
22092
22093     sh: rsk7203: Moved rsk7203 board to board/renesas
22094
22095     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22096
22097 commit 58453b00b3ebb26aaa901210023f99504a90bb00
22098 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22099 Date:   Fri Oct 24 10:48:31 2008 +0900
22100
22101     sh: MigoR: Moved MigoR board to board/renesas
22102
22103     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22104
22105 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
22106 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22107 Date:   Fri Oct 24 10:39:44 2008 +0900
22108
22109     sh: r2dplus: Moved r2dplus board to board/renesas
22110
22111     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22112
22113 commit 78385bf2359d828184d0b3649f7ae6b933420000
22114 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22115 Date:   Fri Oct 24 10:36:13 2008 +0900
22116
22117     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
22118
22119     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22120
22121 commit c6525d459c350bfc246ea7826456af77e1e314eb
22122 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22123 Date:   Fri Oct 24 10:35:19 2008 +0900
22124
22125     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
22126
22127     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22128
22129 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
22130 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22131 Date:   Fri Oct 24 10:34:21 2008 +0900
22132
22133     sh: r7780mp: Moved r7780mp board to board/renesas
22134
22135     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22136
22137 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
22138 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22139 Date:   Fri Oct 24 10:32:14 2008 +0900
22140
22141     sh: ap325rxa: Moved ap325rxa board to board/renesas
22142
22143     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22144
22145 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
22146 Author: Wolfgang Denk <wd@xpert.denx.de>
22147 Date:   Fri Oct 31 01:12:28 2008 +0100
22148
22149     CFI Driver: Fix "flash not ready" problem
22150
22151     This patch fixes a problem on systems where the NOR flash is attached
22152     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
22153     on the assumption that the same flash address is read twice without
22154     any other interjacent flash accesses.  However, on 32 bit systems the
22155     function flash_read64() [as currently implemented] does not perform
22156     an atomic 64 bit read - instead, this is broken down into two 32 bit
22157     read accesses on addresses "addr" and "addr + 4".  So instead of
22158     reading a 64 bit value twice from "addr", we see a sequence of 4 32
22159     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
22160     consequence is that flash_toggle() fails to work.
22161
22162     This patch implements a simple, but somewhat ugly solution, as it
22163     avoids the use of flash_read64() in this critical place (by breaking
22164     it down manually into 32 bit read operations) instead of rewriting
22165     flash_read64() such to perform atomic 64 bit reads as one could
22166     expect.  However, such a rewrite would require the use of floating
22167     point load operations, which becomes pretty complex:
22168
22169         save MSR;
22170         set Floating Point Enable bit in MSR;
22171         use "lfd" instruction to perform atomic 64 bit read;
22172         use "stfd" to store value to temporary variable on stack;
22173         load u64 value from temporary variable;
22174         restore saved MSR;
22175         return u64 value;
22176
22177     The benefit-cost ratio of such an implementation was considered too
22178     bad to actually attempt this, especially as we can expect that such
22179     an implementation would not only have a bigger memory footprint but
22180     also cause a performance degradation.
22181
22182     Signed-off-by: Wolfgang Denk <wd@denx.de>
22183     Signed-off-by: Stefan Roese <sr@denx.de>
22184
22185 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
22186 Author: Stefan Roese <sr@denx.de>
22187 Date:   Fri Oct 31 10:48:08 2008 +0100
22188
22189     ppc4xx: Fix spelling error in MAINTAINERS file
22190
22191     Signed-off-by: Stefan Roese <sr@denx.de>
22192
22193 commit be270798900b75ad9c47c7b79c72f70441196c56
22194 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22195 Date:   Tue Oct 28 13:37:00 2008 +0100
22196
22197     ppc4xx: Update PMC440 board support
22198
22199     This patch brings PMC440 board support up to date:
22200
22201     - fix GPIO configuration
22202     - add misc_init_f()
22203     - use better values for usbact variable
22204     - fix USB 2.0 phy reset sequence
22205     - shrink BAR2 to save PCI address space
22206     - add FDT support
22207
22208     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22209     Signed-off-by: Stefan Roese <sr@denx.de>
22210
22211 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
22212 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22213 Date:   Tue Oct 28 13:36:59 2008 +0100
22214
22215     ppc4xx: Fix PMC440 BSP commands
22216
22217     This patch fixes the PMC440 BSP commands painit and selfreset
22218
22219     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22220     Signed-off-by: Stefan Roese <sr@denx.de>
22221
22222 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
22223 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22224 Date:   Tue Oct 28 13:36:58 2008 +0100
22225
22226     ppc4xx: Update PMC440 board configuration
22227
22228     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22229     Signed-off-by: Stefan Roese <sr@denx.de>
22230
22231 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
22232 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22233 Date:   Tue Oct 28 13:36:57 2008 +0100
22234
22235     ppc4xx: Fix esd loadpci command
22236
22237     This patch fixes esd's loadpci command when not all
22238     memory on adapter boards is accessable via PCI.
22239
22240     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22241     Signed-off-by: Stefan Roese <sr@denx.de>
22242
22243 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
22244 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22245 Date:   Tue Oct 28 13:36:56 2008 +0100
22246
22247     ppc4xx: Clean up PMC440 header
22248
22249     -Codingstyle cleanup
22250     -Remove unused GPIO define
22251
22252     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22253     Signed-off-by: Stefan Roese <sr@denx.de>
22254
22255 commit 295133258a44f97a57fb2ec339aecfda11f4db95
22256 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22257 Date:   Tue Oct 28 13:36:55 2008 +0100
22258
22259     ppc4xx: Handle other board variant in PMC440 FPGA code
22260
22261     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22262     Signed-off-by: Stefan Roese <sr@denx.de>
22263
22264 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
22265 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22266 Date:   Mon Oct 27 12:35:59 2008 +0100
22267
22268     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
22269
22270     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
22271     config files of both infrastuctures
22272
22273     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22274     Signed-off-by: Stefan Roese <sr@denx.de>
22275
22276 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
22277 Author: Stefan Roese <sr@denx.de>
22278 Date:   Sat Oct 25 06:45:31 2008 +0200
22279
22280     ppc4xx: Correctly configure the GPIO pin muxing on Arches
22281
22282     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
22283     pin multiplexing correctly
22284
22285     Signed-off-by: Stefan Roese <sr@denx.de>
22286
22287 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
22288 Author: Bartlomiej Sieka <tur@semihalf.com>
22289 Date:   Thu Oct 30 23:22:04 2008 +0100
22290
22291     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
22292
22293     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22294
22295 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
22296 Author: David Gibson <david@gibson.dropbear.id.au>
22297 Date:   Wed Oct 29 23:27:45 2008 -0500
22298
22299     libfdt: Fix bug in fdt_subnode_offset_namelen()
22300
22301     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
22302     which causes it to keep searching after it's finished the subnodes of
22303     the given parent, and into the subnodes of siblings of the original
22304     node which come after it in the tree.
22305
22306     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
22307     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22308
22309 commit f242a08871839eac081ba5b599af979f3a148a0d
22310 Author: Peter Korsgaard <jacmet@sunsite.dk>
22311 Date:   Tue Oct 28 08:26:52 2008 +0100
22312
22313     fdt_resize(): ensure minimum padding
22314
22315     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
22316     (16 bytes), so make sure that fdt_resize at least adds that much
22317     padding, no matter what the location or size of the fdt is.
22318
22319     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22320     Acked-by: Andy Fleming <afleming@freescale.com>
22321
22322 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
22323 Author: Dave Liu <daveliu@freescale.com>
22324 Date:   Thu Oct 23 21:59:35 2008 +0800
22325
22326     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
22327
22328     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
22329
22330     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
22331
22332     This is needed in unlock_ram_in_cache() because it is called from C and
22333     will corrupt the small data area anchor that is kept in R2.
22334
22335     lock_ram_in_cache() is modified similarly as good coding practice, but
22336     is not called from C.
22337
22338     Signed-off-by: Nick Spence <nick.spence@freescale.com>
22339
22340     also, the r2 is used as global data pointer.
22341
22342     Signed-off-by: Dave Liu <daveliu@freescale.com>
22343
22344 commit e053ab1903ccae6048ef759025b9f675bba91450
22345 Author: Scott Wood <scottwood@freescale.com>
22346 Date:   Tue Oct 28 11:45:04 2008 -0500
22347
22348     mpc83xx pci: Round up memory size in inbound window.
22349
22350     The current calculation will fail to cover all memory if
22351     its size is not a power of two.
22352
22353     Signed-off-by: Scott Wood <scottwood@freescale.com>
22354     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22355
22356 commit 1c671977dc81359628be27ac99c174e76e8069ba
22357 Author: Dave Liu <daveliu@freescale.com>
22358 Date:   Thu Oct 23 21:19:13 2008 +0800
22359
22360     86xx: remove the unused definition
22361
22362     Signed-off-by: Dave Liu <daveliu@freescale.com>
22363
22364 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
22365 Author: Dave Liu <daveliu@freescale.com>
22366 Date:   Tue Oct 28 17:47:49 2008 +0800
22367
22368     86xx: remove the redundant r2 global data pointer save
22369
22370     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
22371     the another global data pointer save, but in fact the
22372     global data pointer will be initialized in the board_init_r,
22373     so remove it such as the 85xx/83xx family.
22374
22375     Signed-off-by: Dave Liu <daveliu@freescale.com>
22376     Acked-by: Kumar Gala <kumar.gala@freescale.com>
22377
22378 commit bd888e9544419665334a6f47f81f34011cea38f3
22379 Author: Dave Liu <daveliu@freescale.com>
22380 Date:   Tue Oct 28 17:47:41 2008 +0800
22381
22382     86xx: remove the unused code for 86xx family
22383
22384     I believe these code was copied from 74xx family, but for
22385     86xx, it is unused.
22386
22387     Signed-off-by: Dave Liu <daveliu@freescale.com>
22388     Acked-by: Kumar Gala <kumar.gala@freescale.com>
22389
22390 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
22391 Author: Dave Liu <daveliu@freescale.com>
22392 Date:   Tue Oct 28 17:46:35 2008 +0800
22393
22394     86xx: remove the second DDR LAW setting for mpc8641hpcn
22395
22396     The DDR1 LAW will precedence the DDR2 LAW, so remove
22397     the second DDR LAW.
22398
22399     Signed-off-by: Dave Liu <daveliu@freescale.com>
22400     Acked-by: Becky Bruce <becky.bruce@freescale.com>
22401
22402 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
22403 Author: Dave Liu <daveliu@freescale.com>
22404 Date:   Tue Oct 28 17:46:23 2008 +0800
22405
22406     86xx: remove the unused ddr_enable_ecc in the board file
22407
22408     The DDR controller of 86xx processors have the ECC data init
22409     feature, and the new DDR code is using the feature, we don't
22410     need the way with DMA to init memory again.
22411
22412     Signed-off-by: Dave Liu <daveliu@freescale.com>
22413     Acked-by: Kumar Gala <kumar.gala@freescale.com>
22414
22415 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
22416 Author: Dave Liu <daveliu@freescale.com>
22417 Date:   Tue Oct 28 17:46:12 2008 +0800
22418
22419     86xx: Move the clear_tlbs before MMU turn on
22420
22421     We must invalidate TLBs before MMU turn on, but
22422     currently the code is not, if there are some stale
22423     TLB entry valid in the TLBs, it will cause strange
22424     issue.
22425
22426     Signed-off-by: Dave Liu <daveliu@freescale.com>
22427     Acked-by: Becky Bruce <becky.bruce@freescale.com>
22428
22429 commit 5cdade07b118d07154cb882650f9778cecc8a87c
22430 Author: Scott Wood <scottwood@freescale.com>
22431 Date:   Mon Oct 27 15:57:08 2008 -0500
22432
22433     mpc8313erdb: Document NAND boot.
22434
22435     Previously, the documentation claimed that NAND boot is not supported.
22436     This is no longer true.
22437
22438     Signed-off-by: Scott Wood <scottwood@freescale.com>
22439
22440 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
22441 Author: Scott Wood <scottwood@freescale.com>
22442 Date:   Wed Oct 29 14:20:26 2008 -0500
22443
22444     NAND: Properly create JFFS2 cleanmarkers.
22445
22446     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
22447     command is currently broken, and among other things causes all blocks
22448     to be marked bad.
22449
22450     This implements it properly using MTD_OOB_AUTO, along with some
22451     indentation fixes.
22452
22453     Signed-off-by: Scott Wood <scottwood@freescale.com>
22454
22455 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
22456 Author: Scott Wood <scottwood@freescale.com>
22457 Date:   Wed Oct 29 13:42:41 2008 -0500
22458
22459     NAND fsl elbc: Set FMR[ECCM] based on page size.
22460
22461     Hardware expects ECCM 0 for small page and ECCM 1 for large page
22462     when booting from NAND, so use those defaults.
22463
22464     Signed-off-by: Scott Wood <scottwood@freescale.com>
22465
22466 commit c013b74975dab0805ef6d369b013230c4e8a660d
22467 Author: Haiying Wang <Haiying.Wang@freescale.com>
22468 Date:   Wed Oct 29 13:32:59 2008 -0400
22469
22470     NAND: Add support for MPC8572DS board
22471
22472     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
22473     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
22474     config file.
22475
22476     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
22477     make room for the increased code size with NAND enabled.
22478
22479     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
22480     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22481     Signed-off-by: Scott Wood <scottwood@freescale.com>
22482
22483 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
22484 Author: Haiying Wang <Haiying.Wang@freescale.com>
22485 Date:   Wed Oct 29 11:05:55 2008 -0400
22486
22487     Make Freescale local bus registers available for both 83xx and 85xx.
22488
22489     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
22490       can be shared by both 83xx and 85xx
22491     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
22492       files which use lbus83xx_t.
22493     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
22494       85xx can share them.
22495
22496     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
22497     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22498     Signed-off-by: Scott Wood <scottwood@freescale.com>
22499
22500 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
22501 Author: Scott Wood <scottwood@freescale.com>
22502 Date:   Mon Oct 27 15:38:30 2008 -0500
22503
22504     NAND: Align right column of the shorthelp with other commands.
22505
22506     I accidentally broke this in when making consistent the partial
22507     alignment of the longhelp.
22508
22509     Signed-off-by: Scott Wood <scottwood@freescale.com>
22510
22511 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
22512 Author: Karl Beldan <karl.beldan@gmail.com>
22513 Date:   Mon Sep 15 16:08:03 2008 +0200
22514
22515     NAND: Reset chip on power-up
22516
22517     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
22518     The first command sent is NAND_CMD_READID.
22519     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
22520     Tested with an MT29F4G08AAC.
22521
22522     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
22523     Signed-off-by: Scott Wood <scottwood@freescale.com>
22524
22525 commit c45912d8abc52de796b9059a58faf7c4166eab58
22526 Author: Scott Wood <scottwood@freescale.com>
22527 Date:   Fri Oct 24 16:20:43 2008 -0500
22528
22529     NAND: sync with 2.6.27
22530
22531     This brings the core NAND code up to date with the Linux kernel.
22532
22533     Since there were several drivers in Linux as of the last update that are
22534     not in u-boot, I'm not bringing over new drivers that have been added
22535     since in the absence of an interested party.
22536
22537     I did not update OneNAND since it was recently synced by Kyungmin Park,
22538     and I'm not sure exactly what the common ancestor is.
22539
22540     Signed-off-by: Scott Wood <scottwood@freescale.com>
22541
22542 commit b1d0db1805c3395149777e507b6da53410abac4e
22543 Author: Kumar Gala <galak@kernel.crashing.org>
22544 Date:   Tue Oct 21 17:25:47 2008 -0500
22545
22546     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
22547
22548     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
22549
22550     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22551
22552 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
22553 Author: Kumar Gala <galak@kernel.crashing.org>
22554 Date:   Tue Oct 21 17:25:46 2008 -0500
22555
22556     bootm: support subcommands in linux ppc bootm
22557
22558     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
22559
22560     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22561
22562 commit 49c3a861d11735838f1f1b11999ce433006dc919
22563 Author: Kumar Gala <galak@kernel.crashing.org>
22564 Date:   Tue Oct 21 17:25:45 2008 -0500
22565
22566     bootm: Add subcommands
22567
22568     Add the ability to break the steps of the bootm command into several
22569     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
22570
22571     This allows us to do things like manipulate device trees before
22572     they are passed to a booting kernel or setup memory for a secondary
22573     core in multicore situations.
22574
22575     Not all OS types support all subcommands (currently only start, loados,
22576     ramdisk, fdt, and go are supported).
22577
22578     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22579
22580 commit be08315933537f061bc1ce61f33a29c56458bbad
22581 Author: Kumar Gala <galak@kernel.crashing.org>
22582 Date:   Tue Oct 21 17:25:44 2008 -0500
22583
22584     bootm: Move to using a function pointer table for the boot os function
22585
22586     This removes a bit of code and makes it easier for the upcoming sub bootm
22587     command support to call into the proper OS specific handler.
22588
22589     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22590     Signed-off-by: Wolfgang Denk <wd@denx.de>
22591
22592 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
22593 Author: Graeme Russ <graeme.russ@gmail.com>
22594 Date:   Mon Sep 29 23:03:14 2008 +1000
22595
22596     i386: Renamed show_boot_progress in assembler code
22597
22598     Renamed show_boot_progress in assembler init phase to
22599     show_boot_progress_asm to avoid link conflicts with C version
22600
22601     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
22602
22603 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
22604 Author: Peter Tyser <ptyser@xes-inc.com>
22605 Date:   Mon Oct 27 16:42:00 2008 -0500
22606
22607     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
22608
22609     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
22610     processors have a 3-bit wide IO_SEL field but have the most
22611     significant bit is wired to 0 so this change should not affect
22612     them.
22613
22614     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22615
22616 commit cd4251624205cb97104f6e32679dc7754934f711
22617 Author: Becky Bruce <becky.bruce@freescale.com>
22618 Date:   Mon Oct 27 16:09:42 2008 -0500
22619
22620     powerpc: fix pci window initialization to work with > 4GB DRAM
22621
22622     The existing code has a few errors that need to be fixed in
22623     order to support large RAM sizes.  Fix those, and add a
22624     comment to make it clearer.
22625
22626     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22627     Acked-by: Kumar Gala <galak@kernel.crashing.org>
22628
22629 commit 219542a1a66ca017b12860920714a9859b18a5d7
22630 Author: Kumar Gala <galak@kernel.crashing.org>
22631 Date:   Mon Oct 27 13:16:20 2008 -0500
22632
22633     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
22634
22635     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22636
22637 commit 6b59e03e0237a40a2305ea385defdfd92000978b
22638 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22639 Date:   Mon Sep 1 16:21:22 2008 +0200
22640
22641     lcd: Let the board code show board-specific info
22642
22643     The information displayed when CONFIG_LCD_INFO is set is inherently
22644     board-specific, so it should be done by the board code. The current code
22645     dealing with this only handles two cases, and is already a horrible mess
22646     of #ifdeffery.
22647
22648     Yes, this duplicates some code, but it also allows boards to print more
22649     board-specific information; this used to be very difficult.
22650
22651     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22652     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22653
22654 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
22655 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22656 Date:   Mon Sep 1 16:21:21 2008 +0200
22657
22658     lcd: Set lcd_is_enabled before clearing the screen
22659
22660     This allows the logo/info rendering routines to use the regular
22661     lcd_putc/lcd_puts/lcd_printf calls.
22662
22663     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22664     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22665
22666 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
22667 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22668 Date:   Mon Sep 1 16:21:20 2008 +0200
22669
22670     lcd: Implement lcd_printf()
22671
22672     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
22673     this by borrowing the lcd_printf() implementation from the cogent board
22674     code (which appears to use its own LCD framework.)
22675
22676     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22677     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22678
22679 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
22680 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22681 Date:   Mon Sep 1 16:21:19 2008 +0200
22682
22683     atmel_lcdfb: Straighten out funky vl_sync logic
22684
22685     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
22686     otherwise we don't. WTF?
22687
22688     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22689     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22690
22691 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
22692 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22693 Date:   Mon Sep 1 16:21:18 2008 +0200
22694
22695     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
22696
22697     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
22698     includes a file that does, asm/arch/gpio.h, but this file doesn't
22699     include <asm/arch/hardware.h> like it's supposed to.
22700
22701     Add the missing include to asm/arch/gpio.h and remove the workaround
22702     from the atmel_lcdfb driver. This makes the driver compile on avr32.
22703
22704     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22705     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22706
22707 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
22708 Author: Kumar Gala <galak@kernel.crashing.org>
22709 Date:   Wed Oct 22 14:38:55 2008 -0500
22710
22711     86xx: Convert all fsl_pci_init users to new APIs
22712
22713     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
22714     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
22715
22716     With these changes the board code is a bit smaller and we get dma-ranges
22717     set in the device tree for these boards.
22718
22719     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22720     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22721     Acked-by: Jon Loeliger <jdl@freescale.com>
22722
22723 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
22724 Author: Kumar Gala <galak@kernel.crashing.org>
22725 Date:   Tue Oct 21 08:28:33 2008 -0500
22726
22727     85xx: Convert all fsl_pci_init users to new APIs
22728
22729     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
22730     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
22731     and ft_fsl_pci_setup().
22732
22733     With these changes the board code is a bit smaller and we get dma-ranges
22734     set in the device tree for these boards.
22735
22736     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22737     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22738
22739 commit a2aab460727e5f674353a83a81000ef794bffcae
22740 Author: Kumar Gala <galak@kernel.crashing.org>
22741 Date:   Thu Oct 23 00:01:06 2008 -0500
22742
22743     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
22744
22745     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22746     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22747
22748 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
22749 Author: Kumar Gala <galak@kernel.crashing.org>
22750 Date:   Wed Oct 22 14:06:24 2008 -0500
22751
22752     pci/fsl_pci_init: Add a common PCI inbound setup function
22753
22754     Add a common setup function that determines the pci_region(s) based
22755     on how much memory we have in the system.
22756
22757     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22758     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22759
22760 commit 612ea01018a459234d54ed57ec6a5a244ce75678
22761 Author: Kumar Gala <galak@kernel.crashing.org>
22762 Date:   Tue Oct 21 10:13:14 2008 -0500
22763
22764     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
22765
22766     * PCI Inbound window was setup incorrectly.  The PCI address and system
22767       address were swapped.  The PCI address should be setting piwar/piwbear
22768       and the system address should be setting pitar.
22769
22770     * Removed masking of addresses to allow for system address to support
22771       system address & PCI address >32-bits
22772
22773     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
22774
22775     * Respect the PCI_REGION_PREFETCH for inbound windows
22776
22777     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22778     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22779
22780 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
22781 Author: Kumar Gala <galak@kernel.crashing.org>
22782 Date:   Wed Oct 22 23:33:56 2008 -0500
22783
22784     fdt: Added helper to set PCI dma-ranges property
22785
22786     Added fdt_pci_dma_ranges() that parses the pci_region info from the
22787     struct pci_controller and populates the dma-ranges based on it.
22788
22789     The max # of windws/dma-ranges we support is 3 since on embedded
22790     PowerPC based systems this is the max number of windows.
22791
22792     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22793     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22794
22795 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
22796 Author: Kumar Gala <galak@kernel.crashing.org>
22797 Date:   Thu Oct 23 00:05:47 2008 -0500
22798
22799     fdt: Add fdt_getprop_u32_default helpers
22800
22801     Add helper functions to return find a node and return it's property
22802     or a default value.
22803
22804     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22805     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22806     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
22807
22808 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
22809 Author: Kumar Gala <galak@kernel.crashing.org>
22810 Date:   Tue Oct 21 18:06:15 2008 -0500
22811
22812     86xx: Enable 64-bit PCI resources on all Freescale boards
22813
22814     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22815     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22816
22817 commit 0151cbaccf4504821ecfde0217299bd740086bb6
22818 Author: Kumar Gala <galak@kernel.crashing.org>
22819 Date:   Tue Oct 21 11:33:58 2008 -0500
22820
22821     85xx: Enable 64-bit PCI resources on all Freescale boards
22822
22823     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22824     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22825
22826 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
22827 Author: Kumar Gala <galak@kernel.crashing.org>
22828 Date:   Tue Oct 21 08:36:08 2008 -0500
22829
22830     pci: Allow for PCI addresses to be 64-bit
22831
22832     PCI bus is inherently 64-bit.  While not all system require access to
22833     the full 64-bit PCI address range some do.  This allows those systems
22834     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
22835
22836     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22837     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
22838     Acked-by: Wolfgang Denk <wd@denx.de>
22839
22840 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
22841 Author: Dave Liu <daveliu@freescale.com>
22842 Date:   Thu Oct 23 21:18:53 2008 +0800
22843
22844     85xx: Fix the incorrect register used for DDR erratum1
22845
22846     The 8572 DDR erratum1:
22847     DDR controller may enter an illegal state when operating
22848     in 32-bit bus mode with 4-beat bursts.
22849
22850     Description:
22851     When operating with a 32-bit bus, it is recommended that
22852     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
22853     This forces the DDR controller to use 4-beat bursts when
22854     communicating to the DRAMs. However, an issue exists that
22855     could lead to data corruption when the DDR controller is
22856     in 32-bit bus mode while using 4-beat bursts.
22857
22858     Projected Impact:
22859     If the DDR controller is operating in 32-bit bus mode with
22860     4-beat bursts, then the controller may enter into a bad state.
22861     All subsequent reads from memory is corrupted.
22862     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
22863     Therefore, this erratum does not affect DDR3 mode.
22864
22865     Work Arounds:
22866     To work around this issue, software must set DEBUG_1[31] in
22867     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
22868     and CCSRBAR offset + 0x6f00 for DDR_2).
22869
22870     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
22871     as condition, but it should be DDR_SDRAM_CFG register.
22872
22873     Signed-off-by: Dave Liu <daveliu@freescale.com>
22874
22875 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
22876 Author: Dave Liu <daveliu@freescale.com>
22877 Date:   Thu Oct 23 21:17:19 2008 +0800
22878
22879     85xx: remove unused config definition
22880
22881     Signed-off-by: Dave Liu <daveliu@freescale.com>
22882
22883 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
22884 Author: Kumar Gala <galak@kernel.crashing.org>
22885 Date:   Thu Oct 23 01:47:38 2008 -0500
22886
22887     85xx: Add basic e500mc core support
22888
22889     Introduce CONFIG_E500MC to deal with the minor differences between
22890     e500v2 and e500mc.
22891
22892     * Certain fields of HID0/1 don't exist anymore on e500mc
22893     * Cache line size is 64-bytes on e500mc
22894     * reset value of PIR is different
22895
22896     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22897
22898 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
22899 Author: Kumar Gala <galak@kernel.crashing.org>
22900 Date:   Thu Oct 23 01:47:37 2008 -0500
22901
22902     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
22903
22904     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
22905     e500mc's 64-byte cacheline properly when it gets added.
22906
22907     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22908
22909 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
22910 Author: Georg Schardt <schardt@team-ctech.de>
22911 Date:   Fri Oct 24 13:51:52 2008 +0200
22912
22913     ppc4xx: New board avnet fx12 minimodul
22914
22915     This patch adds support for the avnet fx12 minimodul.
22916     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
22917     patch from Ricardo.
22918
22919     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
22920     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22921     Signed-off-by: Stefan Roese <sr@denx.de>
22922
22923 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
22924 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22925 Date:   Tue Oct 21 18:29:46 2008 +0200
22926
22927     ppc4xx: Generic architecture for xilinx ppc405(v3)
22928
22929     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
22930     ppc440 boards, this patch presents a common architecture for all the
22931     xilinx ppc405 boards.
22932
22933     Any custom xilinx ppc405 board can be added very easily with no code
22934     duplicity.
22935
22936     This patch also adds a simple generic board, that can be used on almost
22937     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
22938
22939     This patch is prepared to work with the latest version of EDK (10.1)
22940
22941     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22942     Signed-off-by: Stefan Roese <sr@denx.de>
22943
22944 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
22945 Author: Stefan Roese <sr@denx.de>
22946 Date:   Fri Oct 24 08:56:09 2008 +0200
22947
22948     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
22949
22950     Since the new autocalibration still has some problems on some Kilauea
22951     boards with 200MHz DDR2 frequency we disable the autocalibration and
22952     use the hardcoded values as done before. This seems to work reliably
22953     on all known DDR2 frequencies.
22954
22955     After the autocalibration issue is fixed we will enable it again.
22956
22957     Signed-off-by: Stefan Roese <sr@denx.de>
22958
22959 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
22960 Author: Mike Frysinger <vapier@gentoo.org>
22961 Date:   Wed Apr 9 02:02:07 2008 -0400
22962
22963     Blackfin: fix up UART status bit handling
22964
22965     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
22966     This can cause problems when we poll the LSR and then later try and handle
22967     any errors detected.
22968
22969     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22970
22971 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
22972 Author: Mike Frysinger <vapier@gentoo.org>
22973 Date:   Sat Oct 11 20:42:17 2008 -0400
22974
22975     Blackfin: bf561-ezkit: drop redundant code
22976
22977     Common Blackfin code already announces CPU information.
22978
22979     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22980
22981 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
22982 Author: Mike Frysinger <vapier@gentoo.org>
22983 Date:   Sat Oct 11 20:43:10 2008 -0400
22984
22985     Blackfin: bf561-ezkit: drop pointless USB code
22986
22987     The USB/LAN register settings are not actually used/needed in order to
22988     drive things from U-Boot, so drop the code.
22989
22990     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22991
22992 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
22993 Author: Mike Frysinger <vapier@gentoo.org>
22994 Date:   Sat Oct 11 20:47:58 2008 -0400
22995
22996     Blackfin: linker scripts: force start.o and set initcode boundaries
22997
22998     Make sure that the start.o object is always the first object in our linker
22999     script regardless of configuration settings, and add some linker symbols
23000     so the ldr utility can properly locate the initcode when generating a LDR.
23001
23002     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23003
23004 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
23005 Author: Mike Frysinger <vapier@gentoo.org>
23006 Date:   Sat Oct 11 21:19:39 2008 -0400
23007
23008     Blackfin: small cpu init optimization while setting interrupt mask
23009
23010     Use the sti instruction to set the initial interrupt mask rather than
23011     banging on the core IMASK MMR to save both space and time.
23012
23013     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23014
23015 commit 960922291c9594acb575cec7e47d7bed9b58182c
23016 Author: Mike Frysinger <vapier@gentoo.org>
23017 Date:   Sat Oct 11 21:18:10 2008 -0400
23018
23019     Blackfin: set initial stack correctly according to Blackfin ABI
23020
23021     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23022
23023 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
23024 Author: Mike Frysinger <vapier@gentoo.org>
23025 Date:   Sun Apr 20 03:11:53 2008 -0400
23026
23027     Blackfin: make baud calculation more accurate
23028
23029     We should use the algorithm in the Linux kernel so that the UART divisor
23030     calculation is more accurate.  It also fixes problems on some picky UARTs
23031     that have sampling anomalies.
23032
23033     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23034
23035 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
23036 Author: Mike Frysinger <vapier@gentoo.org>
23037 Date:   Mon Oct 6 04:21:41 2008 -0400
23038
23039     Blackfin: decode hwerrcause/excause when crashing
23040
23041     Having to decode hwerrcause/excause values is a pain, so automate it.
23042
23043     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23044
23045 commit 2de95bb20c488f20298df6881b700a5a757ee780
23046 Author: Mike Frysinger <vapier@gentoo.org>
23047 Date:   Mon Oct 6 04:20:54 2008 -0400
23048
23049     Blackfin: fix register dump messages
23050
23051     Make sure we report RETI/IPEND correctly.
23052
23053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23054
23055 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
23056 Author: Mike Frysinger <vapier@gentoo.org>
23057 Date:   Mon Oct 6 04:19:34 2008 -0400
23058
23059     Blackfin: don't bother displaying reboot msg when crashing
23060
23061     The hang function already tells you to reboot, so no point in showing it
23062     twice.
23063
23064     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23065
23066 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
23067 Author: Mike Frysinger <vapier@gentoo.org>
23068 Date:   Sun Jun 1 01:23:48 2008 -0400
23069
23070     Blackfin: enable support for nested interrupts
23071
23072     During cpu init, make sure we initialize the CEC properly so that
23073     interrupts can fire and be handled while U-Boot is running.
23074
23075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23076
23077 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
23078 Author: Mike Frysinger <vapier@gentoo.org>
23079 Date:   Mon Oct 6 03:55:25 2008 -0400
23080
23081     Blackfin: init NAND before relocating env
23082
23083     If booting out of NAND, we need to make sure we initialize it properly
23084     before attempting to relocate the environment.
23085
23086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23087
23088 commit 0f9a8819416ba40a53de50af148847a0e508f84d
23089 Author: Mike Frysinger <vapier@gentoo.org>
23090 Date:   Thu Aug 7 18:40:13 2008 -0400
23091
23092     Blackfin: check cache bits, not cplb bits
23093
23094     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23095
23096 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
23097 Author: Mike Frysinger <vapier@gentoo.org>
23098 Date:   Thu Aug 7 17:52:59 2008 -0400
23099
23100     Blackfin: drop unused cache flush code
23101
23102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23103
23104 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
23105 Author: Mike Frysinger <vapier@gentoo.org>
23106 Date:   Thu Aug 7 15:21:47 2008 -0400
23107
23108     Blackfin: unify cache handling code
23109
23110     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23111
23112 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
23113 Author: Mike Frysinger <vapier@gentoo.org>
23114 Date:   Mon Oct 6 03:39:07 2008 -0400
23115
23116     Blackfin: only initialize the RTC when actually used
23117
23118     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23119
23120 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
23121 Author: Mike Frysinger <vapier@gentoo.org>
23122 Date:   Mon Oct 6 03:44:33 2008 -0400
23123
23124     Blackfin: fix SWRST register definition
23125
23126     The SWRST register is a 16bit, not 32bit, register.
23127
23128     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23129
23130 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
23131 Author: Mike Frysinger <vapier@gentoo.org>
23132 Date:   Thu Aug 7 18:54:57 2008 -0400
23133
23134     Blackfin: build with -fomit-frame-pointer
23135
23136     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23137
23138 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
23139 Author: Mike Frysinger <vapier@gentoo.org>
23140 Date:   Thu Aug 7 17:50:26 2008 -0400
23141
23142     Blackfin: document some of the blackfin directories
23143
23144     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23145
23146 commit e4337968e43698a68ba608369f46d4a4114111ca
23147 Author: Mike Frysinger <vapier@gentoo.org>
23148 Date:   Thu Aug 7 15:16:56 2008 -0400
23149
23150     Blackfin: only enable hardware error irq by default
23151
23152     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23153
23154 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
23155 Author: Mike Frysinger <vapier@gentoo.org>
23156 Date:   Thu Aug 7 13:36:43 2008 -0400
23157
23158     Blackfin: punt old unused mem_init.h header
23159
23160     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23161
23162 commit bcc121a01608042066a19ab5bff5bcfb805bf406
23163 Author: Mike Frysinger <vapier@gentoo.org>
23164 Date:   Thu Aug 7 13:18:55 2008 -0400
23165
23166     Blackfin: delete unused page_descriptor_table_size define
23167
23168     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23169
23170 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
23171 Author: Mike Frysinger <vapier@gentoo.org>
23172 Date:   Thu Aug 7 13:17:03 2008 -0400
23173
23174     Blackfin: fix typo in boot mode comment and add NAND define
23175
23176     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23177
23178 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
23179 Author: Ben Maan <moo@cow>
23180 Date:   Thu Aug 7 13:14:21 2008 -0400
23181
23182     Blackfin: fix port mux defines for BF54x
23183
23184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23185
23186 commit 0656ef2ba274910d31364fe022f6c7db0051660d
23187 Author: Mike Frysinger <vapier@gentoo.org>
23188 Date:   Thu Aug 7 13:09:50 2008 -0400
23189
23190     Blackfin: update anomaly lists
23191
23192     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23193
23194 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
23195 Author: Mike Frysinger <vapier@gentoo.org>
23196 Date:   Thu Aug 7 13:08:54 2008 -0400
23197
23198     Blackfin: unify DSPID/DBGSTAT MMR definitions
23199
23200     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23201
23202 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
23203 Author: Wolfgang Denk <wd@denx.de>
23204 Date:   Tue Oct 21 15:53:51 2008 +0200
23205
23206     Fix strmhz(): avoid printing negative fractions
23207
23208     Signed-off-by: Wolfgang Denk <wd@denx.de>
23209
23210 commit 4a7f6b750d8de543fdf8e58acd86745010054571
23211 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
23212 Date:   Fri Oct 17 08:55:51 2008 -0400
23213
23214     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
23215
23216     This is done to allow other 83XX based platforms which also have UPM
23217     (e.g. 8360) to configure and use their UPM in u-boot.
23218
23219     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
23220     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23221
23222 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
23223 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23224 Date:   Tue Oct 14 22:58:53 2008 +0400
23225
23226     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
23227
23228     With this patch u-boot can fixup the dr_mode and phy_type properties
23229     for the Dual-Role USB controller.
23230
23231     While at it, also remove #ifdefs around includes, they are not needed.
23232
23233     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23234     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23235
23236 commit b3379f3fd13969934c00097c05754e7a8990fd39
23237 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23238 Date:   Wed Oct 8 20:52:54 2008 +0400
23239
23240     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
23241
23242     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
23243     current settings don't work with the default chip on the board.
23244     Nevertheless Freescale's U-Boot sets the option register correctly,
23245     so I just dumped the register from the working u-boot. My guess is
23246     that the old settings were applicable for some pilot boards, not
23247     found in the production.
23248
23249     This patch also enables FSL ELBC driver so that we could access
23250     the NAND storage in the u-boot.
23251
23252     The NAND support costs about 45KB, so the u-boot no longer fits
23253     into two 128KB NOR flash sectors, thus we also have to adjust
23254     environment location: add another 128KB to the monitor length.
23255
23256     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23257
23258     It is due to hardware design and logic defect, that is the
23259     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
23260     the NAND chip connected to nLCS3,  you have to set up the
23261     OR3[BCTLD] = '1' for normal operation, otherwise it will have
23262     bus contention due to the pin 48/25 of U60 is enabled.
23263
23264     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
23265     asserted upon access to the NAND chip, keep the default state.
23266
23267     Acked-by: Dave Liu <daveliu@freescale.com>
23268     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23269
23270 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
23271 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23272 Date:   Thu Oct 2 19:17:33 2008 +0400
23273
23274     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
23275
23276     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
23277     standalone or acting as a PCI agent. User's Guide says:
23278
23279     - When the CPLD recognizes its location on the PIB it automatically
23280       configures RCW to the PCI Host.
23281     - If the CPLD fails to recognize its location then it is automatically
23282       configured as an Agent and the PCI is configured to an external arbiter.
23283
23284     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
23285     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
23286     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
23287     any arbiter bad things will happen (here the board hangs during any config
23288     space reads).
23289
23290     In this situation we must disable the PCI. And in case of anybody really
23291     want to use an external arbiter, we provide "pci_external_aribter"
23292     environment variable.
23293
23294     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23295     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23296
23297 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
23298 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23299 Date:   Thu Oct 2 18:32:25 2008 +0400
23300
23301     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
23302
23303     This involves configuring the SerDes and fixing up the flags and
23304     PHY addresses for the TSECs.
23305
23306     For Linux we also fix up the device tree.
23307
23308     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23309     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23310
23311 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
23312 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23313 Date:   Thu Oct 2 18:31:59 2008 +0400
23314
23315     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
23316
23317     We'll use these masks to parse TSEC modes out of HRCWH.
23318
23319     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23320     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23321
23322 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
23323 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23324 Date:   Thu Oct 2 18:31:56 2008 +0400
23325
23326     mpc83xx: serdes: add forgotten shifts for rfcks
23327
23328     The rfcks should be shifted by 28 bits left. We didn't notice the bug
23329     because we were using only 100MHz clocks (for which rfcks == 0).
23330
23331     Though, for SGMII we'll need 125MHz clocks.
23332
23333     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23334     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23335
23336 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
23337 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23338 Date:   Thu Oct 2 18:31:53 2008 +0400
23339
23340     mpc83xx: fix serdes setup for the MPC8378E boards
23341
23342     MPC837xE specs says that SerDes1 has:
23343
23344     â€” Two lanes running x1 SGMII at 1.25 Gbps;
23345     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
23346
23347     And for SerDes2:
23348
23349     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
23350     â€” One lane running x2 PCI Express at 2.5 Gbps;
23351     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
23352
23353     The spec also explicitly states that PEX options are not valid for
23354     the SD1.
23355
23356     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
23357     which is wrong to do.
23358
23359     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23360     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23361
23362 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
23363 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23364 Date:   Wed Sep 10 18:12:37 2008 +0400
23365
23366     mpc83xx: mpc8360emds: rework LBC SDRAM setup
23367
23368     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
23369     it difficult to use (b/c then the memory is discontinuous and
23370     there is quite big memory hole between the DDR/SDRAM regions).
23371
23372     This patch reworks LBC SDRAM setup so that now we dynamically
23373     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
23374     DDR memory).
23375
23376     With this patch we're able to:
23377
23378     - Boot without external DDR memory;
23379     - Use most "DDR + SDRAM" setups without need to support for
23380       sparse/discontinuous memory model in the software.
23381
23382     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23383     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23384
23385 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
23386 Author: Wolfgang Denk <wd@xpert.denx.de>
23387 Date:   Tue Oct 21 11:23:56 2008 +0200
23388
23389     FDT: don't use private kernel header files
23390
23391     On some systems (for example Fedora Core 4) U-Boot builds with the
23392     following wanrings only:
23393
23394     ...
23395     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
23396                      from fdt.c:51:
23397                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
23398
23399     This patch fixes this problem.
23400
23401     Signed-off-by: Wolfgang Denk <wd@denx.de>
23402
23403 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
23404 Author: Stefan Roese <sr@denx.de>
23405 Date:   Mon Oct 13 15:15:31 2008 +0200
23406
23407     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
23408
23409     Signed-off-by: Stefan Roese <sr@denx.de>
23410
23411 commit 43cbce69d48d052574d71f50724be546d90a46a4
23412 Author: Stefan Roese <sr@denx.de>
23413 Date:   Mon Oct 13 10:45:14 2008 +0200
23414
23415     ppc4xx: Correctly setup ranges property in ebc node
23416
23417     Previously only the NOR flash mapping was written into the ranges
23418     property of the ebc node. This patch now writes all enabled chip
23419     select areas into the ranges property.
23420
23421     Signed-off-by: Stefan Roese <sr@denx.de>
23422
23423 commit d7b26d58328f137471ea97de382bfa63f7239931
23424 Author: Dirk Eibach <eibach@gdsys.de>
23425 Date:   Wed Oct 8 15:37:50 2008 +0200
23426
23427     ppc4xx: Add GDSys neo 405EP board support
23428
23429     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
23430     Signed-off-by: Stefan Roese <sr@denx.de>
23431
23432 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
23433 Author: Niklaus Giger <niklaus.giger@netstal.com>
23434 Date:   Wed Oct 1 14:46:13 2008 +0200
23435
23436     ppc4xx: Update configs for Netstal boards
23437
23438     I reorganized my config files, putting the common stuff into netstal-common.h
23439     (got the idea by looking a amcc-common.h from Stefan).
23440
23441     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
23442
23443     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23444     Signed-off-by: Stefan Roese <sr@denx.de>
23445
23446 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
23447 Author: Adam Graham <agraham@amcc.com>
23448 Date:   Wed Oct 8 10:13:19 2008 -0700
23449
23450     ppc4xx: Add routine to retrieve CPU number
23451
23452     Provide a weak defined routine to retrieve the CPU number for
23453     reference boards that have multiple CPU's.  Default behavior
23454     is the existing single CPU print output.  Reference boards with
23455     multiple CPU's need to provide a board specific routine.
23456     See board/amcc/arches/arches.c for an example.
23457
23458     Signed-off-by: Adam Graham <agraham@amcc.com>
23459     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
23460     Signed-off-by: Stefan Roese <sr@denx.de>
23461
23462 commit 59217bae40e90982ab5400d849c08af683ace036
23463 Author: Adam Graham <agraham@amcc.com>
23464 Date:   Wed Oct 8 10:13:14 2008 -0700
23465
23466     ppc4xx: Add static support for 44x IBM SDRAM Controller
23467
23468     This patch add the capability to configure a PPC440 based IBM SDRAM
23469     Controller with static, compiled-in, values. PPC440 memory subsystem
23470     includes a Memory Queue core.
23471
23472     Signed-off-by: Adam Graham <agraham@amcc.com>
23473     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
23474     Signed-off-by: Stefan Roese <sr@denx.de>
23475
23476 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
23477 Author: Adam Graham <agraham@amcc.com>
23478 Date:   Wed Oct 8 10:12:53 2008 -0700
23479
23480     ppc4xx: Add AMCC Arches board support (dual 460GT)
23481
23482     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
23483     This board is a dual processor board with each processor providing
23484     independent resources for Rapid IO, Gigabit Ethernet, and serial
23485     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
23486     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
23487     port. The two 460GT's will communicate with each other via shared
23488     memory, Gigabit Ethernet and x1 PCI-Express.
23489
23490     Signed-off-by: Adam Graham <agraham@amcc.com>
23491     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
23492     Signed-off-by: Stefan Roese <sr@denx.de>
23493
23494 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
23495 Author: Wolfgang Denk <wd@xpert.denx.de>
23496 Date:   Sun Oct 19 21:54:30 2008 +0200
23497
23498     TQM8260: environment in flash instead EEPROM, baudrate 115k
23499
23500     Several customers have reported problems with the environment in
23501     EEPROM, including corrupted content after board reset. Probably the
23502     code to prevent I2C Enge Conditions is not working sufficiently.
23503
23504     We move the environment to flash now, which allows to have a backup
23505     copy plus gives much faster boot times.
23506
23507     Also, change the default console initialization to 115200 bps as used
23508     on most other boards.
23509
23510     Signed-off-by: Wolfgang Denk <wd@denx.de>
23511
23512 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
23513 Author: Kumar Gala <galak@kernel.crashing.org>
23514 Date:   Sun Oct 19 12:49:19 2008 -0500
23515
23516     85xx: Fix compile warning in mpc8536ds.c
23517
23518     mpc8536ds.c: In function 'is_sata_supported':
23519     mpc8536ds.c:615: warning: unused variable 'devdisr'
23520
23521     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23522
23523 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
23524 Author: Wolfgang Denk <wd@denx.de>
23525 Date:   Sun Oct 19 02:35:50 2008 +0200
23526
23527     Cleanup: fix "MHz" spelling
23528
23529     Signed-off-by: Wolfgang Denk <wd@denx.de>
23530
23531 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
23532 Author: Wolfgang Denk <wd@denx.de>
23533 Date:   Sun Oct 19 02:35:49 2008 +0200
23534
23535     Use strmhz() to format clock frequencies
23536
23537     Signed-off-by: Wolfgang Denk <wd@denx.de>
23538
23539 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
23540 Author: Wolfgang Denk <wd@denx.de>
23541 Date:   Sun Oct 19 02:35:48 2008 +0200
23542
23543     strmhz(): Round numbers when printing clock frequencies
23544
23545     Round clock frequencies for printing.
23546
23547     Many boards printed off clock frequencies like 399 MHz instead of the
23548     exact 400 MHz because numberes were not rounded. This is fixed now.
23549
23550     Signed-off-by: Wolfgang Denk <wd@denx.de>
23551
23552 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
23553 Author: Timur Tabi <timur@freescale.com>
23554 Date:   Mon Oct 20 15:16:47 2008 -0500
23555
23556     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
23557
23558     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
23559     to add a comment that the correct value disagrees with the 8544 reference
23560     manual.  The changelog for that commit is also wrong, as it says "bit 28"
23561     when it should be "bit 24".
23562
23563     Signed-off-by: Timur Tabi <timur@freescale.com>
23564
23565 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
23566 Author: Heiko Schocher <hs@denx.de>
23567 Date:   Fri Oct 17 18:24:06 2008 +0200
23568
23569     mgcoge: add redundant environment sector
23570
23571     Signed-off-by: Heiko Schocher <hs@denx.de>
23572
23573 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
23574 Author: Heiko Schocher <hs@denx.de>
23575 Date:   Fri Oct 17 18:23:27 2008 +0200
23576
23577     mgsuvd: update size of environment
23578
23579     Signed-off-by: Heiko Schocher <hs@denx.de>
23580
23581 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
23582 Author: Jason Jin <Jason.jin@freescale.com>
23583 Date:   Fri Oct 10 11:41:00 2008 +0800
23584
23585     Enabled the Freescale SGMII riser card on 8536DS
23586
23587     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
23588
23589 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
23590 Author: Liu Yu <yu.liu@freescale.com>
23591 Date:   Fri Oct 10 11:40:59 2008 +0800
23592
23593     Enabled the Freescale SGMII riser card on 8572DS
23594
23595     This patch based on Andy's work.
23596     Including command 'pixis_set_sgmii' support.
23597
23598     Signed-off-by: Liu Yu <yu.liu@freescale.com>
23599
23600 commit bff188baf9427c35745356439435acf3864d4c65
23601 Author: Liu Yu <yu.liu@freescale.com>
23602 Date:   Fri Oct 10 11:40:58 2008 +0800
23603
23604     Make pixis_set_sgmii more general to support MPC85xx boards.
23605
23606     The pixis sgmii command depend on the FPGA support on the board, some 85xx
23607     boards support SGMII riser card but did not support this command, define
23608     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
23609
23610     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
23611     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
23612     PIXIS_VCFGEN1_MASK in header file for both boards.
23613
23614     Signed-off-by: Liu Yu <yu.liu@freescale.com>
23615
23616 commit 5e981d683d2363204c76773941c2e9c2044c808f
23617 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23618 Date:   Wed Oct 8 23:38:02 2008 -0500
23619
23620     Add cpu/8xxx to TAGS_SUBDIRS
23621
23622     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23623
23624 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
23625 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23626 Date:   Thu Oct 9 01:25:55 2008 -0500
23627
23628     fsl_law clear enable before changing.
23629
23630     Debug sessions may have left enabled laws.
23631     Changing lawbar with an unkown enabled tgtid could cause problems.
23632
23633     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23634
23635 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
23636 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23637 Date:   Thu Oct 9 00:29:27 2008 -0500
23638
23639     mpc8572 additional end-point mode
23640
23641     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
23642     Include host_agent == 0 decode for end-point determination.
23643
23644     This is not needed for the ds reference board since pcie3 will be a host
23645     in order to connect to the uli chip.  Include it here as a reference for
23646     other mpc8572 boards.
23647
23648     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23649
23650 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
23651 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23652 Date:   Wed Oct 8 23:37:59 2008 -0500
23653
23654     85xx if NUM_CPUS>1, print cpu number
23655
23656     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23657
23658 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
23659 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
23660 Date:   Wed Oct 8 23:38:01 2008 -0500
23661
23662     pixis do not print long help if not configured
23663
23664     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
23665
23666 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
23667 Author: Andy Fleming <afleming@freescale.com>
23668 Date:   Tue Oct 7 08:09:50 2008 -0500
23669
23670     Have u-boot pass stashing parameters into device tree
23671
23672     Some cores don't support ethernet stashing at all, and some
23673     instances have errata.  Adds 3 properties to gianfar nodes
23674     which support stashing.  For now, just add this support to
23675     85xx SoCs.
23676
23677     Signed-off-by: Andy Fleming <afleming@freescale.com>
23678
23679 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
23680 Author: Haiying Wang <Haiying.Wang@freescale.com>
23681 Date:   Fri Oct 3 12:37:57 2008 -0400
23682
23683     Add DDR options setting on MPC8641HPCN board
23684
23685     * Add board specific parameter table to choose correct cpo, clk_adjust,
23686     write_data_delay based on board ddr frequency and n_ranks.
23687
23688     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
23689
23690     Signed-off-by: James Yang <James.Yang@freescale.com>
23691     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23692
23693 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
23694 Author: Haiying Wang <Haiying.Wang@freescale.com>
23695 Date:   Fri Oct 3 12:37:41 2008 -0400
23696
23697     Add ddr interleaving suppport for MPC8572DS board
23698
23699     * Add board specific parameter table to choose correct cpo, clk_adjust,
23700     write_data_delay, 2T based on board ddr frequency and n_ranks.
23701
23702     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
23703
23704     * Set memory controller interleaving mode to bank interleaving, and disable
23705     bank(chip select) interleaving mode by default, because the default on-board
23706     DDR DIMMs are 2x512MB single-rank.
23707
23708     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
23709
23710     Signed-off-by: James Yang <James.Yang@freescale.com>
23711     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23712
23713 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
23714 Author: Haiying Wang <Haiying.Wang@freescale.com>
23715 Date:   Fri Oct 3 12:37:26 2008 -0400
23716
23717     Add debug information for DDR controller registers
23718
23719     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23720
23721 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
23722 Author: Haiying Wang <Haiying.Wang@freescale.com>
23723 Date:   Fri Oct 3 12:37:10 2008 -0400
23724
23725     Check DDR interleaving mode
23726
23727     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
23728     ba_intlv_ctl.
23729     * Print DDR interleaving mode information
23730     * Add doc/README.fsl-ddr to describe the interleaving setting
23731
23732     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23733
23734 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
23735 Author: Haiying Wang <Haiying.Wang@freescale.com>
23736 Date:   Fri Oct 3 12:36:55 2008 -0400
23737
23738     Pass dimm parameters to populate populate controller options
23739
23740     Because some dimm parameters like n_ranks needs to be used with the board
23741     frequency to choose the board parameters like clk_adjust etc. in the
23742     board_specific_paramesters table of the board ddr file, we need to pass
23743     the dimm parameters to the board file.
23744
23745     * move ddr dimm parameters header file from /cpu to /include directory.
23746     * add ddr dimm parameters to populate board specific options.
23747     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
23748
23749     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23750
23751 commit dbbbb3abeff325855cae76e33d69d5665631443f
23752 Author: Haiying Wang <Haiying.Wang@freescale.com>
23753 Date:   Fri Oct 3 12:36:39 2008 -0400
23754
23755     Make DDR interleaving mode work correctly
23756
23757     Fix some bugs:
23758       1. Correctly set intlv_ctl in cs_config.
23759       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
23760       3. Set base_address and total memory for each ddr controller in memory
23761          controller interleaving mode.
23762
23763     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23764
23765 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
23766 Author: Kumar Gala <galak@kernel.crashing.org>
23767 Date:   Mon Sep 22 23:40:42 2008 -0500
23768
23769     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
23770
23771     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23772
23773 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
23774 Author: Kumar Gala <galak@kernel.crashing.org>
23775 Date:   Mon Sep 22 14:11:11 2008 -0500
23776
23777     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
23778
23779     Changing the flash from cacheable to cache-inhibited was taking a significant
23780     amount of time due to the fact that we were iterating over the full 256M of
23781     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
23782
23783     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23784
23785 commit 54e091d3b603a3332c619199ca83a07e95960da4
23786 Author: Kumar Gala <galak@kernel.crashing.org>
23787 Date:   Mon Sep 22 14:11:10 2008 -0500
23788
23789     85xx: Export invalidate_{i,d}cache and add flush_dcache
23790
23791     Added the ability for C code to invalidate the i/d-cache's and
23792     to flush the d-cache.  This allows us to more efficient change mappings
23793     from cache-able to cache-inhibited.
23794
23795     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23796
23797 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
23798 Author: Heiko Schocher <hs@denx.de>
23799 Date:   Fri Oct 17 16:11:52 2008 +0200
23800
23801     mgcoge, mgsuvd: extract more common code
23802
23803     in ft_blob_update () for both boards was an unneccessary
23804     repetition of code, which this patch moves in a common
23805     function for this boards.
23806
23807     Signed-off-by: Heiko Schocher <hs@denx.de>
23808
23809 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
23810 Author: Heiko Schocher <hs@denx.de>
23811 Date:   Fri Oct 17 12:15:55 2008 +0200
23812
23813     mgcoge, mgsuvd: use in_*/out_* accesors
23814
23815     Signed-off-by: Heiko Schocher <hs@denx.de>
23816
23817 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
23818 Author: Heiko Schocher <hs@denx.de>
23819 Date:   Fri Oct 17 13:52:51 2008 +0200
23820
23821     mgsuvd: fix compiler warning when using soft_i2c driver
23822
23823     Signed-off-by: Heiko Schocher <hs@denx.de>
23824
23825 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
23826 Author: Heiko Schocher <hs@denx.de>
23827 Date:   Fri Oct 17 12:15:05 2008 +0200
23828
23829     mgsuvd: fix coding style
23830
23831     Signed-off-by: Heiko Schocher <hs@denx.de>
23832
23833 commit 5f4c3137f4f051787707c548133823f1656eb508
23834 Author: Heiko Schocher <hs@denx.de>
23835 Date:   Fri Oct 17 12:13:30 2008 +0200
23836
23837     mgcoge: Second Flash on CS5 not on CS1
23838
23839     Signed-off-by: Heiko Schocher <hs@denx.de>
23840
23841 commit 76da19df5b8e186d269f29190696bd31fb6c836b
23842 Author: Kumar Gala <galak@kernel.crashing.org>
23843 Date:   Thu Oct 16 21:52:08 2008 -0500
23844
23845     Added arch_lmb_reserve to allow arch specific memory regions protection
23846
23847     Each architecture has different ways of determine what regions of memory
23848     might not be valid to get overwritten when we boot.  This provides a
23849     hook to allow them to reserve any regions they care about.  Currently
23850     only ppc, m68k and sparc need/use this.
23851
23852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23853
23854 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
23855 Author: Heiko Schocher <hs@denx.de>
23856 Date:   Thu Oct 16 16:32:35 2008 +0200
23857
23858     mgcoge: added CONFIG_FIT to support the new u-boot image format
23859
23860     Signed-off-by: Heiko Schocher <hs@denx.de>
23861
23862 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
23863 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23864 Date:   Thu Oct 16 15:01:15 2008 +0200
23865
23866     rename CFG_ macros to CONFIG_SYS
23867
23868     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23869
23870 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
23871 Author: Kumar Gala <galak@kernel.crashing.org>
23872 Date:   Mon Oct 13 14:12:55 2008 -0500
23873
23874     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
23875
23876     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23877
23878 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
23879 Author: Kumar Gala <galak@kernel.crashing.org>
23880 Date:   Tue Sep 23 10:05:02 2008 -0500
23881
23882     Expose command table search for sub-commands
23883
23884     Sub-command can benefit from using the same table and search functions
23885     that top level commands have.  Expose this functionality by refactoring
23886     find_cmd() and introducing find_cmd_tbl() that sub-command processing
23887     can call.
23888
23889     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23890
23891 commit f7e51b27508446f8cae3927975817137979ad5e8
23892 Author: Heiko Schocher <hs@denx.de>
23893 Date:   Wed Oct 15 09:41:33 2008 +0200
23894
23895     mgsuvd, mgcoge: added BOOTCOUNT feature.
23896
23897     Signed-off-by: Heiko Schocher <hs@denx.de>
23898
23899 commit 8f64da7f83b553889bc08400c97047998382e9d2
23900 Author: Heiko Schocher <hs@denx.de>
23901 Date:   Wed Oct 15 09:41:00 2008 +0200
23902
23903     mgcoge, mgsuvd: added support for the IVM EEprom.
23904
23905     The EEprom contains some Manufacturerinformation,
23906     which are read from u-boot at boot time, and saved
23907     in same hush shell variables.
23908
23909     Signed-off-by: Heiko Schocher <hs@denx.de>
23910
23911 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
23912 Author: Heiko Schocher <hs@denx.de>
23913 Date:   Wed Oct 15 09:40:28 2008 +0200
23914
23915     hush: add showvar command for hush shell.
23916
23917     This new command shows the local variables defined in
23918     the hush shell:
23919
23920     => help showvar
23921     showvar
23922         - print values of all hushshell variables
23923     showvar name ...
23924         - print value of hushshell variable 'name'
23925
23926     Also make the set_local_var() and unset_local_var ()
23927     no longer static, so it is possible to define local
23928     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
23929     is defined, u-boot calls hush_init_var (), where
23930     boardspecific code can define local hush shell
23931     variables at boottime.
23932
23933     Signed-off-by: Heiko Schocher <hs@denx.de>
23934
23935 commit 67b23a322848d828a5e45c0567b72762bfde7abf
23936 Author: Heiko Schocher <hs@denx.de>
23937 Date:   Wed Oct 15 09:39:47 2008 +0200
23938
23939     I2C: adding new "i2c bus" Command to the I2C Subsystem.
23940
23941     With this Command it is possible to add new I2C Busses,
23942     which are behind 1 .. n I2C Muxes. Details see README.
23943
23944     Signed-off-by: Heiko Schocher <hs@denx.de>
23945
23946 commit c24853644ddd2dd2e4246b5854a93e6254a14092
23947 Author: Heiko Schocher <hs@denx.de>
23948 Date:   Wed Oct 15 09:39:08 2008 +0200
23949
23950     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
23951
23952     As documented in doc/I2C_Edge_Conditions, adding a
23953     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
23954     for the mgcoge and mgsuvd board.
23955
23956     This code was originally written by Keymile in association
23957     with Anatech and Atmel in 1998. The Code toggels the SCL
23958     until the SCA line goes to HIGH (max. 16 times).
23959     And after this, a start condition is sent.
23960
23961     This is another approach to deblock the I2C Bus. The
23962     soft I2C driver actually sends 9 clocks with SDA High,
23963     and then a stop at the end, to deblock the I2C Bus.
23964
23965     Maybe we should use the approach from Keymile as
23966     the new standard?
23967
23968     Signed-off-by: Heiko Schocher <hs@denx.de>
23969
23970 commit 4ca107effebfbabac1057c39632105dacef95957
23971 Author: Heiko Schocher <hs@denx.de>
23972 Date:   Wed Oct 15 09:38:38 2008 +0200
23973
23974     soft_i2c: Add CFG_I2C_INIT_BOARD option
23975
23976     This patch adds the option for a boardspecific
23977     I2C deblocking mechanism for the soft i2c driver.
23978
23979     Signed-off-by: Heiko Schocher <hs@denx.de>
23980
23981 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
23982 Author: Heiko Schocher <hs@denx.de>
23983 Date:   Wed Oct 15 09:38:07 2008 +0200
23984
23985     mgcoge, mgsuvd: add DTT (LM75) support.
23986
23987     Signed-off-by: Heiko Schocher <hs@denx.de>
23988
23989 commit 8e442df438ab677057571e3ac01846bff7719bce
23990 Author: Heiko Schocher <hs@denx.de>
23991 Date:   Wed Oct 15 09:37:34 2008 +0200
23992
23993     lm75: Make the LM75 MULTI_BUS compatible.
23994
23995     Signed-off-by: Heiko Schocher <hs@denx.de>
23996
23997 commit 12f1678127c1df2b2878ba93c88948bedc060775
23998 Author: Heiko Schocher <hs@denx.de>
23999 Date:   Wed Oct 15 09:37:04 2008 +0200
24000
24001     lm75: fix Codingstyle issues.
24002
24003     Signed-off-by: Heiko Schocher <hs@denx.de>
24004
24005 commit f2202450c75ba6934b356024101500ddcde6e2a6
24006 Author: Heiko Schocher <hs@denx.de>
24007 Date:   Wed Oct 15 09:36:33 2008 +0200
24008
24009     mgcoge, mgsuvd: added EEprom support.
24010
24011     Signed-off-by: Heiko Schocher <hs@denx.de>
24012
24013 commit 9661bf9d120f760238b2a073b84f2baf05010057
24014 Author: Heiko Schocher <hs@denx.de>
24015 Date:   Wed Oct 15 09:36:03 2008 +0200
24016
24017     mgcoge, mgsuvd: add I2C support.
24018
24019     Signed-off-by: Heiko Schocher <hs@denx.de>
24020
24021 commit 98aed379586a155292efbf3209356836584b601c
24022 Author: Heiko Schocher <hs@denx.de>
24023 Date:   Wed Oct 15 09:35:26 2008 +0200
24024
24025     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
24026
24027     This patch fixes the following warnings, when using
24028     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
24029     systems:
24030
24031     soft_i2c.c: In function 'send_reset':
24032     soft_i2c.c:93: warning: unused variable 'immr'
24033     soft_i2c.c: In function 'send_start':
24034     soft_i2c.c:124: warning: unused variable 'immr'
24035     soft_i2c.c: In function 'send_stop':
24036     soft_i2c.c:146: warning: unused variable 'immr'
24037     soft_i2c.c: In function 'send_ack':
24038     soft_i2c.c:171: warning: unused variable 'immr'
24039     soft_i2c.c: In function 'write_byte':
24040     soft_i2c.c:196: warning: unused variable 'immr'
24041     soft_i2c.c: In function 'read_byte':
24042     soft_i2c.c:244: warning: unused variable 'immr'
24043
24044     Signed-off-by: Heiko Schocher <hs@denx.de>
24045
24046 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
24047 Author: Heiko Schocher <hs@denx.de>
24048 Date:   Wed Oct 15 09:34:45 2008 +0200
24049
24050     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
24051
24052     Signed-off-by: Heiko Schocher <hs@denx.de>
24053
24054 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
24055 Author: Heiko Schocher <hs@denx.de>
24056 Date:   Wed Oct 15 09:34:05 2008 +0200
24057
24058     mgcoge: fix Coding Style issues.
24059
24060     Signed-off-by: Heiko Schocher <hs@denx.de>
24061
24062 commit e43a27c49712203fe8848a17714330623edfb2eb
24063 Author: Heiko Schocher <hs@denx.de>
24064 Date:   Wed Oct 15 09:33:30 2008 +0200
24065
24066     I2C: add new command i2c reset.
24067
24068     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
24069     it is not possible to get out of this, until the
24070     complete Hardware gets a reset. This new commando
24071     calls again i2c_init (and that calls i2c_init_board
24072     if defined), which will deblock the I2C Bus.
24073
24074     Signed-off-by: Heiko Schocher <hs@denx.de>
24075     Signed-off-by: Wolfgang Denk <wd@denx.de>
24076
24077 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
24078 Author: Heiko Schocher <hs@denx.de>
24079 Date:   Wed Oct 15 09:32:25 2008 +0200
24080
24081     mgsuvd, mgcoge: move this 2 boards in one dir.
24082
24083     There are some more extensions, which are for both boards
24084     and some more boards from this manufacturer will follow soon.
24085
24086     Signed-off-by: Heiko Schocher <hs@denx.de>
24087     Signed-off-by: Wolfgang Denk <wd@denx.de>
24088
24089 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
24090 Author: Dirk Eibach <eibach@gdsys.de>
24091 Date:   Wed Oct 8 13:44:27 2008 +0200
24092
24093     hwmon: Add LM63 support
24094
24095     This patch adds support for the National LM63 temperature
24096     sensor with integrated fan control. It's used on the GDSys
24097     Neo board (405EP) which will be submitted later.
24098
24099     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
24100     Acked-by: Stefan Roese <sr@denx.de>
24101
24102 commit 7ba890bf2f2b92831420243c058951aa831119fd
24103 Author: Kyungmin Park <kmpark@infradead.org>
24104 Date:   Wed Oct 8 11:01:17 2008 +0900
24105
24106     Add Red Black Tree support
24107
24108     Now it's used at UBI module. Of course other modules can use it.
24109     If you want to use it, please define CONFIG_RBTREE
24110
24111     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24112
24113 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
24114 Author: richardretanubun <richardretanubun@ruggedcom.com>
24115 Date:   Mon Oct 6 16:10:53 2008 -0400
24116
24117     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
24118
24119     Added support for CONFIG_EFI_PARTITION to ext2 commands.
24120     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
24121
24122 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
24123 Author: richardretanubun <richardretanubun@ruggedcom.com>
24124 Date:   Fri Sep 26 11:13:22 2008 -0400
24125
24126     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
24127
24128     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
24129     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
24130
24131     Based on linux/fs/partitions/efi.[ch]
24132
24133     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
24134
24135 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
24136 Author: Bartlomiej Sieka <tur@semihalf.com>
24137 Date:   Wed Oct 1 15:26:32 2008 +0200
24138
24139     FIT: output image load address for type 'firmware', fix message while there
24140
24141     Now that the auto-update feature uses the 'firmware' type for updates, it is
24142     useful to inspect the load address of such images.
24143
24144     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24145
24146 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
24147 Author: Bartlomiej Sieka <tur@semihalf.com>
24148 Date:   Wed Oct 1 15:26:31 2008 +0200
24149
24150     Automatic software update from TFTP server
24151
24152     The auto-update feature allows to automatically download software updates
24153     from a TFTP server and store them in Flash memory during boot. Updates are
24154     contained in a FIT file and protected with SHA-1 checksum.
24155
24156     More detailed description can be found in doc/README.update.
24157
24158     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24159     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24160
24161 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
24162 Author: Bartlomiej Sieka <tur@semihalf.com>
24163 Date:   Wed Oct 1 15:26:27 2008 +0200
24164
24165     flash: factor out adjusting of Flash address to the end of sector
24166
24167     The upcoming automatic update feature needs the ability to adjust an
24168     address within Flash to the end of its respective sector. Factor out
24169     this functionality to a new function flash_sect_roundb().
24170
24171     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24172     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24173     Signed-off-by: Stefan Roese <sr@denx.de>
24174
24175 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
24176 Author: Bartlomiej Sieka <tur@semihalf.com>
24177 Date:   Wed Oct 1 15:26:29 2008 +0200
24178
24179     net: Make TFTP server timeout configurable
24180
24181     There are two aspects of a TFTP transfer involving timeouts:
24182     1. timeout waiting for initial server reply after sending RRQ
24183     2. timeouts while transferring actual data from the server
24184
24185     Since the upcoming auto-update feature attempts a TFTP download during each
24186     boot, it is undesirable to have a long delay when the TFTP server is not
24187     available. Thus, this commit makes the server timeout (1.) configurable by two
24188     global variables:
24189
24190     TftpRRQTimeoutMSecs
24191     TftpRRQTimeoutCountMax
24192
24193     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
24194     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
24195     The total delay when trying to download a file from a non-existing TFTP server
24196     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
24197
24198     Timeouts during file transfers (2.) are unaffected.
24199
24200     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24201     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24202     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24203
24204 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
24205 Author: Bartlomiej Sieka <tur@semihalf.com>
24206 Date:   Wed Oct 1 15:26:28 2008 +0200
24207
24208     net: express the first argument to NetSetTimeout() in milliseconds
24209
24210     Enforce millisecond semantics of the first argument to NetSetTimeout() --
24211     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
24212     get_timer() countiing in milliseconds).
24213
24214     Rationale for this patch is to enable millisecond granularity for
24215     network-related timeouts, which is needed for the upcoming automatic
24216     software update feature.
24217
24218     Summary of changes:
24219     - do not scale the first argument to NetSetTimeout() by CFG_HZ
24220     - change timeout values used in the networking code to milliseconds
24221
24222     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24223     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24224     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24225
24226 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
24227 Author: richardretanubun <richardretanubun@ruggedcom.com>
24228 Date:   Mon Sep 29 18:28:23 2008 -0400
24229
24230     Adds two more ethernet interface to 83xx
24231
24232     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
24233     Six eth interface is chosen because the platform I am using combines
24234     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
24235
24236     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
24237     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24238
24239 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
24240 Author: Haiying Wang <Haiying.Wang@freescale.com>
24241 Date:   Wed Sep 24 11:42:12 2008 -0500
24242
24243     Change UEC PHY interface to RGMII on MPC8568MDS
24244
24245     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
24246
24247     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
24248     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
24249
24250     Now both UEC1 and UEC2 can work properly under u-boot.
24251
24252     It is also in consistent with the kernel setting for 8568 UEC phy interface.
24253
24254     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24255     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24256
24257 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
24258 Author: Wolfgang Denk <wd@denx.de>
24259 Date:   Sat Oct 18 21:30:31 2008 +0200
24260
24261     Prepare v2008.10 release: update CHANGELOG & Makefile
24262
24263     Signed-off-by: Wolfgang Denk <wd@denx.de>
24264
24265 commit f7a35a60cf45491871a5c28e9ad24db005487857
24266 Author: Heiko Schocher <hs@denx.de>
24267 Date:   Fri Oct 17 18:24:06 2008 +0200
24268
24269     mgcoge: add redundant environment sector
24270
24271     Signed-off-by: Heiko Schocher <hs@denx.de>
24272     Signed-off-by: Wolfgang Denk <wd@denx.de>
24273
24274 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
24275 Author: Heiko Schocher <hs@denx.de>
24276 Date:   Fri Oct 17 18:23:27 2008 +0200
24277
24278     mgsuvd: update size of environment
24279
24280     Signed-off-by: Heiko Schocher <hs@denx.de>
24281
24282 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
24283 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
24284 Date:   Thu Oct 16 13:38:00 2008 -0500
24285
24286     83xx NAND boot: wait for LTESR[CC]
24287
24288     At least some revisions of the 8313, and possibly other chips, do not
24289     wait for all pages of the initial 4K NAND region to be loaded before
24290     beginning execution; thus, we wait for it before branching out of the
24291     first NAND page.
24292
24293     This fixes warm reset problems when booting from NAND on 8313erdb.
24294
24295     Signed-off-by: Scott Wood <scottwood@freescale.com>
24296     Acked-by: Kim Phillips <kim.phillips@freescale.com>
24297
24298 commit bf29e0ea0af03d593c64614136acc723a7a022a2
24299 Author: Yuri Tikhonov <yur@emcraft.com>
24300 Date:   Fri Oct 17 12:54:18 2008 +0200
24301
24302     ppc4xx: PPC44x MQ initialization
24303
24304     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
24305     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
24306     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
24307
24308     Previously the appropriate initialization had been made in Linux, by the
24309     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
24310     registers after normal operation has begun is not supported and could
24311     have unpredictable results.
24312
24313     Comment from Stefan: This patch doesn't change the resulting value of the
24314     MQ registers. It explicitly sets/clears all bits to the desired state which
24315     better documents the resulting register value instead of relying on pre-set
24316     default values.
24317
24318     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24319     Signed-off-by: Stefan Roese <sr@denx.de>
24320
24321 commit ec081c2c190148b374e86a795fb6b1c49caeb549
24322 Author: Stefan Roese <sr@denx.de>
24323 Date:   Fri Oct 17 12:51:46 2008 +0200
24324
24325     ppc4xx: PPC44x MQ initialization
24326
24327     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
24328     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
24329     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
24330
24331     Previously the appropriate initialization had been made in Linux, by the
24332     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
24333     registers after normal operation has begun is not supported and could
24334     have unpredictable results.
24335
24336     Comment from Stefan: This patch doesn't change the resulting value of the
24337     MQ registers. It explicitly sets/clears all bits to the desired state which
24338     better documents the resulting register value instead of relying on pre-set
24339     default values.
24340
24341     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
24342     Signed-off-by: Stefan Roese <sr@denx.de>
24343
24344 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
24345 Author: Kumar Gala <galak@kernel.crashing.org>
24346 Date:   Thu Oct 16 21:58:50 2008 -0500
24347
24348     85xx: Using proper I2C source clock divider for MPC8544
24349
24350     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
24351     bit 26, instead it should be bit 28.  This caused in incorrect
24352     interpretation of the i2c_clk which is the same as the SEC clk on
24353     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
24354     in PORDEVSR2.
24355
24356     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24357
24358 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
24359 Author: Kumar Gala <galak@kernel.crashing.org>
24360 Date:   Thu Oct 16 21:58:49 2008 -0500
24361
24362     Revert "85xx: Using proper I2C source clock divider for MPC8544"
24363
24364     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
24365
24366     The fix introduced by this patch is not correct.  The problem is
24367     that the documentation is not correct for the MPC8544 with regards
24368     to which bit in PORDEVSR2 is for the SEC_CFG.
24369
24370     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24371
24372 commit 2179c4766bffeece98e5e92040629a96c97e230c
24373 Author: Kumar Gala <galak@kernel.crashing.org>
24374 Date:   Wed Oct 15 10:19:41 2008 -0500
24375
24376     85xx: Fix compile warning
24377
24378     mpc8536ds.c: In function 'is_sata_supported':
24379     mpc8536ds.c:614: warning: unused variable 'devdisr'
24380
24381     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24382
24383 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
24384 Author: Jason Jin <Jason.jin@freescale.com>
24385 Date:   Wed Oct 15 10:40:24 2008 +0800
24386
24387     Fix the function conflict in x86emu when DEBUG is on
24388
24389     The function parse_line() in common/main.c was exposed globally by commit
24390     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
24391     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
24392     This patch fix this by renaming the function in the debug.c file.
24393
24394     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
24395
24396 commit b4dbacf69a669a17487054552fc2761149dd6767
24397 Author: Wolfgang Denk <wd@denx.de>
24398 Date:   Wed Oct 15 15:50:45 2008 +0200
24399
24400     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
24401
24402     Signed-off-by: Wolfgang Denk <wd@denx.de>
24403
24404 commit 374b9038293d01d8744a46af9b7854a6fd99b228
24405 Author: Heiko Schocher <hs@denx.de>
24406 Date:   Wed Oct 15 09:51:19 2008 +0200
24407
24408     Fix compiler warning in lib_ppc/board.c
24409
24410     Fix compiler warning introduced by commit 0f8cbc18
24411
24412     Signed-off-by: Heiko Schocher <hs@denx.de>
24413     Signed-off-by: Wolfgang Denk <wd@denx.de>
24414
24415 commit 9724555755a6f1066636481b41f7094e0ce93a69
24416 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
24417 Date:   Thu Oct 9 10:29:14 2008 +0530
24418
24419     mpc83xx: wait till UPM completes the write to array
24420
24421     Reference manual states that MxMR[MAD] increment is the indication
24422     of write to UPM array is complete. Honour that. Also, make the dummy
24423     write explicit.
24424
24425     also fix the comment.
24426
24427     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
24428     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24429
24430 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
24431 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
24432 Date:   Wed Oct 8 18:12:20 2008 -0500
24433
24434     Remove unwanted ';' at end of define.
24435
24436     Currently this is not creating any problem. But it will result
24437     in compilation error when used as below.
24438
24439     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
24440
24441     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
24442
24443     continuation of the theme based on git grep "^#define CFG_.*;$" include/
24444
24445     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24446
24447 commit b2934a56650e9a6c54432f9ce6dc36757967385e
24448 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24449 Date:   Mon Oct 6 10:53:59 2008 -0400
24450
24451     ARM DaVinci: Add maintainer information for SFFSDR board.
24452
24453     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24454
24455 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
24456 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24457 Date:   Sat Oct 4 19:26:16 2008 +0200
24458
24459     api: fix type mismatch
24460
24461     This patch fixes a type mismatch and thus removes a compiler
24462     warning when compiling with CONFIG_API on powerpc.
24463
24464     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24465
24466 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
24467 Author: Peter Tyser <ptyser@xes-inc.com>
24468 Date:   Wed Oct 1 12:25:04 2008 -0500
24469
24470     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
24471
24472     Original code displayed:
24473      => help i2c
24474      i2c i2c speed [speed] - show or set I2C bus speed
24475      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
24476      ...
24477
24478     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24479
24480 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
24481 Author: Wolfgang Denk <wd@denx.de>
24482 Date:   Tue Oct 14 22:13:41 2008 +0200
24483
24484     Update CHANGELOG
24485
24486     Signed-off-by: Wolfgang Denk <wd@denx.de>
24487
24488 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
24489 Author: Jason Jin <Jason.jin@freescale.com>
24490 Date:   Fri Oct 10 11:41:01 2008 +0800
24491
24492     Do not init SATA when disabled on 8536DS.
24493
24494     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
24495     driver still try to access the SATA registers, the cpu will hangup.
24496     This patch try to fix this by reading the serdes status before the SATA
24497     initialize.
24498
24499     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
24500     Acked-by: Andy Fleming <afleming@freescale.com>
24501
24502 commit 9dbc366744960013965fce8851035b6141f3b3ae
24503 Author: Remy Bohmer <linux@bohmer.net>
24504 Date:   Fri Oct 10 10:23:22 2008 +0200
24505
24506     The PIPE_INTERRUPT flag is used wrong
24507
24508     At a lot of places in the code the PIPE_INTERRUPT flags and friends
24509     are used wrong. The wrong bits are compared to this flag resulting
24510     in wrong conditions. Also there are macros that should be used for
24511     PIPE_* flags.
24512     This patch tries to fix them all, however, I was not able to test the
24513     changes, because I do not have any of these boards.
24514
24515     Review required!
24516
24517     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24518     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24519
24520 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
24521 Author: Remy Bohmer <linux@bohmer.net>
24522 Date:   Fri Oct 10 10:23:21 2008 +0200
24523
24524     fix USB initialisation procedure
24525
24526     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
24527     At some places directly 8,16,32,64 was used instead of the encoded
24528     value. Made a enum for the options to make this more clear and to help
24529     preventing similar errors in the future.
24530
24531     After fixing this bug it became clear that another bug existed where
24532     the 'pipe' is and-ed with PIPE_* flags, where it should have been
24533     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
24534
24535     Also removed the triple 'get_device_descriptor' sequence, it has no use,
24536     and Windows nor Linux behaves that way.
24537     There is also a poll going on with a timeout when usb_control_msg() fails.
24538     However, the poll is useless, because the flag will never be set on a error,
24539     because there is no code that runs in a parallel that can set this flag.
24540     Changed this to something more logical.
24541
24542     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
24543     Linux is doing. There is no difference anymore in the early initialisation
24544     sequence.
24545
24546     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24547     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24548
24549 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
24550 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
24551 Date:   Fri Oct 3 00:03:55 2008 +0400
24552
24553     fsl_diu: fix alignment error that caused malloc corruption
24554
24555     When aligning malloc()ed screen_base, invalid offset was added.
24556     This not only caused misaligned result (which did not cause hardware
24557     misbehaviour), but - worse - caused screen_base + smem_len to
24558     be out of malloc()ed space, which in turn caused breakage of
24559     futher malloc()/free() operation.
24560
24561     This patch fixes screen_base alignment.
24562
24563     Also this patch makes memset() that cleans framebuffer to be executed
24564     on first initialization of diu, not only on re-initialization. It looks
24565     correct to clean the framebuffer instead of displaying random garbage;
24566     I believe that was disabled only because that memset caused breakage
24567     of malloc/free described above - which no longer happens with the fix
24568     described above.
24569
24570     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
24571
24572 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
24573 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24574 Date:   Wed Sep 24 10:29:37 2008 +0200
24575
24576     api: Fix building with CONFIG_API
24577
24578     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
24579
24580     USB_MAX_STOR_DEV is defined in include/usb.h, but
24581     needed in api/api_storage.c.
24582
24583     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24584
24585 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
24586 Author: Peter Tyser <ptyser@xes-inc.com>
24587 Date:   Tue Sep 23 12:39:40 2008 -0500
24588
24589     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
24590
24591     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24592
24593 commit 81e612014c40c922ec35488d17c504d4e9286f06
24594 Author: Peter Tyser <ptyser@xes-inc.com>
24595 Date:   Tue Sep 23 12:38:42 2008 -0500
24596
24597     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
24598
24599     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
24600     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
24601     sensor drivers are not necessary
24602
24603     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24604
24605 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
24606 Author: Mike Frysinger <vapier@gentoo.org>
24607 Date:   Tue Oct 14 07:04:38 2008 -0400
24608
24609     cmd_spi: remove broken signed casting for display
24610
24611     Since we're working with unsigned data, you can't apply a signed pointer
24612     cast and then attempt to print the result.  Otherwise you get wrong output
24613     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
24614
24615     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24616
24617 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
24618 Author: Mike Frysinger <vapier@gentoo.org>
24619 Date:   Tue Oct 14 07:05:24 2008 -0400
24620
24621     strings cmd: drop old CONFIG_CFG_STRINGS define
24622
24623     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
24624     CONFIG_CMD_STRINGS and Makefile control.
24625
24626     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24627
24628 commit fecb5ade3b37f62981f2b05b621005850173aaa9
24629 Author: Jason Jin <Jason.jin@freescale.com>
24630 Date:   Fri Sep 19 17:32:49 2008 +0800
24631
24632     Fix the NAND size overflow issue.
24633
24634     When the total size of all NAND devices exceeds 4 GiB, the size  will
24635     overflow. This patch tries to fix this.
24636
24637     Note that we still have a problem when a single NAND device is bigger
24638     than 4 GiB: then the overflow would actually happen earlier, i. e.
24639     when storing the size in nand_info[].size, as nand_info[].size is an
24640     "u_int32_t".
24641
24642     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
24643     Signed-off-by: Wolfgang Denk <wd@denx.de>
24644
24645 commit 30f574717277238b9014b8136c90eea77196490f
24646 Author: Louis Su <louis@asix.com.tw>
24647 Date:   Wed Jul 9 11:01:37 2008 +0800
24648
24649     AX88180: new gigabit network driver
24650
24651     Signed-off-by: Louis Su <louis@asix.com.tw>
24652     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24653
24654 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
24655 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
24656 Date:   Tue Aug 19 16:07:03 2008 +0200
24657
24658     enable 10/100M at VSC8601 at tsec driver
24659
24660     Currently VSC8601 doesn't link with 10/100M partners if the
24661     EEPROM/Strapping is not set up.
24662     Setting the auto-neg register fixes this.
24663
24664     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
24665     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24666
24667 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
24668 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24669 Date:   Tue Sep 30 15:02:53 2008 +0900
24670
24671     net: ne2000: Divided a function of NE2000 driver
24672
24673     get_prom function was used __attriute__ , but it is not enable.
24674     ax88796.o does not do link besides ne2000.o. When ld is carried
24675     out, get_prom function of ax88796.c is ignored.
24676     This problem is a thing by specifications of ld.
24677     I checked and test this patch on SuperH and MIPS.
24678
24679     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24680     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24681
24682 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
24683 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24684 Date:   Tue Oct 14 11:10:59 2008 +0900
24685
24686     sh: rsk7203: Add smc911x driver support to board config file
24687
24688     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24689     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24690
24691 commit cae6f909baf86357b3c0bd01acfc414348c4d175
24692 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24693 Date:   Thu Oct 9 13:54:33 2008 +0900
24694
24695     sh: Fix cannot execute a stand-alone application
24696
24697     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
24698
24699     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24700     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24701
24702 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
24703 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
24704 Date:   Wed Oct 8 23:38:00 2008 -0500
24705
24706     fsl_pci_init do not scan bus when configured as an end-point
24707
24708     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
24709     Acked-by: Andy Fleming <afleming@freescale.com>
24710
24711 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
24712 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24713 Date:   Tue Sep 16 17:07:53 2008 -0400
24714
24715     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
24716
24717     This is no longer necessary now that the GD_FLG_RELOC flag is set for
24718     all ARM boards.
24719
24720     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24721
24722 commit d977a57356657ba241256231efca32828a5822f9
24723 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
24724 Date:   Sat Sep 13 10:04:32 2008 +0200
24725
24726     Fix lzma uncompress call (image_start wrongly used instead image_len)
24727
24728     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
24729
24730 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
24731 Author: Nick Spence <nick.spence@freescale.com>
24732 Date:   Thu Aug 28 14:09:15 2008 -0700
24733
24734     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
24735
24736     This is needed in unlock_ram_in_cache() because it is called from C and
24737     will corrupt the small data area anchor that is kept in R2.
24738
24739     lock_ram_in_cache() is modified similarly as good coding practice, but
24740     is not called from C.
24741
24742     Signed-off-by: Nick Spence <nick.spence@freescale.com>
24743
24744 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
24745 Author: Kumar Gala <galak@kernel.crashing.org>
24746 Date:   Tue Aug 19 15:05:34 2008 -0500
24747
24748     86xx: remove redudant code with lib_ppc/interrupts.c
24749
24750     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
24751     Not know how that happened, but there is no good reason for it.
24752
24753     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
24754     they exist.
24755
24756     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24757
24758 commit 0d01f66d235118515b5086b88f82498bc0695d6a
24759 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
24760 Date:   Thu Oct 9 01:26:36 2008 -0500
24761
24762     CFI: cfi_flash write fix for AMD legacy
24763
24764     The flash_unlock_seq requires a sector for AMD_LEGACY.
24765     Fix a retcode check typeo.
24766
24767     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
24768     Signed-off-by: Stefan Roese <sr@denx.de>
24769
24770 commit 542b385a620a1783454a00424930e51895f45073
24771 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24772 Date:   Tue Oct 7 13:13:10 2008 +0200
24773
24774     ppc4xx: Fix USB 2.0 phy reset sequence
24775
24776     This patch fixes USB 2.0 communication issues on some DU440 boards.
24777
24778     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24779     Signed-off-by: Stefan Roese <sr@denx.de>
24780
24781 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
24782 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24783 Date:   Tue Oct 7 13:13:09 2008 +0200
24784
24785     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
24786
24787     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24788     Signed-off-by: Stefan Roese <sr@denx.de>
24789
24790 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
24791 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24792 Date:   Tue Oct 7 13:13:08 2008 +0200
24793
24794     ppc4xx: Fix DU440 GPIO configuration
24795
24796     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24797     Signed-off-by: Stefan Roese <sr@denx.de>
24798
24799 commit 35dd025c70fcc4389317db2f2a9d14795172137d
24800 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24801 Date:   Tue Oct 7 13:13:07 2008 +0200
24802
24803     ppc4xx: Update DU440 config
24804
24805     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24806     Signed-off-by: Stefan Roese <sr@denx.de>
24807
24808 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
24809 Author: Kumar Gala <galak@kernel.crashing.org>
24810 Date:   Wed Oct 8 15:36:39 2008 -0500
24811
24812     MPC8572DS: Fix compile warnings
24813
24814     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
24815     compile warnings:
24816
24817     cmd_i2c.c:112: warning: missing braces around initializer
24818     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
24819
24820     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24821
24822 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
24823 Author: Wolfgang Grandegger <wg@grandegger.com>
24824 Date:   Tue Sep 30 10:55:57 2008 +0200
24825
24826     85xx: Using proper I2C source clock divider for MPC8544
24827
24828     Measurements with our MPC8544 board showed that the I2C bus frequency
24829     is wrong by a factor of 1.5. Obviously, the interpretation of the
24830     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
24831     correct. There seems to be an error in the 8544 RM.
24832
24833     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
24834
24835 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
24836 Author: Rafal Czubak <rcz@semihalf.com>
24837 Date:   Wed Oct 8 13:41:30 2008 +0200
24838
24839     FSL: Fix get_cpu_board_revision() return value.
24840
24841     get_cpu_board_revision() returned board revision based on information stored
24842     in global static struct eeprom. It should instead use one from local struct
24843     board_eeprom, to which the data is actually read from EEPROM. The bug led to
24844     system hang after printing L1 cache information on U-Boot startup. The problem
24845     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
24846     boards using CFG_I2C_EEPROM_CCID.
24847
24848     The change has been successfully tested on MPC8555CDS system.
24849
24850     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
24851
24852 commit 747f316cca484ed627a97dd3391febabce384186
24853 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24854 Date:   Tue Sep 30 20:08:49 2008 +0200
24855
24856     update uImage FIT multi documentation
24857
24858     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24859
24860 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
24861 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24862 Date:   Tue Sep 30 20:08:36 2008 +0200
24863
24864     move README.imx31 to doc/ and merge with README.mx31
24865
24866     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24867
24868 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
24869 Author: Guennadi Liakhovetski <lg@denx.de>
24870 Date:   Thu Sep 25 20:54:37 2008 +0200
24871
24872     i.MX31: switch to CFG_HZ=1000
24873
24874     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
24875     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
24876     provides 2% or 0.4% precision depending on the
24877     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
24878     boot-delay.
24879
24880     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24881
24882 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
24883 Author: gnusercn <gnusercn@gmail.com>
24884 Date:   Wed Oct 8 18:58:58 2008 +0200
24885
24886     Fix bug: in arch-arm, env_get_char dose not work fine
24887
24888     due to the arm implementation which supposed that U-Boot is in RAM
24889     when we jump to start_armboot
24890
24891     Signed-off-by: gnusercn <gnusercn@gmail.com>
24892     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24893
24894 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
24895 Author: Adam Graham <agraham@amcc.com>
24896 Date:   Mon Oct 6 10:16:13 2008 -0700
24897
24898     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
24899
24900     After changing SDRAM_CLKTR phase value rerun the memory preload
24901     initialization sequence (INITPLR) to reset and relock the memory
24902     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
24903     adjustment effects the phase relationship of the internal, to the
24904     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
24905
24906     Signed-off-by: Adam Graham <agraham@amcc.com>
24907     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
24908     Signed-off-by: Stefan Roese <sr@denx.de>
24909
24910 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
24911 Author: Haiying Wang <Haiying.Wang@freescale.com>
24912 Date:   Fri Oct 3 11:48:03 2008 -0400
24913
24914     Remove redundant #define for MPC8536DS
24915
24916     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24917
24918 commit 445a7b38308eb05b41de74165b20855db58c7ee5
24919 Author: Haiying Wang <Haiying.Wang@freescale.com>
24920 Date:   Fri Oct 3 11:47:30 2008 -0400
24921
24922     Add ID EEPROM support for MPC8572DS
24923
24924     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
24925     system information like mac addresses etc. This patch enables it.
24926
24927     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24928
24929 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
24930 Author: Haiying Wang <Haiying.Wang@freescale.com>
24931 Date:   Fri Oct 3 11:46:59 2008 -0400
24932
24933     Minor fixes for I2C address on MPC8572DS
24934
24935     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
24936     according to the board spec, and adds the 2nd i2c bus offset.
24937
24938     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
24939
24940 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
24941 Author: Jason Jin <Jason.jin@freescale.com>
24942 Date:   Sat Sep 27 14:40:57 2008 +0800
24943
24944     Fix the incorrect DDR clk freq reporting on 8536DS
24945
24946     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
24947     The display is still sync mode DDR freq. This patch try to fix
24948     this. The display DDR freq is now the actual freq in both
24949     sync and async mode.
24950
24951     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
24952
24953 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
24954 Author: Kumar Gala <galak@kernel.crashing.org>
24955 Date:   Tue Oct 7 10:28:46 2008 -0500
24956
24957     85xx: Remove setting of *cache-line-size in device trees
24958
24959     ePAPR says if the *cache-block-size is the same as *cache-line-size
24960     than we don't need the *cache-line-size property.
24961
24962     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24963
24964 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
24965 Author: Mark Jackson <mpfj@mimc.co.uk>
24966 Date:   Fri Oct 3 11:48:57 2008 +0100
24967
24968     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
24969
24970     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
24971     Also fixed default uImage location.
24972
24973     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
24974     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24975
24976 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
24977 Author: Gerald Van Baren <vanbaren@cideas.com>
24978 Date:   Sat Oct 4 07:56:06 2008 -0400
24979
24980     libfdt: Fix error in documentation for fdt_get_alias_namelen()
24981
24982     Oops, screwed up the function name in the documenting comment for this
24983     function.  Trivial correction in this patch.
24984
24985     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
24986     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24987
24988 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
24989 Author: David Gibson <david@gibson.dropbear.id.au>
24990 Date:   Wed Aug 20 16:55:14 2008 +1000
24991
24992     libfdt: Add function to explicitly expand aliases
24993
24994     Kumar has already added alias expansion to fdt_path_offset().
24995     However, in some circumstances it may be convenient for the user of
24996     libfdt to explicitly get the string expansion of an alias.  This patch
24997     adds a function to do this, fdt_get_alias(), and uses it to implement
24998     fdt_path_offset().
24999
25000     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25001
25002 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
25003 Author: Mike Frysinger <vapier@gentoo.org>
25004 Date:   Thu Oct 2 01:55:38 2008 -0400
25005
25006     cfi_flash: do not reset flash when probe fails
25007
25008     The CFI flash driver starts at flash_init() which calls down into
25009     flash_get_size().  This starts by calling flash_detect_cfi().  If said
25010     function fails, flash_get_size() finishes by attempting to reset the
25011     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
25012     which filters down into flash_make_cmd() and that happily smashes the
25013     stack by sticking info->portwidth bytes into a cfiword_t variable that
25014     lives on the stack.  On a 64bit system you probably won't notice, but
25015     killing the last 8 bytes on a 32bit system usually leads to a corrupt
25016     return address.  Which is what happens on a Blackfin system.
25017
25018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25019     Signed-off-by: Stefan Roese <sr@denx.de>
25020
25021 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
25022 Author: Stefan Roese <sr@denx.de>
25023 Date:   Fri Sep 26 17:03:26 2008 +0200
25024
25025     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
25026
25027     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
25028     Without this, the chosen node is not overwritten if it already
25029     exists.
25030
25031     Signed-off-by: Stefan Roese <sr@denx.de>
25032
25033 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
25034 Author: Jon Loeliger <jdl@freescale.com>
25035 Date:   Thu Sep 25 11:02:17 2008 -0500
25036
25037     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
25038
25039     Using Gcc 4.3 detected this problem:
25040
25041         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
25042         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
25043         occur when assuming that (X + c) < X is always false
25044
25045     To fix the problem, treat the offset as an unsigned int.
25046
25047     The problem report and proposed fix were provided
25048     by Steve Papacharalambous <stevep@freescale.com>.
25049
25050     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25051
25052 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
25053 Author: David Gibson <david@gibson.dropbear.id.au>
25054 Date:   Fri Aug 29 14:19:13 2008 +1000
25055
25056     libfdt: Fix bugs in fdt_get_path()
25057
25058     The current implementation of fdt_get_path() has a couple of bugs,
25059     fixed by this patch.
25060
25061     First, contrary to its documentation, on success it returns the length
25062     of the node's path, rather than 0.  The testcase is correspondingly
25063     wrong, and the patch fixes this as well.
25064
25065     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
25066     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
25067     Specifically this happens when there is insufficient space even to
25068     hold the path's second last component.  This behaviour is corrected,
25069     and the testcase updated to check it.
25070
25071     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25072
25073 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
25074 Author: Wolfgang Denk <wd@denx.de>
25075 Date:   Wed Oct 1 12:34:58 2008 +0200
25076
25077     TQM5200: enable support for ATAPI devices
25078
25079     Signed-off-by: Wolfgang Denk <wd@denx.de>
25080
25081 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
25082 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25083 Date:   Mon Sep 15 05:48:25 2008 +0200
25084
25085     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
25086
25087     we need this due to the arm implementation which supposed that U-Boot
25088     is in RAM when we jump to start_armboot
25089
25090     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
25091     in order to do it for all arm board
25092
25093     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25094
25095 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
25096 Author: Kim Phillips <kim.phillips@freescale.com>
25097 Date:   Wed Sep 24 08:46:25 2008 -0500
25098
25099     mpc83xx: don't disable autoboot
25100
25101     bootdelay set to -1 'permanently' disables autobooting, even if
25102     bootcmd is specified.  Change to a positive value to allow
25103     autobooting when a bootcmd is set.
25104
25105     Reported-by: Coray Tate <Coray.Tate@freescale.com>
25106     Cc: Scott Wood <scottwood@freescale.com>
25107     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25108
25109 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
25110 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25111 Date:   Wed Sep 24 10:42:15 2008 +0900
25112
25113     mpc83xx: Fix typo in include/mpc83xx.h
25114
25115     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
25116
25117     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25118     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25119
25120 commit 162c41c03179727a1d14262f703c9a8bc40231fa
25121 Author: Kim Phillips <kim.phillips@freescale.com>
25122 Date:   Tue Sep 23 09:38:49 2008 -0500
25123
25124     mpc83xx: add h/w flash protection to board configs
25125
25126     the operating system may leave flash in a h/w locked state after writing.
25127     This allows u-boot to continue to write flash by enabling h/w unlocking
25128     by default.
25129
25130     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25131
25132 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
25133 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25134 Date:   Thu Sep 11 21:35:36 2008 +0400
25135
25136     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
25137
25138     The spd_dram code shifts the base address, then masks 20 bits, but
25139     forgets to shift the base address back. Fix this by just masking the
25140     base address correctly.
25141
25142     Found this bug while trying to relocate a DDR memory at the base != 0.
25143
25144     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25145     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25146
25147 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
25148 Author: Stefan Roese <sr@denx.de>
25149 Date:   Mon Sep 22 16:10:43 2008 +0200
25150
25151     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
25152
25153     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
25154     either one PCIe node or the SATA node in the device tree blob. This
25155     patch removes the unnecessary and even confusing warning, when the node
25156     is not found at all.
25157
25158     Signed-off-by: Stefan Roese <sr@denx.de>
25159
25160 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
25161 Author: Remy Bohmer <linux@bohmer.net>
25162 Date:   Fri Sep 19 13:30:06 2008 +0200
25163
25164     Add missing device types to dev_print() in part.c
25165
25166     Signed-off-by: Remy Bohmer <linux@bohmer.net>
25167
25168 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
25169 Author: Wolfgang Denk <wd@denx.de>
25170 Date:   Mon Sep 22 22:23:06 2008 +0200
25171
25172     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
25173     eventually leads to a machine check. This change assures that DPRAM
25174     is allocated only once in that case.
25175
25176     Signed-off-by: Gary Jennejohn <garyj@denx.de>
25177     Signed-off-by: Wolfgang Denk <wd@denx.de>
25178
25179 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
25180 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
25181 Date:   Wed Sep 17 17:57:34 2008 +0200
25182
25183     Fix Spartan-3 definitions.
25184
25185     A few Spartan-3 definitions erroneously use Spartan-3E size
25186     constants. This patch fixes them.
25187
25188     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
25189
25190 commit 28113e1f0da4146b823ffce37680d31d5685a60b
25191 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
25192 Date:   Wed Sep 17 17:41:58 2008 +0200
25193
25194     Remove duplicate Spartan-3E definition.
25195
25196     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
25197     Signed-off-by: Wolfgang Denk <wd@denx.de>
25198
25199 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
25200 Author: Anatolij Gustschin <agust@denx.de>
25201 Date:   Wed Sep 17 13:46:17 2008 +0200
25202
25203     socrates: change default mtest address range
25204
25205     Running mtest command on socrates without specifying
25206     an address range crashes the board. This patch changes
25207     default mtest address range to prevent this behavior.
25208
25209     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25210
25211 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
25212 Author: Anatolij Gustschin <agust@denx.de>
25213 Date:   Wed Sep 17 12:34:45 2008 +0200
25214
25215     socrates: fix crash after relocation
25216
25217     Currently U-Boot crashes after relocation to RAM.
25218     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
25219     register to READ_LAT + 1 (to the value it was before
25220     conversion of socrates to new DDR code) fixes the
25221     problem.
25222
25223     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25224
25225 commit 562788b0a303f3528b920d81f547f5ca77ba528e
25226 Author: Anatolij Gustschin <agust@denx.de>
25227 Date:   Wed Sep 17 11:45:51 2008 +0200
25228
25229     socrates: fix SPD EEPROM address
25230
25231     Commit be0bd8234b9777ecd63c4c686f72af070d886517
25232     changed SPD EEPROM address to 0x51 and DDR SDRAM
25233     detection stopped working. Change this address
25234     back to 0x50.
25235
25236     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25237
25238 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
25239 Author: Stefan Roese <sr@denx.de>
25240 Date:   Mon Sep 22 11:06:50 2008 +0200
25241
25242     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
25243
25244     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
25245
25246     Signed-off-by: Stefan Roese <sr@denx.de>
25247
25248 commit e58c41e26cf3c8accd60311be579f452e368e97e
25249 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25250 Date:   Thu Sep 18 20:13:08 2008 +0900
25251
25252     usb: Fix compile warning of r8a66597-hcd
25253
25254     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25255     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25256
25257 commit b5d10a13525c07ec6374adf840d7c87553b5f189
25258 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25259 Date:   Thu Sep 18 19:34:36 2008 +0900
25260
25261     sh: Fix compile warning
25262
25263     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25264
25265 commit 4a065abf926f128beb36d93449defa0d690e7fef
25266 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25267 Date:   Thu Sep 18 19:04:26 2008 +0900
25268
25269     sh: Add support watchdog for SH4A core
25270
25271     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
25272     And fix some compile warning.
25273
25274     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25275
25276 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
25277 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25278 Date:   Wed Sep 17 11:45:26 2008 +0900
25279
25280     sh: Fix typo in SH serial driver
25281
25282     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25283     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25284
25285 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
25286 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25287 Date:   Wed Sep 17 11:08:36 2008 +0900
25288
25289     sh: Add support any page size and empty_zero_page to SH Linux uImage
25290
25291     Old U-Boot supported 4KB page size only. If this version, Linux
25292     kernel can not get command line from U-Boot.
25293     SH Linux kernel can change page size and empty_zero_page.
25294     This patch support this function and fix promlem.
25295
25296     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25297     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25298
25299 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
25300 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25301 Date:   Thu Aug 28 13:40:52 2008 +0900
25302
25303     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
25304
25305     Add function of smc911x, pkt_data_pull and pkt_data_push.
25306
25307     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25308     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25309
25310 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
25311 Author: Wolfgang Denk <wd@denx.de>
25312 Date:   Thu Sep 18 13:57:32 2008 +0200
25313
25314     ADS5121: fix typo in "rootpath" default setting
25315
25316     Signed-off-by: Wolfgang Denk <wd@denx.de>
25317
25318 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
25319 Author: Remy Bohmer <linux@bohmer.net>
25320 Date:   Tue Sep 16 14:55:44 2008 +0200
25321
25322     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
25323
25324     There are several differences between Linux, Windows and U-boot for initialising the
25325     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
25326     things really different, and some are wrong (compared to the USB standard).
25327
25328     This patch fixes some errors:
25329     * The NEW_init procedure that was already in the code is good, while the old procedure
25330       is wrong. See code comments for more info.
25331     * On a Control request the data returned by the device can be more than 8 bytes, while
25332       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
25333       This results in a lot of USB sticks not being recognised, and the transmission ended
25334       frequently with a CTL:TIMEOUT Error.
25335     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
25336
25337     Signed-off-by: Remy Bohmer <linux@bohmer.net>
25338     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25339
25340 commit 6f5794a6f78b313231256958fd73673c6aacc116
25341 Author: Remy Bohmer <linux@bohmer.net>
25342 Date:   Tue Sep 16 14:55:43 2008 +0200
25343
25344     Refactoring parts of the common USB OHCI code
25345
25346     This patch refactors some large routines of the USB OHCI code by
25347     making some routines smaller and more readable which helps
25348     debugging and understanding the code. (Makes the code looks
25349     somewhat more like the Linux implementation.)
25350
25351     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
25352
25353     Signed-off-by: Remy Bohmer <linux@bohmer.net>
25354     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25355
25356 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
25357 Author: Remy Bohmer <linux@bohmer.net>
25358 Date:   Tue Sep 16 14:55:42 2008 +0200
25359
25360     Fix for USB sticks not working on ARM while using GCC 4.x compilers
25361
25362     The GCC-compiler makes an optimisation error while optimising the routine
25363     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
25364     but there lots of compilers out there that makes this error, that it is
25365     probably wiser to workaround it in U-boot itself.
25366
25367     What happens is that the register r3 is used as loop-counter 'i', but gets
25368     overwritten later on. From there it starts using register r3 for several other
25369     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
25370
25371     This error occurs on at least several versions of Code Sourcery Lite compilers
25372     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
25373     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
25374
25375     We work around it by splitting up this routine in 2 parts, and making sure that
25376     the split out part is NOT inlined any longer. This will make GCC spit out assembler
25377     that do not show this problem. Another possibility is to adapt the Makefile to stop
25378     optimisation for the complete file. I think this solution is nicer.
25379
25380     Signed-off-by: Remy Bohmer <linux@bohmer.net>
25381     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25382
25383 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
25384 Author: Wolfgang Denk <wd@denx.de>
25385 Date:   Wed Sep 17 10:17:55 2008 +0200
25386
25387     Coding style cleanup; update CHANEGLOG
25388
25389     Signed-off-by: Wolfgang Denk <wd@denx.de>
25390
25391 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
25392 Author: Victor Gallardo <vgallardo@amcc.com>
25393 Date:   Tue Sep 16 06:59:13 2008 -0700
25394
25395     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
25396
25397     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
25398     Signed-off-by: Adam Graham <agraham@amcc.com>
25399     Signed-off-by: Stefan Roese <sr@denx.de>
25400
25401 commit ce47eb402c5e29a025399dc282246414fc492940
25402 Author: Peter Tyser <ptyser@xes-inc.com>
25403 Date:   Tue Sep 16 10:04:47 2008 -0500
25404
25405     Support for multiple SGMII/TBI interfaces for TSEC ethernet
25406
25407     Fix TBI PHY accesses to use the proper offset in CPU register space. The
25408     previous code would incorrectly access the TBI PHY by reading/writing to CPU
25409     register space at the same location as would be used to access external PHYs.
25410
25411     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25412     Acked-by: Andy Fleming <afleming@freescale.com>
25413
25414 commit 7c803be2eb3cae245dedda438776e08fb122250f
25415 Author: Wolfgang Denk <wd@denx.de>
25416 Date:   Tue Sep 16 18:02:19 2008 +0200
25417
25418     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
25419
25420     After switching to using the CFI flash driver, the correct remapping
25421     of the flash banks was forgotten.
25422
25423     Also, some boards were not adapted, and the old legacy flash driver
25424     was not removed yet.
25425
25426     Signed-off-by: Wolfgang Denk <wd@denx.de>
25427
25428 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
25429 Author: Wolfgang Denk <wd@denx.de>
25430 Date:   Sun Sep 14 00:59:35 2008 +0200
25431
25432     Prepare v2008.10-rc2
25433
25434     Signed-off-by: Wolfgang Denk <wd@denx.de>
25435
25436 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
25437 Author: Wolfgang Denk <wd@denx.de>
25438 Date:   Sat Sep 13 02:23:05 2008 +0200
25439
25440     Coding style cleanup, update CHANGELOG
25441
25442     Signed-off-by: Wolfgang Denk <wd@denx.de>
25443
25444 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
25445 Author: Peter Tyser <ptyser@xes-inc.com>
25446 Date:   Wed Sep 10 09:18:34 2008 -0500
25447
25448     Update mailing list email and archive addresses
25449
25450     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25451
25452 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
25453 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
25454 Date:   Thu Sep 11 15:40:01 2008 +0200
25455
25456     85xx: socrates: autoprobe Lime chip
25457
25458     This patch is an attempt to implement autoprobing for the Lime
25459     presence on the bus.
25460     Configure GPCM for Lime CS2 and try to access chip ID registers.
25461     Second read atempt delivers register values if the chip is present.
25462
25463     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25464
25465 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
25466 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
25467 Date:   Thu Sep 11 15:40:01 2008 +0200
25468
25469     85xx: socrates: Add support for new image format.
25470
25471     Signed-off-by: Detlev Zundel <dzu@denx.de>
25472
25473 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
25474 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25475 Date:   Thu Sep 11 17:28:18 2008 +0900
25476
25477     sh: Fix compile error for r2dplus
25478
25479     netdev.h was not include by r2dplus.
25480
25481     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25482
25483 commit 56844a22b76c719e600047e23b80465a44d76abd
25484 Author: Heiko Schocher <hs@denx.de>
25485 Date:   Thu Sep 11 08:11:23 2008 +0200
25486
25487     powerpc: Fix bootm to boot up again with a Ramdisk
25488
25489     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
25490     and this stopped Linux from booting with a Ramdisk. This patch fixes
25491     this, by deleting the useless dummy mem reservation.
25492
25493     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
25494     added to of_size, so we dont need anymore a dummy mem reservation.
25495
25496     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
25497     system (=0x44 bytes) and rounded it up to 0x80).
25498
25499     Signed-off-by: Heiko Schocher <hs@denx.de>
25500     Acked-by: Kumar Gala <galak@kernel.crashing.org>
25501
25502 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
25503 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
25504 Date:   Mon Sep 8 02:46:13 2008 +0200
25505
25506     Add support for LZMA uncompression algorithm.
25507
25508     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
25509     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25510
25511 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
25512 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25513 Date:   Fri Jun 27 23:04:20 2008 +0400
25514
25515     fsl_elbc_nand: ecclayout cleanups
25516
25517     This patch deletes oobavail assignments, they're calculated by the nand
25518     core code in nand_scan_tail, plus current oobavail values are wrong for
25519     the LP NANDs.
25520
25521     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25522     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
25523     Signed-off-by: Scott Wood <scottwood@freescale.com>
25524
25525 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
25526 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25527 Date:   Fri Jun 27 23:04:13 2008 +0400
25528
25529     fsl_elbc_nand: implement support for flash-based BBT
25530
25531     This patch implements support for flash-based BBT for chips working
25532     through ELBC NAND controller, so that NAND core will not have to re-scan
25533     for bad blocks on every boot.
25534
25535     Because ELBC controller may provide HW-generated ECCs we should adjust
25536     bbt pattern and bbt version positions in the OOB free area.
25537
25538     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25539     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
25540     Signed-off-by: Scott Wood <scottwood@freescale.com>
25541
25542 commit 97ae023648e764f794ffb9c52da109d6caf09c47
25543 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25544 Date:   Fri Jun 27 23:04:04 2008 +0400
25545
25546     fsl_elbc_nand: fix OOB workability for large page NAND chips
25547
25548     For large page chips, nand_bbt is looking into OOB area, and checking
25549     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
25550     reserved for bbt means.
25551
25552     But ELBC driver is specifying ecclayout so that oobfree area starts at
25553     offset 1, so only one byte left for the bbt purposes.
25554
25555     This causes problems with any OOB users, namely JFFS2: after first mount
25556     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
25557
25558       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
25559       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
25560       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
25561       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
25562
25563     And on the next boot, NAND core will rescan for bad blocks, then will
25564     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
25565
25566     To fix the issue we should implement our own bad block pattern: just one
25567     byte at OOB start. Though, this will work only for x8 chips. For x16
25568     chips two bytes must be checked. Since ELBC driver does not support x16
25569     NANDs (yet), we're safe for now.
25570
25571     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25572     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
25573     Signed-off-by: Scott Wood <scottwood@freescale.com>
25574
25575 commit 7238ada313057a85409485b8ee21515dc10c07a5
25576 Author: Wolfgang Denk <wd@denx.de>
25577 Date:   Fri Sep 12 13:52:21 2008 +0200
25578
25579     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
25580
25581     Signed-off-by: Wolfgang Denk <wd@denx.de>
25582
25583 commit b18410e508a12ba0a177dfc2a386857c806fa96d
25584 Author: Stefan Roese <sr@denx.de>
25585 Date:   Thu Sep 11 13:05:56 2008 +0200
25586
25587     ppc4xx: Enable device tree (FDT) support in zeus board port
25588
25589     Signed-off-by: Stefan Roese <sr@denx.de>
25590
25591 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
25592 Author: Stefan Roese <sr@denx.de>
25593 Date:   Wed Sep 10 16:53:47 2008 +0200
25594
25595     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
25596
25597     This patch fixes a problem introdiced with patch
25598     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
25599     initdram()].
25600
25601     The boards affected are:
25602     - PCI405
25603     - PPChameleonEVB
25604     - quad100hd
25605     - taihu
25606     - zeus
25607
25608     Signed-off-by: Stefan Roese <sr@denx.de>
25609
25610 commit 61737c59a3285f6fadf96a5836879898c04ec28d
25611 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25612 Date:   Thu Sep 11 19:41:26 2008 -0400
25613
25614     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
25615
25616     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25617     Signed-off-by: Stefan Roese <sr@denx.de>
25618
25619 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
25620 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25621 Date:   Thu Sep 11 19:41:25 2008 -0400
25622
25623     ppc4xx: Fix compilation of v5fx30teval_flash
25624
25625     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25626     Signed-off-by: Stefan Roese <sr@denx.de>
25627
25628 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
25629 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25630 Date:   Wed Sep 10 17:44:30 2008 -0400
25631
25632     ppc4xx: Fix in-tree build for ppc440-generic boards
25633
25634     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
25635     Signed-off-by: Stefan Roese <sr@denx.de>
25636
25637 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
25638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25639 Date:   Fri Sep 12 02:20:47 2008 +0200
25640
25641     ARM: synchronize mach-types.h with linux 2.6.27-rc6
25642
25643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25644
25645 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
25646 Author: Jens Scharsig <esw@bus-elektronik.de>
25647 Date:   Fri Sep 12 02:20:47 2008 +0200
25648
25649     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
25650
25651     This patch prevents linker error on AT91RM9200 boards, if
25652     CONFIG_CMD_I2_TREE is set.
25653     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
25654
25655     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
25656
25657 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
25658 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25659 Date:   Fri Sep 12 02:20:47 2008 +0200
25660
25661     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
25662
25663     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
25664
25665     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25666
25667 commit 03db53335c8eba656a7c44d1555b1a4514383e33
25668 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25669 Date:   Fri Sep 12 02:20:46 2008 +0200
25670
25671     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
25672
25673     __ARM__ is given by arm_config.mk automatically.
25674
25675     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25676
25677 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
25678 Author: Claudio Scordino <claudio@evidence.eu.com>
25679 Date:   Fri Sep 12 02:20:46 2008 +0200
25680
25681     Fix MACH_TYPE for the AT91RM9200DK board.
25682
25683     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
25684
25685 commit 274737e5eb25b2bcd3af3a96da923effd543284f
25686 Author: Andrew Dyer <adyer@righthandtech.com>
25687 Date:   Fri Sep 12 02:20:46 2008 +0200
25688
25689     i.mx change get_timer(base) to return time since base
25690
25691     This patch changes get_timer() for i.MX to return the time since
25692     'base' instead of the time since the counter was at zero.
25693
25694     Symptom seen is flash timeout errors when erasing or programming a
25695     sector using the common cfi flash code.
25696
25697     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
25698
25699 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
25700 Author: Andrew Dyer <adyer@righthandtech.com>
25701 Date:   Fri Sep 12 02:20:46 2008 +0200
25702
25703     i.MX use u-boot baud rate and don't assume UART master clock
25704
25705     1) Change the i.MX serial driver to use the baud rate set in the
25706      u-boot environment
25707
25708     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
25709
25710     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
25711      one to clear" like other status bits in the reg.)
25712
25713     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
25714
25715 commit 6e1551a870d360805b9d172dc56d935064abe71d
25716 Author: Andrew Dyer <adyer@righthandtech.com>
25717 Date:   Fri Sep 12 02:20:46 2008 +0200
25718
25719     arm920t fix constant error in start.S
25720
25721     Code in cpu/arm920t/start.S will die with a compilation error if
25722     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
25723     the ARM sub instruction.  Change the code so that each is subtracted
25724     independently to avoid the error.
25725
25726     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
25727
25728 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
25729 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
25730 Date:   Fri Sep 12 02:20:40 2008 +0200
25731
25732     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
25733
25734     - Correct Invalid #define of MPUTIM_PTV_MASK for
25735        omap1510 & omap730 register definition
25736
25737      MPUTIM_PTV_MASK is defined as
25738      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
25739
25740      while it should have been
25741      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
25742
25743     - Below Patch corrects the same
25744
25745     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
25746
25747 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
25748 Author: Adrian Filipi <adrian.filipi@eurotech.com>
25749 Date:   Fri Jul 18 11:52:02 2008 -0400
25750
25751     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
25752
25753     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
25754
25755 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
25756 Author: Guennadi Liakhovetski <lg@denx.de>
25757 Date:   Thu Aug 28 12:25:11 2008 +0200
25758
25759     i.MX31: document timer precision option
25760
25761     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25762
25763 commit 1a6337b01351b82a45b0defa76f08744511c580b
25764 Author: Magnus Lilja <lilja.magnus@gmail.com>
25765 Date:   Fri Aug 29 10:36:18 2008 +0200
25766
25767     i.MX31: Make the SPI bus and chip select configurable for MC13783
25768
25769     The i.MX31 has three SPI buses and each bus has several chip selects
25770     and the MC13783 chip can be connected to any of these. The current
25771     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
25772
25773     This patch makes make MC13783 SPI bus and chip select configurable
25774     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
25775
25776     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25777
25778 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
25779 Author: Magnus Lilja <lilja.magnus@gmail.com>
25780 Date:   Fri Aug 29 10:36:17 2008 +0200
25781
25782     i.MX31: Add reset_timer() and modify get_timer_masked().
25783
25784     This patch adds the reset_timer() function (needed by nand_base.c) and
25785     modifies the get_timer_masked() to work in the same way as the omap24xx
25786     function.
25787
25788     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25789
25790 commit deeec4991a55de243787002ede24d2331d234fc8
25791 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25792 Date:   Wed Sep 10 22:48:09 2008 +0200
25793
25794     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
25795
25796     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25797
25798 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
25799 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25800 Date:   Wed Sep 10 22:48:09 2008 +0200
25801
25802     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
25803
25804     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25805
25806 commit 0e8d158664a913392cb01fb11a948d83f72e105e
25807 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25808 Date:   Wed Sep 10 22:48:06 2008 +0200
25809
25810     rename CFG_ENV macros to CONFIG_ENV
25811
25812     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25813
25814 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
25815 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25816 Date:   Wed Sep 10 22:48:05 2008 +0200
25817
25818     nvedit: rename error comment to CONFIG_ENV_IS_IN_
25819
25820     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25821
25822 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
25823 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25824 Date:   Wed Sep 10 22:48:05 2008 +0200
25825
25826     cmd_mem: Move conditional compilation to Makefile
25827
25828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25829
25830 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
25831 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25832 Date:   Wed Sep 10 22:48:05 2008 +0200
25833
25834     move cmd_get_data_size to command.c
25835
25836     add CMD_DATA_SIZE macro to enable it
25837
25838     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25839
25840 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
25841 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25842 Date:   Wed Sep 10 22:48:04 2008 +0200
25843
25844     env_flash: Move conditional compilation to Makefile
25845
25846     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25847
25848 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
25849 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25850 Date:   Wed Sep 10 22:48:04 2008 +0200
25851
25852     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
25853
25854     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25855
25856 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
25857 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25858 Date:   Wed Sep 10 22:48:03 2008 +0200
25859
25860     cleanup use of CFG_ENV_IS_IN_FLASH
25861
25862     - #if CFG_ENV_IS_IN_FLASH
25863     - #if (CFG_ENV_IS_IN_FLASH == 1)
25864     - #define CFG_ENV_IS_IN_FLASH 0
25865
25866     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25867
25868 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
25869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25870 Date:   Wed Sep 10 22:48:01 2008 +0200
25871
25872     rename environment.c in env_embedded.c to reflect is functionality
25873
25874     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25875
25876 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
25877 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25878 Date:   Wed Sep 10 22:48:01 2008 +0200
25879
25880     env_nowhere: Move conditional compilation to Makefile
25881
25882     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25883
25884 commit 93f6d72544da4510a146bc4c93d609b0116cde37
25885 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25886 Date:   Wed Sep 10 22:48:00 2008 +0200
25887
25888     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
25889
25890     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25891
25892 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
25893 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25894 Date:   Wed Sep 10 22:48:00 2008 +0200
25895
25896     env_sf: Move conditional compilation to Makefile
25897
25898     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25899
25900 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
25901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25902 Date:   Wed Sep 10 22:48:00 2008 +0200
25903
25904     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
25905
25906     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25907
25908 commit 55c5f49910ec8225347aa1d211352a84de6649b4
25909 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25910 Date:   Wed Sep 10 22:48:00 2008 +0200
25911
25912     env_onenand: Move conditional compilation to Makefile
25913
25914     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25915
25916 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
25917 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25918 Date:   Wed Sep 10 22:47:59 2008 +0200
25919
25920     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
25921
25922     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25923
25924 commit 957a0e69575683efd70ace147746bbb3d8e7c501
25925 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25926 Date:   Wed Sep 10 22:47:59 2008 +0200
25927
25928     env_nvram: Move conditional compilation to Makefile
25929
25930     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25931
25932 commit 9314cee6917444ab88bd4e758da7a30975120187
25933 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25934 Date:   Wed Sep 10 22:47:59 2008 +0200
25935
25936     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
25937
25938     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25939
25940 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
25941 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25942 Date:   Wed Sep 10 22:47:59 2008 +0200
25943
25944     env_nand: Move conditional compilation to Makefile
25945
25946     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25947
25948 commit 51bfee192099206a4397f15f3b93516e01f58ab0
25949 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25950 Date:   Wed Sep 10 22:47:58 2008 +0200
25951
25952     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
25953
25954     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25955
25956 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
25957 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25958 Date:   Wed Sep 10 22:47:58 2008 +0200
25959
25960     env_dataflash: Move conditional compilation to Makefile
25961
25962     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25963
25964 commit 057c849c45b9ee19df8ff3acdeee66be52819962
25965 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25966 Date:   Wed Sep 10 22:47:58 2008 +0200
25967
25968     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
25969
25970     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25971
25972 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
25973 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25974 Date:   Wed Sep 10 22:47:52 2008 +0200
25975
25976     cmd_eeprom: Move conditional compilation to Makefile
25977
25978     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25979
25980 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
25981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25982 Date:   Fri Sep 5 09:19:54 2008 +0200
25983
25984     env_eeprom: Move conditional compilation to Makefile
25985
25986     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25987
25988 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
25989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25990 Date:   Fri Sep 5 09:19:30 2008 +0200
25991
25992     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
25993
25994     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25995
25996 commit 32628c5008105a732212003d83b75f05e5243bb2
25997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25998 Date:   Sat Aug 30 23:54:58 2008 +0200
25999
26000     cmd_mac: Move conditional compilation to Makefile
26001
26002     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
26003     start in commit ad8f8687b78c3e917b173f038926695383c55555
26004
26005     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26006
26007 commit e5648acab153f0f429bfc714902c5aaa7879f71b
26008 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26009 Date:   Sat Aug 30 23:47:41 2008 +0200
26010
26011     cmd_fdc: Move conditional compilation to Makefile
26012
26013     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26014
26015 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
26016 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26017 Date:   Sat Aug 30 23:47:38 2008 +0200
26018
26019     common/Makefile: add core command section
26020
26021     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26022
26023 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
26024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26025 Date:   Sat Aug 30 23:29:57 2008 +0200
26026
26027     cmd_vfd: Move conditional compilation to Makefile
26028
26029     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26030
26031 commit 6644641d072aee3087da129d8443187196a4d8a9
26032 Author: Scott Wood <scottwood@freescale.com>
26033 Date:   Wed Sep 10 11:48:49 2008 -0500
26034
26035     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
26036
26037     This is part of the switch to newer upstream MTD code.
26038
26039     Signed-off-by: Scott Wood <scottwood@freescale.com>
26040
26041 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
26042 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26043 Date:   Sat Aug 30 17:06:55 2008 -0400
26044
26045     ARM DaVinci: Fix broken HW ECC for large page NAND.
26046
26047     Based on original patch by Bernard Blackham <bernard@largestprime.net>
26048
26049     U-boot's HW ECC support for large page NAND on Davinci is completely
26050     broken.  Some kernels, such as the 2.6.10 one supported by
26051     MontaVista for DaVinci, rely upon this broken behaviour as they
26052     share the same code for ECCs. In the existing scheme, error
26053     detection *might* work on large page, but error correction
26054     definitely does not.  Small page ECC correction works, but the
26055     format is not compatible with the mainline git kernel.
26056
26057     This patch adds ECC code that matches what is currently in the
26058     Davinci git repository (since NAND support was added in 2.6.24).
26059     This makes the ECC and OOB layout written by u-boot compatible with
26060     Linux for both small page and large page devices and fixes ECC
26061     correction for large page devices.
26062
26063     The old behaviour can be restored by defining the macro
26064     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
26065
26066     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26067     Acked-by: Sergey Kubushyn <ksi@koi8.net>
26068     Signed-off-by: Scott Wood <scottwood@freescale.com>
26069
26070 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
26071 Author: Heiko Schocher <hs@denx.de>
26072 Date:   Wed Sep 10 11:15:28 2008 +0200
26073
26074     muas3001: update BR4 settings
26075
26076     Also set up the port pins for using I2C.
26077
26078     Signed-off-by: Heiko Schocher <hs@denx.de>
26079
26080 commit 3591293509e0c0bcf244b0f974775bff2e25697e
26081 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
26082 Date:   Wed Sep 10 09:43:49 2008 +0300
26083
26084     autoscr: Fix one-character lines and non-newline terminated scripts
26085
26086     When not using hush, the autoscr command now executes lines that are
26087     only one character long. It also runs the last line of scripts even if
26088     it does not end in a newline.
26089
26090     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
26091
26092 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
26093 Author: Victor Gallardo <vgallardo@amcc.com>
26094 Date:   Tue Sep 9 15:13:29 2008 -0700
26095
26096     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
26097
26098     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
26099     and glacier.
26100
26101     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
26102
26103 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
26104 Author: Heiko Schocher <hs@denx.de>
26105 Date:   Mon Sep 8 10:21:11 2008 +0200
26106
26107     muas3001: added support for the LM75 sensor.
26108
26109     Signed-off-by: Heiko Schocher <hs@denx.de>
26110
26111 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
26112 Author: Heiko Schocher <hs@denx.de>
26113 Date:   Mon Sep 8 10:20:19 2008 +0200
26114
26115     muas3001: activate WDT for the muas3001 board.
26116
26117     Signed-off-by: Heiko Schocher <hs@denx.de>
26118
26119 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
26120 Author: Heiko Schocher <hs@denx.de>
26121 Date:   Mon Sep 8 10:19:36 2008 +0200
26122
26123     muas3001: added 64MB SDRAM autodetection.
26124
26125     Signed-off-by: Heiko Schocher <hs@denx.de>
26126
26127 commit 5251469943895de4bb9a04d5053352cc22acb7d5
26128 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
26129 Date:   Thu Aug 21 07:12:26 2008 -0700
26130
26131     Fix printf errors under -DDEBUG
26132
26133     Fix printf format-string/arg mismatches under -DDEBUG.
26134
26135     These warnings occur with DEBUG defined for a platform using
26136     cpu/mpc85xx.  Users of other architectures can unearth similar
26137     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
26138     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
26139
26140     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
26141     Signed-off-by: Andy Fleming <afleming@freescale.com>
26142
26143 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
26144 Author: Wolfgang Denk <wd@denx.de>
26145 Date:   Tue Sep 9 23:55:18 2008 +0200
26146
26147     Update CHANGELOG, prepare 2008-10-rc1 release
26148
26149     Signed-off-by: Wolfgang Denk <wd@denx.de>
26150
26151 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
26152 Author: Kumar Gala <galak@kernel.crashing.org>
26153 Date:   Mon Sep 8 08:51:29 2008 -0500
26154
26155     85xx: Ensure timebase is zero on secondary cores
26156
26157     The e500um says the timebase is volatile out of reset.  To ensure
26158     TB sync works we need to make sure its zero.
26159
26160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26161
26162 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
26163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26164 Date:   Tue Sep 9 22:18:24 2008 +0200
26165
26166     bootm_load_os: fix load_end debug message
26167
26168     print load_end value not pointer
26169
26170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26171
26172 commit 1d9af0be764960e6cc1c093e97176c3542796820
26173 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26174 Date:   Tue Sep 9 22:18:23 2008 +0200
26175
26176     bootm: enable fdt support only on ppc, m68k and sparc
26177
26178     ...as done in image.c
26179
26180     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26181
26182 commit 748b5274e76f81df85cfcffaffedc323678d0623
26183 Author: Markus Heidelberg <markus.heidelberg@web.de>
26184 Date:   Tue Sep 9 18:51:05 2008 +0200
26185
26186     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
26187
26188     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
26189
26190 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
26191 Author: Markus Heidelberg <markus.heidelberg@web.de>
26192 Date:   Tue Sep 9 17:31:46 2008 +0200
26193
26194     gitignore: add tags files and Vim swap file
26195
26196     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
26197
26198 commit 1d9b67b23fca6a25154333733204339802510720
26199 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26200 Date:   Tue Sep 9 17:52:47 2008 +0900
26201
26202     add board_eth_init() for sh7785lcr board
26203
26204     Fix the problem that cannot work RTL8169 on sh7785lcr board.
26205
26206     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26207
26208 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
26209 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26210 Date:   Wed Aug 6 16:08:41 2008 -0500
26211
26212     mtd: SPI Flash: Support the STMicro Flash
26213
26214     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
26215     M25P40, M25P64, M25P80, M25P128.
26216
26217     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
26218     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26219
26220 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
26221 Author: Wolfgang Denk <wd@denx.de>
26222 Date:   Tue Sep 9 17:55:31 2008 +0200
26223
26224     trab: fix build problem after change to use do_div()
26225
26226     We must link with libgeneric now.
26227
26228     Signed-off-by: Wolfgang Denk <wd@denx.de>
26229
26230 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
26231 Author: Ryan CHEN <ryan.chen@st.com>
26232 Date:   Wed Aug 20 13:00:17 2008 -0400
26233
26234     Correct drv_usb_kbd_init function
26235
26236     The patch is that check if usb_get_dev_index() function return valid
26237     pointer. If valid, continue. Otherwise return -1.
26238
26239     Signed-off-by: Ryan Chen <ryan.chen@st.com>
26240     Acked-by: Markus Klotzbuecher <mk@denx.de>
26241
26242 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
26243 Author: Remy Bohmer <linux@bohmer.net>
26244 Date:   Wed Aug 20 11:22:02 2008 +0200
26245
26246     Make usb-stop() safe to call multiple times in a row.
26247
26248     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
26249     enabled the usb_stop() command in common/cmd_bootm.c which was
26250     not enabled for some time, because no board did actually set the
26251     CFG_CMD_USB flag. So, now the usb_stop() is executed before
26252     loading the linux kernel.
26253
26254     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
26255     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
26256     If some other piece of code calls usb_stop() before the bootm command,
26257     this command will hangup the system during boot.
26258     (usb start and stop is typically used while booting from usb memory stick)
26259
26260     But, stopping the usb stack twice is useless anyway, and a flag already
26261     existed that kept track on the usb_init()/usb_stop() calls.
26262     So, we now check if the usb stack is really started before we stop it.
26263
26264     This problem is now fixed in both the upper as low-level layer.
26265
26266     Signed-off-by: Remy Bohmer <linux@bohmer.net>
26267     Acked-by: Markus Klotzbuecher <mk@denx.de>
26268
26269 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
26270 Author: Wolfgang Denk <wd@denx.de>
26271 Date:   Tue Sep 9 16:55:47 2008 +0200
26272
26273     Makefile: fix bug introduced by commit 47ffd6c2
26274
26275 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
26276 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26277 Date:   Tue Sep 9 10:00:33 2008 -0400
26278
26279     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
26280
26281     This patch solves the problems compiling ml507, v5fx30teval and
26282     ppc440-generic out of tree.
26283
26284     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26285
26286 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
26287 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
26288 Date:   Thu Sep 4 15:35:46 2008 -0300
26289
26290     Fix dev_print when called from usb_stor_info (usb storage command)
26291
26292     Fix output of the usb storage command. It was printing "Device 0: not
26293     available" because IF_TYPE_USB was not included into the switch
26294     statement.
26295
26296     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
26297
26298 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
26299 Author: Bartlomiej Sieka <tur@semihalf.com>
26300 Date:   Tue Sep 9 12:58:16 2008 +0200
26301
26302     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
26303
26304     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26305
26306 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
26307 Author: Bartlomiej Sieka <tur@semihalf.com>
26308 Date:   Tue Sep 9 12:58:15 2008 +0200
26309
26310     FIT: add ability to check hashes of all images in FIT, improve output
26311
26312     - add function fit_all_image_check_hashes() that verifies if all
26313       hashes of all images in the FIT are valid
26314     - improve output of fit_image_check_hashes() when the hash check fails
26315
26316     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26317
26318 commit 1de1fa408967cef6804bb046b904114519bb36f0
26319 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26320 Date:   Mon Sep 8 20:54:39 2008 +0200
26321
26322     qemu_mips: Update linux bootm to support dynamic cmdline
26323
26324     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26325
26326 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
26327 Author: Peter Tyser <ptyser@xes-inc.com>
26328 Date:   Mon Sep 8 14:56:49 2008 -0500
26329
26330     Add support for booting of INTEGRITY operating system uImages
26331
26332     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26333
26334 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
26335 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26336 Date:   Mon Sep 8 21:01:29 2008 +0200
26337
26338     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
26339
26340     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26341
26342 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
26343 Author: Kumar Gala <galak@kernel.crashing.org>
26344 Date:   Mon Sep 8 13:57:12 2008 -0500
26345
26346     Remove support for booting ARTOS images
26347
26348     Pantelis Antoniou stated:
26349         AFAIK, it is still used but the products using PPC are long gone.
26350         Nuke it plz (from orbit).
26351
26352     So remove it since it cleans up a usage of env_get_char outside of
26353     the environment code.
26354
26355     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26356
26357 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
26358 Author: Wolfgang Denk <wd@denx.de>
26359 Date:   Tue Sep 9 15:45:18 2008 +0200
26360
26361     Makefile: compile and link each module just once
26362
26363     Several source files need to be compiled and linked when one or more
26364     config options are selected. To allow for easy selection in the
26365     Makefiles yet to avoild multiple compilation (which costs build time)
26366     and especially multiple linking (which causes errors), we use
26367     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
26368
26369     By courtesy of Detlev Zundel who suggested this approach.
26370
26371     Signed-off-by: Wolfgang Denk <wd@denx.de>
26372
26373 commit 48d0192fe869948fef14b460b5f0c85bca933693
26374 Author: Andreas Engel <andreas.engel@ericsson.com>
26375 Date:   Mon Sep 8 14:30:53 2008 +0200
26376
26377     Moved conditional compile into Makefile
26378
26379     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
26380
26381 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
26382 Author: Andreas Engel <andreas.engel@ericsson.com>
26383 Date:   Mon Sep 8 10:17:31 2008 +0200
26384
26385     Merged serial_pl010.c and serial_pl011.c.
26386
26387     They only differ in the init function.
26388     This also adds the missing watchdog support for the PL011.
26389
26390     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
26391
26392 commit 0817d688f307ee2c0598e79175c94a40ce90337b
26393 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26394 Date:   Sun Sep 7 17:10:27 2008 -0400
26395
26396     Remove gap fill in srec object v2
26397
26398     SREC files do not need gap fill: The load address is specified in the
26399     file. On the other hand, it can't be avoided in a .bin object. It has
26400     no information about memory location.
26401
26402     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26403
26404 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
26405 Author: Markus Heidelberg <markus.heidelberg@web.de>
26406 Date:   Sun Sep 7 20:18:27 2008 +0200
26407
26408     README: fix missing subdirectory in the documentation
26409
26410     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
26411
26412 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
26413 Author: Graeme Russ <graeme.russ@gmail.com>
26414 Date:   Sun Sep 7 07:08:42 2008 +1000
26415
26416     Update i386 code (sc520_cdp)
26417
26418     Attempt to bring i386 / sc520 inline with master
26419
26420     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26421
26422 commit 5608692104efa8d56df803dc79ea41ac3607eee5
26423 Author: Guennadi Liakhovetski <lg@denx.de>
26424 Date:   Thu Sep 4 13:01:49 2008 +0200
26425
26426     fw_env: add NAND support
26427
26428     Add support for environment in NAND with automatic NOR / NAND recognition,
26429     including unaligned environment, bad-block skipping, redundant environment
26430     copy.
26431
26432     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26433
26434 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
26435 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26436 Date:   Tue Sep 9 09:50:24 2008 +0200
26437
26438     ppc4xx: Fix out-of-tree building of CPCI405 variants
26439
26440     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26441     Acked-by: Stefan Roese <sr@denx.de>
26442
26443 commit 59f630588e3fdbd698a0a2798e52a8924e899563
26444 Author: Sergei Poselenov <sposelenov@emcraft.com>
26445 Date:   Fri Aug 15 15:42:11 2008 +0200
26446
26447     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
26448
26449     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26450
26451 commit e64987a892353f3d49eb242d997820ef8f538912
26452 Author: Anatolij Gustschin <agust@denx.de>
26453 Date:   Fri Aug 15 15:42:13 2008 +0200
26454
26455     85xx: socrates: Enable Lime support.
26456
26457     This patch adds Lime GDC support together with support for the PWM
26458     backlight control through the w83782d chip.  The reset pin of the
26459     latter is attached to GPIO, so we need to reset it in
26460     early_board_init_r.
26461
26462     Signed-off-by: Anatolij Gustschin <agust@denx.de>
26463
26464 commit 3e79b588b5199f35016f178fc0d5d1266382097f
26465 Author: Detlev Zundel <dzu@denx.de>
26466 Date:   Fri Aug 15 15:42:12 2008 +0200
26467
26468     85xx: Socrates: Major code update.
26469
26470     - Update the local bus ranges in the FDT for Linux for the various
26471       devices connected to the local bus via chip-select.
26472
26473     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
26474       lower than 66 MHz and uses I/O accessor functions consequently.
26475
26476     - UPM data update.
26477
26478     - Update of default environment and configuration.  Use I2C multibus
26479       as we do have two I2C buses.  Also enable sdram and ext2 commands.
26480
26481     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26482     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26483     Signed-off-by: Detlev Zundel <dzu@denx.de>
26484
26485 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
26486 Author: Timur Tabi <timur@freescale.com>
26487 Date:   Fri Jul 18 16:52:23 2008 +0200
26488
26489     Update Freescale 85xx boards to sys_eeprom.c
26490
26491     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
26492     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
26493     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
26494     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
26495
26496     Signed-off-by: Timur Tabi <timur@freescale.com>
26497
26498 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
26499 Author: Wolfgang Denk <wd@denx.de>
26500 Date:   Tue Sep 9 10:08:02 2008 +0200
26501
26502     lib_ppc/interrupts.c: make board_show_activity() a weak function
26503
26504     This allows to use show_activity() without having to
26505     define an empty board_show_activity() function.
26506
26507     Signed-off-by: Wolfgang Denk <wd@denx.de>
26508
26509 commit fe876787f8743883ce58fed61525eaa2f34da4c5
26510 Author: Wolfgang Denk <wd@denx.de>
26511 Date:   Tue Sep 9 10:06:44 2008 +0200
26512
26513     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
26514
26515     Signed-off-by: Wolfgang Denk <wd@denx.de>
26516
26517 commit 965de106ba8900372c8b16dc60d5acab7f925e38
26518 Author: Wolfgang Denk <wd@denx.de>
26519 Date:   Tue Sep 9 10:03:47 2008 +0200
26520
26521     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
26522
26523     Signed-off-by: Wolfgang Denk <wd@denx.de>
26524
26525 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
26526 Author: Sergei Poselenov <sposelenov@emcraft.com>
26527 Date:   Fri Aug 15 15:42:11 2008 +0200
26528
26529     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
26530
26531     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26532
26533 commit 36241ca29d4804a1006fb3f26069effda5202581
26534 Author: Anatolij Gustschin <agust@denx.de>
26535 Date:   Fri Aug 15 15:42:13 2008 +0200
26536
26537     85xx: socrates: Enable Lime support.
26538
26539     This patch adds Lime GDC support together with support for the PWM
26540     backlight control through the w83782d chip.  The reset pin of the
26541     latter is attached to GPIO, so we need to reset it in
26542     early_board_init_r.
26543
26544     Signed-off-by: Anatolij Gustschin <agust@denx.de>
26545
26546 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
26547 Author: Detlev Zundel <dzu@denx.de>
26548 Date:   Fri Aug 15 15:42:12 2008 +0200
26549
26550     85xx: Socrates: Major code update.
26551
26552     - Update the local bus ranges in the FDT for Linux for the various
26553       devices connected to the local bus via chip-select.
26554
26555     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
26556       lower than 66 MHz and uses I/O accessor functions consequently.
26557
26558     - UPM data update.
26559
26560     - Update of default environment and configuration.  Use I2C multibus
26561       as we do have two I2C buses.  Also enable sdram and ext2 commands.
26562
26563     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26564     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26565     Signed-off-by: Detlev Zundel <dzu@denx.de>
26566
26567 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
26568 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26569 Date:   Tue Sep 9 01:22:39 2008 +0200
26570
26571     disk-on-chip: remove duplicate doc_probe declaration
26572
26573     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26574
26575 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
26576 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26577 Date:   Tue Sep 9 00:59:40 2008 +0200
26578
26579     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
26580
26581     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26582
26583 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
26584 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26585 Date:   Tue Sep 9 00:59:39 2008 +0200
26586
26587     rs5c372: fix rtc_set prototype
26588
26589     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26590
26591 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
26592 Author: Sergei Poselenov <sposelenov@emcraft.com>
26593 Date:   Thu Aug 14 14:08:28 2008 +0200
26594
26595     ARM: fix warning: target CPU does not support interworking
26596
26597     This patch fixes warnings like this:
26598
26599     start.S:0: warning: target CPU does not support interworking
26600
26601     which come from some ARM cross compilers and are caused by hard-coded
26602     (with "--with-cpu=arm9" configuration option) ARM targets (which
26603     support ARM Thumb instructions), while the ARM target selected from
26604     the command line (with "-march=armv4") doesn't support Thumb
26605     instructions.
26606
26607     This warning is issued by the compiler regardless of the real use of
26608     the Thumb instructions in code.
26609
26610     To fix this problem, we use options according to compiler version
26611     being used.
26612
26613     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26614     Signed-off-by: Wolfgang Denk <wd@denx.de>
26615
26616 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
26617 Author: Sergei Poselenov <sposelenov@emcraft.com>
26618 Date:   Thu Aug 14 14:08:28 2008 +0200
26619
26620     ARM: Use do_div() instead of division for "long long".
26621
26622     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26623     Signed-off-by: Wolfgang Denk <wd@denx.de>
26624
26625 commit 8febd13c69cb68652577d1a9fcbde954bf784155
26626 Author: Timur Tabi <timur@freescale.com>
26627 Date:   Fri Jul 18 16:52:23 2008 +0200
26628
26629     Update Freescale 85xx boards to sys_eeprom.c
26630
26631     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
26632     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
26633     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
26634     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
26635
26636     Signed-off-by: Timur Tabi <timur@freescale.com>
26637
26638 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
26639 Author: Wolfgang Denk <wd@denx.de>
26640 Date:   Mon Sep 8 23:26:22 2008 +0200
26641
26642     lib_arm/bootm.c: fix compile warnings
26643
26644     bootm.c:128: warning: label 'error' defined but not used
26645     bootm.c:65: warning: unused variable 'ret'
26646
26647     Signed-off-by: Wolfgang Denk <wd@denx.de>
26648
26649 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
26650 Author: Wolfgang Denk <wd@denx.de>
26651 Date:   Mon Sep 8 22:46:42 2008 +0200
26652
26653     ml507: fix out of tree build problem
26654
26655     Signed-off-by: Wolfgang Denk <wd@denx.de>
26656
26657 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
26658 Author: Wolfgang Denk <wd@denx.de>
26659 Date:   Mon Sep 8 22:10:28 2008 +0200
26660
26661     common/cmd_bootm.c: fix printf() format warnings
26662
26663     Signed-off-by: Wolfgang Denk <wd@denx.de>
26664
26665 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
26666 Author: Wolfgang Denk <wd@denx.de>
26667 Date:   Mon Sep 8 22:37:45 2008 +0200
26668
26669     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
26670
26671     missing doc_probe() prototype.
26672
26673     Signed-off-by: Wolfgang Denk <wd@denx.de>
26674
26675 commit 2c5e3cc4994897d364b148942ff23e47783198f6
26676 Author: Wolfgang Denk <wd@denx.de>
26677 Date:   Mon Sep 8 21:28:14 2008 +0200
26678
26679     mk48t59: fix compile problem introduced by commit d1e23194
26680
26681     Signed-off-by: Wolfgang Denk <wd@denx.de>
26682
26683 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
26684 Author: Stefan Roese <sr@denx.de>
26685 Date:   Mon Sep 8 14:11:12 2008 +0200
26686
26687     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
26688
26689     This patch moves some 4xx specific prototypes out of include common.h
26690     to a ppc4xx specific header.
26691
26692     Signed-off-by: Stefan Roese <sr@denx.de>
26693
26694 commit ac53ee8318678190bf3c68da477a84a657d86fb0
26695 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26696 Date:   Fri Sep 5 15:34:04 2008 +0200
26697
26698     ppc4xx: Update CPCI405(AB) configuration
26699
26700     This patch add FDT support and command line editing capabilities
26701     for CPCI405 and CPCI405AB boards.
26702
26703     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26704     Signed-off-by: Stefan Roese <sr@denx.de>
26705
26706 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
26707 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26708 Date:   Fri Sep 5 15:34:03 2008 +0200
26709
26710     ppc4xx: Cleanup CPCI405 linker script
26711
26712     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26713     Signed-off-by: Stefan Roese <sr@denx.de>
26714
26715 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
26716 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26717 Date:   Fri Sep 5 15:34:02 2008 +0200
26718
26719     ppc4xx: Update CPCI405 variants handling
26720
26721     This patch replaces the BOARD_REVISION variable in include/config.mk
26722     by a using a temporary include file in the platform directory.
26723
26724     The former way does not work anymore and the latter is also used by
26725     some other boards.
26726
26727     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26728     Signed-off-by: Stefan Roese <sr@denx.de>
26729
26730 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
26731 Author: Stefan Roese <sr@denx.de>
26732 Date:   Mon Sep 8 10:01:48 2008 +0200
26733
26734     ppc4xx: Remove CONFIG_CS8952_PHY define
26735
26736     Since this define is only used on one board that was never really in
26737     production, removing this compile time option doesn't hurt and makes
26738     the code more readable.
26739
26740     Signed-off-by: Stefan Roese <sr@denx.de>
26741
26742 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
26743 Author: Stefan Roese <sr@denx.de>
26744 Date:   Fri Sep 5 14:11:40 2008 +0200
26745
26746     ppc4xx: Fix compilation warning for PIP405
26747
26748     This patch fixes a compilation warning for the PIP405 board. It moves the
26749     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
26750     occur anymore. I am a little unsure if this #ifdef is at the correct
26751     place now or if it could be removed completely. This needs to get
26752     tested on the PIP405 board.
26753
26754     Signed-off-by: Stefan Roese <sr@denx.de>
26755
26756 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
26757 Author: Stefan Roese <sr@denx.de>
26758 Date:   Fri Sep 5 14:09:09 2008 +0200
26759
26760     ppc4xx: Fix compilation warning for canyonlands & glacier
26761
26762     Signed-off-by: Stefan Roese <sr@denx.de>
26763
26764 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
26765 Author: Kumar Gala <galak@kernel.crashing.org>
26766 Date:   Fri Sep 5 14:40:29 2008 -0500
26767
26768     Fix compiler warning in mpc8xxx ddr code
26769
26770     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
26771     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
26772     ctrl_regs.c:523: note: 'caslat' was declared here
26773
26774     Add a warning in DDR1 case if cas_latency isn't a value we know about.
26775
26776     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26777     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26778
26779 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
26780 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26781 Date:   Mon Sep 1 23:06:23 2008 +0200
26782
26783     rtc: allow rtc_set to return an error and use it in cmd_date
26784
26785     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26786
26787 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
26788 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26789 Date:   Mon Sep 1 01:16:33 2008 +0200
26790
26791     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
26792
26793     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26794
26795 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
26796 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26797 Date:   Sun Aug 31 05:37:04 2008 +0900
26798
26799     config.mk: Move arch-specific condition to $(ARCH)_config.mk
26800
26801     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26802
26803 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
26804 Author: Kumar Gala <galak@kernel.crashing.org>
26805 Date:   Fri Aug 29 19:08:29 2008 -0500
26806
26807     Prevent crash if random/invalid ramdisks are passed to bootm
26808
26809     Adds returning an error from the ramdisk detection code if
26810     its not a real ramdisk (invalid).  There is no reason we can't
26811     just return back to the console if we detect an invalid
26812     ramdisk or CRC error.
26813
26814     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26815
26816 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
26817 Author: Anatolij Gustschin <agust@denx.de>
26818 Date:   Fri Aug 29 21:04:45 2008 +0200
26819
26820     Prevent crash if random DTB address is passed to bootm
26821
26822     This patch adds bootm_start() return value check. If
26823     error status is returned, we do not proceed further to
26824     prevent board reset or crash as we still can recover
26825     at this point.
26826
26827     Signed-off-by: Anatolij Gustschin <agust@denx.de>
26828
26829 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
26830 Author: Andrew Dyer <adyer@righthandtech.com>
26831 Date:   Fri Aug 29 12:30:39 2008 -0500
26832
26833     clean up some #if !defined() in drivers/video/cfb_console.c
26834
26835     rearrange some #if !defined() / #else / #endif statements to remove
26836     the negative logic.
26837
26838     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
26839
26840 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
26841 Author: Kyungmin Park <kmpark@infradead.org>
26842 Date:   Fri Aug 29 09:02:20 2008 +0900
26843
26844     apollon: use the last memory area for u-boot
26845
26846     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26847
26848 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
26849 Author: Heiko Schocher <hs@denx.de>
26850 Date:   Thu Aug 28 13:50:42 2008 +0200
26851
26852     TQM8272: move NAND part in seperate File
26853
26854     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
26855     because I have no longer access to the hardware.
26856
26857     Signed-off-by: Heiko Schocher <hs@denx.de>
26858
26859 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
26860 Author: Heiko Schocher <hs@denx.de>
26861 Date:   Thu Aug 28 13:48:36 2008 +0200
26862
26863     TQM8272: Fix compiling error for the TQM8272 board.
26864
26865     Fix compile problems caused by
26866     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
26867
26868     Signed-off-by: Heiko Schocher <hs@denx.de>
26869
26870 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
26871 Author: Kyungmin Park <kmpark@infradead.org>
26872 Date:   Wed Aug 27 14:45:20 2008 +0900
26873
26874     Add JFFS2 command support on OneNAND
26875
26876     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26877
26878 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
26879 Author: Mark Jackson <mpfj@mimc.co.uk>
26880 Date:   Mon Aug 25 19:21:30 2008 +0100
26881
26882     Allow console input to be disabled
26883
26884     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
26885
26886     When CONFIG_DISABLE_CONSOLE is defined, setting
26887     GD_FLG_DISABLE_CONSOLE disables all console input and output.
26888
26889     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
26890
26891 commit 2b22d608f370565c87f55928b524207031419c11
26892 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26893 Date:   Wed Jul 30 12:39:29 2008 +0200
26894
26895     loads: allow negative offsets
26896
26897     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
26898
26899 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
26900 Author: Yuri Tikhonov <yur@emcraft.com>
26901 Date:   Thu Sep 4 11:19:05 2008 +0200
26902
26903     USB EHCI: reset root hub
26904
26905     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
26906     resetting only via EHCI registers. So, this patch adds the
26907     corresponding kind of reset to OHCI's hc_reset() if the newly
26908     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
26909     board).
26910
26911     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26912     Acked-by: Markus Klotzbuecher <mk@denx.de>
26913
26914 commit 5875d358f025c1b042d8a0f08384b756de7256c9
26915 Author: Yuri Tikhonov <yur@emcraft.com>
26916 Date:   Fri Aug 15 15:42:09 2008 +0200
26917
26918     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
26919
26920     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26921
26922 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
26923 Author: Stefan Roese <sr@denx.de>
26924 Date:   Fri Sep 5 10:47:46 2008 +0200
26925
26926     devices: Use list_add_tail() instead of list_add() to register a device
26927
26928     This patch fixes a problem spotted on Glacier/Canyonlands (and most
26929     likely lots of other board ports), that no serial output was seen
26930     after console initialization in console_init_r(). This is because the
26931     last added console device was used instead of the first added.
26932
26933     This patch fixes this problem by using list_add_tail() instead of
26934     list_add() to register a device. This way the first added console
26935     is used again.
26936
26937     Signed-off-by: Stefan Roese <sr@denx.de>
26938
26939 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
26940 Author: Victor Gallardo <vgallardo@amcc.com>
26941 Date:   Thu Sep 4 23:49:36 2008 -0700
26942
26943     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
26944
26945     This patch adds GPCS, SGMII and M88E1112 PHY support
26946     for the AMCC PPC460GT/EX processors.
26947
26948     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
26949     Signed-off-by: Stefan Roese <sr@denx.de>
26950
26951 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
26952 Author: Adam Graham <agraham@amcc.com>
26953 Date:   Wed Sep 3 12:26:59 2008 -0700
26954
26955     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
26956
26957     Signed-off-by: Adam Graham <agraham@amcc.com>
26958     Signed-off-by: Stefan Roese <sr@denx.de>
26959
26960 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
26961 Author: Adam Graham <agraham@amcc.com>
26962 Date:   Wed Sep 3 12:26:28 2008 -0700
26963
26964     ppc4xx: IBM Memory Controller DDR autocalibration routines
26965
26966     Alternate SDRAM DDR autocalibration routine that can be generically used
26967     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
26968     support of more DIMM/memory chip vendors and gets the DDR autocalibration
26969     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
26970
26971     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
26972     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
26973     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
26974     lot longer to run than Method_B.  Method_B executes in the same amount of time
26975     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
26976     Normally Method_B is used and it is set as the default method.
26977
26978     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
26979     Controller registers.[bit-field]:
26980     1)  SDRAM0_RQDC.[RQFD]
26981     2)  SDRAM0_RFDC.[RFFD]
26982
26983     This alternate PPC4xx DDR autocalibration code calibrates the following
26984     IBM SDRAM Controller registers.[bit-field]:
26985
26986     1)  SDRAM0_WRDTR.[WDTR]
26987     2)  SDRAM0_CLKTR.[CKTR]
26988     3)  SDRAM0_RQDC.[RQFD]
26989     4)  SDRAM0_RFDC.[RFFD]
26990
26991     and will also use the calibrated settings of the above four registers that
26992     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
26993     register.[bit-field].
26994
26995     Signed-off-by: Adam Graham <agraham@amcc.com>
26996     Signed-off-by: Stefan Roese <sr@denx.de>
26997
26998 commit e07f4a8033b6270b8103049adb6456f660ff4a89
26999 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27000 Date:   Mon Sep 1 13:09:39 2008 -0400
27001
27002     ppc44x: Unification of virtex5 pp440 boards
27003
27004     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
27005
27006     It unificates 3 different things:
27007
27008     1) Source code
27009     A new board called ppc440-generic has been created. This board includes
27010     a generic tlb initialization (Maps the whole memory into virtual) and
27011     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
27012     so, they can be replaced by specific functions.
27013
27014     If a new board needs to redefine any of the previous functions
27015     (specific initialization) it can create a new directory with the
27016     specific initializations needed. (see the example ml507 board).
27017
27018     2) Configuration file
27019     Common configurations are located under configs/xilinx-ppc440.h, this
27020     header file interpretes the xparameters file generated by EDK and
27021     configurates u-boot in correspondence. Example: if there is a Temac,
27022     allows CMD_CONFIG_NET
27023     Specific configuration are located under specific configuration file.
27024     (see the example ml507 board)
27025
27026     3) Makefile
27027     Some work has been done in order to not duplicate work in the Main
27028     Makefile. Please see the attached code.
27029
27030     In order to support new boards they can be implemented in the next way:
27031
27032     a) Simple Generic Board  (90% of the time)
27033     Using EDK generates a new xparameters.h file, replace
27034     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
27035     && make
27036
27037     b) Simple Boards with special u-boot parameters (9 % of the time)
27038     Create a new file under configs for it (use ml507.h as example) and
27039     change your paramaters. Create a new Makefile paragraph and compile
27040
27041     c) Complex boards (1% of the time)
27042     Create a new folder for the board, like the ml507
27043
27044     Finally, it adds support for the Avnet FX30T Evaluation board, following
27045     the new generic structure:
27046
27047     Cheap board by Avnet for evaluating the Virtex5 FX technology.
27048
27049     This patch adds support for:
27050      - UartLite
27051      - 16MB Flash
27052      - 64MB RAM
27053
27054     Prior using U-boot in this board, read carefully the ERRATA by Avnet
27055     to solve some memory initialization issues.
27056
27057     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
27058     Signed-off-by: Stefan Roese <sr@denx.de>
27059
27060 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
27061 Author: Nick Spence <nick.spence@freescale.com>
27062 Date:   Tue Sep 2 15:21:16 2008 -0500
27063
27064     mpc83xx: fix mpc8313 in-tree building with NAND
27065
27066     and add mpc8313 NAND build to MAKEALL
27067
27068     Signed-off-by: Nick Spence <nick.spence@freescale.com>
27069     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27070
27071 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
27072 Author: Nick Spence <nick.spence@freescale.com>
27073 Date:   Thu Aug 28 14:09:25 2008 -0700
27074
27075     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
27076
27077     Cleans up some latent issues with the data cache control so that
27078     dcache_enable() and dcache_disable() will work reliably (after
27079     unlock_ram_in_cache() has been called)
27080
27081     Signed-off-by: Nick Spence <nick.spence@freescale.com>
27082     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27083
27084 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
27085 Author: Nick Spence <nick.spence@freescale.com>
27086 Date:   Thu Aug 28 14:09:19 2008 -0700
27087
27088     mpc83xx: Store and display Arbiter Event Register values
27089
27090     Record the Arbiter Event Register values and optionally display them.
27091
27092     The Arbiter Event Register can record the type and effective address of
27093     an arbiter error, even through an HRESET. This patch stores the values in
27094     the global data structure.
27095
27096     Display of the Arbiter Event registers immediately after the RSR value
27097     can be enabled with defines. The Arbiter values will only be displayed
27098     if an arbiter event has occured since the last Power On Reset, and either
27099     of the following defines exist:
27100      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
27101                                         and type register values
27102      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
27103                                         event register values
27104
27105     Address Only transactions are one of the trapped events that can register
27106     as an arbiter event. They occur with some cache manipulation instructions
27107     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
27108     has the MEMORY_COHERENCE WIMG bit set. Setting:
27109      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
27110                                   only events, so that it can still capture
27111                                   other real problems.
27112
27113     Signed-off-by: Nick Spence <nick.spence@freescale.com>
27114     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27115
27116 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
27117 Author: Nick Spence <nick.spence@freescale.com>
27118 Date:   Thu Aug 28 14:09:11 2008 -0700
27119
27120     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
27121
27122     This is needed in unlock_ram_in_cache() because it is called from C and
27123     will corrupt the small data area anchor that is kept in R2.
27124
27125     lock_ram_in_cache() is modified similarly as good coding practice, but
27126     is not called from C.
27127
27128     Signed-off-by: Nick Spence <nick.spence@freescale.com>
27129     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27130
27131 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
27132 Author: Nick Spence <nick.spence@freescale.com>
27133 Date:   Fri Aug 22 23:52:50 2008 -0700
27134
27135     MPC83XX: Fix GPIO configuration - set gpio level before direction
27136
27137     Set DAT value before DIR values to avoid creating glitches on the
27138     GPIO signals.
27139
27140     Set gpio level register before direction register to inhibit
27141     glitches on high level output pins.
27142
27143     Dir and data gets cleared at powerup, so high level output lines see
27144     a short low pulse between setting the direction and level registers.
27145
27146     Issue was seen on a new board with the nReset line of the NOR flash
27147     connected to a GPIO. Setting the direction register puts the NOR flash
27148     in reset so the next instruction to set the level cannot get executed.
27149
27150     Signed-off-by: Nick Spence <nick.spence@freescale.com>
27151     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
27152     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27153
27154 commit 7007c5975ee900ad70983b0681d3251e221f8321
27155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27156 Date:   Tue Sep 2 02:58:32 2008 +0200
27157
27158     doc/qemu_mips: add doc howto debug u-boot with gdb
27159
27160     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27161
27162 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
27163 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27164 Date:   Wed Sep 3 17:15:45 2008 +0200
27165
27166     ppx4xx: Fix broken DASA_SIM board
27167
27168     This patch adds initdram() to DASA_SIM boards that has been
27169     removed accidentally by a previous commit.
27170
27171     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27172     Signed-off-by: Stefan Roese <sr@denx.de>
27173
27174 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
27175 Author: Stefan Roese <sr@denx.de>
27176 Date:   Mon Sep 1 08:35:37 2008 +0200
27177
27178     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
27179
27180     This patch removes some direct references to common/lists.o from some
27181     esd linker scripts. This is necessary because the lists source was moved
27182     and is not in the "common" directory anymore.
27183
27184     Signed-off-by: Stefan Roese <sr@denx.de>
27185
27186 commit 97b0734d65f8a0b03df0a335a2addc759da56107
27187 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27188 Date:   Tue Sep 2 16:33:05 2008 +0200
27189
27190     ppc4xx: Remove obsolete or unused functions from some esd boards
27191
27192     This patch removes initdram() and testdram() from most esd 405 platforms.
27193     Some boards also have an empty dummy implementation of
27194     misc_init_f(). This is also removed.
27195
27196     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27197     Signed-off-by: Stefan Roese <sr@denx.de>
27198
27199 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
27200 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27201 Date:   Tue Sep 2 15:07:54 2008 +0200
27202
27203     ppc4xx: Update VOM405 board configuration
27204
27205     - remove PCI code
27206     - add command line editing
27207     - minor cleanup
27208
27209     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27210     Signed-off-by: Stefan Roese <sr@denx.de>
27211
27212 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
27213 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27214 Date:   Tue Sep 2 15:07:53 2008 +0200
27215
27216     ppc4xx: Remove obsolete initdram() function from VOM405 board
27217
27218     This patch removed the obsolete initdram() function from
27219     VOM405 platform file.
27220
27221     Some minor cleanup.
27222
27223     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27224     Signed-off-by: Stefan Roese <sr@denx.de>
27225
27226 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
27227 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27228 Date:   Tue Sep 2 15:07:52 2008 +0200
27229
27230     ppc4xx: Cleanup VOM405 linker script
27231
27232     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27233     Signed-off-by: Stefan Roese <sr@denx.de>
27234
27235 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
27236 Author: Matthias Fuchs <mf@esd.eu>
27237 Date:   Tue Sep 2 15:07:51 2008 +0200
27238
27239     ppc4xx: Add fdt support for VOM405 boards
27240
27241     Signed-off-by: Matthias Fuchs <mf@esd.eu>
27242     Signed-off-by: Stefan Roese <sr@denx.de>
27243
27244 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
27245 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27246 Date:   Tue Sep 2 11:36:14 2008 +0200
27247
27248     ppc4xx: Coding style cleanup
27249
27250     Wrap long lines etc.
27251
27252     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27253     Signed-off-by: Stefan Roese <sr@denx.de>
27254
27255 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
27256 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27257 Date:   Tue Sep 2 11:35:56 2008 +0200
27258
27259     ppc4xx: Enable USB on PLU405 boards
27260
27261     This patch enables the PCI-OHCI controller on PLU405 board.
27262
27263     Also the default CPU frequency is updated to 266 MHz and
27264     command line editing is enabled.
27265
27266     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27267     Signed-off-by: Stefan Roese <sr@denx.de>
27268
27269 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
27270 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27271 Date:   Tue Sep 2 11:35:35 2008 +0200
27272
27273     ppc4xx: Cleanup PLU405 platform file
27274
27275     This patch
27276     - wraps some long lines
27277     - removes unused/obsolete functions: misc_init_f() and initdram()
27278
27279     Signed-off-by: Matthias Fuchs <mf@esd.eu>
27280     Signed-off-by: Stefan Roese <sr@denx.de>
27281
27282 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
27283 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27284 Date:   Tue Sep 2 11:35:04 2008 +0200
27285
27286     ppc4xx: Cleanup PLU405 linker script
27287
27288     Signed-off-by: Matthias Fuchs <mf@esd.eu>
27289     Signed-off-by: Stefan Roese <sr@denx.de>
27290
27291 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
27292 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27293 Date:   Tue Sep 2 11:34:36 2008 +0200
27294
27295     ppc4xx: Add fdt support for PLU405 boards
27296
27297     Signed-off-by: Matthias Fuchs <mf@esd.eu>
27298     Signed-off-by: Stefan Roese <sr@denx.de>
27299
27300 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
27301 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27302 Date:   Tue Sep 2 11:34:08 2008 +0200
27303
27304     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
27305
27306     Signed-off-by: Matthias Fuchs <mf@esd.eu>
27307     Signed-off-by: Stefan Roese <sr@denx.de>
27308
27309 commit be1b0d2777e179191a57b138b660547a17e55aad
27310 Author: Jochen Friedrich <jochen@scram.de>
27311 Date:   Tue Sep 2 11:24:59 2008 +0200
27312
27313     Don't tftp to unknown flash
27314
27315     If a board has a variable number of flash banks, there are empty entries
27316     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
27317     "Outside available Flash". This patch skips flash banks with unknown
27318     flash ids.
27319
27320     Signed-off-by: Jochen Friedrich <jochen@scram.de>
27321     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27322
27323 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
27324 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27325 Date:   Thu Aug 28 13:40:44 2008 +0900
27326
27327     net: smc911x: Add pkt_data_pull and pkt_data_push function
27328
27329     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
27330     Byte-swapping is necessary, and so poor performance is inevitable.
27331     This problem cannot evade by the swap function of CHIP, this can
27332     evade by software Byte-swapping.
27333     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
27334     functions necessary to solve this problem.
27335
27336     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27337     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27338
27339 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
27340 Author: Ben Warren <biggerbadderben@gmail.com>
27341 Date:   Sun Aug 31 20:37:00 2008 -0700
27342
27343     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
27344
27345     Affected boards:
27346         db64360
27347         db64460
27348         katmai
27349         taihu
27350         taishan
27351         yucca
27352         cpc45
27353         cpu87
27354         eXalion
27355         elppc
27356         debris
27357         kvme080
27358         mpc8315erdb
27359         integratorap
27360         ixdp425
27361         oxc
27362         pm826
27363         pm828
27364         pm854
27365         pm856
27366         ppmc7xx
27367         sc3
27368         sc520_spunk
27369         sorcery
27370         tqm8272
27371         tqm85xx
27372         utx8245
27373
27374     Removed initialization of the driver from net/eth.c
27375     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
27376
27377     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27378
27379 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
27380 Author: Ben Warren <biggerbadderben@gmail.com>
27381 Date:   Sun Aug 31 10:45:44 2008 -0700
27382
27383     Moved initialization of TULIP Ethernet controller to board_eth_init()
27384
27385     Affected boards:
27386         cu824
27387         bab7xx
27388         adciop
27389         dasa_sim
27390         mousse
27391         mpc8540eval
27392         musenki
27393         mvblue
27394         pcippc2/pcippc6
27395         sbc8240
27396         stxssa
27397
27398     Removed initialization of the driver from net/eth.c
27399
27400     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27401
27402 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
27403 Author: Ben Warren <biggerbadderben@gmail.com>
27404 Date:   Sun Aug 31 10:44:19 2008 -0700
27405
27406     Moved initialization of E1000 Ethernet controller to board_eth_init()
27407
27408     Affected boards:
27409         ap1000
27410         mvbc_p
27411         PM854
27412
27413     Removed initialization of the driver from net/eth.c
27414
27415     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27416
27417 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
27418 Author: Ben Warren <biggerbadderben@gmail.com>
27419 Date:   Sun Aug 31 10:40:51 2008 -0700
27420
27421     Moved initialization of plb2800 Ethernet driver to board_eth_init
27422
27423     Affected boards:
27424         purple
27425
27426     Removed initialization of controller from net/eth.c
27427
27428     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27429
27430 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
27431 Author: Ben Warren <biggerbadderben@gmail.com>
27432 Date:   Sun Aug 31 10:39:12 2008 -0700
27433
27434     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
27435
27436     Modified board_eth_init() functions of boards that have this FEC in addition
27437     to other Ethernet controllers.
27438
27439     Affected boards:
27440         bc3450
27441         icecube
27442         mvbc_p
27443         o2dnt
27444         pm520
27445         total5200
27446         tq5200
27447
27448     Removed initialization of controller from net/eth.c
27449
27450     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27451
27452 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
27453 Author: Ben Warren <biggerbadderben@gmail.com>
27454 Date:   Sun Aug 31 10:36:38 2008 -0700
27455
27456     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
27457
27458     Added a cpu_eth_init() function to MPC512x CPU directory and
27459     removed code from net/eth.c
27460
27461     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27462
27463 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
27464 Author: Ben Warren <biggerbadderben@gmail.com>
27465 Date:   Sun Aug 31 10:16:59 2008 -0700
27466
27467     Moved initialization of IncaIP Ethernet controller to board_eth_init
27468
27469     Affected boards:
27470         IncaIP
27471
27472     Removed initialization of the driver from net/eth.c
27473
27474     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27475
27476 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
27477 Author: Ben Warren <biggerbadderben@gmail.com>
27478 Date:   Sun Aug 31 10:15:26 2008 -0700
27479
27480     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
27481
27482         Affected boards:
27483             AmigaOneG3SE
27484
27485         Removed initialization of the driver from net/eth.c
27486
27487     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27488
27489 commit 6aca145e067efe75398e9fac97822bd3700de0b2
27490 Author: Ben Warren <biggerbadderben@gmail.com>
27491 Date:   Sun Aug 31 10:13:34 2008 -0700
27492
27493     Moved initialization of GT6426x Ethernet controller to board_eth_init()
27494
27495     Affected boards:
27496         EVB64260
27497         P3G4
27498         ZUMA
27499
27500     Removed initialization of the driver from net/eth.c
27501
27502     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27503
27504 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
27505 Author: Ben Warren <biggerbadderben@gmail.com>
27506 Date:   Sun Aug 31 10:08:43 2008 -0700
27507
27508     Moved initialization of PCNET Ethernet controller to board_eth_init()
27509
27510     Affected boards:
27511         PN62
27512         sc520_cdp
27513
27514     Removed initialization of the driver from net/eth.c
27515
27516     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27517
27518 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
27519 Author: Ben Warren <biggerbadderben@gmail.com>
27520 Date:   Sun Aug 31 10:07:16 2008 -0700
27521
27522     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
27523
27524     Affected boards:
27525         a3000
27526
27527     Removed initialization of the driver from net/eth.c
27528
27529     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27530
27531 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
27532 Author: Ben Warren <biggerbadderben@gmail.com>
27533 Date:   Sun Aug 31 10:03:22 2008 -0700
27534
27535     Moved initialization of NS8382X Ethernet controller to board_eth_init()
27536
27537     Affected boards:
27538         bc3450
27539         cpci5200
27540         mecp5200
27541         pf2000
27542         icecube
27543         o2dnt
27544         pm520
27545         sandpoint8245
27546         total5200
27547         tqm5200
27548
27549     Removed initialization of the driver from net/eth.c
27550
27551     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27552
27553 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
27554 Author: Ben Warren <biggerbadderben@gmail.com>
27555 Date:   Sun Aug 31 09:59:33 2008 -0700
27556
27557     Moved initialization of TSI108 Ethernet controller to board_eth_init()
27558
27559     Affected boards:
27560         mpc7448hpc2
27561
27562     Removed initialization of the driver from net/eth.c
27563
27564     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27565
27566 commit 0b252f50ae218ae15bfb63af44227972686ebc56
27567 Author: Ben Warren <biggerbadderben@gmail.com>
27568 Date:   Sun Aug 31 21:41:08 2008 -0700
27569
27570     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
27571
27572     Affected boards:
27573         hidden_dragon
27574         MPC8544DS
27575         MPC8610HPCN
27576         R2DPLUS
27577         TB0229
27578
27579     Removed initialization of the driver from net/eth.c
27580
27581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27582
27583 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
27584 Author: Ben Warren <biggerbadderben@gmail.com>
27585 Date:   Sun Aug 31 09:49:42 2008 -0700
27586
27587     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
27588
27589     Affected boards:
27590         linkstation
27591         r7780mp
27592
27593     Removed initialization of the driver from net/eth.c
27594
27595     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27596
27597 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
27598 Author: Ben Warren <biggerbadderben@gmail.com>
27599 Date:   Tue Aug 12 22:11:53 2008 -0700
27600
27601     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
27602
27603     Removed at91sam9_eth_initialize() from net/eth.c
27604
27605     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27606
27607 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
27608 Author: Ben Warren <biggerbadderben@gmail.com>
27609 Date:   Sun Aug 31 22:22:04 2008 -0700
27610
27611     Introduce netdev.h header file and remove externs
27612
27613     This addresses all drivers whose initializers have already
27614     been moved to board_eth_init()/cpu_eth_init().
27615
27616     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27617
27618 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
27619 Author: Andy Fleming <afleming@freescale.com>
27620 Date:   Sun Aug 31 16:33:30 2008 -0500
27621
27622     Add pixis_set_sgmii command
27623
27624     The 8544DS and 8572DS platforms support an optional SGMII riser card to
27625     expose ethernet over an SGMII interface.  Once the card is in, it is also
27626     necessary to configure the board such that it uses the card, rather than
27627     the on-board ethernet ports.  This can either be done by flipping dip switches
27628     on the motherboard, or by modifying registers in the pixis.  Either way
27629     requires a reboot.
27630
27631     This adds a command to allow users to choose which ports are routed through
27632     the SGMII card, and which through the onboard ports.  It also allows users
27633     to revert to the current switch settings.
27634
27635     This code does not work on the 8572, as the PIXIS is different.
27636
27637     Signed-off-by: Andy Fleming <afleming@freescale.com>
27638     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27639
27640 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
27641 Author: Andy Fleming <afleming@freescale.com>
27642 Date:   Sun Aug 31 16:33:29 2008 -0500
27643
27644     Add SGMII support for the 8544 DS
27645
27646     The 8544 DS has an optional SGMII Riser card, which uses different PHY
27647     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
27648     setup code if so.
27649
27650     Signed-off-by: Andy Fleming <afleming@freescale.com>
27651     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27652
27653 commit 652f7c2eef76a1340928bd660845441e932d86a2
27654 Author: Andy Fleming <afleming@freescale.com>
27655 Date:   Sun Aug 31 16:33:28 2008 -0500
27656
27657     Add support for Freescale SGMII Riser Card
27658
27659     The 8544DS and 8572DS systems have an optional SGMII riser card which
27660     exposes new ethernet ports which are connected to the eTSECs via an
27661     SGMII interface.  The SGMII PHYs for this board are offset from the standard
27662     PHY addresses, so this code modifies the passed in tsec_info structure to
27663     use the SGMII PHYs on the card, instead.
27664
27665     Signed-off-by: Andy Fleming <afleming@freescale.com>
27666     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27667
27668 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
27669 Author: Andy Fleming <afleming@freescale.com>
27670 Date:   Sun Aug 31 16:33:27 2008 -0500
27671
27672     Add SGMII support to the tsec
27673
27674     Adds support for configuring the TBI to talk properly with the SerDes.
27675
27676     Signed-off-by: Andy Fleming <afleming@freescale.com>
27677     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27678
27679 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
27680 Author: Andy Fleming <afleming@freescale.com>
27681 Date:   Sun Aug 31 16:33:26 2008 -0500
27682
27683     Pass in tsec_info struct through tsec_initialize
27684
27685     The tsec driver contains a hard-coded array of configuration information
27686     for the tsec ethernet controllers.  We create a default function that works
27687     for most tsecs, and allow that to be overridden by board code.  It creates
27688     an array of tsec_info structures, which are then parsed by the corresponding
27689     driver instance to determine configuration.  Also, add regs, miiregs, and
27690     devname fields to the tsec_info structure, so that we don't need the kludgy
27691     "index" parameter.
27692
27693     Signed-off-by: Andy Fleming <afleming@freescale.com>
27694     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27695
27696 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
27697 Author: Andy Fleming <afleming@freescale.com>
27698 Date:   Sun Aug 31 16:33:25 2008 -0500
27699
27700     tsec: Move tsec.h to include/
27701
27702     This is to prepare the way for board code passing in the tsec_info structure
27703
27704     Signed-off-by: Andy Fleming <afleming@freescale.com>
27705     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27706
27707 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
27708 Author: Sergei Poselenov <sposelenov@emcraft.com>
27709 Date:   Fri Jun 6 15:52:44 2008 +0200
27710
27711     PHY: Add support for the M88E1121R Marvell chip.
27712
27713     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
27714     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27715     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27716
27717 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
27718 Author: Wolfgang Denk <wd@denx.de>
27719 Date:   Tue Sep 2 21:17:36 2008 +0200
27720
27721     fw_env.c: fix build problems with MTD_VERSION=old
27722
27723     (as needed to support old 2.4 Linux kernel based releases)
27724
27725     Signed-off-by: Wolfgang Denk <wd@denx.de>
27726
27727 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
27728 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27729 Date:   Mon Sep 1 17:11:26 2008 +0200
27730
27731     device: make device_register() clone the device
27732
27733     This is expected by the callers, but this fact was hidden well within
27734     the old list implementation.
27735
27736     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27737
27738 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
27739 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27740 Date:   Mon Sep 1 14:00:07 2008 +0200
27741
27742     avr32: Add support for "GPIO" port mux
27743
27744     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
27745     all later AVR32 chips. This patch adds a driver for it, implementing the
27746     same API as the existing portmux-pio driver but with more functionality.
27747
27748     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27749
27750 commit d92852579546c46bdaac978e0b6767a6645b69e0
27751 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27752 Date:   Fri Aug 15 15:02:29 2008 +0200
27753
27754     atstk1000: Convert to new-style makefile
27755
27756     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27757
27758 commit 25e6854d42c11046a468576179b5494f850311b2
27759 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27760 Date:   Sun Aug 31 18:46:35 2008 +0200
27761
27762     avr32: use board_early_init_r instead of board_init_info
27763
27764     Replace the avr32-specific board_init_info hook by the standard
27765     board_early_init_r hook and make it optional.
27766
27767     board_early_init_r() runs somewhat earlier than board_init_info used to
27768     do, but this isn't a problem for any of the in-tree boards.
27769
27770     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27771
27772 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
27773 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27774 Date:   Sun Aug 31 18:24:24 2008 +0200
27775
27776     avr32: Use board_postclk_init instead of gclk_init
27777
27778     Replace the avr32-specific gclk_init() board hook with the standard
27779     board_postclk_init() hook which is supposed to run at the same point
27780     during initialization.
27781
27782     Provide a dummy weak alias for boards not implementing this hook. The
27783     cost of this is:
27784       - 2 bytes for the dummy function (retal 0)
27785       - 2 bytes for each unnecessary function call (short rcall)
27786
27787     which is a pretty small price to pay for avoiding lots of #ifdef
27788     clutter. In this particular case, all boards probably end up slightly
27789     smaller because we avoid the conditional checking if the gclk_init
27790     symbol is NULL.
27791
27792     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27793
27794 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
27795 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27796 Date:   Sun Aug 31 18:07:35 2008 +0200
27797
27798     hammerhead: Use gclk helper functions
27799
27800     Use the new gclk helper functions to set up the PHY clock instead of
27801     accessing the PM registers directly.
27802
27803     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27804
27805 commit 98090cd75cdb40b2ab94c806c338540a5716748b
27806 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27807 Date:   Sun Aug 31 18:05:32 2008 +0200
27808
27809     avr32: Add gclk helper functions
27810
27811     Add two helper functions for configuring and enabling generic clocks:
27812       - gclk_enable_output: Enables output on a GCLKx pin
27813       - gclk_set_rate: Configures a gclk to run at a specific rate
27814
27815     This should eliminate any reason to go mucking about with PM registers
27816     from board code.
27817
27818     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27819
27820 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
27821 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27822 Date:   Fri Aug 29 21:09:49 2008 +0200
27823
27824     avr32: refactor the portmux/gpio code
27825
27826       - Separate the portmux configuration functionality from the GPIO pin
27827         control API.
27828       - Separate the controller-specific code from the chip-specific code.
27829       - Allow "ganged" port configuration (multiple pins at once).
27830       - Add more flexibility to the "canned" peripheral select functions:
27831           - Allow using more than 23 address bits, more chip selects, as
27832         well as NAND- and CF-specific pins.
27833           - Make the MACB SPEED pin optional, and choose between MII/RMII
27834         using a parameter instead of an #ifdef.
27835           - Make it possible to use other MMC slots than slot 0, and support
27836         different MMC/SDCard data bus widths.
27837       - Use more reasonable pull-up defaults; floating pins may consume a
27838         lot of power.
27839       - Get rid of some custom portmux code from the mimc200 board code. The
27840         old gpio/portmux API couldn't really handle its requirements, but
27841         the new one can.
27842       - Add documentation.
27843
27844     The end result is slightly smaller code for all boards. Which isn't
27845     really the point, but at least it isn't any larger.
27846
27847     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
27848     the board maintainers could help me test this on their boards. In
27849     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
27850     can help me out.
27851
27852     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27853     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
27854     Cc: Mark Jackson <mpfj@mimc.co.uk>
27855     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
27856     Cc: Julien May <julien.may@miromico.ch>
27857
27858     Changes since v1:
27859       * Enable pullup on NWAIT
27860       * Add missing include to portmux-pio.h
27861       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
27862
27863 commit 4c24e8288c601cb773ab02528b48a8577970e867
27864 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27865 Date:   Sat Aug 30 17:28:36 2008 +0200
27866
27867     avr32: data_bits should reflect the actual number of data bits
27868
27869     Make the data_bits enum in struct sdram_config reflect the actual number
27870     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
27871     32 bits is just too confusing.
27872
27873     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27874
27875 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
27876 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27877 Date:   Fri Aug 29 17:48:18 2008 +0200
27878
27879     avr32: Update README
27880
27881     Remove some outdated and/or unnecessary information, and add updated
27882     information about the toolchain and buildroot.
27883
27884     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27885
27886 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
27887 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27888 Date:   Sun Aug 31 23:28:15 2008 +0900
27889
27890     sh: Remove CC line from board's Makefile
27891
27892     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27893
27894 commit 468eae0660de6fdfd9999944c536ecc4797bd944
27895 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27896 Date:   Sun Aug 31 23:25:57 2008 +0900
27897
27898     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
27899
27900     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27901
27902 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
27903 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27904 Date:   Thu Aug 28 14:50:52 2008 +0900
27905
27906     sh: Add support sh2 to MAKEALL
27907
27908     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27909     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27910
27911 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
27912 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27913 Date:   Thu Aug 28 14:52:23 2008 +0900
27914
27915     sh: Fix compile error rsk7203 board
27916
27917     This boards used old type preprocessor.
27918     This patch fix compile error.
27919
27920     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27921     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27922
27923 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
27924 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27925 Date:   Thu Aug 28 14:53:31 2008 +0900
27926
27927     sh: Fix compile error sh7785lcr board
27928
27929     This boards used old type preprocessor.
27930     This patch fix compile error.
27931
27932     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27933     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27934
27935 commit 6f0da4972e48f99d37bc522814940a6022cd3084
27936 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27937 Date:   Fri Aug 22 17:39:09 2008 +0900
27938
27939     sh: Renesas Solutions AP325RXA board support
27940
27941     AP325RXA is SH7723's reference board.
27942     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
27943     In this patch, support SCIF, NOR Flash, and Ethernet.
27944
27945     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27946     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27947
27948 commit ab09f433b50bb83b5e440c335bc3839ee069e534
27949 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27950 Date:   Fri Aug 22 17:48:51 2008 +0900
27951
27952     sh: add support Renesas SH7723
27953
27954     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
27955     This patch supports CPU register's header file and SCIF serial driver.
27956
27957     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27959
27960 commit c655fad06ba3fb042dbc667724a40e1a9a091248
27961 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27962 Date:   Sun Aug 31 23:02:04 2008 +0900
27963
27964     sh: Renesas RSK+ 7203 board support
27965
27966     This adds initial support for the RTE RSK+ SH7203 board.
27967
27968     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27969     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27970
27971 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
27972 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27973 Date:   Thu Jul 3 23:11:02 2008 +0900
27974
27975     sh: Add support Renesas SH7203 processor
27976
27977     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27978     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27979
27980 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
27981 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27982 Date:   Sun Aug 31 22:48:33 2008 +0900
27983
27984     sh: Add support SH2/SH2A which is CPU of Renesas Technology
27985
27986     Add support SH2/SH2A basic function.
27987
27988     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27989     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27990
27991 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
27992 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27993 Date:   Sun Aug 31 22:45:08 2008 +0900
27994
27995     sh: Renesas R0P7785LC0011RL board support
27996
27997     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
27998     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
27999
28000     This patch supports the following functions:
28001      - 128MB DDR2-SDRAM (29-bit address mode only)
28002      - NOR Flash
28003      - USB host
28004      - Ethernet
28005
28006     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28007     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28008
28009 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
28010 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28011 Date:   Thu Jul 10 19:32:53 2008 +0900
28012
28013     sh: add support for SH7785
28014
28015     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
28016     This patch supports CPU register's header file.
28017
28018     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28019     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28020
28021 commit d6e04258be8f2408845468d3cf722a4cf0433445
28022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28023 Date:   Sun Aug 31 04:45:42 2008 +0200
28024
28025     davinci: fix remaining dm644x_eth
28026
28027     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28028
28029 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
28030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28031 Date:   Sun Aug 31 04:24:56 2008 +0200
28032
28033     fs: Move conditional compilation to Makefile
28034
28035     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28036
28037 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
28038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28039 Date:   Sun Aug 31 04:24:55 2008 +0200
28040
28041     devices: merge to list_head
28042
28043     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28044
28045 commit ef0255fc75f28655f9681422079287d68a14dbaa
28046 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28047 Date:   Sun Aug 31 04:24:51 2008 +0200
28048
28049     update linux/list
28050
28051     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28052
28053 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
28054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28055 Date:   Sun Aug 31 00:39:48 2008 +0200
28056
28057     smdk6400: add gitignore
28058
28059     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28060
28061 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
28062 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28063 Date:   Sun Aug 31 00:39:48 2008 +0200
28064
28065     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
28066
28067     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28068
28069 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
28070 Author: Guennadi Liakhovetski <lg@denx.de>
28071 Date:   Sun Aug 31 00:39:47 2008 +0200
28072
28073     smdk6400: remove redundant bootargs definition
28074
28075     Double bootargs setting leads to a duplicated environmant entry.
28076
28077     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28078
28079 commit 11edcfe260f20dcea79284a3e95270989d433854
28080 Author: Guennadi Liakhovetski <lg@denx.de>
28081 Date:   Sun Aug 31 00:39:47 2008 +0200
28082
28083     ARM: Add support for S3C6400 based SMDK6400 board
28084
28085     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
28086     driver for it too. The board can also boot from the NOR flash, but due to
28087     hardware limitations it can only address 64KiB on it, which is not enough
28088     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
28089
28090     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28091
28092 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
28093 Author: Guennadi Liakhovetski <lg@denx.de>
28094 Date:   Sun Aug 31 00:39:47 2008 +0200
28095
28096     NAND: add NAND driver for S3C64XX
28097
28098     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
28099
28100     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28101
28102 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
28103 Author: Guennadi Liakhovetski <lg@denx.de>
28104 Date:   Sun Aug 31 00:39:47 2008 +0200
28105
28106     S3C64XX: remove broken HWFLOW support from the serial driver
28107
28108     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
28109     broken and currently unused. Remove it.
28110
28111     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28112
28113 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
28114 Author: Guennadi Liakhovetski <lg@denx.de>
28115 Date:   Sun Aug 31 00:39:47 2008 +0200
28116
28117     serial: add S3C64XX serial driver
28118
28119     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
28120
28121     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28122
28123 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
28124 Author: Guennadi Liakhovetski <lg@denx.de>
28125 Date:   Sun Aug 31 00:39:46 2008 +0200
28126
28127     USB: Add support for OHCI controller on S3C6400
28128
28129     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
28130     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
28131     it should work too and we could still profit from instruction cache.
28132
28133     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28134
28135 commit 9b07773f8883665b002500c190507e9fd99b7181
28136 Author: Guennadi Liakhovetski <lg@denx.de>
28137 Date:   Sun Aug 31 00:39:46 2008 +0200
28138
28139     ARM: Add arm1176 core with S3C6400 SoC
28140
28141     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
28142
28143     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28144
28145 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
28146 Author: Sandeep Paulraj <s-paulraj@ti.com>
28147 Date:   Sun Aug 31 00:39:46 2008 +0200
28148
28149     ARM DaVinci: Changing function names for EMAC driver
28150
28151     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
28152     By replacing all the function names that start with dm644x_* to davinci_*
28153     we make these function more portable. I have tested this change on my EVM.
28154     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
28155     be sending patches that add DaVinci DM6467 support to the list soon.
28156
28157     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
28158
28159 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
28160 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28161 Date:   Sat Aug 30 23:21:30 2008 +0200
28162
28163     Integrator[AP/CP] - Remove unused file memsetup.S
28164
28165     - memsetup.s is changed/merged to lowlevel_init.S
28166       memsetup.S has a global label memsetup that just returns back to caller
28167     - memsetup global label is changed/merged to lowlevel_init
28168       This label is not called from anywhere.
28169
28170     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
28171
28172 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
28173 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28174 Date:   Wed Aug 27 21:35:52 2008 +0200
28175
28176     ARM DaVinci: Standardize names of directories/files
28177
28178     ARM DaVinci: Standardize names of directories/files.
28179
28180     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28181     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28182
28183 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
28184 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28185 Date:   Fri Jul 11 15:10:13 2008 -0400
28186
28187     ARM DaVinci: Move common functions to board/davinci/common
28188
28189     ARM DaVinci: Move common functions to board/davinci/common.
28190
28191     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
28192
28193 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
28194 Author: Stefan Roese <sr@denx.de>
28195 Date:   Fri Aug 29 11:56:49 2008 +0200
28196
28197     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
28198
28199     This function is needed for the new NAND infrastructure. We only need
28200     a dummy implementation though for the NDFC.
28201
28202     Signed-off-by: Stefan Roese <sr@denx.de>
28203
28204 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
28205 Author: Stefan Roese <sr@denx.de>
28206 Date:   Fri Aug 29 12:06:27 2008 +0200
28207
28208     ppc4xx: Increase image size for NAND boot target
28209
28210     This is needed since now with HUSH enabled (amcc-common.h) the image
28211     read from NAND exceeds the previous limit.
28212
28213     Signed-off-by: Stefan Roese <sr@denx.de>
28214
28215 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
28216 Author: Ben Warren <biggerbadderben@gmail.com>
28217 Date:   Thu Aug 28 23:58:30 2008 -0700
28218
28219     Move MPC512x_FEC driver to drivers/net
28220
28221     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28222
28223 commit 80b00af01b3c9154774de2936f05a051e92f6a03
28224 Author: Ben Warren <biggerbadderben@gmail.com>
28225 Date:   Thu Aug 28 23:58:29 2008 -0700
28226
28227     Move MPC5xxx_FEC driver to drivers/net
28228
28229     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28230
28231 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
28232 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28233 Date:   Fri Aug 29 21:53:57 2008 +0200
28234
28235     cmd_terminal: remove no need ifdef
28236
28237     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28238
28239 commit 578118bdf122877ae769776be002255be447b4fa
28240 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28241 Date:   Fri Aug 29 21:53:57 2008 +0200
28242
28243     common/Makefile: order by functionality
28244
28245     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28246
28247 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
28248 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28249 Date:   Fri Aug 29 21:53:56 2008 +0200
28250
28251     miiphyutil: Move conditional compilation to Makefile
28252
28253     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28254
28255 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
28256 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28257 Date:   Fri Aug 29 21:53:37 2008 +0200
28258
28259     autoscript: Move conditional compilation to Makefile
28260
28261     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28262
28263 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
28264 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28265 Date:   Fri Aug 29 01:18:11 2008 +0200
28266
28267     crc16: move to lib_generic
28268
28269     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28270
28271 commit 55195773eacefb22dd483a3c560ea30a14263ce1
28272 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28273 Date:   Fri Aug 29 01:18:01 2008 +0200
28274
28275     miiphybb: move to drivers/net/phy
28276
28277     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28278
28279 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
28280 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28281 Date:   Thu Aug 28 12:31:51 2008 +0200
28282
28283     soft_spi: move to drivers/spi
28284
28285     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28286
28287 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
28288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28289 Date:   Thu Aug 28 12:31:51 2008 +0200
28290
28291     soft_i2c: move to drivers/i2c
28292
28293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28294
28295 commit 717a222229fdb77703e9174d0eb08a4b41febf49
28296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28297 Date:   Thu Aug 28 12:31:48 2008 +0200
28298
28299     gunzip: move to lib_generic
28300
28301     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28302
28303 commit 52aef8f9ba28b747973bf76741c23db658d5773c
28304 Author: Wolfgang Ocker <weo@reccoware.de>
28305 Date:   Tue Aug 26 19:55:23 2008 +0200
28306
28307     ppc4xx: NAND configuration
28308
28309     Made NAND bank configuration setting a config variable.
28310
28311     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
28312     Signed-off-by: Stefan Roese <sr@denx.de>
28313
28314 commit 5bc542a593abc9e974fbd34704af85c37c366c60
28315 Author: Victor Gallardo <vgallardo@amcc.com>
28316 Date:   Thu Aug 28 16:03:28 2008 -0700
28317
28318     ppc4xx: fix UIC external_interrupt hang on UIC0
28319
28320     This patch fixes a UIC external_interrupt hang if critical or non-critical
28321     interrupt is set at the same time as a normal interrupt is set on UIC0.
28322
28323     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
28324     Signed-off-by: Stefan Roese <sr@denx.de>
28325
28326 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
28327 Author: Prodyut  Hazarika <phazarika@amcc.com>
28328 Date:   Wed Aug 27 16:39:00 2008 -0700
28329
28330     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
28331
28332     Removed Magic numbers from Initialization preload registers
28333     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
28334     About 5-7% improvement seen for LMBench memtests
28335
28336     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
28337     Signed-off-by: Stefan Roese <sr@denx.de>
28338
28339 commit 8a490422bed685c9491274ec997f62061d88620b
28340 Author: John Rigby <jrigby@freescale.com>
28341 Date:   Thu Aug 28 13:17:07 2008 -0600
28342
28343     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
28344
28345     MPC5121 rev 2 silicon has a new register for controlling how long
28346     CS is asserted after deassertion of ALE in multiplexed mode.
28347
28348     The default is to assert CS together with ALE.  The alternative
28349     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
28350
28351     The default is wrong for the NOR flash and CPLD on the ADS5121.
28352
28353     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
28354     it does so conditionally based on silicon rev 2.0 or greater.
28355
28356     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
28357     Signed-off-by: John Rigby <jrigby@freescale.com>
28358
28359 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
28360 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28361 Date:   Tue Aug 19 00:56:46 2008 +0600
28362
28363     Add I2C frequency dividers for ColdFire
28364
28365     The existing I2C freqency dividers for FDR does not apply
28366     to ColdFire platforms; thus, a seperate table is added
28367     based on MCF5xxx Reference Manual
28368
28369     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
28370     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28371     Acked-by: Tabi Timur <timur@freescale.com>
28372
28373 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
28374 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28375 Date:   Tue Aug 19 03:01:19 2008 +0600
28376
28377     ColdFire: I2C fix for multiple platforms
28378
28379     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28380
28381 commit d53cf6a9c7423cba668b867978648645f71c3090
28382 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28383 Date:   Tue Aug 19 00:37:13 2008 +0600
28384
28385     ColdFire: Add CONFIG_MII_INIT for M5272C3
28386
28387     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28388
28389 commit f78ced3028d4130b24a318943a70cf5584ab16f4
28390 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28391 Date:   Tue Aug 19 00:26:25 2008 +0600
28392
28393     ColdFire: Multiple fixes for MCF5445x platforms
28394
28395     Add FEC pin set and mii reset in __mii_init(). Change
28396     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
28397     change cfi_offset to 0, and change CFG_FLASH_CFI to
28398     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
28399     M54455EVB env settings in configuration file.
28400
28401     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28402
28403 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
28404 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28405 Date:   Fri Aug 15 18:24:25 2008 +0000
28406
28407     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
28408
28409     The user manuals recommend 7.
28410
28411     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
28412     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28413
28414 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
28415 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28416 Date:   Fri Aug 15 16:50:07 2008 +0000
28417
28418     ColdFire: Raise uart baudrate to 115200 bps
28419
28420     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
28421     uart baudrate increase from 19200 to 115200 bps
28422
28423     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28424
28425 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
28426 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28427 Date:   Wed Aug 13 12:07:03 2008 +0000
28428
28429     ColdFire: Fix board.c warning message
28430
28431     Implicit declaration of nand_init() warning message
28432
28433     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28434
28435 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
28436 Author: Kumar Gala <galak@kernel.crashing.org>
28437 Date:   Wed Aug 27 01:10:34 2008 -0500
28438
28439     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
28440
28441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28442
28443 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
28444 Author: Heiko Schocher <hs@denx.de>
28445 Date:   Thu Aug 21 20:44:49 2008 +0200
28446
28447     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
28448
28449     Signed-off-by: Heiko Schocher <hs@denx.de>
28450
28451 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
28452 Author: Kumar Gala <galak@kernel.crashing.org>
28453 Date:   Tue Aug 19 14:46:36 2008 -0500
28454
28455     mpc85xx: remove redudant code with lib_ppc/interrupts.c
28456
28457     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
28458     not show how that happened, but there is no good reason for it.
28459
28460     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
28461     they exist.
28462
28463     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28464
28465 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
28466 Author: Kumar Gala <galak@kernel.crashing.org>
28467 Date:   Fri Jul 25 13:31:05 2008 -0500
28468
28469     mpc85xx: Add support for the MPC8536DS reference board
28470
28471     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28472     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
28473     Signed-off-by: Dejan Minic <minic@freescale.com>
28474     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28475     Signed-off-by: Dave Liu <daveliu@freescale.com>
28476     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28477
28478 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
28479 Author: Kumar Gala <galak@kernel.crashing.org>
28480 Date:   Tue Aug 12 11:14:19 2008 -0500
28481
28482     mpc85xx: Add support for the MPC8536
28483
28484     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
28485     also have SERDES init code for the 8536.
28486
28487     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28488     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
28489     Signed-off-by: Dejan Minic <minic@freescale.com>
28490     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28491     Signed-off-by: Dave Liu <daveliu@freescale.com>
28492
28493 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
28494 Author: Kumar Gala <galak@kernel.crashing.org>
28495 Date:   Tue Aug 12 11:13:08 2008 -0500
28496
28497     mpc85xx: Add support for the MPC8572DS reference board
28498
28499     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28500
28501 commit 457caecdbca3df21a93abff19eab12dbc61b7897
28502 Author: Kumar Gala <galak@kernel.crashing.org>
28503 Date:   Wed Aug 27 01:05:35 2008 -0500
28504
28505     FSL DDR: Remove old SPD support from cpu/mpc85xx
28506
28507     All 85xx boards have been converted to the new code so we can
28508     remove the old SPD DDR setup code.
28509
28510     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28511
28512 commit 0e7927db138976469e7257e29c1338050a50fcd9
28513 Author: Kumar Gala <galak@kernel.crashing.org>
28514 Date:   Wed Aug 27 01:04:07 2008 -0500
28515
28516     FSL DDR: Convert STXSSA to new DDR code.
28517
28518     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28519
28520 commit c360d9b970fbb9c13744c355879671165bbb9b9e
28521 Author: Kumar Gala <galak@kernel.crashing.org>
28522 Date:   Wed Aug 27 01:03:42 2008 -0500
28523
28524     FSL DDR: Convert STXGP3 to new DDR code.
28525
28526     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28527
28528 commit 8e55313b7ae12352a343f9b9962e662dbd897187
28529 Author: Kumar Gala <galak@kernel.crashing.org>
28530 Date:   Tue Aug 26 23:52:58 2008 -0500
28531
28532     FSL DDR: Convert SBC8560 to new DDR code.
28533
28534     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28535
28536 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
28537 Author: Kumar Gala <galak@kernel.crashing.org>
28538 Date:   Tue Aug 26 23:52:32 2008 -0500
28539
28540     FSL DDR: Convert MPC8540EVAL to new DDR code.
28541
28542     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28543
28544 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
28545 Author: Kumar Gala <galak@kernel.crashing.org>
28546 Date:   Tue Aug 26 23:52:07 2008 -0500
28547
28548     FSL DDR: Convert PM856 to new DDR code.
28549
28550     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28551
28552 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
28553 Author: Kumar Gala <galak@kernel.crashing.org>
28554 Date:   Tue Aug 26 23:51:49 2008 -0500
28555
28556     FSL DDR: Convert PM854 to new DDR code.
28557
28558     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28559
28560 commit 33b9079ba20926f14238fff863b68a98e938948e
28561 Author: Kumar Gala <galak@kernel.crashing.org>
28562 Date:   Tue Aug 26 23:15:28 2008 -0500
28563
28564     FSL DDR: Convert sbc8548 to new DDR code.
28565
28566     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28567
28568 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
28569 Author: Kumar Gala <galak@kernel.crashing.org>
28570 Date:   Tue Aug 26 23:14:14 2008 -0500
28571
28572     FSL DDR: Convert atum8548 to new DDR code.
28573
28574     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28575
28576 commit be0bd8234b9777ecd63c4c686f72af070d886517
28577 Author: Kumar Gala <galak@kernel.crashing.org>
28578 Date:   Tue Aug 26 22:56:56 2008 -0500
28579
28580     FSL DDR: Convert socrates to new DDR code.
28581
28582     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28583
28584 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
28585 Author: Kumar Gala <galak@kernel.crashing.org>
28586 Date:   Tue Aug 26 08:02:30 2008 -0500
28587
28588     FSL DDR: Convert MPC8544DS to new DDR code.
28589
28590     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28591
28592 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
28593 Author: Jon Loeliger <jdl@freescale.com>
28594 Date:   Tue Mar 18 13:51:05 2008 -0500
28595
28596     FSL DDR: Convert MPC8568MDS to new DDR code.
28597
28598     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28599     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28600
28601 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
28602 Author: Jon Loeliger <jdl@freescale.com>
28603 Date:   Tue Mar 18 13:51:06 2008 -0500
28604
28605     FSL DDR: Convert MPC8548CDS to new DDR code.
28606
28607     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28608     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28609
28610 commit aa11d85cf318b961e029fe50d68ca47d004bce93
28611 Author: Jon Loeliger <jdl@freescale.com>
28612 Date:   Mon Mar 17 15:48:18 2008 -0500
28613
28614     FSL DDR: Convert MPC8541CDS to new DDR code.
28615
28616     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28617     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28618
28619 commit 2b40edb10d81da7bba724edbccd7f53777112579
28620 Author: Jon Loeliger <jdl@freescale.com>
28621 Date:   Tue Mar 18 11:12:42 2008 -0500
28622
28623     FSL DDR: Convert MPC8555ADS to new DDR code.
28624
28625     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28626     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28627
28628 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
28629 Author: Jon Loeliger <jdl@freescale.com>
28630 Date:   Tue Mar 18 11:12:44 2008 -0500
28631
28632     FSL DDR: Convert MPC8560ADS to new DDR code.
28633
28634     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28635     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28636
28637 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
28638 Author: Kumar Gala <galak@kernel.crashing.org>
28639 Date:   Fri Jun 6 13:12:18 2008 -0500
28640
28641     FSL DDR: Convert MPC8540ADS to new DDR code.
28642
28643     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28644
28645 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
28646 Author: Kumar Gala <galak@kernel.crashing.org>
28647 Date:   Tue Aug 26 21:34:55 2008 -0500
28648
28649     FSL DDR: Add 85xx specific register setting
28650
28651     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28652
28653 commit 6fb1b7346849ccd0c20306143e334f5b76143070
28654 Author: Kumar Gala <galak@kernel.crashing.org>
28655 Date:   Mon Jun 9 11:07:46 2008 -0500
28656
28657     FSL DDR: Add e500 TLB helper for DDR code
28658
28659     Provide a helper function that board code can call to map TLBs when
28660     setting up DDR.
28661
28662     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28663
28664 commit d26b739afe5a6760bd345743188759cd9d0f3b47
28665 Author: Andrew Dyer <adyer@righthandtech.com>
28666 Date:   Tue Aug 26 17:03:38 2008 -0500
28667
28668     dm9000 remove dead external phy support, gpio fix
28669
28670     dm9000 has code to detect and initialize external phy parts, but later
28671     on in the code the part is forced to use the internal phy
28672     unconditionally.  Remove the unused/untested code.
28673
28674     change the GPIO initialization so that only the GPIO used as an
28675     internal phy reset (hardwired in the chip) is set as an output.  The
28676     remaining GPIO need to be handled by board specific code to prevent
28677     possible drive conflicts.  Set as inputs for safety.
28678
28679     replace a few magic numbers with defines
28680
28681     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
28682     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28683
28684 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
28685 Author: Peter Tyser <ptyser@xes-inc.com>
28686 Date:   Tue Aug 26 11:17:48 2008 -0500
28687
28688     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
28689
28690     cmd_net.c command descriptions were updated to describe the optional
28691     hostIPaddr argument.  The dhcp command help message was also updated
28692     to more closely reflect the other commands in cmd_net.c
28693
28694     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28695     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28696
28697 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
28698 Author: Remy Bohmer <linux@bohmer.net>
28699 Date:   Wed Aug 20 11:30:28 2008 +0200
28700
28701     Fix bogus error message in the DHCP handler
28702
28703     The DHCP handler has 1 state that is not listed in this case, causing a
28704     failure message when there is actually no failure.
28705
28706     Signed-off-by: Remy Bohmer <linux@bohmer.net>
28707     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28708
28709 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
28710 Author: Remy Bohmer <linux@bohmer.net>
28711 Date:   Wed Aug 20 11:30:27 2008 +0200
28712
28713     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
28714
28715     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
28716     missing extern inside the net/bootp.h header
28717
28718     Signed-off-by: Remy Bohmer <linux@bohmer.net>
28719     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28720
28721 commit 1803f7f91ff35ca402259065df7557107dcf28a2
28722 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28723 Date:   Tue Aug 19 21:26:32 2008 +0000
28724
28725     ColdFire: Add FEC Buffer descriptors in SRAM
28726
28727     Add FEC Buffer descriptors and data buffer in SRAM for
28728     faster execution and access.
28729
28730     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28731     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28732
28733 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
28734 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28735 Date:   Thu Aug 21 23:55:11 2008 +0000
28736
28737     Fix ColdFire FEC warning messages
28738
28739     Types mismatch and implicit declaration of icache_invalid()
28740     warning messages
28741
28742     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28743     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28744
28745 commit 6a002171098e968bd5b362347d2831224fab6048
28746 Author: Ben Warren <biggerbadderben@gmail.com>
28747 Date:   Sat Jul 12 00:17:50 2008 -0700
28748
28749     Moved initialization of SKGE Ethernet driver to board code.
28750
28751     The only board using this driver is the SL8245 board.
28752     Removed initialization for the driver from net/eth.c
28753
28754     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28755
28756 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
28757 Author: Ben Warren <biggerbadderben@gmail.com>
28758 Date:   Sat Jul 12 00:08:45 2008 -0700
28759
28760     Moved conditional compilation to Makefile for SK98 Ethernet driver
28761
28762     Brute-force removal of #ifdefs.  Didn't touch the code.
28763     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28764
28765 commit 65d3d99c28dc363d15eaee78225ff643df499b97
28766 Author: Ben Warren <biggerbadderben@gmail.com>
28767 Date:   Fri Jul 11 23:42:19 2008 -0700
28768
28769     Moved initialization of ULI526X Ethernet driver to board code.
28770
28771     The only board using this driver is the Freescale MPC8610HPCD board.
28772     Removed initialization for the driver from net/eth.c
28773
28774     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28775
28776 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
28777 Author: Ben Warren <biggerbadderben@gmail.com>
28778 Date:   Fri Jul 11 23:15:28 2008 -0700
28779
28780     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
28781
28782     Added board_eth_init() function to bf537-stamp board.
28783     Removed initialization for the Blackin EMAC driver from net/eth.c
28784
28785     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28786
28787 commit fc363ce35408f348cacced68505f3747a53e3d7c
28788 Author: Ben Warren <biggerbadderben@gmail.com>
28789 Date:   Wed Jul 9 01:04:19 2008 -0700
28790
28791     Moved initialization of GRETH Ethernet driver to CPU directory
28792
28793     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
28794     removed code from net/eth.c
28795
28796     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28797
28798 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
28799 Author: Ben Warren <biggerbadderben@gmail.com>
28800 Date:   Tue Aug 26 22:16:25 2008 -0700
28801
28802     Moved initialization of MCFFEC Ethernet driver to CPU directory
28803
28804     Added a cpu_eth_init() function to coldfire CPU directories and
28805     removed code from net/eth.c
28806
28807     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28808
28809 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
28810 Author: Ben Warren <biggerbadderben@gmail.com>
28811 Date:   Tue Aug 26 22:12:36 2008 -0700
28812
28813     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
28814
28815     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
28816     removed code from net/eth.c
28817
28818     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28819
28820 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
28821 Author: Kumar Gala <galak@kernel.crashing.org>
28822 Date:   Tue Aug 26 15:01:38 2008 -0500
28823
28824     FSL DDR: Remove old SPD support from cpu/mpc86xx
28825
28826     All 86xx boards have been converted to the new code so we can
28827     remove the old SPD DDR setup code.
28828
28829     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28830
28831 commit 9bd4e5911b750837515466bc7449087698b88e0e
28832 Author: Kumar Gala <galak@kernel.crashing.org>
28833 Date:   Tue Aug 26 15:01:37 2008 -0500
28834
28835     FSL DDR: Convert SBC8641D to new DDR code.
28836
28837     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28838
28839 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
28840 Author: Jon Loeliger <jdl@freescale.com>
28841 Date:   Tue Aug 26 15:01:36 2008 -0500
28842
28843     FSL DDR: Convert MPC8610HPCD to new DDR code.
28844
28845     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28846     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28847
28848 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
28849 Author: Kumar Gala <galak@kernel.crashing.org>
28850 Date:   Tue Aug 26 15:01:35 2008 -0500
28851
28852     FSL DDR: Convert MPC8641HPCN to new DDR code.
28853
28854     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28855     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28856
28857 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
28858 Author: Kumar Gala <galak@kernel.crashing.org>
28859 Date:   Tue Aug 26 15:01:34 2008 -0500
28860
28861     FSL DDR: Add 86xx specific register setting
28862
28863     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28864
28865 commit 233fdd502a6c227f476212b3097653ad48d7e254
28866 Author: Kumar Gala <galak@kernel.crashing.org>
28867 Date:   Tue Aug 26 15:01:32 2008 -0500
28868
28869     FSL DDR: Add DDR2 DIMM paramter support
28870
28871     Compute DIMM parameters based upon the SPD information.
28872
28873     Signed-off-by: James Yang <James.Yang@freescale.com>
28874     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28875     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28876
28877 commit 05c05a2363a6ac11e0e405926034546ffad71fad
28878 Author: Kumar Gala <galak@kernel.crashing.org>
28879 Date:   Tue Aug 26 15:01:30 2008 -0500
28880
28881     FSL DDR: Add DDR1 DIMM paramter support
28882
28883     Compute DIMM parameters based upon the SPD information in spd.
28884
28885     Signed-off-by: James Yang <James.Yang@freescale.com>
28886     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28887     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28888
28889 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
28890 Author: Kumar Gala <galak@kernel.crashing.org>
28891 Date:   Tue Aug 26 15:01:29 2008 -0500
28892
28893     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
28894
28895     The main purpose of this rewrite it to be able to share the same
28896     initialization code on all FSL PowerPC products that have DDR
28897     controllers.  (83xx, 85xx, 86xx).
28898
28899     The code is broken up into the following steps:
28900         GET_SPD
28901         COMPUTE_DIMM_PARMS
28902         COMPUTE_COMMON_PARMS
28903         GATHER_OPTS
28904         ASSIGN_ADDRESSES
28905         COMPUTE_REGS
28906         PROGRAM_REGS
28907
28908     This allows us to share more code an easily allow for board specific code
28909     overrides.
28910
28911     Additionally this code base adds support for >4G of DDR and provides a
28912     foundation for supporting interleaving on processors with more than one
28913     controller.
28914
28915     Signed-off-by: James Yang <James.Yang@freescale.com>
28916     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28917     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28918     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
28919     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28920
28921 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
28922 Author: Kumar Gala <galak@kernel.crashing.org>
28923 Date:   Tue Aug 26 15:01:28 2008 -0500
28924
28925     FSL DDR: Provide a generic set_ddr_laws()
28926
28927     Provide a helper function that will setup the last available
28928     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
28929
28930     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28931
28932 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
28933 Author: James Yang <James.Yang@freescale.com>
28934 Date:   Tue Aug 26 15:01:27 2008 -0500
28935
28936     Add proper SPD definitions for DDR1/2/3
28937
28938     Also adds helper functions for DDR1/2 to verify the checksum.
28939
28940     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28941
28942 commit 285db74716c724ae8a0ff177878fd09a74428c7b
28943 Author: Wolfgang Denk <wd@denx.de>
28944 Date:   Wed Aug 27 01:02:48 2008 +0200
28945
28946     Update CHANGELOG
28947
28948     Signed-off-by: Wolfgang Denk <wd@denx.de>
28949
28950 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
28951 Author: Heiko Schocher <hs@denx.de>
28952 Date:   Tue Aug 19 10:08:49 2008 +0200
28953
28954     Add support for muas3001 board (MPC8270)
28955
28956     Signed-off-by: Heiko Schocher <hs@denx.de>
28957
28958 commit 322098bff32410d2a00031649b47c4ec90a66d9a
28959 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28960 Date:   Tue Aug 19 08:31:18 2008 +0530
28961
28962     common/cmd_load.c cleanup - remove unused variables
28963
28964     - Remove unused global variable os_data_count.
28965     - Remove unused variable z.
28966
28967     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
28968
28969 commit 306620b762a4f9fa6678568ad2e8772dec145208
28970 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
28971 Date:   Mon Aug 18 13:35:27 2008 +0200
28972
28973     remove MVS1 board
28974
28975     MVS1 board has reached end-of-life and can be removed completely.
28976
28977     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
28978
28979 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
28980 Author: Kumar Gala <galak@kernel.crashing.org>
28981 Date:   Fri Aug 15 08:24:45 2008 -0500
28982
28983     bootm: refactor do_reset and os boot function args
28984
28985     There is no need for each OS specific function to call do_reset() we
28986     can just do it once in bootm. This means its feasible on an error for
28987     the OS boot function to return.
28988
28989     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
28990     functions.  flag isn't currently used but might be in the future so
28991     we left it alone.
28992
28993     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28994
28995 commit 40afac22a9c602e55c501c800f1c064324711b56
28996 Author: Kumar Gala <galak@kernel.crashing.org>
28997 Date:   Fri Aug 15 08:24:44 2008 -0500
28998
28999     fdt: Added resize command
29000
29001     Resize the fdt to size + padding to 4k boundary
29002
29003     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29004
29005 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
29006 Author: Kumar Gala <galak@kernel.crashing.org>
29007 Date:   Fri Aug 15 08:24:43 2008 -0500
29008
29009     fdt: refactor initrd related code
29010
29011     Created a new fdt_initrd() to deal with setting the initrd properties
29012     in the device tree and fixing up the mem reserve.  We can use this
29013     both in the choosen node handling and lets us remove some duplicated
29014     code when we fixup the initrd info in bootm on PPC.
29015
29016     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29017
29018 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
29019 Author: Kumar Gala <galak@kernel.crashing.org>
29020 Date:   Fri Aug 15 08:24:42 2008 -0500
29021
29022     fdt: refactor fdt resize code
29023
29024     Move the fdt resizing code out of ppc specific boot code and into
29025     common fdt support code.
29026
29027     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29028
29029 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
29030 Author: Kumar Gala <galak@kernel.crashing.org>
29031 Date:   Fri Aug 15 08:24:41 2008 -0500
29032
29033     bootm: refactor image detection and os load steps
29034
29035     Created a bootm_start() that handles the parsing and detection of all
29036     the images that will be used by the bootm command (OS, ramdisk, fdt).
29037     As part of this we now tract all the relevant image offsets in the
29038     bootm_headers_t struct. This will allow us to have all the needed
29039     state for future sub-commands and lets us reduce a bit of arch
29040     specific code on SPARC.
29041
29042     Created a bootm_load_os() that deals with decompression and loading
29043     the OS image.
29044
29045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29046
29047 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
29048 Author: Kumar Gala <galak@kernel.crashing.org>
29049 Date:   Fri Aug 15 08:24:40 2008 -0500
29050
29051     bootm: move lmb into the bootm_headers_t structure
29052
29053     To allow for persistent state between future bootm subcommands we
29054     need the lmb to exist in a global state.
29055     Moving it into the bootm_headers_t allows us to do that.
29056
29057     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29058
29059 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
29060 Author: Kumar Gala <galak@kernel.crashing.org>
29061 Date:   Fri Aug 15 08:24:39 2008 -0500
29062
29063     bootm: Set working fdt address as part of the bootm flow
29064
29065     Set the fdt working address so "fdt FOO" commands can be used as part
29066     of the bootm flow.  Also set an the environment variable "fdtaddr"
29067     with the value.
29068
29069     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29070
29071 commit 06a09918f3903450313e2047a9cc258bf5872f46
29072 Author: Kumar Gala <galak@kernel.crashing.org>
29073 Date:   Fri Aug 15 08:24:38 2008 -0500
29074
29075     bootm: refactor fdt locating and relocation code
29076
29077     Move the code that handles finding a device tree blob and relocating
29078     it (if needed) into common code so all arch's have access to it.
29079
29080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29081
29082 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
29083 Author: Kumar Gala <galak@kernel.crashing.org>
29084 Date:   Fri Aug 15 08:24:37 2008 -0500
29085
29086     bootm: refactor ramdisk locating code
29087
29088     Move determing if we have a ramdisk and where its located into the
29089     common code. Keep track of the ramdisk start and end in the
29090     bootm_headers_t image struct.
29091
29092     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29093
29094 commit c160a9544743e80e8889edb2275538e7764ce334
29095 Author: Kumar Gala <galak@kernel.crashing.org>
29096 Date:   Fri Aug 15 08:24:36 2008 -0500
29097
29098     bootm: refactor entry point code
29099
29100     Move entry point code out of each arch and into common code.
29101     Keep the entry point in the bootm_headers_t images struct.
29102
29103     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29104
29105 commit 20220d22b9f41446288588cd2e457e0077a18bed
29106 Author: Randy Vinson <rvinson@mvista.com>
29107 Date:   Wed Aug 13 11:44:57 2008 -0700
29108
29109     mpc7448hpc2: Fix PCI I/O space mapping.
29110
29111     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
29112     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
29113     space such that 0xFA000000 in the processor's address space maps to 0
29114     on the PCI I/O bus.
29115
29116     Signed-off-by Randy Vinson <rvinson@mvista.com>
29117     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
29118
29119 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
29120 Author: Guennadi Liakhovetski <lg@denx.de>
29121 Date:   Wed Aug 13 18:10:26 2008 +0200
29122
29123     i.MX31: Specify maintainers for i.MX31-based boards
29124
29125     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29126     Signed-off-by: Wolfgang Denk <wd@denx.de>
29127
29128 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
29129 Author: Wolfgang Denk <wd@denx.de>
29130 Date:   Tue Aug 26 15:01:28 2008 +0200
29131
29132     ADS5121: adjust image addresses in RAM and flash
29133
29134     Use the same mapping in flash as used by Linux
29135
29136     Signed-off-by: Wolfgang Denk <wd@denx.de>
29137
29138 commit 19f101412c16edee9fd55db4039e1d68a833b28b
29139 Author: Wolfgang Denk <wd@denx.de>
29140 Date:   Tue Aug 26 13:14:34 2008 +0200
29141
29142     cmd_mem.c: Fix help message alignment
29143
29144     Bug was introced by "Big white-space cleanup" (53677ef1)
29145
29146     Signed-off-by: Wolfgang Denk <wd@denx.de>
29147
29148 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
29149 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
29150 Date:   Wed Aug 20 11:11:52 2008 +0200
29151
29152     change mvBL-M7 default env and move to vendor subdir
29153
29154     fix mvBL-M7 config and move to matrix_vision subdir
29155
29156     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
29157     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29158
29159 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
29160 Author: Nick Spence <nick.spence@freescale.com>
29161 Date:   Fri Aug 22 23:52:40 2008 -0700
29162
29163     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
29164
29165     This patch adds elements to the 83xx sysconf structure and #define values that are used
29166     by mpc83xx family devices.
29167
29168     Signed-off-by: Nick Spence <nick.spence@freescale.com>
29169     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29170
29171 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
29172 Author: Ira W. Snyder <iws@ovro.caltech.edu>
29173 Date:   Fri Aug 22 11:00:15 2008 -0700
29174
29175     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
29176
29177     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
29178     PCI card rather than a host computer.
29179
29180     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
29181     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29182
29183 commit 4ff9aea9d6b5602683a920951ef896996438af62
29184 Author: Ira W. Snyder <iws@ovro.caltech.edu>
29185 Date:   Fri Aug 22 11:00:14 2008 -0700
29186
29187     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
29188
29189     This adds a helper function to unlock the PCI configuration bit, so that
29190     any extra PCI setup (such as outbound windows, etc.) can be done after
29191     using the 83XX_GENERIC_PCI code to set up the PCI bus.
29192
29193     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
29194     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29195
29196 commit 162338e1fcde231ca4d562e5ebd7859456731691
29197 Author: Ira W. Snyder <iws@ovro.caltech.edu>
29198 Date:   Fri Aug 22 11:00:13 2008 -0700
29199
29200     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
29201
29202     Change the MPC8349EMDS board to use the generic PCI initialization code
29203     for the mpc83xx cpu.
29204
29205     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
29206     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29207
29208 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
29209 Author: Kim Phillips <kim.phillips@freescale.com>
29210 Date:   Mon Aug 25 14:53:09 2008 -0500
29211
29212     fix out of tree building
29213
29214     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29215
29216 commit a49d10cf027d059ee15c262010a05cdaec0961e1
29217 Author: Wolfgang Denk <wd@denx.de>
29218 Date:   Mon Aug 25 23:45:41 2008 +0200
29219
29220     Minor coding style cleanup, updte CHANGELOG
29221
29222     Signed-off-by: Wolfgang Denk <wd@denx.de>
29223
29224 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
29225 Author: Stefan Roese <sr@denx.de>
29226 Date:   Wed Aug 20 20:29:38 2008 +0200
29227
29228     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
29229
29230     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
29231     to combine both config options into one line. This even allows defining
29232     both options and not generating the target object twice.
29233
29234     Signed-off-by: Stefan Roese <sr@denx.de>
29235
29236 commit 079edb913dbae147b50a488cf02e03f473fc5f28
29237 Author: Jens Gehrlein <sew_s@tqs.de>
29238 Date:   Fri Jul 4 16:50:05 2008 +0200
29239
29240     MX31: fix bit masks in function mx31_decode_pll()
29241
29242     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
29243
29244     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29245
29246 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
29247 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
29248 Date:   Mon Aug 25 11:11:34 2008 +0200
29249
29250     Correct ARM Versatile Timer Initialization
29251
29252      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
29253        -- Timer Value Register @ TIMER Base + 4 is Read-only.
29254        -- Prescale Value (Bits 3-2 of TIMER Control register)
29255         can only be one of 00,01,10. 11 is undefined.
29256        -- CFG_HZ for Versatile board is set to
29257         #define CFG_HZ          (1000000 / 256)
29258         So Prescale bits is set to indicate
29259         - 8 Stages of Prescale, Clock divided by 256
29260      - The Timer Control Register has one Undefined/Shouldn't Use Bit
29261        So we should do read/modify/write Operation
29262
29263     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
29264
29265 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
29266 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
29267 Date:   Mon Aug 25 11:30:29 2008 +0200
29268
29269     Add ARM AMBA PL031 RTC Support
29270
29271     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
29272
29273 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
29274 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29275 Date:   Tue Aug 19 16:21:03 2008 -0400
29276
29277     ARM DaVinci: Removed redundant NAND initialization code.
29278
29279     ARM DaVinci: Removed redundant NAND initialization code.
29280
29281     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29282
29283 commit b3fb663b20d995ca41327db877ddb168279b3f62
29284 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29285 Date:   Tue Aug 19 16:21:00 2008 -0400
29286
29287     ARM DaVinci: Fix compilation error with new MTD code.
29288
29289     ARM DaVinci: Fix compilation error with new MTD code.
29290
29291     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29292
29293 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
29294 Author: Gerald Van Baren <vanbaren@cideas.com>
29295 Date:   Fri Aug 22 14:37:05 2008 -0400
29296
29297     Add note on dereferencing /aliases pointers
29298
29299     Replace the "must quote special characters" note with a hint on
29300     how to dereference /aliases pointers by omitting the leading "/".
29301     This feature was introduced by Kumar Gala as a libfdt enhancement
29302     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
29303
29304     Example:
29305
29306     => fdt print /aliases
29307     aliases {
29308             ethernet0 = "/qe@e0100000/ucc@2000";
29309             ethernet1 = "/qe@e0100000/ucc@3000";
29310             serial0 = "/soc8360@e0000000/serial@4500";
29311             serial1 = "/soc8360@e0000000/serial@4600";
29312             pci0 = "/pci@e0008500";
29313     };
29314     => fdt print ethernet0
29315     ucc@2000 {
29316             device_type = "network";
29317             compatible = "ucc_geth";
29318             cell-index = <0x1>;
29319             reg = <0x2000 0x200>;
29320             interrupts = <0x20>;
29321             interrupt-parent = <0x2>;
29322             local-mac-address = [00 00 00 00 00 00];
29323             rx-clock-name = "none";
29324             tx-clock-name = "clk9";
29325             phy-handle = <0x3>;
29326             phy-connection-type = "rgmii-id";
29327             pio-handle = <0x4>;
29328     };
29329
29330     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29331
29332 commit feeca3f578b7f53c032ba203698751c982f8bf5a
29333 Author: Kumar Gala <galak@kernel.crashing.org>
29334 Date:   Thu Aug 14 08:28:19 2008 -0500
29335
29336     libfdt: Add support for using aliases in fdt_path_offset()
29337
29338     If the path doesn't start with '/' check to see if it matches some alias
29339     under "/aliases" and substitute the matching alias value in the path
29340     and retry the lookup.
29341
29342     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29343     Acked-by: David Gibson <david@gibson.dropbear.id.au>
29344     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
29345
29346 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
29347 Author: David Gibson <david@gibson.dropbear.id.au>
29348 Date:   Wed Aug 6 14:50:49 2008 +1000
29349
29350     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
29351
29352     As well as fdt_subnode_offset(), libfdt includes an
29353     fdt_subnode_offset_namelen() function that takes the subnode name to
29354     look up not as a NUL-terminated string, but as a string with an
29355     explicit length.  This can be useful when the caller has the name as
29356     part of a longer string, such as a full path.
29357
29358     However, we don't have corresponding 'namelen' versions for
29359     fdt_get_property() and fdt_getprop().  There are less obvious use
29360     cases for these variants on property names, but there are
29361     circumstances where they can be useful e.g. looking up property names
29362     which need to be parsed from a longer string buffer such as user input
29363     or a configuration file, or looking up an alias in a path with
29364     IEEE1275 style aliases.
29365
29366     So, since it's very easy to implement such variants, this patch does
29367     so.  The original NUL-terminated variants are, of course, implemented
29368     in terms of the namelen versions.
29369
29370     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29371
29372 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
29373 Author: David Gibson <david@gibson.dropbear.id.au>
29374 Date:   Tue Jul 29 14:51:22 2008 +1000
29375
29376     libfdt: Forgot one function when cleaning the namespace
29377
29378     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
29379     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
29380     chance of collisions with things from whatever package libfdt is
29381     embedded in, pulled into the libfdt build via that environment's
29382     libfdt_env.h.
29383
29384     Except... I missed one.  This patch applies the same treatment to
29385     _stringlist_contains().  While we're at it, also make it static since
29386     it's only used in the same file.
29387
29388     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29389
29390 commit 46390da15411351fc3b498bd8c1615f78fe80df0
29391 Author: Wolfram Sang <w.sang@pengutronix.de>
29392 Date:   Wed Jul 9 11:22:44 2008 +0200
29393
29394     libfdt: Improve documentation in libfdt.h
29395
29396     Fix a few typos and mistakes.
29397
29398     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
29399     Acked-by: David Gibson <david@gibson.dropbear.id.au>
29400
29401 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
29402 Author: David Gibson <david@gibson.dropbear.id.au>
29403 Date:   Wed Jul 9 14:10:24 2008 +1000
29404
29405     libfdt: Increase namespace-pollution paranoia
29406
29407     libfdt is supposed to easy to embed in projects all and sundry.
29408     Often, it won't be practical to separate the embedded libfdt's
29409     namespace from that of the surrounding project.  Which means there can
29410     be namespace conflicts between even libfdt's internal/static functions
29411     and functions or macros coming from the surrounding project's headers
29412     via libfdt_env.h.
29413
29414     This patch, therefore, renames a bunch of libfdt internal functions
29415     and macros and makes a few other chances to reduce the chances of
29416     namespace collisions with embedding projects.  Specifically:
29417         - Internal functions (even static ones) are now named _fdt_*()
29418
29419         - The type and (static) global for the error table in
29420               fdt_strerror() gain an fdt_ prefix
29421
29422         - The unused macro PALIGN is removed
29423
29424         - The memeq and streq macros are removed and open-coded in the
29425               users (they were only used once each)
29426
29427         - Other macros gain an FDT_ prefix
29428
29429         - To save some of the bulk from the previous change, an
29430               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
29431               FDT_ALIGN(x, FDT_TAGSIZE)
29432
29433     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29434
29435 commit c66830263af19831f2b7db307f79d1943febf7f9
29436 Author: David Gibson <david@gibson.dropbear.id.au>
29437 Date:   Mon Jul 7 10:14:15 2008 +1000
29438
29439     dtc: Enable and fix -Wcast-qual warnings
29440
29441     Enabling -Wcast-qual warnings in dtc shows up a number of places where
29442     we are incorrectly discarding a const qualification.  There are also
29443     some places where we are intentionally discarding the 'const', and we
29444     need an ugly cast through uintptr_t to suppress the warning.  However,
29445     most of these are pretty well isolated with the *_w() functions.  So
29446     in the interests of maximum safety with const qualifications, this
29447     patch enables the warnings and fixes the existing complaints.
29448
29449     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29450     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
29451
29452 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
29453 Author: David Gibson <david@gibson.dropbear.id.au>
29454 Date:   Mon Jul 7 10:10:48 2008 +1000
29455
29456     dtc: Enable and fix -Wpointer-arith warnings
29457
29458     This patch turns on the -Wpointer-arith option in the dtc Makefile,
29459     and fixes the resulting warnings due to using (void *) in pointer
29460     arithmetic.  While convenient, pointer arithmetic on void * is not
29461     portable, so it's better that we avoid it, particularly in libfdt.
29462
29463     Also add necessary definition of uintptr_t needed by David Gibson's
29464     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
29465     comes from stdint.h, which u-boot doesn't have). -- gvb
29466
29467     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29468     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29469
29470 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
29471 Author: Tirumala R Marri <tmarri@amcc.com>
29472 Date:   Thu Aug 21 21:54:53 2008 -0700
29473
29474     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
29475
29476     During recent PCI-E tests it has been found that current
29477     driverl level and de-emphasis values are not set correctly.
29478     After sweeping throgh all de-ephasis values, it was found that
29479     0x130 is a right value. Where 0x13 is driver level and 0 is
29480     de-emphasis.
29481
29482     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
29483     Signed-off-by: Stefan Roese <sr@denx.de>
29484
29485 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
29486 Author: Remy Bohmer <linux@bohmer.net>
29487 Date:   Wed Aug 20 20:46:56 2008 +0200
29488
29489     Make the YAFFS filesystem work
29490
29491     Recently the YAFFS filesystem support has been added to U-boot.
29492     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
29493
29494     ymount will generate an exception (when dereferencing mtd->readoob()), because
29495     the genericDevice is a null pointer. Further, a lot of logging is produced
29496     while using YAFFS fs, so logging should also be disabled.
29497     Both issues are solved by this patch.
29498
29499     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
29500     in U-boot, as well as in Linux.
29501
29502     Tested on a Atmel AT91SAM9261EK board.
29503
29504     Signed-off-by: Remy Bohmer <linux@bohmer.net>
29505     Acked-by: William Juul <william.juul@tandberg.com>
29506     Signed-off-by: Scott Wood <scottwood@freescale.com>
29507
29508 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
29509 Author: Kyungmin Park <kmpark@infradead.org>
29510 Date:   Tue Aug 19 08:42:53 2008 +0900
29511
29512     Fix OneNAND read_oob/write_oob functions compatability
29513
29514     Also sync with kernel OneNAND codes
29515
29516     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
29517     Signed-off-by: Scott Wood <scottwood@freescale.com>
29518
29519 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
29520 Author: Scott Wood <scottwood@freescale.com>
29521 Date:   Mon Aug 18 17:11:20 2008 -0500
29522
29523     NAND: Remove delay from nand_boot_fsl_elbc.c.
29524
29525     It was for debugging purposes, and shouldn't have been left in.
29526
29527     Signed-off-by: Scott Wood <scottwood@freescale.com>
29528
29529 commit f556483734126793522fb7a8cf36af90da78f084
29530 Author: Stefan Roese <sr@denx.de>
29531 Date:   Thu Aug 21 11:05:03 2008 +0200
29532
29533     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
29534
29535     This patch fixes some minor issues introduced with the patch:
29536     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
29537
29538     - Rework memory-queue and PLB arbiter optimization code, that the
29539       local variable is not needed anymore. This removes one #ifdef.
29540     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
29541       of XXX+ 0x01). This was not introduced by Prodyut, just a
29542       copy-paste problem.
29543
29544     Signed-off-by: Stefan Roese <sr@denx.de>
29545
29546 commit 079589bcfb24ba11068460276a3cc9549ab5346f
29547 Author: Prodyut  Hazarika <phazarika@amcc.com>
29548 Date:   Wed Aug 20 09:38:51 2008 -0700
29549
29550     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
29551         PPC405EX and PPC460EX/GT/SX
29552
29553     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
29554       processors
29555     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
29556       across processors (405 and 440/460)
29557     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
29558       processors
29559     - Add register bit definitions for Memory Queue Configuration registers
29560
29561     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
29562     Signed-off-by: Stefan Roese <sr@denx.de>
29563
29564 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
29565 Author: Kumar Gala <galak@kernel.crashing.org>
29566 Date:   Tue Aug 19 15:41:18 2008 -0500
29567
29568     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
29569
29570     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
29571     instead of bd->bi_enetaddr, bi_enet1addr, etc.
29572
29573     This makes the code a bit more flexible to the number of ethernet
29574     interfaces.
29575
29576     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29577
29578 commit 4cacf7c64609839f809e2f9c45873f1d65861703
29579 Author: Stefan Roese <sr@denx.de>
29580 Date:   Tue Aug 19 14:57:55 2008 +0200
29581
29582     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
29583
29584     This patch changes the debug_printf() marco for U-Boot in hush.c and
29585     moves the definition of DEBUG_SHELL to a place that is actually compiled
29586     under U-Boot.
29587
29588     Signed-off-by: Stefan Roese <sr@denx.de>
29589
29590 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
29591 Author: Heiko Schocher <hs@denx.de>
29592 Date:   Tue Aug 19 09:57:41 2008 +0200
29593
29594     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
29595
29596     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
29597     missed a few boards:
29598         include/configs/M5253DEMO.h
29599         include/configs/ml507.h
29600         include/configs/redwood.h
29601
29602     This patch fixes this.
29603
29604     Signed-off-by: Heiko Schocher <hs@denx.de>
29605
29606 commit 0768b7a872964085eece8d5e9fec9175e9deb161
29607 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29608 Date:   Mon Aug 18 13:41:27 2008 +0200
29609
29610     Consolidate strmhz() implementation
29611
29612     ARM, i386, m68k and ppc all have identical implementations of strmhz().
29613     Other architectures don't provide this function at all.
29614
29615     This patch moves strmhz() into lib_generic, reducing code duplication
29616     and providing a more unified API across architectures.
29617
29618     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29619
29620 commit a928d0df211f1d829308d335d19be3ca42558dfc
29621 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
29622 Date:   Mon Aug 18 12:02:51 2008 +0200
29623
29624     fix mvbc_p board build warnings
29625
29626     fix build warnings @ mvBC-P board by using correct types, i.e. change
29627     out_be32 to out_be16 and out_8 accordingly.
29628
29629     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
29630
29631 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
29632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29633 Date:   Sat Aug 16 18:54:27 2008 +0200
29634
29635     Makefile: fix posix support on find
29636
29637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29638
29639 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
29640 Author: Axel Beierlein <belatronix@web.de>
29641 Date:   Sat Aug 16 00:30:48 2008 +0200
29642
29643     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
29644
29645     Tested with TQM5200S on STK52XX.200 Board
29646
29647     Signed-off-by: Axel Beierlein <belatronix@web.de>
29648
29649 commit 0800707b6d5041a840a65d556032c15c584b55f8
29650 Author: Peter Tyser <ptyser@xes-inc.com>
29651 Date:   Fri Aug 15 14:36:32 2008 -0500
29652
29653     mod_i2c_mem() bugfix
29654
29655     The last used chip, address, and address length were not being
29656     stored for the imm and imn commands.
29657
29658     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29659
29660 commit 4afbef967275b2f636abae86f91b81becee7ad03
29661 Author: Steven A. Falco <sfalco@harris.com>
29662 Date:   Fri Aug 15 15:37:31 2008 -0400
29663
29664     Fix typo in spelling of ATAPI.
29665
29666     Correct a small spelling mistake.
29667
29668     Signed-off-by: Steven A. Falco <sfalco@harris.com>
29669
29670 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
29671 Author: Steven A. Falco <sfalco@harris.com>
29672 Date:   Fri Aug 15 15:34:10 2008 -0400
29673
29674     Add a hook to allow board-specific PIO mode setting.
29675
29676     This patch adds a hook whereby a board-specific routine can be called to
29677     configure hardware for a PIO mode.  The prototype for the board-specific
29678     routine is:
29679
29680         int inline ide_set_piomode(int pio_mode)
29681
29682     ide_set_piomode should be prepared to configure hardware for a pio_mode
29683     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
29684
29685     Signed-off-by: Steven A. Falco <sfalco@harris.com>
29686
29687 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
29688 Author: Steven A. Falco <sfalco@harris.com>
29689 Date:   Fri Aug 15 15:29:12 2008 -0400
29690
29691     Replace enums in ata.h with an include of libata.h
29692
29693     This patch removes some enums from ata.h and replaces them with an
29694     include of libata.h.  This way, we eliminate duplicated code, and
29695     prevent errors whereby the different versions could be out of sync.
29696
29697     Signed-off-by: Steven A. Falco <sfalco@harris.com>
29698
29699 commit 0de0afbca865ecf482b4d2b635236746def8518f
29700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29701 Date:   Fri Aug 15 18:32:41 2008 +0200
29702
29703     coldfire: fix CFI drivers activation with new macro
29704
29705     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
29706
29707     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29708
29709 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
29710 Author: Kumar Gala <galak@kernel.crashing.org>
29711 Date:   Fri Aug 15 08:24:35 2008 -0500
29712
29713     fdt: fdt addr w/o any args reports back the current working address
29714
29715     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29716
29717 commit f953d99fd528a496b400a706b511eaf8e3ea66af
29718 Author: Kumar Gala <galak@kernel.crashing.org>
29719 Date:   Fri Aug 15 08:24:34 2008 -0500
29720
29721     fdt: added the ability to set initrd start/end via chosen command
29722
29723     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29724
29725 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
29726 Author: Kumar Gala <galak@kernel.crashing.org>
29727 Date:   Fri Aug 15 08:24:33 2008 -0500
29728
29729     Add command to enable/disable interrupts
29730
29731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29732
29733 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
29734 Author: Nick Spence <nick.spence@freescale.com>
29735 Date:   Tue Aug 19 22:21:16 2008 -0700
29736
29737     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
29738
29739     This patch fixes a missing vendor code in the flash_real_protect() function.
29740
29741     Signed-off-by: Nick Spence <nick.spence@freescale.com>
29742     Signed-off-by: Stefan Roese <sr@denx.de>
29743
29744 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
29745 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29746 Date:   Tue Aug 19 16:53:39 2008 +0000
29747
29748     CFI: Fix AMD Legacy sector protect
29749
29750     New implement sector lock and unlock or softlock commands
29751     do not exist in AMD legacy flash. Thus, causing issue
29752     when erasing AMD legacy flash (such as lv040)
29753
29754     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29755     Signed-off-by: Stefan Roese <sr@denx.de>
29756
29757 commit 492671404140f09d5b21b3d2ce4e362c0692c069
29758 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29759 Date:   Wed Aug 20 09:40:16 2008 +0200
29760
29761     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
29762
29763     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
29764
29765     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29766
29767 commit 33eac2b3d946fc998a09245dfe54d017079b9056
29768 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29769 Date:   Wed Aug 20 09:28:36 2008 +0200
29770
29771     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
29772
29773     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29774
29775 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
29776 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29777 Date:   Wed Aug 20 09:27:37 2008 +0200
29778
29779     favr-32-ezkit: Fix printf format warnings
29780
29781     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29782
29783 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
29784 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29785 Date:   Fri Aug 15 12:04:25 2008 +0200
29786
29787     MAINTAINERS: Sort avr32 section alphabetically
29788
29789     The rest of the MAINTAINERS file appears to be sorted
29790     almost-alphabetically, but entries for the newly added AVR32 boards were
29791     added somewhat randomly. This patch sorts the list alphabetically again.
29792
29793     Also update my e-mail address. The old one still works, but it may not
29794     work forever.
29795
29796     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29797
29798 commit 13b50fe3bc065c48911fa373231421280855a9d6
29799 Author: Mark Jackson <mpfj@mimc.co.uk>
29800 Date:   Wed Jul 30 13:07:27 2008 +0100
29801
29802     avr32: Add MIMC200 board
29803
29804     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
29805     8MByte FLASH and 128KByte FRAM.
29806
29807     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
29808     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29809
29810 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
29811 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29812 Date:   Wed Jul 9 21:07:34 2008 +0900
29813
29814     rtl8169: add support for RTL8110SCL
29815
29816     This patch fixes a problem that RTL8110SCL started transfer
29817     with an incorrect memory address.
29818
29819     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29820     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29821
29822 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
29823 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29824 Date:   Wed Jun 25 15:48:52 2008 -0500
29825
29826     Fix dm9000 receive status and len little endian issue
29827
29828     The received status and len was in little endian
29829     format and caused the ethernet unable to proceed
29830     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
29831
29832     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29833     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29834
29835 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
29836 Author: Kumar Gala <galak@kernel.crashing.org>
29837 Date:   Fri Aug 15 08:24:32 2008 -0500
29838
29839     Clean up usage of icache_disable/dcache_disable
29840
29841     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
29842     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
29843     call icache_disable() right after.  Make it so icache_disable() calls
29844     invalidate_l1_instruction_cache() for us.
29845
29846     Also, dcache_disable() already calls dcache_flush() so there is no point
29847     in the explicit calls of dcache_flush().
29848
29849     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29850
29851 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
29852 Author: Kumar Gala <galak@kernel.crashing.org>
29853 Date:   Fri Aug 15 08:24:31 2008 -0500
29854
29855     Update linux bootm to support ePAPR client interface
29856
29857     The ePAPR spec has some subtle differences from the current device
29858     tree based boot interface to the powerpc linux kernel. The powerpc
29859     linux kernel currently ignores the differences that ePAPR specifies.
29860
29861     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29862
29863 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
29864 Author: Wolfgang Denk <wd@denx.de>
29865 Date:   Mon Aug 18 23:50:20 2008 +0200
29866
29867     Minor code cleanup: keep lists sorted.
29868
29869     Signed-off-by: Wolfgang Denk <wd@denx.de>
29870
29871 commit d0039d4ed275e6ca09fb417895024ad02be118c4
29872 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
29873 Date:   Wed Jul 23 19:10:14 2008 +0200
29874
29875     Add support for ADT7460 I2C monitor chip
29876
29877     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
29878
29879 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
29880 Author: Michal Simek <monstr@monstr.eu>
29881 Date:   Mon Jul 14 19:45:45 2008 +0200
29882
29883     video: Clean drivers/video/Makefile
29884
29885     Signed-off-by: Michal Simek <monstr@monstr.eu>
29886
29887 commit 871c18dd301752270e1f74328c846c3104be1e2e
29888 Author: Michal Simek <monstr@monstr.eu>
29889 Date:   Mon Jul 14 19:45:37 2008 +0200
29890
29891     rtc: Clean drivers/rtc/Makefile
29892
29893     Signed-off-by: Michal Simek <monstr@monstr.eu>
29894
29895 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
29896 Author: Michal Simek <monstr@monstr.eu>
29897 Date:   Mon Jul 14 19:45:35 2008 +0200
29898
29899     i2c: Clean drivers/i2c/ Makefile
29900
29901     Signed-off-by: Michal Simek <monstr@monstr.eu>
29902
29903 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
29904 Author: Harald Welte <laforge@openmoko.org>
29905 Date:   Wed Jul 9 22:30:30 2008 +0800
29906
29907     Add 'license' command to U-Boot command line
29908
29909     The 'license' command includes the U-Boot license (GPLv2) into the
29910     actual bootloader binary. The license text can be shown interactively
29911     at the U-Boot commandline.
29912
29913     For products where the commandline can actually be accessed by the
29914     end user, this helps to prevent inadvertent GPL violations, since the
29915     GPLv2 license text can no longer be 'forgotten' to be included into
29916     the product.
29917
29918     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
29919
29920     Signed-off-by: Harald Welte <laforge@openmoko.org>
29921
29922 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
29923 Author: Harald Welte <laforge@gnumonks.org>
29924 Date:   Sun Jul 6 15:56:38 2008 +0800
29925
29926     add 'unzip' command to u-boot commandline
29927
29928     [PATCH] add new 'unzip' command to u-boot commandline
29929
29930     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
29931     memory to memory, and option CONFIG_CMD_UNZIP to enable it
29932
29933     Signed-off-by: Werner Almesberger <werner@openmoko.org>
29934     Signed-off-by: Harald Welte <laforge@openmoko.org>
29935
29936 commit 07efc9e321619c3dec213310c32e011aa6f02783
29937 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29938 Date:   Wed Aug 6 19:37:17 2008 -0500
29939
29940     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
29941
29942     The CFG_ENV_SIZE is not suitable used for SPI flash erase
29943     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
29944     Add condition check if CFG_ENV_SIZE is larger than
29945     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
29946     erasing.
29947
29948     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29949
29950 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
29951 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29952 Date:   Mon Aug 11 15:54:25 2008 +0000
29953
29954     ColdFire: Multiple fixes for M5282EVB
29955
29956     Incorrect CFG_HZ value, change 1000000 to 1000.
29957     Rename #waring to #warning. RAMBAR1 uses twice
29958     in start.S, rename the later to FLASHBAR. Insert
29959     nop for DRAM setup. And, env_offset in linker file.
29960
29961     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29962
29963 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
29964 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29965 Date:   Mon Aug 11 15:26:43 2008 +0000
29966
29967     ColdFire: Move m5282evb from board to board/freescale
29968
29969     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29970
29971 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
29972 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29973 Date:   Mon Aug 11 15:25:07 2008 +0000
29974
29975     ColdFire: Move m5272c3 from board to board/freescale
29976
29977     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29978
29979 commit 659e9bad629a480f606b286d5703aef7159edf98
29980 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29981 Date:   Mon Aug 11 15:23:16 2008 +0000
29982
29983     ColdFire: Move m5271evb from board to board/freescale
29984
29985     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29986
29987 commit 05316f8ece8206339a208ec052f039cd0f7ca922
29988 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29989 Date:   Mon Aug 11 13:41:49 2008 +0000
29990
29991     ColdFire: Add M54451EVB platform support for MCF5445x
29992
29993     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29994
29995 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
29996 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29997 Date:   Wed Aug 6 19:14:08 2008 -0500
29998
29999     ColdFire: Add Serial Flash support for M54455EVB
30000
30001     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30002
30003 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
30004 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30005 Date:   Wed Jul 23 20:38:53 2008 -0500
30006
30007     ColdFire: Implement SBF feature for M5445EVB
30008
30009     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30010
30011 commit a7323bba229203aae2604afde131ab47bad4eadc
30012 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30013 Date:   Wed Jul 23 17:53:36 2008 -0500
30014
30015     ColdFire: Add SSPI feature for MCF5445x
30016
30017     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30018
30019 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
30020 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30021 Date:   Wed Jul 23 17:37:10 2008 -0500
30022
30023     ColdFire: Use CFI Flash driver for M54455EVB
30024
30025     Remove non-common flash driver in
30026     board/freescale/m54455evb/flash.c. The non-cfi flash will
30027     use CONFIG_FLASH_CFI_LEGACY to configure the flash
30028     attribute.
30029
30030     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30031
30032 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
30033 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30034 Date:   Wed Jul 23 17:11:47 2008 -0500
30035
30036     ColdFire: Add M5253DEMO platform support for MCF5253
30037
30038     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30039
30040 commit 80ba61fd82569af40e04d4a089257b81881884f2
30041 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30042 Date:   Wed Aug 6 14:17:09 2008 -0500
30043
30044     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
30045
30046     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30047
30048 commit d361307e73ce1f6fc68760123f37d4876f851f3e
30049 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30050 Date:   Wed Aug 6 14:11:36 2008 -0500
30051
30052     ColdFire: Fix M5253EVB dram bring up issue
30053
30054     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30055
30056 commit 4b0708093e15b412296328bf81325cf9b69fe512
30057 Author: Wolfgang Denk <wd@denx.de>
30058 Date:   Thu Aug 14 14:41:06 2008 +0200
30059
30060     Coding Style cleanup, update CHANGELOG
30061
30062     Signed-off-by: Wolfgang Denk <wd@denx.de>
30063
30064 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
30065 Author: Scott Wood <scottwood@freescale.com>
30066 Date:   Wed Aug 13 18:24:05 2008 -0500
30067
30068     socrates: Update NAND driver to new API.
30069
30070     Also, fix some minor formatting issues, and simplify the handling of
30071     "state" for writes.
30072
30073     Signed-off-by: Scott Wood <scottwood@freescale.com>
30074
30075 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
30076 Author: Scott Wood <scottwood@freescale.com>
30077 Date:   Wed Aug 13 18:03:40 2008 -0500
30078
30079     quad100hd: Update NAND driver to new API.
30080
30081     Signed-off-by: Scott Wood <scottwood@freescale.com>
30082
30083 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
30084 Author: Scott Wood <scottwood@freescale.com>
30085 Date:   Wed Aug 13 17:53:48 2008 -0500
30086
30087     m5373evb: Update NAND driver to new API.
30088
30089     Signed-off-by: Scott Wood <scottwood@freescale.com>
30090
30091 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
30092 Author: Scott Wood <scottwood@freescale.com>
30093 Date:   Wed Aug 13 17:04:30 2008 -0500
30094
30095     s3c24x0: Update NAND driver to new API.
30096
30097     Signed-off-by: Scott Wood <scottwood@freescale.com>
30098
30099 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
30100 Author: Scott Wood <scottwood@freescale.com>
30101 Date:   Wed Aug 13 15:56:00 2008 -0500
30102
30103     at91: Update board NAND drivers to current API.
30104
30105     Signed-off-by: Scott Wood <scottwood@freescale.com>
30106
30107 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
30108 Author: Kyungmin Park <kmpark@infradead.org>
30109 Date:   Wed Aug 13 09:11:02 2008 +0900
30110
30111     Fix OneNAND build break
30112
30113     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
30114     - fix bufferram management at erase operation
30115     This patch includes the NAND/OneNAND state filed too.
30116
30117     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30118     Signed-off-by: Scott Wood <scottwood@freescale.com>
30119
30120 commit 9483df6408c25f16060432de3868901e352e23bc
30121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30122 Date:   Wed Aug 13 01:40:43 2008 +0200
30123
30124     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
30125
30126     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30127
30128 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
30129 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30130 Date:   Wed Aug 13 01:40:43 2008 +0200
30131
30132     drivers/mtd/nand: Move conditional compilation to Makefile
30133
30134     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
30135
30136     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30137
30138 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
30139 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30140 Date:   Wed Aug 13 01:40:42 2008 +0200
30141
30142     drivers/mtd/onenand: Move conditional compilation to Makefile
30143
30144     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30145
30146 commit 00b1883a4cac59d97cd297b1a3a398db85982865
30147 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30148 Date:   Wed Aug 13 01:40:42 2008 +0200
30149
30150     drivers/mtd: Move conditional compilation to Makefile
30151
30152     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
30153
30154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30155
30156 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
30157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30158 Date:   Wed Aug 13 01:40:41 2008 +0200
30159
30160     drivers/qe: Move conditional compilation to Makefile
30161
30162     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30163
30164 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
30165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30166 Date:   Wed Aug 13 01:40:40 2008 +0200
30167
30168     drivers/pci: Move conditional compilation to Makefile
30169
30170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30171
30172 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
30173 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30174 Date:   Wed Aug 13 01:40:40 2008 +0200
30175
30176     drivers/misc: Move conditional compilation to Makefile
30177
30178     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30179
30180 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
30181 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30182 Date:   Wed Aug 13 01:40:40 2008 +0200
30183
30184     drivers/input: Move conditional compilation to Makefile
30185
30186     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30187
30188 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
30189 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30190 Date:   Wed Aug 13 01:40:39 2008 +0200
30191
30192     drivers/dma: Move conditional compilation to Makefile
30193
30194     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30195
30196 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
30197 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30198 Date:   Wed Aug 13 01:40:39 2008 +0200
30199
30200     drivers/block: Move conditional compilation to Makefile
30201
30202     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30203
30204 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
30205 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30206 Date:   Wed Aug 13 01:40:39 2008 +0200
30207
30208     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
30209
30210     move also conditional compilation to Makefile
30211
30212     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30213
30214 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
30215 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30216 Date:   Wed Aug 13 01:40:38 2008 +0200
30217
30218     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
30219
30220     move also conditional compilation to Makefile
30221
30222     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30223
30224 commit d6e9ee92e890f67594ab150689510df361133ead
30225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30226 Date:   Wed Aug 13 01:40:38 2008 +0200
30227
30228     common: Move conditional compilation to Makefile
30229
30230     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30231
30232 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
30233 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30234 Date:   Wed Aug 13 01:40:09 2008 +0200
30235
30236     mx31: move freescale's mx31 boards to vendor board dir
30237
30238     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30239
30240 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
30241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30242 Date:   Sat Jul 5 23:11:11 2008 +0200
30243
30244     at91: move arch-at91sam9 to arch-at91
30245
30246     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30247
30248 commit 195ccfc5991d48764b2519941e3507f693851d5d
30249 Author: Fathi BOUDRA <fabo@debian.org>
30250 Date:   Wed Aug 6 10:06:20 2008 +0200
30251
30252     OneNAND: Fill in MTD function pointers for OneNAND.
30253
30254     onenand_print_device_info():
30255      - Now returns a string to be placed in mtd->name,
30256        rather than calling printf.
30257      - Remove verbose parameter as it becomes useless.
30258
30259     Signed-off-by: Fathi Boudra <fabo@debian.org>
30260     Signed-off-by: Scott Wood <scottwood@freescale.com>
30261
30262 commit aa646643b6bc250cb3a4966bf728876e0c10d329
30263 Author: Guennadi Liakhovetski <lg@denx.de>
30264 Date:   Wed Aug 6 21:42:07 2008 +0200
30265
30266     nand_spl: Support page-aligned read in nand_load, use chipselect
30267
30268     Supporting page-aligned reads doesn't incure any sinificant overhead, just
30269     a small change in the algorithm. Also replace in_8 with readb, since there
30270     is no in_8 on ARM.
30271
30272     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30273     Signed-off-by: Scott Wood <scottwood@freescale.com>
30274
30275 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
30276 Author: Scott Wood <scottwood@freescale.com>
30277 Date:   Tue Aug 5 11:15:59 2008 -0500
30278
30279     NAND boot: Update large page support for current API.
30280
30281     Also, remove the ctrl variable in favor of passing the constants
30282     directly, and remove redundant (u8) casts.
30283
30284     Signed-off-by: Scott Wood <scottwood@freescale.com>
30285
30286 commit e4c09508545d1c45617ba45391c03c03cbc360b9
30287 Author: Scott Wood <scottwood@freescale.com>
30288 Date:   Mon Jun 30 14:13:28 2008 -0500
30289
30290     NAND boot: MPC8313ERDB support
30291
30292     Note that with older board revisions, NAND boot may only work after a
30293     power-on reset, and not after a warm reset.  I don't have a newer board
30294     to test on; if you have a board with a 33MHz crystal, please let me know
30295     if it works after a warm reset.
30296
30297     Signed-off-by: Scott Wood <scottwood@freescale.com>
30298
30299 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
30300 Author: Scott Wood <scottwood@freescale.com>
30301 Date:   Thu Jun 26 14:06:52 2008 -0500
30302
30303     mpc8313erdb: Enable NAND in config.
30304
30305     Signed-off-by: Scott Wood <scottwood@freescale.com>
30306
30307 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
30308 Author: Guennadi Liakhovetski <lg@denx.de>
30309 Date:   Thu Jul 31 12:38:26 2008 +0200
30310
30311     NAND: Do not write or read a whole block if it is larger than the environment
30312
30313     Environment can be smaller than NAND block size, do not need to read a whole
30314     block and minimum for writing is one page. Also remove an unused variable.
30315
30316     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30317     Signed-off-by: Scott Wood <scottwood@freescale.com>
30318
30319 commit eafcabd15f00c142156235c519fcc55b10993241
30320 Author: Marcel Ziswiler <marcel@ziswiler.com>
30321 Date:   Sun Jun 22 16:30:06 2008 +0200
30322
30323     NAND: chip->state does not always get set.
30324
30325     Fixes an issue with chip->state not always being set causing troubles.
30326
30327     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30328     Signed-off-by: Scott Wood <scottwood@freescale.com>
30329
30330 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
30331 Author: Ilya Yanok <yanok@emcraft.com>
30332 Date:   Mon Jun 30 15:34:40 2008 +0200
30333
30334     NAND: Scan bad blocks lazily.
30335
30336     Rather than scanning on boot, scan upon the first attempt to check the
30337     badness of a block.  This speeds up boot when not using NAND, and reduces
30338     the likelihood of needing to reflash via JTAG if NAND becomes
30339     nonfunctional.
30340
30341     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30342     Signed-off-by: Scott Wood <scottwood@freescale.com>
30343
30344 commit dfbf617ff055e4216f78d358b0867c548916d14b
30345 Author: Scott Wood <scottwood@freescale.com>
30346 Date:   Thu Jun 12 13:20:16 2008 -0500
30347
30348     NAND read/write fix
30349
30350     Implement block-skipping read/write, based on a patch from
30351     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
30352
30353     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
30354     Signed-off-by: Scott Wood <scottwood@freescale.com>
30355
30356 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
30357 Author: Scott Wood <scottwood@freescale.com>
30358 Date:   Thu Jun 12 13:13:23 2008 -0500
30359
30360     NAND: Always skip blocks on read/write/boot.
30361
30362     Use of the non-skipping versions was almost always (if not always)
30363     an error, and no valid use case has been identified.
30364
30365     Signed-off-by: Scott Wood <scottwood@freescale.com>
30366
30367 commit e1c3dbada349992875934575c97b328ab2cb33ca
30368 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
30369 Date:   Thu Jun 12 11:10:21 2008 -0500
30370
30371     nand: fsl_upm: convert to updated MTD NAND infrastructure
30372
30373     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30374     Signed-off-by: Scott Wood <scottwood@freescale.com>
30375
30376 commit 300253306acc72b1b2e9faf0987f86551151d7cf
30377 Author: Scott Wood <scottwood@freescale.com>
30378 Date:   Thu May 22 15:02:46 2008 -0500
30379
30380     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
30381
30382     The hardware has separate registers for block and page-within-block,
30383     but the division between the two has no apparent relation to the
30384     actual erase block size of the NAND chip.
30385
30386     Signed-off-by: Scott Wood <scottwood@freescale.com>
30387
30388 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
30389 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
30390 Date:   Fri Mar 28 22:10:54 2008 +0300
30391
30392     fsl_elbc_nand: workaround for hangs during nand write
30393
30394     Using current driver elbc sometimes hangs during nand write. Reading back
30395     last byte helps though (thanks to Scott Wood for the idea).
30396
30397     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
30398     Signed-off-by: Scott Wood <scottwood@freescale.com>
30399
30400 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
30401 Author: Scott Wood <scottwood@freescale.com>
30402 Date:   Fri Mar 21 16:12:51 2008 -0500
30403
30404     Freescale eLBC FCM NAND driver
30405
30406     This is a driver for the Flash Control Machine of the enhanched Local Bus
30407     Controller found on some Freescale chips (such as the mpc8313 and the
30408     mpc8379).
30409
30410     Signed-off-by: Scott Wood <scottwood@freescale.com>
30411
30412 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
30413 Author: Scott Wood <scottwood@freescale.com>
30414 Date:   Tue Mar 18 15:29:14 2008 -0500
30415
30416     Don't panic if a controller driver does ecc its own way.
30417
30418     Some hardware, such as the enhanced local bus controller used on some
30419     mpc83xx chips, does ecc transparently when reading and writing data, rather
30420     than providing a generic calculate/correct mechanism that can be exported to
30421     the nand subsystem.
30422
30423     The subsystem should not BUG() when calculate, correct, or hwctl are
30424     missing, if the methods that call them have been overridden.
30425
30426     Signed-off-by: Scott Wood <scottwood@freescale.com>
30427
30428 commit e52b34d40a8a646e3d11638ea8797e96398dba13
30429 Author: Stefan Roese <sr@denx.de>
30430 Date:   Thu Jan 10 18:47:33 2008 +0100
30431
30432     NAND: Make NAND driver less verbose per default
30433
30434     This patch turns off printing of bad blocks per default upon bootup.
30435     This can always be shown via the "nand bad" command later.
30436
30437     Signed-off-by: Stefan Roese <sr@denx.de>
30438
30439 commit fe56a2772e5c59577df906163d0d4b29b056140e
30440 Author: Sergey Kubushyn <ksi@koi8.net>
30441 Date:   Wed Jan 9 15:36:20 2008 +0100
30442
30443     NAND: Davinci driver updates
30444
30445     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
30446     don't have hardware handy so I can not test it at the moment but changes are
30447     rather trivial so it should work. It would be nice if somebody with a
30448     hardware checked it anyways.
30449
30450     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
30451
30452 commit deac913effd8d80535c9ff4687b6fcdff540c554
30453 Author: Stefan Roese <sr@denx.de>
30454 Date:   Sat Jan 5 16:50:32 2008 +0100
30455
30456     NAND: Fix compilation warning and small coding style issue
30457
30458     Signed-off-by: Stefan Roese <sr@denx.de>
30459
30460 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
30461 Author: Stefan Roese <sr@denx.de>
30462 Date:   Sat Jan 5 16:49:37 2008 +0100
30463
30464     NAND: Update nand_spl driver to match updated nand subsystem
30465
30466     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
30467     the new infrastructure from the updated NAND subsystem. This NAND
30468     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
30469     subsystem.
30470
30471     Signed-off-by: Stefan Roese <sr@denx.de>
30472
30473 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
30474 Author: Stefan Roese <sr@denx.de>
30475 Date:   Sat Jan 5 16:47:58 2008 +0100
30476
30477     NAND: Update 4xx NDFC driver to match updated nand subsystem
30478
30479     This patch changes the 4xx NAND driver ndfc.c to match the new
30480     infrastructure from the updated NAND subsystem. This NAND
30481     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
30482     subsystem.
30483
30484     Tested successfully on AMCC Sequoia and Bamboo.
30485
30486     Signed-off-by: Stefan Roese <sr@denx.de>
30487
30488 commit 12072264528eba33737bc9674e19f0e925ffda23
30489 Author: Stefan Roese <sr@denx.de>
30490 Date:   Sat Jan 5 16:43:25 2008 +0100
30491
30492     NAND: Change nand_wait_ready() to not call nand_wait()
30493
30494     This patch changes nand_wait_ready() to not just call nand_wait(),
30495     since this will send a new command to the NAND chip. We just want to
30496     wait for the chip to become ready here.
30497
30498     Signed-off-by: Stefan Roese <sr@denx.de>
30499
30500 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
30501 Author: William Juul <william.juul@datarespons.no>
30502 Date:   Fri Dec 14 16:33:45 2007 +0100
30503
30504     make nand dump and nand dump.oob work
30505
30506     Signed-off-by: William Juul <william.juul@tandberg.com>
30507     Signed-off-by: Scott Wood <scottwood@freescale.com>
30508
30509 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
30510 Author: William Juul <william.juul@datarespons.no>
30511 Date:   Mon Nov 19 14:46:00 2007 +0100
30512
30513     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
30514
30515     Signed-off-by: William Juul <william.juul@tandberg.com>
30516
30517 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
30518 Author: William Juul <william.juul@tandberg.com>
30519 Date:   Tue Jun 10 16:18:13 2008 -0500
30520
30521     Clean out unneeded files
30522
30523     Signed-off-by: William Juul <william.juul@tandberg.com>
30524
30525 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
30526 Author: William Juul <william.juul@datarespons.no>
30527 Date:   Fri Nov 16 08:44:27 2007 +0100
30528
30529     Create symlinks from yaffs2/direct to yaffs2
30530
30531     Signed-off-by: William Juul <william.juul@tandberg.com>
30532
30533 commit 90ef117b68387d66763291af0117677644166611
30534 Author: William Juul <william.juul@datarespons.no>
30535 Date:   Thu Nov 15 12:23:57 2007 +0100
30536
30537     Incorporate yaffs2 into U-boot
30538
30539     To use YAFFS2 define CONFIG_YAFFS2
30540
30541     Signed-off-by: William Juul <william.juul@tandberg.com>
30542     Signed-off-by: Scott Wood <scottwood@freescale.com>
30543
30544 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
30545 Author: William Juul <william.juul@datarespons.no>
30546 Date:   Thu Nov 15 11:13:05 2007 +0100
30547
30548     YAFFS2 import
30549
30550     Direct import of yaffs as a tarball as of 20071113 from their public
30551     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
30552
30553     The code can also be imported on the command line with:
30554     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
30555     (Hit return when asked for a password)
30556     cvs checkout yaffs2
30557
30558     Signed-off-by: William Juul <william.juul@tandberg.com>
30559     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
30560
30561 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
30562 Author: William Juul <william.juul@datarespons.no>
30563 Date:   Wed Nov 14 14:28:11 2007 +0100
30564
30565     Whitespace cleanup and marking broken code.
30566
30567     Changes requested by maintainer Stefan Roese after
30568     posting patch to U-boot mailing list.
30569
30570     Signed-off-by: William Juul <william.juul@tandberg.com>
30571     Signed-off-by: Scott Wood <scottwood@freescale.com>
30572
30573 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
30574 Author: William Juul <william.juul@datarespons.no>
30575 Date:   Fri Nov 9 13:32:30 2007 +0100
30576
30577     Fixing coding style issues
30578
30579      - Fixing leading white spaces
30580      - Fixing indentation where 4 spaces are used instead of tab
30581      - Removing C++ comments (//), wherever I introduced them
30582
30583     Signed-off-by: William Juul <william.juul@tandberg.com>
30584     Signed-off-by: Scott Wood <scottwood@freescale.com>
30585
30586 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
30587 Author: William Juul <william.juul@datarespons.no>
30588 Date:   Thu Nov 8 10:39:53 2007 +0100
30589
30590     Remove white space at end.
30591
30592     Signed-off-by: William Juul <william.juul@tandberg.com>
30593     Signed-off-by: Scott Wood <scottwood@freescale.com>
30594
30595 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
30596 Author: William Juul <william.juul@datarespons.no>
30597 Date:   Wed Oct 31 13:53:06 2007 +0100
30598
30599     Update MTD to that of Linux 2.6.22.1
30600
30601     A lot changed in the Linux MTD code, since it was last ported from
30602     Linux to U-Boot. This patch takes U-Boot NAND support to the level
30603     of Linux 2.6.22.1 and will enable support for very large NAND devices
30604     (4KB pages) and ease the compatibility between U-Boot and Linux
30605     filesystems.
30606
30607     This patch is tested on two custom boards with PPC and ARM
30608     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
30609     cross compilers.
30610
30611     MAKEALL ppc/arm has some issues:
30612      * DOC/OneNand/nand_spl is not building (I have not tried porting
30613        these parts, and since I do not have any HW and I am not familiar
30614        with this code/HW I think its best left to someone else.)
30615
30616     Except for the issues mentioned above, I have ported all drivers
30617     necessary to run MAKEALL ppc/arm without errors and warnings. Many
30618     drivers were trivial to port, but some were not so trivial. The
30619     following drivers must be examined carefully and maybe rewritten to
30620     some degree:
30621      cpu/ppc4xx/ndfc.c
30622      cpu/arm926ejs/davinci/nand.c
30623      board/delta/nand.c
30624      board/zylonite/nand.c
30625
30626     Signed-off-by: William Juul <william.juul@tandberg.com>
30627     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
30628     Signed-off-by: Scott Wood <scottwood@freescale.com>
30629
30630 commit cd82919e6c8a73b363a26f34b734923844e52d1c
30631 Author: Wolfgang Denk <wd@denx.de>
30632 Date:   Tue Aug 12 16:08:38 2008 +0200
30633
30634     Coding style cleanup, update CHANGELOG, prepare release
30635
30636     Signed-off-by: Wolfgang Denk <wd@denx.de>
30637
30638 commit 17e900b8c0f38d922da47073246219dce2a847f2
30639 Author: Wolfgang Denk <wd@denx.de>
30640 Date:   Tue Aug 12 14:54:04 2008 +0200
30641
30642     MVBC_P: fix compile problem
30643
30644     Signed-off-by: Wolfgang Denk <wd@denx.de>
30645
30646 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
30647 Author: Wolfgang Denk <wd@denx.de>
30648 Date:   Tue Aug 12 12:10:11 2008 +0200
30649
30650     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
30651
30652     Signed-off-by: Wolfgang Denk <wd@denx.de>
30653
30654 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
30655 Author: Wolfgang Denk <wd@denx.de>
30656 Date:   Tue Aug 12 00:36:53 2008 +0200
30657
30658     ads5121: fix compiler warnings (unused variables)
30659
30660     Signed-off-by: Wolfgang Denk <wd@denx.de>
30661
30662 commit 902ca09246039964d59bbcb519b1e1b5aed01308
30663 Author: Kumar Gala <galak@kernel.crashing.org>
30664 Date:   Mon Aug 11 11:29:28 2008 -0500
30665
30666     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
30667
30668     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
30669
30670     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30671     Acked-by: Jon Loeliger <jdl@freescale.com>
30672
30673 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
30674 Author: Kumar Gala <galak@kernel.crashing.org>
30675 Date:   Mon Aug 11 09:20:53 2008 -0500
30676
30677     Fix fallout from autostart revert
30678
30679     The autostart revert caused a bit of duplicated code as well as
30680     code that was using images->autostart that needs to get removed so
30681     we can build again.
30682
30683     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30684
30685 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
30686 Author: Kumar Gala <galak@kernel.crashing.org>
30687 Date:   Mon Aug 11 09:16:25 2008 -0500
30688
30689     Fix compile error related to r8a66597-hcd & usb
30690
30691     When building the 8544DS board we get this error:
30692
30693     In file included from r8a66597-hcd.c:22:
30694     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
30695     make[1]: *** [r8a66597-hcd.o] Error 1
30696
30697     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
30698     is set.
30699
30700     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30701
30702 commit 2d0daa03612338a813e3c9d22680e54eabfea378
30703 Author: Becky Bruce <becky.bruce@freescale.com>
30704 Date:   Mon Aug 4 14:02:26 2008 -0500
30705
30706     POWERPC 86xx: Move BAT setup code to C
30707
30708     This is needed because we will be possibly be locating
30709     devices at physical addresses above 32bits, and the asm
30710     preprocessing does not appear to deal with ULL constants
30711     properly. We now call write_bat in lib_ppc/bat_rw.c.
30712
30713     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30714     Acked-by: Jon Loeliger <jdl@freescale.com>
30715
30716 commit 9de67149db576c91b9c2a0a182652331e7e44211
30717 Author: Becky Bruce <becky.bruce@freescale.com>
30718 Date:   Mon Aug 4 14:01:53 2008 -0500
30719
30720     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
30721
30722     Perform sync/isync as required by the architecture.
30723
30724     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30725     Acked-by: Jon Loeliger <jdl@freescale.com>
30726
30727 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
30728 Author: Becky Bruce <becky.bruce@freescale.com>
30729 Date:   Mon Aug 4 14:01:16 2008 -0500
30730
30731     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
30732
30733     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30734     Acked-by: Jon Loeliger <jdl@freescale.com>
30735
30736 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
30737 Author: Magnus Lilja <lilja.magnus@gmail.com>
30738 Date:   Sun Aug 3 21:44:10 2008 +0200
30739
30740     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
30741
30742     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
30743     contacts instead of only the first 256 ones as is the case prior to
30744     this patch.
30745
30746     Add missing MUX_* macros and update board files to use the new macros.
30747
30748     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30749
30750 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
30751 Author: Magnus Lilja <lilja.magnus@gmail.com>
30752 Date:   Sun Aug 3 21:43:37 2008 +0200
30753
30754     i.MX31: Fix IOMUX related typos
30755
30756     Correct the names of some IOMUX macros.
30757
30758     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30759
30760 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
30761 Author: Steve Sakoman <steve@sakoman.com>
30762 Date:   Mon Aug 11 20:26:16 2008 +0200
30763
30764     OneNAND: Remove unused parameters to onenand_verify_page
30765
30766     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.
30767
30768     Signed-off-by: Steve Sakoman <steve@sakoman.com>
30769     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30770
30771 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
30772 Author: Anatolij Gustschin <agust@denx.de>
30773 Date:   Fri Aug 8 18:00:40 2008 +0200
30774
30775     video: fix bug in cfb_console code
30776
30777     FILL_15BIT_555RGB macro extension for pixel swapping
30778     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
30779     introduced a bug in cfb_console:
30780
30781     Bitmaps with odd-numbered width won't be rendered
30782     correctly and even U-Boot crashes are observed on
30783     some platforms while repeated rendering of such
30784     bitmaps with "bmp display". Also if a bitmap is
30785     rendered to an odd-numbered x starting position,
30786     the same problem occurs. This patch is an attempt
30787     to fix it.
30788
30789     Signed-off-by: Anatolij Gustschin <agust@denx.de>
30790
30791 commit d9015f6a50d7258125349ef5c2af836458a0029a
30792 Author: Anatolij Gustschin <agust@denx.de>
30793 Date:   Fri Aug 8 18:00:39 2008 +0200
30794
30795     video: fix bug in logo_plot
30796
30797     If logo_plot() should ever be called with x starting
30798     position other than zero and for pixel depths greater
30799     than 8bpp, logo colors distortion will be observed.
30800     This patch fixes the issue.
30801
30802     Signed-off-by: Anatolij Gustschin <agust@denx.de>
30803
30804 commit 406819ae94f79f5b59e01d163380ca7d83709251
30805 Author: Wolfgang Denk <wd@denx.de>
30806 Date:   Mon Aug 11 00:17:52 2008 +0200
30807
30808     MAINTAINERS: sort entries
30809
30810     Signed-off-by: Wolfgang Denk <wd@denx.de>
30811
30812 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
30813 Author: Roy Zang <tie-fei.zang@freescale.com>
30814 Date:   Thu Aug 7 18:19:28 2008 +0800
30815
30816     Add mpc7448hpc2 maintainer information
30817
30818     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
30819
30820 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
30821 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
30822 Date:   Thu Aug 7 13:13:27 2008 +0530
30823
30824     common/cmd_load.c - Minor code & Coding Style cleanup
30825
30826     - os_data_header Variable is a carry over feature
30827        & unused. So removed all instance of this variable
30828      - Minor Code Style Update
30829
30830     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
30831     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30832
30833 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
30834 Author: Magnus Lilja <lilja.magnus@gmail.com>
30835 Date:   Wed Aug 6 19:32:33 2008 +0200
30836
30837     Update the U-Boot wiki URL.
30838
30839     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30840
30841 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
30842 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
30843 Date:   Sun Aug 10 17:56:36 2008 +0200
30844
30845     OneNAND: Remove base address offset usage
30846
30847     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
30848     using OneNAND and some using NAND, we found some differences in OneNAND and
30849     NAND command address handling.
30850
30851     As this might confuse users (it already confused us), we like to align OneNAND
30852     and NAND address handling.
30853
30854     The issue is that cmd_onenand.c subtracts the onenand base address from the
30855     addresses you type into the u-boot command line so, unlike nand, you can't
30856     use addresses relative to the start of the onenand part e.g. this won't work:
30857
30858     onenand read 82000000 280000 400000
30859
30860     you have to use:
30861
30862     onenand read 82000000 20280000 400000
30863
30864     Looking at recent git, the only board currently using OneNAND is Apollon, and
30865     for this the OneNAND base address is 0 (apollon.h)
30866
30867     #define     CFG_ONENAND_BASE        0x00000000
30868
30869     so patch below won't break any existing boards and will align OneNAND and NAND
30870     handling on boards where OneNAND base address is != 0.
30871
30872     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
30873     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
30874     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30875
30876 commit c11528083ef6e55e76df742228c26e39d151813d
30877 Author: Kumar Gala <galak@kernel.crashing.org>
30878 Date:   Thu Aug 7 09:28:20 2008 -0500
30879
30880     mpc85xx: workaround old binutils bug
30881
30882     The recent change to move the .bss outside of the image gives older
30883     binutils (ld from eldk4.1/binutils-2.16) some headache:
30884
30885     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
30886     ppc_85xx-ld: final link failed: Bad value
30887
30888     We workaround it by being explicit about the program headers and not
30889     assigning the .bss to a program header.
30890
30891     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30892
30893 commit 0bf202ec586d4466c900e987720fa635c594d689
30894 Author: Wolfgang Denk <wd@denx.de>
30895 Date:   Sun Aug 10 01:26:26 2008 +0200
30896
30897     Revert "[new uImage] Add autostart flag to bootm_headers structure"
30898
30899     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
30900
30901     The commit was based on a misunderstanding of the (documented)
30902     meaning of the 'autostart' environment variable. It might cause
30903     boards to hang if 'autostart' was used, with the potential to brick
30904     them. Go back to the documented behaviour.
30905
30906     Conflicts:
30907
30908         common/cmd_bootm.c
30909         common/image.c
30910         include/image.h
30911
30912     Signed-off-by: Wolfgang Denk <wd@denx.de>
30913
30914 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
30915 Author: Wolfgang Denk <wd@denx.de>
30916 Date:   Sat Aug 9 23:17:32 2008 +0200
30917
30918     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
30919
30920     - enable CFI driver where this was forgotten
30921     - enable mtdparts support
30922     - adjust default environment
30923     etc.
30924
30925     Signed-off-by: Wolfgang Denk <wd@denx.de>
30926
30927 commit 41266c9b5a5f873df3ec891bb0907616958b5602
30928 Author: Peter Tyser <ptyser@xes-inc.com>
30929 Date:   Tue Aug 5 10:51:57 2008 -0500
30930
30931     FIT: Fix handling of images without ramdisks
30932
30933     boot_get_ramdisk() should not treat the case when a FIT image does
30934     not contain a ramdisk as an error.
30935
30936     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30937     Acked-by: Michal Simek <monstr@monstr.eu>
30938
30939 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
30940 Author: Sergey Lapin <slapin@ossfans.org>
30941 Date:   Sat Aug 9 01:39:09 2008 +0400
30942
30943     DataFlash: AT45DB021 fix and AT45DB081 support
30944
30945     Fix for page size of AT45DB021. Also adding bigger AT45DB081
30946     which comes with some newer boards.
30947
30948     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
30949
30950 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
30951 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
30952 Date:   Fri Aug 8 16:30:23 2008 +0900
30953
30954     sh: Update sh7763rdp config
30955
30956     Add sh_eth support to sh7763rdp.
30957
30958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
30959
30960 commit 21f971ec265f6042ec21636d55d06a6bc0751077
30961 Author: Wolfgang Denk <wd@denx.de>
30962 Date:   Mon Jul 7 01:22:29 2008 +0200
30963
30964     TQM823L: re-enable logo support; update LCD_INFO text
30965
30966     Signed-off-by: Wolfgang Denk <wd@denx.de>
30967
30968 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
30969 Author: Wolfgang Denk <wd@denx.de>
30970 Date:   Fri Aug 8 16:41:56 2008 +0200
30971
30972     TQM8xxL: fix support for second flash bank
30973
30974     When switching the TQM8xxL modules to use the CFI flash driver,
30975     support for the second flash bank was broken because the CFI driver
30976     did not support dynamically sized banks. This gets fixed now.
30977
30978     Signed-off-by: Wolfgang Denk <wd@denx.de>
30979
30980 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
30981 Author: Wolfgang Denk <wd@denx.de>
30982 Date:   Fri Aug 8 16:39:54 2008 +0200
30983
30984     CFI: allow for dynamically determined flash sizes and addresses
30985
30986     The CFI driver allowed only for static initializers in the
30987     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
30988     several flash banks contiguously if the bank sizes were not known in
30989     advance, which kind of violates U-Boot's design philosophy.
30990
30991     (will be used for example by the TQM8xxL boards)
30992
30993     Signed-off-by: Wolfgang Denk <wd@denx.de>
30994
30995 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
30996 Author: Ben Warren <biggerbadderben@gmail.com>
30997 Date:   Thu Aug 7 23:26:35 2008 -0700
30998
30999     QE UEC: Fix compiler warnings
31000
31001     Moved static functions earlier in file so forward declarations are not needed.
31002
31003     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31004
31005 commit d5d28fe4aad5f4535400647a5617c11039506467
31006 Author: David Saada <David.Saada@ecitele.com>
31007 Date:   Mon Mar 31 02:37:38 2008 -0700
31008
31009     QE UEC: Add MII Commands
31010
31011     Add MII commands to the UEC driver. Note that once a UEC device is selected,
31012     any device on its MDIO bus can be addressed.
31013
31014     Signed-off-by: David Saada <david.saada@ecitele.com>
31015     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31016
31017 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
31018 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31019 Date:   Wed Jul 9 21:07:38 2008 +0900
31020
31021     usb: add support for R8A66597 usb controller
31022
31023     add support for Renesas R8A66597 usb controller.
31024     This patch supports USB Host mode.
31025
31026     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31027     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
31028
31029 commit 1d10dcd041aaeae9fd7c821005692898a0303382
31030 Author: Hunter, Jon <jon-hunter@ti.com>
31031 Date:   Sat Jul 26 18:59:16 2008 -0500
31032
31033     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
31034
31035     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
31036
31037     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
31038     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
31039
31040 commit eab1007334b93a6209f1ec33615e26ef5311ede7
31041 Author: Steven A. Falco <sfalco@harris.com>
31042 Date:   Wed Aug 6 15:42:52 2008 -0400
31043
31044     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
31045
31046     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
31047     configuration to match the schematic, and also sets the SDR0_PFC1 register to
31048     select the corresponding mode for the UARTs.
31049
31050     Signed-off-by: Steven A. Falco <sfalco@harris.com>
31051     Signed-off-by: Stefan Roese <sr@denx.de>
31052
31053 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
31054 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
31055 Date:   Wed Aug 6 14:42:13 2008 +0200
31056
31057     avr32: add support for EarthLCD Favr-32 board
31058
31059     This patch adds support for the Favr-32 board made by EarthLCD.
31060
31061     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
31062     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
31063     Ethernet, audio out, USB device, SD-card slot, USART and various other
31064     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
31065
31066     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
31067     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31068
31069 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
31070 Author: Rafael Campos <rafael.campos@hanscan.com>
31071 Date:   Thu Jul 31 10:22:20 2008 +0200
31072
31073     cfi-flash: Added support to flash_real_protect for Atmel flash devices
31074
31075     Some of the flash memories produced by ATMEL start in read-only mode.
31076     We need to unprotect it. This patch allows the AT49BV6416 to work with
31077     cfi_flash memories. Tested in the at91rm9200ek board.
31078
31079     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
31080     Signed-off-by: Stefan Roese <sr@denx.de>
31081
31082 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
31083 Author: Guennadi Liakhovetski <lg@denx.de>
31084 Date:   Tue Aug 5 15:36:39 2008 +0200
31085
31086     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
31087
31088     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31089     Signed-off-by: Stefan Roese <sr@denx.de>
31090
31091 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
31092 Author: Stefan Roese <sr@denx.de>
31093 Date:   Wed Aug 6 14:06:03 2008 +0200
31094
31095     Fix merge problems
31096
31097     Signed-off-by: Stefan Roese <sr@denx.de>
31098
31099 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
31100 Author: Stefan Roese <sr@denx.de>
31101 Date:   Wed Aug 6 14:05:38 2008 +0200
31102
31103     Fix merge problems
31104
31105     Signed-off-by: Stefan Roese <sr@denx.de>
31106
31107 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
31108 Author: Kenneth Johansson <kenneth@southpole.se>
31109 Date:   Tue Jul 15 12:13:38 2008 +0200
31110
31111     mpc5121: Move iopin features from board specific to common files.
31112
31113     And in the process eliminate some duplicate register defines.
31114
31115     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
31116
31117 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
31118 Author: John Rigby <jrigby@freescale.com>
31119 Date:   Tue Aug 5 17:38:57 2008 -0600
31120
31121     mpc5121: squash some fdt fixup errors
31122
31123     On ADS5121 when booting linux the following errors are seen:
31124         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
31125         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
31126         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
31127
31128     This is caused by ft_cpu_setup trying to deal with
31129     both old and new soc node naming.  This patch
31130     fixes this by being smarter about what to
31131     fixup.
31132
31133     Also do soc node fixups by compatible instead of by path.
31134     A new board config called OF_SOC_COMPAT defined
31135     to be "fsl,mpc5121-immr" replaces the old
31136     OF_SOC node path that was defined to be "soc@80000000".
31137
31138     Old device trees still work, but the compatiblity
31139     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
31140     which is on by default in include/configs/ads5121.h.
31141
31142     Signed-off-by: John Rigby <jrigby@freescale.com>
31143
31144 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
31145 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31146 Date:   Sat Aug 2 23:48:30 2008 +0200
31147
31148     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
31149
31150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31151
31152 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
31153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31154 Date:   Sat Aug 2 23:48:32 2008 +0200
31155
31156     nios2/sysid: fix printf warning
31157
31158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31159
31160 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
31161 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31162 Date:   Sat Aug 2 23:48:33 2008 +0200
31163
31164     Fix remaining build issues with MPC8xx FADS boards.
31165
31166     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31167
31168 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
31169 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31170 Date:   Sat Aug 2 23:48:31 2008 +0200
31171
31172     nios2: fix phys_addr_t and phys_size_t support
31173
31174     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31175
31176 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
31177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31178 Date:   Sat Aug 2 23:48:34 2008 +0200
31179
31180     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
31181
31182     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31183
31184 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
31185 Author: Mark Jackson <mpfj@mimc.co.uk>
31186 Date:   Fri Aug 1 09:48:29 2008 +0100
31187
31188     Fix bitmap display for atmel lcd controller
31189
31190     The current lcd_display_bitmap() function does not work properly
31191     for the Atmel LCD controller.
31192
31193     2 fixes need to be done:-
31194
31195     (a) when setting the colour map, use the lcd_setcolreg() function
31196         as provided by the Atmel driver
31197     (b) the data is never actually written to the lcd framebuffer !!
31198
31199     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
31200
31201 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
31202 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31203 Date:   Fri Aug 1 08:40:34 2008 +0200
31204
31205     qemu_mips: update README to follow qemu update about default machine
31206
31207     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31208
31209 commit ac169d645f5f0e0b9a232563099209e92a355d8e
31210 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31211 Date:   Thu Jul 31 19:53:21 2008 -0500
31212
31213     ColdFire: Fix compilation issue caused by a missing function
31214
31215     Implement usec2ticks() which is used by fsl_i2c.c in
31216     lib_m68k/time.c
31217
31218     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31219
31220 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
31221 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31222 Date:   Thu Jul 31 19:53:06 2008 -0500
31223
31224     Fix compilation error for TASREG
31225
31226     TASREG is ColdFire platform, the include ppc4xx.h in
31227     board/esd/common/flash.c causes conflict.
31228
31229     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31230
31231 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
31232 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31233 Date:   Thu Jul 31 19:52:36 2008 -0500
31234
31235     Fix compilation error for MCF5275
31236
31237     Rename OBJ to COBJ in board/platform/Makefile
31238
31239     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31240
31241 commit 5c40548f01218360a1f1395198c50ff45f3035b5
31242 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31243 Date:   Thu Jul 31 19:52:28 2008 -0500
31244
31245     Fix compile error caused by incorrect function return type
31246
31247     Rename int mii_init(void) to void mii_init(void) for idmr
31248     ColdFire platform
31249
31250     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31251
31252 commit a58c78067c928976c082c758d3987e89ead5b191
31253 Author: Wolfgang Denk <wd@denx.de>
31254 Date:   Fri Aug 1 12:06:22 2008 +0200
31255
31256     Fix build issues with MPC8xx FADS boards.
31257
31258     Signed-off-by: Wolfgang Denk <wd@denx.de>
31259
31260 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
31261 Author: Wolfgang Denk <wd@denx.de>
31262 Date:   Thu Jul 31 17:54:03 2008 +0200
31263
31264     Prepare v1.3.4-rc2: update CHANGELOG
31265
31266     Signed-off-by: Wolfgang Denk <wd@denx.de>
31267
31268 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
31269 Author: Mark Jackson <mpfj@mimc.co.uk>
31270 Date:   Thu Jul 31 16:09:00 2008 +0100
31271
31272     Add gzipped logo support
31273
31274     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
31275
31276       If this option is set, additionally to standard BMP
31277       images, gzipped BMP images can be displayed via the
31278       splashscreen support or the bmp command.
31279
31280     However, the splashscreen function *only* supports standard BMP images.
31281
31282     This patch adds the documented gzip support.
31283
31284     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
31285
31286 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
31287 Author: Mark Jackson <mpfj@mimc.co.uk>
31288 Date:   Thu Jul 31 15:56:48 2008 +0100
31289
31290     Fix Atmel LCD controller endianess for AVR32 processors
31291
31292     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
31293     AVR32 (big endian) platforms.
31294
31295     As such, the controller can handle both big and little endian memory.
31296
31297     This patch fixes the driver for the AVR32 platform.
31298
31299     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
31300
31301 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
31302 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31303 Date:   Thu Jul 31 15:56:01 2008 +0200
31304
31305     apollon: fix build out of tree
31306
31307     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31308
31309 commit 2e752be39d3e398d4ab89ffa6634c397df298297
31310 Author: Guennadi Liakhovetski <lg@denx.de>
31311 Date:   Thu Jul 31 12:35:04 2008 +0200
31312
31313     Uncompressed images loaded to their start address shall set load_end too
31314
31315     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31316     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
31317
31318 commit c37207d7f51e19c17f859966f314e27cc1231801
31319 Author: Wolfgang Denk <wd@denx.de>
31320 Date:   Wed Jul 16 16:38:59 2008 +0200
31321
31322     Fix printf() format problems with configurable prompts
31323
31324     U-Boot allows for configurable prompt strings using the
31325     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
31326     the assumption was that any such user defined problts would contain
31327     exactly one "%d" format specifier. But some boards did not.
31328
31329     To allow for flexible boot prompts without adding too complex code we
31330     now allow to specify the whole list of printf() arguments in the user
31331     definition. This is powerful, but requires a responsible user who
31332     really understands what he is doing, as he needs to know for exanple
31333     which variables are available in the respective context.
31334
31335     Signed-off-by: Wolfgang Denk <wd@denx.de>
31336
31337 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
31338 Author: Wolfgang Denk <wd@denx.de>
31339 Date:   Thu Jul 31 17:02:14 2008 +0200
31340
31341     TQM85xx: fix typo introduce by commit ffbb5cb9
31342
31343     Signed-off-by: Wolfgang Denk <wd@denx.de>
31344
31345 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
31346 Author: Wolfgang Denk <wd@denx.de>
31347 Date:   Thu Jul 31 15:27:01 2008 +0200
31348
31349     mvbc_p board: fix most build warnings.
31350
31351     Signed-off-by: Wolfgang Denk <wd@denx.de>
31352
31353 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
31354 Author: Wolfgang Denk <wd@denx.de>
31355 Date:   Thu Jul 31 13:57:20 2008 +0200
31356
31357     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
31358
31359     Avoid "integer constant is too large for 'long' type" warnings.
31360     And simplify the code.
31361
31362     Signed-off-by: Wolfgang Denk <wd@denx.de>
31363
31364 commit 9196b44334c330cc13de2464c59181e4db71f549
31365 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
31366 Date:   Wed Jul 30 23:21:19 2008 +0400
31367
31368     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
31369
31370     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
31371
31372 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
31373 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
31374 Date:   Wed Jul 30 23:20:32 2008 +0400
31375
31376     PPC: Add pci_clk in the global_data for CPM2 processors
31377
31378     This patch adds pci_clk field to the global_data structure for the
31379     processors which have CPM2 module in case the CONFIG_PCI is defined.
31380
31381     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
31382
31383 commit f0ff885ca64655bee6540eb8a25eed90b1152686
31384 Author: Kumar Gala <galak@kernel.crashing.org>
31385 Date:   Wed Jul 30 14:13:30 2008 -0500
31386
31387     mpc85xx: Update linker scripts for Freescale boards
31388
31389     * Move to using absolute addressing always.  Makes the scripts a bit more
31390       portable and common
31391     * Moved .bss after the end of the image.  These allows us to have more
31392       room in the resulting binary image for code and data.
31393     * Removed .text object files that aren't really needed
31394     * Make sure _end is 4-byte aligned as the .bss init code expects this.
31395       (Its possible that the end of .bss isn't 4-byte aligned)
31396
31397     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31398
31399 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
31400 Author: Kumar Gala <galak@kernel.crashing.org>
31401 Date:   Wed Jul 30 08:01:15 2008 -0500
31402
31403     Fix compile warnings in dlmalloc
31404
31405     The origional code was using on odd reference to get to the first
31406     real element in av_[].  The first two elements of the array are
31407     not used for actual bins, but for house keeping.  If we are more
31408     explicit about how use the first few elements we can get rid of the
31409     warnings:
31410
31411     dlmalloc.c: In function 'malloc_extend_top':
31412     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
31413     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
31414     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
31415     ...
31416
31417     The logic of how this code came to be is:
31418         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
31419
31420     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
31421         bin_at(0) = &(av_[0])
31422
31423     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
31424
31425     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31426
31427 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
31428 Author: Stefan Roese <sr@denx.de>
31429 Date:   Wed Jul 30 10:21:01 2008 +0200
31430
31431     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
31432
31433     Signed-off-by: Stefan Roese <sr@denx.de>
31434
31435 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
31436 Author: Stefan Roese <sr@denx.de>
31437 Date:   Wed Jul 30 09:59:51 2008 +0200
31438
31439     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
31440
31441     A recent patch used '#if (CONFIG_CMD_USB)' instead of
31442     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
31443     common/bootm.c compile again.
31444
31445     Signed-off-by: Stefan Roese <sr@denx.de>
31446     Acked-by: Markus Klotzbuecher <mk@denx.de>
31447
31448 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
31449 Author: Kyungmin Park <kmpark@infradead.org>
31450 Date:   Tue Jul 22 08:01:43 2008 +0900
31451
31452     Remove unused I2C at apollon board
31453
31454     There are no I2C devices on this board.
31455
31456     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31457
31458 commit 3c95960e526b3b026da20201db64526f46faf14b
31459 Author: Wolfgang Denk <wd@denx.de>
31460 Date:   Thu Jul 31 10:12:09 2008 +0200
31461
31462     at91rm9200dk, csb637: fix NAND related build problems
31463
31464     Tried fixing NAND support for the at91rm9200dk board; untested.
31465     Disabled NAND support in the csb637 board config file.
31466
31467     Signed-off-by: Wolfgang Denk <wd@denx.de>
31468
31469 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
31470 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31471 Date:   Wed Jul 30 12:39:28 2008 +0200
31472
31473     ppc4xx: ML507: Environment in flash and MTD Support
31474
31475     - Relocate the location of U-Boot in the flash
31476     - Save the environment in one sector of the flash memory
31477     - MTD Support
31478
31479     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31480     Signed-off-by: Stefan Roese <sr@denx.de>
31481
31482 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
31483 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31484 Date:   Tue Jul 29 17:16:10 2008 +0200
31485
31486     ppc4xx: ML507: Use of get_ram_size in board ml507
31487
31488     - Change suggested by WD
31489
31490     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31491     Signed-off-by: Stefan Roese <sr@denx.de>
31492
31493 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
31494 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31495 Date:   Mon Jul 21 20:30:07 2008 +0200
31496
31497     ppc4xx: ML507: U-Boot in flash and System ACE
31498
31499     This patch allows booting from FLASH the ML507 board by Xilinx.
31500     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
31501
31502     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31503     Signed-off-by: Stefan Roese <sr@denx.de>
31504
31505 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
31506 Author: Julien May <mailinglist@miromico.ch>
31507 Date:   Mon Jun 23 13:57:52 2008 +0200
31508
31509     Add support for the hammerhead (AVR32) board
31510
31511     The Hammerhead platform is built around a AVR32 32-bit microcontroller
31512     from Atmel.  It offers versatile peripherals, such as ethernet, usb
31513     device, usb host etc.
31514
31515     The board also incooperates a power supply and is a Power over Ethernet
31516     (PoE) Powered Device (PD).
31517
31518     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
31519     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
31520     DDR2 SDRAM interfaces, which will cover even the most exceptional need
31521     of memory bandwidth. Together with the onboard video decoder the board
31522     is ready for video processing.
31523
31524     For more information see: http:///www.miromico.com/hammerhead
31525
31526     Signed-off-by: Julien May <mailinglist@miromico.ch>
31527     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
31528     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31529
31530 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
31531 Author: Kumar Gala <galak@kernel.crashing.org>
31532 Date:   Tue Jul 29 12:23:49 2008 -0500
31533
31534     fsl_i2c: Use timebase timer functions instead of get_timer()
31535
31536     The current implementation of get_timer() is only really useful after we
31537     have relocated u-boot to memory.  The i2c code is used before that as part
31538     of the SPD DDR setup.
31539
31540     We actually have a bug when using the get_timer() code before relocation
31541     because the .bss hasn't been setup and thus we could be reading/writing
31542     a random location (probably in flash).
31543
31544     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31545
31546 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
31547 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
31548 Date:   Tue Jul 29 14:49:31 2008 +0200
31549
31550     Adder8xx: Fix CFG_MONITOR_LEN
31551
31552     Due to increased space usage, U-Boot can no longer be stored in three sectors.
31553     The current U-Boot use just over three flash sectors (197k), and U-Boot will
31554     become corrupt after saving environment variables. This patch adds another 64k
31555     to CFG_MONITOR_LEN.
31556
31557     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
31558
31559 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
31560 Author: Kyungmin Park <kmpark@infradead.org>
31561 Date:   Tue Jul 29 08:47:57 2008 +0900
31562
31563     Add OneNAND IPL related files to gitignore
31564
31565     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31566
31567 commit 8d87589e8e874df7120a3d9667f051bc33bac250
31568 Author: Rafal Jaworowski <raj@semihalf.com>
31569 Date:   Mon Jul 28 20:38:25 2008 +0200
31570
31571     API: Teach the storage layer about SATA and MMC options.
31572
31573     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
31574     Acked-by: Rafal Jaworowski <raj@semihalf.com>
31575
31576 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
31577 Author: Rafal Jaworowski <raj@semihalf.com>
31578 Date:   Mon Jul 28 20:37:48 2008 +0200
31579
31580     API: Dump contents of sector 0 in the demo application.
31581
31582     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
31583     Acked-by: Rafal Jaworowski <raj@semihalf.com>
31584
31585 commit 13ca6305f2eba49c175f6370c35286141059c789
31586 Author: Rafal Jaworowski <raj@semihalf.com>
31587 Date:   Mon Jul 28 20:37:10 2008 +0200
31588
31589     API: Correct storage enumeration routine, other minor fixes in API storage area.
31590
31591     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
31592     Acked-by: Rafal Jaworowski <raj@semihalf.com>
31593
31594 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
31595 Author: Rafal Jaworowski <raj@semihalf.com>
31596 Date:   Mon Jul 28 20:36:19 2008 +0200
31597
31598     API: Fix compilation warnings in api_examples/demo.c.
31599
31600     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
31601
31602 commit c14eefcc48212af2f3314809605698dd8393a90a
31603 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31604 Date:   Sun Jul 27 17:09:43 2008 +0200
31605
31606     Fix more printf() format warnings
31607
31608     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31609
31610 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
31611 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31612 Date:   Fri Jul 25 15:18:16 2008 +0200
31613
31614     Fix remaining CFG_CMD_ define, ifdef and comments
31615
31616     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31617
31618 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
31619 Author: Stefano Babic <sbabic@denx.de>
31620 Date:   Fri Jul 25 08:57:40 2008 +0200
31621
31622     Add include for config.h in command.h.
31623
31624     Because the cmd_tbl_s structure depends on the configuration file, it
31625     must be assured that config.h is included before the structure is
31626     evaluated by the compiler. If this is not certain, it could happen
31627     that the compiler generates structures of different size, depending
31628     on the fact if the source file includes <config.h> before or after
31629     <command.h>.
31630
31631     The effect is that u-boot crashes when tries to relocate the command
31632     table (for ppc) or try to access to the command table for other
31633     architectures.
31634
31635     The problem can happen on board-depending commands. All general
31636     commands under /common are unaffected, because they include already
31637     config.h before command.h.
31638
31639     Signed-off-by: Stefano Babic <sbabic@denx.de>
31640
31641 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
31642 Author: Scott Wood <scottwood@freescale.com>
31643 Date:   Wed Jul 23 13:16:06 2008 -0500
31644
31645     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
31646
31647     This fixes building out-of-tree.
31648
31649     Signed-off-by: Scott Wood <scottwood@freescale.com>
31650
31651 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
31652 Author: Heiko Schocher <hs@denx.de>
31653 Date:   Wed Jul 23 07:30:46 2008 +0200
31654
31655     Fix warnings if compiling with IDE support.
31656
31657     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
31658     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
31659
31660     Signed-off-by: Heiko Schocher <hs@denx.de>
31661
31662 commit 7610db17fd4d59c51d825488526d85ede2f06767
31663 Author: Adrian Filipi <adrian.filipi@eurotech.com>
31664 Date:   Tue Jul 22 14:28:11 2008 -0400
31665
31666     Removed support for the adsvix board.
31667
31668     Support for the adsvix was originally provided by Applied Data
31669     Systems (ADS), inc., now EuroTech, Inc.
31670     The board never shipped aside from some sample boards.
31671
31672     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
31673
31674 commit f96b44cef897bd372beb86dde1b33637c119d84d
31675 Author: Remy Bohmer <linux@bohmer.net>
31676 Date:   Tue Jul 22 16:22:11 2008 +0200
31677
31678     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
31679
31680     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
31681     never set, because relocation to RAM is actually never done by U-boot
31682     itself. However, several pieces of code check if this flag is set at
31683     some time.
31684
31685     So, to make sure this flag is set on boards skipping relocation, this
31686     is added to the initialisation of U-boot at a moment where it is safe
31687     to do so.
31688
31689     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31690
31691 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
31692 Author: Timur Tabi <timur@freescale.com>
31693 Date:   Mon Jul 21 14:26:23 2008 -0500
31694
31695     fsl-i2c: fix writes to data segment before relocation
31696
31697     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
31698     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
31699     I2C bus speed and save the value in i2c_bus_speed[], which is a global
31700     variable.  It is an error to write to the data segment before relocation,
31701     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
31702
31703     Signed-off-by: Timur Tabi <timur@freescale.com>
31704
31705 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
31706 Author: Wolfgang Ocker <weo@reccoware.de>
31707 Date:   Mon Jul 28 16:56:51 2008 +0200
31708
31709     mips: Fix baudrate divisor computation on alchemy cpus
31710
31711     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
31712     on alchemy cpus.
31713
31714     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
31715     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31716
31717 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
31718 Author: Ben Warren <biggerbadderben@gmail.com>
31719 Date:   Sat Jul 5 00:08:48 2008 -0700
31720
31721     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
31722
31723     Renamed initialization functions for atngw100 and atstk1000.
31724     Removed initializations for these boards from net/eth.c
31725
31726     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31727     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31728
31729 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
31730 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31731 Date:   Wed Jul 23 10:55:46 2008 +0200
31732
31733     spi flash: Fix printf() format warnings
31734
31735     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31736
31737 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
31738 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31739 Date:   Wed Jul 23 10:55:31 2008 +0200
31740
31741     atmel_mci: Fix printf() format warnings
31742
31743     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31744
31745 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
31746 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31747 Date:   Wed Jul 23 10:55:15 2008 +0200
31748
31749     avr32: Fix printf() format warnings
31750
31751     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31752
31753 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
31754 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31755 Date:   Wed Jul 23 10:52:19 2008 +0200
31756
31757     avr32: asm/io.h needs asm/types.h
31758
31759     map_physmem() takes a phys_addr_t as parameter. This type is defined in
31760     asm/types.h, so we need to include that file.
31761
31762     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31763
31764 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
31765 Author: Michal Simek <monstr@monstr.eu>
31766 Date:   Thu Jul 17 12:25:46 2008 +0200
31767
31768     microblaze: Fix printf() format issues
31769
31770     Signed-off-by: Michal Simek <monstr@monstr.eu>
31771
31772 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
31773 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
31774 Date:   Thu Jul 17 07:27:51 2008 +0530
31775
31776     Remove unused code from lib_arm/bootm.c
31777
31778     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
31779
31780 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
31781 Author: Detlev Zundel <dzu@denx.de>
31782 Date:   Wed Jul 16 18:56:45 2008 +0200
31783
31784     tqm85xx: Demystify 'DK: !!!' comment
31785
31786     Signed-off-by: Detlev Zundel <dzu@denx.de>
31787
31788 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
31789 Author: Detlev Zundel <dzu@denx.de>
31790 Date:   Wed Jul 16 18:56:44 2008 +0200
31791
31792     83xx/85xx/86xx: Add LTEDR local bus definitions
31793
31794     Signed-off-by: Detlev Zundel <dzu@denx.de>
31795
31796 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
31797 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31798 Date:   Wed Jul 16 16:22:32 2008 +0200
31799
31800     serial_xuartlite.c: fix compiler warnings
31801
31802     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31803     Acked-by: Grant Likely <grant.likely@secretlab.ca>
31804
31805 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
31806 Author: Stefan Roese <sr@denx.de>
31807 Date:   Fri Jul 18 11:03:35 2008 +0200
31808
31809     POST: Add disable interrupts in some of the missing CPU POST tests
31810
31811     Some CPU POST tests did not disable the interrupts while running. This
31812     seems to be necessary to protect this self modifying code.
31813
31814     Signed-off-by: Stefan Roese <sr@denx.de>
31815
31816 commit 97a3bf268d096e0e97e54048448c35114edcf557
31817 Author: Stefan Roese <sr@denx.de>
31818 Date:   Fri Jul 18 10:43:24 2008 +0200
31819
31820     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
31821
31822     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
31823     CFG_64BIT_LBA.
31824
31825     Signed-off-by: Stefan Roese <sr@denx.de>
31826
31827 commit 0043ac55024963295fc79b39af85b6dc3b261e17
31828 Author: Niklaus Giger <niklaus.giger@netstal.com>
31829 Date:   Fri Jul 18 11:22:23 2008 +0200
31830
31831     POST PPC4xx/spr IVPR only if PPC440
31832
31833     The SPR IVPR register is only present (as far as I know) for
31834     processors with a PPC440 core.
31835
31836     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
31837     Acked-by: Stefan Roese <sr@denx.de>
31838
31839 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
31840 Author: Stefan Roese <sr@denx.de>
31841 Date:   Fri Jul 18 10:42:29 2008 +0200
31842
31843     ppc4xx: Enable 64bit printf format on 440/460 platforms
31844
31845     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
31846     440/460 platforms. This may be needed since those platforms support
31847     36bit physical address space.
31848
31849     Signed-off-by: Stefan Roese <sr@denx.de>
31850
31851 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
31852 Author: Stefan Roese <sr@denx.de>
31853 Date:   Fri Jul 18 15:57:23 2008 +0200
31854
31855     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
31856
31857     This patch fixes a problem with incorrect MODTx (On Die Termination)
31858     setup for a configuration with multiple DIMM's and multiple ranks.
31859     Without this change Katmai was unable to boot Linux with DDR2 frequency
31860     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
31861     with DDR2 frequency = 640MHz and mem=4GB.
31862
31863     Signed-off-by: Stefan Roese <sr@denx.de>
31864
31865 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
31866 Author: Stefan Roese <sr@denx.de>
31867 Date:   Fri Jul 18 12:24:41 2008 +0200
31868
31869     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
31870
31871     Signed-off-by: Stefan Roese <sr@denx.de>
31872
31873 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
31874 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31875 Date:   Thu Jul 17 12:47:09 2008 +0200
31876
31877     ppc4xx: ML507 Board Support
31878
31879     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
31880         among others:
31881         -Virtex 5 FX FPGA (With a ppc440x5 in it)
31882         -256MB of SDRAM2
31883         -32MB of Flash
31884         -I2C Eeprom
31885         -System ACE chip
31886         -Serial ATA connectors
31887         -RS232 Level Conversors
31888         -Ethernet Transceiver
31889
31890     This patch gives support to a standard design produced by EDK for this
31891     board: ppc440, uartlite, xilinx_int and flash
31892
31893     - Includes Changes propossed by Stefan Roese and Michal Simek
31894
31895     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31896     Acked-by: Stefan Roese <sr@denx.de>
31897
31898 commit d865fd09809a3a18669f35f970781820af40e4de
31899 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31900 Date:   Thu Jul 17 11:44:12 2008 +0200
31901
31902     ppc4xx: CPU PPC440x5 on Virtex5 FX
31903
31904     -This patchs gives support for the embbedded ppc440
31905      on the Virtex5 FPGAs
31906     -interrupts.c divided in uic.c and interrupts.c
31907     -xilinx_irq.c for xilinx interrupt controller
31908     -Include modifications propossed by  Stefan Roese
31909
31910     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31911     Acked-by: Stefan Roese <sr@denx.de>
31912
31913 commit 340ccb260f21516be360745d5c5e3bd0657698df
31914 Author: Sebastian Siewior <bigeasy@linutronix.de>
31915 Date:   Wed Jul 16 20:04:49 2008 +0200
31916
31917     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
31918
31919     This got broken by commits 93c56f212c
31920      [cfi_flash: support of long cmd in U-boot.]
31921
31922     That command needs to be in little endian format on BE machines
31923     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
31924     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
31925     the cmdbuf in case portwidth = chipwidth = 8bit.
31926
31927     Cc: Alexey Korolev <akorolev@infradead.org>
31928     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
31929     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
31930
31931 commit 11188d55bc16dd907451c00282e00a038f73dd62
31932 Author: Stefan Roese <sr@denx.de>
31933 Date:   Thu Jul 17 10:40:51 2008 +0200
31934
31935     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
31936
31937     Signed-off-by: Stefan Roese <sr@denx.de>
31938
31939 commit 021f6df6e96af5b387810cf96d24848da1faa55c
31940 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31941 Date:   Thu Jul 10 17:20:51 2008 +0400
31942
31943     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
31944
31945     The thinko was quite silly indeed, I messed with !ptr. Normally this
31946     would trigger some fault, but in U-Boot NULL pointer is equal to phys
31947     0, so the code was working still, just didn't actually test mpc8315erdb
31948     environment variable value. Heh.
31949
31950     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31951     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31952
31953 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
31954 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31955 Date:   Tue Jul 8 21:00:04 2008 +0400
31956
31957     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
31958
31959     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
31960     support, or without TSEC1 but with USB ULPI PHY support in addition.
31961     With this patch user can specify desired USB PHY.
31962
31963     Also, it seems that we can't distinguish the two boards in software, so
31964     user have to set `mpc8315erdb' environment variable to either 'tsec1'
31965     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
31966     Linux will not probe for TSEC1.
31967
31968     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31969     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31970
31971 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
31972 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31973 Date:   Tue Jul 8 20:59:43 2008 +0400
31974
31975     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
31976
31977     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
31978     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
31979     (connected to the four-ports hub, usb host only).
31980
31981     This patch implements support for passing Dual-Role USB controller's
31982     device tree property phy_type through the usb_phy_type environment
31983     variable.
31984
31985     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31986     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
31987     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31988
31989 commit 699f05125509249072a0b865c8d35520d97cd501
31990 Author: Wolfgang Denk <wd@denx.de>
31991 Date:   Tue Jul 15 22:22:44 2008 +0200
31992
31993     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
31994
31995     Signed-off-by: Wolfgang Denk <wd@denx.de>
31996
31997 commit bcab74baa6b1b1c969038ab6f64a186239180405
31998 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
31999 Date:   Tue Jul 15 11:23:02 2008 -0400
32000
32001     Round the serial port clock divisor value returned by calc_divisor()
32002
32003     Round the serial port clock divisor value returned by
32004     calc_divisor()
32005
32006     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32007     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
32008
32009 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
32010 Author: Robin Getz <rgetz@blackfin.uclinux.org>
32011 Date:   Tue Jul 15 21:44:46 2008 +0200
32012
32013     Fix DHCP protocol so U-Boot does not respond too early
32014     on the network with it's offered IP number; it should not reply until
32015     after it has received a DHCP ACK message. Also ensures that U-Boot
32016     does it's DHCPREQUEST as broadcast (per RFC 2131).
32017
32018     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
32019     Acked-by: Ben Warren <biggerbadderben@gmail.com>
32020     Signed-off-by: Wolfgang Denk <wd@denx.de>
32021
32022 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
32023 Author: Sebastian Siewior <bigeasy@linutronix.de>
32024 Date:   Tue Jul 15 13:35:23 2008 +0200
32025
32026     cfi_flash: make the command u32 only
32027
32028     This got changed by commit 93c56f212c
32029     [cfi_flash: support of long cmd in U-boot.]
32030
32031     Long is the wrong type because it will behave differently on 64bit
32032     machines in a way that is probably not expected. u32 should be
32033     enough.
32034
32035     Cc: Alexey Korolev <akorolev@infradead.org>
32036     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
32037     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
32038
32039 commit 31cfe57491b183acae575d486729e158f016c27b
32040 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32041 Date:   Mon Jul 14 23:48:41 2008 +0200
32042
32043     tools/gitignore: update to all generated files
32044
32045     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32046
32047 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
32048 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
32049 Date:   Wed Jul 9 18:30:44 2008 +0200
32050
32051     mpc5xxx: Add MVBC_P board support
32052
32053     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
32054     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
32055
32056     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
32057     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
32058
32059 commit e2d31fb3450653115452144363d5bde4e5e3e693
32060 Author: Timur Tabi <timur@freescale.com>
32061 Date:   Thu Jun 19 17:56:11 2008 -0500
32062
32063     Update Freescale sys_eeprom.c to handle CCID formats
32064
32065     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
32066     NXID format replaces the older CCID format, but it's important to support both
32067     since most boards out there still use the CCID format.  This change is in
32068     preparation for using one file to handle both formats.  This will also unify
32069     EEPROM support for all Freescale 85xx and 86xx boards.
32070
32071     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
32072     instead of ID_EEPROM_ADDR.
32073
32074     Signed-off-by: Timur Tabi <timur@freescale.com>
32075
32076 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
32077 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32078 Date:   Fri Jul 11 17:22:43 2008 +0900
32079
32080     pci: sh: Add pci_skip_dev and pci_print_dev function
32081
32082     Add function of new PCI, pci_skip_dev and pci_print_dev.
32083
32084     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32085     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32086
32087 commit 1107014e835ec9d46c0333f4211d104f77442db0
32088 Author: Andy Fleming <afleming@freescale.com>
32089 Date:   Mon Jul 14 20:29:07 2008 -0500
32090
32091     Clean up INIT_RAM options
32092
32093     The L2_INIT_RAM option was unused, and recent changes to the TLB code
32094     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
32095     the amount of mapped space attached to nothing, we change things so the TLBs
32096     get cleared.
32097
32098     Signed-off-by: Andy Fleming <afleming@freescale.com>
32099
32100 commit 4524561820a9327e89107854b3a7187800ccf719
32101 Author: Andy Fleming <afleming@freescale.com>
32102 Date:   Mon Jul 14 20:26:57 2008 -0500
32103
32104     Remove fake flash bank from 8544 DS
32105
32106     The fake flash bank was generating errors for anyone who didn't have a
32107     PromJET hooked up to the board.  As that constitutes the vast majority of
32108     users, we remove it.
32109
32110     Signed-off-by: Andy Fleming <afleming@freescale.com>
32111
32112 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
32113 Author: Kumar Gala <galak@kernel.crashing.org>
32114 Date:   Mon Jul 14 14:07:03 2008 -0500
32115
32116     MPC8544DS: Add ATI Video card support
32117
32118     Add support for using a PCIe ATI Video card on PCIe2.
32119
32120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32121
32122 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
32123 Author: Kumar Gala <galak@kernel.crashing.org>
32124 Date:   Mon Jul 14 14:07:02 2008 -0500
32125
32126     85xx: Add some L1/L2 SPR register definitions
32127
32128     Add new L1/L2 SPRs related to e500mc cache config and control.
32129
32130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32131
32132 commit e5852787f0c3c442a276262f13d91ca450605ac0
32133 Author: Kumar Gala <galak@kernel.crashing.org>
32134 Date:   Mon Jul 14 14:07:01 2008 -0500
32135
32136     MPC8544DS: Report board id, board version and fpga version.
32137
32138     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32139
32140 commit 73f15a060f67a2462551c334215bd20fac6b81d1
32141 Author: Kumar Gala <galak@kernel.crashing.org>
32142 Date:   Mon Jul 14 14:07:00 2008 -0500
32143
32144     85xx: Cleanup L2 cache size detection
32145
32146     The L2 size detection code was a bit confusing and we kept having to add
32147     code to it to handle new processors.  Change the sense of detection so we
32148     look for the older processors that aren't changing.
32149
32150     Also added support for 1M cache size on 8572.
32151
32152     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32153
32154 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
32155 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32156 Date:   Fri Jul 11 15:33:08 2008 -0400
32157
32158     sbc8560: enable CONFIG_OF_LIBFDT by default
32159
32160     Make the default build for the sbc8560 board be powerpc
32161     capable with libfdt support.
32162
32163     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32164
32165 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
32166 Author: Andy Fleming <afleming@freescale.com>
32167 Date:   Mon Jul 14 20:04:40 2008 -0500
32168
32169     Fix indentation for default boot environment variables
32170
32171     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
32172     similar #defines in sbc8560.h.
32173
32174     Signed-off-by: Andy Fleming <afleming@freescale.com>
32175
32176 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
32177 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32178 Date:   Fri Jul 11 15:33:07 2008 -0400
32179
32180     sbc8560: add default fdt values
32181
32182     Add in the default fdt settings and the typical EXTRA_ENV
32183     settings as borrowed from the mpc8560ads.  Fix a couple
32184     of stale references to the mpc8560ads dating back to the
32185     original clone/fork.
32186
32187     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32188     Signed-off-by: Andy Fleming <afleming@freescale.com>
32189
32190 commit d04e76edf92f7f89696989e8702b97e020455af3
32191 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32192 Date:   Fri Jul 11 15:33:06 2008 -0400
32193
32194     sbc8560: add in ft_board_setup()
32195
32196     Add in for the sbc8560, the ft_board_setup() routine, based on what is
32197     in use for the Freescale MPC8560ADS board.
32198
32199     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32200
32201 commit c158bcaca3b31cbe38c4143812e6170e38a57393
32202 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32203 Date:   Fri Jul 11 15:33:05 2008 -0400
32204
32205     sbc8560: define eth0 and eth1 instead of eth1 and eth2
32206
32207     The existing config doesn't define CONFIG_HAS_ETH0, and so the
32208     fdt support doesn't update the zeros in the dtb local-mac with
32209     real data from the u-boot env.  Since the existing config is
32210     tailored to just two interfaces, get rid of the ETH2 definitions
32211     at the same time.
32212
32213     Also don't include any end user specific data into the environment
32214     by default -- things like MAC address, network parameters etc. need
32215     to come from the end user.
32216
32217     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32218     Signed-off-by: Andy Fleming <afleming@freescale.com>
32219
32220 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
32221 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32222 Date:   Fri Jul 11 15:33:04 2008 -0400
32223
32224     sbc8560: properly set cs0_bnds for 512MB
32225
32226     The sbc8560 board ships with 512MB of memory installed,
32227     but the current cs0_bnds is hard coded for 256MB.  Set the
32228     value based on CFG_SDRAM_SIZE.
32229
32230     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32231
32232 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
32233 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32234 Date:   Fri Jul 11 15:33:03 2008 -0400
32235
32236     sbc8560: proper definitions for TSEC.
32237
32238     The definitions for the TSEC have become out of date.  There is no
32239     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
32240     Update to match those of other boards, like the MPC8560ADS.
32241
32242     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32243     Acked-by: Ben Warren <biggerbadderben@gmail.com>
32244
32245 commit 71074abbe0c76429577aff58aeff0a24ad210b23
32246 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
32247 Date:   Wed Jul 9 13:23:05 2008 -0400
32248
32249     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
32250
32251     Some boards that have external 16550 UARTs don't have a direct
32252     tie between bi_busfreq and the clock used for the UARTs.  Boards
32253     that do have such a tie should set CFG_NS16550_CLK to be
32254     get_bus_freq(0) -- which most of them do already.
32255
32256     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
32257     Acked-by: Kim Phillips <kim.phillips@freescale.com>
32258
32259 commit 24ef76f320fbadf074105229826514db140f939f
32260 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
32261 Date:   Wed Jul 2 07:03:53 2008 -0700
32262
32263     Change the temp map to ROM to align addresses to page size.
32264
32265     With a page size of BOOKE_PAGESZ_16M, both the real and effective
32266     addresses must be multiples of 16MB.  The hardware silently truncates
32267     them so the code happens to work.  This patch clarifies the situation
32268     by establishing addresses that the hardware doesn't need to truncate.
32269
32270     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
32271     Signed-off-by: Andy Fleming <afleming@freescale.com>
32272
32273 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
32274 Author: Kim Phillips <kim.phillips@freescale.com>
32275 Date:   Tue Jun 17 17:45:22 2008 -0500
32276
32277     mpc85xx: use IS_E_PROCESSOR macro
32278
32279     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32280
32281 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
32282 Author: Kim Phillips <kim.phillips@freescale.com>
32283 Date:   Mon Jun 16 15:55:53 2008 -0500
32284
32285     fdt: add crypto node handling for MPC8{3, 5}xxE processors
32286
32287     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
32288     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
32289     if on an 'EA' processor, e.g. MPC8349EA.
32290
32291     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32292
32293 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
32294 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32295 Date:   Fri Jul 11 15:10:11 2008 -0400
32296
32297     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
32298
32299     ARM DaVinci: Remove extern phy_t declaration by moving
32300     code to proper place.
32301
32302     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32303
32304 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
32305 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32306 Date:   Fri Jul 11 15:10:10 2008 -0400
32307
32308     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
32309
32310     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
32311     and prototype of i2c_init().
32312
32313     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32314
32315 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
32316 Author: Kumar Gala <galak@kernel.crashing.org>
32317 Date:   Mon Jul 14 14:03:02 2008 -0500
32318
32319     Fix some more printf() format problems.
32320
32321     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32322
32323 commit 45b16d22c64674ccd8c4637456a987463609141c
32324 Author: Wolfgang Denk <wd@denx.de>
32325 Date:   Mon Jul 14 22:38:42 2008 +0200
32326
32327     Fix coding style; make code better parsable by external tools
32328
32329     Signed-off-by: Wolfgang Denk <wd@denx.de>
32330
32331 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
32332 Author: Wolfgang Denk <wd@denx.de>
32333 Date:   Mon Jul 14 21:19:08 2008 +0200
32334
32335     cpu/i386/serial.c: Fix syntax errors
32336
32337     Signed-off-by: Wolfgang Denk <wd@denx.de>
32338
32339 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
32340 Author: Wolfgang Denk <wd@denx.de>
32341 Date:   Mon Jul 14 20:41:35 2008 +0200
32342
32343     elppc board: Coding style cleanup.
32344
32345     Signed-off-by: Wolfgang Denk <wd@denx.de>
32346
32347 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
32348 Author: Wolfgang Denk <wd@denx.de>
32349 Date:   Mon Jul 14 20:40:22 2008 +0200
32350
32351     elppc board: fix syntax error.
32352
32353     Signed-off-by: Wolfgang Denk <wd@denx.de>
32354
32355 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
32356 Author: Wolfgang Denk <wd@denx.de>
32357 Date:   Mon Jul 14 20:38:26 2008 +0200
32358
32359     EB+MCF-EV123 board: fix coding style (alingment)
32360
32361     Signed-off-by: Wolfgang Denk <wd@denx.de>
32362
32363 commit 6841785a0bb0f38175456a923edd634fb7dd6947
32364 Author: Wolfgang Denk <wd@denx.de>
32365 Date:   Mon Jul 14 20:36:44 2008 +0200
32366
32367     EB+MCF-EV123 board: fix syntx error
32368
32369     Signed-off-by: Wolfgang Denk <wd@denx.de>
32370
32371 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
32372 Author: Andy Fleming <afleming@freescale.com>
32373 Date:   Mon Jul 7 18:02:08 2008 -0500
32374
32375     Remove LBC_CACHE_BASE from 8544 DS
32376
32377     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
32378     space for some anyway, we were allowing speculative loads into unmapped space,
32379     which would cause an exception (annoying, even if ultimately harmless).
32380     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
32381     problem.
32382
32383     Signed-off-by: Andy Fleming <afleming@freescale.com>
32384
32385 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
32386 Author: Wolfgang Denk <wd@denx.de>
32387 Date:   Mon Jul 14 15:19:07 2008 +0200
32388
32389     Code cleanup: fix old style assignment ambiguities like "=-" etc.
32390
32391     Signed-off-by: Wolfgang Denk <wd@denx.de>
32392
32393 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
32394 Author: Wolfgang Denk <wd@denx.de>
32395 Date:   Mon Jul 14 15:10:53 2008 +0200
32396
32397     AmigaOneG3SE: remove dead and incomplete files
32398
32399     Signed-off-by: Wolfgang Denk <wd@denx.de>
32400
32401 commit b64f190b7a34224df09b559ca111eb1b733f00ad
32402 Author: Wolfgang Denk <wd@denx.de>
32403 Date:   Mon Jul 14 15:06:35 2008 +0200
32404
32405     Fix printf() format issues with sizeof_t types by using %zu
32406
32407     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32408     Signed-off-by: Wolfgang Denk <wd@denx.de>
32409
32410 commit f354b73e16a86f9e9085471a830605f74f84ea5d
32411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32412 Date:   Mon Jul 14 14:11:45 2008 +0200
32413
32414     vsprintf: add z and t options
32415
32416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32417
32418 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
32419 Author: Wolfgang Denk <wd@denx.de>
32420 Date:   Sun Jul 13 23:07:35 2008 +0200
32421
32422     Fix some more printf() format issues.
32423
32424     Signed-off-by: Wolfgang Denk <wd@denx.de>
32425
32426 commit d5996dd555edf52721b7691a4c59de016251ed39
32427 Author: Wolfgang Denk <wd@denx.de>
32428 Date:   Sun Jul 13 19:51:00 2008 +0200
32429
32430     Fix some more printf() format problems.
32431
32432     Signed-off-by: Wolfgang Denk <wd@denx.de>
32433
32434 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
32435 Author: Wolfgang Denk <wd@denx.de>
32436 Date:   Sun Jul 13 19:48:26 2008 +0200
32437
32438     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
32439
32440     Signed-off-by: Wolfgang Denk <wd@denx.de>
32441
32442 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
32443 Author: Anatolij Gustschin <agust@denx.de>
32444 Date:   Sat Jul 12 17:31:36 2008 +0200
32445
32446     Fix bug in Lime video driver
32447
32448     We need to wait while drawing engine clears frame
32449     buffer before any further software accesses to frame
32450     buffer will be initiated. Otherwise software drawn
32451     parts could be partially destroyed by the drawing
32452     engine or even GDC chip freeze could occur (as
32453     observed on socrates board).
32454
32455     Signed-off-by: Anatolij Gustschin <agust@denx.de>
32456
32457 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
32458 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32459 Date:   Sat Jul 12 14:36:34 2008 +0200
32460
32461     Fix some more printf() format issues.
32462
32463     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32464
32465 commit 18c8a28aad49803780bd8d52432ded528e37e701
32466 Author: Michal Simek <monstr@monstr.eu>
32467 Date:   Fri Jul 11 15:11:57 2008 +0200
32468
32469     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
32470
32471     Signed-off-by: Michal Simek <monstr@monstr.eu>
32472     Acked-by: Stefan Roese <sr@denx.de>
32473
32474 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
32475 Author: Michal Simek <monstr@monstr.eu>
32476 Date:   Fri Jul 11 11:50:53 2008 +0200
32477
32478     hwmon: Cleaning hwmon devices
32479
32480     Clean Makefile
32481     Move device specific values to driver for better reading
32482
32483     Signed-off-by: Michal Simek <monstr@monstr.eu>
32484     Acked-by: Stefan Roese <sr@denx.de>
32485
32486 commit c78fce699c7ff467ecd841da6a79f065180bf578
32487 Author: Michal Simek <monstr@monstr.eu>
32488 Date:   Fri Jul 11 10:43:13 2008 +0200
32489
32490     FIS: repare incorrect return value with ramdisk handling
32491
32492     Microblaze and PowerPC use boot_get_ramdisk for loading
32493     ramdisk to memory with checking return value.
32494     Return 0 means success. Return 1 means failed.
32495     Here is correspond part of code from bootm.c which check
32496     return code.
32497
32498     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
32499                 &rd_data_start, &rd_data_end);
32500     if (ret)
32501         goto error;
32502
32503     Signed-off-by: Michal Simek <monstr@monstr.eu>
32504
32505 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
32506 Author: Michal Simek <monstr@monstr.eu>
32507 Date:   Fri Jul 11 10:10:32 2008 +0200
32508
32509     microblaze: Remove useless ancient headers
32510
32511     Signed-off-by: Michal Simek <monstr@monstr.eu>
32512
32513 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
32514 Author: Michal Simek <monstr@monstr.eu>
32515 Date:   Fri Jul 11 10:10:31 2008 +0200
32516
32517     microblaze: Clean uartlite driver
32518
32519     Redesign uartlite driver to in_be32 and out_be32 macros
32520     Fix missing header in io.h
32521
32522     Signed-off-by: Michal Simek <monstr@monstr.eu>
32523     Acked-by: Grant Likely <grant.likely@secretlab.ca>
32524
32525 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
32526 Author: Marcel Ziswiler <marcel@ziswiler.com>
32527 Date:   Fri Jul 11 02:39:14 2008 +0200
32528
32529     Enable passing of ATAGs required by latest Linux kernel.
32530
32531 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
32532 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32533 Date:   Fri Jul 11 10:24:15 2008 -0400
32534
32535     Fix integer overflow warning in calc_divisor()
32536
32537     which happened when rounding the serial port clock divisor
32538
32539     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32540
32541 commit 6b760189d77f001684e3160b355c185ca3804961
32542 Author: Marcel Ziswiler <marcel@ziswiler.com>
32543 Date:   Fri Jul 11 01:09:59 2008 +0200
32544
32545     Fix build time warnings in function mmc_decode_csd()
32546
32547     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32548
32549 commit c15947d6ce0d59925c97fdfac692476af6e262d0
32550 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32551 Date:   Thu Jul 10 10:46:33 2008 -0400
32552
32553     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
32554
32555     caused by missing dcache status/enable/disable functions.
32556
32557     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
32558
32559 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
32560 Author: Stefan Roese <sr@denx.de>
32561 Date:   Thu Jul 10 13:53:31 2008 +0200
32562
32563     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
32564
32565     This patch removes some ft_board_setup() functions from some 4xx boards.
32566     This can be done since we now have a default weak implementation for this
32567     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
32568     implementation like canyonlands need their own version.
32569
32570     Signed-off-by: Stefan Roese <sr@denx.de>
32571
32572 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
32573 Author: Wolfgang Denk <wd@denx.de>
32574 Date:   Sun Jul 13 14:58:16 2008 +0200
32575
32576     Add last known maintainer for orphaned boards; reformat.
32577
32578     Signed-off-by: Wolfgang Denk <wd@denx.de>
32579
32580 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
32581 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32582 Date:   Thu Jul 10 13:16:04 2008 +0200
32583
32584     Remove kharris@nexus-tech.net from MAINTAINERS
32585
32586     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
32587     anymore. You can't be a maintainer without a valid e-mail address, so
32588     move all boards that used to be maintained by Kyle Harris to the
32589     "orphaned" list.
32590
32591     Currently, only PowerPC has a list of orphaned boards, so this patch
32592     creates one for ARM as well.
32593
32594     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32595
32596 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
32597 Author: Anatolij Gustschin <agust@denx.de>
32598 Date:   Thu Jul 10 01:15:10 2008 +0200
32599
32600     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
32601
32602     On the at91sam9260ep development board there is an EEPROM
32603     connected to the TWI interface (PA23, PA24 Peripheral A
32604     multiplexing), so we cannot use these pins as ETX2, ETX3.
32605     This patch configures PA10, PA11 pins for ETX2, ETX3
32606     instead of PA23, PA24 pins.
32607
32608     Signed-off-by: Anatolij Gustschin <agust@denx.de>
32609     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
32610
32611 commit f889265753ddf4465d9d580827bb9289bfac55d6
32612 Author: Kenneth Johansson <kenneth@southpole.se>
32613 Date:   Sat Jul 12 13:18:34 2008 -0600
32614
32615     fix DIU for small screens
32616
32617     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
32618     so it was not possible to set a slow pixel clock and thus prevented
32619     display on small screens.
32620
32621     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
32622     Acked-by: John Rigby <jrigby@freescale.com>
32623
32624 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
32625 Author: John Rigby <jrigby@freescale.com>
32626 Date:   Fri Jul 11 14:44:09 2008 -0600
32627
32628     ADS5121 cleanup compile warnings
32629
32630     board/ads5121/iopin.c
32631         Replace bit fields in struct iopin_t with a single
32632         field and intialize it via plain old macros.
32633         This fixes the type pun warnings and makes the code
32634         more readable.
32635
32636     board/ads5121/ads5121.c
32637         Add include iopin.h to ads5121.c for the iopin_initialize
32638         prototype.
32639
32640         Add an extern void ads5121_diu_init(void)
32641
32642     Signed-off-by: John Rigby <jrigby@freescale.com>
32643
32644 commit bde63587622c4b830a27d1ddf7265843de9e994f
32645 Author: Wolfgang Denk <wd@denx.de>
32646 Date:   Fri Jul 11 22:56:11 2008 +0200
32647
32648     Fix some more printf() format issues.
32649
32650     Signed-off-by: Wolfgang Denk <wd@denx.de>
32651
32652 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
32653 Author: Wolfgang Denk <wd@denx.de>
32654 Date:   Fri Jul 11 22:55:31 2008 +0200
32655
32656     Fixed some out-of-tree build issues
32657
32658     Signed-off-by: Wolfgang Denk <wd@denx.de>
32659
32660 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
32661 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32662 Date:   Wed Jul 9 16:20:23 2008 -0500
32663
32664     ColdFire: Fix FB CS not setup properly for Mcf5282
32665
32666     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
32667     CFG_CSn_RO is defined as 0, the chipselect will not
32668     be assigned.
32669
32670     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32671
32672 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
32673 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32674 Date:   Wed Jul 9 15:47:27 2008 -0500
32675
32676     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
32677
32678     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
32679     clock module in cpu/<cf arch>/cpu_init.c
32680
32681     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32682
32683 commit f94945b517f10e01927101679c62361e03d4e837
32684 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32685 Date:   Wed Jul 9 15:25:01 2008 -0500
32686
32687     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
32688
32689     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32690
32691 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
32692 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32693 Date:   Wed Jul 9 15:21:44 2008 -0500
32694
32695     Fix compile error caused by missing timer function
32696
32697     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
32698
32699     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32700
32701 commit c37ea031175b807c54e6bad9b270e9bede6c0078
32702 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32703 Date:   Wed Jul 9 15:14:25 2008 -0500
32704
32705     Fix compile error caused by incorrect function return type
32706
32707     Rename int mii_init(void) to void mii_init(void)
32708
32709     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32710
32711 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
32712 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32713 Date:   Wed Jun 18 19:27:23 2008 -0500
32714
32715     ColdFire: Fix power up issue for MCF5235
32716
32717     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32718
32719 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
32720 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32721 Date:   Wed Jun 18 19:19:07 2008 -0500
32722
32723     ColdFire: Fix compiling error for MCF5275
32724
32725     The compiling error was caused by missing a closed parentheses
32726     in speed.c
32727
32728     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32729
32730 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
32731 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32732 Date:   Wed Jun 18 19:14:01 2008 -0500
32733
32734     ColdFire: Fix timer issue for MCF5272
32735
32736     The timer was assigned to wrong timer memory mapped which
32737     caused udelay() and timer() not working properly.
32738
32739     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32740
32741 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
32742 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32743 Date:   Wed Jun 18 19:12:13 2008 -0500
32744
32745     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
32746
32747     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
32748
32749 commit 8371dc2066136be21e10b7b9293e469297d77298
32750 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32751 Date:   Wed Jun 18 19:05:23 2008 -0500
32752
32753     ColdFire: Add -got=single param for new linux v4e toolchains
32754
32755     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
32756
32757 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
32758 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32759 Date:   Wed Jun 18 13:21:19 2008 -0500
32760
32761     ColdFire: Fix code flash configuration for M547x/M548x boards
32762
32763     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
32764
32765 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
32766 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32767 Date:   Tue Jun 24 12:12:16 2008 -0500
32768
32769     ColdFire: Fix warning messages by passing correct data type in board.c
32770
32771     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32772
32773 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
32774 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32775 Date:   Thu May 29 12:21:54 2008 -0500
32776
32777     ColdFire: Fix UART baudrate formula
32778
32779     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
32780     can generate the wrong divisor due to integer division truncation.
32781     Round the calculated divisor value by adding 1/2 the baudrate
32782     before dividing by the baudrate.
32783
32784     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32785     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
32786
32787 commit b578fb471444cbd7db1285701ba51343baaf73fb
32788 Author: Stefan Roese <sr@denx.de>
32789 Date:   Thu Jul 10 11:38:26 2008 +0200
32790
32791     ppc4xx: Fix include sequence in 4xx_pcie.c
32792
32793     This patch now moves common.h to the top of the inlcude list. This
32794     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
32795     the phys_size_t/phys_addr_t are defined to the correct size in this
32796     driver.
32797
32798     Signed-off-by: Stefan Roese <sr@denx.de>
32799
32800 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
32801 Author: Stefan Roese <sr@denx.de>
32802 Date:   Fri Jul 11 13:10:56 2008 +0200
32803
32804     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
32805
32806     Signed-off-by: Stefan Roese <sr@denx.de>
32807
32808 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
32809 Author: Stefan Roese <sr@denx.de>
32810 Date:   Fri Jul 11 11:40:13 2008 +0200
32811
32812     ppc4xx: Fix small korat merge problem
32813
32814     Signed-off-by: Stefan Roese <sr@denx.de>
32815
32816 commit 1d0554736a0a1dd59718acda660871ce56b69e18
32817 Author: Stefan Roese <sr@denx.de>
32818 Date:   Fri Jul 11 11:34:52 2008 +0200
32819
32820     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
32821
32822     Signed-off-by: Stefan Roese <sr@denx.de>
32823
32824 commit 3a82113ed5934d498f25080441a8261fc9454b15
32825 Author: Stefan Roese <sr@denx.de>
32826 Date:   Thu Jul 10 16:37:09 2008 +0200
32827
32828     ppc4xx: Add 460SX UIC defines
32829
32830     Only the really needed ones are added (cascading and EMAC/MAL).
32831
32832     Signed-off-by: Stefan Roese <sr@denx.de>
32833
32834 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
32835 Author: Stefan Roese <sr@denx.de>
32836 Date:   Mon Jun 30 14:11:07 2008 +0200
32837
32838     ppc4xx: Continue cleanup of ppc440.h
32839
32840     This patch continues the ppc440.h cleanup by removing some of the unused
32841     defines.
32842
32843     Signed-off-by: Stefan Roese <sr@denx.de>
32844
32845 commit d9056b7913ed6a228d2f33671d916efedee541dd
32846 Author: Stefan Roese <sr@denx.de>
32847 Date:   Mon Jun 30 14:05:05 2008 +0200
32848
32849     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
32850
32851     This patch cleans up the 440SPe PCIe register usage. Now only defines
32852     from the include/asm-ppc/4xx_pcie.h are used.
32853
32854     Signed-off-by: Stefan Roese <sr@denx.de>
32855
32856 commit 5de851403b01489b493fa83137ad990b8ce60d1c
32857 Author: Stefan Roese <sr@denx.de>
32858 Date:   Thu Jun 26 17:36:39 2008 +0200
32859
32860     ppc4xx: Rework 440GX UIC handling
32861
32862     This patch reworks the 440GX interrupt handling so that the common 4xx
32863     code can be used. The 440GX is an exception to all other 4xx variants
32864     by having the cascading interrupt vectors not on UIC0 but on a special
32865     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
32866     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
32867     handling is simpler without any 440GX special cases.
32868
32869     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
32870
32871     Signed-off-by: Stefan Roese <sr@denx.de>
32872
32873 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
32874 Author: Stefan Roese <sr@denx.de>
32875 Date:   Thu Jun 26 13:40:57 2008 +0200
32876
32877     ppc4xx: Consolidate PPC4xx UIC defines
32878
32879     This 2nd patch now removes all UIC mask bit definition. They should be
32880     generated from the vectors by using the UIC_MASK() macro from now on.
32881     This way only the vectors need to get defined for new PPC's.
32882
32883     Also only the really used interrupt vectors are now defined. This makes
32884     definitions for new PPC versions easier and less error prone.
32885
32886     Another part of this patch is that the 4xx emac driver got a little
32887     cleanup, since now the usage of the interrupts is clearer.
32888
32889     Signed-off-by: Stefan Roese <sr@denx.de>
32890
32891 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
32892 Author: Stefan Roese <sr@denx.de>
32893 Date:   Wed Jun 25 10:59:22 2008 +0200
32894
32895     ppc4xx: Consolidate PPC4xx UIC defines
32896
32897     This patch is the first step to consolidate the UIC related defines in the
32898     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
32899     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
32900     steps.
32901
32902     Signed-off-by: Stefan Roese <sr@denx.de>
32903
32904 commit 7ee2619c20ccecd57966d74d844e6329e141261c
32905 Author: Stefan Roese <sr@denx.de>
32906 Date:   Tue Jun 24 17:18:50 2008 +0200
32907
32908     ppc4xx: Consolidate PPC4xx EBC defines
32909
32910     This patch removes all EBC related defines from the PPC4xx headers
32911     ppc405.h and ppc440.h and introduces a new header
32912
32913     include/asm-ppc/ppc4xx-ebc.h
32914
32915     with all those defines.
32916
32917     Signed-off-by: Stefan Roese <sr@denx.de>
32918
32919 commit e321801bed5a6d896d298c00fd20046f039d5d66
32920 Author: Stefan Roese <sr@denx.de>
32921 Date:   Thu Jul 10 13:52:44 2008 +0200
32922
32923     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
32924
32925     This patch removes some ft_board_setup() functions from some 4xx boards.
32926     This can be done since we now have a default weak implementation for this
32927     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
32928     implementation like canyonlands need their own version.
32929
32930     Signed-off-by: Stefan Roese <sr@denx.de>
32931
32932 commit 08250eb2edbd96514d049602d9e134110ac3185f
32933 Author: Stefan Roese <sr@denx.de>
32934 Date:   Thu Jul 10 15:32:32 2008 +0200
32935
32936     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
32937
32938     Signed-off-by: Stefan Roese <sr@denx.de>
32939
32940 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
32941 Author: Grant Erickson <gerickson@nuovations.com>
32942 Date:   Tue Jul 8 08:35:00 2008 -0700
32943
32944     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
32945
32946     This patch adds support for placing the RGMII bridge on the
32947     PPC405EX(r) into MII/GMII mode and allows a board-specific
32948     configuration to specify the bridge mode at compile-time.
32949
32950     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32951     Signed-off-by: Stefan Roese <sr@denx.de>
32952
32953 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
32954 Author: Grant Erickson <gerickson@nuovations.com>
32955 Date:   Wed Jul 9 16:46:35 2008 -0700
32956
32957     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
32958
32959     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
32960     controller registers (MODT and INITPLR) used by the
32961     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
32962     peer values used for the INITPLR MR and EMR registers,
32963     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
32964
32965     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
32966     Kilauea are replaced by equivalent mnemonics to make it easier to
32967     compare and contrast other 405EX(r)-based boards (e.g. during board
32968     bring-up).
32969
32970     Finally, unified the SDRAM controller register dump routine such that
32971     it can be used across all processor variants that utilize the IBM DDR2
32972     SDRAM controller core. It produces output of the form:
32973
32974         PPC4xx IBM DDR2 Register Dump:
32975                 ...
32976                 SDRAM_MB0CF[40] = 0x00006701
32977                 ...
32978
32979     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
32980     since it is not uncommon that the DCR values in header files get mixed
32981     up and it helps to validate, at a glance, they match what is printed
32982     in the user manual.
32983
32984     Tested on:
32985       AMCC Kilauea/Haleakala:
32986       - NFS Linux Boot: PASSED
32987       - NAND Linux Boot: PASSED
32988
32989     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
32990     Signed-off-by: Stefan Roese <sr@denx.de>
32991
32992 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
32993 Author: Grant Erickson <gerickson@nuovations.com>
32994 Date:   Wed Jul 9 16:31:59 2008 -0700
32995
32996     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
32997
32998     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
32999     revision ID DCR based on 405EX, and add field mnemonics for bus error
33000     status and ECC error status registers.
33001
33002     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
33003     Signed-off-by: Stefan Roese <sr@denx.de>
33004
33005 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
33006 Author: Grant Erickson <gerickson@nuovations.com>
33007 Date:   Wed Jul 9 16:31:36 2008 -0700
33008
33009     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
33010
33011     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
33012
33013     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
33014     Signed-off-by: Stefan Roese <sr@denx.de>
33015
33016 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
33017 Author: Grant Erickson <gerickson@nuovations.com>
33018 Date:   Wed Jul 9 11:55:46 2008 -0700
33019
33020     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
33021
33022     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
33023     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
33024     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
33025
33026     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
33027     which causes SDRAM initialization to periodically fail since it can
33028     prematurely indicate SDRAM ready status.
33029
33030     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
33031     Signed-off-by: Stefan Roese <sr@denx.de>
33032
33033 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
33034 Author: Feng Kan <fkan@amcc.com>
33035 Date:   Tue Jul 8 22:48:42 2008 -0700
33036
33037     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
33038
33039     Add AMCC Redwood reference board that uses the latest
33040     PPC 464 CPU processor combined with a rich mix of peripheral
33041     controllers. The board will support PCIe, mutiple Gig ethernet
33042     ports, advanced hardware RAID assistance and IEEE 1588.
33043
33044     Signed-off-by: Feng Kan <fkan@amcc.com>
33045     Signed-off-by: Stefan Roese <sr@denx.de>
33046
33047 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
33048 Author: Feng Kan <fkan@amcc.com>
33049 Date:   Tue Jul 8 22:48:07 2008 -0700
33050
33051     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
33052
33053     Signed-off-by: Feng Kan <fkan@amcc.com>
33054     Signed-off-by: Stefan Roese <sr@denx.de>
33055
33056 commit 7d30793685efcada183891c78fc892e6c9ba50c7
33057 Author: Feng Kan <fkan@amcc.com>
33058 Date:   Tue Jul 8 22:47:31 2008 -0700
33059
33060     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
33061
33062     Signed-off-by: Feng Kan <fkan@amcc.com>
33063     Signed-off-by: Stefan Roese <sr@denx.de>
33064
33065 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
33066 Author: Wolfgang Denk <wd@denx.de>
33067 Date:   Fri Jul 11 01:16:00 2008 +0200
33068
33069     Fix some more print() format errors.
33070
33071     Signed-off-by: Wolfgang Denk <wd@denx.de>
33072
33073 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
33074 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33075 Date:   Thu Jul 10 20:57:54 2008 +0200
33076
33077     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
33078
33079     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33080
33081 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
33082 Author: Sergey Lapin <slapin@ossfans.org>
33083 Date:   Thu Jun 5 11:06:29 2008 +0400
33084
33085     DataFlash AT45DB021 support
33086
33087     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
33088     bootstrap, u-boot and its environment, using NAND or other external
33089     storage for kernel and rootfs. This patch adds support for
33090     small 1024x263 chip.
33091
33092     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
33093
33094 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
33095 Author: Kim Phillips <kim.phillips@freescale.com>
33096 Date:   Thu Jul 10 14:00:15 2008 -0500
33097
33098     silence misc printf formatting compiler warnings
33099
33100     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33101
33102 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
33103 Author: Markus Klotzbücher <mk@denx.de>
33104 Date:   Thu Jul 10 14:47:09 2008 +0200
33105
33106     USB: shutdown USB before booting
33107
33108     This patch fixes a potentially serious issue related to USB which was
33109     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
33110     ARM920T. Martin wrote:
33111
33112       Turn off USB to prevent the host controller from writing to the
33113       SDRAM while Linux is booting. This could happen, because the HCCA
33114       (Host Controller Communication Area) lies within the SDRAM and the
33115       host controller writes continously to this area (as busmaster!), for
33116       example to increase the HccaFrameNumber variable, which happens
33117       every 1 ms.
33118
33119     This is a slightly modified version of the patch in order to shutdown
33120     USB when booting on all architectures.
33121
33122     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33123
33124 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
33125 Author: Martha Marx <mmarx@silicontkx.com>
33126 Date:   Thu May 29 14:23:25 2008 -0400
33127
33128     Configuration changes for ADS5121 Rev 3
33129
33130     ADS5121 Rev 3 board is now the default config
33131
33132     config targets are now
33133
33134     ads5121_config
33135         Rev 3 board with
33136         PCI
33137         M41T62 on board RTC
33138         512MB DRAM
33139
33140     ads5121_rev2_config
33141         Rev 2 board with
33142         No PCI
33143         256MB DRAM
33144
33145     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
33146     Acked-by: Grant Likely <grant.likely@secretlab.ca>
33147     Acked-by: John Rigby <jrigby@freescale.com>
33148
33149 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
33150 Author: Martha Marx <mmarx@silicontkx.com>
33151 Date:   Thu May 29 15:37:21 2008 -0400
33152
33153     Consolidate ADS5121 IO Pin configuration
33154
33155     Consolidate ADS5121 IO Pin configuration to one file
33156     board/ads5121/iopin.c.
33157
33158     Remove pin config from cpu/mpc512x/fec.c
33159
33160     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
33161     Acked-by: Grant Likely <grant.likely@secretlab.ca>
33162     Acked-by: John Rigby <jrigby@freescale.com>
33163
33164 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
33165 Author: Christian Eggers <christian@p2400.wgnetz.xx>
33166 Date:   Fri Jun 27 19:46:51 2008 +0200
33167
33168     Fix "usb part" command
33169
33170     Only print partition for selected device if user supplied the <dev>
33171     arg with the "usb part [dev]" command.
33172
33173     Signed-off-by: Christian Eggers <ceggers@gmx.de>
33174     Acked-by: Markus Klotzbuecher <mk@denx.de>
33175
33176 commit cc83b27217f7380041fea386ddb6d6d9b261617d
33177 Author: Harald Welte <laforge@gnumonks.org>
33178 Date:   Mon Jul 7 00:58:05 2008 +0800
33179
33180     fix USB devices with multiple configurations
33181
33182     This patch fixes bugs in usbdcore*.c related to the use of devices
33183     with multiple configurations.
33184
33185     The original code made mistakes about the meaning of configuration value and
33186     configuration index, and the resulting off-by-one errors resulted in:
33187
33188     * SET_CONFIGURATION always selected the first configuration, no matter what
33189       wValue is being passed.
33190     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
33191       configuration (index 0).
33192
33193     Signed-off-by: Harald Welte <laforge@openmoko.org>
33194     Acked-by: Markus Klotzbuecher <mk@denx.de>
33195
33196 commit 06c53beae1a726e707971c555613f09b270a2461
33197 Author: Wolfgang Denk <wd@denx.de>
33198 Date:   Thu Jul 10 13:16:09 2008 +0200
33199
33200     Fix some more print() format errors.
33201
33202     Signed-off-by: Wolfgang Denk <wd@denx.de>
33203
33204 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
33205 Author: Christian Eggers <christian@p2400.wgnetz.xx>
33206 Date:   Fri Jun 27 19:46:51 2008 +0200
33207
33208     Fix "usb part" command
33209
33210     Only print partition for selected device if user supplied the <dev>
33211     arg with the "usb part [dev]" command.
33212
33213     Signed-off-by: Christian Eggers <ceggers@gmx.de>
33214     Acked-by: Markus Klotzbuecher <mk@denx.de>
33215
33216 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
33217 Author: Harald Welte <laforge@gnumonks.org>
33218 Date:   Mon Jul 7 00:58:05 2008 +0800
33219
33220     fix USB devices with multiple configurations
33221
33222     This patch fixes bugs in usbdcore*.c related to the use of devices
33223     with multiple configurations.
33224
33225     The original code made mistakes about the meaning of configuration value and
33226     configuration index, and the resulting off-by-one errors resulted in:
33227
33228     * SET_CONFIGURATION always selected the first configuration, no matter what
33229       wValue is being passed.
33230     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
33231       configuration (index 0).
33232
33233     Signed-off-by: Harald Welte <laforge@openmoko.org>
33234     Acked-by: Markus Klotzbuecher <mk@denx.de>
33235
33236 commit e870690bdca154943ecadd5212d2d59c1b9d391b
33237 Author: Stefan Roese <sr@denx.de>
33238 Date:   Thu Jul 10 10:10:54 2008 +0200
33239
33240     MTD/NAND: Fix printf format warning in nand code
33241
33242     This patch fixes NAND related printf format warning. Those warnings are
33243     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
33244     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
33245     really helpful.
33246
33247     Signed-off-by: Stefan Roese <sr@denx.de>
33248
33249 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
33250 Author: Stefan Roese <sr@denx.de>
33251 Date:   Thu Jul 10 10:00:45 2008 +0200
33252
33253     rtc: Fix printf format warning in m41t60.c
33254
33255     Signed-off-by: Stefan Roese <sr@denx.de>
33256
33257 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
33258 Author: Stefan Roese <sr@denx.de>
33259 Date:   Tue Jul 8 12:01:47 2008 +0200
33260
33261     pci: Move PCI device configuration check into a separate weak function
33262
33263     This patch moves the check, if a device should be skipped in PCI PNP
33264     configuration into the function pci_skip_dev(). This function is defined
33265     as weak so that it can be overwritten by a platform specific one if
33266     needed. The check if the device should get printed in the PCI summary upon
33267     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
33268     pci_print_dev() which is also defined as weak too.
33269
33270     Signed-off-by: Stefan Roese <sr@denx.de>
33271
33272 commit b002144e1dc21374b1ef5281fe6b5d014af96650
33273 Author: Stefan Roese <sr@denx.de>
33274 Date:   Thu Jul 10 09:58:06 2008 +0200
33275
33276     ppc4xx: Fix printf format warnings now visible with the updated format check
33277
33278     This patch fixes ppc4xx related printf format warning. Those warnings are
33279     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
33280     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
33281     really helpful.
33282
33283     Signed-off-by: Stefan Roese <sr@denx.de>
33284
33285 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
33286 Author: Stefan Roese <sr@denx.de>
33287 Date:   Wed Jul 9 17:33:57 2008 +0200
33288
33289     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
33290
33291     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
33292     To support such configurations, we "only" map the first 2GB via the TLB's. We
33293     need some free virtual address space for the remaining peripherals like, SoC
33294     devices, FLASH etc.
33295
33296     Note that ECC is currently not supported on configurations with more than 2GB
33297     SDRAM. This is because we only map the first 2GB on such systems, and therefore
33298     the ECC parity byte of the remaining area can't be written.
33299
33300     Signed-off-by: Stefan Roese <sr@denx.de>
33301
33302 commit cf1c2ed91df26903b956948f37f82de9e1158a89
33303 Author: Larry Johnson <lrj@acm.org>
33304 Date:   Sat Jun 14 17:02:49 2008 -0400
33305
33306     ppc4xx: Remove implementation of testdram() from Korat board support
33307
33308     Signed-off-by: Larry Johnson <lrj@acm.org>
33309     Signed-off-by: Stefan Roese <sr@denx.de>
33310
33311 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
33312 Author: Larry Johnson <lrj@acm.org>
33313 Date:   Sat Jun 14 16:53:02 2008 -0400
33314
33315     ppc4xx: Update and add FDT to Korat board support
33316
33317     Signed-off-by: Larry Johnson <lrj@acm.org>
33318     Signed-off-by: Stefan Roese <sr@denx.de>
33319
33320 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
33321 Author: Wolfgang Denk <wd@denx.de>
33322 Date:   Thu Jul 10 01:13:30 2008 +0200
33323
33324     Minor coding style cleanup; update CHANGELOG
33325
33326     Signed-off-by: Wolfgang Denk <wd@denx.de>
33327
33328 commit 8915f1189c1d29d8be7f4de325702d90a8988219
33329 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33330 Date:   Wed Jul 9 17:50:45 2008 -0400
33331
33332     e1000: add support for 82545GM 64bit PCI-X copper variant
33333
33334     This PCI-X e1000 variant works by just adding in the correct
33335     PCI IDs in the appropriate places.
33336
33337     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33338
33339 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
33340 Author: Daniel Hellstrom <daniel@gaisler.com>
33341 Date:   Wed Jul 9 12:34:11 2008 +0000
33342
33343     SPARC: Build error fix
33344
33345     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
33346
33347     This patch makes SPARC targets build again. It is caused by
33348     phys_addr_t and phys_size_t being defined in the wrong header
33349     file. include/lmb.h need those typedefs to build.
33350
33351     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33352
33353 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
33354 Author: Marcel Ziswiler <marcel@ziswiler.com>
33355 Date:   Wed Jul 9 08:17:15 2008 +0200
33356
33357     Many spelling fixes in README.
33358
33359     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
33360
33361 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
33362 Author: Marcel Ziswiler <marcel@ziswiler.com>
33363 Date:   Wed Jul 9 08:17:06 2008 +0200
33364
33365     Minor spelling fix in comment.
33366
33367     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
33368
33369 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
33370 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33371 Date:   Tue Jul 8 14:54:58 2008 -0400
33372
33373     Round the serial port clock divisor value returned by calc_divisor()
33374
33375     Round the serial port clock divisor value returned by
33376     calc_divisor().
33377
33378     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33379     Signed-off-by: John Roberts <john.roberts@pwav.com>
33380
33381 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
33382 Author: Scott Wood <scottwood@freescale.com>
33383 Date:   Wed Jul 9 17:47:52 2008 -0500
33384
33385     NAND: ifdef-protect most of nand.h when using legacy NAND.
33386
33387     Some macros such as NAND_CTL_SETALE conflict between current and legacy
33388     NAND, being defined by the subsystem in the former case and the board
33389     config file in the latter.
33390
33391     Signed-off-by: Scott Wood <scottwood@freescale.com>
33392
33393 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
33394 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33395 Date:   Tue Jul 8 11:02:05 2008 -0400
33396
33397     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
33398
33399     ARM: Fix for incorrect version of patch applied when
33400     adding support for the Lyrtech SFF-SDR board.
33401
33402     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33403     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
33404
33405 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
33406 Author: Kyungmin Park <kmpark@infradead.org>
33407 Date:   Tue Jul 8 09:08:40 2008 +0900
33408
33409     Remove useless print message at apollon
33410
33411     Remove useless print message at apollon
33412
33413     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33414
33415 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
33416 Author: Andy Fleming <afleming@freescale.com>
33417 Date:   Mon Jul 7 14:24:39 2008 -0500
33418
33419     Fix LMB type issues
33420
33421     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
33422     of casting problems in the bootm code that called the LMB functions.
33423
33424     Signed-off-by: Andy Fleming <afleming@freescale.com>
33425
33426 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
33427 Author: Kumar Gala <galak@kernel.crashing.org>
33428 Date:   Mon Jul 7 09:39:06 2008 -0500
33429
33430     Fix compiler warnings
33431
33432     gcc-4.3.x generates the following:
33433
33434     bootm.c: In function 'do_bootm_linux':
33435     bootm.c:208: warning: cast from pointer to integer of different size
33436     bootm.c:215: warning: cast from pointer to integer of different size
33437
33438     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33439
33440 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
33441 Author: Harald Welte <laforge@gnumonks.org>
33442 Date:   Mon Jul 7 15:40:39 2008 +0800
33443
33444     Remove code duplication for setting the default environment
33445
33446     common/env_common.c (default_env): new function that resets the environment to
33447                     the default value
33448     common/env_common.c (env_relocate): use default_env instead of own copy
33449     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
33450     include/environment.h: added default_env prototype
33451
33452     Signed-off-by: Werner Almesberger <werner@openmoko.org>
33453     Signed-off-by: Harald Welte <laforge@openmoko.org>
33454
33455 commit 99c2b434d37863df5dda5207a53760c6506fc2be
33456 Author: Marcel Ziswiler <marcel@ziswiler.com>
33457 Date:   Sun Jun 22 16:13:46 2008 +0200
33458
33459     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
33460
33461     The writeenv() and readenv() calls introduced by the recently added bad block
33462     management for environment variables were missing casts therefore producing
33463     compile time warnings.
33464     While at it fixing some typo in a comment and indentation.
33465
33466     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
33467     Signed-off-by: Scott Wood <scottwood@freescale.com>
33468
33469 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
33470 Author: Scott Wood <scottwood@freescale.com>
33471 Date:   Fri Jun 20 12:38:57 2008 -0500
33472
33473     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
33474
33475     This is particularly problematic now that non-NAND-specific code is
33476     including <nand.h>, and thus all debugging code is being compiled
33477     regardless of whether it was requested, as reported by Scott McNutt
33478     <smcnutt@psyent.com>.
33479
33480     Signed-off-by: Scott Wood <scottwood@freescale.com>
33481
33482 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
33483 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33484 Date:   Thu Jun 12 19:27:58 2008 +0200
33485
33486     mmc: Move atmel_mci driver into drivers/mmc
33487
33488     This makes it easier to use the driver on other platforms.
33489
33490     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33491     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33492
33493 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
33494 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33495 Date:   Thu Jun 12 19:27:57 2008 +0200
33496
33497     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
33498
33499     After we move the atmel_mci driver into drivers/mmc, we can't select
33500     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
33501     this driver so that there's no ambiguity.
33502
33503     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33504     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33505
33506 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
33507 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33508 Date:   Thu Jun 12 19:27:56 2008 +0200
33509
33510     Create drivers/mmc subdirectory
33511
33512     In order to consolidate more of the various MMC drivers around the
33513     tree, we must first have a common place to put them.
33514
33515     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33516     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33517
33518 commit b502611b51f02718c2d1117d4981dabceb5af6de
33519 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
33520 Date:   Sun Jul 6 12:30:09 2008 +0200
33521
33522     Change env_get_char from a global function ptr to a function
33523
33524     This avoids an early global data reference.
33525
33526     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33527
33528 commit 27269417ade432189b234d9fbac98b54e37b978c
33529 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
33530 Date:   Sun Jul 6 13:57:58 2008 +0400
33531
33532     Some copy-n-paste fixes in printf usage
33533
33534     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
33535
33536 commit 0e6989b9faf1588e8723535539e88a0df3c71356
33537 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
33538 Date:   Sun Jul 6 13:57:00 2008 +0400
33539
33540     FDT memory and pci node fixes for MPC8260ADS
33541
33542     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
33543
33544 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
33545 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
33546 Date:   Mon Jul 7 06:41:14 2008 -0700
33547
33548     Fix printf errors.
33549
33550     The compiler will help find mismatches between printf formats and
33551     arguments if you let it.  This patch adds the necessary attributes to
33552     declarations in include/common.h, then begins to correct the resulting
33553     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
33554     "%d" and incorrect arguments.  Others were just annoying, like
33555     int-long mismatches on a system where both are 32 bits.  It's worth
33556     fixing the annoying errors to catch the real ones.
33557
33558     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
33559
33560 commit 417faf285b2527acb2de24c5cd3e2621d385408c
33561 Author: Becky Bruce <becky.bruce@freescale.com>
33562 Date:   Wed Jul 9 11:09:41 2008 -0500
33563
33564     Allow print_size to print in GB
33565
33566     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
33567
33568 commit e7c374529c87525c9aa463e0557c287887ae4e9e
33569 Author: Jason McMullan <mcmullan@netapp.com>
33570 Date:   Sun Jun 8 23:56:00 2008 -0400
33571
33572     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
33573
33574     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
33575     they are set in the U-Boot environment.
33576
33577     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
33578     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33579
33580 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
33581 Author: Stefan Roese <sr@denx.de>
33582 Date:   Tue Jul 8 12:57:14 2008 +0200
33583
33584     jedec_flash: Fix AM29DL800BB device ID
33585
33586     As pointed out by Jerry Hicks, this patch corrects the device ID of
33587     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
33588     datasheet (rev C4 from Dezember 2006).
33589
33590     Signed-off-by: Stefan Roese <sr@denx.de>
33591
33592 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
33593 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33594 Date:   Mon Jul 7 11:22:37 2008 +0900
33595
33596     sh: Fix compile error sh7763rdp board
33597
33598     Disable SH ether driver.
33599
33600     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33601
33602 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
33603 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33604 Date:   Tue Jul 8 12:03:24 2008 +0900
33605
33606     sh: Fix SH-boards compile error
33607
33608     By Cleanup out-or-tree building for some boards (.depend)
33609     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
33610     because filse ware changed, some SH-boards have compile error.
33611     I revised this problem.
33612
33613     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33614
33615 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
33616 Author: Jason Jin <Jason.jin@freescale.com>
33617 Date:   Tue May 13 11:50:36 2008 +0800
33618
33619     Feed the watchdog in u-boot for 8610 board.
33620
33621     The watchdog on 8610 board is enabled by setting sw[6]
33622     to on. Once enabled, the watchdog can not be disabled
33623     by software. So feed the dog in u-boot is necessary for
33624     normal operation.
33625
33626     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33627
33628 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
33629 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33630 Date:   Wed Jun 18 12:10:33 2008 -0400
33631
33632     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
33633
33634     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
33635
33636     Remove duplicate code in a if/else block in
33637     cpu/arm926ejs/davinci/lxt972.c.
33638     Fixed style issues.
33639
33640     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33641     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33642
33643 commit fec61431a003f5778bafa2624073a571af8bec9f
33644 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33645 Date:   Wed Jun 18 12:10:31 2008 -0400
33646
33647     Remove duplicate definitions in include/lxt971a.h.
33648
33649     Remove duplicate definitions in include/lxt971a.h.
33650
33651     Remove duplicate registers and bits definitions in
33652     include/lxt971a.h for standard MII registers, and
33653     use values in include/miiphy.h instead.
33654
33655     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33656     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33657
33658 commit 9751ee0990f467941da0b095a4e995f863672d7a
33659 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33660 Date:   Wed Jun 11 21:05:00 2008 +0900
33661
33662     net: sh: Renesas SH7763 Ethernet device support
33663
33664     Renesas SH7763 has 2 channel Ethernet device.
33665     This is 10/100/1000 Base support.
33666     But this patch check 10/100 Base only.
33667
33668     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33669     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33670
33671 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
33672 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33673 Date:   Tue Jun 17 16:28:05 2008 +0900
33674
33675     sh: Update Renesas R2DPlus board
33676
33677     New NOR Flash board support and remove old type flash board config.
33678     And Remove network setting from config file.
33679
33680     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33681     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33682
33683 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
33684 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33685 Date:   Tue Jun 17 16:28:01 2008 +0900
33686
33687     sh: Update Renesas R7780MP board
33688
33689     New NOR Flash board support and remove network setting from config file.
33690
33691     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33692     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33693
33694 commit c001cd604e9f133743effbddb1c215b48e761c5a
33695 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33696 Date:   Tue Jun 17 16:27:56 2008 +0900
33697
33698     sh: Update Renesas Migo-R board
33699
33700     Remove network setting from config file.
33701
33702     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33703     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33704
33705 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
33706 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33707 Date:   Tue Jun 17 16:27:52 2008 +0900
33708
33709     sh: Update Hitachi MS7722SE board
33710
33711     Remove network setting from config file.
33712
33713     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33714     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33715
33716 commit 26209e48e8791670c93108029a5c31a30016c6df
33717 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33718 Date:   Tue Jun 17 16:27:48 2008 +0900
33719
33720     sh: Cleanup source code of SH7763RDP
33721
33722     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33723     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33724
33725 commit 5cd5b2c96ef0025762931349d350287aec03ab47
33726 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33727 Date:   Tue Jun 17 16:27:44 2008 +0900
33728
33729     sh: Cleanup source code of R2DPlus
33730
33731     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33732     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33733
33734 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
33735 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33736 Date:   Tue Jun 17 16:27:41 2008 +0900
33737
33738     sh: Cleanup source code of R7780MP
33739
33740     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33741     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33742
33743 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
33744 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33745 Date:   Tue Jun 17 16:27:38 2008 +0900
33746
33747     sh: Cleanup source code of MS7722SE
33748
33749     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33750     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33751
33752 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
33753 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33754 Date:   Tue Jun 17 16:27:34 2008 +0900
33755
33756     sh: Cleanup source code of MS7720SE
33757
33758     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33759     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33760
33761 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
33762 Author: Wolfgang Denk <wd@denx.de>
33763 Date:   Mon Jul 7 00:45:03 2008 +0200
33764
33765     SH: fix out of tree building
33766
33767     Signed-off-by: Wolfgang Denk <wd@denx.de>
33768
33769 commit 9047bfa1e737d787be460387dd6f45737eeceb10
33770 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33771 Date:   Thu Jul 3 23:16:06 2008 +0900
33772
33773     net: smc911x: Fix typo
33774
33775     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33776
33777 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
33778 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33779 Date:   Wed Jul 2 18:54:08 2008 +0200
33780
33781     update mvBL-M7 board config
33782
33783     update mvBL-M7 config file to use UBOOT_VERSION and define
33784     CONFIG_HIGH_BATS.
33785
33786     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33787
33788 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
33789 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33790 Date:   Mon Jun 30 17:45:01 2008 +0900
33791
33792     net: fix compile problem in smc911x driver.
33793
33794     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33795     Acked-by: Ben Warren <biggerbadderben@gmail.com>
33796
33797 commit 9fea65a6c469b1b474b27446feb58738baba2d31
33798 Author: Michal Simek <monstr@monstr.eu>
33799 Date:   Tue Jun 24 09:54:09 2008 +0200
33800
33801     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
33802
33803     This change helps with better handling with others
33804     Xilinx based platform.
33805
33806     Signed-off-by: Michal Simek <monstr@monstr.eu>
33807     Acked-by: Stefan Roese <sr@denx.de>
33808
33809 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
33810 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33811 Date:   Tue Jun 17 13:07:11 2008 +0900
33812
33813     net: ne2000: Move dev_addr variable from grobal to local.
33814
33815     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33816     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33817
33818 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
33819 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33820 Date:   Tue Jun 17 13:07:15 2008 +0900
33821
33822     net: ne2000: Fix compile error of NE2000
33823
33824     If enable DEBUG, can not compile ne2000 driver.
33825
33826     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33827     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33828
33829 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
33830 Author: Ben Warren <biggerbadderben@gmail.com>
33831 Date:   Mon Jun 23 22:57:27 2008 -0700
33832
33833     Add mechanisms for CPU and board-specific Ethernet initialization
33834
33835     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
33836     initialization to CPU or board-specific code.  Initial implementation is
33837     only on the Freescale TSEC controller, but others will be added soon.
33838
33839     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33840
33841 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
33842 Author: Wolfgang Denk <wd@denx.de>
33843 Date:   Sun Jul 6 01:21:46 2008 +0200
33844
33845     include/sha256.h: fix file permissions.
33846
33847     Signed-off-by: Wolfgang Denk <wd@denx.de>
33848
33849 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
33850 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
33851 Date:   Tue May 27 11:15:29 2008 +0200
33852
33853     [AT91SAM9] Fix NAND FLASH timings
33854
33855     Fix NAND FLASH timings for at91sam9x evaluation kits.
33856
33857     New timings are based on application note
33858     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
33859     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
33860
33861     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
33862     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33863     Acked-by: Stelian Pop <stelian@popies.net>
33864
33865 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
33866 Author: Stelian Pop <stelian@popies.net>
33867 Date:   Thu May 22 00:15:40 2008 +0200
33868
33869     Fix boot from NOR due to incorrect reset delay.
33870
33871     AT91 RSTC registers are battery-backuped, so their values
33872     are not reset across power cycles. One of those registers,
33873     the AT91_RSTC_MR register, is being modified by U-Boot, in
33874     the ethernet initialisation routine, to generate a 500ms
33875     user reset.
33876
33877     Unfortunately, this value is not being restored afterwards,
33878     causing subsequent resets to also last for 500ms.
33879
33880     This long reset sequence causes problems (at least) in the
33881     boot sequence from NOR: by the time the CPU tries to load
33882     a program from the NOR flash, the latter is still in reset
33883     and not yet available.
33884
33885     Additionaly, this patch fixes a bug in the original code which
33886     caused the reset delay to last for 2s instead of 500ms.
33887
33888     Signed-off-by: Stelian Pop <stelian@popies.net>
33889     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33890
33891 commit f492dd636fbbae529e17533995bc6e5813c007f6
33892 Author: Wolfgang Denk <wd@denx.de>
33893 Date:   Fri Jul 4 20:11:49 2008 +0200
33894
33895     Update CHANGELOG
33896
33897     Signed-off-by: Wolfgang Denk <wd@denx.de>
33898
33899 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
33900 Author: Wolfgang Denk <wd@denx.de>
33901 Date:   Fri Jul 4 20:07:35 2008 +0200
33902
33903     CCM/SCM boards: fix out of tree building
33904
33905     Signed-off-by: Wolfgang Denk <wd@denx.de>
33906
33907 commit ab4c3a490df9a964711556d2a05b0c787db45fde
33908 Author: Wolfgang Denk <wd@denx.de>
33909 Date:   Thu Jul 3 23:22:27 2008 +0200
33910
33911     SCM board: fix build errors.
33912
33913     Signed-off-by: Wolfgang Denk <wd@denx.de>
33914
33915 commit a566466f17ba0e2d2b6c250e77da678fb932470d
33916 Author: Wolfgang Denk <wd@denx.de>
33917 Date:   Thu Jul 3 23:06:36 2008 +0200
33918
33919     IAD210 board: fix ``"ALIGN" redefined'' warning.
33920
33921     Signed-off-by: Wolfgang Denk <wd@denx.de>
33922
33923 commit ad756314797c16fa5dca23e115aab881011f164f
33924 Author: Wolfgang Denk <wd@denx.de>
33925 Date:   Thu Jul 3 23:00:24 2008 +0200
33926
33927     CCM board: fix build errors.
33928
33929     Signed-off-by: Wolfgang Denk <wd@denx.de>
33930
33931 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
33932 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33933 Date:   Wed Jul 2 18:54:08 2008 +0200
33934
33935     update mvBL-M7 board config
33936
33937     update mvBL-M7 config file to use UBOOT_VERSION.
33938
33939     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33940     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33941
33942 commit ced209c50e80c25f13c083099b05044048d21f4f
33943 Author: Wolfgang Denk <wd@denx.de>
33944 Date:   Thu Jul 3 22:39:21 2008 +0200
33945
33946     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
33947
33948     Signed-off-by: Wolfgang Denk <wd@denx.de>
33949
33950 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
33951 Author: Wolfgang Denk <wd@denx.de>
33952 Date:   Thu Jul 3 22:34:08 2008 +0200
33953
33954     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
33955
33956     Signed-off-by: Wolfgang Denk <wd@denx.de>
33957
33958 commit 730f298485984b011b6ee8f4acb511cb45a843dd
33959 Author: Wolfgang Denk <wd@denx.de>
33960 Date:   Thu Jul 3 22:04:17 2008 +0200
33961
33962     lmb: fix "implicit declaration of function 'lmb_free'" warning
33963
33964     Signed-off-by: Wolfgang Denk <wd@denx.de>
33965
33966 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
33967 Author: Wolfgang Denk <wd@denx.de>
33968 Date:   Wed Jul 2 23:53:23 2008 +0200
33969
33970     Cleanup: remove redundant deleting on *~ files
33971
33972     Signed-off-by: Wolfgang Denk <wd@denx.de>
33973
33974 commit c8a3b109f07f02342d097b30908965f7261d9f15
33975 Author: Wolfgang Denk <wd@denx.de>
33976 Date:   Wed Jul 2 23:49:18 2008 +0200
33977
33978     Cleanup out-or-tree building for some boards (.depend)
33979
33980     Signed-off-by: Wolfgang Denk <wd@denx.de>
33981
33982 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
33983 Author: Wolfgang Denk <wd@denx.de>
33984 Date:   Wed Jul 2 23:38:50 2008 +0200
33985
33986     Cleanup: fix out-of-tree building for some boards
33987
33988     Signed-off-by: Wolfgang Denk <wd@denx.de>
33989
33990 commit 461fa68d20861811487944d22291db5a13410e20
33991 Author: Wolfgang Denk <wd@denx.de>
33992 Date:   Wed Jul 2 23:00:14 2008 +0200
33993
33994     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
33995
33996     Signed-off-by: Wolfgang Denk <wd@denx.de>
33997
33998 commit 5981ebd32017e062b08aa6747cf591276f2db779
33999 Author: Detlev Zundel <dzu@denx.de>
34000 Date:   Fri Jun 20 22:26:24 2008 +0200
34001
34002     fdt: Fix typo in variable name.
34003
34004     Signed-off-by: Detlev Zundel <dzu@denx.de>
34005
34006 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
34007 Author: Gary Jennejohn <garyj@denx.de>
34008 Date:   Thu Jun 19 11:11:19 2008 +0200
34009
34010     Add logos for RRvision board
34011
34012     Signed-off-by: Gary Jennejohn <garyj@denx.de>
34013
34014 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
34015 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
34016 Date:   Wed Jun 18 11:03:57 2008 +0200
34017
34018     mpc8260: add fdt_fixup_ethernet support
34019
34020     Add support for updating mac-address and local-mac-address in fdt for
34021     all MPC8260 targets.
34022
34023     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
34024
34025 commit f6a69559d64498a04e1e0b087a9b920e5775f866
34026 Author: Steven A. Falco <sfalco@harris.com>
34027 Date:   Thu Jun 12 13:24:42 2008 -0400
34028
34029     cmd_nvedit.c: clean up syntax highlighting
34030
34031     My text-editor (vim) has a bit of trouble syntax-highlighting the
34032     cmd_nvedit.c file, because it apparently does not parse C
34033     ifdef/else/endif. The following patch does not change the behavior of
34034     the code at all, but does allow the editor to properly
34035     syntax-highlight the file.
34036
34037     Signed-off-by: Steve Falco <sfalco@harris.com>
34038
34039 commit 75678c807a6272ecc5541eb32898c93887f08400
34040 Author: Steven A. Falco <sfalco@harris.com>
34041 Date:   Thu Jun 12 13:22:12 2008 -0400
34042
34043     Make setenv() return status
34044
34045     Currently, the setenv function does not return an error code.
34046     This patch allows to test for errors.
34047
34048     Signed-off-by: Steve Falco <sfalco@harris.com>
34049
34050 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
34051 Author: Kumar Gala <galak@kernel.crashing.org>
34052 Date:   Wed Jun 11 10:14:06 2008 -0500
34053
34054     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
34055
34056     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
34057     and fls is used to implement them.
34058
34059     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34060
34061 commit 83002a77cbdf383015ca384eff5fa31722d8e571
34062 Author: Magnus Lilja <lilja.magnus@gmail.com>
34063 Date:   Mon Jun 9 22:58:48 2008 +0200
34064
34065     i.MX31: Cleanup comments in lowlevel_init.S.
34066
34067     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
34068
34069 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
34070 Author: Ben Warren <biggerbadderben@gmail.com>
34071 Date:   Sun Jun 8 23:28:33 2008 -0700
34072
34073     Move conditional compilation of MPC8XXX SPI driver to Makefile
34074
34075     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34076
34077 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
34078 Author: Juergen Kilb <J.Kilb@gmx.de>
34079 Date:   Sun Jun 8 17:59:53 2008 +0200
34080
34081     i.MX31: fixed CTRL-C detection
34082
34083     The Register URXD contains status information in bits [15..8].
34084     With status bit 15 set, CTRL-C was reported as 0x8003 instead
34085     of 0x03. Therefore CTRL-C was not detected.
34086     To solve this, bits [15..8] were masked out now.
34087
34088     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
34089     Acked-by: Felix Radensky <felix@embedded-sol.com>
34090
34091 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
34092 Author: Stefan Roese <sr@denx.de>
34093 Date:   Tue Jul 1 17:03:19 2008 +0200
34094
34095     ppc4xx: Fix 460EX/GT PCIe port initialization
34096
34097     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
34098     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
34099     this out.
34100
34101     Signed-off-by: Stefan Roese <sr@denx.de>
34102
34103 commit b571afde0295b007a45055ee49f8822c753a5651
34104 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34105 Date:   Sat Jun 7 12:29:52 2008 +0200
34106
34107     add SHA256 support
34108
34109     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34110     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
34111
34112 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
34113 Author: Marian Balakowicz <m8@semihalf.com>
34114 Date:   Fri Jun 6 23:07:40 2008 +0200
34115
34116     Delay FIT format check on sector based devices
34117
34118     Global FIT image operations like format check cannot be performed on
34119     a first sector data, defer them to the point when whole FIT image was
34120     uploaded to a system RAM.
34121
34122     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
34123     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
34124     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
34125
34126 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
34127 Author: Dave Liu <r63238@freescale.com>
34128 Date:   Tue Jun 3 17:38:19 2008 +0800
34129
34130     sata: wait for device updating signature to host
34131
34132     The driver need wait for the device updating signature to host.
34133     If we don't wait for it, the driver can not detect the device(disk)
34134     when the system powers up.
34135
34136     Signed-off-by: Dave Liu <daveliu@freescale.com>
34137
34138 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
34139 Author: Stefan Roese <sr@denx.de>
34140 Date:   Sat Jun 28 14:56:17 2008 +0200
34141
34142     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
34143
34144     This patch implements a fix provided by AMCC so that the lockup upon
34145     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
34146     anymore:
34147
34148     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
34149     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
34150     USB 2.0 host and SATA.
34151
34152     This errata is not officially available yet. I'll update the comment
34153     to add the errata number later.
34154
34155     Signed-off-by: Stefan Roese <sr@denx.de>
34156
34157 commit 8b616edb118e37d05f6401389eaee1c636b22828
34158 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
34159 Date:   Mon Jun 2 16:42:19 2008 -0400
34160
34161     serial_pl010.c: add watchdog support
34162
34163     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
34164
34165 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
34166 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
34167 Date:   Mon Jun 2 16:40:08 2008 -0400
34168
34169     jffs2_1pass.c: add watchdog support
34170
34171     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
34172
34173 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
34174 Author: Sascha Laue <sascha.laue@liebherr.com>
34175 Date:   Fri May 30 09:48:14 2008 +0200
34176
34177     Configure DSP POST; add watchdog reset to diag command
34178
34179     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
34180
34181 commit f13526517859bf6b573e23ff47199e107d1009b5
34182 Author: Tor Krill <tor@excito.com>
34183 Date:   Thu May 29 10:40:17 2008 +0200
34184
34185     Add sata sil3114 support
34186
34187     Signed-off-by: Tor Krill <tor@excito.com>
34188
34189 commit e093a247628228100f405b6d7f6b1bfc16141938
34190 Author: Wolfgang Denk <wd@denx.de>
34191 Date:   Sat Jun 28 23:34:37 2008 +0200
34192
34193     Coding Style Cleanup
34194
34195     Signed-off-by: Wolfgang Denk <wd@denx.de>
34196
34197 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
34198 Author: Wolfgang Denk <wd@denx.de>
34199 Date:   Sat Jun 28 23:16:01 2008 +0200
34200
34201     Update CHANGELOG
34202
34203     Signed-off-by: Wolfgang Denk <wd@denx.de>
34204
34205 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
34206 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34207 Date:   Wed May 21 13:58:41 2008 -0400
34208
34209     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
34210
34211     This patch adds support for the Lyrtech SFF-SDR board,
34212     based on the TI DaVinci architecture (ARM926EJS).
34213
34214     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34215     Signed-off-by: Philip Balister <philip@balister.org>
34216     Signed-off-by: Wolfgang Denk <wd@denx.de>
34217
34218 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
34219 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34220 Date:   Thu May 22 11:09:59 2008 +0200
34221
34222     MMC: Consolidate MMC/SD command definitions
34223
34224     This moves the MMC and SD Card command definitions from
34225     include/asm/arch/mmc.h into include/mmc.h. These definitions are
34226     given by the MMC and SD Card standards, not by any particular
34227     architecture.
34228
34229     There's a lot more room for consolidation in the MMC drivers which
34230     I'm hoping to get done eventually, but this patch is a start.
34231
34232     Compile-tested for all avr32 boards as well as lpc2292sodimm and
34233     lubbock. This should cover all three mmc drivers in the tree.
34234
34235     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34236
34237 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
34238 Author: Kyungmin Park <kmpark@infradead.org>
34239 Date:   Wed May 21 14:38:08 2008 +0900
34240
34241     Use better Ethernet timings for apollon board
34242
34243     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
34244
34245 commit 41c5eaa7253ed82bbae1eda5667755872c615164
34246 Author: Andy Fleming <afleming@freescale.com>
34247 Date:   Mon Jun 16 13:58:56 2008 -0500
34248
34249     Resize device tree to allow space for board changes and the chosen node
34250
34251     Current code requires that a compiled device tree have space added to the end to
34252     leave room for extra nodes added by board code (and the chosen node).  This
34253     requires that device tree creators anticipate how much space U-Boot will add to
34254     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
34255     tree when it needed more space, but this would require a systemic change to the
34256     fdt code, which is non-trivial.  Instead, we resize the tree inside
34257     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
34258     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
34259
34260     Signed-off-by: Andy Fleming <afleming@freescale.com>
34261
34262 commit 7570a9941fc565922078679a72d246fe208d696d
34263 Author: Andy Fleming <afleming@freescale.com>
34264 Date:   Mon Jun 16 13:58:55 2008 -0500
34265
34266     Fix an underflow bug in __lmb_alloc_base
34267
34268     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
34269     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
34270     merely updates __lmb_alloc_base to resemble the current version in Linux.
34271
34272     Signed-off-by: Andy Fleming <afleming@freescale.com>
34273
34274 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
34275 Author: Andy Fleming <afleming@freescale.com>
34276 Date:   Mon Jun 16 13:58:54 2008 -0500
34277
34278     Add lmb_free
34279
34280     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
34281     lmb_reserve to temporarily reserve some memory.
34282
34283     Signed-off-by: Andy Fleming <afleming@freescale.com>
34284
34285 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
34286 Author: Andy Fleming <afleming@freescale.com>
34287 Date:   Mon Jun 16 13:58:53 2008 -0500
34288
34289     Add ALIGN() macro
34290
34291     ALIGN() returns the smallest aligned value greater than the passed
34292     in address or size.  Taken from Linux.
34293
34294     Signed-off-by: Andy Fleming <afleming@freescale.com>
34295
34296 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
34297 Author: Stefan Roese <sr@denx.de>
34298 Date:   Tue Jun 24 17:15:22 2008 +0200
34299
34300     ppc4xx: Fix compilation problems with phys_size_t
34301
34302     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
34303     board specific files where it has been missing.
34304
34305     Signed-off-by: Stefan Roese <sr@denx.de>
34306
34307 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
34308 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34309 Date:   Mon May 19 12:26:38 2008 +0200
34310
34311     Conditionally add -fno-stack-protector to CFLAGS
34312
34313     When compile-testing on powerpc, I get errors like this:
34314
34315     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
34316
34317     This seems to be because -fstack-protector is on by default, so
34318     let's explicitly disable it on all architectures that support the
34319     option.
34320
34321     The Ubuntu toolchain is affected by this problem, and according to
34322     Mike Frysinger, Gentoo has been running with SSP enabled for years.
34323     More and more distros are turning SSP on by default, so this problem
34324     is likely to get worse in the future.
34325
34326     Also, powerpc just happens to be one of the arches I do
34327     compile-testing on. There may be other arches affected by this too.
34328
34329     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34330
34331 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
34332 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34333 Date:   Sun May 18 19:09:52 2008 +0200
34334
34335     pcmcia/ti_pci1410a: Move compile condition to the Makefile
34336
34337     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34338
34339 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
34340 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34341 Date:   Sun May 18 19:09:51 2008 +0200
34342
34343     pxa_pcmcia: Move compile condition to the Makefile
34344
34345     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34346
34347 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
34348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34349 Date:   Sun May 18 19:09:50 2008 +0200
34350
34351     marabun_pcmcia: Move compile condition to the Makefile
34352
34353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34354
34355 commit 6a19c46cae43c16c528eddefae3db97134f1915d
34356 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
34357 Date:   Mon Jun 23 13:25:34 2008 +0200
34358
34359     fix non-working mvBL-M7
34360
34361     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
34362
34363     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34364     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34365
34366 commit 846f1574ddddeda2bc227655e687308695f41cdc
34367 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
34368 Date:   Mon Jun 23 11:40:56 2008 +0200
34369
34370     fix system config overwrite @ MPC834x and MPC8313
34371
34372     During 83xx setup the "System I/O configuration register high" gets
34373     overwritten with user defined value if CFG_SICRH is defined.
34374
34375     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
34376     must keep their reset value regardless of configuration.
34377
34378     On my board (using RGMII) those bits are set after reset - yet it's
34379     unclear where they come from.
34380
34381     The patch keeps both bits on MPC834x and MPC8313.
34382
34383     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34384     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34385
34386 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
34387 Author: Kim Phillips <kim.phillips@freescale.com>
34388 Date:   Tue Jun 17 17:45:27 2008 -0500
34389
34390     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
34391
34392     to avoid this:
34393
34394     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
34395     In file included from cpu.c:33:
34396     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
34397
34398     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34399
34400 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
34401 Author: Stefan Roese <sr@denx.de>
34402 Date:   Mon Jun 23 11:15:09 2008 +0200
34403
34404     ppc4xx: Fix problem in gpio_config()
34405
34406     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
34407     left by one. So the additional shift is bogus.
34408
34409     Signed-off-by: Stefan Roese <sr@denx.de>
34410
34411 commit 40777812316fc252c941665c0f60c148fd79d50f
34412 Author: Detlev Zundel <dzu@denx.de>
34413 Date:   Fri Jun 20 22:24:05 2008 +0200
34414
34415     fdt: Fix typo in variable name.
34416
34417     Signed-off-by: Detlev Zundel <dzu@denx.de>
34418
34419 commit 5f723a3b98c630bde33de74351f2121691fdef14
34420 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34421 Date:   Fri Jun 20 10:41:05 2008 +0200
34422
34423     avr32: Enable SPI flash support on ATNGW100
34424
34425     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
34426     the new SPI flash framework.
34427
34428     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34429
34430 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
34431 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34432 Date:   Fri Jun 20 12:44:28 2008 +0200
34433
34434     avr32: Fix SPI portmux initialization
34435
34436     Use the new GPIO manipulation functions to set up the chip select lines,
34437     and make sure both busses use GPIO for chip select control.
34438
34439     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34440
34441 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
34442 Author: Peter Ma <pma@mediamatech.com>
34443 Date:   Sun Jun 1 22:59:24 2008 -0700
34444
34445     avr32: Add GPIO manipulation functions
34446
34447     Adds GPIO manipulation functions for AVR32 AP7 platform.
34448
34449     Signed-off-by: Peter Ma <pma@mediamatech.com>
34450     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
34451     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34452
34453 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
34454 Author: Wolfgang Grandegger <wg@grandegger.com>
34455 Date:   Thu Jun 5 13:02:30 2008 +0200
34456
34457     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
34458
34459     This patch is based on the following patch sent a few minutes ago:
34460     "NAND FSL UPM: driver re-write using the hwcontrol callback"
34461     It is untested, of course. Anton, could you please give it a try.
34462
34463     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34464     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34465
34466 commit 96026d42fa4e646d28318c0a1438aac4b2017909
34467 Author: Anatolij Gustschin <agust@denx.de>
34468 Date:   Thu Jun 12 12:40:11 2008 +0200
34469
34470     Fix 4xx build issue
34471
34472     Building for 4xx doesn't work since commit 4dbdb768:
34473
34474     In file included from 4xx_pcie.c:28:
34475     include/asm/processor.h:971: error: expected ')' before 'ver'
34476     make[1]: *** [4xx_pcie.o] Error 1
34477
34478     This patch fixes the problem.
34479
34480     Signed-off-by: Anatolij Gustschin <agust@denx.de>
34481     Acked-by: Stefan Roese <sr@denx.de>
34482     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34483
34484 commit a036b0443657fe0f4773786de9092251869f08ac
34485 Author: Kumar Gala <galak@kernel.crashing.org>
34486 Date:   Thu Jun 19 01:45:50 2008 -0500
34487
34488     MPC8610HPCD: Report board id, board version and fpga version.
34489
34490     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34491
34492 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
34493 Author: Kumar Gala <galak@kernel.crashing.org>
34494 Date:   Thu Jun 19 01:45:27 2008 -0500
34495
34496     MPC8641HPCN: Report board id, board version and fpga version.
34497
34498     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34499
34500 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
34501 Author: Stefan Roese <sr@denx.de>
34502 Date:   Mon Jun 16 10:40:02 2008 +0200
34503
34504     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
34505
34506     This patch simplifies flash_toggle() (AMD commandset), which is used to
34507     detect if a FLASH device is still busy with erase/program operations. On
34508     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
34509     did not detect the busy state reliably, resulting in non erased sectors
34510     etc. This patch now simplifies this function by "just" comparing the
34511     complete data-word instead of ANDing it with the command-word (0x40)
34512     before the compatison. It is done the same way in the Linux implementation
34513     chip_ready() in cfi_cmdset_0002.c.
34514
34515     Signed-off-by: Stefan Roese <sr@denx.de>
34516
34517 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
34518 Author: Philip Balister <philip@balister.org>
34519 Date:   Mon Jun 16 08:58:07 2008 -0400
34520
34521     NAND: Add missing declaration to non-redundant saveenv().
34522
34523     Signed-off-by: Scott Wood <scottwood@freescale.com>
34524
34525 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
34526 Author: Wolfgang Grandegger <wg@grandegger.com>
34527 Date:   Mon Jun 2 15:09:55 2008 +0200
34528
34529     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
34530
34531     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34532     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34533     Signed-off-by: Scott Wood <scottwood@freescale.com>
34534
34535 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
34536 Author: Stefan Roese <sr@denx.de>
34537 Date:   Tue Jun 10 15:34:11 2008 +0200
34538
34539     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
34540
34541     This patch disables the square wave output of the M41T62 RTC used on
34542     Canyonlands & Glacier. Here the explanation:
34543
34544     The serial real-time clock part used in the design is an
34545     STMicro M41T62. This part has a full-time 32KHz square wave
34546     output that is connected to the TmrClk input to the
34547     processor. The default state for this square wave output is
34548     enabled so the output runs continuously when the board is
34549     powered normally and also from the battery. The TmrClk input
34550     to the processor goes to ground when the power is removed
34551     from the board/processor, and therefore the running square
34552     wave output is driving ground which drains the battery quickly.
34553
34554     Signed-off-by: Stefan Roese <sr@denx.de>
34555
34556 commit a94f22f08f280905926219e568568964cb9eeb9d
34557 Author: Andy Fleming <afleming@freescale.com>
34558 Date:   Wed Jun 11 18:10:20 2008 -0500
34559
34560     Fix build issue with string.h and linux/string.h
34561
34562     This commit:
34563     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
34564     Author: Wolfgang Denk <wd@denx.de>
34565     Date:   Fri Jun 6 14:28:14 2008 +0200
34566
34567         tools/mkimage: fix compiler warnings on some systems.
34568
34569     Broke building on some systems, because the host's string.h was interfering
34570     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
34571     we're building for the host, so now we only include when building inside
34572     u-boot.
34573
34574     Signed-off-by: Andy Fleming <afleming@freescale.com>
34575
34576 commit 9973e3c614721bbf169882ffc3be266a6611cd60
34577 Author: Becky Bruce <becky.bruce@freescale.com>
34578 Date:   Mon Jun 9 16:03:40 2008 -0500
34579
34580     Change initdram() return type to phys_size_t
34581
34582     This patch changes the return type of initdram() from long int to phys_size_t.
34583     This is required for a couple of reasons: long int limits the amount of dram
34584     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
34585     size of physical memory.  phys_size_t is defined as an unsigned long on almost
34586     all current platforms.
34587
34588     This patch *only* changes the return type of the initdram function (in
34589     include/common.h, as well as in each board's implementation of initdram).  It
34590     does not actually modify the code inside the function on any of the platforms;
34591     platforms which wish to support more than 2GB of DRAM will need to modify
34592     their initdram() function code.
34593
34594     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
34595     MPC8641HPCN.
34596
34597     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34598
34599 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
34600 Author: Becky Bruce <becky.bruce@freescale.com>
34601 Date:   Mon Jun 9 20:37:18 2008 -0500
34602
34603     Change lmb to use phys_size_t/phys_addr_t
34604
34605     This updates the lmb code to use phys_size_t
34606     and phys_addr_t instead of unsigned long.  Other code
34607     which interacts with this code, like getenv_bootm_size()
34608     is also updated.
34609
34610     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
34611
34612     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34613
34614 commit 61b09fc2952dc636017df4e7970e3de132276ba1
34615 Author: Becky Bruce <becky.bruce@freescale.com>
34616 Date:   Mon Jun 9 20:37:17 2008 -0500
34617
34618     Change print_size to take phys_size_t
34619
34620     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34621
34622 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
34623 Author: Becky Bruce <becky.bruce@freescale.com>
34624 Date:   Mon Jun 9 20:37:16 2008 -0500
34625
34626     Change bd/gd memsize/ram_size to be phys_size_t.
34627
34628     Currently, both are defined as an unsigned long, but
34629     should be phys_size_t. This should result in no real change,
34630     since phys_size_t is currently an unsigned long for all the
34631     default configs.  Also add print_lnum to cmd_bdinfo to deal
34632     with the potentially wider memsize.
34633
34634     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
34635
34636 commit ba04f7010958e88a8910f2a123fee53fdc72e013
34637 Author: Kumar Gala <galak@kernel.crashing.org>
34638 Date:   Tue Jun 10 16:16:02 2008 -0500
34639
34640     FSL LAW: Add new interface to use the last free LAW
34641
34642     LAWs have the concept of priority so its useful to be able to allocate
34643     the lowest (highest number) priority.  We will end up using this with the
34644     new DDR code.
34645
34646     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34647
34648 commit 859a86a25c569d3665ff413d1d923394b8a961f3
34649 Author: Kumar Gala <galak@kernel.crashing.org>
34650 Date:   Wed Jun 11 00:51:45 2008 -0500
34651
34652     85xx/86xx: Move to dynamic mgmt of LAWs
34653
34654     With the new LAW interface (set_next_law) we can move to letting the
34655     system allocate which LAWs are used for what purpose.  This makes life
34656     a bit easier going forward with the new DDR code.
34657
34658     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34659     Signed-off-by: Andy Fleming <afleming@freescale.com>
34660     Acked-by: Jon Loeliger <jdl@freescale.com>
34661     Acked-by: Becky Bruce <becky.bruce@freescale.com>
34662
34663 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
34664 Author: Kumar Gala <galak@kernel.crashing.org>
34665 Date:   Wed Jun 11 00:44:10 2008 -0500
34666
34667     FSL LAW: Keep track of LAW allocations
34668
34669     Make it so we keep track of which LAWs have allocated and provide
34670     a function (set_next_law) which can allocate a LAW for us if one is
34671     free.
34672
34673     In the future we will move to doing more "dynamic" LAW allocation
34674     since the majority of users dont really care about what LAW number
34675     they are at.
34676
34677     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
34678
34679     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34680     Signed-off-by: Andy Fleming <afleming@freescale.com>
34681
34682 commit ddde74a159caa6e18b481fec01d40b885aebb566
34683 Author: Kumar Gala <galak@kernel.crashing.org>
34684 Date:   Mon Jun 9 22:31:57 2008 -0500
34685
34686     85xx: remove dummy board_early_init_f
34687
34688     A number of board ports have empty version of board_early_init_f
34689     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
34690
34691     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34692
34693 commit 81e56e9af0d43712db8efb843606a8d62eab454f
34694 Author: Kumar Gala <galak@kernel.crashing.org>
34695 Date:   Mon Jun 9 18:55:38 2008 -0500
34696
34697     MPC8544DS: Update config.h
34698
34699     * Enable flash progress
34700     * remove CLEAR_LAW0 since we dont really use it
34701
34702     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34703
34704 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
34705 Author: Kumar Gala <galak@kernel.crashing.org>
34706 Date:   Mon Jun 9 13:37:24 2008 -0500
34707
34708     85xx: Remove unused and unconfigured memory test code.
34709
34710     Remove unused and unconfigured DDR test code from FSL 85xx boards.
34711     Besides, other common code exists.
34712
34713     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34714
34715 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
34716 Author: Sergei Poselenov <sposelenov@emcraft.com>
34717 Date:   Fri Jun 6 15:42:45 2008 +0200
34718
34719     Socrates: Added FPGA base address update in FDT.
34720
34721     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34722
34723 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
34724 Author: Sergei Poselenov <sposelenov@emcraft.com>
34725 Date:   Fri Jun 6 15:42:44 2008 +0200
34726
34727     Socrates: NAND support added. Changed the U-Boot base address and
34728
34729     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34730
34731 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
34732 Author: Sergei Poselenov <sposelenov@emcraft.com>
34733 Date:   Fri Jun 6 15:42:43 2008 +0200
34734
34735     NAND: Added support for 128-bit OOB, adapted
34736
34737     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34738
34739 commit 31ca0208612f2eb57690110d7c2815953650e47b
34740 Author: Sergei Poselenov <sposelenov@emcraft.com>
34741 Date:   Fri Jun 6 15:42:42 2008 +0200
34742
34743     Socrates: added missed file with UPMA configuration data.
34744
34745     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
34746
34747 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
34748 Author: Sergei Poselenov <sposelenov@emcraft.com>
34749 Date:   Fri Jun 6 15:42:41 2008 +0200
34750
34751     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
34752
34753     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34754
34755 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
34756 Author: Sergei Poselenov <sposelenov@emcraft.com>
34757 Date:   Fri Jun 6 15:42:40 2008 +0200
34758
34759     Added the upmconfig() function for 85xx.
34760
34761     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34762     Signed-off-by: Andy Fleming <afleming@freescale.com>
34763
34764 commit d39e68514ff943930ee692cff3fde03532eb7fec
34765 Author: Sergei Poselenov <sposelenov@emcraft.com>
34766 Date:   Fri Jun 6 15:42:39 2008 +0200
34767
34768     Socrates: config file cleanup.
34769
34770     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
34771
34772 commit e8cc3f04b124f757af4528206e60d8eb715ae083
34773 Author: Wolfgang Grandegger <wg@grandegger.com>
34774 Date:   Thu Jun 5 13:12:10 2008 +0200
34775
34776     TQM85xx: Change memory map to support Flash memory > 128 MiB
34777
34778     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
34779     memory. The current memory map only supports up to 128 MiB Flash.
34780     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
34781     set, up to 1 GiB flash is supported. To achieve this, the memory
34782     map has to be adjusted in great parts (for example the CCSRBAR is
34783     moved from 0xE0000000 to 0xA0000000).
34784
34785     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
34786     memory map also has to be considered in the kernel (changed
34787     CCSRBAR address, changed PCI IO base address, ...). Please use
34788     an appropriate Flat Device Tree blob (tqm8548.dtb).
34789
34790     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34791     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34792
34793 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
34794 Author: Wolfgang Grandegger <wg@grandegger.com>
34795 Date:   Thu Jun 5 13:12:09 2008 +0200
34796
34797     TQM85xx: NAND support via local bus UPMB
34798
34799     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
34800     default and can be enabled for the TQM8548 modules. It is now based on
34801     the re-written FSL NAND UPM driver. A patch has been posted earlier today
34802     with the subject:
34803
34804     "NAND FSL UPM: driver re-write using the hwcontrol callback"
34805
34806     Note that the R/B pin is not supported by that module requiring to use
34807     the specified maximum delay time.
34808
34809     Note: With NAND support enabled the size of the U-Boot image exceeds
34810     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
34811     doubling the image size :-(.
34812
34813     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34814     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34815
34816 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
34817 Author: Wolfgang Grandegger <wg@grandegger.com>
34818 Date:   Thu Jun 5 13:12:08 2008 +0200
34819
34820     TQM8548: PCI express support
34821
34822     This patch adds support for PCI express cards. The board support
34823     now uses common FSL PCI init code, for both, PCI and PCIe on all
34824     TQM85xx modules.
34825
34826     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34827     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34828
34829 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
34830 Author: Wolfgang Grandegger <wg@grandegger.com>
34831 Date:   Thu Jun 5 13:12:07 2008 +0200
34832
34833     TQM8548: Basic support for the TQM8548 modules
34834
34835     This patch adds basic support for the TQM8548 module from TQ-Components
34836     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
34837     eTSEC 3 and 4
34838
34839     Furthermore Flash buffer write has been enabled to speed up output to
34840     the Flash by approx. a factor of 10.
34841
34842     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34843     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34844
34845 commit 25991353204c78b094c3c1fec90182dcd607ab8f
34846 Author: Wolfgang Grandegger <wg@grandegger.com>
34847 Date:   Thu Jun 5 13:12:06 2008 +0200
34848
34849     TQM85xx: Support for Flat Device Tree
34850
34851     This patch adds support for Linux kernels using the Flat Device Tree.
34852     It also re-defines the default environment settings for booting Linux
34853     with the FDT blob.
34854
34855     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34856
34857 commit d9ee843d54c54776e1fdb86336ce554906a87331
34858 Author: Wolfgang Grandegger <wg@grandegger.com>
34859 Date:   Thu Jun 5 13:12:05 2008 +0200
34860
34861     TQM85xx: Support for Intel 82527 compatible CAN controller
34862
34863     This patch adds initialization of the UPMC RAM to support up to two
34864     Intel 82527 compatible CAN controller on the TQM85xx modules.
34865
34866     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
34867     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34868
34869 commit 518d5cfe72916323c746af1647764459914f555f
34870 Author: Wolfgang Grandegger <wg@grandegger.com>
34871 Date:   Thu Jun 5 13:12:04 2008 +0200
34872
34873     TQM85xx: Bugfix in the SDRAM initialisation
34874
34875     The CS0_BNDS register is now set according to the detected
34876     memory size.
34877
34878     Signed-off-by Martin Krause <martin.krause@tqs.de>
34879
34880 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
34881 Author: Wolfgang Grandegger <wg@grandegger.com>
34882 Date:   Thu Jun 5 13:12:03 2008 +0200
34883
34884     TQM85xx: Fix chip select configuration for second FLASH bank
34885
34886     This patch fixes the re-calculation of the automatic chip select
34887     configuration for boards with two populated FLASH banks.
34888
34889     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34890
34891 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
34892 Author: Wolfgang Grandegger <wg@grandegger.com>
34893 Date:   Thu Jun 5 13:12:02 2008 +0200
34894
34895     TQM85xx: Support for Spansion 'N' type flashes added
34896
34897     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
34898     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
34899     needs to be changed -> new start address of the environment. The macro
34900     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
34901     defined for boards with 'N' type flashes.
34902
34903     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34904     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34905
34906 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
34907 Author: Wolfgang Grandegger <wg@grandegger.com>
34908 Date:   Thu Jun 5 13:12:01 2008 +0200
34909
34910     TQM85xx: Fix CPM port pin configuration
34911
34912     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
34913     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
34914     as serial interface anyway. Worse, on some board variants configuring the
34915     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
34916
34917     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34918
34919 commit b99ba1679e8cd51b023e67098c89e606e47137d2
34920 Author: Wolfgang Grandegger <wg@grandegger.com>
34921 Date:   Thu Jun 5 13:12:00 2008 +0200
34922
34923     TQM85xx: Various coding style fixes
34924
34925     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34926
34927 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
34928 Author: Gerald Van Baren <vanbaren@cideas.com>
34929 Date:   Tue Jun 10 22:15:58 2008 -0400
34930
34931     libfdt: Move the working_fdt pointer to cmd_fdt.c
34932
34933     The working_fdt pointer was declared in common/fdt_support.c but was
34934     not used there.  Move it to common/cmd_fdt.c where it is used (it is
34935     also used in lib_ppc/bootm.c).
34936
34937     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34938
34939 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
34940 Author: Kim Phillips <kim.phillips@freescale.com>
34941 Date:   Tue Jun 10 11:06:17 2008 -0500
34942
34943     fdt: unshadow global working fdt variable
34944
34945     differentiate with local variables of the same name by renaming the
34946     global 'fdt' variable 'working_fdt'.
34947
34948     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34949
34950 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
34951 Author: Andy Fleming <afleming@freescale.com>
34952 Date:   Tue Jun 10 18:49:34 2008 -0500
34953
34954     socrates: Fix PCI clk fix patch
34955
34956     The submitted patch seems to have been more up-to-date, but an older patch was
34957     already in the repository.  This patch encompasses the differences
34958
34959     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
34960
34961     Signed-off-by: Andy Fleming <afleming@freescale.com>
34962
34963 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
34964 Author: Wolfgang Grandegger <wg@grandegger.com>
34965 Date:   Thu Jun 5 13:02:29 2008 +0200
34966
34967     NAND FSL UPM: driver re-write using the hwcontrol callback
34968
34969     This is a re-write of the NAND FSL UPM driver using the more universal
34970     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
34971     list of furher modifications:
34972
34973     - For the time being, the UPM setup writing the UPM array has been
34974       removed from the driver and must now be done by the board specific
34975       code.
34976
34977     - The bus width definition in "struct fsl_upm_nand" is now in bits to
34978       comply with the corresponding Linux driver and 8, 16 and 32 bit
34979       accesses are supported.
34980
34981     - chip->dev_read is only set if fun->dev_ready != NULL, which is
34982       required for boards not connecting the R/B pin.
34983
34984     - A few issue have been fixed with MxMR bit manipulation like in the
34985       corresponding Linux driver.
34986
34987     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
34988           as well, because the address is already determined by
34989           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
34990
34991     This patch has been tested on a TQM8548 modules with the NAND chip
34992     Micron MT29F8G08FABWP.
34993
34994     This patch is based on the following patches posted to this list a few
34995     minutes ago:
34996
34997       PPC: add accessor macros to clear and set bits in one shot
34998       83xx/85xx/86xx: add more MxMR local bus definitions
34999
35000     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35001     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35002
35003 commit 6beecfbb542992eede5831240cd58678274683a9
35004 Author: Wolfgang Grandegger <wg@grandegger.com>
35005 Date:   Thu Jun 5 13:11:59 2008 +0200
35006
35007     MPC85xx: Beautify boot output of L2 cache configuration
35008
35009     The boot output is now aligned poperly with other boot output
35010     lines, e.g.:
35011
35012       FLASH: 128 MB
35013       L2:    512 KB enabled
35014
35015     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35016
35017 commit 398415114f0a705163a14543e9fef03f734b1ffa
35018 Author: Wolfgang Grandegger <wg@grandegger.com>
35019 Date:   Wed Jun 4 12:45:22 2008 +0200
35020
35021     PPC: add accessor macros to clear and set bits in one shot
35022
35023     PPC: add accessor macros to clear and set bits in one shot
35024
35025     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
35026     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
35027     They are very handy to manipulate bits it I/O registers.
35028
35029     This patch is required for my forthcoming FSL NAND UPM driver re-write and
35030     the support for the TQM8548 module.
35031
35032     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35033
35034 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
35035 Author: Wolfgang Grandegger <wg@grandegger.com>
35036 Date:   Wed Jun 4 13:52:17 2008 +0200
35037
35038     TQM: move TQM boards to board/tqc
35039
35040     Move all TQM board directories to the vendor specific directory "tqc"
35041     for modules from TQ-Components GmbH (http://www.tqc.de).
35042
35043     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35044
35045 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
35046 Author: Wolfgang Grandegger <wg@grandegger.com>
35047 Date:   Mon Jun 2 12:09:30 2008 +0200
35048
35049     83xx/85xx/86xx: add more MxMR local bus definitions
35050
35051     83xx/85xx/86xx: add more MxMR local bus definitions
35052
35053     This patch adds more macro definitions for the UPM Machine Mode Registers
35054     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
35055     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
35056     required for my forthcoming FSL NAND UPM driver re-write and the support
35057     for the TQM8548 module.
35058
35059     This patch is based on the following two patches from Anton Vorontsov:
35060
35061     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
35062     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
35063
35064     I leave coding style violation fixes, code beautification and name
35065     corrections to somebody else ;-(.
35066
35067     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35068
35069 commit c8c5fc266e4499e283c293ccb972863156aa4134
35070 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
35071 Date:   Thu May 29 18:14:56 2008 +0400
35072
35073     83xx/85xx: further localbus cleanups
35074
35075     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
35076     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
35077
35078     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35079
35080 commit 42dbd667c88d496882d53e22656e89b654205492
35081 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
35082 Date:   Wed May 28 18:20:15 2008 +0400
35083
35084     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
35085
35086     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
35087     use it on MPC85xx and MPC86xx processors.
35088
35089     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35090
35091 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
35092 Author: Kumar Gala <galak@kernel.crashing.org>
35093 Date:   Thu May 29 11:22:06 2008 -0500
35094
35095     85xx: Add setting of cache props in the device tree.
35096
35097     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35098
35099 commit 4dbdb7681e243431530df0725627192a0c4aefda
35100 Author: Kumar Gala <galak@kernel.crashing.org>
35101 Date:   Tue Jun 10 16:53:46 2008 -0500
35102
35103     85xx: expose cpu identification
35104
35105     The current cpu identification code is used just to return the name
35106     of the processor at boot.  There are some other locations that the name
35107     is useful (device tree setup).  Expose the functionality to other bits
35108     of code.
35109
35110     Also, drop the 'E' suffix and add it on by looking at the SVR version
35111     when we print this out.  This is mainly to allow the most flexible use
35112     of the name.  The device tree code tends to not care about the 'E' suffix.
35113
35114     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35115
35116 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
35117 Author: Kim Phillips <kim.phillips@freescale.com>
35118 Date:   Tue Jun 10 13:25:24 2008 -0500
35119
35120     mpc83xx: MVBLM7: minor build fixups
35121
35122     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35123
35124 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
35125 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35126 Date:   Tue Jun 10 09:14:05 2008 +0200
35127
35128     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
35129
35130     Add MPC8343 based board mvBlueLYNX-M7.
35131     It's a single board stereo camera system.
35132     Please read doc/README.mvblm7 for details.
35133
35134     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35135     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35136
35137 commit c005b93925ba49f07da2aa748527996d927e172f
35138 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35139 Date:   Tue Jun 10 09:13:16 2008 +0200
35140
35141     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
35142
35143     Add MPC8343 based board mvBlueLYNX-M7.
35144     It's a single board stereo camera system.
35145     Please read doc/README.mvblm7 for details.
35146
35147     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35148     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35149
35150 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
35151 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
35152 Date:   Thu May 29 18:14:56 2008 +0400
35153
35154     83xx/85xx: further localbus cleanups
35155
35156     move the BRx_* and ORx_* left behind in mpc85xx.h
35157
35158     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
35159     the same, just few differences which needs some attention though).
35160
35161     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
35162     of these defines. So this cleanup I'll leave for the "better times".
35163
35164     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35165     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35166
35167 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
35168 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
35169 Date:   Wed May 28 18:20:15 2008 +0400
35170
35171     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
35172
35173     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
35174     use it on MPC85xx and MPC86xx processors.
35175
35176     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35177     Acked-by: Andy Fleming <afleming@freescale.com>
35178     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35179
35180 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
35181 Author: Tor Krill <tor@excito.com>
35182 Date:   Mon Jun 2 15:09:30 2008 +0200
35183
35184     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
35185
35186     Signed-off-by: Tor Krill <tor@excito.com>
35187     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35188
35189 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
35190 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35191 Date:   Mon Jun 9 23:37:44 2008 +0900
35192
35193     net: Conditional COBJS inclusion of network drivers
35194
35195     Replace COBJS-y with appropriate driver config names.
35196
35197     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35198     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35199
35200 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
35201 Author: Gerald Van Baren <vanbaren@cideas.com>
35202 Date:   Mon Jun 9 21:02:17 2008 -0400
35203
35204     Use strncmp() for the fdt command
35205
35206     Cleaner than doing multiple conditionals on characters.
35207
35208     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35209
35210 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
35211 Author: Gerald Van Baren <vanbaren@cideas.com>
35212 Date:   Sat Jun 7 12:25:05 2008 -0400
35213
35214     The fdt boardsetup command criteria was not unique
35215
35216     It was checking just for "b", which is not unique with respect to the
35217     "boot" command.  Change to check for "boa"[rdsetup].
35218
35219     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35220
35221 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
35222 Author: David Gibson <david@gibson.dropbear.id.au>
35223 Date:   Tue May 20 17:19:11 2008 +1000
35224
35225     libfdt: Several cleanups to parameter checking
35226
35227     This patch makes a couple of small cleanups to parameter checking of
35228     libfdt functions.
35229
35230         - In several functions which take a node offset, we use an
35231     idiom involving fdt_next_tag() first to check that we have indeed been
35232     given a node offset.  This patch adds a helper function
35233     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
35234
35235         - In fdt_rw.c in several places we have the expanded version
35236     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
35237     replaces those instances with an invocation of the macro; that's what
35238     it's for.
35239
35240         - In fdt_sw.c we rename the check_header_sw() function to
35241     sw_check_header() to match the analgous function in fdt_rw.c, and we
35242     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
35243     functions in fdt_rw.c
35244
35245     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35246
35247 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
35248 Author: Gerald Van Baren <vanbaren@cideas.com>
35249 Date:   Tue Jun 3 20:34:45 2008 -0400
35250
35251     Remove the deprecated CONFIG_OF_FLAT_TREE
35252
35253     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
35254     cleaner, has better functionality, and is better supported.
35255
35256     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35257
35258 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
35259 Author: Gerald Van Baren <vanbaren@cideas.com>
35260 Date:   Tue Jun 3 20:26:29 2008 -0400
35261
35262     Change the stxxst to CONFIG_OF_LIBFDT
35263
35264     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
35265     to CONFIG_OF_LIBFDT.
35266
35267     WARNING: It appears that this board lost its ability to boot via a
35268     flattened device tree prior to this changeset.
35269
35270     WARNING: This conversion was untested because I do not have a board to
35271     test it on.
35272
35273     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35274
35275 commit 589c04271d129729a8b01391453851ab9cc4069c
35276 Author: Gerald Van Baren <vanbaren@cideas.com>
35277 Date:   Tue Jun 3 20:24:58 2008 -0400
35278
35279     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
35280
35281     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
35282     to CONFIG_OF_LIBFDT.
35283
35284     WARNING: This conversion is untested because I do not have a board to
35285     test it on.
35286
35287     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
35288     /aliases/ethernet1 property for the ethernet to work.
35289
35290     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35291
35292 commit ee1e35bede91debc8bff9b02f75574486033b652
35293 Author: Kumar Gala <galak@kernel.crashing.org>
35294 Date:   Thu May 29 01:21:24 2008 -0500
35295
35296     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
35297
35298     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35299
35300 commit 3b9519fc50802436e417c839e69df7b2016cade5
35301 Author: Becky Bruce <becky.bruce@freescale.com>
35302 Date:   Wed May 14 13:10:04 2008 -0500
35303
35304     MPC85xx: Change traps.c to not reference non-addressable memory
35305
35306     Currently, END_OF_RAM is used by the trap code to determine if
35307     we should attempt to access the stack pointer or not. However,
35308     on systems with a lot of RAM, only a subset of the RAM is
35309     guaranteed to be mapped in and accessible.  Change END_OF_RAM
35310     to use get_effective_memsize() instead of using the raw ram
35311     size out of the bd.
35312
35313     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35314
35315 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
35316 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35317 Date:   Mon Jun 9 13:39:57 2008 +0900
35318
35319     sh: Renesas Solutions SH7763RDP board support
35320
35321     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
35322     In this patch, support SCIF, NOR Flash, and Ethernet.
35323
35324     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35325     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35326
35327 commit 60179098a95eaa972007d7ec58e4c1588029720f
35328 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35329 Date:   Fri Jun 6 16:24:13 2008 +0900
35330
35331     sh: Add support Renesas SH7763
35332
35333     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
35334     This patch supprts CPU register's header file.
35335
35336     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35337     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35338
35339 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
35340 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35341 Date:   Fri Jun 6 16:16:08 2008 +0900
35342
35343     sh: SH7763 SCIF support
35344
35345     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
35346     but only SCIF2 is different. This patch work all SCIF channel.
35347
35348     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35349     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35350
35351 commit 79b51ff8205f0354d5300570614c1d2db499679c
35352 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35353 Date:   Sat Jun 7 20:51:59 2008 +0900
35354
35355     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
35356
35357     Also get rid of some #ifdefs in *.c files.
35358
35359     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35360
35361 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
35362 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35363 Date:   Sat Jun 7 20:51:56 2008 +0900
35364
35365     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
35366
35367     CONFIG_SOC_AU1X00
35368
35369       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
35370       need to have this config as a system type specifier.
35371
35372     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
35373     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
35374
35375       Machine type specifiers. Each port should have one of aboves.
35376
35377     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35378
35379 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
35380 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
35381 Date:   Fri May 30 16:05:28 2008 -0400
35382
35383     env_nand.c: Added bad block management for environment variables
35384
35385     Modified to check for bad blocks and to skipping over them when
35386     CFG_ENV_RANGE has been defined.
35387     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
35388     flash block size.
35389
35390     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
35391     Signed-off-by: Scott Wood <scottwood@freescale.com>
35392
35393 commit 279726bd00558e80263d44581c44167625b7fb9a
35394 Author: Becky Bruce <becky.bruce@freescale.com>
35395 Date:   Wed May 14 13:09:58 2008 -0500
35396
35397     MPC86xx: Change traps.c to not reference non-addressable memory
35398
35399     Currently, END_OF_RAM is used by the trap code to determine if
35400     we should attempt to access the stack pointer or not. However,
35401     on systems with a lot of RAM, only a subset of the RAM is
35402     guaranteed to be mapped in and accessible.  Change END_OF_RAM
35403     to use get_effective_memsize() instead of using the raw ram
35404     size out of the bd to prevent us from trying to access
35405     non-mapped memory.
35406
35407     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
35408
35409 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
35410 Author: Wolfgang Denk <wd@denx.de>
35411 Date:   Fri Jun 6 14:28:14 2008 +0200
35412
35413     tools/mkimage: fix compiler warnings on some systems.
35414
35415     Signed-off-by: Wolfgang Denk <wd@denx.de>
35416
35417 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
35418 Author: Stefan Roese <sr@denx.de>
35419 Date:   Fri Jun 6 16:10:41 2008 +0200
35420
35421     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
35422
35423     We use upper case letters for the AMCC processor defines (like
35424     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
35425     not CONFIG_440SPe. This patch fixes the last misspelled config options.
35426
35427     Signed-off-by: Stefan Roese <sr@denx.de>
35428
35429 commit 72675dc6c06a48846d180106161d49dd714383cc
35430 Author: Stefan Roese <sr@denx.de>
35431 Date:   Fri Jun 6 15:55:21 2008 +0200
35432
35433     ppc4xx: Unify AMCC's board config files (part 3/3)
35434
35435     This patch series unifies the AMCC eval board ports by introducing
35436     a common include header for all AMCC eval boards:
35437
35438     include/configs/amcc-common.h
35439
35440     This header now includes all common configuration options/defines which
35441     are removed from the board specific headers.
35442
35443     The reason for this is ease of maintenance and unified look and feel
35444     of all AMCC boards.
35445
35446     Signed-off-by: Stefan Roese <sr@denx.de>
35447
35448 commit 490f204096d6e2c9940f67816f154a8125bab116
35449 Author: Stefan Roese <sr@denx.de>
35450 Date:   Fri Jun 6 15:55:03 2008 +0200
35451
35452     ppc4xx: Unify AMCC's board config files (part 2/3)
35453
35454     This patch series unifies the AMCC eval board ports by introducing
35455     a common include header for all AMCC eval boards:
35456
35457     include/configs/amcc-common.h
35458
35459     This header now includes all common configuration options/defines which
35460     are removed from the board specific headers.
35461
35462     The reason for this is ease of maintenance and unified look and feel
35463     of all AMCC boards.
35464
35465     Signed-off-by: Stefan Roese <sr@denx.de>
35466
35467 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
35468 Author: Stefan Roese <sr@denx.de>
35469 Date:   Fri Jun 6 15:54:31 2008 +0200
35470
35471     ppc4xx: Unify AMCC's board config files (part 1/3)
35472
35473     This patch series unifies the AMCC eval board ports by introducing
35474     a common include header for all AMCC eval boards:
35475
35476     include/configs/amcc-common.h
35477
35478     This header now includes all common configuration options/defines which
35479     are removed from the board specific headers.
35480
35481     The reason for this is ease of maintenance and unified look and feel
35482     of all AMCC boards.
35483
35484     Signed-off-by: Stefan Roese <sr@denx.de>
35485
35486 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
35487 Author: Remy Bohmer <linux@bohmer.net>
35488 Date:   Thu Jun 5 13:03:36 2008 +0200
35489
35490     DM9000 fix status check fail 0x6d error for trizeps board
35491
35492     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
35493     the status byte need to be checked to identify a valid packet in the fifo
35494
35495     But, The several different Application Notes do not all speak the same
35496     language on these bits. They do not disagree, but only 1 Application Note
35497     noted explicitly that only these 2 bits need to be checked.
35498     Even the datasheets do not mention anything about these 2 bits.
35499
35500     Because the old code, and the kernel check the whole byte, I left this piece
35501     untouched.
35502
35503     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
35504     it should work.
35505
35506     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
35507     in the fifo) is much shorter now, compared to the older U-boot driver code,
35508     so that we can maybe run into a hardware condition now that was never seen
35509     before, or maybe was seen very unfrequently.
35510
35511     Additionaly added a cleanup of a stack variable.
35512
35513     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35514     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35515
35516 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
35517 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35518 Date:   Thu Jun 5 22:29:00 2008 +0900
35519
35520     [MIPS] Update <asm/addrspace.h> header
35521
35522     - Fix traditional KSEG names
35523     - Replace PHYSADDR with CPHYSADDR
35524
35525     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35526
35527 commit f0d5a6f060d00358b85c62a921a423ea8df71184
35528 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35529 Date:   Thu Jun 5 22:29:00 2008 +0900
35530
35531     [MIPS] mips_config.mk: Misc fixes
35532
35533     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
35534     - Modify comments
35535
35536     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35537
35538 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
35539 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35540 Date:   Thu Jun 5 22:29:00 2008 +0900
35541
35542     [MIPS] Kill unused <version.h> inclusions
35543
35544     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35545
35546 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
35547 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35548 Date:   Thu Jun 5 22:29:00 2008 +0900
35549
35550     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
35551
35552     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
35553     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
35554     in the U-Boot system.
35555
35556     The other is we don't have a proper time management counter like timestamp
35557     other ARCHs have. We need the 32-bit millisecond clock counter.
35558
35559     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
35560     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
35561     of calculated CP0 counter cycles in a CFG_HZ.
35562
35563     STRATEGY:
35564
35565     * Fix improper CFG_HZ value to have 1000
35566
35567     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
35568
35569     * timer_init: initialize timestamp and set up the first timer expiration.
35570       Note that we don't need to initialize CP0 count/compare registers here
35571       as they have been already zeroed out on the system reset. Leave them as
35572       they are.
35573
35574     * get_timer: calculate how many timestamps have been passed, then return
35575       base-relative timestamp. Make sure we can easily count missed timestamps
35576       regardless of CP0 count/compare value.
35577
35578     * get_ticks: return the current timestamp, that is get_timer(0).
35579
35580     Most parts are from good old Linux v2.6.16 kernel.
35581
35582     v2:
35583     - Remove FIXME comments as they turned out to be trivial.
35584     - Use CP0 compare register as a global variable for expirelo.
35585     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
35586       instead.
35587
35588     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35589
35590 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
35591 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35592 Date:   Thu Jun 5 22:29:00 2008 +0900
35593
35594     [MIPS] lib_mips/time.c: Fix udelay
35595
35596     What we have to do is just to wait for given micro-seconds. No need to
35597     take into account current time, get_timer and CFG_HZ.
35598
35599     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35600
35601 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
35602 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35603 Date:   Thu Jun 5 22:28:59 2008 +0900
35604
35605     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
35606
35607     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
35608     This patch replaces mips_{compare,count}_set and mips_count_get with
35609     existing macros.
35610
35611     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35612
35613 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
35614 Author: Remy Bohmer <linux@bohmer.net>
35615 Date:   Tue Jun 3 15:48:17 2008 +0200
35616
35617     Get rid of annoying/superfluous bad-checksum warning message
35618
35619     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
35620     It is annoying for ordinary users who start to doubt the network connection
35621     in general when they see messages like this.
35622
35623     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
35624     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
35625     now before checking the checksum.
35626
35627     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35628     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35629
35630 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
35631 Author: Remy Bohmer <linux@bohmer.net>
35632 Date:   Wed Jun 4 10:47:25 2008 +0200
35633
35634     Fix order for reading rx-status registers in 32bit mode of DM9000
35635
35636     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
35637     a bug in reading the rx-status registers in 32bit mode only.
35638     This patch repairs this.
35639
35640     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35641     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35642
35643 commit 98291e2e689096420465074cce926b226d2e71b4
35644 Author: Remy Bohmer <linux@bohmer.net>
35645 Date:   Tue Jun 3 15:26:26 2008 +0200
35646
35647     DM9000: Some minor code cleanups
35648
35649     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
35650     need some other minor cleanup.
35651
35652     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35653     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35654
35655 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
35656 Author: Remy Bohmer <linux@bohmer.net>
35657 Date:   Tue Jun 3 15:26:25 2008 +0200
35658
35659     DM9000: Make driver work properly for DM9000A
35660
35661     The DM9000A network controller does not work with the U-boot DM9000x driver.
35662     Analysis showed that many incoming packets are lost.
35663
35664     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
35665     check for a valid rx packet be done on the interrupt status register, not
35666     directly by performing the dummy read and the rx status check as is currently
35667     the case in the u-boot driver.
35668
35669     When the recommended poll is done as suggested the driver starts working
35670     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
35671     can be more than 1 package in the fifo at the same time.
35672
35673     The driver must perform the rx-status check in a loop and read and handle all
35674     packages until there is no more left _after_ the interrupt RX flag is set.
35675
35676     This change has been tested with DM9000A, DM9000E, DM9000EP.
35677
35678     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35679     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35680
35681 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
35682 Author: Remy Bohmer <linux@bohmer.net>
35683 Date:   Tue Jun 3 15:26:24 2008 +0200
35684
35685     DM9000: Improve eth_reset() routine
35686
35687     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
35688     reset procedure must be done twice to properly reset the DM9000 by means of software.
35689     This errata is not needed anymore for the DM9000A, but it does not bother it.
35690
35691     This change has been tested with DM9000A, DM9000E, DM9000EP.
35692
35693     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35694     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35695
35696 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
35697 Author: Remy Bohmer <linux@bohmer.net>
35698 Date:   Tue Jun 3 15:26:23 2008 +0200
35699
35700     DM9000: improve eth_send() routine
35701
35702     The eth_send routine of the U-boot DM9000x driver does not match the
35703     DM9000 or DM9000A application notes/programming guides.
35704
35705     This change improves the stability of the DM9000A network controller.
35706
35707     This change has been tested with DM9000A, DM9000E, DM9000EP.
35708
35709     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35710     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35711
35712 commit 134e266253c02a7832560da59d394989c4f64453
35713 Author: Remy Bohmer <linux@bohmer.net>
35714 Date:   Tue Jun 3 15:26:22 2008 +0200
35715
35716     DM9000: repair debug logging
35717
35718     It seems that the debugging code of the DM9000x driver in U-boot has not been
35719     compiled for a long time, because it cannot compile...
35720
35721     Also rearranged some loglines to get more useful info while debugging.
35722
35723     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35724     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35725
35726 commit a101361bfe23c120321e45d114c0603b8e0763e9
35727 Author: Remy Bohmer <linux@bohmer.net>
35728 Date:   Tue Jun 3 15:26:21 2008 +0200
35729
35730     DM9000: Add data bus-width auto detection.
35731
35732     The U-boot DM9000x driver contains a compile time bus-width definition for
35733     the databus connected to the network controller.
35734
35735     This compile check makes the code unclear, inflexible and is unneccessary.
35736     It can be asked to the network controller what its bus-width is by reading bits
35737     6 and 7 of the interrupt status register.
35738
35739     The linux kernel already uses a runtime mechanism to determine this bus-width,
35740     so the implementation below looks somewhat like that implementation.
35741
35742     This change has been tested with DM9000A, DM9000E, DM9000EP.
35743
35744     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35745     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35746
35747 commit 63a0afa0c32e5f4ea98a9439542870072437404d
35748 Author: Stefan Roese <sr@denx.de>
35749 Date:   Wed Jun 4 19:19:20 2008 +0200
35750
35751     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
35752
35753     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
35754     introduced by the commit:
35755
35756     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
35757
35758     With this patch SDRAM will get initialized again and booting from NAND
35759     is working again.
35760
35761     Signed-off-by: Stefan Roese <sr@denx.de>
35762     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
35763
35764 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
35765 Author: Wolfgang Denk <wd@denx.de>
35766 Date:   Tue May 27 14:19:30 2008 +0200
35767
35768     Socrates: Fix PCI bus frequency report
35769
35770     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35771
35772 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
35773 Author: Tor Krill <tor@excito.com>
35774 Date:   Thu May 29 11:10:30 2008 +0200
35775
35776     Fix incorrect switch for IF_TYPE in part.c
35777
35778     Use correct field in block_dev_desc_t when writing interface type in
35779     dev_print. Error introduced in 574b3195.
35780
35781     Also added fix from Martin Krause
35782
35783     Signed-off-by: Tor Krill <tor@excito.com>
35784
35785 commit b64b8a0bd310935b70af69ac970952f2b364ae56
35786 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
35787 Date:   Tue May 27 10:25:39 2008 +0200
35788
35789     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
35790
35791     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35792
35793 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
35794 Author: Peter Tyser <ptyser@xes-inc.com>
35795 Date:   Thu May 22 18:56:52 2008 -0500
35796
35797     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
35798
35799     Removed unneeded command line history initialization.  Also, the original
35800     code would access the 'initted' variable before relocation to SDRAM
35801     which resulted in erratic behavior since the bss is not initialized when
35802     executing from flash.
35803
35804     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35805
35806 commit 22f371b63038a4ecab04068877c1089e51a01ba1
35807 Author: Grant Erickson <gerickson@nuovations.com>
35808 Date:   Wed May 21 13:28:30 2008 -0700
35809
35810     PPC4xx: Simplified post_word_{load, store}
35811
35812     This patch simplifies post_word_{load,store} by using the preprocessor
35813     to eliminate redundant, copy-and-pasted code.
35814
35815     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
35816
35817 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
35818 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
35819 Date:   Wed May 7 21:25:33 2008 +0400
35820
35821     cfi_flash: enable M18 flash chips family support.
35822
35823     Added new command set ID. Buffered write command processing is changed
35824     in order to support M18 flash chips family.
35825
35826     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
35827     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
35828
35829 commit 93c56f212ccdadc182018f0769cb284426b88f1d
35830 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
35831 Date:   Wed May 7 21:24:44 2008 +0400
35832
35833     cfi_flash: support of long cmd in U-boot.
35834
35835     Some NOR flash chips needs support of commands with length grether than max
35836     value size of uchar. For example all M18 family chips use 0x1ff command in
35837     buffered write mode as value of program loops count.
35838
35839     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
35840     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
35841
35842 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
35843 Author: Stefan Roese <sr@denx.de>
35844 Date:   Fri May 16 11:06:06 2008 +0200
35845
35846     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
35847
35848     On AD7414 the first value upon bootup is not read correctly.
35849     This is most likely because of the 800ms update time of the
35850     temp register in normal update mode. To get current values
35851     each time we issue the "dtt" command including upon powerup
35852     we switch into one-short mode.
35853
35854     This patch fixes the problem on AD7414 equipped boards (Sequoia,
35855     Canyonlands etc), that temp value printed in the bootup log was
35856     incorrect.
35857
35858     Signed-off-by: Stefan Roese <sr@denx.de>
35859
35860 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
35861 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35862 Date:   Fri May 30 16:55:06 2008 +0200
35863
35864     ppc4xx: Cleanup CPCI405 variant's config file
35865
35866     This patch removes some dead code from CPCI405 board's
35867     config files. JFFS2 support is also removed. It's not used and
35868     CPCI4052 does not build anymore without some size reduction.
35869
35870     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35871
35872 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
35873 Author: Kenneth Johansson <kenneth@southpole.se>
35874 Date:   Thu May 29 16:32:33 2008 +0200
35875
35876     Remove shell variable UNDEF_SYM.
35877
35878     UNDEF_SYM is a shell variable in the main Makefile used to force the
35879     linker to add all u-boot commands to the final image. It has no use here.
35880
35881     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
35882
35883 commit 8c66497e06bf803489c589df58ee591d71033274
35884 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35885 Date:   Fri May 16 11:10:35 2008 +0200
35886
35887     Add support for environment in SPI flash
35888
35889     This is pretty incomplete...it doesn't handle reading the environment
35890     before relocation, it doesn't support redundant environment, and it
35891     doesn't support embedded environment. But apart from that, it does
35892     seem to work.
35893
35894     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35895
35896 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
35897 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35898 Date:   Fri May 16 11:10:34 2008 +0200
35899
35900     SPI Flash: Add "sf" command
35901
35902     This adds a new command, "sf" which can be used to manipulate SPI
35903     flash. Currently, initialization, reading, writing and erasing is
35904     supported.
35905
35906     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35907
35908 commit d25ce7d24cc0f93881559f4009175ea305af65e8
35909 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35910 Date:   Fri May 16 11:10:33 2008 +0200
35911
35912     SPI Flash subsystem
35913
35914     This adds a new SPI flash subsystem.
35915
35916     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
35917     but some preliminary support for other flash types is in place as
35918     well.
35919
35920     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35921
35922 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
35923 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
35924 Date:   Fri May 16 11:10:32 2008 +0200
35925
35926     atmel_spi: Driver for the Atmel SPI controller
35927
35928     This adds a driver for the SPI controller found on most AT91 and AVR32
35929     chips, implementing the new SPI API.
35930
35931     Changed in v4:
35932       - Update to new API
35933       - Handle zero-length transfers appropriately. The user may send a
35934         zero-length SPI transfer with SPI_XFER_END set in order to
35935         deactivate the chip select after a series of transfers with chip
35936         select active. This is useful e.g. when polling the status
35937         register of DataFlash.
35938
35939     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35940
35941 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
35942 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35943 Date:   Fri May 16 11:10:31 2008 +0200
35944
35945     SPI API improvements
35946
35947     This patch gets rid of the spi_chipsel table and adds a handful of new
35948     functions that makes the SPI layer cleaner and more flexible.
35949
35950     Instead of the spi_chipsel table, each board that wants to use SPI
35951     gets to implement three hooks:
35952       * spi_cs_activate(): Activates the chipselect for a given slave
35953       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
35954       * spi_cs_is_valid(): Determines if the given bus/chipselect
35955         combination can be activated.
35956
35957     Not all drivers may need those extra functions however. If that's the
35958     case, the board code may just leave them out (assuming they know what
35959     the driver needs) or rely on the linker to strip them out (assuming
35960     --gc-sections is being used.)
35961
35962     To set up communication parameters for a given slave, the driver needs
35963     to call spi_setup_slave(). This returns a pointer to an opaque
35964     spi_slave struct which must be passed as a parameter to subsequent SPI
35965     calls. This struct can be freed by calling spi_free_slave(), but most
35966     driver probably don't want to do this.
35967
35968     Before starting one or more SPI transfers, the driver must call
35969     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
35970     the hardware. When all transfers are done, the driver must call
35971     spi_release_bus() to make the bus available to others, and possibly
35972     shut down the SPI controller hardware.
35973
35974     spi_xfer() behaves mostly the same as before, but it now takes a
35975     spi_slave parameter instead of a spi_chipsel function pointer. It also
35976     got a new parameter, flags, which is used to specify chip select
35977     behaviour. This may be extended with other flags in the future.
35978
35979     This patch has been build-tested on all powerpc and arm boards
35980     involved. I have not tested NIOS since I don't have a toolchain for it
35981     installed, so I expect some breakage there even though I've tried
35982     fixing up everything I could find by visual inspection.
35983
35984     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
35985     DataFlash drivers posted as a follow-up. I'd like some help testing
35986     other boards that use the existing SPI API.
35987
35988     But most of all, I'd like some comments on the new API. Is this stuff
35989     usable for everyone? If not, why?
35990
35991     Changed in v4:
35992       - Build fixes for various boards, drivers and commands
35993       - Provide common struct spi_slave definition that can be extended by
35994         drivers
35995       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
35996       - Make default bus and mode build-time configurable
35997       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
35998
35999     Changed in v3:
36000       - Add opaque struct spi_slave for controller-specific data associated
36001         with a slave.
36002       - Add spi_claim_bus() and spi_release_bus()
36003       - Add spi_free_slave()
36004       - spi_setup() is now called spi_setup_slave() and returns a
36005         struct spi_slave
36006       - soft_spi now supports four SPI modes (CPOL|CPHA)
36007       - Add bus parameter to spi_setup_slave()
36008       - Convert the new i.MX32 SPI driver
36009       - Convert the new MC13783 RTC driver
36010
36011     Changed in v2:
36012       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
36013         new API.
36014
36015     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36016     Tested-by: Guennadi Liakhovetski <lg@denx.de>
36017
36018 commit 289011207d999b2e4085150d2aa30d547ad9b800
36019 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36020 Date:   Fri May 16 11:10:30 2008 +0200
36021
36022     Move definition of container_of() to common.h
36023
36024     AVR32 and AT91SAM9 both have their own identical definitions of
36025     container_of() taken from the Linux kernel. Move it to common.h so
36026     that all architectures can use it.
36027
36028     container_of() is already used by some drivers, and will be used
36029     extensively by the new and improved SPI API.
36030
36031     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36032
36033 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
36034 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36035 Date:   Fri May 16 11:08:11 2008 +0200
36036
36037     soft_i2c: Pull SDA high before reading
36038
36039     Spotted by Dean Capindale.
36040
36041     Systems that support open-drain GPIO properly are allowed provide an
36042     empty I2C_TRISTATE define. However, this means that we need to be
36043     careful not to drive SDA low when the slave is expected to respond.
36044
36045     This patch adds a missing I2C_SDA(1) to read_byte() required to
36046     tristate the SDA line on systems that support open-drain GPIO.
36047
36048     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36049
36050 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
36051 Author: Stefan Roese <sr@denx.de>
36052 Date:   Mon May 19 11:34:53 2008 +0200
36053
36054     ppc4xx: Remove implementations of testdram()
36055
36056     This patch removes the used testdram() implementations of the board
36057     that are maintained by myself.
36058
36059     Signed-off-by: Stefan Roese <sr@denx.de>
36060
36061 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
36062 Author: Stefan Roese <sr@denx.de>
36063 Date:   Mon Jun 2 17:37:28 2008 +0200
36064
36065     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
36066
36067     Historically the 405 U-Boot port had a dram_init() call in early init
36068     stage. This function was still called from start.S and most of the time
36069     coded in assembler. This is not needed anymore (since a long time) and
36070     boards should implement the common initdram() function in C instead.
36071
36072     This patch now removed the dram_init() call from start.S and removes the
36073     empty implementations that are scattered through most of the 405 board
36074     ports. Some older board ports really implement this dram_init() though.
36075     These are:
36076
36077     csb272
36078     csb472
36079     ERIC
36080     EXBITGEN
36081     W7OLMC
36082     W7OLMG
36083
36084     I changed those boards to call this assembler dram_init() function now
36085     from their board specific initdram() instead. This *should* work, but please
36086     test again on those platforms. And it is perhaps a good idea that those
36087     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
36088     some time. So further patches welcome here.
36089
36090     Signed-off-by: Stefan Roese <sr@denx.de>
36091
36092 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
36093 Author: Stefan Roese <sr@denx.de>
36094 Date:   Mon Jun 2 17:22:11 2008 +0200
36095
36096     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
36097
36098     Signed-off-by: Stefan Roese <sr@denx.de>
36099
36100 commit 39b32be18cd33b53a84065edcd4e465165cc5564
36101 Author: Stefan Roese <sr@denx.de>
36102 Date:   Mon Jun 2 17:20:03 2008 +0200
36103
36104     ppc4xx: Fix common ECC generation code for 440GP style platforms
36105
36106     This patch makes the common 4xx ECC code really usable on 440GP style
36107     platforms.
36108
36109     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
36110     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
36111     we need to make some processor dependant defines used later on by the
36112     driver.
36113
36114     Signed-off-by: Stefan Roese <sr@denx.de>
36115
36116 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
36117 Author: Stefan Roese <sr@denx.de>
36118 Date:   Mon Jun 2 17:13:55 2008 +0200
36119
36120     ppc4xx: Change Kilauea to use the common DDR2 init function
36121
36122     This patch changes the kilauea and kilauea_nand (for NAND booting)
36123     board port to not use a board specific DDR2 init routine anymore. Now
36124     the common code from cpu/ppc4xx is used.
36125
36126     Thanks to Grant Erickson for all his basic work on this 405EX early
36127     bootup.
36128
36129     Signed-off-by: Stefan Roese <sr@denx.de>
36130
36131 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
36132 Author: Stefan Roese <sr@denx.de>
36133 Date:   Mon Jun 2 14:59:21 2008 +0200
36134
36135     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
36136
36137     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
36138     ppc4xx related SDRAM/DDR/DDR2 controller defines.
36139
36140     Signed-off-by: Stefan Roese <sr@denx.de>
36141
36142 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
36143 Author: Stefan Roese <sr@denx.de>
36144 Date:   Mon Jun 2 14:57:41 2008 +0200
36145
36146     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
36147
36148     This patch removes all SDRAM related defines from the PPC4xx headers
36149     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
36150     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
36151
36152     It also introduces new defines for the equipped SDRAM controller based on
36153     which PPC variant is used. There new defines are:
36154
36155     used on 405GR/CR/EP and some Xilinx Virtex boards.
36156
36157     used on 440GP/GX/EP/GR.
36158
36159     used on 440EPx/GRx.
36160
36161     used on 405EX/r/440SP/SPe/460EX/GT.
36162
36163     Signed-off-by: Stefan Roese <sr@denx.de>
36164
36165 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
36166 Author: Stefan Roese <sr@denx.de>
36167 Date:   Mon Jun 2 14:35:44 2008 +0200
36168
36169     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
36170
36171     This patch consolidates the 405 and 440 parts of the NAND booting code
36172     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
36173     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
36174     Only *after* running from this location, nand_boot() is called.
36175
36176     Please note that the initsdram() call is now moved from nand_boot.c
36177     to start.S. I experienced problems with some boards like Kilauea
36178     (405EX), which don't have internal SRAM (OCM) and relocation needs to
36179     be done to SDRAM before the NAND controller can get accessed. When
36180     initdram() is called later on in nand_boot(), this can lead to problems
36181     with variables in the bss sections like nand_ecc_pos[].
36182
36183     Signed-off-by: Stefan Roese <sr@denx.de>
36184     Acked-by: Scott Wood <scottwood@freescale.com>
36185
36186 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
36187 Author: Grant Erickson <gerickson@nuovations.com>
36188 Date:   Thu May 22 14:44:24 2008 -0700
36189
36190     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
36191
36192     This patch (Part 2 of 2):
36193
36194     * Rolls up a suite of changes to enable correct primordial stack and
36195       global data handling when the data cache is used for such a purpose
36196       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
36197
36198     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
36199       eliminating redundant ECC initialization implementations and moving
36200       redundant SDRAM initialization out of board code into shared 4xx
36201       code.
36202
36203     * Enables MCSR visibility on the 405EX(r).
36204
36205     * Enables the use of the data cache for initial RAM on
36206       both AMCC's Kilauea and Makalu and removes a redundant
36207       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
36208
36209       - Removed, per Stefan Roese's request, defunct memory.c file for
36210         Makalu and rolled sdram_init from it into makalu.c.
36211
36212     With respect to the 4xx DDR initialization and ECC unification, there
36213     is certainly more work that can and should be done (file renaming,
36214     etc.). However, that can be handled at a later date on a second or
36215     third pass. As it stands, this patch moves things forward in an
36216     incremental yet positive way for those platforms that utilize this
36217     code and the features associated with it.
36218
36219     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
36220     Signed-off-by: Stefan Roese <sr@denx.de>
36221
36222 commit c821b5f120bedf73867513466412587c6912a8f8
36223 Author: Grant Erickson <gerickson@nuovations.com>
36224 Date:   Thu May 22 14:44:14 2008 -0700
36225
36226     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
36227
36228     This patch (Part 1 of 2):
36229
36230     * Rolls up a suite of changes to enable correct primordial stack and
36231       global data handling when the data cache is used for such a purpose
36232       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
36233
36234     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
36235       eliminating redundant ECC initialization implementations and moving
36236       redundant SDRAM initialization out of board code into shared 4xx
36237       code.
36238
36239     * Enables MCSR visibility on the 405EX(r).
36240
36241     * Enables the use of the data cache for initial RAM on
36242       both AMCC's Kilauea and Makalu and removes a redundant
36243       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
36244
36245       - Removed, per Stefan Roese's request, defunct memory.c file for
36246         Makalu and rolled sdram_init from it into makalu.c.
36247
36248     With respect to the 4xx DDR initialization and ECC unification, there
36249     is certainly more work that can and should be done (file renaming,
36250     etc.). However, that can be handled at a later date on a second or
36251     third pass. As it stands, this patch moves things forward in an
36252     incremental yet positive way for those platforms that utilize this
36253     code and the features associated with it.
36254
36255     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
36256     Signed-off-by: Stefan Roese <sr@denx.de>
36257
36258 commit a439680019e06171d4a5694b7992accce87f590e
36259 Author: Grant Erickson <gerickson@nuovations.com>
36260 Date:   Wed May 21 13:28:30 2008 -0700
36261
36262     PPC4xx: Simplified post_word_{load, store}
36263
36264     This patch simplifies post_word_{load,store} by using the preprocessor
36265     to eliminate redundant, copy-and-pasted code.
36266
36267     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
36268
36269 commit f979690ee337450b2030aba128f95b7a8d9881c0
36270 Author: Kumar Gala <galak@kernel.crashing.org>
36271 Date:   Thu May 15 15:13:08 2008 -0500
36272
36273     Fix warnings from gcc-4.3.0 build on a ppc host
36274
36275     * The cfi_flash.c memset fix actual allows the board to boot so there is
36276       a bit more going on here than just resolving warnings associated with
36277       uninitialized variables.
36278
36279     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
36280       inline function 'ext2_find_next_zero_bit' which is not static
36281
36282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36283
36284 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
36285 Author: Becky Bruce <becky.bruce@freescale.com>
36286 Date:   Wed May 14 13:09:51 2008 -0500
36287
36288     MPC512x: Change traps.c to not reference non-addressable memory
36289
36290     Currently, END_OF_RAM is used by the trap code to determine if
36291     we should attempt to access the stack pointer or not. However,
36292     on systems with a lot of RAM, only a subset of the RAM is
36293     guaranteed to be mapped in and accessible.  Change END_OF_RAM
36294     to use get_effective_memsize() instead of using the raw ram
36295     size out of the bd.
36296
36297     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36298
36299 commit 81673e9ae14b771cd13faf19947192599cae3959
36300 Author: Kumar Gala <galak@kernel.crashing.org>
36301 Date:   Tue May 13 19:01:54 2008 -0500
36302
36303     Make sure common.h is the first include.
36304
36305     If common.h isn't first we can get CONFIG_ options defined in the
36306     board config file ignored.  This can cause an issue if any of those
36307     config options impact the size of types of data structures
36308     (eg CONFIG_PHYS_64BIT).
36309
36310     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36311
36312 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
36313 Author: Marian Balakowicz <m8@semihalf.com>
36314 Date:   Tue May 13 15:53:29 2008 +0200
36315
36316     Avoid initrd and logbuffer area overlaps
36317
36318     Add logbuffer to reserved LMB areas to prevent initrd allocation
36319     from overlaping with it.
36320
36321     Make sure to use correct logbuffer base address.
36322
36323     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36324
36325 commit 6956d53d9934862507f83f0e3255dfd4662e7482
36326 Author: Sascha Laue <sascha.laue@liebherr.com>
36327 Date:   Tue May 13 13:29:54 2008 +0200
36328
36329     lwmon5: add memory-pattern-test to FPGA POST.
36330
36331 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
36332 Author: Becky Bruce <becky.bruce@freescale.com>
36333 Date:   Thu May 8 19:02:51 2008 -0500
36334
36335     PPC: 86xx Add bat registers to reginfo command
36336
36337     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36338
36339 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
36340 Author: Becky Bruce <becky.bruce@freescale.com>
36341 Date:   Fri May 9 15:41:35 2008 -0500
36342
36343     PPC: Add print_bats() to lib_ppc/bat_rw.c
36344
36345     This function prints the values of all the BAT register
36346     pairs - I needed this for debug earlier this week; adding it to
36347     lib_ppc so others can use it (and add it to reginfo commands
36348     if so desired).
36349
36350     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36351
36352 commit c148f24c15743a02e855636e6bed013bd121f7f2
36353 Author: Becky Bruce <becky.bruce@freescale.com>
36354 Date:   Thu May 15 21:29:04 2008 -0500
36355
36356     PPC: Change lib_ppc/bat_rw.c to use high bats
36357
36358     Currently, this code only deals with BATs 0-3, which makes
36359     it useless on systems that support BATs 4-7.  Add the
36360     support for these registers.
36361
36362     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
36363
36364 commit 31d826722434931e1152a09d140187dcf72f8aac
36365 Author: Becky Bruce <becky.bruce@freescale.com>
36366 Date:   Thu May 8 19:02:12 2008 -0500
36367
36368     PPC: Create and use CONFIG_HIGH_BATS
36369
36370     Change all code that conditionally operates on high bat
36371     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
36372     instead of the myriad ways this is done now.  Define the option
36373     for every config for which high bats are supported (and
36374     enabled by early boot, on parts where they're not always
36375     enabled)
36376
36377     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36378
36379 commit aa3b8bf9c30065bb2ea852799d32db5020598495
36380 Author: Wolfgang Grandegger <wg@grandegger.com>
36381 Date:   Wed May 28 19:55:19 2008 +0200
36382
36383     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
36384
36385     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36386     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36387
36388 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
36389 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36390 Date:   Wed May 28 13:06:25 2008 -0500
36391
36392     ColdFire: Add 10 base ethernet support for mcf5445x
36393
36394     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36395     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36396
36397 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
36398 Author: Jason McMullan <mcmullan@netapp.com>
36399 Date:   Fri May 30 00:53:38 2008 +0900
36400
36401     mips: Add an 'include/asm/errno.h', like all other architectures
36402
36403     All other u-boot architectures have an include/asm/errno.h, so
36404     this change adds it to the mips include/asm-mips headers also.
36405
36406     Stolen from Linux 2.6.25.
36407
36408     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
36409
36410 commit e2ad8426624bac457acc6925b6ff408e9bf20466
36411 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36412 Date:   Fri May 30 00:53:38 2008 +0900
36413
36414     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
36415
36416     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36417
36418 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
36419 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36420 Date:   Fri May 30 00:53:38 2008 +0900
36421
36422     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
36423
36424     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36425
36426 commit bf462ae450a7f2eeeddc699ed345b391e3263540
36427 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36428 Date:   Fri May 30 00:53:37 2008 +0900
36429
36430     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
36431
36432     No functional changes.
36433
36434     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36435
36436 commit 89a1550ec6b74452274a7a23127936e2c7eec711
36437 Author: Jason McMullan <mcmullan@netapp.com>
36438 Date:   Fri May 30 00:53:37 2008 +0900
36439
36440     mips: If CONFIG_CMD_SPI is defined, call spi_init()
36441
36442     The mips architecture currently does not call 'spi_init()' in the generic
36443     board initialization routine is CONFIG_CMD_SPI is defined.
36444
36445     This patch rectifies that problem.
36446
36447     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
36448     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36449
36450 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
36451 Author: Jason McMullan <mcmullan@netapp.com>
36452 Date:   Fri May 30 00:53:37 2008 +0900
36453
36454     [MIPS] lib_mips/board.c: Add nand_init
36455
36456     This patch adds the standard 'nand_init()' call to the mips generic
36457     'board_init_r()' call, bringing MIPS in line with the other architectures.
36458
36459     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
36460     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36461
36462 commit d6ac2ed893c2168738aee01579d6283af8d37045
36463 Author: Scott Wood <scottwood@freescale.com>
36464 Date:   Thu May 22 10:49:46 2008 -0500
36465
36466     Remove prototypes of nand_init() in favor of including nand.h.
36467
36468     Likewise with onenand_init().
36469
36470     Signed-off-by: Scott Wood <scottwood@freescale.com>
36471
36472 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
36473 Author: Scott Wood <scottwood@freescale.com>
36474 Date:   Thu May 22 10:49:00 2008 -0500
36475
36476     Make onenand_uboot.h self-sufficient.
36477
36478     Don't assume types are provided by previously included headers.
36479
36480     Signed-off-by: Scott Wood <scottwood@freescale.com>
36481
36482 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
36483 Author: Dirk Behme <dirk.behme@gmail.com>
36484 Date:   Wed Jan 16 14:26:59 2008 +0100
36485
36486     nand: Correct NAND erase percentage output
36487
36488     For NAND erase sizes smaller than one NAND erase block, erase
36489     percentage output becomes grater than 100% e.g.
36490
36491     -- cut --
36492       > nand info
36493     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
36494       > nand erase 0x100000 0x2000
36495     NAND erase: device 0 offset 0x100000, size 0x2000
36496     Erasing at 0x100000 -- 200% complete.
36497     OK
36498       >
36499     -- cut --
36500
36501     Correct this and give user a warning that more is erased than specified:
36502
36503     -- cut --
36504       > nand erase 0x100000 0x2000
36505     NAND erase: device 0 offset 0x100000, size 0x2000
36506     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
36507                Erasing 0x00004000 instead
36508     Erasing at 0x100000 -- 100% complete.
36509     OK
36510       >
36511     -- cut --
36512
36513     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
36514
36515 commit 5922db6c0948506be91e0de44e7a6863a18a417f
36516 Author: Stelian Pop <stelian@popies.net>
36517 Date:   Tue May 13 17:31:24 2008 +0200
36518
36519     Cleanup nand_info[] declaration.
36520
36521     The nand_info array is declared as extern in several .c files.
36522     Those days, nand.h contains a reference to the array, so there is
36523     no need to declare it elsewhere.
36524
36525     Signed-off-by: Stelian Pop <stelian@popies.net>
36526     Signed-off-by: Scott Wood <scottwood@freescale.com>
36527
36528 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
36529 Author: Scott Wood <scottwood@freescale.com>
36530 Date:   Mon May 19 09:30:43 2008 -0500
36531
36532     NAND: Provide a sane default for NAND_MAX_CHIPS.
36533
36534     This allows the header to be included regardless of whether a board's
36535     config file provides NAND-related defininitions.
36536
36537     Signed-off-by: Scott Wood <scottwood@freescale.com>
36538
36539 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
36540 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36541 Date:   Mon May 26 12:19:10 2008 +0200
36542
36543     avr32: Fix theoretical race in udelay()
36544
36545     If the specified delay is very short, the cycle counter may go past the
36546     "end" time we are waiting for before we get around to reading it.
36547
36548     Fix it by checking the different between the cycle count "now" and the
36549     cycle count at the beginning. This will work as long as the delay
36550     measured in number of cycles is below 2^31.
36551
36552     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36553
36554 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
36555 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36556 Date:   Wed May 21 13:01:09 2008 +0200
36557
36558     avr32: Compile atmel_mci.o conditionally
36559
36560     Remove #ifdef CONFIG_MMC from the source file and use conditional
36561     compilation in the Makefile instead.
36562
36563     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36564
36565 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
36566 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36567 Date:   Thu May 22 12:28:25 2008 +0200
36568
36569     avr32: Fix wrong error flags in atmel_mci driver
36570
36571     Make sure we check for CRC errors when sending commands that use CRC
36572     checking.
36573
36574     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
36575     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36576
36577 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
36578 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36579 Date:   Wed May 21 11:10:59 2008 +0200
36580
36581     avr32: Fix two warnings in atmel_mci.c
36582
36583     The warnings are harmless but annoying. Let's fix them.
36584
36585     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36586
36587 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
36588 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36589 Date:   Mon May 19 11:36:28 2008 +0200
36590
36591     avr32: Rework SDRAM initialization code
36592
36593     This cleans up the SDRAM initialization and related code a bit, and
36594     allows faster booting.
36595
36596       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
36597       * Remove memory test from sdram_init() and make caller responsible
36598         for verifying the SDRAM and determining its size.
36599       * Remove base_address member from struct sdram_config (was sdram_info)
36600       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
36601       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
36602
36603     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36604
36605 commit 95107b7c028806919630bf02c653aa8f4f867c94
36606 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36607 Date:   Mon May 19 11:27:37 2008 +0200
36608
36609     avr32: Do stricter stack checking in the exception handler
36610
36611     Don't do a stack dump if the stack pointer is outside the memory area
36612     reserved for stack.
36613
36614     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36615
36616 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
36617 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36618 Date:   Fri May 2 15:32:57 2008 +0200
36619
36620     avr32: Use the same entry point for reset and exception handling
36621
36622     Since the reset vector is always aligned to a very large boundary, we
36623     can save a couple of KB worth of alignment padding by placing the
36624     exception vectors at the same address.
36625
36626     Deciding which one it is is easy: If we're handling an exception, the
36627     CPU is in Exception mode. If we're starting up after reset, the CPU is
36628     in Supervisor mode. So this adds a very minimal overhead to the reset
36629     path (only executed once) and the exception handling path (normally
36630     never executed at all.)
36631
36632     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36633
36634 commit 0c16eed2189a190bd5655b33c029f809a9b31128
36635 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36636 Date:   Fri May 2 15:24:22 2008 +0200
36637
36638     avr32: Put memset in its own section
36639
36640     All C code is compiled with -ffunction-sections -fdata-sections.
36641     Assembly functions should get their own sections as well so that
36642     everything looks consistent.
36643
36644     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36645
36646 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
36647 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36648 Date:   Fri May 2 15:21:40 2008 +0200
36649
36650     avr32: Rename pm_init() as clk_init() and make SoC-specific
36651
36652     pm_init() was always more about clock initialization than anything
36653     else. Dealing with PLLs, clock gating and such is also inherently
36654     SoC-specific, so move it into a SoC-specific directory.
36655
36656     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36657
36658 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
36659 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36660 Date:   Wed Apr 30 16:15:57 2008 +0200
36661
36662     avr32: Use new-style Makefile for the at32ap platform
36663
36664     This makes it easier to avoid compiling certain files later.
36665
36666     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36667
36668 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
36669 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36670 Date:   Wed Apr 30 14:36:47 2008 +0200
36671
36672     avr32: Remove unused file cpu/at32ap/pm.c
36673
36674     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36675
36676 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
36677 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36678 Date:   Wed Apr 30 14:19:28 2008 +0200
36679
36680     avr32: Clean up the HMATRIX code
36681
36682     Rework the HMATRIX configuration interface so that it becomes easier
36683     to configure the HMATRIX for boards with special needs, and add new
36684     parts.
36685
36686     The HMATRIX header file has been split into a general,
36687     chip-independent part with register definitions, etc. and a
36688     chip-specific part with SFR bitfield definitions and master/slave
36689     identifiers.
36690
36691     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36692
36693 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
36694 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36695 Date:   Thu Nov 22 12:14:11 2007 +0100
36696
36697     avr32: Add support for the ATSTK1006 board
36698
36699     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
36700     board. It's currently in production and will be available soon.
36701
36702     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36703
36704 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
36705 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36706 Date:   Tue Apr 29 12:53:05 2008 +0200
36707
36708     avr32: Get rid of the .flashprog section
36709
36710     The .flashprog section was only needed back when we were running
36711     directly from flash, and it's even more useless on NGW100 since it
36712     uses the CFI flash driver which never used this workaround in the
36713     first place.
36714
36715     Remove it on STK1000 as well, and get rid of all the associated code and
36716     annotations.
36717
36718     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36719
36720 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
36721 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36722 Date:   Wed Apr 30 13:09:56 2008 +0200
36723
36724     avr32: Use correct condition around macb clock accessors
36725
36726     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
36727     the chip has a MACB controller, not when it has a USART.
36728
36729     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36730
36731 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
36732 Author: David Brownell <david-b@pacbell.net>
36733 Date:   Wed Apr 16 22:57:58 2008 -0700
36734
36735     avr32: Disable the AP7000 internal watchdog on startup
36736
36737     This patch forces the watchdog off in all cases.  That will at least
36738     get rid of the constant reboot cycle, though it won't let the watchdog
36739     actually run in the new kernels:  its probe() comes up with a polite
36740     warning.
36741
36742     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36743
36744 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
36745 Author: David Brownell <david-b@pacbell.net>
36746 Date:   Fri Feb 22 12:54:39 2008 -0800
36747
36748     avr32: stk1002 and ngw100 convergence
36749
36750     Make STK1002 and NGW100 boards act more alike:
36751       - STK boards can use as many arguments as NGW
36752       - STK boards don't need to manage FPGAs either
36753       - NGW commands should match STK ones
36754
36755     Also spell U-Boot right in prompts for STK1002 and NGW100.
36756
36757     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
36758     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
36759     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36760
36761 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
36762 Author: Sergei Poselenov <sposelenov@emcraft.com>
36763 Date:   Tue May 27 13:47:00 2008 +0200
36764
36765     Socrates: Fix PCI bus frequency report
36766
36767     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36768
36769 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
36770 Author: Sergei Poselenov <sposelenov@emcraft.com>
36771 Date:   Tue May 27 11:49:13 2008 +0200
36772
36773     Socrates: Added USB support.
36774
36775     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36776
36777 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
36778 Author: Sergei Poselenov <sposelenov@emcraft.com>
36779 Date:   Tue May 27 11:35:02 2008 +0200
36780
36781     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
36782
36783     In case of several PCI USB controllers on a board this variable
36784     specifys which controller to use.
36785     See doc/README.generic_usb_ohci for details.
36786
36787     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36788
36789 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
36790 Author: Sergei Poselenov <sposelenov@emcraft.com>
36791 Date:   Tue May 27 10:36:07 2008 +0200
36792
36793     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
36794
36795     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36796
36797 commit 83e9d7a2614d4006b92690afa3390c291734267e
36798 Author: Sergei Poselenov <sposelenov@emcraft.com>
36799 Date:   Mon May 26 18:16:04 2008 +0200
36800
36801     Socrates: Config file cleanup.
36802
36803     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36804
36805 commit 602cac1389b755b223272f2328a47e6f8c240848
36806 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36807 Date:   Sat May 24 12:47:46 2008 +0200
36808
36809     MAKEALL: add at91 list
36810
36811     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36812
36813 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
36814 Author: Ron Madrid <ron_madrid@sbcglobal.net>
36815 Date:   Fri May 23 15:37:05 2008 -0700
36816
36817     Add Marvell 88E1118 support for TSEC
36818
36819     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
36820     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36821
36822 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
36823 Author: Jens Gehrlein <sew_s@tqs.de>
36824 Date:   Mon May 5 14:06:11 2008 +0200
36825
36826     smc911x: add 16 bit support
36827
36828     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
36829     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36830
36831 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
36832 Author: Christian Eggers <ceggers@gmx.de>
36833 Date:   Wed May 21 21:29:10 2008 +0200
36834
36835     Fix endianess conversion in usb_ohci.c
36836
36837     Sorry, I forgot this line:
36838
36839     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36840
36841     I think this must be swapped (result may be equal).
36842
36843 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
36844 Author: Christian Eggers <ceggers@gmx.de>
36845 Date:   Wed May 21 22:12:00 2008 +0200
36846
36847     USB: replace old swap_ with proper endianess conversion macros
36848
36849     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36850     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36851
36852 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
36853 Author: Christian Eggers <ceggers@gmx.de>
36854 Date:   Wed May 21 21:29:10 2008 +0200
36855
36856     Fix endianess conversion in usb_ohci.c
36857
36858     Signed-off-by: Christian Eggers <ceggers@gmx.de>
36859     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36860
36861 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
36862 Author: Sergei Poselenov <sposelenov@emcraft.com>
36863 Date:   Thu May 22 01:15:53 2008 +0200
36864
36865     USB: add support for multiple PCI OHCI controllers
36866
36867     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
36868     In case of several PCI USB controllers on a board this variable
36869     specifys which controller to use.
36870
36871     Also add USB support for sokrates board.
36872
36873     See doc/README.generic_usb_ohci for details.
36874
36875     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36876     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36877
36878 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
36879 Author: Wolfgang Denk <wd@denx.de>
36880 Date:   Wed May 21 16:56:08 2008 +0200
36881
36882     Fix some whitespace issues
36883
36884     introduced by 53677ef18 "Big white-space cleanup."
36885
36886     Signed-off-by: Wolfgang Denk <wd@denx.de>
36887
36888 commit 4416603aeb06861b468b06a981e52c3ff805db7b
36889 Author: York Sun <yorksun@freescale.com>
36890 Date:   Mon May 12 14:36:39 2008 -0500
36891
36892     Make ads5121 out-of-tree compiling safe
36893
36894     Reuse the existing DIU driver in board/freescale/common.
36895
36896     Signed-off-by: York Sun <yorksun@freescale.com>
36897
36898 commit 0e1bad47cd345c76c91a64caf41011e431b62599
36899 Author: York Sun <yorksun@freescale.com>
36900 Date:   Mon May 5 10:20:01 2008 -0500
36901
36902     Adding DIU support for Freescale 5121ADS
36903
36904     Add DIU and cfb console support to FSL 5121ADS board.
36905
36906     Use #define CONFIG_VIDEO in config file to enable fb console.
36907
36908     Signed-off-by: York Sun <yorksun@freescale.com>
36909
36910 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
36911 Author: York Sun <yorksun@freescale.com>
36912 Date:   Mon May 5 10:20:00 2008 -0500
36913
36914     Replace DPRINTF with debug
36915
36916     Remove DPRINTF macro and replace it with generic debug macro.
36917
36918     Signed-off-by: York Sun <yorksun@freescale.com>
36919
36920 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
36921 Author: York Sun <yorksun@freescale.com>
36922 Date:   Mon May 5 10:19:59 2008 -0500
36923
36924     Move pixel clock setting to board file
36925
36926     The clock divider has different format in 5121 and 8610. This patch moves it to
36927     board specific code.
36928
36929     Signed-off-by: York Sun <yorksun@freescale.com>
36930
36931 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
36932 Author: Wolfgang Denk <wd@denx.de>
36933 Date:   Tue May 20 16:00:29 2008 +0200
36934
36935     Big white-space cleanup.
36936
36937     This commit gets rid of a huge amount of silly white-space issues.
36938     Especially, all sequences of SPACEs followed by TAB characters get
36939     removed (unless they appear in print statements).
36940
36941     Also remove all embedded "vim:" and "vi:" statements which hide
36942     indentation problems.
36943
36944     Signed-off-by: Wolfgang Denk <wd@denx.de>
36945
36946 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
36947 Author: Sergei Poselenov <sposelenov@emcraft.com>
36948 Date:   Thu May 8 17:46:23 2008 +0200
36949
36950     socrates: fix second TSEC configuration (it is actually TSEC3)
36951
36952     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36953
36954 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
36955 Author: Sergei Poselenov <sposelenov@emcraft.com>
36956 Date:   Thu May 8 14:17:08 2008 +0200
36957
36958     Fixed reset for socrates
36959
36960     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36961
36962 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
36963 Author: Sergei Poselenov <sposelenov@emcraft.com>
36964 Date:   Wed May 7 15:10:49 2008 +0200
36965
36966     socrates: changes to support FDT
36967
36968     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36969     Signed-off-by: Wolfgang Denk <wd@denx.de>
36970
36971 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
36972 Author: Sergei Poselenov <sposelenov@emcraft.com>
36973 Date:   Wed Apr 30 11:42:50 2008 +0200
36974
36975     Initial support for "Socrates" board
36976
36977     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36978
36979 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
36980 Author: Yuri Tikhonov <yur@emcraft.com>
36981 Date:   Thu May 8 15:46:42 2008 +0200
36982
36983     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
36984
36985     This way we become able to utilize the full post_log_word for POST
36986     activities (overwise, POST ECC, which has 0x8000 ID, could be
36987     erroneously treated as started in post_output_backlog() even if there
36988     was actually no POST ECC run (because of OCM POST failure, for
36989     example).
36990
36991     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36992
36993 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
36994 Author: Yuri Tikhonov <yur@emcraft.com>
36995 Date:   Thu May 8 15:46:02 2008 +0200
36996
36997     POST: mark OCM test as POST_STOP
36998
36999     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37000
37001 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
37002 Author: Yuri Tikhonov <yur@emcraft.com>
37003 Date:   Thu May 8 15:45:26 2008 +0200
37004
37005     POST: add POST_STOP flag
37006
37007     Don't run futher tests in case of a test fails that is marked as
37008     POST_STOP.
37009
37010     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37011     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37012
37013 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
37014 Author: Yuri Tikhonov <yur@emcraft.com>
37015 Date:   Thu May 8 15:44:16 2008 +0200
37016
37017     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
37018
37019     Switch the OCM testid with the codec one. The reason is that current
37020     implementation requires the POST_ROM testid to fit into lower 16
37021     bits, and the codec test will never run with POST_ROM hopefully.
37022
37023     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37024
37025 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
37026 Author: Yuri Tikhonov <yur@emcraft.com>
37027 Date:   Thu May 8 15:43:28 2008 +0200
37028
37029     lwmon5: enable OCM post test on lwmon5 board
37030
37031     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37032
37033 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
37034 Author: Yuri Tikhonov <yur@emcraft.com>
37035 Date:   Thu May 8 15:42:47 2008 +0200
37036
37037     POST: OCM test added.
37038
37039     Added OCM test to POST layer. This version runs before all other tests
37040     but doesn't yet interrupt post sequence on failure.
37041
37042     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37043     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37044
37045 commit 6891260bdd935a382c95d9fa333922b0dfded68a
37046 Author: Yuri Tikhonov <yur@emcraft.com>
37047 Date:   Thu May 8 15:40:39 2008 +0200
37048
37049     POST: typo fix
37050
37051     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
37052
37053 commit 727f63334676e760877d43bfb8f0e9331ac8b101
37054 Author: Hebbar <gururajakr@sanyo.co.in>
37055 Date:   Tue May 20 02:16:36 2008 -0700
37056
37057     common/usb.c: fix incorrect escape sequence
37058
37059     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
37060
37061 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
37062 Author: York Sun <yorksun@freescale.com>
37063 Date:   Thu May 15 15:26:27 2008 -0500
37064
37065     Fix 8313ERDB board configuration
37066
37067     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
37068     Correct TSEC1 vs TSEC2 assignment.
37069     Define ETHADDR and ETH1ADDR always.
37070
37071     Signed-off-by: York Sun <yorksun@freescale.com>
37072     Signed-off-by: Timur Tabi <timur@freescale.com>
37073
37074 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
37075 Author: Jon Loeliger <jdl@freescale.com>
37076 Date:   Mon May 19 09:47:25 2008 -0500
37077
37078     mpc86xx: Removed unused and unconfigured memory test code.
37079
37080     Besides, other common code exists.
37081
37082     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37083
37084 commit 180a90abdae72587c0f679edf8991455e559440d
37085 Author: Wolfgang Denk <wd@denx.de>
37086 Date:   Mon May 19 12:47:11 2008 +0200
37087
37088     Release v1.3.3
37089
37090     Update CHANGELOG for release.
37091
37092     Signed-off-by: Wolfgang Denk <wd@denx.de>
37093
37094 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
37095 Author: Stefan Roese <sr@denx.de>
37096 Date:   Mon May 19 07:14:38 2008 +0200
37097
37098     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
37099
37100     When SATA is selected (via jumper J6) we need to disable the first PCIe
37101     node in the device tree, so that Linux doesn't initialize it. Otherwise
37102     the Linux SATA driver will fail to detect the devices.
37103
37104     The same goes the other way around too. So if PCIe is selected we need
37105     to disable the SATA node in the device tree.
37106
37107     This is because PCIe port 0 and SATA on 460EX share the same pins
37108     (multiplexed) and we have to configure in U-Boot which peripheral is
37109     enabled.
37110
37111     Signed-off-by: Stefan Roese <sr@denx.de>
37112
37113 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
37114 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37115 Date:   Sun May 18 19:09:58 2008 +0200
37116
37117     i386: Fix multiple definitions of __show_boot_progress
37118
37119     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37120
37121 commit 311f3446930c1e64c12026c1cfd00500b05be52d
37122 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37123 Date:   Sun May 18 19:09:57 2008 +0200
37124
37125     sc530_spunk: add missing SOBJS entry
37126
37127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37128
37129 commit a559317143b4f95927b08cd388707e6f077e95fa
37130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37131 Date:   Sun May 18 19:09:56 2008 +0200
37132
37133     sc520_spunk: Fix flash
37134
37135     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
37136     flash.c:398: error: label at end of compound statement
37137
37138     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37139
37140 commit 91f221317af64191ee8caf303ea9305943158691
37141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37142 Date:   Sun May 18 19:09:49 2008 +0200
37143
37144     drivers/pcmcia: add missing i82365
37145
37146     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37147
37148 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
37149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37150 Date:   Sun May 18 19:09:47 2008 +0200
37151
37152     i386/bootm: remove unused var
37153
37154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37155
37156 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
37157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37158 Date:   Sun May 18 19:09:45 2008 +0200
37159
37160     example/gitignore: update with all generated examples
37161
37162     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37163
37164 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
37165 Author: Wolfgang Denk <wd@denx.de>
37166 Date:   Thu May 15 00:42:45 2008 +0200
37167
37168     TQM8272: fix out-of-tree building
37169
37170     ...and add to MAKEALL script
37171
37172     Signed-off-by: Wolfgang Denk <wd@denx.de>
37173
37174 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
37175 Author: Wolfgang Denk <wd@denx.de>
37176 Date:   Wed May 14 23:34:53 2008 +0200
37177
37178     environment: fix bug introduced by commit a8409f4f1ac8
37179
37180     env_get_char is not a function, but a pointer to one.
37181
37182     Signed-off-by: Wolfgang Denk <wd@denx.de>
37183
37184 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
37185 Author: Gary Jennejohn <garyj@denx.de>
37186 Date:   Wed May 14 13:39:22 2008 +0200
37187
37188     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
37189
37190     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
37191     use a redundant environment.
37192
37193     Signed-off-by: Gary Jennejohn <garyj@denx.de>
37194
37195 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
37196 Author: Wolfgang Denk <wd@denx.de>
37197 Date:   Wed May 14 13:55:30 2008 +0200
37198
37199     Fix config files for out-of-tree building
37200
37201     Several board/<...>/config.mk files include dynamically built (by
37202     the Makefile) config files but used the wrong file name of
37203         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
37204     instead if the correct
37205         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
37206
37207     The bug is nasty because the build result is correct for the (normal)
37208     in-tree builds, and because 'sinclude' is used no errors get raised
37209     even for out-of-tree build tests. But out-of-tree builds use an
37210     incomplete and thus usually incorrect configuration...
37211
37212     Signed-off-by: Wolfgang Denk <wd@denx.de>
37213
37214 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
37215 Author: Stefan Roese <sr@denx.de>
37216 Date:   Wed May 14 13:40:03 2008 +0200
37217
37218     ppc4xx: Fix bogus Canyonlands config.mk
37219
37220     This patch fixes the canyonlands config.mk file to enable correct
37221     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
37222
37223     Signed-off-by: Stefan Roese <sr@denx.de>
37224
37225 commit fdd1247a66d788a3446244f6fde9955a93c26322
37226 Author: Stefan Roese <sr@denx.de>
37227 Date:   Wed May 14 10:32:32 2008 +0200
37228
37229     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
37230
37231     Canyonlands has a file ddr2_fixed.c which needs special treatment when
37232     building in separate directory. It has to be linked to build directory
37233     otherwise it is not seen.
37234
37235     Signed-off-by: Stefan Roese <sr@denx.de>
37236
37237 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
37238 Author: Wolfgang Denk <wd@denx.de>
37239 Date:   Wed May 14 12:22:49 2008 +0200
37240
37241     environment: cleanup prototype declarations of env functions.
37242
37243     Signed-off-by: Wolfgang Denk <wd@denx.de>
37244
37245 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
37246 Author: Wolfgang Denk <wd@denx.de>
37247 Date:   Wed May 14 12:21:48 2008 +0200
37248
37249     linkstation_HGLAN: Fix out of tree building.
37250
37251     Signed-off-by: Wolfgang Denk <wd@denx.de>
37252
37253 commit 085551c05ca09e6c491ea11a1c6727a36776a545
37254 Author: Stefan Roese <sr@denx.de>
37255 Date:   Wed May 14 10:32:32 2008 +0200
37256
37257     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
37258
37259     Canyonlands has a file ddr2_fixed.c which needs special treatment when
37260     building in separate directory. It has to be linked to build directory
37261     otherwise it is not seen.
37262
37263     Signed-off-by: Stefan Roese <sr@denx.de>
37264
37265 commit 1510b82d50615f344e89d42533e8224cce067dc0
37266 Author: Wolfgang Denk <wd@denx.de>
37267 Date:   Tue May 13 23:15:52 2008 +0200
37268
37269     Makefile: fix "error: version_autogenerated.h: No such file or directory"
37270
37271     Signed-off-by: Wolfgang Denk <wd@denx.de>
37272
37273 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
37274 Author: Stelian Pop <stelian@popies.net>
37275 Date:   Tue May 13 17:31:24 2008 +0200
37276
37277     Cleanup nand_info[] declaration.
37278
37279     The nand_info array is declared as extern in several .c files.
37280     Those days, nand.h contains a reference to the array, so there is
37281     no need to declare it elsewhere.
37282
37283     Signed-off-by: Stelian Pop <stelian@popies.net>
37284     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37285
37286 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
37287 Author: Stefan Roese <sr@denx.de>
37288 Date:   Tue May 13 20:22:01 2008 +0200
37289
37290     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
37291
37292     Signed-off-by: Stefan Roese <sr@denx.de>
37293
37294 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
37295 Author: Wolfgang Denk <wd@denx.de>
37296 Date:   Mon May 12 01:11:21 2008 +0200
37297
37298     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
37299
37300     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
37301     which broke many PowerPC boards.
37302
37303 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
37304 Author: Wolfgang Denk <wd@denx.de>
37305 Date:   Mon May 12 00:56:28 2008 +0200
37306
37307     Revert "Avoid initrd and logbuffer area overlaps"
37308
37309     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
37310     which breaks building on all PPC boards that don't use a log buffer.
37311
37312 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
37313 Author: Nick Spence <nick.spence@freescale.com>
37314 Date:   Sat May 10 14:02:04 2008 -0700
37315
37316     Fix offset calculation for multi-type legacy images.
37317
37318     Calculation of tail was incorrect when size % 4 == 0.
37319
37320     New code removes the conditional and does the same thing but with arithmetic
37321
37322     Signed-off-by: Nick Spence <nick.spence@freescale.com>
37323
37324 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
37325 Author: Wolfgang Denk <wd@denx.de>
37326 Date:   Mon May 12 00:40:58 2008 +0200
37327
37328     Revert "Change env_get_char from a global function ptr to a function."
37329
37330     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
37331     which is known to break booting from dataflash and NAND.
37332
37333 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
37334 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37335 Date:   Sun May 11 23:13:57 2008 +0200
37336
37337     API: remove duplicate syscall check
37338
37339     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37340
37341 commit 67e3beb52c320b0a31cf030716c99392cde2d532
37342 Author: Stelian Pop <stelian@popies.net>
37343 Date:   Fri May 9 21:46:51 2008 +0200
37344
37345     AT91: Cleanup unused config header file definitions.
37346
37347     CONFIG_ENV_OVERWRITE is commented out in the config header files,
37348     so let's cleanup the files by removing the whole definition.
37349
37350     Signed-off-by: Stelian Pop <stelian@popies.net>
37351     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37352
37353 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
37354 Author: Stelian Pop <stelian@popies.net>
37355 Date:   Thu May 8 14:52:34 2008 +0200
37356
37357     Support AT91CAP9 revC CPUs
37358
37359     The AT91CAP9 revC CPU has a few differences over the previous,
37360     revB CPU which was distributed in small quantities only (revA was
37361     an internal Atmel product only).
37362
37363     The revC silicon needs a special initialisation sequence to
37364     switch from the internal (imprecise) RC oscillator to the
37365     external 32k clock.
37366
37367     Signed-off-by: Stelian Pop <stelian@popies.net>
37368     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37369
37370 commit 098b7b4b441b12c2a64dd517930f43c793542759
37371 Author: Stelian Pop <stelian@popies.net>
37372 Date:   Thu May 8 14:52:33 2008 +0200
37373
37374     Use custom logo for Atmel boards
37375
37376     This patch adds a custom vendor logo for the Atmel AT91 boards.
37377
37378     Signed-off-by: Stelian Pop <stelian@popies.net>
37379     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37380
37381 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
37382 Author: Stelian Pop <stelian@popies.net>
37383 Date:   Thu May 8 14:52:32 2008 +0200
37384
37385     AT91SAM9RLEK: hook up the ATMEL LCD driver
37386
37387     This patch makes the necessary adaptations (PIO configurations and
37388     defines in config header file) to hook up the Atmel LCD driver to the
37389     AT91SAM9RLEK board.
37390
37391     Signed-off-by: Stelian Pop <stelian@popies.net>
37392     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37393
37394 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
37395 Author: Stelian Pop <stelian@popies.net>
37396 Date:   Thu May 8 14:52:31 2008 +0200
37397
37398     AT91SAM9263EK: hook up the ATMEL LCD driver
37399
37400     This patch makes the necessary adaptations (PIO configurations and
37401     defines in config header file) to hook up the Atmel LCD driver to the
37402     AT91SAM9263EK board.
37403
37404     Signed-off-by: Stelian Pop <stelian@popies.net>
37405     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37406
37407 commit 820f2a958325061a446115f3035e48e4726b3390
37408 Author: Stelian Pop <stelian@popies.net>
37409 Date:   Thu May 8 14:52:30 2008 +0200
37410
37411     AT91SAM9261EK: hook up the ATMEL LCD driver
37412
37413     This patch makes the necessary adaptations (PIO configurations and
37414     defines in config header file) to hook up the Atmel LCD driver to the
37415     AT91SAM9261EK board.
37416
37417     Signed-off-by: Stelian Pop <stelian@popies.net>
37418     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37419
37420 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
37421 Author: Stelian Pop <stelian@popies.net>
37422 Date:   Thu May 8 14:52:29 2008 +0200
37423
37424     AT91CAP9ADK: hook up the ATMEL LCD driver
37425
37426     This patch makes the necessary adaptations (PIO configurations and
37427     defines in config header file) to hook up the Atmel LCD driver to the
37428     AT91CAP9ADK board.
37429
37430     Signed-off-by: Stelian Pop <stelian@popies.net>
37431     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37432
37433 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
37434 Author: Stelian Pop <stelian@popies.net>
37435 Date:   Fri May 9 21:57:18 2008 +0200
37436
37437     Add ATMEL LCD driver
37438
37439     This patch adds support for the ATMEL LCDC driver which is used on some
37440     AT91 and AVR platforms.
37441
37442     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
37443     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
37444
37445     Signed-off-by: Stelian Pop <stelian@popies.net>
37446     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37447
37448 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
37449 Author: Stelian Pop <stelian@popies.net>
37450 Date:   Thu May 8 18:52:25 2008 +0200
37451
37452     AT91SAM9RLEK support
37453
37454     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
37455     board.
37456
37457     Signed-off-by: Stelian Pop <stelian@popies.net>
37458     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37459
37460 commit 8e429b3eee23927c1222679f6b6f53667b21595c
37461 Author: Stelian Pop <stelian@popies.net>
37462 Date:   Thu May 8 18:52:23 2008 +0200
37463
37464     AT91SAM9263EK support
37465
37466     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
37467     board.
37468
37469     Signed-off-by: Stelian Pop <stelian@popies.net>
37470     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37471
37472 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
37473 Author: Stelian Pop <stelian@popies.net>
37474 Date:   Thu May 8 20:52:22 2008 +0200
37475
37476     AT91SAM9261EK support
37477
37478     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
37479     board.
37480
37481     Signed-off-by: Stelian Pop <stelian@popies.net>
37482     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37483
37484 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
37485 Author: Stelian Pop <stelian@popies.net>
37486 Date:   Thu May 8 20:52:21 2008 +0200
37487
37488     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
37489
37490     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
37491     in order to cope with the changes in DataFlash partitionning scheme
37492     (cset c3a60cb3).
37493
37494     Signed-off-by: Stelian Pop <stelian@popies.net>
37495     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37496
37497 commit 96996ac25d5222611a8888968db6e53a6d3726da
37498 Author: Stelian Pop <stelian@popies.net>
37499 Date:   Thu May 8 20:52:20 2008 +0200
37500
37501     AT91SAM9260EK: Normalize BOOTARGS
37502
37503     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
37504     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
37505     variable.
37506
37507     Signed-off-by: Stelian Pop <stelian@popies.net>
37508     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37509
37510 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
37511 Author: Stelian Pop <stelian@popies.net>
37512 Date:   Thu May 8 20:52:19 2008 +0200
37513
37514     AT91SAM9260EK: Normalize SPI timings
37515
37516     This patch changes the SPI timings to closely match the ones
37517     used by the Linux kernel and the Atmel's own bootstrap project.
37518
37519     Signed-off-by: Stelian Pop <stelian@popies.net>
37520     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37521
37522 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
37523 Author: Stelian Pop <stelian@popies.net>
37524 Date:   Thu May 8 20:52:18 2008 +0200
37525
37526     AT91SAM9260EK: Handle 8 or 16 bit NAND
37527
37528     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
37529     makes the support configurable in the board config header file
37530     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
37531
37532     Signed-off-by: Stelian Pop <stelian@popies.net>
37533     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37534
37535 commit ab52640fc01624e208424e527af0b7b3a5a65a12
37536 Author: Stelian Pop <stelian@popies.net>
37537 Date:   Thu May 8 20:52:17 2008 +0200
37538
37539     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
37540
37541     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
37542     in order to cope with the changes in DataFlash partitionning scheme
37543     (cset c3a60cb3).
37544
37545     Signed-off-by: Stelian Pop <stelian@popies.net>
37546     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37547
37548 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
37549 Author: Stelian Pop <stelian@popies.net>
37550 Date:   Thu May 8 20:52:16 2008 +0200
37551
37552     AT91CAP9ADK: Normalize BOOTARGS
37553
37554     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
37555     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
37556     variable.
37557
37558     Signed-off-by: Stelian Pop <stelian@popies.net>
37559     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37560
37561 commit 93da48b910511911ce110656e17ed733c8ac4c45
37562 Author: Stelian Pop <stelian@popies.net>
37563 Date:   Thu May 8 20:52:15 2008 +0200
37564
37565     AT91CAP9ADK: Normalize SPI timings
37566
37567     This patch changes the SPI timings to closely match the ones
37568     used by the Linux kernel and the Atmel's own bootstrap project.
37569
37570     Signed-off-by: Stelian Pop <stelian@popies.net>
37571     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37572
37573 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
37574 Author: Stelian Pop <stelian@popies.net>
37575 Date:   Thu May 8 20:52:14 2008 +0200
37576
37577     AT91CAP9ADK: Handle 8 or 16 bit NAND
37578
37579     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
37580     makes the support configurable in the board config header file
37581     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
37582
37583     Signed-off-by: Stelian Pop <stelian@popies.net>
37584     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37585
37586 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
37587 Author: Stelian Pop <stelian@popies.net>
37588 Date:   Thu May 8 20:52:13 2008 +0200
37589
37590     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
37591
37592     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
37593     below avoids the duplication of u-boot.lds by putting the file in the
37594     cpu directory instead of the board one.
37595
37596     Signed-off-by: Stelian Pop <stelian@popies.net>
37597     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37598
37599 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
37600 Author: Stelian Pop <stelian@popies.net>
37601 Date:   Thu May 8 20:52:12 2008 +0200
37602
37603     Add proper copyright notices in Atmel boards Makefiles
37604
37605     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
37606     copyright notice. This patch adds the missing pieces.
37607
37608     Signed-off-by: Stelian Pop <stelian@popies.net>
37609     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37610
37611 commit e817a042cef6164bf26fee86f90326f2ec9e6745
37612 Author: Stelian Pop <stelian@popies.net>
37613 Date:   Thu May 8 20:52:11 2008 +0200
37614
37615     Add copyright information in Atmel boards partition.c
37616
37617     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
37618     the new created files. This patch fixes the problem.
37619
37620     Signed-off-by: Stelian Pop <stelian@popies.net>
37621     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37622
37623 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
37624 Author: Stelian Pop <stelian@popies.net>
37625 Date:   Thu May 8 20:52:10 2008 +0200
37626
37627     Update origin and copyright information in arch-at91sam9 header files
37628
37629     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
37630     copied from the Linux kernel sources. This patch explicitly specifies
37631     this origin for all the copied headers, and for those missing copyright
37632     information, adds it.
37633
37634     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
37635     in the latest kernel sources by 'at91sam9_smc.h'.
37636
37637     The copyright information has been confirmed by the AT91 Linux kernel
37638     maintainer, Andrew Victor <avictor.za@gmail.com>.
37639
37640     Signed-off-by: Stelian Pop <stelian@popies.net>
37641     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37642
37643 commit 79dd1712689d6a5031d7cbff54957049680751c7
37644 Author: Markus Klotzbücher <mk@denx.de>
37645 Date:   Thu May 8 16:00:55 2008 +0200
37646
37647     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
37648
37649     When using dhcp/bootp the "netmask" environment variable is not set
37650     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
37651     desireable, so the following patch adds this this option to the board
37652     config.
37653
37654     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
37655     Signed-off-by: Stefan Roese <sr@denx.de>
37656
37657 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
37658 Author: Stefan Roese <sr@denx.de>
37659 Date:   Sat May 10 10:30:36 2008 +0200
37660
37661     ppc4xx: Update Makalu defconfig to use device-tree booting as default
37662
37663     This patch reworks the default environment on Makalu. Now "net_nfs" for
37664     example uses the device-tree style booting formerly know as "net_nfs_fdt".
37665     Also the addresses in RAM were changed because of the new image booting
37666     support, which check for image overwriting. So the addresses needed to
37667     get adjusted.
37668
37669     Signed-off-by: Stefan Roese <sr@denx.de>
37670
37671 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
37672 Author: Becky Bruce <bgill@freescale.com>
37673 Date:   Wed May 7 13:28:16 2008 -0500
37674
37675     PPC: fix map_physmem build warning
37676
37677     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
37678     enabled.  This quiets the warning.
37679
37680     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
37681
37682 commit 36f32675f40292002ee1fed252c180a43022d2d4
37683 Author: Becky Bruce <bgill@freescale.com>
37684 Date:   Wed May 7 13:24:57 2008 -0500
37685
37686     Update pci code to use phys_addr_t
37687
37688     Physical addrs need to be represented by phys_addr_t, not
37689     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
37690     are going to fail mightily.
37691
37692     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37693
37694 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
37695 Author: Nick Spence <nick.spence@freescale.com>
37696 Date:   Thu May 8 22:32:22 2008 -0700
37697
37698     Support legacy multi-type images without FDT section.
37699
37700     This patch enables legacy multi-type images containing only a Linux kernel
37701     and root file system to be loaded, maintaining compatibility with previous
37702     versions of u-boot.
37703
37704     This is required when using old image files such as a Linux 2.4 kernel /
37705     filesystem.
37706
37707     Signed-off-by: Nick Spence <nick.spence@freescale.com>
37708     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37709
37710 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
37711 Author: Wolfgang Denk <wd@denx.de>
37712 Date:   Sat May 10 00:38:02 2008 +0200
37713
37714     Update CHANGELOG.
37715
37716     Signed-off-by: Wolfgang Denk <wd@denx.de>
37717
37718 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
37719 Author: Wolfgang Denk <wd@denx.de>
37720 Date:   Sat May 10 00:36:09 2008 +0200
37721
37722     post/cpu/ppc4xx/Makefile: line length cleanup
37723
37724     Signed-off-by: Wolfgang Denk <wd@denx.de>
37725
37726 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
37727 Author: Stelian Pop <stelian@popies.net>
37728 Date:   Thu May 8 22:52:09 2008 +0200
37729
37730     Fix @ -> <at> substitution
37731
37732     When applying the AT91CAP9 patches upstream, something transformed
37733     the '@' character into the ' <at> ' sequence.
37734
37735     The patch below restores the original form in all the places where
37736     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
37737     were copied from AT91CAP9, and a couple of other files where the
37738     ' <at> ' sequence was present).
37739
37740     Signed-off-by: Stelian Pop <stelian@popies.net>
37741
37742 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
37743 Author: Stelian Pop <stelian@popies.net>
37744 Date:   Thu May 8 22:52:10 2008 +0200
37745
37746     Update origin and copyright information in arch-at91sam9 header files
37747
37748     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
37749     copied from the Linux kernel sources. This patch explicitly specifies
37750     this origin for all the copied headers, and for those missing copyright
37751     information, adds it.
37752
37753     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
37754     in the latest kernel sources by 'at91sam9_smc.h'.
37755
37756     The copyright information has been confirmed by the AT91 Linux kernel
37757     maintainer, Andrew Victor <avictor.za@gmail.com>.
37758
37759     Signed-off-by: Stelian Pop <stelian@popies.net>
37760
37761 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
37762 Author: Stelian Pop <stelian@popies.net>
37763 Date:   Thu May 8 22:52:11 2008 +0200
37764
37765     Add copyright information in Atmel boards partition.c
37766
37767     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
37768     the new created files. This patch fixes the problem.
37769
37770     Signed-off-by: Stelian Pop <stelian@popies.net>
37771
37772 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
37773 Author: Guennadi Liakhovetski <lg@denx.de>
37774 Date:   Thu May 8 10:09:27 2008 +0200
37775
37776     mx31ads: fix 32kHz clock handling
37777
37778     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
37779     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
37780     Also fix a typo when verifying a jumper configuration. While at it, make
37781     two needlessly global functions static.
37782
37783     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37784
37785 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
37786 Author: Marian Balakowicz <m8@semihalf.com>
37787 Date:   Wed May 7 13:10:04 2008 +0200
37788
37789     Avoid initrd and logbuffer area overlaps
37790
37791     Add logbuffer to reserved LMB areas to prevent initrd allocation
37792     from overlaping with it.
37793
37794     Make sure to use correct logbuffer base address.
37795
37796     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37797
37798 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
37799 Author: Marian Balakowicz <m8@semihalf.com>
37800 Date:   Wed May 7 13:08:54 2008 +0200
37801
37802     ppc: Cleanup get_effective_memsize() use
37803
37804     Removed duplicated effective memory size calculation code.
37805
37806     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37807
37808 commit 273c37d843d5b581090378016cd12dd9c586907b
37809 Author: Marian Balakowicz <m8@semihalf.com>
37810 Date:   Wed May 7 09:03:53 2008 +0200
37811
37812     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
37813
37814     Recent modifcations to LOGBUFFER handling code were incorrecly
37815     introduced to fit_check_kernel() routine during
37816     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
37817     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
37818
37819     This patch cleans up this merge issue.
37820
37821     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37822
37823 commit bc11756daff89a3de09ca80adac962b88cf06e6e
37824 Author: Grant Erickson <gerickson@nuovations.com>
37825 Date:   Tue May 6 20:16:15 2008 -0700
37826
37827     Propagate Error Status to the Shell on fw_printenv Errors
37828
37829     Changed implementation such that fw_printenv returns failure status
37830     when one or more specified variables do not exist or when incorrect
37831     command syntax is used.
37832
37833     This aids scripting fw_printenv such that the script can key of the
37834     return status rather than relying on standard error "scraping".
37835
37836     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37837     Signed-off-by: Wolfgang Denk <wd@denx.de>
37838
37839 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
37840 Author: Grant Erickson <gerickson@nuovations.com>
37841 Date:   Tue May 6 16:18:00 2008 -0700
37842
37843     Fix Compilation Errors with 'tools/env/fw_printenv'
37844
37845     In the current top-of-tree, 1.3.3.-rc2, the optional tool
37846     'tools/env/fw_printenv' fails to compile for two reasons:
37847
37848     1) The header watchdog.h cannot be found.
37849     2) The header zlib.h is picked up from the tool chain rather than the
37850        project causing a prototype conflict for crc32.
37851
37852     This patch addresses both of these issues.
37853
37854     Platforms Tested On:
37855     - AMCC "Kilauea"
37856
37857     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37858
37859 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
37860 Author: James Yang <James.Yang@freescale.com>
37861 Date:   Mon May 5 10:22:53 2008 -0500
37862
37863     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
37864
37865     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
37866     work before relocating to RAM because command history is written into
37867     a global array that is not writable before relocation.  This patch
37868     defers to the no-editing and no-history code in readline_into_buffer()
37869     if it is called before relocation.
37870
37871     Signed-off-by: James Yang <James.Yang@freescale.com>
37872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37873
37874 commit 726c0f1e5f108dccea052965123b95837d2bd402
37875 Author: Detlev Zundel <dzu@denx.de>
37876 Date:   Mon May 5 16:11:22 2008 +0200
37877
37878     cosmetic: Adjust coding style for switch statements to be consistent
37879
37880     Signed-off-by: Detlev Zundel <dzu@denx.de>
37881
37882 commit 574b319512b13e10800f0045e39b993f4ca25e42
37883 Author: Detlev Zundel <dzu@denx.de>
37884 Date:   Mon May 5 16:11:21 2008 +0200
37885
37886     Fix disk type output in disk/part.c
37887
37888     Signed-off-by: Detlev Zundel <dzu@denx.de>
37889
37890 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
37891 Author: Vlad Lungu <vlad.lungu@windriver.com>
37892 Date:   Mon May 5 14:20:03 2008 +0300
37893
37894     Mail address change, documentation modified
37895
37896     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
37897
37898 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
37899 Author: Michal Simek <monstr@monstr.eu>
37900 Date:   Sun May 4 15:42:41 2008 +0200
37901
37902     microblaze: Repare intc handling
37903
37904     Signed-off-by: Michal Simek <monstr@monstr.eu>
37905
37906 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
37907 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37908 Date:   Sun May 4 15:17:52 2008 +0200
37909
37910     include/gitignore: update to all architectures
37911
37912     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37913
37914 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
37915 Author: Marcel Ziswiler <marcel@ziswiler.com>
37916 Date:   Mon May 5 02:12:06 2008 +0200
37917
37918     ide: Remove spurious second include of io.h
37919
37920     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
37921
37922     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37923
37924 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
37925 Author: Adrian Filipi <adrian.filipi@eurotech.com>
37926 Date:   Tue May 6 16:46:37 2008 -0400
37927
37928     Fix some typos
37929
37930     This patch fixes three typos.
37931     The first is a repetition of CONFIG_CMD_BSP.
37932     The second makes the #endif comment match its #if.
37933     The third is a spelling error.
37934
37935     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
37936
37937 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
37938 Author: Grant Erickson <gerickson@nuovations.com>
37939 Date:   Sun May 4 16:45:01 2008 -0700
37940
37941     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
37942
37943     Add support for the recognition of 'powerpc' as an alias for the PowerPC
37944     architecture type since Linux is already trending in that direction,
37945     preferring 'powerpc' to 'ppc'.
37946
37947     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
37948
37949 commit f5a24259190c388c2527bdc49fee34577d862cc7
37950 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
37951 Date:   Fri May 2 13:35:15 2008 -0700
37952
37953     7450 and 86xx L2 cache invalidate bug corrections
37954
37955     The 7610 and related parts have an L2IP bit in the L2CR that is
37956     monitored to signal when the L2 cache invalidate is complete whereas the
37957     7450 and related parts utilize L2I for this purpose. However, the
37958     current code does not account for this difference. Additionally the 86xx
37959     L2 cache invalidate code used an "andi" instruction where an "andis"
37960     instruction should have been used.
37961
37962     This patch addresses both of these bugs.
37963
37964     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
37965     Acked-By: Jon Loeliger <jdl@freescale.com>
37966
37967 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
37968 Author: Wolfgang Denk <wd@denx.de>
37969 Date:   Fri May 9 10:16:13 2008 +0200
37970
37971     Avoid infinite loop "Generating include/autoconf.mk"
37972
37973     Fix a bogus circular dependency that caused an infinite loop of
37974     "Generating include/autoconf.mk" again and again.
37975
37976     Signed-off-by: Wolfgang Denk <wd@denx.de>
37977
37978 commit 567fb852178dbf59529d7301620a3f3732a4b02d
37979 Author: Stelian Pop <stelian@popies.net>
37980 Date:   Thu May 8 22:52:09 2008 +0200
37981
37982     Fix @ -> <at> substitution
37983
37984     When applying the AT91CAP9 patches upstream, something transformed
37985     the '@' character into the ' <at> ' sequence.
37986
37987     The patch below restores the original form in all the places where
37988     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
37989     were copied from AT91CAP9, and a couple of other files where the
37990     ' <at> ' sequence was present).
37991
37992     Signed-off-by: Stelian Pop <stelian@popies.net>
37993     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37994
37995 commit 73ccb3410a0785593cda7aee455dfc51f790e281
37996 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
37997 Date:   Mon Apr 28 14:04:32 2008 +0200
37998
37999     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
38000
38001     Signed-off-by: Gary Jennejohn <garyj@denx.de>
38002     Signed-off-by: Stefan Roese <sr@denx.de>
38003
38004 commit ef2642625cbfb1c3695e3478d08ae515052a4950
38005 Author: Stefan Roese <sr@denx.de>
38006 Date:   Thu May 8 11:10:46 2008 +0200
38007
38008     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
38009
38010     Signed-off-by: Stefan Roese <sr@denx.de>
38011
38012 commit a00eccfebc954ad9485161efeca7d9aaf626d530
38013 Author: Stefan Roese <sr@denx.de>
38014 Date:   Thu May 8 11:05:15 2008 +0200
38015
38016     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
38017
38018     This patch adds fdt (flattened device tree) support to all remaining AMCC
38019     eval boards. Most newer boards already support device tree. With this patch,
38020     all AMCC boards now enable device tree passing from U-Boot to Linux
38021     arch/powerpc kernels.
38022
38023     Signed-off-by: Stefan Roese <sr@denx.de>
38024
38025 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
38026 Author: Stefan Roese <sr@denx.de>
38027 Date:   Thu May 8 11:01:09 2008 +0200
38028
38029     ppc4xx: Add weak default ft_board_setup() routine
38030
38031     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
38032     This routine is defined as weak and can be overwritten by a board specific
38033     one if needed.
38034
38035     Signed-off-by: Stefan Roese <sr@denx.de>
38036
38037 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
38038 Author: Stefan Roese <sr@denx.de>
38039 Date:   Thu May 8 10:48:58 2008 +0200
38040
38041     ppc4xx: acadia: Add fdt support and fix section overlap problem
38042
38043     This patch adds fdt (flattened device tree) support to the AMCC
38044     Acadia eval board. This increases the image size and it doesn't
38045     fit anymore into 256kByte. Since we didn't want to remove features
38046     from the configuration, we decided to increase the U-Boot image size
38047     (add one flash sector).
38048
38049     Also changed the default environment definition to make it
38050     independent of such changes.
38051
38052     Signed-off-by: Stefan Roese <sr@denx.de>
38053
38054 commit 4adb3023de75bc150f088c8935db340930ad38c8
38055 Author: Ira Snyder <iws@ovro.caltech.edu>
38056 Date:   Tue Apr 29 11:18:54 2008 -0700
38057
38058     ppc4xx: Add device tree support to AMCC Yosemite
38059
38060     Add support for booting with a device tree blob. This is needed to boot
38061     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
38062     via the ethaddr variable.
38063
38064     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38065     Signed-off-by: Stefan Roese <sr@denx.de>
38066
38067 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
38068 Author: Dave Mitchell <dmitchell@amcc.com>
38069 Date:   Wed May 7 09:00:23 2008 -0700
38070
38071     ppc4xx: Fix typos in 460GT/EX FBDV array
38072
38073     Corrected two typos in the 460GT/EX FBDV array.
38074
38075     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
38076     Signed-off-by: Stefan Roese <sr@denx.de>
38077
38078 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
38079 Author: Andy Fleming <afleming@freescale.com>
38080 Date:   Wed May 7 16:54:31 2008 -0500
38081
38082     85xx: Limit CPU2 workaround to parts that have the errata
38083
38084     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
38085     Signed-off-by: Andy Fleming <afleming@freescale.com>
38086
38087 commit a5fe514e8ace564300d2c1d73846ddff49654243
38088 Author: Lee Nipper <lee.nipper@freescale.com>
38089 Date:   Fri Apr 25 15:44:45 2008 -0500
38090
38091     mpc83xx: system performance settings for MPC8349EMDS.
38092
38093     These same settings are used on MPC8349ITX, and
38094     improve performance on MPC8349EMDS.
38095
38096     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
38097     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38098
38099 commit 49387dba910e485640b575e920ee463b7e611dc3
38100 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38101 Date:   Tue May 6 13:22:52 2008 +0900
38102
38103     [MIPS] cpu/mips/cache.S: Fix build warning
38104
38105     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
38106     warns illegal global symbol references by bal (and jal also) instruction.
38107     This does not happen with the latest binutils v2.18.
38108
38109     Here's an example on gth2_config:
38110
38111     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
38112     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
38113     c -EB -c -o cache.o cache.S
38114     cache.S: Assembler messages:
38115     cache.S:243: Warning: Pretending global symbol used as branch target is local.
38116     cache.S:250: Warning: Pretending global symbol used as branch target is local.
38117
38118     In principle, gas might be sensitive to global symbol references in PIC
38119     code because they should be processed through GOT (global offset table).
38120     But if `bal' instruction is used, it results in PC-based offset jump.
38121     This is the cause of this warning.
38122
38123     In practice, we know it doesn't matter whether PC-based reference or GOT-
38124     based. As for this case, both will work before/after relocation. But let's
38125     fix the code.
38126
38127     This patch explicitly sets up a target address, then jump there.
38128     Here's an example of disassembled code with/without this patch.
38129
38130      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
38131      9000066c:       ac80fffc        sw      zero,-4(a0)
38132      90000670:       01402821        move    a1,t2
38133     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
38134     -90000678:       01803021        move    a2,t4
38135     -9000067c:       01602821        move    a1,t3
38136     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
38137     -90000684:       01a03021        move    a2,t5
38138     -90000688:       03000008        jr      t8
38139     -9000068c:       00000000        nop
38140     +90000674:       01803021        move    a2,t4
38141     +90000678:       8f8f83ec        lw      t7,-31764(gp)
38142     +9000067c:       01e0f809        jalr    t7
38143     +90000680:       00000000        nop
38144     +90000684:       01602821        move    a1,t3
38145     +90000688:       01a03021        move    a2,t5
38146     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
38147     +90000690:       01e0f809        jalr    t7
38148     +90000694:       00000000        nop
38149     +90000698:       03000008        jr      t8
38150     +9000069c:       00000000        nop
38151
38152     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38153
38154 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
38155 Author: Vlad Lungu <vlad.lungu@windriver.com>
38156 Date:   Mon May 5 14:04:00 2008 +0300
38157
38158     Allow building mips versions with ELDK 3.1.1
38159
38160     .gpword works only with local symbols on certain binutils versions
38161
38162     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
38163
38164 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
38165 Author: Wolfgang Denk <wd@denx.de>
38166 Date:   Mon May 5 12:52:36 2008 +0200
38167
38168     MAKEALL: add inka4x0 board
38169
38170     Signed-off-by: Wolfgang Denk <wd@denx.de>
38171
38172 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
38173 Author: Wolfgang Denk <wd@denx.de>
38174 Date:   Sun May 4 21:34:23 2008 +0200
38175
38176     kb9202 board: fix build problem.
38177
38178     Signed-off-by: Wolfgang Denk <wd@denx.de>
38179
38180 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
38181 Author: Wolfgang Denk <wd@denx.de>
38182 Date:   Sun May 4 12:10:33 2008 +0200
38183
38184     Prepare for v1.3.3-rc3
38185
38186     Update ChNAGELOG, minor white space cleanup.
38187
38188     Signed-off-by: Wolfgang Denk <wd@denx.de>
38189
38190 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
38191 Author: Wolfgang Denk <wd@denx.de>
38192 Date:   Sun May 4 00:35:15 2008 +0200
38193
38194     drivers/net/tsec.c: Fix typo.
38195
38196     Signed-off-by: Wolfgang Denk <wd@denx.de>
38197
38198 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
38199 Author: Mike Frysinger <vapier@gentoo.org>
38200 Date:   Fri May 2 21:45:12 2008 -0400
38201
38202     version_autogenerated.h: use printf rather than echo -n
38203
38204     Some systems are dumb and do not implement the -n flag to echo (like OS X).
38205     Convert the Makefile to use printf as this should work everywhere.
38206
38207     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38208     Signed-off-by: Wolfgang Denk <wd@denx.de>
38209
38210 commit 4acc2a108ad0a669165924704a6cb083f9138242
38211 Author: Mike Frysinger <vapier@gentoo.org>
38212 Date:   Fri May 2 18:17:50 2008 -0400
38213
38214     fix building when saveenv is disabled in some setups
38215
38216     If you enable environment in the flash, but disable the embedded
38217     option, and you disable the saveenv command, then the #if nested
38218     logic will trigger a compile failure:
38219     env_flash.c: In function 'env_relocate_spec':
38220     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
38221     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
38222
38223     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38224
38225 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
38226 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
38227 Date:   Fri May 2 16:10:04 2008 -0400
38228
38229     SBC8548: fix address mask to allow 64M flash
38230
38231     Fix incorrect mask to enable all 64MB of onboard flash.
38232     Previously U-Boot incorrectly mapped only 8MB of flash, this
38233     patch correctly maps all the available flash.
38234
38235     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
38236
38237 commit 3648085c464c8c22ef76fab006ca4344d3796124
38238 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38239 Date:   Fri May 2 19:48:56 2008 +0200
38240
38241     qemu_mips: add README
38242
38243     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38244
38245 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
38246 Author: Marcel Ziswiler <marcel@ziswiler.com>
38247 Date:   Fri May 2 02:35:59 2008 +0200
38248
38249     Fix misspelled comment
38250
38251     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
38252
38253 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
38254 Author: Mike Frysinger <vapier@gentoo.org>
38255 Date:   Thu May 1 04:13:05 2008 -0400
38256
38257     mkimage: make mmap() checks consistent
38258
38259     The mmap() related code is full of inconsistent casts/constants when
38260     it comes to error checking, and may break when building on some
38261     systems (like ones that do not implicitly define the caddr_t type).
38262     Let's just avoid the whole mess by writing the code nice and clean in
38263     the first place.
38264
38265     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38266
38267 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
38268 Author: Marcel Ziswiler <marcel@ziswiler.com>
38269 Date:   Thu May 1 09:05:34 2008 +0200
38270
38271     Fix defined but not used build warning
38272
38273     - warning: 'srom' defined but not used
38274
38275     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
38276
38277 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
38278 Author: Marcel Ziswiler <marcel@ziswiler.com>
38279 Date:   Thu May 1 09:05:26 2008 +0200
38280
38281     Fix implicit declaration build warnings
38282
38283     - warning: implicit declaration of function â€˜serial_initialize’
38284
38285     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
38286
38287 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
38288 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38289 Date:   Tue Apr 29 19:18:32 2008 +0200
38290
38291     TSEC: add config options for VSC8601 RGMII PHY
38292
38293     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
38294     and Tx clock lines. They are configured using 2 bits in extended
38295     register 0x17.
38296     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
38297     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
38298
38299     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38300     Acked-by: Andy Fleming <afleming@freescale.com>
38301     Acked-by: Ben Warren <biggerbadderben@gmail.com>
38302     --
38303
38304      drivers/net/tsec.c |    6 ++++++
38305      drivers/net/tsec.h |    3 +++
38306      2 files changed, 9 insertions(+), 0 deletions(-)
38307
38308 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
38309 Author: Wolfgang Denk <wd@denx.de>
38310 Date:   Sat May 3 23:07:15 2008 +0200
38311
38312     Revert "ColdFire: Get information from the correct GCC"
38313
38314     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
38315     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
38316
38317 commit c4e5f52a58d278eebb87f476e353972c5dacea40
38318 Author: Wolfgang Denk <wd@denx.de>
38319 Date:   Sat May 3 22:25:00 2008 +0200
38320
38321     config.mk: use correct (cross) compiler
38322
38323     Some config.mk files reference $(CC) to test for specific tool chain
38324     features, so make sure $(CC) gets set before including any such
38325     config files.
38326
38327     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
38328     the correct GCC").
38329
38330     Signed-off-by: Wolfgang Denk <wd@denx.de>
38331
38332 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
38333 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38334 Date:   Thu May 1 02:13:44 2008 +0200
38335
38336     pxa: fix previous definition on cpu init
38337
38338     start.S:183:1: warning: "ICMR" redefined
38339     In file included from start.S:33:
38340     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
38341     start.S:187:1: warning: "RCSR" redefined
38342     ...
38343
38344     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38345
38346 commit 6d12e697de794d700767f22f950e3026ccf4daf6
38347 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38348 Date:   Thu May 1 02:13:43 2008 +0200
38349
38350     pxa: fix pcmcia operation on 'i' may be undefined
38351
38352     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38353     Signed-off-by: Wolfgang Denk <wd@denx.de>
38354
38355 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
38356 Author: Kumar Gala <galak@kernel.crashing.org>
38357 Date:   Wed Apr 30 16:24:35 2008 -0500
38358
38359     MPC8610HPCD: Drop -O2 from the build flags
38360
38361     Make the flags use -Os like all other boards
38362
38363     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38364
38365 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
38366 Author: Stefan Roese <sr@denx.de>
38367 Date:   Wed Apr 30 15:50:39 2008 +0200
38368
38369     RTC: Fix month offset by one problem in M41T62 RTC driver
38370
38371     This patch fixes a problem with the month being read and written
38372     incorrectly (offset by one). This only gets visible by also using
38373     the Linux driver (rtc-m41t80).
38374
38375     Tested on AMCC Canyonlands.
38376
38377     Signed-off-by: Stefan Roese <sr@denx.de>
38378
38379 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
38380 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38381 Date:   Sat May 3 13:51:44 2008 +0900
38382
38383     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
38384
38385     Current trick to pick up GNU assembler minor version uses a dot(.) as a
38386     delimiter, and take the second field to obtain minor version number. But
38387     as can be expected, this doesn't work with a version string which has
38388     dots more than needs.
38389
38390     Here's an example:
38391
38392     $ mips-linux-gnu-as --version | grep 'GNU assembler'
38393     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
38394     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
38395     2-129) 2
38396     $
38397
38398     This patch restricts the version format to 2.XX.XX... This will work
38399     in most cases.
38400
38401     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
38402     2.18.50.20080215
38403     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
38404     18
38405     $
38406
38407     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38408
38409 commit ea638951acead7f1086c908c0b9f086beab82a22
38410 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38411 Date:   Sat May 3 13:51:28 2008 +0900
38412
38413     [MIPS] cpu/mips/cache.S: Add dcache_enable
38414
38415     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
38416     "allow ports to override bootelf behavior") requires ports to have this
38417     function.
38418
38419     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38420     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38421
38422 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
38423 Author: Wolfgang Denk <wd@denx.de>
38424 Date:   Thu May 1 21:30:16 2008 +0200
38425
38426     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
38427
38428     Onenand needs a version of memcpy() which performs 16 bit accesses
38429     only; make sure the name does not conflict with the standard
38430     function.
38431
38432     Signed-off-by: Wolfgang Denk <wd@denx.de>
38433
38434 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
38435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38436 Date:   Wed Apr 30 22:38:17 2008 +0200
38437
38438     cmd_nand: fix warning: str2long ncompatible pointer type
38439
38440     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38441
38442 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
38443 Author: Timur Tabi <timur@freescale.com>
38444 Date:   Fri Apr 4 11:16:11 2008 -0500
38445
38446     Fix calculation of I2C clock for some 86xx chips
38447
38448     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
38449     There is no pattern that can be used to determine which chips use which
38450     frequency, so the only way to determine is to look up the actual SOC
38451     designation and use the right value for that SOC.
38452
38453     Signed-off-by: Timur Tabi <timur@freescale.com>
38454
38455 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
38456 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38457 Date:   Wed Apr 30 12:11:19 2008 -0500
38458
38459     ColdFire: Fix ethernet hang issue for mcf547x_8x
38460
38461     The ethernet hang is caused by receiving buffer in DRAM is not
38462     yet ready due to access cycles require longer time in DRAM.
38463     Relocate DMA buffer descriptors from DRAM to internal SRAM.
38464
38465     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38466
38467 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
38468 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38469 Date:   Wed Apr 30 12:10:47 2008 -0500
38470
38471     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
38472
38473     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
38474     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38475
38476 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
38477 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38478 Date:   Wed Apr 30 12:10:23 2008 -0500
38479
38480     ColdFire: Get information from the correct GCC
38481
38482     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
38483     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38484
38485 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
38486 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
38487 Date:   Wed Apr 30 18:02:59 2008 +0200
38488
38489     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
38490
38491     Fix warnings
38492
38493     nv_nand.c: In function 'saveenv':
38494     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
38495     env_nand.c: In function 'env_relocate_spec':
38496     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
38497
38498     if compiled for davinci_schmoogie_config.
38499
38500     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38501     Ack by: Sergey Kubushyn <ksi@koi8.net>
38502
38503 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
38504 Author: Anatolij Gustschin <agust@denx.de>
38505 Date:   Wed Apr 30 13:34:40 2008 +0200
38506
38507     Fix warnings while compiling net/net.c for MPC8610HPCD board
38508
38509     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
38510     causing overriding default -Os option. New gcc (ver. 4.2.2)
38511     produces warnings while compiling net/net.c file with -O2
38512     option. The patch is an attempt to fix this.
38513
38514     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38515
38516 commit 58b575e575c25fdf8c88141e145db201f3092149
38517 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38518 Date:   Wed Apr 30 15:23:38 2008 +0200
38519
38520     lwmon5: fix offset error in sysmon0 POST
38521
38522     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
38523     Signed-off-by: Wolfgang Denk <wd@denx.de>
38524
38525 commit e7419b243a373de4ee042f7d4f45f66de787240d
38526 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38527 Date:   Wed Apr 30 15:16:35 2008 +0200
38528
38529     lwmon5: fix manual merge error in POST
38530
38531     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
38532
38533 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
38534 Author: Wolfgang Denk <wd@denx.de>
38535 Date:   Wed Apr 30 17:46:26 2008 +0200
38536
38537     cmd_nand.c: fix another 'incompatible pointer type' warning.
38538
38539     Signed-off-by: Wolfgang Denk <wd@denx.de>
38540
38541 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
38542 Author: Wolfgang Denk <wd@denx.de>
38543 Date:   Wed Apr 30 17:25:07 2008 +0200
38544
38545     Makefile: fix parallel builds
38546
38547     This problem shows up with parallel builds only; it results in
38548     somewhat cryptic error messages like
38549
38550         $ JOBS=-j6 MAKEALL netstar
38551         Configuring for netstar board...
38552         arm-linux-ld: cannot find -lgeneric
38553         make[1]: *** [eeprom.srec] Error 1
38554
38555     A few boards (like netstar and voiceblue) need some libraries for
38556     building; however, the board Makefile does not contain any such
38557     dependencies which may cause problems with parallel builds. Adding
38558     such dependencies is difficult as we would also have to provide build
38559     rules, which already exist in the respective library Makefiles.
38560
38561     To solve this, we make sure that all libraries get built before the
38562     board code.
38563
38564     Signed-off-by: Wolfgang Denk <wd@denx.de>
38565
38566 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
38567 Author: Stefan Roese <sr@denx.de>
38568 Date:   Wed Apr 30 14:51:36 2008 +0200
38569
38570     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
38571
38572     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
38573     used for NAND booting to match the values needed for the new 512MB
38574     DIMM modules shipped with the productions boards:
38575
38576     Crucial: CT6464AC667.8FB
38577
38578     Signed-off-by: Stefan Roese <sr@denx.de>
38579
38580 commit ea9202a659dc75996facf1475f1866a19a9d3129
38581 Author: Stefan Roese <sr@denx.de>
38582 Date:   Wed Apr 30 10:49:43 2008 +0200
38583
38584     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
38585
38586     This patch fixes a problem with DIMMs that have 8 banks. Now the
38587     MCIF0_MBxCF register will be setup correctly for this setup too.
38588
38589     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
38590
38591     Signed-off-by: Stefan Roese <sr@denx.de>
38592
38593 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
38594 Author: Wolfgang Denk <wd@denx.de>
38595 Date:   Tue Apr 29 23:41:06 2008 +0200
38596
38597     Prepare v1.3.3-rc2, again.
38598
38599     Signed-off-by: Wolfgang Denk <wd@denx.de>
38600
38601 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
38602 Author: Wolfgang Denk <wd@denx.de>
38603 Date:   Tue Apr 29 23:35:24 2008 +0200
38604
38605     Prepare v1.3.3-rc2
38606
38607     Signed-off-by: Wolfgang Denk <wd@denx.de>
38608
38609 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
38610 Author: Wolfgang Denk <wd@denx.de>
38611 Date:   Tue Apr 29 23:32:20 2008 +0200
38612
38613     common/env_nand.c: fix one more incompatible pointer type issue
38614
38615     Signed-off-by: Wolfgang Denk <wd@denx.de>
38616
38617 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
38618 Author: Wolfgang Denk <wd@denx.de>
38619 Date:   Tue Apr 29 21:33:08 2008 +0200
38620
38621     post/board/lwmon5/sysmon.c: fix manual merge error.
38622
38623     Signed-off-by: Wolfgang Denk <wd@denx.de>
38624
38625 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
38626 Author: Kumar Gala <galak@kernel.crashing.org>
38627 Date:   Tue Apr 29 12:54:59 2008 -0500
38628
38629     85xx: Add -mno-spe to e500/85xx builds
38630
38631     Newer gcc's might be configured to enable autovectorization by default.
38632     If we happen to build with one of those compilers we will get SPE
38633     instructions in random code.
38634
38635     -mno-spe disables the compiler for automatically generating SPE
38636     instructions without our knowledge.
38637
38638     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38639
38640 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
38641 Author: Kumar Gala <galak@kernel.crashing.org>
38642 Date:   Tue Apr 29 10:18:34 2008 -0500
38643
38644     Update .gitignore for zlib.h
38645
38646     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38647
38648 commit 45239cf4152109caa925145ccd433529902df887
38649 Author: Kumar Gala <galak@kernel.crashing.org>
38650 Date:   Tue Apr 29 10:27:08 2008 -0500
38651
38652     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
38653
38654     All the 85xx and 86xx UM describe the register as timing_cfg_3
38655     not as ext_refrec.
38656
38657     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38658
38659 commit ef7d30b14394e4c4a153118f5845760cadada02a
38660 Author: Kumar Gala <galak@kernel.crashing.org>
38661 Date:   Tue Apr 29 10:28:34 2008 -0500
38662
38663     85xx/86xx: Rename DDR init address and init extended address register
38664
38665     Rename init_addr and init_ext_addr to match the docs between
38666     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
38667
38668     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38669
38670 commit cf6cc014270549684873a5972d2595052c468cb6
38671 Author: Kumar Gala <galak@kernel.crashing.org>
38672 Date:   Mon Apr 28 02:24:04 2008 -0500
38673
38674     85xx: Additional fixes and cleanup of MP code
38675
38676     * adjust __spin_table alignment to match ePAPR v0.94 spec
38677     * loop over all cpus when determing who is up.  This fixes an issue if
38678       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
38679       cpu_up_mask so there is no harm
38680     * Added some protection in the code to ensure proper behavior.  These
38681       changes are explicitly needed but don't hurt:
38682       - Added eieio to ensure the "hot word" of the table is written after
38683         all other table updates have occurred.
38684       - Added isync to ensure we don't prefetch loading of table entries
38685         until we a released
38686
38687     These issues we raised by Dave Liu.
38688
38689     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38690
38691 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
38692 Author: Yuri Tikhonov <yur@emcraft.com>
38693 Date:   Tue Apr 29 15:06:41 2008 +0200
38694
38695     lwmon5: minor clean-up to include/configs/lwmon5.h
38696
38697     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
38698     the CFG_DSPIC_TEST_ADDR definition more readable.
38699
38700     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38701
38702 commit f4c4d21a885ccc222fd0acdf653b683249e85117
38703 Author: Stefan Roese <sr@denx.de>
38704 Date:   Tue Apr 29 16:08:05 2008 +0200
38705
38706     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
38707
38708     Signed-off-by: Stefan Roese <sr@denx.de>
38709
38710 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
38711 Author: Yuri Tikhonov <yur@emcraft.com>
38712 Date:   Tue Apr 29 13:32:45 2008 +0200
38713
38714     ppc flush_cache: add watch-dog triggering into the loops.
38715
38716     Some boards (e.g. lwmon5) need rather a frequent watch-dog
38717     kicking. Since the time it takes for the flush_cache() function
38718     to complete its job depends on the size of data being flushed, one
38719     may encounter watch-dog resets on such boards when, for example,
38720     download big files over ethernet.
38721
38722     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38723
38724 commit cab99d6f3281ab6784feccf98b9b425daa58418a
38725 Author: Stefan Roese <sr@denx.de>
38726 Date:   Tue Apr 29 14:44:54 2008 +0200
38727
38728     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
38729
38730     Signed-off-by: Stefan Roese <sr@denx.de>
38731
38732 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
38733 Author: Stefan Roese <sr@denx.de>
38734 Date:   Tue Apr 29 14:12:07 2008 +0200
38735
38736     ppc4xx: Fix Katmai CFG_MONITOR_LEN
38737
38738     Signed-off-by: Stefan Roese <sr@denx.de>
38739
38740 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
38741 Author: Stefan Roese <sr@denx.de>
38742 Date:   Tue Apr 29 13:57:07 2008 +0200
38743
38744     ppc4xx: Complete remove bogus dflush()
38745
38746     Since the current dflush() implementation is know to have some problems
38747     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
38748     it by using clean_dcache_range().
38749
38750     Tested on Katmai with ECC DIMM.
38751
38752     Signed-off-by: Stefan Roese <sr@denx.de>
38753
38754 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
38755 Author: Stefan Roese <sr@denx.de>
38756 Date:   Tue Apr 29 13:36:51 2008 +0200
38757
38758     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
38759
38760     As it seems the "old" ECC initialization routine by using dflush() didn't
38761     write all lines in the dcache back to memory on lwmon5. This could lead
38762     to ECC error upon Linux booting. This patch changes the program_ecc()
38763     routine to now use clean_dcache_range() instead of dflush().
38764     clean_dcache_range() uses dcbst which is exactly what we want in this
38765     case.
38766
38767     Since dflush() is known is cause problems, this routine will be
38768     removed completely and replaced by clean_dcache_range() with an
38769     additional patch.
38770
38771     Signed-off-by: Stefan Roese <sr@denx.de>
38772
38773 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
38774 Author: Yuri Tikhonov <yur@emcraft.com>
38775 Date:   Mon Apr 28 18:19:34 2008 +0200
38776
38777     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
38778
38779     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
38780
38781 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
38782 Author: Markus Brunner <super.firetwister@googlemail.com>
38783 Date:   Mon Apr 28 08:47:47 2008 +0200
38784
38785     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
38786
38787     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
38788     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
38789     doesn't exist.
38790
38791     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
38792
38793 commit 2ef7503a593c77a80c2a054011970227c4b62774
38794 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38795 Date:   Thu Apr 24 07:57:17 2008 +0200
38796
38797     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
38798
38799     Move non-inlied functions into specific drivers file
38800     Set get_prom as weak
38801
38802     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38803     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
38804     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38805
38806 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
38807 Author: Guennadi Liakhovetski <lg@denx.de>
38808 Date:   Thu Apr 3 17:04:19 2008 +0200
38809
38810     net: make ARP timeout configurable
38811
38812     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
38813     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
38814     to the boards get lost, which typically are ARP replies. By configuring
38815     the timeout to a lower value we significantly improve the first network
38816     transfer time on this board. The timeout is specified in milliseconds,
38817     later internally it is converted to deciseconds, because it has to be
38818     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
38819     different boards.
38820
38821     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38822     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38823
38824 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
38825 Author: Guennadi Liakhovetski <lg@denx.de>
38826 Date:   Thu Apr 3 13:36:18 2008 +0200
38827
38828     minor cs8900 driver clean up
38829
38830     Remove a redundant register definition, clean up some coding style
38831     violations.
38832
38833     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38834     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38835
38836 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
38837 Author: Wolfgang Denk <wd@denx.de>
38838 Date:   Mon Apr 28 22:01:04 2008 +0200
38839
38840     jffs2_1pass.c: fix incompatible pointer type warning
38841
38842     Signed-off-by: Wolfgang Denk <wd@denx.de>
38843
38844 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
38845 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38846 Date:   Tue Apr 1 10:10:18 2008 +0200
38847
38848     lwmon5: update dsPIC POST spezification
38849
38850     The specification for the lwmon5 board dsPIC POST got changed.
38851     Also add defines for the temperatures  and voltages.
38852
38853     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
38854
38855 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
38856 Author: Sascha Laue <Sascha.Laue@gmx.biz>
38857 Date:   Tue Apr 1 15:13:03 2008 +0200
38858
38859     Fix watchdog POST for lwmon5
38860
38861     If the hardware watchdog detects a voltage error, the watchdog sets
38862     GPIO62 to low. The watchdog POST has to detect this low level.
38863
38864     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
38865     Signed-off-by: Wolfgang Denk <wd@denx.de>
38866
38867 commit dd5748bcd669f46aeb6686c1b341323843738ccc
38868 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38869 Date:   Mon Apr 28 14:37:14 2008 +0200
38870
38871     rtl8169: fix compiler warnings
38872
38873     Fix multiple compiler warnings related to argument type mismatch.
38874
38875     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38876
38877 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
38878 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38879 Date:   Mon Apr 28 14:36:06 2008 +0200
38880
38881     IDE: fix compiler warnings
38882
38883     The IDE driver can use 32-bit addresses in LBA mode, in which case it
38884     spits multiple warnings during compilation. Fix them.
38885
38886     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38887
38888 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
38889 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38890 Date:   Mon Apr 28 14:35:57 2008 +0200
38891
38892     LinkStation: fix compiler warning, add a maintainer
38893
38894     out_8 wants a pointer to an unsigned as the first argument. Add a
38895     maintainer for Linkstation boards.
38896
38897     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38898
38899 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
38900 Author: Wolfgang Denk <wd@denx.de>
38901 Date:   Mon Apr 28 14:55:12 2008 +0200
38902
38903     cmd_nand.c: fix "differ in signedness" problem
38904
38905     Signed-off-by: Wolfgang Denk <wd@denx.de>
38906
38907 commit f2c288a35341ad02ac03b1563d786763c9c8f159
38908 Author: Wolfgang Denk <wd@denx.de>
38909 Date:   Mon Apr 28 12:48:47 2008 +0200
38910
38911     pcnet.c: fix a merge issue
38912
38913     Signed-off-by: Wolfgang Denk <wd@denx.de>
38914
38915 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
38916 Author: Wolfgang Denk <wd@denx.de>
38917 Date:   Mon Apr 28 12:08:18 2008 +0200
38918
38919     NAND: fix some strict-aliasing compiler warnings
38920
38921     Signed-off-by: Wolfgang Denk <wd@denx.de>
38922
38923 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
38924 Author: Stefan Roese <sr@denx.de>
38925 Date:   Mon Apr 28 11:37:14 2008 +0200
38926
38927     ppc4xx: Fix compile warning of hcu4 board
38928
38929     Signed-off-by: Stefan Roese <sr@denx.de>
38930
38931 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
38932 Author: Wolfgang Denk <wd@denx.de>
38933 Date:   Mon Apr 28 11:31:23 2008 +0200
38934
38935     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
38936
38937     Signed-off-by: Wolfgang Denk <wd@denx.de>
38938
38939 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
38940 Author: Guennadi Liakhovetski <lg@denx.de>
38941 Date:   Mon Apr 28 00:25:32 2008 +0200
38942
38943     mx31ads: fix loadaddr environment variable define
38944
38945     Arithmetic expressions do not get evaluated under stringification. Remove
38946     default network configuration, add DHCP command support. Thanks to Felix
38947     Radensky for reporting.
38948
38949     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38950
38951 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
38952 Author: Wolfgang Denk <wd@denx.de>
38953 Date:   Mon Apr 28 10:55:24 2008 +0200
38954
38955     katmai: fix section overlap problem
38956
38957     Since we didn't want to remove features from the configuration, we
38958     decided to increase the U-Boot image size (add one flash sector).
38959
38960     Also changed the default environment definition to make it
38961     independent of such changes.
38962
38963     Signed-off-by: Wolfgang Denk <wd@denx.de>
38964     Acked-by: Stefan Roese <sr@denx.de>
38965
38966 commit 941d696d25624e3cc65ebf924199541acf52d74e
38967 Author: Wolfgang Denk <wd@denx.de>
38968 Date:   Mon Apr 28 10:55:24 2008 +0200
38969
38970     katmai: fix section overlap problem
38971
38972     Since we didn't want to remove features from the configuration, we
38973     decided to increase the U-Boot image size (add one flash sector).
38974
38975     Also changed the default environment definition to make it
38976     independent of such changes.
38977
38978     Signed-off-by: Wolfgang Denk <wd@denx.de>
38979     Acked-by: Stefan Roese <sr@denx.de>
38980
38981 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
38982 Author: Kumar Gala <galak@kernel.crashing.org>
38983 Date:   Sat Apr 26 11:44:44 2008 -0500
38984
38985     post: Fix building with O=
38986
38987     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38988
38989 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
38990 Author: Wolfgang Denk <wd@denx.de>
38991 Date:   Sat Apr 26 01:55:00 2008 +0200
38992
38993     Prepare v1.3.3-rc1
38994
38995     Signed-off-by: Wolfgang Denk <wd@denx.de>
38996
38997 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
38998 Author: Wolfgang Denk <wd@denx.de>
38999 Date:   Sat Apr 26 01:25:39 2008 +0200
39000
39001     post/Makefile: make sure to use the correct flags
39002
39003     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
39004     messages to be printed.
39005
39006     Signed-off-by: Wolfgang Denk <wd@denx.de>
39007
39008 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
39009 Author: Wolfgang Denk <wd@denx.de>
39010 Date:   Sat Apr 26 00:34:42 2008 +0200
39011
39012     Coding Style cleanup, update CHANGELOG
39013
39014     Signed-off-by: Wolfgang Denk <wd@denx.de>
39015
39016 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
39017 Author: Magnus Lilja <lilja.magnus@gmail.com>
39018 Date:   Sun Apr 20 10:38:12 2008 +0200
39019
39020     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
39021
39022     This patch enables SPI and MC13783/RTC support for the Litekit board.
39023
39024     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39025
39026 commit f97abbfb47d9e407354e157cae3f6369e460cd37
39027 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39028 Date:   Fri Apr 25 01:08:32 2008 -0500
39029
39030     MPC8544DS: decode pcie3 end-point configuration correctly.
39031
39032     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39033     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39034
39035 commit 292188e15523c165c4269403fdcd33c26d89176e
39036 Author: Roy Zang <tie-fei.zang@freescale.com>
39037 Date:   Fri Apr 25 00:55:09 2008 -0500
39038
39039     MPC8544DS: Removes the unknown flash message information
39040
39041     This patch removes the unknown flash message information:
39042     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
39043     This unknown flash message is caused by PromJet.
39044     Some of the board user is unhappy with this information.
39045
39046     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
39047     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39048
39049 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
39050 Author: Kim Phillips <kim.phillips@freescale.com>
39051 Date:   Thu Apr 24 14:07:38 2008 -0500
39052
39053     mpc83xx: bump loadaddr over fdtaddr to 0x500000
39054
39055     this seems as a good compromise between human memory, typing,
39056     and last but not least, to accommodate for current and future kernel bloat.
39057
39058     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39059     Acked-by: Dave Liu <daveliu@freescale.com>
39060
39061 commit be5a7190265a34d968578ff266549c60f6f57654
39062 Author: Dave Liu <r63238@freescale.com>
39063 Date:   Tue Apr 15 13:12:23 2008 +0800
39064
39065     mpc83xx: clean up the readme for 83xx boards
39066
39067     1. correct the typo
39068     2. correct the memory map for 837xerdb board
39069
39070     Signed-off-by: Dave Liu <daveliu@freescale.com>
39071
39072 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
39073 Author: Dave Liu <r63238@freescale.com>
39074 Date:   Tue Apr 15 13:11:11 2008 +0800
39075
39076     mpc83xx: remove the unused CPM's stuff
39077
39078     The MPC83xx family never have CPM block, so remove it from 83xx.
39079
39080     Signed-off-by: Dave Liu <daveliu@freescale.com>
39081
39082 commit c63ad6325a8ac0097a54b418a3288926b0484b18
39083 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39084 Date:   Fri Apr 18 16:29:40 2008 +0200
39085
39086     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
39087
39088     This patch adds a configurable flash auto protection list that can be used
39089     to make U-Boot protect flash regions in flash_init().
39090
39091     The idea has been discussed on the u-boot mailing list starting
39092     on Nov 18th, 2007.
39093
39094     Even this patch brings a new feature it is used as a bugfix for 4xx
39095     platforms where flash_init() does not completely protect the
39096     monitor's flash range in all situations.
39097
39098     U-Boot protects the flash range from CFG_MONITOR_BASE to
39099     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
39100     include the reset vector at 0xfffffffc.
39101
39102     Example:
39103     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
39104
39105     This config option will auto protect the last 512k of flash that
39106     contains the bootloader on board like APC405 and PMC405.
39107
39108     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39109
39110 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
39111 Author: Stefan Roese <sr@denx.de>
39112 Date:   Fri Apr 25 13:59:03 2008 +0200
39113
39114     ppc4xx: Remove double defines in lwmon5.h
39115
39116     introduced with latest lwmon5/POST merge
39117
39118     Signed-off-by: Stefan Roese <sr@denx.de>
39119
39120 commit 7590378fb9c686709492ceb142825cd058255956
39121 Author: Bartlomiej Sieka <tur@semihalf.com>
39122 Date:   Fri Apr 25 13:54:02 2008 +0200
39123
39124     Use watchdog-aware functions when calculating hashes of images - take two
39125
39126     Some files didn't get updated properly with the "Use watchdog-aware
39127     functions when calculating hashes of images" commit, this commit
39128     fixes this.
39129
39130     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39131     Signed-off-by: Wolfgang Denk <wd@denx.de>
39132
39133 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
39134 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39135 Date:   Fri Apr 25 12:01:39 2008 +0200
39136
39137     ppc4xx: Add bootcount limit handling for APC405 boards
39138
39139     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39140
39141 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
39142 Author: Bartlomiej Sieka <tur@semihalf.com>
39143 Date:   Fri Apr 25 12:10:09 2008 +0200
39144
39145     Use watchdog-aware functions when calculating hashes of images
39146
39147     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39148
39149 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
39150 Author: Wolfgang Denk <wd@denx.de>
39151 Date:   Fri Apr 25 12:44:08 2008 +0200
39152
39153     USB: fix more GCC 4.2.x aliasing warnings
39154
39155     Signed-off-by: Wolfgang Denk <wd@denx.de>
39156     Acked-by: Markus Klotzbuecher <mk@denx.de>
39157
39158 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
39159 Author: Wolfgang Denk <wd@denx.de>
39160 Date:   Fri Apr 25 12:41:53 2008 +0200
39161
39162     lib_generic/crc32.c: add missing #include <watchdog.h>
39163
39164     Signed-off-by: Wolfgang Denk <wd@denx.de>
39165
39166 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
39167 Author: Wolfgang Denk <wd@denx.de>
39168 Date:   Fri Apr 25 11:52:21 2008 +0200
39169
39170     lib_generic/crc32.c: fix compile problem
39171
39172     Signed-off-by: Wolfgang Denk <wd@denx.de>
39173
39174 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
39175 Author: Stefan Roese <sr@denx.de>
39176 Date:   Tue Apr 22 12:20:32 2008 +0200
39177
39178     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
39179
39180     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
39181     environment variable will now get passed to the Linux kernel by setting
39182     the device_type property of the PCIe device tree node. For normal root-
39183     complex configuration it will keep its defaults value of "pci" and for
39184     endpoint configuration it will get changed to "pci-endpoint".
39185
39186     Signed-off-by: Stefan Roese <sr@denx.de>
39187
39188 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
39189 Author: Yuri Tikhonov <yur@emcraft.com>
39190 Date:   Thu Apr 24 10:30:53 2008 +0200
39191
39192     lwmon5: watchdog POST fix
39193
39194     Use the GPT0_MASKx registers as the temporary storage for watch-dog
39195     timer POST test instead of GPT0_COMPx. The latter
39196     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
39197
39198     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
39199     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39200
39201 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
39202 Author: Kim Phillips <kim.phillips@freescale.com>
39203 Date:   Mon Apr 21 18:10:14 2008 -0500
39204
39205     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
39206
39207     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
39208     proven problematic getting right from the start at least on 83xx and
39209     4xx.
39210
39211     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39212
39213 commit a99715b8ebfc500f3f40e01b36b64d473938443d
39214 Author: Detlev Zundel <dzu@denx.de>
39215 Date:   Fri Apr 18 14:50:01 2008 +0200
39216
39217     Realining some header definitions.
39218
39219     Signed-off-by: Detlev Zundel <dzu@denx.de>
39220
39221 commit 4acbc6c7f993cae409c424615415a3e76820f13d
39222 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39223 Date:   Thu Apr 24 07:57:16 2008 +0200
39224
39225     NE2000: coding style cleanup
39226
39227     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39228
39229 commit b4aff1ffaf7120032c653357c007faa14f74d29d
39230 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39231 Date:   Wed Apr 23 00:11:47 2008 +0900
39232
39233     qemu-mips.h: Add CFI support
39234
39235     CONFIG_ENV_OVERWRITE is also added.
39236
39237     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
39238
39239     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39240     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39241
39242 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
39243 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39244 Date:   Tue Apr 22 22:47:27 2008 +0900
39245
39246     doc/README.mips: Add MIPS notes
39247
39248     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39249
39250 commit 215b01bba8bc662d35f72b084700b192d367dfb4
39251 Author: Bartlomiej Sieka <tur@semihalf.com>
39252 Date:   Tue Apr 22 12:27:56 2008 +0200
39253
39254     Add support for calculating hashes with watchdog triggering
39255
39256     Implement watchodg-aware variants of hash calculation functions:
39257     - crc32_wd()
39258     - md5_wd()
39259     - sha1_csum_wd()
39260     The above functions calculate the hash of the input buffer in chunks,
39261     triggering the watchdog after processing each chunk. The chunk size
39262     is given as a function call parameter.
39263
39264     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39265
39266 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
39267 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39268 Date:   Wed Apr 23 11:02:12 2008 +0900
39269
39270     qemu-mips: Cleanup whitespace, indentation, etc.
39271
39272     No functional change.
39273
39274     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
39275     Then I re-created from scratch, and changed more lines than the original.
39276
39277     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39278     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39279
39280 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
39281 Author: Vlad Lungu <vlad@comsys.ro>
39282 Date:   Wed Oct 10 23:02:09 2007 +0300
39283
39284     Fixed pcnet io_base
39285
39286     Bus and phys address are not always the same
39287
39288     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
39289
39290 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
39291 Author: Wolfgang Denk <wd@denx.de>
39292 Date:   Thu Apr 24 23:44:26 2008 +0200
39293
39294     drivers/net/pcnet.c: Coding Style cleanup.
39295
39296     Signed-off-by: Wolfgang Denk <wd@denx.de>
39297
39298 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
39299 Author: Vlad Lungu <vlad@comsys.ro>
39300 Date:   Wed Oct 10 23:04:23 2007 +0300
39301
39302     Added Am79C970A chip id to pcnet
39303
39304     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
39305
39306 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
39307 Author: Magnus Lilja <lilja.magnus@gmail.com>
39308 Date:   Sun Apr 20 10:35:03 2008 +0200
39309
39310     i.MX31: Fix architecture numbers for ADS and Litekit boards
39311
39312     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
39313
39314     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39315
39316 commit e7ae84d6c7288790e88639f57cb60daf89c11369
39317 Author: Magnus Lilja <lilja.magnus@gmail.com>
39318 Date:   Sun Apr 20 10:36:36 2008 +0200
39319
39320     i.MX31: Use symbolic names for Litekit membases.
39321
39322     Use symbolic names instead of hard coded addresses for Litekit membases.
39323
39324     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39325
39326 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
39327 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39328 Date:   Sat Apr 19 17:59:20 2008 +0200
39329
39330     Fix show_boot_progress prototype
39331
39332     in commit fad634071 "make show_boot_progress () weak."
39333     show_boot_progress is supposed to be declared as weak but declared as
39334     inline instead.
39335
39336     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39337
39338 commit edbed247a14d70b94958010f736621212285de91
39339 Author: Bartlomiej Sieka <tur@semihalf.com>
39340 Date:   Fri Apr 18 12:39:23 2008 +0200
39341
39342     Memory footprint optimizations
39343
39344     As suggested by Wolfgang Denk:
39345     - image printing functions:
39346       - remove wrappers
39347       - remove indentation prefix from functions' signatures
39348     - merge getenv_verify and getenv_autostart into one parametrized function
39349
39350     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39351
39352 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
39353 Author: Guennadi Liakhovetski <lg@denx.de>
39354 Date:   Tue Apr 15 13:33:11 2008 +0200
39355
39356     MX31ADS environment variable update, spi and rtc support
39357
39358     Update MX31ADS default environment to better match the flash layout and
39359     the memory map, support SPI and RTC.
39360
39361     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39362
39363 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
39364 Author: Kumar Gala <galak@kernel.crashing.org>
39365 Date:   Mon Apr 21 09:28:36 2008 -0500
39366
39367     85xx: Round up frequency calculations to get reasonable output
39368
39369     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
39370
39371     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
39372
39373     Signed-off-by: Dejan Minic <minic@freescale.com>
39374     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
39375     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39376     Acked-by: Andy Fleming <afleming@freescale.com>
39377
39378 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
39379 Author: Kumar Gala <galak@kernel.crashing.org>
39380 Date:   Wed Apr 23 16:58:04 2008 -0500
39381
39382     fsl_pci: Only modify registers if we have them
39383
39384     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
39385
39386     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39387
39388 commit 83fe32334337def160b302aa9d152d808bfcc68e
39389 Author: Markus Klotzbücher <mk@denx.de>
39390 Date:   Wed Apr 23 10:57:33 2008 +0200
39391
39392     USB: remove a cpu bug workaround for an unsupported architecture.
39393
39394     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39395
39396 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
39397 Author: Markus Klotzbücher <mk@denx.de>
39398 Date:   Wed Apr 23 10:53:23 2008 +0200
39399
39400     USB: fix those pesky aliasing warnings issued by gcc-4.2
39401
39402     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39403     Signed-off-by: Detlev Zundel <dzu@denx.de>
39404
39405 commit 89cdab788f3716b335fefb60b836ebcf975aceab
39406 Author: Mike Frysinger <vapier@gentoo.org>
39407 Date:   Mon Mar 31 11:02:01 2008 -0400
39408
39409     crc32: use uint32_t rather than unsigned long
39410
39411     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
39412     this is done with the build toolchain instead of the target tool
39413     chain, so if the build is a 64bit system but the target is 32bits,
39414     the size will obviously be wrong. This converts all unsigned long
39415     stuff related to crc32 to uint32_t types. Compile tested only: output
39416     of ./tools/envcrc when run on a 32bit build system matches that of a
39417     64bit build system.
39418
39419     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39420     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39421
39422 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
39423 Author: Dirk Behme <dirk.behme@googlemail.com>
39424 Date:   Wed Mar 26 09:53:29 2008 +0100
39425
39426     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
39427
39428     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
39429
39430     Changes:
39431
39432     - Remove *_masked() functions as noted by Wolfgang
39433
39434     - Adapt register naming to recent TI spec (sprue26, March 2007)
39435
39436     - Fix reset_timer() handling
39437
39438     - 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.
39439
39440     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
39441
39442     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
39443
39444     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
39445
39446     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
39447
39448     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
39449     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
39450
39451 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
39452 Author: Sergei Poselenov <sposelenov@emcraft.com>
39453 Date:   Wed Apr 9 16:09:41 2008 +0200
39454
39455     Added watchdog triggering calls in the "mtest" test function.
39456
39457     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
39458
39459 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
39460 Author: Yuri Tikhonov <yur@emcraft.com>
39461 Date:   Sun Apr 6 19:19:14 2008 +0200
39462
39463     lwmon5 watchdog: limit trigger rate
39464
39465     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
39466     the CONFIG_WD_MAX_RATE value.
39467
39468     Note that an earlier version of this patch which used microseconds
39469     instead of ticks dis not work. The problem was that we used
39470     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
39471     get_tbclk(), which in turn calls get_sys_info(). It turns out that
39472     this function does a lot of prolonged operations (like divisions)
39473     which take too much time so we do not trigger the watchdog in time,
39474     and it resets the system.
39475
39476     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39477
39478 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
39479 Author: Yuri Tikhonov <yur@emcraft.com>
39480 Date:   Mon Mar 31 10:51:37 2008 +0200
39481
39482     POST: move CONFIG_POST to Makefiles
39483
39484     Introduce the new logical option CONFIG_HAS_POST which is set when the
39485     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
39486     to determine should the POST libs be compiled for the selected target
39487     platform, or not.
39488
39489     To avoid breaking u-boot linking process, the empty post/libpost.a file is
39490     created for platforms which do not have POSTs.
39491
39492     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39493     Signed-off-by: Wolfgang Denk <wd@denx.de>
39494
39495 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
39496 Author: Yuri Tikhonov <yur@emcraft.com>
39497 Date:   Mon Mar 31 10:49:34 2008 +0200
39498
39499     POST: preparations for moving CONFIG_POST to Makefiles
39500
39501     Remove CONFIG_POST ifdefs from the post/ source files.
39502
39503     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39504     Signed-off-by: Wolfgang Denk <wd@denx.de>
39505
39506 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
39507 Author: Stefan Roese <sr@denx.de>
39508 Date:   Tue Apr 22 14:14:20 2008 +0200
39509
39510     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
39511
39512     This patch fixes the Canyonlands and Glacier default environment to better
39513     fit to the arch/powerpc device-tree kernels. The variables dealing with
39514     arch/ppc booting are removed, since these boards are supported only in
39515     arch/powerpc. Glacier uses the same config file as Canyonlands.
39516
39517     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
39518
39519     Signed-off-by: Stefan Roese <sr@denx.de>
39520
39521 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
39522 Author: Stefan Roese <sr@denx.de>
39523 Date:   Tue Apr 22 14:06:42 2008 +0200
39524
39525     ppc4xx: Small coding style cleanup for the latest esd patches
39526
39527     Signed-off-by: Stefan Roese <sr@denx.de>
39528
39529 commit 79941d63bc03aed8c48d7602f18217cc200ee931
39530 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39531 Date:   Mon Apr 21 18:01:07 2008 +0200
39532
39533     ppc4xx: Update CPU strapping for PMC440 boards
39534
39535     This patch removes the temporary 'test' strapping option
39536     of the sbe command. The '667' strapping option now uses
39537     a PLB/PCI divider of 3.
39538
39539     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39540
39541 commit f00cf3193a6635355b121e90debb2f54e777e7da
39542 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39543 Date:   Mon Apr 21 14:42:21 2008 +0200
39544
39545     ppc4xx: Remove unused APC405 strataflash driver
39546
39547     The APC405 board support has been migrated to use the common
39548     CFI flash driver.
39549
39550     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39551
39552 commit 1c686676a86473bbd92151f0544e109413f6ed06
39553 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39554 Date:   Mon Apr 21 14:42:17 2008 +0200
39555
39556     ppc4xx: Update APC405 configuration
39557
39558     - enable esd's auto_update mechanism
39559     - support alternative flash layout on rev. 1.8 boards
39560     - update default environment
39561     - use common CFI flash driver
39562     - coding style cleanup
39563
39564     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39565
39566 commit 0b9872515a521bf7866dc24b85ddce708e60d702
39567 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39568 Date:   Mon Apr 21 14:42:11 2008 +0200
39569
39570     ppc4xx: Update APC405 board support
39571
39572     - enable esd's auto_update mechanism
39573     - fix LCD support on latest hardware revision (uses other LCD controller)
39574     - support alternative flash layout on rev. 1.8 boards
39575     - coding style cleanup
39576
39577     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39578
39579 commit 83975d02e225e231960784972e7820a8b303756b
39580 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39581 Date:   Mon Apr 21 14:42:06 2008 +0200
39582
39583     ppc4xx: update esd's common auto_update code for 405 boards
39584
39585     - Coding style cleanup (long lines)
39586     - improve handling of protected flash regions
39587     - remove dead code
39588
39589     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39590
39591 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
39592 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39593 Date:   Mon Apr 21 14:41:59 2008 +0200
39594
39595     ppc4xx: Update esd's common LCD code for 405 boards
39596
39597     - Coding style cleanup (long lines)
39598     - Add s1d13505 support
39599     - Make some functions return a result code instead of void
39600
39601     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39602
39603 commit dea68189424c3f1242427a8146a3861bf093173c
39604 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39605 Date:   Mon Apr 21 11:36:55 2008 +0200
39606
39607     ppc4xx: Update FPGA image for APC405 boards
39608
39609     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39610
39611 commit 2a05b152924acfcec3b037693329e517e6d3578f
39612 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39613 Date:   Mon Apr 21 11:36:08 2008 +0200
39614
39615     ppc4xx: Update bootlogo for APC405 boards
39616
39617     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39618
39619 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
39620 Author: Stefan Roese <sr@denx.de>
39621 Date:   Fri Apr 18 16:41:31 2008 +0200
39622
39623     ppc4xx: Add dcache_enable() for 440
39624
39625     dcache_enable() was missing for 440 and the patch
39626     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
39627     "] behavior uses this function.
39628
39629     Note: Currently the cache handling functions like
39630     d/icache_disable/enable() are NOP's on 440. This may be changed in the
39631     future.
39632
39633     Signed-off-by: Stefan Roese <sr@denx.de>
39634
39635 commit a49e0d177a0749614b316ec847fb623f09c82c07
39636 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39637 Date:   Mon Apr 21 11:19:04 2008 +0200
39638
39639     video: Add missing free for logo memory
39640
39641     This patch adds two missing free()s.
39642
39643     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39644
39645 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
39646 Author: Troy Kisky <troy.kisky@boundarydevices.com>
39647 Date:   Mon Sep 24 16:41:43 2007 -0700
39648
39649     PATCH - Fix oob data copied into supplied buffer
39650
39651     This patch correctly sets the oobavail variable
39652     and fixes a bug where the oob data was not valid when
39653     there where multiple groups in oobfree.
39654
39655     First segment fixes a typo
39656     Second segment fixes a bug where oob data may be copied incorrectly.
39657     Third segment adds an error message when exiting due to write protect.
39658     Forth segment fixes a bug where oobavail may be set incorrectly.
39659
39660     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
39661
39662 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
39663 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39664 Date:   Fri Apr 18 17:24:32 2008 +0200
39665
39666     ppc4xx: Fix sys_get_info() for 405GP(r)
39667
39668     This patch assigns the correct EBC clock for 405GP(r) CPUs
39669     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
39670     uses an uninitialized EBC clock in its startup message.
39671
39672     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39673
39674 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
39675 Author: Wolfgang Denk <wd@denx.de>
39676 Date:   Sun Apr 20 15:39:38 2008 -0700
39677
39678     Makefile: remove nand_spl/System.map when cleaning up.
39679
39680 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
39681 Author: Wolfgang Denk <wd@denx.de>
39682 Date:   Sun Apr 20 15:35:52 2008 -0700
39683
39684     MAKEALL: sort entries / lists.
39685
39686     Signed-off-by: Wolfgang Denk <wd@denx.de>
39687
39688 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
39689 Author: Kumar Gala <galak@kernel.crashing.org>
39690 Date:   Fri Apr 18 11:29:01 2008 -0500
39691
39692     85xx: Fix size of cpu-release-addr property
39693
39694     The cpu-release-addr is defined as always being a 64-bit quanity regardless
39695     if we are running on a 32-bit or 64-bit machine.
39696
39697 commit 88353a985109562a639b2f8a0c90d77011bfe374
39698 Author: Timur Tabi <timur@freescale.com>
39699 Date:   Fri Apr 4 11:15:58 2008 -0500
39700
39701     Fix calculation of I2C clock for some 85xx chips
39702
39703     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
39704     some use CCB/3.  There is no pattern that can be used to determine which
39705     chips use which frequency, so the only way to determine is to look up the
39706     actual SOC designation and use the right value for that SOC.
39707
39708     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
39709
39710     Signed-off-by: Timur Tabi <timur@freescale.com>
39711
39712 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
39713 Author: Wolfgang Denk <wd@denx.de>
39714 Date:   Fri Apr 18 11:44:27 2008 -0700
39715
39716     Fix build breakage casued by commit c0559be371b2
39717
39718         Change env_get_char from a global function ptr to a function.
39719
39720     Signed-off-by: Wolfgang Denk <wd@denx.de>
39721
39722 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
39723 Author: Wolfgang Denk <wd@denx.de>
39724 Date:   Fri Apr 18 10:53:41 2008 -0700
39725
39726     Coding Style cleanup, update CHANGELOG.
39727
39728     Signed-off-by: Wolfgang Denk <wd@denx.de>
39729
39730 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
39731 Author: Mike Frysinger <vapier@gentoo.org>
39732 Date:   Tue Apr 8 14:00:57 2008 -0400
39733
39734     Add support for u-boot in svn and localversion-* files
39735
39736     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39737
39738 commit d23ff6827decf121461fbc5622612fd7effe207e
39739 Author: Guennadi Liakhovetski <lg@denx.de>
39740 Date:   Thu Apr 3 17:04:22 2008 +0200
39741
39742     MX31ADS network and flash updates
39743
39744     This patch allows U-Boot to use buffered writes to the Spansion NOR
39745     flash installed on this board, and eliminates long delays in network
39746     transfers after the board startup.
39747
39748     Also modify flash layout to embed main and redundant environment
39749     blocks in the U-Boot image.
39750
39751     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39752
39753 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
39754 Author: Guennadi Liakhovetski <lg@denx.de>
39755 Date:   Mon Apr 14 10:53:12 2008 +0200
39756
39757     Support for the MX31ADS evaluation board from Freescale
39758
39759     This patch adds support for the MX31ADS evaluation board from Freescale,
39760     initialization code is copied from RedBoot sources, also provided by
39761     Freescale.
39762
39763     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39764
39765 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
39766 Author: Stefan Roese <sr@denx.de>
39767 Date:   Tue Apr 8 10:33:29 2008 +0200
39768
39769     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
39770
39771     Signed-off-by: Stefan Roese <sr@denx.de>
39772
39773 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
39774 Author: Stefan Roese <sr@denx.de>
39775 Date:   Tue Apr 8 10:33:28 2008 +0200
39776
39777     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
39778
39779     Signed-off-by: Stefan Roese <sr@denx.de>
39780
39781 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
39782 Author: Stefan Roese <sr@denx.de>
39783 Date:   Tue Apr 8 10:33:27 2008 +0200
39784
39785     ppc4xx: Add Glacier NAND booting target
39786
39787     Signed-off-by: Stefan Roese <sr@denx.de>
39788
39789 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
39790 Author: Stefan Roese <sr@denx.de>
39791 Date:   Tue Apr 8 10:31:00 2008 +0200
39792
39793     nand_spl: Update nand_spl to support 2k page size NAND devices
39794
39795     This patch adds support for booting from 2k page sized NAND device
39796     (e.g. Micron 29F2G08AAC).
39797
39798     Tested on AMCC Canyonlands.
39799
39800     Signed-off-by: Stefan Roese <sr@denx.de>
39801
39802 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
39803 Author: Anatolij Gustschin <agust@denx.de>
39804 Date:   Thu Apr 17 18:18:00 2008 +0200
39805
39806     Fix crash on sequoia in ppc_4xx_eth_init
39807
39808     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
39809     with cache enabled (TLB Parity exeption). This patch
39810     fixes the problem.
39811
39812     Signed-off-by: Anatolij Gustschin <agust@denx.de>
39813
39814 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
39815 Author: Anatolij Gustschin <agust@denx.de>
39816 Date:   Thu Apr 17 18:15:27 2008 +0200
39817
39818     ppc4xx: Fix crash on sequoia with cache enabled
39819
39820     Currently U-Boot crashes on sequoia board in CPU POST if
39821     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
39822     won't be disabled by change_tlb before CPU POST because
39823     there is an insufficient adress range check since
39824     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
39825     this problem.
39826
39827     Signed-off-by: Anatolij Gustschin <agust@denx.de>
39828
39829 commit 43c509254fab375c49936498da944658117ed07c
39830 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39831 Date:   Thu Apr 17 23:35:13 2008 +0900
39832
39833     Use jr as register jump instruction
39834
39835     Current assembler codes are inconsistent in the way of register jump
39836     instruction usage; some use jr, some use j. Of course GNU as allows both
39837     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
39838     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
39839     at all.
39840
39841     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
39842
39843 commit 7ce63709828d37b08866e537339a169bd0db2bd3
39844 Author: Guennadi Liakhovetski <lg@denx.de>
39845 Date:   Tue Apr 15 14:15:30 2008 +0200
39846
39847     RTC driver for MC13783
39848
39849     MC13783 is a multifunction IS with an SPI interface to the host. This
39850     driver handles the RTC controller in this chip.
39851
39852     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39853
39854 commit 38254f45b0b412332726c90d3184ad47479fcffb
39855 Author: Guennadi Liakhovetski <lg@denx.de>
39856 Date:   Tue Apr 15 14:14:25 2008 +0200
39857
39858     New i.MX31 SPI driver
39859
39860     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
39861     only implemented and tested on i.MX31, can with a modified register layout
39862     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
39863     controllers too.
39864
39865     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39866
39867 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
39868 Author: Magnus Lilja <lilja.magnus@gmail.com>
39869 Date:   Tue Apr 15 19:09:10 2008 +0200
39870
39871     Fix name of i.MX31 boards in config file header
39872
39873     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
39874
39875     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39876
39877 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
39878 Author: Mike Frysinger <vapier@gentoo.org>
39879 Date:   Sun Apr 13 19:42:19 2008 -0400
39880
39881     allow ports to override go behavior
39882
39883     Split the arch-specific logic out of the common go code and into a dedicated
39884     weak function called do_go_exec() that lives in cpu directories.  This will
39885     need review from i386/nios people to make sure I didn't break them.
39886
39887 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
39888 Author: Mike Frysinger <vapier@gentoo.org>
39889 Date:   Sun Apr 13 19:42:18 2008 -0400
39890
39891     allow ports to override bootelf behavior
39892
39893     Change the bootelf setup function into a dedicated weak function called
39894     do_bootelf_exec.  This way ports can control the behavior however they
39895     like before/after calling the ELF entry point.
39896
39897 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
39898 Author: Ulf Samuelsson <ulf@atmel.com>
39899 Date:   Sat Apr 12 20:56:03 2008 +0200
39900
39901     Reorder ARM boards in Makefile
39902
39903     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
39904     are no longer under ARM92xT header.
39905
39906     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
39907     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39908
39909 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
39910 Author: Ulf Samuelsson <ulf@atmel.com>
39911 Date:   Sat Apr 12 20:29:44 2008 +0200
39912
39913     Clean up dataflash partitioning
39914
39915     This patch removes the board dependent parts from
39916     "drivers/mtd/dataflash.c".
39917     Each board relying on this, will have the appropriate
39918     code in a new file, "partition.c" in the board directory.
39919     board Makefiles updated to use the file.
39920
39921     The dataflash partitions are aligned on sector/page boundaries.
39922
39923     The CONFIG_NEW_DF_PARTITION was used to create named partitions
39924     This is now the default operation, and the CONFIG variable is removed.
39925
39926     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
39927
39928 commit 51ecde946fec511a16346e498204ca10ad71080d
39929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39930 Date:   Sat Apr 12 14:08:45 2008 +0200
39931
39932     gitignore: udpate stgit generated and .patch file
39933
39934     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39935
39936 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
39937 Author: Wolfgang Denk <wd@denx.de>
39938 Date:   Fri Apr 18 00:15:36 2008 -0700
39939
39940     Get rid of redundant copy of renamed header file.
39941
39942     Signed-off-by: Wolfgang Denk <wd@denx.de>
39943
39944 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
39945 Author: Vlad Lungu <vlad@comsys.ro>
39946 Date:   Fri Apr 11 21:20:14 2008 +0300
39947
39948     Fix dependency generation for older gcc versions
39949
39950      With gcc 3.3.3 at least, compilation fails with
39951
39952     Generating include/autoconf.mk
39953     gcc: compilation of header file requested
39954     make: *** [include/autoconf.mk] Error 1
39955
39956     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
39957
39958     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
39959
39960 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
39961 Author: Marian Balakowicz <m8@semihalf.com>
39962 Date:   Fri Apr 11 11:07:49 2008 +0200
39963
39964     Restore the ability to continue booting after legacy image overwrite
39965
39966     Before new uImage code was merged, bootm code allowed for the kernel image to
39967     get overwritten during decompresion. new uImage introduced a check for image
39968     overwrites and refused to boot the image that got overwritten. This patch
39969     restores the old behavior. It also adds a warning when the image overwriten is
39970     a multi-image file, because in such case accessing componentes other than the
39971     first one will fail.
39972
39973     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39974
39975 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
39976 Author: Marian Balakowicz <m8@semihalf.com>
39977 Date:   Fri Apr 11 11:07:43 2008 +0200
39978
39979     ppc: Fix ftd_blob variable init when processing raw blob
39980
39981     Set fdt_blob variable before its value is printed out.
39982
39983     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39984
39985 commit 3d36be030043cd841a2551d00a395135e363a64b
39986 Author: Jason Wessel <jason.wessel@windriver.com>
39987 Date:   Thu Apr 10 14:30:16 2008 -0500
39988
39989     Remove all the search paths from the .lds files.
39990
39991     The cross compiler is responsible for providing the correct libraries
39992     and the logic to find the linking libraries.
39993
39994     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
39995
39996 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
39997 Author: Bartlomiej Sieka <tur@semihalf.com>
39998 Date:   Mon Apr 14 15:44:16 2008 +0200
39999
40000     Boot-related documentation update
40001
40002     - document 'bootm_low' and 'bootm_size' environment variables
40003     - update inaccurate CFG_BOOTMAPSZ entry
40004
40005     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40006
40007 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
40008 Author: Guennadi Liakhovetski <lg@denx.de>
40009 Date:   Wed Apr 9 17:34:08 2008 +0200
40010
40011     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
40012
40013     Restore logic reverted by commit
40014
40015     commit 80767a6cead9990d9e77e62be947843c2c72f469
40016     Author: Peter Pearse <peter.pearse@arm.com>
40017     Date:   Wed Sep 5 16:04:41 2007 +0100
40018
40019         Changed API name to coloured_led.h
40020         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
40021         Tidied other cpu/arm920t/start.S code
40022
40023     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40024
40025 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
40026 Author: Mike Frysinger <vapier@gentoo.org>
40027 Date:   Tue Apr 8 10:24:24 2008 -0400
40028
40029     Remove conflicting NAND ID
40030
40031     There are two NAND entries with ID 0xDC and this obviously causes problems.
40032     In the kernel, they punted the first entry, so we should do the same.
40033
40034     See this upstream e-mail for more info:
40035     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
40036
40037     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
40038     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40039
40040 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
40041 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40042 Date:   Tue Apr 8 16:20:35 2008 +0900
40043
40044     cpu/mips/cpu.c: Fix flush_cache bug
40045
40046     Cache operations have to take line address (addr), not start_addr.
40047     I noticed this bug when debugging ping failure.
40048
40049     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40050
40051 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
40052 Author: Martin Krause <martin.krause@tqs.de>
40053 Date:   Thu Apr 3 14:29:01 2008 +0200
40054
40055     TQM5200: fix default IDE reset level
40056
40057     Before the first call of ide_reset(), the level of the IDE reset
40058     signal on the TQM5200 is low (reset asserted). This patch sets the
40059     default value to high (reset not asserted).
40060
40061     Currently this patch fixes no real problem, but it is cleaner to
40062     assert the reset signal only on demand, and not permanently.
40063
40064     Signed-off-by: Martin Krause <martin.krause@tqs.de>
40065
40066 commit c61e033d6e8abb7b4060ee36060961e1399f6079
40067 Author: Detlev Zundel <dzu@denx.de>
40068 Date:   Thu Apr 3 14:18:48 2008 +0200
40069
40070     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
40071
40072     Signed-off-by: Detlev Zundel <dzu@denx.de>
40073
40074 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
40075 Author: Detlev Zundel <dzu@denx.de>
40076 Date:   Thu Apr 3 14:18:47 2008 +0200
40077
40078     mgcoge, mgsuv: rename 'addcon' to 'addcons'
40079
40080     The latter name with 13 users is already established, so we will use
40081     that.
40082
40083     Signed-off-by: Detlev Zundel <dzu@denx.de>
40084
40085 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
40086 Author: Martin Krause <martin.krause@tqs.de>
40087 Date:   Thu Apr 3 13:37:56 2008 +0200
40088
40089     IDE: fix bug in reset sequence
40090
40091     According to the ata (ata5) specification the RESET- signal
40092     shall be asserted for at least 25 us. Without this patch,
40093     the RESET- signal is asserted on some boards for only < 1 us
40094     (e. g. on the TQM5200). This patch adds a general delay of
40095     25 us to the RESET- signal.
40096
40097     Without this patch a Platinum 4 GiB CF card is not recognised
40098     properly on boards with a TQM5200 (STK52xx, TB5200).
40099
40100     Signed-off-by: Martin Krause <martin.krause@tqs.de>
40101
40102 commit 813bea96a960916c72b4a3a7df840151529c26ce
40103 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40104 Date:   Thu Apr 3 14:43:11 2008 +0200
40105
40106     lwmon5: disable CONFIG_ZERO_BOOTDELAY
40107
40108     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
40109
40110 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
40111 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40112 Date:   Wed Apr 2 08:03:58 2008 +0200
40113
40114     ds174x: Fix warning on return in rtc_get and rtc_set functions
40115
40116     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40117
40118 commit a253b38bf50c85227c33ca0febc870ee49d1588e
40119 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40120 Date:   Wed Apr 2 08:03:57 2008 +0200
40121
40122     cmd_log.c: Fix assignment differ in signedness
40123
40124     In function 'logbuff_init_ptrs':
40125     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
40126
40127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40128
40129 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
40130 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
40131 Date:   Wed Apr 2 11:04:43 2008 +0530
40132
40133     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
40134
40135     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
40136
40137 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
40138 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40139 Date:   Tue Apr 1 14:07:10 2008 +0200
40140
40141     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
40142
40143     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40144
40145 commit c08fb3ea36d19b1640b7906264581e9105534399
40146 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40147 Date:   Tue Apr 15 10:24:14 2008 +0200
40148
40149     Additional PCI IDs for IDE and network controllers
40150
40151     These PCI IDs are required by the Linkstation platforms.
40152
40153     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40154
40155 commit c0559be371b2a64b1a817088c3308688e2182f93
40156 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
40157 Date:   Mon Apr 14 23:01:50 2008 +0200
40158
40159     Change env_get_char from a global function ptr to a function.
40160
40161     This avoids an early global data reference.
40162
40163     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40164
40165 commit 3e0f331c05d72f140715c1e9fca991927e44d422
40166 Author: Guennadi Liakhovetski <lg@denx.de>
40167 Date:   Tue Apr 29 12:35:08 2008 +0000
40168
40169     Clean up smsc911x driver
40170
40171     Replace direct register address derefencing with accessor functions.
40172     Restrict explicitly 32-bit bus-width, extend affected configurations
40173     respectively.
40174
40175     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40176     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40177
40178 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
40179 Author: Sascha Hauer <s.hauer@pengutronix.de>
40180 Date:   Tue Apr 15 00:08:20 2008 -0400
40181
40182     This patch adds a driver for the following smsc network controllers:
40183     LAN9115
40184     LAN9116
40185     LAN9117
40186     LAN9215
40187     LAN9216
40188     LAN9217
40189
40190     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40191     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
40192     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40193
40194 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
40195 Author: Sascha Laue <Sascha.Laue@gmx.biz>
40196 Date:   Tue Apr 1 15:13:03 2008 +0200
40197
40198     Fix watchdog POST for lwmon5
40199
40200     If the hardware watchdog detects a voltage error, the watchdog sets
40201     GPIO62 to low. The watchdog POST has to detect this low level.
40202
40203     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
40204
40205 commit 24b448448a917e52806f82660a5c9d47608894fb
40206 Author: Dave Liu <r63238@freescale.com>
40207 Date:   Tue Apr 1 15:22:11 2008 +0800
40208
40209     ata: update the libata.h from ata.h of linux kernel
40210
40211     Current libata.h of u-boot is out of sync from linux kernel,
40212     this patch make it be consistent with linux kernel.
40213
40214     Signed-off-by: Dave Liu <daveliu@freescale.com>
40215     Signed-off-by: Tor Krill <tor@excito.com>
40216
40217 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
40218 Author: Kumar Gala <galak@kernel.crashing.org>
40219 Date:   Mon Mar 31 11:59:27 2008 -0500
40220
40221     Allow use of ARCH=powerpc when building
40222
40223     The linux kernel is now mostly ARCH=powerpc, so to make life easier
40224     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
40225
40226     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40227
40228 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
40229 Author: Kyungmin Park <kmpark@infradead.org>
40230 Date:   Mon Mar 31 10:40:54 2008 +0900
40231
40232     Add apollon board MAINTAINERS entry
40233
40234     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40235
40236 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
40237 Author: Kyungmin Park <kmpark@infradead.org>
40238 Date:   Mon Mar 31 10:40:36 2008 +0900
40239
40240     Fix OneNAND read
40241
40242     It should access with 16-bit instead of 8-bit
40243
40244     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
40245
40246     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40247
40248 commit a9da2b41079d230db3a5641625311983f85ce1fb
40249 Author: Kyungmin Park <kmpark@infradead.org>
40250 Date:   Mon Mar 31 10:40:19 2008 +0900
40251
40252     Fix OneNAND erase command
40253
40254     It mis-calculates the block address.
40255     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
40256
40257     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40258
40259 commit 61525f2ffa156665a66908fda47dbf29d65ea579
40260 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
40261 Date:   Mon Mar 31 01:32:15 2008 +0200
40262
40263     Support for LinkStation / KuroBox HD and HG PPC models
40264
40265     This patch is based on the port by Mihai Georgian (see linkstation.c for
40266     Copyright information) and implements support for LinkStation / KuroBox HD
40267     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
40268     the moment, pending network driver fixing.
40269
40270     Notice to users: this is pretty much a barebone port. Support for network
40271     on HG models is already in the U-Boot mainline, but you might also want
40272     patches to switch fan / phy modes depending on the negotiated ethernet
40273     parameters. This patch also doesn't support console switching, booting EM
40274     mode, Buffalo specific ext2 magic number. So, if you want to use any of
40275     those, you need additional patches. Otherwise this patche provides a fully
40276     functional u-boot with a network console on your system.
40277
40278     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40279
40280 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
40281 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40282 Date:   Sun Mar 30 01:22:13 2008 -0500
40283
40284     Add CONFIG_MII_INIT support to related boards
40285
40286     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
40287     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
40288     that use mii_init() in cmd_init.c.
40289
40290     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40291     Acked-by: Ben Warren <biggerbadderben@gmail.com>
40292
40293 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
40294 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40295 Date:   Sun Mar 30 01:19:06 2008 -0500
40296
40297     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
40298
40299     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
40300     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
40301
40302     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40303
40304 commit e99ccb488181d012248c6be30b2093e950319fc5
40305 Author: Kumar Gala <galak@kernel.crashing.org>
40306 Date:   Thu Mar 27 11:46:38 2008 -0500
40307
40308     Introduce phys_size_t and move phys_addr_t into asm/types.h
40309
40310     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
40311     that have larger physical addresses like 44x, 85xx, and 86xx.
40312
40313     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40314
40315 commit 20a14a42a25f72e379f38460b8a8484667536795
40316 Author: Andy Fleming <afleming@freescale.com>
40317 Date:   Wed Apr 2 16:19:07 2008 -0500
40318
40319     Rename include/md5.h to include/u-boot/md5.h
40320
40321     Some systems have md5.h installed in /usr/include/. This isn't the
40322     desired file (we want the one in include/md5.h). This will avoid the
40323     conflict. This fixes the host tools building problem by creating a new
40324     directory for U-Boot specific header files.
40325
40326     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
40327     Denk]
40328
40329     Signed-off-by: Wolfgang Denk <wd@denx.de>
40330     Signed-off-by: Andy Fleming <afleming@freescale.com>
40331     Acked-by: Timur Tabi <timur@freescale.com>
40332
40333 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
40334 Author: Dave Liu <r63238@freescale.com>
40335 Date:   Thu Mar 27 18:51:17 2008 +0800
40336
40337     drivers: code clean up
40338
40339     Signed-off-by: Dave Liu <daveliu@freescale.com>
40340
40341 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
40342 Author: Dave Liu <r63238@freescale.com>
40343 Date:   Thu Mar 27 18:50:41 2008 +0800
40344
40345     drivers: clean up the ata_piix.h
40346
40347     Signed-off-by: Dave Liu <daveliu@freescale.com>
40348
40349 commit e8f7ba404f1409606962815ecc955a06984b08b3
40350 Author: Dave Liu <r63238@freescale.com>
40351 Date:   Thu Mar 27 18:49:56 2008 +0800
40352
40353     doc: english polishing for README.sata
40354
40355     according to gvb's suggestion, polishing for the doc.
40356
40357     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
40358     Signed-off-by: Dave Liu <daveliu@freescale.com>
40359
40360 commit 3e3f766a5274d204780460e1879723b565296d34
40361 Author: Kumar Gala <galak@kernel.crashing.org>
40362 Date:   Wed Mar 26 18:53:28 2008 -0500
40363
40364     Fix warnings introduced by I2C bus speed setting patch
40365
40366     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40367
40368 commit 3c735e7437150e8615f26930c7819db85634276d
40369 Author: eran liberty <eran.liberty@gmail.com>
40370 Date:   Thu Mar 27 00:50:49 2008 +0100
40371
40372     Altera Stratix II support
40373
40374     Adds Support for Altera's Stratix II.
40375
40376     Within your board specific init file you will have to call
40377
40378     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
40379     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
40380
40381     Altera_desc* contines (for example):
40382         {
40383          Altera_StratixII,      /* part type */
40384          passive_serial,        /* interface type */
40385          1,                     /* bytes of data part can accept */
40386          (void *)(&funcs),      /* interface function table */
40387          0L,                    /* base interface address */
40388          0                      /* implementation specific cookie */
40389          }
40390
40391     funcs is the interface. It is of type altera_board_specific_func.
40392     It looks like this:
40393     altera_board_specific_func func = {
40394         pre_fn,
40395         config_fn,
40396         status_fn,
40397         done_fn,
40398         clk_fn,
40399         data_fn,
40400         abort_fn,
40401         post_fn,
40402     };
40403
40404     you will have to implement these functions, which is usually bit
40405     banging some gpio.
40406
40407     Signed-off-by: Eran Liberty <liberty@extricom.com>
40408
40409 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
40410 Author: Wolfgang Denk <wd@denx.de>
40411 Date:   Sun Apr 13 14:32:54 2008 -0700
40412
40413     Update CHANGELOG
40414
40415     Signed-off-by: Wolfgang Denk <wd@denx.de>
40416
40417 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
40418 Author: Sascha Hauer <s.hauer@pengutronix.de>
40419 Date:   Wed Mar 26 20:41:17 2008 +0100
40420
40421     Phytec Phycore-i.MX31 support
40422
40423     This patch adds support for the Phytec Phycore-i.MX31 board
40424
40425     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40426     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40427
40428 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
40429 Author: Sascha Hauer <s.hauer@pengutronix.de>
40430 Date:   Wed Mar 26 20:41:09 2008 +0100
40431
40432     mx31 litekit support
40433
40434     This patch adds support for the mx31 litekit board
40435
40436     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40437     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40438
40439 commit cdace0661208754a53019ea0dc7b803a040e0939
40440 Author: Sascha Hauer <s.hauer@pengutronix.de>
40441 Date:   Wed Mar 26 20:40:49 2008 +0100
40442
40443     add an i2c driver for mx31
40444
40445     This patch adds an i2c driver for Freescale i.MX processors
40446
40447     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40448     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40449
40450 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
40451 Author: Sascha Hauer <s.hauer@pengutronix.de>
40452 Date:   Wed Mar 26 20:40:42 2008 +0100
40453
40454     core support for Freescale mx31
40455
40456     This patch adds the core support for Freescale mx31
40457
40458     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40459     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40460
40461 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
40462 Author: Wolfgang Denk <wd@denx.de>
40463 Date:   Sun Apr 13 14:19:23 2008 -0700
40464
40465     Fix compile error
40466
40467     ...as suggested by Peter Pearse
40468
40469     Signed-off-by: Wolfgang Denk <wd@denx.de>
40470
40471 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
40472 Author: Sascha Hauer <s.hauer@pengutronix.de>
40473 Date:   Wed Mar 26 20:40:36 2008 +0100
40474
40475     Separate omap24xx specific code from arm1136
40476
40477     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
40478     to cpu/arm1136/omap24xx.
40479
40480     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
40481     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40482
40483 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
40484 Author: Mike Frysinger <vapier@gentoo.org>
40485 Date:   Tue Jan 29 18:21:05 2008 -0500
40486
40487     disable caches before booting an app for Blackfin apps
40488
40489     It isn't generally save to execute applications outside of U-Boot with caches
40490     enabled due to the way the Blackfin processor handles caches (requires
40491     software assistance).  This patch disables caches before booting an ELF or
40492     just booting raw code.  The previous discussion on the patch was that we
40493     wanted to use weaks instead, but that proved to not be feasible when multiple
40494     symbols are involved, which puts us back at the ifdef solution.  I've
40495     minimized the ugliness by moving the setup step outside of the main function.
40496
40497     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40498
40499 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
40500 Author: Wolfgang Denk <wd@denx.de>
40501 Date:   Sun Apr 13 10:03:54 2008 -0700
40502
40503     ppc: Get rid of unused machine type definitions
40504
40505     Signed-off-by: Wolfgang Denk <wd@denx.de>
40506
40507 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
40508 Author: Wolfgang Denk <wd@denx.de>
40509 Date:   Sun Apr 13 09:59:26 2008 -0700
40510
40511     Coding Style cleanup; update CHANGELOG
40512
40513     Signed-off-by: Wolfgang Denk <wd@denx.de>
40514
40515 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
40516 Author: Larry Johnson <lrj@acm.org>
40517 Date:   Thu Feb 21 13:58:11 2008 -0500
40518
40519     LM73 bug fix for negative temperatures and cleanup
40520
40521     When the LM73 temperature sensor measures a temperature below 0 C, the
40522     current driver does not perform sign extension, so the result returned is
40523     512 C too high.  This patch fixes the problem, and does general cleanup
40524     of the code.
40525
40526     Signed-off-by: Larry Johnson <lrj@acm.org>
40527
40528 commit 96ef831f713289afba19da0c8f905e99da2b23e0
40529 Author: Guennadi Liakhovetski <lg@denx.de>
40530 Date:   Thu Apr 3 13:36:02 2008 +0200
40531
40532     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
40533
40534     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
40535     series require different addresses for buffered write commands. Define a
40536     configuration option to support buffered writes on those chips. A more
40537     elegant solution would be to automatically detect those chips by parsing
40538     their CFI records, but that would require introduction of a fixup table
40539     into the cfi_flash driver.
40540
40541     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40542
40543 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
40544 Author: Lee Nipper <lee.nipper@freescale.com>
40545 Date:   Thu Apr 10 09:35:06 2008 -0500
40546
40547     mpc83xx: Update DIMM data bus width test to support 40-bit width
40548
40549     32-bit wide ECC memory modules report 40-bit width.
40550     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
40551
40552     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
40553     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40554
40555 commit 5fb5a689d822ca61e814bd523fc930af335242fa
40556 Author: Dave Liu <r63238@freescale.com>
40557 Date:   Mon Mar 31 17:05:12 2008 +0800
40558
40559     mpc83xx: Fix the bug of serdes initialization
40560
40561     Currently the serdes will not be initializated due to the
40562     partid's error.
40563
40564     Signed-off-by: Dave Liu <daveliu@freescale.com>
40565     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40566
40567 commit 2000784818f043db7ca60e2846a72d097766b894
40568 Author: Dave Liu <r63238@freescale.com>
40569 Date:   Thu Apr 3 16:28:29 2008 +0800
40570
40571     mpc83xx: Fix the SATA clock setting of 837x targets
40572
40573     Currently the SATA controller clock is configured as CSB clock,
40574     usually the CSB clock is 400/333/266MHz.
40575
40576     However, The SATA IP block is only guaranteed to operate up to
40577     200 MHz as stated in the HW spec.
40578
40579     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
40580
40581     This patch makes the SATA clock as half of CSB clock.
40582
40583     Signed-off-by: Dave Liu <daveliu@freescale.com>
40584     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40585
40586 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
40587 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40588 Date:   Wed Apr 2 13:41:21 2008 +0200
40589
40590     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
40591
40592     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40593     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40594
40595 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
40596 Author: Kumar Gala <galak@kernel.crashing.org>
40597 Date:   Wed Apr 9 04:20:57 2008 -0500
40598
40599     85xx: Fix detection of MP cpu spin up
40600
40601     We were looking at the wrong memory offset to determine of a secondary
40602     cpu had been spun up or not.  Also added a warning message if the
40603     all the secondary cpus we expect don't spin up.
40604
40605     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40606
40607 commit f3e04bdc3f360c66801a9048956e61e41a16edba
40608 Author: Kumar Gala <galak@kernel.crashing.org>
40609 Date:   Tue Apr 8 10:45:50 2008 -0500
40610
40611     85xx: Use SVR_SOC_VER instead of SVR_VER
40612
40613     The recent change introduced by 'Update SVR numbers to expand support'
40614     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
40615     to compare against a particular processor id.
40616
40617     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40618
40619 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
40620 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
40621 Date:   Fri Apr 11 10:00:35 2008 -0400
40622
40623     ppc4xx: Fix power mgt definitions for PPC440
40624
40625     Corrected DCR addresses of PPC440EP power management registers.
40626
40627     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
40628
40629 commit 950a392464e616b4590bc4501be46e2d7d162dea
40630 Author: Wolfgang Denk <wd@denx.de>
40631 Date:   Fri Apr 11 15:11:26 2008 +0200
40632
40633     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
40634
40635     Reverting became necessary after it turned out that the patches in
40636     the u-boot-arm repo were modified, and in some cases corrupted.
40637
40638     This reverts the following commits:
40639
40640         066bebd6353e33af3adefc3404560871699e9961
40641         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
40642         c88ae20580b2b01487b4cdcc8b2a113f551aee36
40643         a147e56f03871bba4f05058d5e04ce7deb010b04
40644         d6674e0e2a6a1f033945f78838566210d3f28c95
40645         8c8463cce44d849e37744749b32d38e1dfb12e50
40646         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
40647         8bf69d81782619187933a605f1a95ee1d069478d
40648         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
40649         a574a73852a527779234e73e17e7597fd8128882
40650         1377b5583a48021d983e1fd565f7d40c89e84d63
40651         1704dc20917b4f71e373e2c888497ee666d40380
40652
40653     Signed-off-by: Wolfgang Denk <wd@denx.de>
40654
40655 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
40656 Author: Stefan Roese <sr@denx.de>
40657 Date:   Fri Apr 11 07:02:29 2008 +0200
40658
40659     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
40660
40661     This patch reworks the default environment on Kilauea/Haleakala. Now
40662     "net_nfs" for exmaple uses the device-tree style booting formerly know
40663     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
40664     new image booting support, which check for image overwriting. So the
40665     addresses needed togeet adjusted.
40666
40667     Signed-off-by: Stefan Roese <sr@denx.de>
40668
40669 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
40670 Author: Stefan Roese <sr@denx.de>
40671 Date:   Wed Apr 9 11:58:02 2008 +0200
40672
40673     ppc4xx: Fix Canyonlands default environment to work with new image support
40674
40675     Since the new image support checks for image overwriting, the default
40676     environment needs to get adjusted to use correct addresses.
40677
40678     Signed-off-by: Stefan Roese <sr@denx.de>
40679
40680 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
40681 Author: Stefan Roese <sr@denx.de>
40682 Date:   Wed Apr 9 11:54:11 2008 +0200
40683
40684     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
40685
40686     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
40687     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
40688     on 4xx systems _start currently cannot be used for this calculation.
40689     So revert back to the original version for now.
40690
40691     Signed-off-by: Stefan Roese <sr@denx.de>
40692
40693 commit f91374f65eae8b42cac329e06ba1c54728278efb
40694 Author: Michal Simek <monstr@monstr.eu>
40695 Date:   Fri Mar 28 12:49:52 2008 +0100
40696
40697     microblaze: Sort microblaze boards in MAKEALL script
40698
40699 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
40700 Author: Michal Simek <monstr@monstr.eu>
40701 Date:   Fri Mar 28 11:58:45 2008 +0100
40702
40703     microblaze: clean microblaze_config.mk
40704
40705     FLAGS are generated by U-BOOT generator.
40706     Board specific FLAGS are in board directory
40707
40708     Signed-off-by: Michal Simek <monstr@monstr.eu>
40709
40710 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
40711 Author: Michal Simek <monstr@monstr.eu>
40712 Date:   Fri Mar 28 12:47:19 2008 +0100
40713
40714     microblaze: xupv2p fix config file for supporting FDT
40715
40716 commit 188dc16b189143573b1ed90e584bf866d75cdd12
40717 Author: Michal Simek <monstr@monstr.eu>
40718 Date:   Fri Mar 28 11:53:02 2008 +0100
40719
40720     microblaze: ml401 fix config file for supporting FDT
40721
40722     Signed-off-by: Michal Simek <monstr@monstr.eu>
40723
40724 commit 4c6a6f02e239236261333759997eeaf86b30b54c
40725 Author: Michal Simek <monstr@monstr.eu>
40726 Date:   Fri Mar 28 11:22:48 2008 +0100
40727
40728     microblaze: ml401 - add ifdef for GPIO
40729
40730     Signed-off-by: Michal Simek <monstr@monstr.eu>
40731
40732 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
40733 Author: Michal Simek <monstr@monstr.eu>
40734 Date:   Fri Mar 28 12:13:03 2008 +0100
40735
40736     microblaze: clean uart16550 and uartlite handling
40737
40738     Signed-off-by: Michal Simek <monstr@monstr.eu>
40739
40740 commit 0b20f250877441460fb79d72192954abe8498834
40741 Author: Michal Simek <monstr@monstr.eu>
40742 Date:   Fri Mar 28 11:08:31 2008 +0100
40743
40744     microblaze: Add Emaclite driver to Makefile
40745
40746     Signed-off-by: Michal Simek <monstr@monstr.eu>
40747
40748 commit 868cde5310f88234b774878e4f06e79df10a88b3
40749 Author: Michal Simek <monstr@monstr.eu>
40750 Date:   Fri Mar 28 11:08:01 2008 +0100
40751
40752     microblaze: Add Emac driver to Makefile
40753
40754     Signed-off-by: Michal Simek <monstr@monstr.eu>
40755
40756 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
40757 Author: Michal Simek <monstr@monstr.eu>
40758 Date:   Fri Mar 28 12:42:29 2008 +0100
40759
40760     microblaze: add Emac ethernet driver
40761
40762 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
40763 Author: Michal Simek <monstr@monstr.eu>
40764 Date:   Fri Mar 28 12:41:56 2008 +0100
40765
40766     microblaze: add Emaclite ethernet driver
40767
40768 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
40769 Author: Michal Simek <monstr@monstr.eu>
40770 Date:   Fri Mar 28 11:04:01 2008 +0100
40771
40772     microblaze: ML401 and XUPV2P remove emac and emaclite reference
40773
40774     Signed-off-by: Michal Simek <monstr@monstr.eu>
40775
40776 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
40777 Author: Michal Simek <monstr@monstr.eu>
40778 Date:   Fri Mar 28 10:59:32 2008 +0100
40779
40780     microblaze: remove old setting for emac driver
40781
40782     Signed-off-by: Michal Simek <monstr@monstr.eu>
40783
40784 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
40785 Author: Michal Simek <monstr@monstr.eu>
40786 Date:   Fri Mar 28 10:58:15 2008 +0100
40787
40788     microblaze: Clean Makefile from ancient emac driver
40789
40790     Signed-off-by: Michal Simek <monstr@monstr.eu>
40791
40792 commit ab68f921d9c741830f721c3d879c13a0c5597183
40793 Author: Daniel Hellstrom <daniel@gaisler.com>
40794 Date:   Fri Mar 28 10:20:43 2008 +0100
40795
40796     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
40797
40798     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40799
40800 commit 6ed8a43a19bb0275501bc286007daafa923552cf
40801 Author: Daniel Hellstrom <daniel@gaisler.com>
40802 Date:   Wed Mar 26 23:38:48 2008 +0100
40803
40804     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.
40805
40806     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40807
40808 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
40809 Author: Daniel Hellstrom <daniel@gaisler.com>
40810 Date:   Wed Mar 26 23:34:47 2008 +0100
40811
40812     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
40813
40814     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40815
40816 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
40817 Author: Daniel Hellstrom <daniel@gaisler.com>
40818 Date:   Fri Mar 28 10:06:52 2008 +0100
40819
40820     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
40821
40822     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40823
40824 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
40825 Author: Daniel Hellstrom <daniel@gaisler.com>
40826 Date:   Wed Mar 26 23:26:48 2008 +0100
40827
40828     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
40829
40830     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40831
40832 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
40833 Author: Daniel Hellstrom <daniel@gaisler.com>
40834 Date:   Fri Mar 28 10:00:33 2008 +0100
40835
40836     SPARC: Added support for SPARC LEON2 SOC Processor.
40837
40838     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40839
40840 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
40841 Author: Daniel Hellstrom <daniel@gaisler.com>
40842 Date:   Wed Mar 26 23:00:38 2008 +0100
40843
40844     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.
40845
40846     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40847
40848 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
40849 Author: Daniel Hellstrom <daniel@gaisler.com>
40850 Date:   Wed Mar 26 22:51:29 2008 +0100
40851
40852     SPARC: Added support for SPARC LEON3 SOC processor.
40853
40854     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40855
40856 commit bf3d8b31169546fcddb4737391e1893fb12d033a
40857 Author: Daniel Hellstrom <daniel@gaisler.com>
40858 Date:   Fri Mar 28 08:29:26 2008 +0100
40859
40860     SPARC: added SPARC support for new uimage in common code.
40861
40862     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40863
40864 commit 00ab32c85405a4fe65fd4128243086210fc90a21
40865 Author: Daniel Hellstrom <daniel@gaisler.com>
40866 Date:   Wed Mar 26 22:36:03 2008 +0100
40867
40868     SPARC: added SPARC board information to the command bdinfo.
40869
40870     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40871
40872 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
40873 Author: Daniel Hellstrom <daniel@gaisler.com>
40874 Date:   Fri Mar 28 09:47:00 2008 +0100
40875
40876     SPARC: Added generic support for SPARC architecture.
40877
40878     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
40879
40880 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
40881 Author: Stefan Roese <sr@denx.de>
40882 Date:   Thu Apr 3 14:50:34 2008 +0200
40883
40884     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
40885
40886     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
40887     has 2 RGMII instances and we need to configure the 2nd RGMII instance
40888     for the EMAC2+3 channels.
40889
40890     Signed-off-by: Stefan Roese <sr@denx.de>
40891
40892 commit c2a545ce33b26d80337f80b533828839249fb1c9
40893 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40894 Date:   Wed Apr 2 08:03:56 2008 +0200
40895
40896     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
40897
40898     fdt.c: In function 'ft_cpu_setup':
40899     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
40900     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
40901     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
40902     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
40903
40904     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40905
40906 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
40907 Author: Andy Fleming <afleming@freescale.com>
40908 Date:   Mon Mar 31 20:45:56 2008 -0500
40909
40910     Fix fdt set command to conform to dts spec
40911
40912     The fdt set command was treating properties specified as <00> and <0011>
40913     as byte streams, rather than as an array of cells.  As we already have
40914     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
40915     we should use the <> syntax to describe arrays of cells, which are always
40916     32-bits per element.  If we imagine this likely (IMHO) scenario:
40917
40918     > fdt set /ethernet-phy@1 reg <1>
40919
40920     With the old code, this would create a bad fdt, since the reg cell would be
40921     made to be one byte in length.  But the cell must be 4 bytes, so this would
40922     break mysteriously.
40923
40924     Also, the dts spec calls for constants inside the angle brackets (<>)
40925     to conform to C constant standards as they pertain to base.
40926     Take this scenario:
40927
40928     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
40929
40930     The old fdt command would complain that it couldn't parse that.  Or, if you
40931     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
40932     do this:
40933
40934     > fdt set /mydev clock <1f78a40>
40935
40936     Whereas the new code will accept decimal numbers.
40937
40938     While I was in there, I extended the fdt command parser to handle property
40939     strings which are split across multiple arguments:
40940
40941     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
40942     > fdt p /ethernet@f00
40943     ethernet@f00 {
40944         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
40945     };
40946
40947     Lastly, the fdt print code was rearranged slightly to print arrays of cells
40948     if the length of the property is a multiple of 4 bytes, and to not print
40949     leading zeros.
40950
40951     Signed-off-by: Andy Fleming <afleming@freescale.com>
40952
40953 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
40954 Author: Stefan Roese <sr@denx.de>
40955 Date:   Wed Apr 2 08:39:33 2008 +0200
40956
40957     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
40958
40959     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
40960     interface. This usage can be configured with the jumper J6. This patch
40961     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
40962     is installed.
40963
40964     Signed-off-by: Stefan Roese <sr@denx.de>
40965
40966 commit 6fe2946f198481254a6ee9600d7456b8316a4083
40967 Author: Kim Phillips <kim.phillips@freescale.com>
40968 Date:   Fri Mar 28 17:37:49 2008 -0500
40969
40970     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
40971
40972     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
40973     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
40974     started.
40975
40976     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40977
40978 commit b5873f1732b92a25690e1513b90dfb0d644f6697
40979 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40980 Date:   Tue Apr 1 07:30:51 2008 +0200
40981
40982     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
40983
40984     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40985
40986 commit 2d934ea51f276522b532f870a820e844ff480b5b
40987 Author: Tor Krill <tor@excito.com>
40988 Date:   Fri Mar 28 15:29:45 2008 +0100
40989
40990     Add Vitesse 8601 support to TSEC driver
40991
40992     Add phy_info for Vitesse VSC8601.
40993     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
40994
40995     Signed-off-by: Tor Krill <tor@excito.com>
40996     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
40997     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40998
40999 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
41000 Author: Daniel Hellstrom <daniel@gaisler.com>
41001 Date:   Mon Mar 31 14:25:00 2008 +0000
41002
41003     SPARC: added SMC91111 driver in and out macros for LEON processors.
41004
41005     This patch makes SPARC/LEON processors able to read and write
41006     to the SMC91111 chip using the chip external I/O bus of the memory
41007     controller. This patchs defines the standard in and out macros
41008     expected by the SMC9111 driver.
41009
41010     To access that I/O bus one must set up the memory controller
41011     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
41012     up this correctly when the other MCTRL parameters are set up. It
41013     can be set up from the board configuration header file.
41014
41015     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
41016     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41017
41018 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
41019 Author: Stelian Pop <stelian@popies.net>
41020 Date:   Wed Mar 26 18:52:34 2008 +0100
41021
41022     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
41023
41024     Signed-off-by: Stelian Pop <stelian@popies.net>
41025
41026 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
41027 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41028 Date:   Mon Mar 31 21:31:04 2008 +0200
41029
41030     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
41031
41032     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41033
41034 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
41035 Author: Stelian Pop <stelian@popies.net>
41036 Date:   Wed Mar 26 18:52:33 2008 +0100
41037
41038     Add support for AT91SAM9260EK
41039
41040     Support for booting from internal DataFlash, external DataFlash card
41041     or NAND flash is available.
41042
41043     Signed-off-by: Stelian Pop <stelian@popies.net>
41044
41045 commit 1762f13b4aab88b685b1722f17dada247945624b
41046 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41047 Date:   Mon Mar 31 21:20:49 2008 +0200
41048
41049     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
41050
41051     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41052
41053 commit 761712188b353494defb2b644491ff73d0daaa6f
41054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41055 Date:   Mon Mar 31 21:12:17 2008 +0200
41056
41057     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
41058
41059     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41060
41061 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
41062 Author: Stelian Pop <stelian@popies.net>
41063 Date:   Wed Mar 26 20:52:32 2008 +0100
41064
41065     Port AT91CAP9 to the new headers
41066
41067     Adapt the existing AT91CAP9 code to the new headers and APIs.
41068
41069     Signed-off-by: Stelian Pop <stelian@popies.net>
41070
41071 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
41072 Author: Stelian Pop <stelian@popies.net>
41073 Date:   Wed Mar 26 19:52:31 2008 +0100
41074
41075     Finish header files reworking
41076
41077     Replace AT91CAP9.h file with several splitted header files coming
41078     from the Linux kernel.
41079
41080     This is part 2 of the replacement: more header imports and edits.
41081
41082     Signed-off-by: Stelian Pop <stelian@popies.net>
41083
41084 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
41085 Author: Stelian Pop <stelian@popies.net>
41086 Date:   Wed Mar 26 19:52:30 2008 +0100
41087
41088     Import several header files from Linux
41089
41090     Replace AT91CAP9.h file with several splitted header files coming
41091     from the Linux kernel.
41092
41093     This is part 1 of the replacement: pristine header files import.
41094
41095     Signed-off-by: Stelian Pop <stelian@popies.net>
41096
41097 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
41098 Author: Stelian Pop <stelian@popies.net>
41099 Date:   Wed Mar 26 20:52:28 2008 +0100
41100
41101     Move at91cap9 specific files to at91sam9 directory
41102
41103     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
41104     common infrastructure can be used. Let this infrastructure be
41105     named after the AT91SAM9 family, and move the existing AT91CAP9
41106     files to the new place.
41107
41108     Signed-off-by: Stelian Pop <stelian@popies.net>
41109
41110 commit 61106a565870ff503f92b251b94bd7afef889a04
41111 Author: Stelian Pop <stelian@popies.net>
41112 Date:   Wed Mar 26 21:52:27 2008 +0100
41113
41114     Use timer_init() instead of board supplied interrupt_init()
41115
41116     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
41117     the board, so use timer_init() instead of interrupt_init().
41118
41119     Signed-off-by: Stelian Pop <stelian@popies.net>
41120
41121 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
41122 Author: Stelian Pop <stelian@popies.net>
41123 Date:   Wed Mar 26 21:52:36 2008 +0100
41124
41125     Cleanup DataFlash partition handling
41126
41127     DataFlash partition information has become a mess. This patch
41128     defines a single partition scheme for Atmel DataFlashes. This partition
41129     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
41130
41131     Signed-off-by: Stelian Pop <stelian@popies.net>
41132
41133 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
41134 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41135 Date:   Fri Mar 28 08:47:45 2008 -0500
41136
41137     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
41138
41139     When the version_string function in start.S is not 4-byte align,
41140     it will cause the compiler generates "unaligned opcodes detected
41141     in executable segment". This issue affects all ColdFire CPUs.
41142     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
41143     it is not aligned.
41144
41145     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41146     Acked-by: John Rigby <jrigby@freescale.com>
41147
41148 commit bae61eefe15b4d454060a7140e49ae58322be803
41149 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41150 Date:   Tue Mar 25 15:41:15 2008 -0500
41151
41152     ColdFire: Add dspi and serial flash support for MCF5445x
41153
41154     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41155     Acked-by: John Rigby <jrigby@freescale.com>
41156
41157 commit 48ead7a7a922fceaf494e352abfab8216a41b417
41158 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41159 Date:   Tue Mar 18 17:37:01 2008 -0500
41160
41161     ColdFire: Remove R5200 board
41162
41163     This board never went into production
41164
41165     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
41166     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41167     Acked-by: John Rigby <jrigby@freescale.com>
41168
41169 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
41170 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
41171 Date:   Thu Jan 24 14:02:32 2008 -0600
41172
41173     ColdFire: Added M5275EVB support.
41174
41175     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
41176     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41177     Acked-by: John Rigby <jrigby@freescale.com>
41178
41179 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
41180 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
41181 Date:   Mon Feb 4 15:38:20 2008 -0600
41182
41183     ColdFire: Added MCF5275 cpu support.
41184
41185     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
41186     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41187     Acked-by: John Rigby <jrigby@freescale.com>
41188
41189 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
41190 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41191 Date:   Mon Mar 17 12:14:11 2008 -0500
41192
41193     ColdFire: Define bootdelay in configuration file for M52277EVB
41194
41195     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
41196     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41197     Acked-by: John Rigby <jrigby@freescale.com>
41198
41199 commit 77878f16cedee17161ff2336990970fffc6cea35
41200 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41201 Date:   Mon Mar 17 12:09:07 2008 -0500
41202
41203     ColdFire: Fix second memory Chipselect for M5475EVB
41204
41205     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41206     Acked-by: John Rigby <jrigby@freescale.com>
41207
41208 commit 43d60642395a550956cb21d287c8cfa563913d28
41209 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41210 Date:   Thu Mar 13 14:26:32 2008 -0500
41211
41212     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
41213
41214     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41215     Acked-by: John Rigby <jrigby@freescale.com>
41216
41217 commit eb14ebe813a0cb5d47905228da446a5ad692473b
41218 Author: Larry Johnson <lrj@acm.org>
41219 Date:   Sun Mar 30 20:33:04 2008 -0500
41220
41221     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
41222
41223     Signed-off-by: Larry Johnson <lrj@acm.org>
41224
41225 commit 02e3892021112f21067d9ed1d04ae4182725ba52
41226 Author: Stefan Roese <sr@denx.de>
41227 Date:   Mon Mar 31 12:20:48 2008 +0200
41228
41229     ppc4xx: Small whitespace fix of esd patches
41230
41231     Signed-off-by: Stefan Roese <sr@denx.de>
41232
41233 commit 034394abb524785047c815f00dde8cdbdc1593c5
41234 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41235 Date:   Sun Mar 30 18:52:44 2008 +0200
41236
41237     ppc4xx: Cleanup PMC440 board support
41238
41239     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41240
41241 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
41242 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41243 Date:   Sun Mar 30 18:52:06 2008 +0200
41244
41245     ppc4xx: Add ptm configuration variables for PMC440
41246
41247     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
41248     environment variables.
41249
41250     Cleanup pci_target_init.
41251
41252     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41253
41254 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
41255 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41256 Date:   Sun Mar 30 18:01:15 2008 +0200
41257
41258     ppc4xx: Minor updates for DU440 boards
41259
41260     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41261
41262 commit d5bffeb868d6b4d462f558dac43011027b6644b7
41263 Author: Mike Frysinger <vapier@gentoo.org>
41264 Date:   Tue Feb 19 00:54:20 2008 -0500
41265
41266     Blackfin: cleanup and overhaul common board init functions
41267
41268     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41269
41270 commit b86b3416f874358acaf07519e7620cdb2145f75b
41271 Author: Mike Frysinger <vapier@gentoo.org>
41272 Date:   Tue Feb 19 00:50:58 2008 -0500
41273
41274     Blackfin: cleanup lib_blackfin/cache.c
41275
41276     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41277
41278 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
41279 Author: Mike Frysinger <vapier@gentoo.org>
41280 Date:   Sun Mar 30 15:46:13 2008 -0400
41281
41282     Blackfin: unify cpu and boot modes
41283
41284     All of the duplicated code for Blackfin processors and boot modes have been
41285     unified.  After all, the core is the same for all processors, just the
41286     peripheral set differs (which gets handled in the drivers).
41287
41288     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41289
41290 commit 880cc4381ea8360248cddcdf87a64566745a5724
41291 Author: Stelian Pop <stelian@popies.net>
41292 Date:   Wed Mar 26 22:52:35 2008 +0100
41293
41294     Fix CFG_NO_FLASH compilation.
41295
41296     Many Atmel boards have no "real" (NOR) flash on board, and rely only
41297     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
41298     be present in a board configuration file, while still enabling flash
41299     commands like 'flinfo', 'protect', etc.
41300
41301     Signed-off-by: Stelian Pop <stelian@popies.net>
41302
41303 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
41304 Author: Mike Frysinger <vapier@gentoo.org>
41305 Date:   Tue Feb 19 00:58:13 2008 -0500
41306
41307     Blackfin: BF537-stamp: cleanup spi flash driver
41308
41309     This punts the old spi flash driver for a new/generalized one until the
41310     common one can be integrated.
41311
41312     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41313
41314 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
41315 Author: Ben Warren <biggerbadderben@gmail.com>
41316 Date:   Sun Mar 30 11:34:34 2008 -0400
41317
41318     Fix macro typo in common/cmd_mii.c
41319
41320     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
41321     actually applied the wrong patch.
41322
41323     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41324
41325 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
41326 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41327 Date:   Sun Mar 30 16:39:53 2008 +0200
41328
41329     use correct at91rm9200 register name in m501sk board
41330
41331     This fixes a naming bug for at91rm9200 lowlevel init code:
41332     NOR boot flash is on chipselect 0, not chipselect 2.  This
41333     makes code use the register name from chip datasheets.
41334
41335     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41336
41337 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
41338 Author: David Brownell <david-b@pacbell.net>
41339 Date:   Fri Jan 18 12:55:00 2008 -0800
41340
41341     use correct at91rm9200 register name
41342
41343     This fixes a naming bug for at91rm9200 lowlevel init code:
41344     NOR boot flash is on chipselect 0, not chipselect 2.  This
41345     makes code use the register name from chip datasheets.
41346
41347     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
41348
41349 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
41350 Author: David Brownell <david-b@pacbell.net>
41351 Date:   Fri Jan 18 12:45:45 2008 -0800
41352
41353     add missing ARM boards to MAKEALL
41354
41355     Add some missing ARM boards to MAKEALL.  These build correctly,
41356     unlike several of the boards already listed.
41357
41358     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
41359
41360 commit 066bebd6353e33af3adefc3404560871699e9961
41361 Author: Peter Pearse <peter.pearse@arm.com>
41362 Date:   Sun Mar 30 11:34:09 2008 +0100
41363
41364     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
41365     to prevent compilation error.
41366
41367     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
41368
41369 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
41370 Author: Guennadi Liakhovetski <[lg@denx.de]>
41371 Date:   Sun Mar 30 11:32:30 2008 +0100
41372
41373     Support for the MX31ADS evaluation board from Freescale
41374
41375     This patch adds support for the MX31ADS evaluation board from Freescale,
41376     initialization code is copied from RedBoot sources, also provided by Freescale.
41377
41378     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41379
41380 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
41381 Author: Sascha Hauer <s.hauer@pengutronix.de>
41382 Date:   Sun Mar 30 11:32:27 2008 +0100
41383
41384     Phytec Phycore-i.MX31 support
41385
41386     This patch adds support for the Phytec Phycore-i.MX31 board
41387
41388     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41389     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41390
41391 commit a147e56f03871bba4f05058d5e04ce7deb010b04
41392 Author: Sascha Hauer <s.hauer@pengutronix.de>
41393 Date:   Sun Mar 30 11:32:24 2008 +0100
41394
41395     mx31 litekit support
41396
41397     This patch adds support for the mx31 litekit board
41398
41399     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41400     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41401
41402 commit d6674e0e2a6a1f033945f78838566210d3f28c95
41403 Author: Sascha Hauer <s.hauer@pengutronix.de>
41404 Date:   Sun Mar 30 11:32:21 2008 +0100
41405
41406     add SMSC LAN9x1x Network driver
41407
41408     This patch adds a driver for the following smsc network controllers:
41409     LAN9115
41410     LAN9116
41411     LAN9117
41412     LAN9215
41413     LAN9216
41414     LAN9217
41415
41416     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41417     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41418
41419 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
41420 Author: Sascha Hauer <s.hauer@pengutronix.de>
41421 Date:   Sun Mar 30 11:32:16 2008 +0100
41422
41423     add an i2c driver for mx31
41424
41425     This patch adds an i2c driver for Freescale i.MX processors
41426
41427     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41428     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41429
41430 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
41431 Author: Sascha Hauer <s.hauer@pengutronix.de>
41432 Date:   Sun Mar 30 11:30:43 2008 +0100
41433
41434     core support for Freescale mx31
41435
41436     This patch adds the core support for Freescale mx31
41437
41438     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41439     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41440
41441 commit 8bf69d81782619187933a605f1a95ee1d069478d
41442 Author: Sascha Hauer <s.hauer@pengutronix.de>
41443 Date:   Sun Mar 30 11:28:46 2008 +0100
41444
41445     Separate omap24xx specific code from arm1136
41446
41447     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
41448
41449     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
41450     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41451
41452 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
41453 Author: Peter Pearse <peter.pearse@arm.com>
41454 Date:   Sun Mar 30 11:23:05 2008 +0100
41455
41456     Add pmdra into MAKEALL
41457
41458     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
41459
41460 commit a574a73852a527779234e73e17e7597fd8128882
41461 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
41462 Date:   Sun Mar 30 11:21:58 2008 +0100
41463
41464     Adds support for the Prodrive PMDRA board, based on a DM6441
41465
41466     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
41467
41468 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
41469 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
41470 Date:   Sun Mar 30 11:11:34 2008 +0100
41471
41472     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
41473
41474     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
41475
41476 commit 1704dc20917b4f71e373e2c888497ee666d40380
41477 Author: Dirk Behme <dirk.behme@gmail.com>
41478 Date:   Sun Mar 30 11:09:01 2008 +0100
41479
41480     - Remove *_masked() functions as noted by Wolfgang
41481     - Adapt register naming to recent TI spec (sprue26, March 2007)
41482     - Fix reset_timer() handling
41483     - As reported by Pieter [1] the overflow fix introduced a
41484     delay of factor 16 (e.g 2 seconds became 32). While the
41485     overflow fix is basically okay, it missed to divide udelay by
41486     16, too. Fix this.
41487     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
41488     - Remove software division of timer count value (DIV(x)
41489     macro) and do it in hardware (TIM_CLK_DIV).
41490     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
41491     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
41492     the hints & testing!
41493
41494     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
41495
41496     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
41497
41498 commit ac3315c26e143c31680750c9c13f027efbcc887e
41499 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
41500 Date:   Thu Mar 6 16:45:44 2008 +0100
41501
41502     new PHY @ e1000 - 2nd try
41503
41504     Add 82541ER device with latest integrated IGP2 PHY.
41505     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
41506
41507     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
41508     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41509
41510 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
41511 Author: Daniel Hellstrom <daniel@gaisler.com>
41512 Date:   Fri Mar 28 20:22:53 2008 +0100
41513
41514     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
41515
41516     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
41517     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
41518     available at www.gaisler.com.
41519
41520     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
41521     offloading etc.) can be determined by a bit in the control register.
41522     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
41523
41524     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
41525     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41526
41527 commit 233a8bcd94997f3f345833a3b82e836222f2a206
41528 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
41529 Date:   Mon Mar 17 17:08:22 2008 -0500
41530
41531     Add CONFIG_MII_INIT in cmd_mii.c
41532
41533     Provide common configuration in do_mii() to execute mii_init()
41534     for all cpu architectures
41535
41536     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41537     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41538
41539 commit f605479de2deb11e834f31dfdb0af107c86aced6
41540 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
41541 Date:   Mon Mar 17 17:08:16 2008 -0500
41542
41543     ColdFire: Fix FEC transmit issue for MCF5275
41544
41545     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41546     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41547
41548 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
41549 Author: Aras Vaichas <arasv@magtech.com.au>
41550 Date:   Wed Mar 26 09:43:57 2008 +1100
41551
41552     DHCP request fix for Windows Server 2003
41553
41554     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
41555     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
41556     interoperability problems with Windows Server 200x DHCP server when U-Boot
41557     client responds too fast for server to handle.
41558
41559     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
41560     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41561
41562 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
41563 Author: Daniel Hellstrom <daniel@gaisler.com>
41564 Date:   Fri Mar 28 20:40:19 2008 +0100
41565
41566     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
41567
41568     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
41569     SPARC CPUs implement flash_read64 which calls __raw_readq.
41570
41571     For current SPARC architectures (LEON2 and LEON3) each read from the
41572     FLASH must lead to a cache miss. This is because FLASH can not be set
41573     non-cacheable since program code resides there, and alternatively disabling
41574     cache is poor from performance view, or doing a cache flush between each
41575     read is even poorer.
41576
41577     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
41578     load alternative space, the alternative space number (ASI) is processor
41579     implementation spcific and can be found by including <asm/processor.h>.
41580
41581     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
41582
41583 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
41584 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41585 Date:   Fri Mar 28 15:41:25 2008 +0100
41586
41587     Make MPC83xx one step closer to full relocation.
41588
41589     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
41590     and use GOT relative reference.
41591
41592     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41593     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41594
41595 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
41596 Author: Michael Barkowski <michael.barkowski@freescale.com>
41597 Date:   Thu Mar 27 14:34:43 2008 -0400
41598
41599     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
41600
41601     This patch fixes eeprom page size so that you can now write more than
41602     64 bytes at a time.
41603
41604     It also makes the board take MAC addresses, if found, from EEPROM.
41605
41606     User should place up to 4 addresses at offset 0x7f00, for
41607     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
41608     four six-byte values should have it's CRC at the end.  crc32 and
41609     eeprom commands can be used to accomplish this.
41610
41611     If CRC fails, MAC addresses come from the environment.  If CRC
41612     succeeds, the environment is overwritten at startup.
41613
41614     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
41615     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41616
41617 commit 8f325cff31f6e745e6540014b131b9a97f61944c
41618 Author: Michael Barkowski <michael.barkowski@freescale.com>
41619 Date:   Fri Mar 28 15:15:38 2008 -0400
41620
41621     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
41622
41623     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
41624     controller on the PCI bus in Linux on the MPC8323ERDB.
41625
41626     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
41627     config file.
41628
41629     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
41630     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41631
41632 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
41633 Author: Kim Phillips <kim.phillips@freescale.com>
41634 Date:   Fri Mar 28 10:19:07 2008 -0500
41635
41636     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
41637
41638     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
41639     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
41640     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
41641     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
41642     convenience macros.
41643
41644     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41645
41646 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
41647 Author: Kim Phillips <kim.phillips@freescale.com>
41648 Date:   Fri Mar 28 10:18:53 2008 -0500
41649
41650     mpc83xx: display ddr frequency in board_add_ram_info banner
41651
41652     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41653
41654 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
41655 Author: Kim Phillips <kim.phillips@freescale.com>
41656 Date:   Fri Mar 28 10:18:40 2008 -0500
41657
41658     mpc83xx: unreinvent mem_clk
41659
41660     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
41661     mem_*_clk for consistency's sake.
41662
41663     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41664
41665 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
41666 Author: Kim Phillips <kim.phillips@freescale.com>
41667 Date:   Fri Mar 28 14:31:23 2008 -0500
41668
41669     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
41670
41671     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41672
41673 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
41674 Author: Dave Liu <r63238@freescale.com>
41675 Date:   Wed Mar 26 22:57:19 2008 +0800
41676
41677     mpc83xx: enable the SATA interface on mpc837xemds board
41678
41679     Enable the first two SATA interfaces on MPC837xEMDS board,
41680     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
41681
41682     Signed-off-by: Dave Liu <daveliu@freescale.com>
41683     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41684
41685 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
41686 Author: Dave Liu <r63238@freescale.com>
41687 Date:   Wed Mar 26 22:56:36 2008 +0800
41688
41689     mpc83xx: initialize serdes for MPC837xEMDS boards
41690
41691     This patch is stolen from Anton Vorontsov's patch
41692     for mpc837xerdb boards.
41693
41694     The reference clk and xcorevdd voltage of serdes1/2
41695     is same between mpc837xemds and mpc837xerdb.
41696
41697     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
41698     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
41699     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
41700
41701     Signed-off-by: Dave Liu <daveliu@freescale.com>
41702     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41703
41704 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
41705 Author: Stefan Roese <sr@denx.de>
41706 Date:   Fri Mar 28 14:09:04 2008 +0100
41707
41708     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
41709
41710     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
41711     interface. This usage can be configured with the jumper J6. This patch
41712     displays the current configuration upon bootup and changes the PCIe
41713     init loop, to only initialize the availabel PCIe slots.
41714
41715     Signed-off-by: Stefan Roese <sr@denx.de>
41716
41717 commit 90447ecbbac8572457b6d8903073ac3f120995ba
41718 Author: Tor Krill <tor@excito.com>
41719 Date:   Fri Mar 28 11:29:10 2008 +0100
41720
41721     MTD/CFI: Add support for 16bit legacy AMD flash
41722
41723     Add entry for 512Kx16 AMD flash to jedec_table.
41724     Read out 16bit device id if chipwidth is 16bit.
41725     Fixed coding style after Stefans feedback
41726
41727     Signed-off-by: Tor Krill <tor@excito.com>
41728
41729 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
41730 Author: Stefan Roese <sr@denx.de>
41731 Date:   Fri Mar 28 11:02:53 2008 +0100
41732
41733     ppc: Small change to CFG_MEM_TOP_HIDE description
41734
41735     Signed-off-by: Stefan Roese <sr@denx.de>
41736
41737 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
41738 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41739 Date:   Thu Mar 27 15:44:12 2008 +0900
41740
41741     sh: Add support stat structure and stat.h
41742
41743     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41744
41745 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
41746 Author: Mark Jonas <toertel@gmail.com>
41747 Date:   Sat Mar 22 19:27:52 2008 +0100
41748
41749     sh: Removed warning when compiling drivers/serial/serial_sh.c.
41750
41751     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
41752     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41753
41754 commit f309fa38929ffba71230c02330ffa42f4bba6333
41755 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41756 Date:   Wed Mar 12 18:02:57 2008 +0900
41757
41758     sh: Remove disable_ctrlc function from R7780MP
41759
41760     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41761
41762 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
41763 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41764 Date:   Wed Mar 12 17:55:15 2008 +0900
41765
41766     sh: Add maintainer of R7780MP to MAINTAINER file
41767
41768     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
41769
41770     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41771
41772 commit f5e2466f7baa887a7df0c536333eea8231333497
41773 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41774 Date:   Tue Mar 25 17:11:24 2008 +0900
41775
41776     sh: Add support Renesas Solutions R2D plus board
41777
41778     R2D plus is SH reference board used with SH7751R.
41779     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
41780     one PCI bus, VGA, and two Ethernet controller.
41781
41782     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41783
41784 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
41785 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41786 Date:   Wed Mar 12 12:15:29 2008 +0900
41787
41788     sh: Add support SH4 cache control
41789
41790     Add support SH4 cache control and flash_cache function
41791
41792     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41793
41794 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
41795 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41796 Date:   Mon Mar 24 01:53:01 2008 +0900
41797
41798     sh: Add support PCI host driver for SH7751/SH7751R
41799
41800     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41801
41802 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
41803 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41804 Date:   Mon Mar 24 02:11:26 2008 +0900
41805
41806     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
41807
41808     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41809
41810 commit 566933278101c144d75361ea682678a326c1290d
41811 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41812 Date:   Wed Mar 12 12:10:28 2008 +0900
41813
41814     sh: Add support SuperH SH7751/SH7751R
41815
41816     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41817
41818 commit 3313e0e26224fc9a0c445124f3455058c696df84
41819 Author: Mark Jonas <toertel@gmail.com>
41820 Date:   Mon Mar 10 11:37:10 2008 +0100
41821
41822     sh: Added support for SH7720 based board MPR2.
41823
41824     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
41825     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41826
41827 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
41828 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41829 Date:   Thu Mar 6 14:05:53 2008 +0900
41830
41831     sh: Fix receive FIFO level register of SH4A
41832
41833     Receive FIFO level register is different in SH4A.
41834     Because register is different, cannot occasionally receive data.
41835
41836     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41837
41838 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
41839 Author: Yusuke Goda <goda.yusuke@renesas.com>
41840 Date:   Tue Mar 11 12:55:12 2008 +0900
41841
41842     sh: Add support Renesas Solutions R7780MP
41843
41844     Renesas Solutions R7780MP is a reference board on SH7780.
41845     This board has serial, 10/100 base Ethernet deivice, CF slot
41846     and VGA devices. This board can set extension board.
41847     Extension board has 10/100/1000 base Ethernet device, PCI slot,
41848     S-ATA, iDVR slot.
41849
41850     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41851     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41852
41853 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
41854 Author: Yusuke Goda <goda.yusuke@renesas.com>
41855 Date:   Wed Mar 5 14:30:02 2008 +0900
41856
41857     sh: Add support PCI of SuperH and SH7780
41858
41859     This patch add support PCI of SuperH base code and SH7780 specific code.
41860
41861     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41862     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41863
41864 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
41865 Author: Yusuke Goda <goda.yusuke@renesas.com>
41866 Date:   Wed Mar 5 14:23:26 2008 +0900
41867
41868     sh: Add support SH7780
41869
41870     SH7780 is CPU of Renesas Technology.
41871     This CPU has
41872      - CPU clock 400MHz
41873      - PCI support
41874      - DDR-SDRAM controller
41875      - etc ...
41876
41877     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41878     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41879
41880 commit c2042f5952a686c414031309b8f244513bf578f0
41881 Author: goda.yusuke <goda.yusuke@renesas.com>
41882 Date:   Fri Jan 25 20:46:36 2008 +0900
41883
41884     sh: Add support Renesas Solutions Migo-R board
41885
41886     Migo-R is a board based on SH7722 and has may devices.
41887     In this patch, supported SCIF, NOR flash and Ethernet.
41888
41889     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
41890     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41891
41892 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
41893 Author: Bartlomiej Sieka <tur@semihalf.com>
41894 Date:   Thu Mar 27 15:06:40 2008 +0100
41895
41896     Fix host tool build breakage, take two
41897
41898     Revert commit 87c8431f and fix build breakage so that the build continues
41899     to work on FC systems.
41900
41901     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41902
41903 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
41904 Author: Stefan Roese <sr@denx.de>
41905 Date:   Wed Mar 19 09:36:47 2008 +0100
41906
41907     ppc4xx: Enable ECC on LWMON5
41908
41909     Since all ECC related problems seem to be resolved on LWMON5, this patch
41910     now enables ECC support.
41911
41912     We have to write the ECC bytes by zeroing and flushing in smaller
41913     steps, since the whole 256MByte takes too long for the external
41914     watchdog.
41915
41916     Signed-off-by: Stefan Roese <sr@denx.de>
41917
41918 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
41919 Author: Larry Johnson <lrj@acm.org>
41920 Date:   Mon Mar 17 11:10:35 2008 -0500
41921
41922     ppc4xx: Updates to Korat-specific code
41923
41924     This patch contains updates for changes for the Korat PPC440EPx board.
41925     These changes include:
41926
41927     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
41928     described in the new "doc/README.korat" file;
41929
41930     (2) a new memory map for the registers in the board's CPLD;
41931
41932     (3) a revised format for manufacturer's data in serial EEPROM; and
41933
41934     (4) changes to track updates to U-Boot for the Sequoia board.
41935
41936     Signed-off-by: Larry Johnson <lrj@acm.org>
41937
41938 commit f766cdf89b3a2a7634b8c5869f606150e332036c
41939 Author: Markus Brunner <super.firetwister@gmail.com>
41940 Date:   Thu Mar 27 10:46:25 2008 +0100
41941
41942     ppc4xx: PPC405EP Set EMAC noise filter bits
41943
41944     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
41945     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
41946     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
41947
41948     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
41949     Signed-off-by: Stefan Roese <sr@denx.de>
41950
41951 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
41952 Author: Mike Nuss <mike@terascala.com>
41953 Date:   Wed Feb 20 11:54:20 2008 -0500
41954
41955     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
41956
41957     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
41958     after startup to change the speed of the clocks. This patch adds the
41959     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
41960     initialization code will reconfigure the PLL to run the system with a CPU
41961     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
41962     external EEPROM.
41963
41964     Signed-off-by: Mike Nuss <mike@terascala.com>
41965     Acked-by: Stefan Roese <sr@denx.de>
41966
41967 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
41968 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41969 Date:   Thu Mar 27 09:12:40 2008 +0100
41970
41971     new-image: Fix host tool build breakage
41972
41973     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41974
41975 commit 6fb4b640562a10daff0dbe537638d511b5b48650
41976 Author: Stefan Roese <sr@denx.de>
41977 Date:   Thu Mar 27 10:24:03 2008 +0100
41978
41979     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
41980
41981     Signed-off-by: Stefan Roese <sr@denx.de>
41982
41983 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
41984 Author: Stefan Roese <sr@denx.de>
41985 Date:   Wed Mar 19 10:23:43 2008 +0100
41986
41987     ppc4xx: Add fdt support to Prodrive alpr
41988
41989     Since this board will probably be ported to arch/powerpc in the
41990     near future, we add device tree support now. This way we are
41991     "ready" for arch/powerpc from now on.
41992
41993     Signed-off-by: Stefan Roese <sr@denx.de>
41994
41995 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
41996 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
41997 Date:   Mon Mar 17 09:27:56 2008 +0100
41998
41999     ppc4xx: Enable cache support on the ALPR board
42000
42001     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
42002
42003 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
42004 Author: Stefan Roese <sr@denx.de>
42005 Date:   Wed Mar 26 10:14:11 2008 +0100
42006
42007     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
42008
42009     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
42010     memory area will get subtracted from the top (end) of ram and won't get
42011     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
42012     should gets passed the now "corrected" memory size and won't touch it
42013     either. This should work for arch/ppc and arch/powerpc. Only Linux board
42014     ports in arch/powerpc with bootwrapper support, which recalculate the
42015     memory size from the SDRAM controller setup, will have to get fixed
42016     in Linux additionally.
42017
42018     This patch enables this config option on some PPC440EPx boards as a workaround
42019     for the CHIP 11 errata. Here the description from the AMCC documentation:
42020
42021     CHIP_11: End of memory range area restricted access.
42022     Category: 3
42023
42024     Overview:
42025     The 440EPx DDR controller does not acknowledge any
42026     transaction which is determined to be crossing over the
42027     end-of-memory-range boundary, even if the starting address is
42028     within valid memory space. Any such transaction from any PLB4
42029     master will result in a PLB time-out on PLB4 bus.
42030
42031     Impact:
42032     In case of such misaligned bursts, PLB4 masters will not
42033     retrieve any data at all, just the available data up to the
42034     end of memory, especially the 440 CPU. For example, if a CPU
42035     instruction required an operand located in memory within the
42036     last 7 words of memory, the DCU master would burst read 8
42037     words to update the data cache and cross over the
42038     end-of-memory-range boundary. Such a DCU read would not be
42039     answered by the DDR controller, resulting in a PLB4 time-out
42040     and ultimately in a Machine Check interrupt. The data would
42041     be inaccessible to the CPU.
42042
42043     Workaround:
42044     Forbid any application to access the last 256 bytes of DDR
42045     memory. For example, make your operating system believe that
42046     the last 256 bytes of DDR memory are absent. AMCC has a patch
42047     that does this, available for Linux.
42048
42049     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
42050     lwmon5, korat, sequoia
42051
42052     The other remaining 440EPx board were intentionally not included
42053     since it is not clear to me, if they use the end of ram for some
42054     other purpose. This is unclear, since these boards have CONFIG_PRAM
42055     defined and even comments like this:
42056
42057     PMC440.h:
42058     /* esd expects pram at end of physical memory.
42059      * So no logbuffer at the moment.
42060      */
42061
42062     It is strongly recommended to not use the last 256 bytes on those
42063     boards too. Patches from the board maintainers are welcome.
42064
42065     Signed-off-by: Stefan Roese <sr@denx.de>
42066
42067 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
42068 Author: Stefan Roese <sr@denx.de>
42069 Date:   Thu Mar 27 10:09:05 2008 +0100
42070
42071     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
42072
42073     Signed-off-by: Stefan Roese <sr@denx.de>
42074
42075 commit d56a3ce179688cde61073a3690e21703d68fafd7
42076 Author: Stefan Roese <sr@denx.de>
42077 Date:   Tue Mar 25 17:51:13 2008 +0100
42078
42079     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
42080
42081     The routine ft_board_setup() configures the EBC NOR mappings for the
42082     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
42083     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
42084     problem, we need to pass the corrected address here too.
42085
42086     Signed-off-by: Stefan Roese <sr@denx.de>
42087
42088 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
42089 Author: Stefan Roese <sr@denx.de>
42090 Date:   Wed Mar 19 16:35:12 2008 +0100
42091
42092     ppc4xx: Fix compilation warning in 4xx_enet.c
42093
42094     Signed-off-by: Stefan Roese <sr@denx.de>
42095
42096 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
42097 Author: Stefan Roese <sr@denx.de>
42098 Date:   Wed Mar 19 16:20:49 2008 +0100
42099
42100     ppc4xx: Add AMCC Glacier 406GT eval board support
42101
42102     This patch adds support for the AMCC Glacier 460GT eval board.
42103     The main difference to the Canyonlands board are listed here:
42104
42105     - 4 ethernet ports instead of 2
42106     - no SATA port
42107     - no USB port
42108
42109     Currently EMAC2+3 are not working. This will be fixed in a later
42110     release.
42111
42112     Signed-off-by: Stefan Roese <sr@denx.de>
42113
42114 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
42115 Author: Stefan Roese <sr@denx.de>
42116 Date:   Thu Mar 27 08:47:26 2008 +0100
42117
42118     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
42119
42120     Signed-off-by: Stefan Roese <sr@denx.de>
42121
42122 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
42123 Author: Anatolij Gustschin <agust@denx.de>
42124 Date:   Wed Mar 26 21:05:43 2008 +0100
42125
42126     Fix out of tree building issue
42127
42128     Currently U-Boot building in some external directory
42129     doesn't work. This patch tries to fix the problem.
42130
42131     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42132
42133 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
42134 Author: Anatolij Gustschin <agust@denx.de>
42135 Date:   Wed Mar 26 18:13:33 2008 +0100
42136
42137     README: update documentation (availability, links, etc.)
42138
42139     Fix typo in README
42140
42141     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42142
42143 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
42144 Author: Anatolij Gustschin <agust@denx.de>
42145 Date:   Wed Mar 26 17:47:44 2008 +0100
42146
42147     Fix compilation error in cmd_usb.c
42148
42149     This patch fixes compilation error
42150     cmd_usb.c: In function 'do_usb':
42151     cmd_usb.c:552: error: void value not ignored as it ought to be
42152
42153     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42154
42155 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
42156 Author: Timur Tabi <timur@freescale.com>
42157 Date:   Fri Mar 14 17:45:29 2008 -0500
42158
42159     Add support for setting the I2C bus speed in fsl_i2c.c
42160
42161     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
42162     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
42163     but fsl_i2c.c ignores it and uses conservative value when programming the
42164     I2C bus speed.
42165
42166     Signed-off-by: Timur Tabi <timur@freescale.com>
42167     Acked-by: Andy Fleming <afleming@freescale.com>
42168
42169 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
42170 Author: Wolfgang Denk <wd@denx.de>
42171 Date:   Thu Mar 27 00:03:57 2008 +0100
42172
42173     Coding style cleanup, update CHANGELOG
42174
42175     Signed-off-by: Wolfgang Denk <wd@denx.de>
42176
42177 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
42178 Author: Dave Liu <r63238@freescale.com>
42179 Date:   Wed Mar 26 22:55:32 2008 +0800
42180
42181     drivers: add the support for Freescale SATA controller
42182
42183     Add the Freescale on-chip SATA controller driver to u-boot,
42184     The SATA controller is used on the 837x and 8315 targets,
42185     The driver can be used to load kernel, fs and dtb.
42186
42187     The features list:
42188     - 1.5/3 Gbps link speed
42189     - LBA48, LBA28 support
42190     - DMA and FPDMA support
42191     - Two ports support
42192
42193     Signed-off-by: Dave Liu <daveliu@freescale.com>
42194
42195 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
42196 Author: Dave Liu <r63238@freescale.com>
42197 Date:   Wed Mar 26 22:54:44 2008 +0800
42198
42199     ata: add the readme for SATA command line
42200
42201     Signed-off-by: Dave Liu <daveliu@freescale.com>
42202
42203 commit cd54081cd479e542fc399b8a40651ff11a1ad849
42204 Author: Dave Liu <r63238@freescale.com>
42205 Date:   Wed Mar 26 22:53:24 2008 +0800
42206
42207     ata: enable the sata initialize on boot up
42208
42209     Signed-off-by: Dave Liu <daveliu@freescale.com>
42210
42211 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
42212 Author: Dave Liu <r63238@freescale.com>
42213 Date:   Wed Mar 26 22:52:36 2008 +0800
42214
42215     ata: add the fis struct for SATA
42216
42217     Signed-off-by: Dave Liu <daveliu@freescale.com>
42218
42219 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
42220 Author: Dave Liu <r63238@freescale.com>
42221 Date:   Wed Mar 26 22:51:44 2008 +0800
42222
42223     ata: add the libata support
42224
42225     add simple libata support in u-boot
42226
42227     Signed-off-by: Dave Liu <daveliu@freescale.com>
42228
42229 commit 8e9bb43429e50df55fa41932cbe65841ff579220
42230 Author: Dave Liu <r63238@freescale.com>
42231 Date:   Wed Mar 26 22:50:45 2008 +0800
42232
42233     ata: make the ata_piix driver using new SATA framework
42234
42235     original ata_piix driver is using IDE framework, not real
42236     SATA framework. For now, the ata_piix driver is only used
42237     by x86 sc520_cdp board. This patch makes the ata_piix driver
42238     use the new SATA framework, so
42239
42240     - remove the duplicated command stuff
42241     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
42242     - add the CONFIG_CMD_SATA define to sc520_cdp.h
42243
42244     Signed-off-by: Dave Liu <daveliu@freescale.com>
42245
42246 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
42247 Author: Dave Liu <r63238@freescale.com>
42248 Date:   Wed Mar 26 22:49:44 2008 +0800
42249
42250     ata: add the support for SATA framework
42251
42252     - add the SATA framework
42253     - add the SATA command line
42254
42255     Signed-off-by: Dave Liu <daveliu@freescale.com>
42256
42257 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
42258 Author: Dave Liu <r63238@freescale.com>
42259 Date:   Wed Mar 26 22:48:18 2008 +0800
42260
42261     ata: merge the header of ata_piix driver
42262
42263     move the sata.h from include/ to drivers/block/ata_piix.h
42264
42265     Signed-off-by: Dave Liu <daveliu@freescale.com>
42266
42267 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
42268 Author: Dave Liu <r63238@freescale.com>
42269 Date:   Wed Mar 26 22:47:06 2008 +0800
42270
42271     ata: merge the ata_piix driver
42272
42273     move the cmd_sata.c from common/ to drivers/ata_piix.c,
42274     the cmd_sata.c have some part of ata_piix controller drivers.
42275     consolidate the driver to have better framework.
42276
42277     Signed-off-by: Dave Liu <daveliu@freescale.com>
42278
42279 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
42280 Author: Markus Klotzbuecher <mk@denx.de>
42281 Date:   Wed Mar 26 18:26:43 2008 +0100
42282
42283     USB, Storage: fix a bug introduced in commit
42284     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
42285     to only print only information on one storage device, but not for
42286     multiple.
42287
42288     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42289
42290 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
42291 Author: Anatolij Gustschin <agust@denx.de>
42292 Date:   Wed Mar 26 17:47:44 2008 +0100
42293
42294     Fix compilation error in cmd_usb.c
42295
42296     This patch fixes compilation error
42297     cmd_usb.c: In function 'do_usb':
42298     cmd_usb.c:552: error: void value not ignored as it ought to be
42299
42300     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42301     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42302
42303 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
42304 Author: Kumar Gala <galak@kernel.crashing.org>
42305 Date:   Wed Mar 26 08:53:53 2008 -0500
42306
42307     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
42308
42309     Provide a board_lmb_reserve helper function to ensure we reserve
42310     the page of memory we are using for the boot page translation code.
42311
42312     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42313
42314 commit 79679d80021ab095e639e250ca472fe526da02e2
42315 Author: Kumar Gala <galak@kernel.crashing.org>
42316 Date:   Wed Mar 26 08:34:25 2008 -0500
42317
42318     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
42319
42320     The following changes are needed to be inline with ePAPR v0.81:
42321
42322     * r4, r5 and now always set to 0 on boot release
42323     * r7 is used to pass the size of the initial map area (IMA)
42324     * EPAPR_MAGIC value changed for book-e processors
42325     * changes in the spin table layout
42326     * spin table supports a 64-bit physical release address
42327
42328     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42329
42330 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
42331 Author: Jon Loeliger <jdl@freescale.com>
42332 Date:   Wed Mar 19 15:02:07 2008 -0500
42333
42334     FSL: Clean up board/freescale/common/Makefile
42335
42336     Each file that can be built here now follows some
42337     CONFIG_ option so that they are appropriately built
42338     or not, as needed.  And CONFIG_ defines were added
42339     to various board config files to make sure that happens.
42340
42341     The other board/freescale/*/Makefiles no longer need
42342     to reach up and over into ../common to build their
42343     individually needed files any more.
42344
42345     Boards that are CDS specific were renamed with cds_ prefix.
42346
42347     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42348
42349 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
42350 Author: Kumar Gala <galak@kernel.crashing.org>
42351 Date:   Wed Feb 27 22:00:27 2008 -0600
42352
42353     85xx: Fix merge duplication
42354
42355     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
42356
42357     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42358
42359 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
42360 Author: James Yang <James.Yang@freescale.com>
42361 Date:   Tue Feb 12 16:35:07 2008 -0600
42362
42363     85xx: Expand CCSR space with more DDR controller registers.
42364
42365     Signed-off-by: James Yang <James.Yang@freescale.com>
42366     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42368
42369 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
42370 Author: James Yang <James.Yang@freescale.com>
42371 Date:   Fri Feb 8 18:05:08 2008 -0600
42372
42373     85xx: Speed up get_ddr_freq() and get_bus_freq()
42374
42375     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
42376     called.  However, get_sys_info() recalculates extraneous information when
42377     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
42378     values from global_data instead.
42379
42380     Signed-off-by: James Yang <James.Yang@freescale.com>
42381     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42382
42383 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
42384 Author: James Yang <James.Yang@freescale.com>
42385 Date:   Fri Feb 8 16:46:27 2008 -0600
42386
42387     85xx: Show DDR memory data rate in addition to the memory clock frequency.
42388
42389     Show the DDR memory data rate in addition to the memory clock
42390     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
42391     memory clock.
42392
42393     Signed-off-by: James Yang <James.Yang@freescale.com>
42394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42395
42396 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
42397 Author: James Yang <James.Yang@freescale.com>
42398 Date:   Fri Feb 8 16:44:53 2008 -0600
42399
42400     85xx: get_tbclk() speed up and rounding fix
42401
42402     Speed up get_tbclk() by referencing pre-computed bus clock
42403     frequency value from global data instead of sys_info_t.  Fix
42404     rounding of result to nearest; previously it was rounding
42405     upwards.
42406
42407     Signed-off-by: James Yang <James.Yang@freescale.com>
42408     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42409
42410 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
42411 Author: Andy Fleming <afleming@freescale.com>
42412 Date:   Wed Feb 6 01:19:40 2008 -0600
42413
42414     Update SVR numbers to expand support
42415
42416     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
42417     is used to distinguish certain variants within an SOC family.  To
42418     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
42419     constants to reflect the larger value.  We also add SVR numbers for all
42420     of the current variants.  Finally, to make things neater, rather than
42421     use an enormous switch statement to print out the CPU type, we create
42422     and array of SVR/name pairs (using a macro), and print out the CPU name
42423     that matches the SVR SOC version.
42424
42425     Signed-off-by: Andy Fleming <afleming@freescale.com>
42426
42427 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
42428 Author: Andy Fleming <afleming@freescale.com>
42429 Date:   Wed Feb 6 01:12:57 2008 -0600
42430
42431     Add the Freescale PCI device IDs
42432
42433     Signed-off-by: Andy Fleming <afleming@freescale.com>
42434
42435 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
42436 Author: Kumar Gala <galak@kernel.crashing.org>
42437 Date:   Thu Feb 14 11:04:23 2008 -0600
42438
42439     85xx: Added support for multicore boot mechanism
42440
42441     Added the cpu command that provides a generic mechanism to get status,
42442     reset, and release secondary cores in multicore processors.
42443
42444     Added support for using the ePAPR defined spin-table mechanism on 85xx.
42445
42446     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42447     Signed-off-by: Andy Fleming <afleming@freescale.com>
42448
42449 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
42450 Author: Kumar Gala <galak@kernel.crashing.org>
42451 Date:   Thu Jan 17 16:48:33 2008 -0600
42452
42453     85xx: Added support for multicore boot mechanism
42454
42455     Added the cpu command that provides a generic mechanism to get status,
42456     reset, and release secondary cores in multicore processors.
42457
42458     Added support for using the ePAPR defined spin-table mechanism on 85xx.
42459
42460     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42461
42462 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
42463 Author: Kumar Gala <galak@kernel.crashing.org>
42464 Date:   Wed Jan 30 14:55:14 2008 -0600
42465
42466     85xx: Add the concept of CFG_CCSRBAR_PHYS
42467
42468     When we go to 36-bit physical addresses we need to keep the concept of
42469     the physical CCSRBAR address seperate from the virtual one.
42470
42471     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
42472
42473     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42474
42475 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
42476 Author: Wolfgang Denk <wd@denx.de>
42477 Date:   Wed Mar 26 15:38:47 2008 +0100
42478
42479     Coding style cleanup.
42480
42481     Signed-off-by: Wolfgang Denk <wd@denx.de>
42482
42483 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
42484 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42485 Date:   Wed Mar 26 13:02:13 2008 +0100
42486
42487     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
42488
42489     The default settings for RTC DS1337 keeps the OSC
42490     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
42491     turn it off.
42492
42493     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42494
42495 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
42496 Author: Wolfgang Denk <wd@denx.de>
42497 Date:   Wed Mar 26 11:48:46 2008 +0100
42498
42499     Cleanup coding style, update CHANGELOG
42500
42501     Signed-off-by: Wolfgang Denk <wd@denx.de>
42502
42503 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
42504 Author: Wolfgang Denk <wd@denx.de>
42505 Date:   Wed Mar 26 10:40:12 2008 +0100
42506
42507     README: update documentation (availability, links, etc.)
42508
42509     Signed-off-by: Wolfgang Denk <wd@denx.de>
42510
42511 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
42512 Author: Aras Vaichas <arasv@magtech.com.au>
42513 Date:   Tue Mar 25 12:09:07 2008 +1100
42514
42515     USB Storage, add meaningful return value
42516
42517     This patch changes the "usb storage" command to return success if it
42518     finds a USB storage device, otherwise it returns error.
42519
42520     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42521
42522 commit 18e69a35efbb078403db0c0063986470dad7d082
42523 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42524 Date:   Fri Mar 14 23:20:18 2008 +0300
42525
42526     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
42527
42528     Linux understands "host" (default), "peripheral" and "otg" (broken).
42529     Though, U-Boot doesn't restrict dr_mode variable to these values (think
42530     of renames in future).
42531
42532     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42533     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42534
42535 commit c7604783b236e368f225efb7b3efb418fe20b404
42536 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42537 Date:   Fri Mar 14 23:20:30 2008 +0300
42538
42539     tsec: fix link detection for the RTL8211B PHY
42540
42541     RTL8211B sets link state register after autonegotiation complete,
42542     so with bootdelay=0 RTL8211B will report lack of the link.
42543
42544     To fix this, we should wait for aneg to complete, even if the
42545     link is currently down.
42546
42547     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42548     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42549
42550 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
42551 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42552 Date:   Mon Mar 24 20:47:09 2008 +0300
42553
42554     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
42555
42556     device_type = "soc" is being deprecated, newer device trees will use
42557     "fsl,soc" and/or "fsl,immr" for the soc nodes.
42558
42559     This patch also adds clock-frequency property for soc nodes (the same
42560     value as bus-frequency).
42561
42562     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42563
42564 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
42565 Author: Joe D'Abbraccio <ljd015@freescale.com>
42566 Date:   Mon Mar 24 13:00:59 2008 -0400
42567
42568     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
42569
42570     With the original value of 1/2 clock cycle delay, the system ran relatively
42571     stable except when we run benchmarks that are intensive users of memory.
42572     When I run samba connected disk with a HDBENCH test, the system locks-up
42573     or reboots sporadically.
42574
42575     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
42576
42577 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
42578 Author: Scott Wood <scottwood@freescale.com>
42579 Date:   Mon Mar 24 12:44:13 2008 -0500
42580
42581     mpc83xx: Set PCI I/O bus-address base to zero.
42582
42583     The device trees for these boards describe PCI I/O as starting from
42584     address zero from the device's perspective.
42585
42586     Placing I/O elsewhere may cause problems with certain PCI boards, and may
42587     cause problems with Linux.
42588
42589     Signed-off-by: Scott Wood <scottwood@freescale.com>
42590
42591 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
42592 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42593 Date:   Mon Mar 24 20:47:05 2008 +0300
42594
42595     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
42596
42597     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
42598     This patch fixes "system time drifting" problem.
42599
42600     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42601
42602 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
42603 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42604 Date:   Mon Mar 24 20:47:02 2008 +0300
42605
42606     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
42607
42608     This is needed to update /choosen/linux,stdout-path properly.
42609
42610     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42611
42612 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
42613 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42614 Date:   Mon Mar 24 20:47:00 2008 +0300
42615
42616     mpc83xx: MPC8360E-RDK: add dhcp command
42617
42618     Plus modify environment to use it and remove bootfile env variable,
42619     it is internal and CONFIG_BOOTFILE is used for these purposes.
42620
42621     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42622
42623 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
42624 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42625 Date:   Mon Mar 24 20:46:57 2008 +0300
42626
42627     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
42628
42629     Current DDR setup easily causes memory corruption, this patch fixes it.
42630
42631     Also fix TIMING_CFG0_MRS_CYC definition.
42632
42633     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42634
42635 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
42636 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42637 Date:   Mon Mar 24 20:46:53 2008 +0300
42638
42639     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
42640
42641     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
42642     controller and FHCI (QE USB).
42643
42644     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42645
42646 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
42647 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42648 Date:   Mon Mar 24 20:46:51 2008 +0300
42649
42650     mpc83xx: MPC8360E-RDK: add support for NAND
42651
42652     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42653
42654 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
42655 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42656 Date:   Mon Mar 24 20:46:46 2008 +0300
42657
42658     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
42659
42660     This is needed for BCM PHYs to work on this board.
42661
42662     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42663
42664 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
42665 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42666 Date:   Mon Mar 24 20:46:34 2008 +0300
42667
42668     uec: add support for Broadcom BCM5481 Gigabit PHY
42669
42670     This patch adds basic support for Broadcom BCM5481 PHY.
42671
42672     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
42673     Peter Barada <peterb@logicpd.com>.
42674
42675     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42676
42677 commit 6a600c3a1876bc203445df4f0fd6b12648259666
42678 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42679 Date:   Mon Mar 24 20:46:28 2008 +0300
42680
42681     uec: add support for RGMII_RXID interface mode
42682
42683     PHY drivers will use it to setup software delay between RXD and RXC
42684     signals.
42685
42686     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42687
42688 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
42689 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42690 Date:   Mon Mar 24 20:46:24 2008 +0300
42691
42692     uec: add support for gbit mii status readings
42693
42694     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42695
42696 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
42697 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42698 Date:   Mon Mar 24 17:40:47 2008 +0300
42699
42700     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
42701
42702     This is primarily for the early console support.
42703
42704     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42705
42706 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
42707 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42708 Date:   Mon Mar 24 17:40:43 2008 +0300
42709
42710     83xx: initialize serdes for MPC837XRDB boards
42711
42712     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
42713     On the MPC8378ERDB: 2 PCI-E
42714     On the MPC8379ERDB: 4 SATA
42715
42716     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42717
42718 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
42719 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42720 Date:   Mon Mar 24 17:40:32 2008 +0300
42721
42722     83xx: serdes setup routines
42723
42724     This patch adds few routines to configure serdes on 837x targets.
42725
42726     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42727
42728 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
42729 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42730 Date:   Mon Mar 24 17:40:27 2008 +0300
42731
42732     83xx: split COBJS onto separate lines
42733
42734     ..plus get rid of some #ifdefs in the .c files.
42735
42736     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42737
42738 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
42739 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42740 Date:   Mon Mar 24 17:40:23 2008 +0300
42741
42742     83xx: nand support for MPC837XRDB boards
42743
42744     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42745
42746 commit 82e45a204190593e8613145a928f998fb8c909c4
42747 Author: Jerry Van Baren <gvb.uboot@gmail.com>
42748 Date:   Tue Mar 18 21:44:41 2008 -0400
42749
42750     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
42751
42752     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42753     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42754
42755 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
42756 Author: Michael Barkowski <michael.barkowski@freescale.com>
42757 Date:   Thu Mar 20 13:15:39 2008 -0400
42758
42759     mpc8323erdb: remove RTC and add EEPROM
42760
42761     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
42762
42763     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42764     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42765
42766 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
42767 Author: Michael Barkowski <michael.barkowski@freescale.com>
42768 Date:   Thu Mar 20 13:15:34 2008 -0400
42769
42770     mpc8323erdb: Improve the system performance
42771
42772     The following changes are based on kernel UCC ethernet performance:
42773
42774     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
42775     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
42776         switch to enable this setting.
42777
42778     The following changes are based on the App Note AN3369 and
42779     verified to improve memory latency using LMbench:
42780
42781     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
42782     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
42783         previously.
42784     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
42785         Twr=15ns, and this was already the setting in DDR_MODE)
42786     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
42787         Trp=15ns)
42788     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
42789         Tras=40ns)
42790     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
42791         Trcd=15ns)
42792     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
42793         Trfc=75ns)
42794     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
42795         on Tfaw=50ns)
42796     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
42797         on CL=3 and WL=2).
42798
42799     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42800     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42801
42802 commit fc549c871f43933396a5b3e21d897023d4b31b8d
42803 Author: Michael Barkowski <michael.barkowski@freescale.com>
42804 Date:   Thu Mar 20 13:15:28 2008 -0400
42805
42806     mpc8323erdb: use readable DDR config macros
42807
42808     Use available shift/mask macros to define DDR configuration.
42809
42810     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
42811     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42812
42813 commit 89c7784ed90ba50301eec521144f95111e472906
42814 Author: Timur Tabi <timur@freescale.com>
42815 Date:   Fri Feb 8 13:15:55 2008 -0600
42816
42817     83xx: Add Vitesse VSC7385 firmware uploading
42818
42819     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
42820     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
42821     Cleaned up the board header files to make selecting the VSC7385 easier to
42822     control.
42823
42824     Signed-off-by: Timur Tabi <timur@freescale.com>
42825     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42826
42827 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
42828 Author: Timur Tabi <timur@freescale.com>
42829 Date:   Fri Feb 8 13:15:54 2008 -0600
42830
42831     NET: Add Vitesse VSC7385 firmware uploading
42832
42833     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
42834     and other boards.  A small firwmare must be uploaded to its on-board memory
42835     before it can be enabled.  This patch adds the code which uploads firmware
42836     (but not the firmware itself).
42837
42838     Previously, this feature was provided by a U-Boot application that was
42839     made available only on Freescale BSPs.  The VSC7385 firmware must still
42840     be obtained separately, but at least there is no longer a need for a separate
42841     application.
42842
42843     Signed-off-by: Timur Tabi <timur@freescale.com>
42844     Acked-by: Ben Warren <biggerbadderben@gmail.com>
42845
42846 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
42847 Author: Wolfgang Denk <wd@denx.de>
42848 Date:   Wed Mar 26 00:52:10 2008 +0100
42849
42850     Coding Style cleanyp; update CHANGELOG
42851
42852     Signed-off-by: Wolfgang Denk <wd@denx.de>
42853
42854 commit 43ddd9c820fec44816188f53346b464e20b3142d
42855 Author: Jerry Van Baren <gvb.uboot@gmail.com>
42856 Date:   Sat Mar 22 14:23:49 2008 -0400
42857
42858     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
42859
42860     These defines embedded the u-boot env variables and/or the bd_t structure
42861     in the fdt blob.  The conclusion of discussion on the u-boot email list
42862     was that embedding these in the fdt blob is not useful: there are better
42863     ways of passing the data (in fact, the fdt blob itself replaces the
42864     bd_t struct).
42865
42866     The only board that enables these is the stxxtc and they don't appear
42867     to be used by linux.
42868
42869     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42870     Acked-by: Kim Phillips <kim.phillips@freescale.com>
42871
42872 commit 22ed2285743359fd1fe73e411dff914b2256e68f
42873 Author: Stefan Roese <sr@denx.de>
42874 Date:   Mon Mar 17 10:49:25 2008 +0100
42875
42876     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
42877
42878     Signed-off-by: Stefan Roese <sr@denx.de>
42879
42880 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
42881 Author: Kyungmin Park <kmpark@infradead.org>
42882 Date:   Mon Mar 17 08:54:06 2008 +0900
42883
42884     Add Flex-OneNAND booting support
42885
42886     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
42887     using a NOR Flash interface. This on-chip integration enables system designers
42888     to reduce external system logic and use high-density NAND Flash
42889     in applications that would otherwise have to use more NOR components.
42890
42891     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
42892     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
42893     that require low reliability and high density, SLC area of Flex-OneNAND
42894     to store data that need high reliability and high performance. Flex-OneNAND
42895     can let users take advantage of storing these two different types of data
42896     into one chip, which is making Flex-OneNAND more cost- and space-effective.
42897
42898     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42899
42900 commit c512389cc4a10253249271ff6c887c6dab1f0db2
42901 Author: André Schwarz <andre.schwarz@matrix-vision.de>
42902 Date:   Thu Mar 13 13:50:52 2008 +0100
42903
42904     MPC5200: support setup without FEC
42905
42906     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
42907     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
42908
42909     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
42910     Acked-by: Grant Likely <grant.likely@secretlab.ca>
42911
42912 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
42913 Author: Jon Loeliger <jdl@freescale.com>
42914 Date:   Wed Mar 5 18:05:46 2008 -0600
42915
42916     FSL: Move board/mpc8266ads under board/freescale
42917
42918     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42919
42920 commit 7f1d846e5c5754449c286587d099d85246062772
42921 Author: Jon Loeliger <jdl@freescale.com>
42922 Date:   Wed Mar 5 18:05:47 2008 -0600
42923
42924     FSL: Move board/mpc7448hpc2 under board/freescale
42925
42926     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42927
42928 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
42929 Author: Jon Loeliger <jdl@freescale.com>
42930 Date:   Wed Mar 5 18:05:45 2008 -0600
42931
42932     FSL: Move board/mpc8260ads under board/freescale
42933
42934     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42935
42936 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
42937 Author: goda.yusuke <goda.yusuke@renesas.com>
42938 Date:   Wed Mar 5 17:08:33 2008 +0900
42939
42940     net: Add support AX88796L ethernet device
42941
42942     AX88796L is device of NE2000 compatible.
42943     This patch support AX88796L ethernet device.
42944
42945     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
42946     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42947
42948 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
42949 Author: Wolfgang Denk <wd@denx.de>
42950 Date:   Tue Mar 25 22:50:41 2008 +0100
42951
42952     ne2000 driver: change #ifdef to Makefile conditional compilation
42953
42954     Signed-off-by: Wolfgang Denk <wd@denx.de>
42955
42956 commit e710185aae90c64d39c2d453e40e58ceefe4f250
42957 Author: goda.yusuke <goda.yusuke@renesas.com>
42958 Date:   Wed Mar 5 17:08:20 2008 +0900
42959
42960     net: Divided code of NE2000 ethernet driver
42961
42962     There are more devices of the NE2000 base.
42963     A present code is difficult for us to support more devices.
42964     To support more NE2000 clone devices, separated the function.
42965
42966     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
42967     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42968
42969 commit 395bce4f59a507a60a475f7ee46bed47de9482df
42970 Author: Mike Frysinger <vapier@gentoo.org>
42971 Date:   Sun Feb 24 23:58:13 2008 -0500
42972
42973     net/Blackfin: move on-chip MAC driver into drivers/net/
42974
42975     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
42976     directory, but it is not board specific, so relocate it to the drivers dir
42977     so that other Blackfin ports can utilize it.
42978
42979     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42980
42981 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
42982 Author: Mike Frysinger <vapier@gentoo.org>
42983 Date:   Sun Feb 24 23:52:35 2008 -0500
42984
42985     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
42986
42987     Since the "ssync" instruction may have hardware anomalies associated with
42988     it, have the smc91111 driver use the SSYNC macro rather than invoking it
42989     directly.  We workaround all the anomalies via this macro.
42990
42991     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42992
42993 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
42994 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
42995 Date:   Sun Feb 17 22:57:47 2008 +0000
42996
42997     8xx: Update OF support on 8xx
42998
42999     This patch does some shifting around of OF support on 8xx.
43000
43001     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
43002
43003 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
43004 Author: Kumar Gala <galak@kernel.crashing.org>
43005 Date:   Fri Feb 15 15:16:18 2008 -0600
43006
43007     ppc: Allow boards to specify how much memory they can map
43008
43009     For historical reasons we limited the stack to 256M because some boards
43010     could only map that much via BATS.  However newer boards are capable of
43011     mapping more memory (for example 85xx is capble of doing up to 2G).
43012
43013     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43014
43015 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
43016 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
43017 Date:   Fri Feb 15 01:05:58 2008 +0000
43018
43019     8xx : Add OF support to Adder875 board port - resubmit
43020
43021     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
43022
43023 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
43024 Author: Kumar Gala <galak@kernel.crashing.org>
43025 Date:   Thu Feb 14 20:44:42 2008 -0600
43026
43027     Add setexpr command
43028
43029     Add a simple expr style command that will set an env variable as the result
43030     of the command.  This allows us to do simple math in shell.  The following
43031     operations are supported: &, |, ^, +, -, *, /.
43032
43033     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43034
43035 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
43036 Author: Jon Loeliger <jdl@freescale.com>
43037 Date:   Wed Mar 5 17:27:48 2008 -0600
43038
43039     FSL: Move board/mpc7448hpc2 under board/freescale
43040
43041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43042
43043 commit 449c703374a8868453425e15da7e2f76221b72e4
43044 Author: Jon Loeliger <jdl@freescale.com>
43045 Date:   Wed Mar 5 17:21:43 2008 -0600
43046
43047     FSL: Move board/mpc8266ads under board/freescale
43048
43049     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43050
43051 commit 5863577989ad689427bb750107e9a75f1c1645d2
43052 Author: Jon Loeliger <jdl@freescale.com>
43053 Date:   Wed Mar 5 16:41:41 2008 -0600
43054
43055     FSL: Move board/mpc8260ads under board/freescale
43056
43057     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43058
43059 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
43060 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43061 Date:   Tue Mar 25 21:30:08 2008 +0900
43062
43063     [MIPS] Move gth2_config from ARM section to MIPS
43064
43065     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43066
43067 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
43068 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43069 Date:   Tue Mar 25 21:30:07 2008 +0900
43070
43071     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
43072
43073     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43074
43075 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
43076 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43077 Date:   Tue Mar 25 21:30:07 2008 +0900
43078
43079     [MIPS] Fix dcache_status()
43080
43081     You can't judge UNCACHED by Config.K0 LSB.
43082
43083     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43084
43085 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
43086 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43087 Date:   Tue Mar 25 21:30:07 2008 +0900
43088
43089     [MIPS] Introduce _machine_restart
43090
43091     Handles machine specific functions by using weak functions.
43092
43093     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43094
43095 commit decaba6f5cf386d569ac3997bebb871b966c6b18
43096 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43097 Date:   Tue Mar 25 21:30:07 2008 +0900
43098
43099     [MIPS] Cleanup CP0 Status initialization
43100
43101     Add setup_c0_status from Linux. For the moment we disable interrupts, set
43102     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
43103     reset-time configuration and will work well across most processors.
43104
43105     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43106
43107 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
43108 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43109 Date:   Tue Mar 25 21:30:07 2008 +0900
43110
43111     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
43112
43113     Without this change, we'll be suffering from deffered WATCH exception
43114     once Status.EXL is cleared. Make sure Cause.WP is cleared.
43115
43116     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43117
43118 commit 26138623230ca2bad3c78e05a65527ea70c8b688
43119 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43120 Date:   Tue Mar 25 21:30:07 2008 +0900
43121
43122     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
43123
43124     Move things to appropriate place.
43125
43126     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43127
43128 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
43129 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43130 Date:   Tue Mar 25 21:30:06 2008 +0900
43131
43132     [MIPS] Implement flush_cache()
43133
43134     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
43135     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
43136     function is used not only in U-Boot specfic programs but also at loading
43137     target binaries.
43138
43139     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43140
43141 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
43142 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43143 Date:   Tue Mar 25 21:30:06 2008 +0900
43144
43145     [MIPS] Fix I-/D-cache initialization loops
43146
43147     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
43148     again per a loop for I-cache initialization. But according to 'See MIPS
43149     Run', we're encouraged to use three separate loops rather than combining
43150     them *for both I- and D-cache*. This patch tries to fix this.
43151
43152     In accordance with fixing above, mips_init_[id]cache are separated from
43153     mips_cache_reset(), and rewrite cache loops are completely rewritten with
43154     useful macros.
43155
43156     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43157
43158 commit 1898840797c7f50799377bd5b285a8a93a82c419
43159 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43160 Date:   Tue Mar 25 21:30:06 2008 +0900
43161
43162     [MIPS] Replace memory clearance code with f_fill64
43163
43164     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
43165
43166     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43167
43168 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
43169 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43170 Date:   Tue Mar 25 21:30:06 2008 +0900
43171
43172     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
43173
43174     This patch replaces the current function definitions with NESTED, LEAF
43175     and END macro. They specify some more additional information about the
43176     function; an alignment of symbol, type of symbol, stack frame usage, etc.
43177     These information explicitly tells the assembler and the debugger about
43178     the types of code we want to generate.
43179
43180     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43181
43182 commit 282223a607c611425fa33f5428f8eae6636972bb
43183 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43184 Date:   Tue Mar 25 11:43:17 2008 +0900
43185
43186     [MIPS] asm headers' updates
43187
43188     Make some asm headers adjusted to the latest Linux kernel.
43189
43190     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43191
43192 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
43193 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43194 Date:   Tue Mar 25 11:39:29 2008 +0900
43195
43196     [MIPS] Request for the 'mips_cache_lock()' removal
43197
43198     The initial intension of having mips_cache_lock() was to use the cache
43199     as memory for temporary stack use so that a C environment can be set up
43200     as early as possible.
43201
43202     But now mips_cache_lock() follow lowlevel_init(). We've already have the
43203     real memory initilaized at this point, therefore we could/should use it.
43204     No reason to lock at all.
43205
43206     Other problems:
43207
43208     Cache locking is not consistent across MIPS implementaions. Some imple-
43209     mentations don't support locking at all. The style of locking varies -
43210     some support per line locking, others per way, etc. Some parts use bits
43211     in status registers instead of cache ops. Current mips_cache_lock() is
43212     not necessarily general-purpose.
43213
43214     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
43215     they are never get unlocked, so the code relies on whatever gets loaded
43216     after U-Boot to re-initialize the cache and clear the locks. We're sup-
43217     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
43218     but leave the situation as it is for a long time.
43219
43220     For these reasons, I proposed the removal of mips_cache_lock() from the
43221     global start-up code.
43222
43223     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
43224     *things have changed*. If he wants the same behavior as before, he needs
43225     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
43226
43227     If we don't have any regression report through several releases, then
43228     we'll remove codes entirely.
43229
43230     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
43231     Acked-by: Andrew Dyer <amdyer@gmail.com>
43232
43233 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
43234 Author: Yuri Tikhonov <yur@emcraft.com>
43235 Date:   Mon Mar 24 11:30:54 2008 +0100
43236
43237     lwmon5 SYSMON POST: fix backlight control
43238
43239     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
43240     run on the board, then the SYSMON POST controls the display backlight
43241     (doesn't switch backlight ON if POST FAILED, and does switch the
43242     backlight ON if PASSED).
43243
43244     If not, then the video driver controls the display backlight (just
43245     switch ON the backlight upon initialization).
43246
43247     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43248
43249 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
43250 Author: Yuri Tikhonov <yur@emcraft.com>
43251 Date:   Mon Mar 24 11:29:14 2008 +0100
43252
43253     lwmon5 SYSMON POST: fix handling of negative temperatures
43254
43255     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
43256
43257     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43258
43259 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
43260 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43261 Date:   Fri Mar 7 16:04:25 2008 +0900
43262
43263     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
43264
43265     In current source code, when the device number of PCI is 0, process PCI
43266     bridge without fail. However, when the device number is 0, it is not PCI
43267     always bridge. There are times when device of PCI allocates.
43268
43269     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
43270     use this patch.
43271
43272     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43273     Acked-by: Stefan Roese <sr@denx.de>
43274
43275 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
43276 Author: Yuri Tikhonov <yur@emcraft.com>
43277 Date:   Fri Mar 21 09:18:40 2008 +0100
43278
43279     LWMON5: fix dsPIC POST
43280
43281     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
43282
43283     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
43284
43285 commit 388b82fddc7c05596f3f615f190da0448227dc82
43286 Author: Bartlomiej Sieka <tur@semihalf.com>
43287 Date:   Thu Mar 20 23:23:13 2008 +0100
43288
43289     [new uImage] Enable new uImage support for the pcs440ep board.
43290
43291     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43292
43293 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
43294 Author: Bartlomiej Sieka <tur@semihalf.com>
43295 Date:   Thu Mar 20 23:23:13 2008 +0100
43296
43297     [new uImage] Do not compile new uImage format support by default
43298
43299     Disable default building of new uImage format support in preparation
43300     for merge with the master. Support for new format can be enabled on
43301     a per-board basis, by defining the following in the board's config file:
43302
43303     #define CONFIG_FIT             1
43304     #define CONFIG_OF_LIBFDT       1
43305
43306     This can be optionally defined to give more verbose output:
43307
43308     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
43309
43310     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43311
43312 commit dafaede8a46c7159310239e036c93e31c6374487
43313 Author: Bartlomiej Sieka <tur@semihalf.com>
43314 Date:   Thu Mar 20 23:20:31 2008 +0100
43315
43316     [new uImage] Disable debuging output in preparation for merge with master
43317
43318     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43319
43320 commit fbe7a155027beacebaee9b32e1ada781fe924bca
43321 Author: Bartlomiej Sieka <tur@semihalf.com>
43322 Date:   Thu Mar 20 19:38:45 2008 +0100
43323
43324     [new uImage] Compilation and new uImage handling fixes for imxtract
43325
43326     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
43327     include/config_cmd_default.h. Fix few warnings and handling of new format
43328     images.
43329
43330     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43331
43332 commit 36cc8cbb3379d5166f882641123521735c469f92
43333 Author: Bartlomiej Sieka <tur@semihalf.com>
43334 Date:   Thu Mar 20 23:10:19 2008 +0100
43335
43336     [new uImage] Fix autoscr command used with new uImage format
43337
43338     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43339
43340 commit 43142e817f0597be412e7cbe19413f5532eafa5d
43341 Author: Bartlomiej Sieka <tur@semihalf.com>
43342 Date:   Thu Mar 20 23:10:19 2008 +0100
43343
43344     [new uImage] Fix *.its files location in documentation
43345
43346     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43347
43348 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
43349 Author: Wolfgang Denk <wd@denx.de>
43350 Date:   Thu Mar 20 22:01:38 2008 +0100
43351
43352     lwmon5 POST: remove unreachable code
43353
43354     plus some coding style cleanup
43355
43356     Signed-off-by: Wolfgang Denk <wd@denx.de>
43357
43358 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
43359 Author: Yuri Tikhonov <yur@emcraft.com>
43360 Date:   Thu Mar 20 17:56:04 2008 +0300
43361
43362     LWMON5: POST RTC fix
43363
43364     Modify the RTC API to provide one a status for the time reported by
43365     the rtc_get() function:
43366       0 - a reliable time is guaranteed,
43367     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
43368           and so on).
43369
43370     The RTC chip drivers are responsible for providing this info if the
43371     corresponding chip supports such functionality. If not - always
43372     report that the time is reliable.
43373
43374     The POST RTC test was modified to detect the RTC faults utilizing
43375     this new rtc_get() feature.
43376
43377     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43378
43379 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
43380 Author: Martin Krause <martin.krause@tqs.de>
43381 Date:   Wed Mar 19 14:25:14 2008 +0100
43382
43383     TQM5200B: update MTD partition layout
43384
43385     - insert partition for dtb blob to TQM5200B MTD layout
43386     - set env variables dependent on the configured board
43387       (TQM5200 or TQM5200B)
43388
43389     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43390
43391 commit f0105727d132f56a21fa3ed8b162309cca6cac44
43392 Author: Stefan Roese <sr@denx.de>
43393 Date:   Wed Mar 19 07:09:26 2008 +0100
43394
43395     CFI: Small cleanup for FLASH_SHOW_PROGRESS
43396
43397     With this patch we don't need that many #ifdef's in the code. It moves
43398     the subtraction into the macro and defines a NOP-macro when
43399     CONFIG_FLASH_SHOW_PROGRESS is not defined.
43400
43401     Signed-off-by: Stefan Roese <sr@denx.de>
43402     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
43403
43404 commit 9a042e9ca512beaaa2cb450274313fc477141241
43405 Author: Jerry Van Baren <gvb.uboot@gmail.com>
43406 Date:   Sat Mar 8 13:48:01 2008 -0500
43407
43408     Flash programming progress countdown.
43409
43410     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
43411
43412 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
43413 Author: Bartlomiej Sieka <tur@semihalf.com>
43414 Date:   Wed Mar 19 10:00:06 2008 +0100
43415
43416     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
43417
43418     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43419
43420 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
43421 Author: David Gibson <david@gibson.dropbear.id.au>
43422 Date:   Mon Feb 18 18:09:04 2008 +1100
43423
43424     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
43425
43426     Since fdt_node_offset_by_compatible() was converted to the new
43427     fdt_next_node() iterator, a chunk of initialization code became
43428     redundant, but was not removed by oversight.  This patch cleans it up.
43429
43430     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
43431
43432 commit d0ccb9b140b472039732de102fc14597eedb14df
43433 Author: David Gibson <david@gibson.dropbear.id.au>
43434 Date:   Mon Feb 18 18:06:31 2008 +1100
43435
43436     libfdt: Trivial cleanup for CHECK_HEADER)
43437
43438     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
43439     However, there are a handful of functions (fdt_move, rw_check_header,
43440     fdt_open_into) from other files which could also use it (currently
43441     they open-code something more-or-less identical).  Therefore, this
43442     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
43443     places.
43444
43445     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
43446
43447 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
43448 Author: Kumar Gala <galak@kernel.crashing.org>
43449 Date:   Wed Feb 20 14:32:36 2008 -0600
43450
43451     Fix fdt boardsetup command parsing
43452
43453     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
43454
43455     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43456
43457 commit 804887e6001e2f00bea11431bf34d6d472512cda
43458 Author: Kumar Gala <galak@kernel.crashing.org>
43459 Date:   Fri Feb 15 03:34:36 2008 -0600
43460
43461     Add sub-commands to fdt
43462
43463     fdt header                          - Display header info
43464     fdt bootcpu <id>                    - Set boot cpuid
43465     fdt memory <addr> <size>            - Add/Update memory node
43466     fdt rsvmem print                    - Show current mem reserves
43467     fdt rsvmem add <addr> <size>        - Add a mem reserve
43468     fdt rsvmem delete <index>           - Delete a mem reserves
43469
43470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43471
43472 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
43473 Author: David Gibson <david@gibson.dropbear.id.au>
43474 Date:   Thu Feb 14 16:50:34 2008 +1100
43475
43476     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
43477
43478     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
43479     node which has NOP tags interspersed with its properties.  In this
43480     case fdt_add_subnode_namelen() will put the new subnode before the
43481     first NOP tag, even if there are properties after it, which will
43482     result in an invalid blob.
43483
43484     This patch fixes the bug, and adds a testcase for it.
43485
43486     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
43487
43488 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
43489 Author: David Gibson <david@gibson.dropbear.id.au>
43490 Date:   Tue Feb 12 11:58:31 2008 +1100
43491
43492     libfdt: Add and use a node iteration helper function.
43493
43494     This patch adds an fdt_next_node() function which can be used to
43495     iterate through nodes of the tree while keeping track of depth.  This
43496     function is used to simplify the iteration code in a lot of other
43497     functions, and is also exported for use by library users.
43498
43499     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
43500
43501 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
43502 Author: David Gibson <david@gibson.dropbear.id.au>
43503 Date:   Fri Jan 11 14:55:05 2008 +1100
43504
43505     libfdt: Add fdt_set_name() function
43506
43507     This patch adds an fdt_set_name() function to libfdt, mirroring
43508     fdt_get_name().  This is a r/w function which alters the name of a
43509     given device tree node.
43510
43511     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
43512
43513 commit 23e20aa6488e6c0622496549861bfdc74108debe
43514 Author: Yuri Tikhonov <yur@pollux.denx.de>
43515 Date:   Tue Mar 18 13:33:30 2008 +0100
43516
43517     lwmon5: Fix register test logic to match the specific GDC h/w.
43518
43519     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43520     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43521
43522 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
43523 Author: Yuri Tikhonov <yur@pollux.denx.de>
43524 Date:   Tue Mar 18 13:27:57 2008 +0100
43525
43526     Fix backlight in the lwmon5 POST.
43527
43528     Backlight was switched on even when temperature was too low.
43529
43530     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43531     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43532
43533 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
43534 Author: Yuri Tikhonov <yur@pollux.denx.de>
43535 Date:   Wed Feb 6 18:48:36 2008 +0100
43536
43537     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).
43538
43539      To enable this, alternative, configuration the U-Boot board configuration
43540     file for lwmon5 includes the definitions of alternative addresses for header
43541     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
43542
43543      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
43544     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
43545     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
43546
43547     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43548
43549 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
43550 Author: Yuri Tikhonov <yur@pollux.denx.de>
43551 Date:   Mon Feb 4 17:11:53 2008 +0100
43552
43553     Add support for the lwmon5 board reset via GPIO58.
43554
43555     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43556     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43557
43558 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
43559 Author: Yuri Tikhonov <yur@pollux.denx.de>
43560 Date:   Mon Feb 4 17:09:55 2008 +0100
43561
43562     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
43563
43564     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43565     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43566
43567 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
43568 Author: Yuri Tikhonov <yur@pollux.denx.de>
43569 Date:   Mon Feb 4 14:11:03 2008 +0100
43570
43571     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.
43572
43573     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43574     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43575
43576 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
43577 Author: Yuri Tikhonov <yur@pollux.denx.de>
43578 Date:   Mon Feb 4 14:10:42 2008 +0100
43579
43580     The patch adds new POST tests for the Lwmon5 board. These are:
43581
43582     * External Watchdog test;
43583     * dsPIC tests;
43584     * FPGA test;
43585     * GDC test;
43586     * Sysmon tests.
43587
43588     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43589     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43590
43591 commit c2ed33efbfff5767bca236828e021c55fd547b6c
43592 Author: Yuri Tikhonov <yur@pollux.denx.de>
43593 Date:   Mon Feb 4 14:10:01 2008 +0100
43594
43595     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
43596
43597     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43598
43599 commit 3a5d1e7f1309998791702b2a559e3126781746b9
43600 Author: Yuri Tikhonov <yur@pollux.denx.de>
43601 Date:   Tue Mar 18 13:33:30 2008 +0100
43602
43603     lwmon5: Fix register test logic to match the specific GDC h/w.
43604
43605     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43606     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43607
43608 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
43609 Author: Yuri Tikhonov <yur@pollux.denx.de>
43610 Date:   Tue Mar 18 13:27:57 2008 +0100
43611
43612     Fix backlight in the lwmon5 POST.
43613
43614     Backlight was switcehd on even when temperature was too low.
43615
43616     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43617     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43618
43619 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
43620 Author: Yuri Tikhonov <yur@pollux.denx.de>
43621 Date:   Wed Feb 6 18:48:36 2008 +0100
43622
43623      The patch introduces the alternative configuration of the log buffer for
43624     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
43625     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
43626     PPC440EPX_GPT0_COMP5).
43627
43628      To enable this, alternative, configuration the U-Boot board configuration
43629     file for lwmon5 includes the definitions of alternative addresses for header
43630     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
43631
43632      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
43633     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
43634     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
43635
43636     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43637
43638 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
43639 Author: Yuri Tikhonov <yur@pollux.denx.de>
43640 Date:   Mon Feb 4 17:11:53 2008 +0100
43641
43642     Add support for the lwmon5 board reset via GPIO58.
43643
43644     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43645     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43646
43647 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
43648 Author: Yuri Tikhonov <yur@pollux.denx.de>
43649 Date:   Mon Feb 4 17:09:55 2008 +0100
43650
43651     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
43652     Disable external watch-dog for now.
43653
43654     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43655     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43656
43657 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
43658 Author: Yuri Tikhonov <yur@pollux.denx.de>
43659 Date:   Mon Feb 4 14:11:03 2008 +0100
43660
43661     The patch introduces the CRITICAL feature of POST tests. If the test
43662     marked as POST_CRITICAL fails then the alternative, post_critical,
43663     boot-command is used. If this command is not defined then U-Boot
43664     enters into interactive mode.
43665
43666     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43667     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43668
43669 commit 65b20dcefc89618193fa51947968dada91e4c778
43670 Author: Yuri Tikhonov <yur@pollux.denx.de>
43671 Date:   Mon Feb 4 14:10:42 2008 +0100
43672
43673     The patch adds new POST tests for the Lwmon5 board.
43674     These are:
43675
43676     * External Watchdog test;
43677     * dsPIC tests;
43678     * FPGA test;
43679     * GDC test;
43680     * Sysmon tests.
43681
43682     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43683     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43684
43685 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
43686 Author: Yuri Tikhonov <yur@pollux.denx.de>
43687 Date:   Mon Feb 4 14:10:01 2008 +0100
43688
43689     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
43690
43691     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
43692
43693 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
43694 Author: Wolfgang Denk <wd@denx.de>
43695 Date:   Tue Mar 18 17:35:51 2008 +0100
43696
43697     HMI1001: fix compile problem.
43698
43699     Signed-off-by: Wolfgang Denk <wd@denx.de>
43700
43701 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
43702 Author: Mike Frysinger <vapier@gentoo.org>
43703 Date:   Mon Feb 18 05:32:30 2008 -0500
43704
43705     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
43706
43707     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
43708     for the board specific driver at all.  Just use the common CFI driver.
43709
43710     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43711
43712 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
43713 Author: Mike Frysinger <vapier@gentoo.org>
43714 Date:   Tue Feb 19 00:36:14 2008 -0500
43715
43716     Blackfin: add proper ELF markings to some assembly functions
43717
43718     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43719
43720 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
43721 Author: Mike Frysinger <vapier@gentoo.org>
43722 Date:   Tue Feb 19 00:35:17 2008 -0500
43723
43724     Blackfin: new cplbinfo command for viewing cplb tables
43725
43726     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43727
43728 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
43729 Author: Mike Frysinger <vapier@gentoo.org>
43730 Date:   Mon Feb 18 05:37:51 2008 -0500
43731
43732     Blackfin: update MAINTAINERS list
43733
43734     Add maintainer information for the Blackfin boards.
43735
43736     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43737
43738 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
43739 Author: Mike Frysinger <vapier@gentoo.org>
43740 Date:   Mon Feb 18 05:26:48 2008 -0500
43741
43742     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
43743
43744     Stop tying things to the processor that should be tied to other defines and
43745     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
43746     system to select the -mcpu option.
43747
43748     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43749
43750 commit 86a20fb920bd198105acf7b1191117f566d637ed
43751 Author: Mike Frysinger <vapier@gentoo.org>
43752 Date:   Sat Feb 16 07:40:36 2008 -0500
43753
43754     Blackfin: move bootldr command to common code
43755
43756     This moves the Blackfin-common bootldr command out of the BF537-STAMP
43757     specific board directory and into the common directory so that all Blackfin
43758     boards may utilize it.
43759
43760     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43761
43762 commit decbe029b2a9d3333d02c433389b1c821eea96d7
43763 Author: Heiko Schocher <hs@denx.de>
43764 Date:   Fri Mar 14 11:05:20 2008 +0100
43765
43766     mgcoge: update configuration
43767
43768     Fix configuration for mgcoge board
43769
43770     Signed-off-by: Heiko Schocher <hs@denx.de>
43771
43772 commit c136724cda0219c49f1d4b346f00da29b14fdf14
43773 Author: Wolfgang Denk <wd@denx.de>
43774 Date:   Sun Mar 16 01:22:59 2008 +0100
43775
43776     drivers/rtc/Makefile: keep list sorted
43777
43778     Signed-off-by: Wolfgang Denk <wd@denx.de>
43779
43780 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
43781 Author: Tor Krill <tor@excito.com>
43782 Date:   Sat Mar 15 15:40:26 2008 +0100
43783
43784     Add support for Intersil isl1208 RTC
43785
43786     Signed-off-by: Tor Krill <tor@excito.com>
43787
43788 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
43789 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43790 Date:   Sat Mar 15 17:36:41 2008 +0100
43791
43792     cramfs: Fix ifdef
43793
43794     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43795
43796 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
43797 Author: Wolfgang Denk <wd@denx.de>
43798 Date:   Sun Mar 16 01:12:58 2008 +0100
43799
43800     Conding style cleanup
43801
43802     Signed-off-by: Wolfgang Denk <wd@denx.de>
43803
43804 commit 41712b4e8c95dff23354bcd620e1f9477160c190
43805 Author: Stefan Roese <sr@denx.de>
43806 Date:   Wed Mar 5 12:31:53 2008 +0100
43807
43808     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
43809
43810     This patch adds USB OHCI support to the Canyonlands board port. It also
43811     enables EXT2 support.
43812
43813     Signed-off-by: Stefan Roese <sr@denx.de>
43814
43815 commit 2596f5b9d353ff3e4387a3325d05740f16958038
43816 Author: Stefan Roese <sr@denx.de>
43817 Date:   Wed Mar 5 12:29:32 2008 +0100
43818
43819     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
43820
43821     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
43822     way a board just needs to define this new option to enable the "force
43823     NoPowerSwitching mode" instead of adding new CPU/architecture defines
43824     to the USB source itself.
43825
43826     This new option will be used first with the new AMCC 460EX Canyonlands
43827     board port, which will be posted in a few days.
43828
43829     This patch also fixes a small compilation problem when DEBUG is enabled.
43830
43831     Signed-off-by: Stefan Roese <sr@denx.de>
43832
43833 commit 71665ebf88408ff2acb762af47989fd4365b321a
43834 Author: Stefan Roese <sr@denx.de>
43835 Date:   Mon Mar 3 17:27:02 2008 +0100
43836
43837     ppc4xx: Add Canyonlands NAND booting support
43838
43839     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
43840     NAND devices. The only bootstrap option for NAND booting is option F for
43841     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
43842     EEPROM needs to be programmed accordingly.
43843
43844     This patch adds basic NAND booting support for the AMCC Canyonlands aval
43845     board and also adds support to the "bootstrap" command, to enable NAND
43846     booting I2C setting.
43847
43848     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
43849
43850     Signed-off-by: Stefan Roese <sr@denx.de>
43851
43852 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
43853 Author: Stefan Roese <sr@denx.de>
43854 Date:   Tue Mar 11 16:53:00 2008 +0100
43855
43856     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
43857
43858     This patch adds support for the AMCC Canyonlands 460EX evaluation
43859     board.
43860
43861     Signed-off-by: Stefan Roese <sr@denx.de>
43862
43863 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
43864 Author: Stefan Roese <sr@denx.de>
43865 Date:   Tue Mar 11 16:52:24 2008 +0100
43866
43867     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
43868
43869     This patch adds support for the AMCC Canyonlands 460EX evaluation
43870     board.
43871
43872     Signed-off-by: Stefan Roese <sr@denx.de>
43873
43874 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
43875 Author: Stefan Roese <sr@denx.de>
43876 Date:   Tue Mar 11 16:51:17 2008 +0100
43877
43878     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
43879
43880     This patch adds support for the AMCC Canyonlands 460EX evaluation
43881     board.
43882
43883     Signed-off-by: Stefan Roese <sr@denx.de>
43884
43885 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
43886 Author: Stefan Roese <sr@denx.de>
43887 Date:   Tue Mar 11 15:11:43 2008 +0100
43888
43889     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
43890
43891     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43892
43893     Signed-off-by: Stefan Roese <sr@denx.de>
43894
43895 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
43896 Author: Stefan Roese <sr@denx.de>
43897 Date:   Tue Mar 11 15:11:18 2008 +0100
43898
43899     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
43900
43901     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43902
43903     Signed-off-by: Stefan Roese <sr@denx.de>
43904
43905 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
43906 Author: Stefan Roese <sr@denx.de>
43907 Date:   Tue Mar 11 15:07:10 2008 +0100
43908
43909     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
43910
43911     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43912
43913     Signed-off-by: Stefan Roese <sr@denx.de>
43914
43915 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
43916 Author: Stefan Roese <sr@denx.de>
43917 Date:   Tue Mar 11 15:05:50 2008 +0100
43918
43919     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
43920
43921     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43922
43923     Signed-off-by: Stefan Roese <sr@denx.de>
43924
43925 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
43926 Author: Stefan Roese <sr@denx.de>
43927 Date:   Tue Mar 11 15:05:26 2008 +0100
43928
43929     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
43930
43931     This patch adds basic support for the AMCC 460EX/460GT PPC's.
43932
43933     Signed-off-by: Stefan Roese <sr@denx.de>
43934
43935 commit 56e410178375d9f20be25fb24e180974f0ae120b
43936 Author: Stefan Roese <sr@denx.de>
43937 Date:   Tue Feb 19 22:07:57 2008 +0100
43938
43939     ppc4xx: interrupt.c reworked
43940
43941     This patch is a rework of the 4xx interrupt handling done while
43942     adding the 460EX/GT support. Interrupts are needed on 4xx for the
43943     EMAC driver.
43944
43945     Signed-off-by: Stefan Roese <sr@denx.de>
43946
43947 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
43948 Author: Stefan Roese <sr@denx.de>
43949 Date:   Tue Feb 19 22:01:57 2008 +0100
43950
43951     ppc4xx: program_tlb now uses 64bit physical addess
43952
43953     This patch changes the physical addess parameter from 32bit to 64bit.
43954     This is needed for 36bit 4xx platforms to access areas located
43955     beyond the 4GB border, like SoC peripherals (EBC etc.).
43956
43957     Signed-off-by: Stefan Roese <sr@denx.de>
43958
43959 commit c3307fa186af85771924c434997089b8104c0a46
43960 Author: Stefan Roese <sr@denx.de>
43961 Date:   Tue Feb 19 21:58:25 2008 +0100
43962
43963     ppc4xx: miiphy.c reworked
43964
43965     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
43966     badly neede some cleanup.
43967
43968     Signed-off-by: Stefan Roese <sr@denx.de>
43969
43970 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
43971 Author: Stefan Roese <sr@denx.de>
43972 Date:   Tue Feb 19 16:21:49 2008 +0100
43973
43974     rtc: Add M41T62 support
43975
43976     This patch add support for the STM M41T62 RTC. It is used and tested
43977     on the AMCC Canyonlands 406EX platform.
43978
43979     Signed-off-by: Stefan Roese <sr@denx.de>
43980
43981 commit 217d383e201adc7f2271145ae345ea5eae2b7170
43982 Author: Niklaus Giger <niklaus.giger@netstal.com>
43983 Date:   Mon Feb 25 18:46:43 2008 +0100
43984
43985     ppc4xx: Add 405GPr based MCU25 board specific files
43986
43987     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43988
43989 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
43990 Author: Niklaus Giger <niklaus.giger@netstal.com>
43991 Date:   Mon Feb 25 18:46:42 2008 +0100
43992
43993     ppc4xx: Add 405GPr based MCU25 board config file
43994
43995     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43996
43997 commit b05f35436b733a240559e77e46bed8439665ecc5
43998 Author: Niklaus Giger <niklaus.giger@netstal.com>
43999 Date:   Mon Feb 25 18:46:41 2008 +0100
44000
44001     ppc4xx: Add 405GPr based MCU25 board. Global files
44002
44003     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
44004
44005 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
44006 Author: Niklaus Giger <niklaus.giger@netstal.com>
44007 Date:   Mon Feb 25 18:37:02 2008 +0100
44008
44009     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
44010
44011     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
44012
44013 commit a079494853cc2bfeddb26673219db0b4b2b31566
44014 Author: Niklaus Giger <niklaus.giger@netstal.com>
44015 Date:   Mon Feb 25 18:37:01 2008 +0100
44016
44017     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
44018
44019     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
44020     the FLASH_CFI_LEGACY et al. config options.
44021
44022     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
44023
44024 commit e4170e5a50c8110f792bc37472833ae669d69951
44025 Author: Stefan Roese <sr@denx.de>
44026 Date:   Tue Mar 11 13:52:25 2008 +0100
44027
44028     ppc4xx: Fix comment in 405EX DDR2 init code
44029
44030     Signed-off-by: Stefan Roese <sr@denx.de>
44031
44032 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
44033 Author: Bartlomiej Sieka <tur@semihalf.com>
44034 Date:   Fri Mar 14 16:22:34 2008 +0100
44035
44036     Add MD5 support to the new uImage format
44037
44038     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44039
44040 commit 0ede0c383530a418cf98be9122371a86573cd0db
44041 Author: Bartlomiej Sieka <tur@semihalf.com>
44042 Date:   Fri Mar 14 16:22:34 2008 +0100
44043
44044     Add the MD5 algorithm
44045
44046     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
44047     calculated using the md5() function -- see include/md5.h for details.
44048
44049     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44050
44051 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
44052 Author: Wolfgang Denk <wd@denx.de>
44053 Date:   Fri Mar 14 16:04:54 2008 +0100
44054
44055     tools/setlocalversion: use a git-describe-ish format
44056
44057     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
44058     where 'nnnnn' is the number of commits since the last tag (i.e.,
44059     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
44060     and to see how much has been changed since the referenced tag.
44061
44062     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
44063
44064     Signed-off-by: Wolfgang Denk <wd@denx.de>
44065
44066 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
44067 Author: Wolfgang Denk <wd@denx.de>
44068 Date:   Thu Mar 13 14:32:03 2008 +0100
44069
44070     HMI1001: add support for MPC5200 Rev. B processors.
44071
44072     Signed-off-by: Wolfgang Denk <wd@denx.de>
44073
44074 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
44075 Author: Wolfgang Denk <wd@denx.de>
44076 Date:   Thu Mar 13 14:29:49 2008 +0100
44077
44078     TQM5200: remove dead code
44079
44080     This board never used a MGT5100 processor.
44081
44082     Signed-off-by: Wolfgang Denk <wd@denx.de>
44083
44084 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
44085 Author: Marian Balakowicz <m8@semihalf.com>
44086 Date:   Wed Mar 12 12:14:15 2008 +0100
44087
44088     [new uImage] Fix build issue on ARM
44089
44090     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
44091
44092     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44093
44094 commit 3310c549a73a949430bfda90876df7552a1dab0c
44095 Author: Marian Balakowicz <m8@semihalf.com>
44096 Date:   Wed Mar 12 12:13:13 2008 +0100
44097
44098     [new uImage] Add new uImage format documentation and examples
44099
44100     Create doc/uImage.FIT documentation directory with the following files:
44101     - command_syntax_extensions.txt : extended command syntax description
44102     - howto.txt                     : short usage howto
44103     - source_file_format.txt        : internal new uImage format description
44104
44105     Add example image source files:
44106     - kernel.its
44107     - kernel_fdt.its
44108     - multi.its
44109
44110     Update README appropriately.
44111
44112     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44113     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44114
44115 commit 1ec73761d2e247078f4520a265d463e8b73391a2
44116 Author: Marian Balakowicz <m8@semihalf.com>
44117 Date:   Wed Mar 12 10:35:52 2008 +0100
44118
44119     [new uImage] Fix definition of common bootm_headers_t fields
44120
44121     verify, autostart and lmb fields are used regardless of CONFIG_FIT
44122     setting, move their definitions to common section.
44123
44124     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44125
44126 commit 1d1cb4270edc6a99276834064069717f9782c491
44127 Author: Marian Balakowicz <m8@semihalf.com>
44128 Date:   Wed Mar 12 10:35:51 2008 +0100
44129
44130     [new uImage] Fix build problems on trab board
44131
44132     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44133
44134 commit f773bea8e11f4a11c388dcee956b2444203e6b65
44135 Author: Marian Balakowicz <m8@semihalf.com>
44136 Date:   Wed Mar 12 10:35:46 2008 +0100
44137
44138     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
44139
44140     Save FIT configuration provied in the first bootm argument and use it
44141     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
44142     arguments are not specified.
44143
44144     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44145
44146 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
44147 Author: Marian Balakowicz <m8@semihalf.com>
44148 Date:   Wed Mar 12 10:33:01 2008 +0100
44149
44150     [new uImage] More verbose kernel image uncompress error message
44151
44152     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44153
44154 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
44155 Author: Marian Balakowicz <m8@semihalf.com>
44156 Date:   Wed Mar 12 10:33:01 2008 +0100
44157
44158     [new uImage] Use show_boot_progress() for new uImage format
44159
44160     This patch allocates a set of show_boot_progress() IDs for new uImage format
44161     and adds show_boot_progress() calls in new uImage format handling code.
44162
44163     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44164
44165 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
44166 Author: Marian Balakowicz <m8@semihalf.com>
44167 Date:   Wed Mar 12 10:33:01 2008 +0100
44168
44169     [new uImage] Add new uImage fromat support to fpga command
44170
44171     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44172
44173 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
44174 Author: Marian Balakowicz <m8@semihalf.com>
44175 Date:   Wed Mar 12 10:33:01 2008 +0100
44176
44177     [new uImage] Add new uImage format handling to other bootm related commands
44178
44179     Updated commands:
44180
44181     docboot  - cmd_doc.c
44182     fdcboot  - cmd_fdc.c
44183     diskboot - cmd_ide.c
44184     nboot    - cmd_nand.c
44185     scsiboot - cmd_scsi.c
44186     usbboot  - cmd_usb.c
44187
44188     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44189
44190 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
44191 Author: Marian Balakowicz <m8@semihalf.com>
44192 Date:   Wed Mar 12 10:33:00 2008 +0100
44193
44194     [new uImage] Add new uImage format support to imgextract command
44195
44196     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44197
44198 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
44199 Author: Marian Balakowicz <m8@semihalf.com>
44200 Date:   Wed Mar 12 10:33:00 2008 +0100
44201
44202     [new uImage] Add new uImage format support to autoscript routine
44203
44204     autoscript() routine is updated to accept second argument, which
44205     is only used for FIT images and provides a FIT subimage unit name.
44206
44207     autoscript() routine callers must now pass two arguments. For
44208     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
44209     variable 'autoscript_uname' is introduced and used as a FIT
44210     subimage unit name source.
44211
44212     autoscript command accepts extended syntax of the addr argument:
44213     addr:<subimg_uname>
44214
44215     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44216
44217 commit cd7c596e9f561dbbc17b717277438aee78cde14f
44218 Author: Marian Balakowicz <m8@semihalf.com>
44219 Date:   Wed Mar 12 10:33:00 2008 +0100
44220
44221     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
44222
44223     This patch updates architecture specific implementations of
44224     do_bootm_linux() adding new uImage format handling for
44225     operations like get kernel entry point address, get kernel
44226     image data start address.
44227
44228     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44229
44230 commit 3dfe110149311425919e6d6a14b561b4207498f1
44231 Author: Marian Balakowicz <m8@semihalf.com>
44232 Date:   Wed Mar 12 10:32:59 2008 +0100
44233
44234     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
44235
44236     This patch adds new node offset fields to struct bootm_headers
44237     and updates bootm_headers processing code to make use of them.
44238     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
44239
44240     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44241
44242 commit bc8ed486b125452ba3bd8344f052f437329150c5
44243 Author: Marian Balakowicz <m8@semihalf.com>
44244 Date:   Wed Mar 12 10:32:53 2008 +0100
44245
44246     [new uImage] ppc: Add new uImage format support to FDT handling routines
44247
44248     Support for new (FIT) format uImages is added to powerpc specific
44249     boot_get_fdt() routine which now recognizes, sanity checks FIT image
44250     and is able to access data sections of the requested component image.
44251
44252     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44253
44254 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
44255 Author: Marian Balakowicz <m8@semihalf.com>
44256 Date:   Wed Mar 12 10:14:57 2008 +0100
44257
44258     [new uImage] Re-enable interrupts for non automatic booting
44259
44260     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
44261     environment variable is not set to 'yes'.
44262
44263     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44264
44265 commit d985c8498c4e47095820da97aa722381d39172c5
44266 Author: Marian Balakowicz <m8@semihalf.com>
44267 Date:   Wed Mar 12 10:14:38 2008 +0100
44268
44269     [new uImage] Remove unnecessary arguments passed to ramdisk routines
44270
44271     boot_get_ramdisk() and image_get_ramdisk() do not need all
44272     cmdtp, flag, argc and argv arguments. Simplify routines definition.
44273
44274     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44275
44276 commit c87796483bc7c2900470dc747c367f602577608d
44277 Author: Marian Balakowicz <m8@semihalf.com>
44278 Date:   Wed Mar 12 10:12:37 2008 +0100
44279
44280     [new uImage] Add new uImage format support for ramdisk handling
44281
44282     This patch updates boot_get_ramdisk() routine adding format
44283     verification and handling for new (FIT) uImages.
44284
44285     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44286
44287 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
44288 Author: Marian Balakowicz <m8@semihalf.com>
44289 Date:   Wed Mar 12 10:01:05 2008 +0100
44290
44291     [new uImage] Add new uImage format support for kernel booting
44292
44293     New format uImages are recognized by the bootm command,
44294     validity of specified kernel component image is checked and
44295     its data section located and used for further processing
44296     (uncompress, load, etc.)
44297
44298     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44299
44300 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
44301 Author: Marian Balakowicz <m8@semihalf.com>
44302 Date:   Tue Mar 11 12:35:20 2008 +0100
44303
44304     [new uImage] Add new uImage format support for imls and iminfo commands
44305
44306     imls and iminfo can now recognize nad print out contents of the new (FIT)
44307     format uImages.
44308
44309     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44310
44311 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
44312 Author: Bartlomiej Sieka <tur@semihalf.com>
44313 Date:   Tue Mar 11 12:34:47 2008 +0100
44314
44315     [new uImage] Add support for new uImage format to mkimage tool
44316
44317     Support for the new uImage format (FIT) is added to mkimage tool.
44318     Commandline syntax is appropriately extended:
44319
44320     mkimage [-D dtc_options] -f fit-image.its fit-image
44321
44322     mkimage (together with dtc) takes fit-image.its and referenced therein
44323     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
44324     final image that can be transferred to the target (e.g., via tftp) and then
44325     booted using the bootm command in U-Boot.
44326
44327     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44328
44329 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
44330 Author: Marian Balakowicz <m8@semihalf.com>
44331 Date:   Mon Mar 10 17:53:49 2008 +0100
44332
44333     [new uImage] Make node unit names const in struct bootm_headers
44334
44335     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44336
44337 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
44338 Author: Marian Balakowicz <m8@semihalf.com>
44339 Date:   Fri Feb 29 21:24:06 2008 +0100
44340
44341     [new uImage] New uImage low-level API
44342
44343     Add FDT-based functions for handling new format component images,
44344     configurations, node operations, property get/set, etc.
44345
44346     fit_        - routines handling global new format uImage operations
44347                   like get/set top level property, process all nodes, etc.
44348     fit_image_  - routines handling component images subnodes
44349     fit_conf_   - routines handling configurations node
44350
44351     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44352     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44353
44354 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
44355 Author: Wolfgang Denk <wd@denx.de>
44356 Date:   Sun Mar 9 16:20:02 2008 +0100
44357
44358     Release v1.3.2
44359
44360     Update CHANGELOG for release.
44361
44362     Signed-off-by: Wolfgang Denk <wd@denx.de>
44363
44364 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
44365 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44366 Date:   Sun Mar 9 14:52:11 2008 +0100
44367
44368     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
44369
44370     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44371     Signed-off-by: Wolfgang Denk <wd@denx.de>
44372
44373 commit db695b78515ddb88a2d4f3357c120345efbf59ec
44374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44375 Date:   Sun Mar 9 10:44:01 2008 +0100
44376
44377     scb9328: Fix flash warning: type qualifiers ignored on function return type
44378
44379     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44380
44381 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
44382 Author: Wolfgang Denk <wd@denx.de>
44383 Date:   Sun Mar 9 10:50:41 2008 +0100
44384
44385     esd/common/fpga.c: fix indentation.
44386
44387     Signed-off-by: Wolfgang Denk <wd@denx.de>
44388
44389 commit cc3843e36453e2b8db65d7e56de938ba045016a0
44390 Author: Wolfgang Denk <wd@denx.de>
44391 Date:   Sun Mar 9 10:33:31 2008 +0100
44392
44393     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
44394
44395     and get rid of a couple of unneeded casts.
44396
44397     Signed-off-by: Wolfgang Denk <wd@denx.de>
44398
44399 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
44400 Author: Wolfgang Denk <wd@denx.de>
44401 Date:   Sun Mar 9 10:09:53 2008 +0100
44402
44403     esd/common/fpga.c: fix 'assignment of read-only location' error
44404
44405     Signed-off-by: Wolfgang Denk <wd@denx.de>
44406
44407 commit c6fe4dabac066e8758345d249032768496983a3e
44408 Author: Wolfgang Denk <wd@denx.de>
44409 Date:   Sun Mar 9 02:13:19 2008 +0100
44410
44411     Makefile: make build silently again.
44412
44413     Signed-off-by: Wolfgang Denk <wd@denx.de>
44414
44415 commit 76babc86576f092573599334c85ec543fdbc6015
44416 Author: Wolfgang Denk <wd@denx.de>
44417 Date:   Sun Mar 9 02:07:49 2008 +0100
44418
44419     m501sk: Fix out of tree building
44420
44421     Signed-off-by: Wolfgang Denk <wd@denx.de>
44422
44423 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
44424 Author: Wolfgang Denk <wd@denx.de>
44425 Date:   Sun Mar 9 00:06:09 2008 +0100
44426
44427     ADS5121: fix out of tree build
44428
44429     and simplify Makefile a bit.
44430
44431     Signed-off-by: Wolfgang Denk <wd@denx.de>
44432
44433 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
44434 Author: Wolfgang Denk <wd@denx.de>
44435 Date:   Sat Mar 8 22:35:31 2008 +0100
44436
44437     Release v1.3.2
44438
44439     Signed-off-by: Wolfgang Denk <wd@denx.de>
44440
44441 commit 78a90f827df74520e939c794fc7413dace21c4db
44442 Author: Wolfgang Denk <wd@denx.de>
44443 Date:   Sat Mar 8 22:35:04 2008 +0100
44444
44445     Update CHANGELOG
44446
44447     Signed-off-by: Wolfgang Denk <wd@denx.de>
44448
44449 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
44450 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44451 Date:   Sat Mar 8 21:30:04 2008 +0100
44452
44453     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
44454
44455     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44456
44457 commit d75469d48c05795144f4b8ba76addbb4920a7bba
44458 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44459 Date:   Sat Mar 8 09:25:49 2008 +0900
44460
44461     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
44462
44463     When rtl_recv() of rtl8169 is called, OWNbit of status register
44464     is not enable occasionally.
44465     rtl_recv() doesn't work normally when the driver doesn't do
44466     appropriate processing.
44467     This patch fix this problem.
44468
44469     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44470
44471 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
44472 Author: Heiko Schocher <hs@denx.de>
44473 Date:   Fri Mar 7 08:15:28 2008 +0100
44474
44475     mgsuvd: update board configuration
44476
44477     initialize the UPIOx controller.
44478
44479     Signed-off-by: Heiko Schocher <hs@denx.de>
44480
44481 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
44482 Author: Heiko Schocher <hs@denx.de>
44483 Date:   Fri Mar 7 08:13:41 2008 +0100
44484
44485     mgcoge: update board configuration
44486
44487     add support for the config Flash.
44488     initialize the UPIOx controller.
44489
44490     Signed-off-by: Heiko Schocher <hs@denx.de>
44491
44492 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
44493 Author: Kim Phillips <kim.phillips@freescale.com>
44494 Date:   Fri Mar 7 12:27:31 2008 -0600
44495
44496     mpc83xx: make dtb basename file references equal those of linux
44497
44498     the dts file basenames were updated in linux - this helps avoid
44499     inadvertently loading any old dtbs laying around.
44500
44501     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44502
44503 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
44504 Author: Kim Phillips <kim.phillips@freescale.com>
44505 Date:   Wed Feb 27 16:08:22 2008 -0600
44506
44507     net: uec_phy: actually increment the timeout counter
44508
44509     allow u-boot to recover (and, e.g., switch to another interface) in the
44510     case where a PHY does not report autonegotiation is complete within its
44511     two second timeout value.
44512
44513     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44514
44515 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
44516 Author: Markus Brunner <super.firetwister@googlemail.com>
44517 Date:   Wed Mar 5 21:38:12 2008 +0100
44518
44519     fix taihu soft spi_read
44520
44521     The taihu board used gpio_read_out_bit which reads the output register and not
44522     the pin state.
44523
44524     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
44525
44526 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
44527 Author: Stefan Roese <sr@denx.de>
44528 Date:   Fri Mar 7 08:01:43 2008 +0100
44529
44530     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
44531
44532     Signed-off-by: Stefan Roese <sr@denx.de>
44533
44534 commit bd4458cb47abecabd406b1210457be96c69fc49d
44535 Author: Dave Liu <r63238@freescale.com>
44536 Date:   Tue Mar 4 16:59:22 2008 +0800
44537
44538     837xEMDS: Improve the system performance
44539
44540     1. Make the CSB bus pipeline depth as 4, and enable
44541        the repeat mode;
44542     2. Raise the eTSEC emergency priority;
44543     3. Use the highest IP blocks clock.
44544
44545     Signed-off-by: Dave Liu <daveliu@freescale.com>
44546
44547 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
44548 Author: Detlev Zundel <dzu@denx.de>
44549 Date:   Thu Mar 6 16:45:53 2008 +0100
44550
44551     Replace "run load; run update" with conditionalized "run load update".
44552
44553     The latter version stops when "run load" fails for whatever reasons
44554     rendering the combination *a lot* more secure.
44555
44556     Signed-off-by: Detlev Zundel <dzu@denx.de>
44557
44558 commit 6bc113886d7d316df1a4e459bec8baf027518551
44559 Author: Stefan Roese <sr@denx.de>
44560 Date:   Tue Mar 4 17:40:41 2008 +0100
44561
44562     net: Print error message upon net usage when no ethernet-interface is found
44563
44564     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
44565     defined. Then no ethernet interface is available but a simple "tftp"
44566     command will return without any error message which is quite confusing.
44567
44568     Signed-off-by: Stefan Roese <sr@denx.de>
44569
44570 commit a30a549a3553032d809e0356306b62de0b125901
44571 Author: Jon Loeliger <jdl@freescale.com>
44572 Date:   Tue Mar 4 10:03:03 2008 -0600
44573
44574     Remove erroneous or extra spd.h #includers.
44575
44576     Many of the spd.h #includers don't need it,
44577     and wanted to have spd_sdram() declared instead.
44578     Since they didn't get that, some also had open
44579     coded extern declarations of it instead or as well.
44580     Fix it all up by using spd_sdram.h where needed.
44581
44582     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44583
44584 commit a4475386cef14af3fd88f0518b688e755669486d
44585 Author: Wolfgang Denk <wd@denx.de>
44586 Date:   Tue Mar 4 17:41:28 2008 +0100
44587
44588     PCS440EP: fix build problems (redundant #define)
44589
44590     Signed-off-by: Wolfgang Denk <wd@denx.de>
44591
44592 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
44593 Author: Stefan Roese <sr@denx.de>
44594 Date:   Tue Mar 4 17:39:25 2008 +0100
44595
44596     net: Print error message upon net usage when no ethernet-interface is found
44597
44598     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
44599     defined. Then no ethernet interface is available but a simple "tftp"
44600     command will return without any error message which is quite confusing.
44601
44602     Signed-off-by: Stefan Roese <sr@denx.de>
44603
44604 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
44605 Author: Wolfgang Denk <wd@denx.de>
44606 Date:   Tue Mar 4 17:38:50 2008 +0100
44607
44608     W7OLMC/W7OLMG: fix build problems (redundant #define)
44609
44610     Signed-off-by: Wolfgang Denk <wd@denx.de>
44611
44612 commit f9301e1cda296245ba052d7b08321199c3d0af9d
44613 Author: Wolfgang Denk <wd@denx.de>
44614 Date:   Tue Mar 4 14:58:31 2008 +0100
44615
44616     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
44617
44618     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
44619     problem for out-of-tree builds which caused "make clean" to fail.
44620
44621     Signed-off-by: Wolfgang Denk <wd@denx.de>
44622
44623 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
44624 Author: Wolfgang Denk <wd@denx.de>
44625 Date:   Tue Mar 4 11:58:26 2008 +0100
44626
44627     examples/Makefile: build "hello_world" on 8xx, too.
44628
44629     Signed-off-by: Wolfgang Denk <wd@denx.de>
44630
44631 commit 74eb0222594fd23aafdf168e60e872814eea8b62
44632 Author: Mike Nuss <mike@terascala.com>
44633 Date:   Mon Mar 3 15:27:05 2008 -0500
44634
44635     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
44636
44637     Every now and then a Sequoia board (or equivalent hardware) had
44638     problems connecting to a Gigabit capable network interface.
44639
44640     There were differences in the PHY setup between Linux and U-Boot.
44641
44642     This patch fixes the problem. Apparently "remote fault" is being set,
44643     which signals to some devices (on the other end of the cable) that a
44644     fault has occurred, while other devices ignore it. I believe the RF bit
44645     was causing the issue, but I removed T4 also, to match up with Linux.
44646
44647     Signed-off-by: Mike Nuss <mike@terascala.com>
44648
44649 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
44650 Author: Timur Tabi <timur@freescale.com>
44651 Date:   Mon Mar 3 09:58:52 2008 -0600
44652
44653     fix QE firmware uploading limit
44654
44655     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
44656     systems with more than one RISC core.
44657
44658     Signed-off-by: Timur Tabi <timur@freescale.com>
44659
44660 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
44661 Author: Bernhard Nemec <bnemec@ganssloser.com>
44662 Date:   Mon Mar 3 11:57:23 2008 +0000
44663
44664     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
44665
44666     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
44667     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
44668
44669     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
44670
44671 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
44672 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
44673 Date:   Mon Mar 3 10:39:13 2008 +0200
44674
44675     fix copy from ram to dataflash
44676
44677     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
44678     routines instead of dataflash. This is because it checks "if source
44679     address is not dataflash" instead of target address.
44680
44681     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
44682
44683 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
44684 Author: Wolfgang Denk <wd@denx.de>
44685 Date:   Mon Mar 3 12:16:44 2008 +0100
44686
44687     Fix quoting problem (preboot setting) in many board config files.
44688
44689     Signed-off-by: Wolfgang Denk <wd@denx.de>
44690
44691 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
44692 Author: Wolfgang Denk <wd@denx.de>
44693 Date:   Mon Mar 3 12:36:49 2008 +0100
44694
44695     ADS5121: Fix default environment.
44696
44697     Signed-off-by: Wolfgang Denk <wd@denx.de>
44698
44699 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
44700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44701 Date:   Sun Mar 2 16:12:31 2008 +0100
44702
44703     Makefile: Fix missing unconfig and mkconfig use
44704
44705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44706
44707 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
44708 Author: michael <trimarchi@gandalf.sssup.it>
44709 Date:   Sun Mar 2 23:33:46 2008 +0100
44710
44711     Fix checking fat32 cluster size.
44712
44713     This fixes the cluster size tests in the FAT32 file system.
44714     The current implementation of VFAT support doesn't work if the
44715     referred cluster has an offset > 16bit representation, causing
44716     "fatload" and "fatls" commands etc. to fail.
44717
44718     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
44719
44720 commit 661bad63a076a96c39c64f136915f146725af92b
44721 Author: Wolfgang Denk <wd@denx.de>
44722 Date:   Sun Mar 2 22:57:23 2008 +0100
44723
44724     Prepare v1.3.2-rc2 release candidate
44725
44726     Signed-off-by: Wolfgang Denk <wd@denx.de>
44727
44728 commit 76957cb3d621bf664311908e5962e151c633c285
44729 Author: Stefan Roese <sr@denx.de>
44730 Date:   Sat Mar 1 12:11:40 2008 +0100
44731
44732     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
44733
44734     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
44735     currently 4k/2k is configured. This patch fixes this issue.
44736
44737     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
44738
44739     Signed-off-by: Stefan Roese <sr@denx.de>
44740
44741 commit 118978c8eb43803e2794233922df4249fa278b83
44742 Author: Woodruff, Richard <r-woodruff2@ti.com>
44743 Date:   Fri Feb 29 17:34:35 2008 -0600
44744
44745     Fix alignment error on ARM for modules
44746
44747     Fix alignment fault on ARM when running modules.  With out an explicit
44748     linker file gcc4.2.1 will half word align __bss_start's value.  The word
44749     dereference will crash hello_world.
44750
44751     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
44752
44753 commit ce1120dd703e6f12c59e4eba9962356a0300b832
44754 Author: Dave Liu <r63238@freescale.com>
44755 Date:   Fri Feb 29 17:45:31 2008 +0800
44756
44757     fs: Fix ext2 read issue
44758
44759     The ext2 aligned process will corrupt the key
44760     data struct, the patch fix this.
44761
44762     Signed-off-by: Dave Liu <daveliu@freescale.com>
44763
44764 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
44765 Author: Wolfgang Denk <wd@denx.de>
44766 Date:   Sun Mar 2 22:45:33 2008 +0100
44767
44768     Makefile: cleanup "clean" target
44769
44770     Make sure CDPATH settings cannot interfere.
44771     Update CHANGELOG.
44772
44773     Signed-off-by: Wolfgang Denk <wd@denx.de>
44774
44775 commit ffda586fc1373243c9794babde69500f6293a8d8
44776 Author: Li Yang <leoli@freescale.com>
44777 Date:   Fri Feb 29 11:46:05 2008 +0800
44778
44779     add cscope build target
44780
44781     Add cscope build target to generate cscope database for code browsing.
44782
44783     Signed-off-by: Li Yang <leoli@freescale.com>
44784
44785 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
44786 Author: Kim Phillips <kim.phillips@freescale.com>
44787 Date:   Wed Feb 27 15:06:39 2008 -0600
44788
44789     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
44790
44791     erratum 5.6 states the autoneg completion bit is functional only if the
44792     autoneg bit is asserted.
44793
44794     This fixes any secondarily-issued networking commands on non-gigabit
44795     links on the mpc8360 mds board.
44796
44797     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44798
44799 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
44800 Author: John Rigby <jrigby@freescale.com>
44801 Date:   Tue Feb 26 09:38:14 2008 -0700
44802
44803     MPC5121e ADS PCI support take 3
44804
44805     Adds PCI support for MPC5121
44806
44807     Tested with drivers/net/rtl8139.c
44808
44809     Support is conditional since PCI on old silicon does not work.
44810
44811     ads5121_PCI_config turns on PCI
44812
44813     In this version, condition compilation of PCI code has been moved
44814     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
44815     suggested by Jean-Christophe PLAGNIOL-VILLARD
44816
44817     Signed-off-by: John Rigby <jrigby@freescale.com>
44818
44819 commit 44b4dbed4133f657705b7c5193209da9978243a7
44820 Author: Anatolij Gustschin <agust@denx.de>
44821 Date:   Mon Feb 25 23:53:07 2008 +0100
44822
44823     Fix warnings while compilation of post/drivers/memory.c
44824
44825     Fix warnings while compilation with new gcc in eldk-4.2
44826
44827     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44828
44829 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
44830 Author: Anatolij Gustschin <agust@denx.de>
44831 Date:   Mon Feb 25 20:54:04 2008 +0100
44832
44833     ppc4xx: Fix problem in 4xx_enet.c driver
44834
44835     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
44836     enabled. To reproduce the problem ensure that 'ethrotate'
44837     environment variable isn't set to "no" and then run
44838     "tftp 200000 not_existent_file".
44839     This patch tries to fix the issue.
44840
44841     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44842
44843 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
44844 Author: Anatolij Gustschin <agust@denx.de>
44845 Date:   Mon Feb 25 20:04:20 2008 +0100
44846
44847     POST: Disable cache while SPR POST
44848
44849     Currently (since commit b2e2142c) u-boot crashes on
44850     sequoia board while SPR test if CONFIG_4xx_DCACHE is
44851     enabled. This patch disables the cache while SPR test.
44852
44853     Signed-off-by: Anatolij Gustschin <agust@denx.de>
44854
44855 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
44856 Author: Martin Krause <martin.krause@tqs.de>
44857 Date:   Mon Feb 25 17:52:40 2008 +0100
44858
44859     TQM5200: use automatic fdt memory fixup (part 2)
44860
44861     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
44862     TB5200 and TB5200_B to fixup the /memory node with the memory values
44863     detected by U-Boot.
44864
44865     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44866
44867 commit 44ceec253ea941b301abf4b079d52324def69d92
44868 Author: Martin Krause <martin.krause@tqs.de>
44869 Date:   Mon Feb 25 15:17:05 2008 +0100
44870
44871     TQM5200: use automatic fdt memory fixup
44872
44873     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
44874     TB5200 and TB5200_B to fixup the /memory node with the memory values
44875     detected by U-Boot.
44876
44877     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44878
44879 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
44880 Author: Martin Krause <martin.krause@tqs.de>
44881 Date:   Mon Feb 25 13:27:52 2008 +0100
44882
44883     TQM5200: fix bug in SDRAM initialization code
44884
44885     This patch fixes a bug in the SDRAM initialization code for the
44886     TQM5200. The hi_addr bit is now set correctly. Without this patch
44887     the hi_addr bit is always set to 1, if the second SDRAM bank is
44888     not populated.
44889
44890     For other MPC5200 boards a correspondig patch has already been applied
44891     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
44892
44893     Signed-off-by: Martin Krause <martin.krause@tqs.de>
44894     --
44895     Forget the first patch please. I confused flash with SDRAM in
44896     the comment ...
44897
44898 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
44899 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44900 Date:   Mon Feb 25 00:03:12 2008 +0100
44901
44902     mx1fs2/flash: Fix multiple compiler warnings
44903
44904     "pointer targets in assignment differ in signedness"
44905
44906     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44907
44908 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
44909 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44910 Date:   Mon Feb 25 00:03:11 2008 +0100
44911
44912     arm-imx: Fix register definitions
44913
44914     Sync register definitions with linux
44915
44916     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44917
44918 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
44919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44920 Date:   Mon Feb 25 00:03:10 2008 +0100
44921
44922     actua1/actua2/actua3: Fix multiple unused variable warnings
44923
44924     - actua1:
44925         actux1.c: In function 'checkboard':
44926         actux1.c:92: warning: unused variable 'revision'
44927
44928     - actua2:
44929         actux2.c: In function 'checkboard':
44930         actux2.c:100: warning: unused variable 's'
44931         actux2.c:99: warning: unused variable 'revision'
44932         actux2.c: In function 'reset_phy':
44933         actux2.c:130: warning: unused variable 'i'
44934
44935     - actua3:
44936         actux3.c: In function 'checkboard':
44937         actux3.c:114: warning: unused variable 'revision'
44938
44939     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44940
44941 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
44942 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44943 Date:   Sun Feb 24 11:44:29 2008 +0900
44944
44945     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
44946
44947     The previous patch was lacking of i386, microblaze, nios and nios2. This
44948     patch tries to fix them.
44949
44950     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44951
44952 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
44953 Author: Marian Balakowicz <m8@semihalf.com>
44954 Date:   Fri Feb 29 22:22:46 2008 +0100
44955
44956     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
44957
44958     Do not use global fdt blob pointer, calculate blob size from routine
44959     argument blob pointer.
44960
44961     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44962
44963 commit d1cc52879c8966507dad9fb575481e6d3985e64e
44964 Author: David Gibson <david@gibson.dropbear.id.au>
44965 Date:   Tue Feb 12 00:58:31 2008 +1100
44966
44967     libfdt: Add and use a node iteration helper function.
44968
44969     This patch adds an fdt_next_node() function which can be used to
44970     iterate through nodes of the tree while keeping track of depth.  This
44971     function is used to simplify the iteration code in a lot of other
44972     functions, and is also exported for use by library users.
44973
44974     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44975
44976 commit 8cf30809a82902a471866d2f07725ce3b8a22291
44977 Author: Bartlomiej Sieka <tur@semihalf.com>
44978 Date:   Fri Feb 29 16:00:24 2008 +0100
44979
44980     [new uImage] Add libfdt support to mkimage
44981
44982     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44983
44984 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
44985 Author: Bartlomiej Sieka <tur@semihalf.com>
44986 Date:   Fri Feb 29 16:00:23 2008 +0100
44987
44988     [new uImage] Add sha1.o object to mkimage binary build
44989
44990     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44991
44992 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
44993 Author: Marian Balakowicz <m8@semihalf.com>
44994 Date:   Fri Feb 29 16:00:06 2008 +0100
44995
44996     [new uImage] Fix component handling for legacy multi component images
44997
44998     Use uint32_t when accessing size table in image_multi_count() and
44999     image_multi_getimg() for multi component images.
45000
45001     Add missing uimage_to_cpu() endianness conversion.
45002
45003     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45004
45005 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
45006 Author: Marian Balakowicz <m8@semihalf.com>
45007 Date:   Fri Feb 29 15:59:59 2008 +0100
45008
45009     [new uImage] Share common uImage code between mkimage and U-boot
45010
45011     This patch adds the following common routines:
45012
45013     1) Dedicated mkimage print_header() is replaced with common
45014     image_print_contents()
45015     image_print_contents_noindent()
45016
45017     2) Common os/arch/type/comp fields name <--> id translation routines
45018     genimg_get_os_name()
45019     genimg_get_arch_name()
45020     genimg_get_type_name()
45021     genimg_get_comp_name()
45022     genimg_get_os_id()
45023     genimg_get_arch_id()
45024     genimg_get_type_id()
45025     genimg_get_comp_id()
45026
45027     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45028
45029 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
45030 Author: Marian Balakowicz <m8@semihalf.com>
45031 Date:   Fri Feb 29 14:58:34 2008 +0100
45032
45033     [new uImage] Update naming convention for bootm/uImage related code
45034
45035     This patch introduces the following prefix convention for the
45036     image format handling and bootm related code:
45037
45038     genimg_             - dual format shared code
45039     image_              - legacy uImage format specific code
45040     fit_                - new uImage format specific code
45041     boot_               - booting process related code
45042
45043     Related routines are renamed and a few pieces of code are moved around and
45044     re-grouped.
45045
45046     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45047
45048 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
45049 Author: Kumar Gala <galak@kernel.crashing.org>
45050 Date:   Wed Feb 27 21:51:51 2008 -0600
45051
45052     [new uImage] Respect autostart setting in linux bootm
45053
45054     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45055     Acked-by: Marian Balakowicz <m8@semihalf.com>
45056
45057 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
45058 Author: Kumar Gala <galak@kernel.crashing.org>
45059 Date:   Wed Feb 27 21:51:50 2008 -0600
45060
45061     [new uImage] Provide ability to restrict region used for boot images
45062
45063     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
45064     to restrict what memory range is used for bootm.
45065
45066     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45067     Acked-by: Marian Balakowicz <m8@semihalf.com>
45068
45069 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
45070 Author: Kumar Gala <galak@kernel.crashing.org>
45071 Date:   Wed Feb 27 21:51:49 2008 -0600
45072
45073     [new uImage] Use lmb for bootm allocations
45074
45075     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
45076     functions over to using lmb for allocation of the ramdisk, command line
45077     and kernel bd info.
45078
45079     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
45080     tree.
45081
45082     Provided a weak function that board code can call to do additional
45083     lmb reserves if needed.
45084
45085     Also introduce the concept of bootmap_base to specify the offset in
45086     physical memory that the bootmap is located at.  This is used for
45087     allocations of the cmdline, kernel bd, and device tree as they should
45088     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
45089
45090     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45091
45092 commit f5614e7926863bf0225ec860d9b319741a9c4004
45093 Author: Kumar Gala <galak@kernel.crashing.org>
45094 Date:   Wed Feb 27 21:51:48 2008 -0600
45095
45096     [new uImage] Add autostart flag to bootm_headers structure
45097
45098     The autostart env variable was dropped as part of the initial new uImage
45099     cleanup.  Add it back here so the arch specific code can decide if it
45100     wants to really boot or not.
45101
45102     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45103     Acked-by: Marian Balakowicz <m8@semihalf.com>
45104
45105 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
45106 Author: Kumar Gala <galak@kernel.crashing.org>
45107 Date:   Wed Feb 27 21:51:47 2008 -0600
45108
45109     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
45110
45111     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
45112     the memory spaces used by various boot images and structures.  This code
45113     will allow us to simplify the code in bootm and its support functions.
45114
45115     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45116
45117 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
45118 Author: Kumar Gala <galak@kernel.crashing.org>
45119 Date:   Tue Feb 19 22:03:47 2008 -0600
45120
45121     [new uImage] ppc: Allow boards to specify effective amount of memory
45122
45123     For historical reasons we limited the stack to 256M because some boards
45124     could only map that much via BATS.  However newer boards are capable of
45125     mapping more memory (for example 85xx is capable of doing up to 2G).
45126
45127     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45128     Acked-by: Marian Balakowicz <m8@semihalf.com>
45129
45130 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
45131 Author: Kumar Gala <galak@kernel.crashing.org>
45132 Date:   Wed Feb 27 21:51:46 2008 -0600
45133
45134     [new uImage] rework error handling so common functions don't reset
45135
45136     Changed image_get_ramdisk() to just return NULL on error and have
45137     get_ramdisk() propogate that error to the caller.  It's left to the
45138     caller to call do_reset() if it wants to.
45139
45140     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
45141     to a common location.  In the future we will change get_fdt() and
45142     fdt_relocate() to return success/failure and not call do_reset() at all.
45143
45144     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45145     Acked-by: Marian Balakowicz <m8@semihalf.com>
45146
45147 commit d2bc095a639672def11d5d043b5688d0dbd692ec
45148 Author: Kumar Gala <galak@kernel.crashing.org>
45149 Date:   Wed Feb 27 21:51:45 2008 -0600
45150
45151     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
45152
45153     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
45154     however it does mean we have to go in and fixup the initrd info since
45155     we don't know where it will be.
45156
45157     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45158
45159 commit 27953493ef025fb698d68c5dee39b36f01f4d530
45160 Author: Kumar Gala <galak@kernel.crashing.org>
45161 Date:   Wed Feb 27 21:51:44 2008 -0600
45162
45163     [new uImage] ppc: Determine if we are booting an OF style
45164
45165     If we are bootin OF style than we can skip setting up some things
45166     that are used for the old boot method.
45167
45168     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45169     Acked-by: Marian Balakowicz <m8@semihalf.com>
45170
45171 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
45172 Author: Kumar Gala <galak@kernel.crashing.org>
45173 Date:   Wed Feb 27 21:51:43 2008 -0600
45174
45175     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
45176
45177     We don't actually need the kdb param as we are just using it to get
45178     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
45179     boot via OF we might not actually fill out a kdb.
45180
45181     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45182     Acked-by: Marian Balakowicz <m8@semihalf.com>
45183
45184 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
45185 Author: Kumar Gala <galak@kernel.crashing.org>
45186 Date:   Wed Feb 27 16:30:47 2008 -0600
45187
45188     85xx: Don't icbi when unlocking the cache
45189
45190     There is no reason to icbi when invalidating the temporary stack in
45191     the d-cache.  Its impossible on e500 to have the i-cache contain
45192     any addresses in the temp stack and it can be problematic in generating
45193     transactions on the bus to non-valid addresses.
45194
45195     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45196
45197 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
45198 Author: Andy Fleming <afleming@freescale.com>
45199 Date:   Wed Feb 27 15:50:50 2008 -0600
45200
45201     Fix source for ECM error IVPR
45202
45203     The source vector for the ECM was being set to 2,
45204     but that's what the source vector for DDR was being
45205     set to.  Change it to 1.
45206
45207     Signed-off-by: Andy Fleming <afleming@freescale.com>
45208
45209 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
45210 Author: Andy Fleming <afleming@freescale.com>
45211 Date:   Wed Feb 27 14:29:58 2008 -0600
45212
45213     Invalidate INIT_RAM TLB mappings
45214
45215     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
45216     mappings to be unguarded.  This collided with an existing "bug"
45217     where the mappings for the INIT_RAM were being kept around.
45218     This meant that speculative loads to those addresses were
45219     succeeding in the TLB, and going out to the bus, where they
45220     were causing an exception (there's nothing at that address). The
45221     Flash code was coincidentally causing such a speculative load.
45222     Rather than go back to mapping the INIT RAM as guarded, we fix
45223     it so that the entries for the INIT_RAM are invalidated.  Thus
45224     the speculative loads will fail in the TLB, and have no effect.
45225
45226     Signed-off-by: Andy Fleming <afleming@freescale.com>
45227
45228 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
45229 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45230 Date:   Sun Feb 17 22:56:17 2008 +0100
45231
45232     sbc8548: Fix Revision reading and unused variable 'path'
45233
45234     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45235
45236 commit 495d162374c472f46454453553382ad0735dc725
45237 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45238 Date:   Sun Feb 17 22:56:16 2008 +0100
45239
45240     sbc8548: Fix cfi flash bank declaration
45241
45242     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45243
45244 commit 4efbe9dbb129f857f27856936112c8c02f016be6
45245 Author: Marian Balakowicz <m8@semihalf.com>
45246 Date:   Wed Feb 27 11:02:26 2008 +0100
45247
45248     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
45249
45250     Dual format image code must properly handle all three FDT passing methods:
45251     - raw FDT blob passed
45252     - FDT blob embedded in the legacy uImage
45253     - FDT blob embedded in the new uImage
45254
45255     This patch enables proper raw FDT handling when no FIT imaeg support
45256     is compiled in. This is a bit tricky as we must dected FIT format even
45257     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
45258     blobs use tha same low level format (libfdt).
45259
45260     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45261
45262 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
45263 Author: Marian Balakowicz <m8@semihalf.com>
45264 Date:   Wed Feb 27 11:02:26 2008 +0100
45265
45266     [new uImage] POWERPC: Add image_get_fdt() routine
45267
45268     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
45269     (3) or embedded in the new uImage. For the (2) case embedding image must be
45270     verified before we get FDT from it. This patch factors out legacy image
45271     specific verification routine to the separate helper routine.
45272
45273     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45274     Acked-by: Kumar Gala <galak@kernel.crashing.org>
45275
45276 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
45277 Author: Marian Balakowicz <m8@semihalf.com>
45278 Date:   Wed Feb 27 11:02:07 2008 +0100
45279
45280     [new uImage] Add image_get_kernel() routine
45281
45282     Legacy image specific verification is factored out to a separate helper
45283     routine to keep get_kernel() generic and simple.
45284
45285     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45286     Acked-by: Kumar Gala <galak@kernel.crashing.org>
45287
45288 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
45289 Author: Marian Balakowicz <m8@semihalf.com>
45290 Date:   Wed Feb 27 11:01:04 2008 +0100
45291
45292     [new uImage] Move image verify flag to bootm_headers structure
45293
45294     Do not pass image verification flag directly to related routines.
45295     Simplify argument passing and move it to the bootm_header structure which
45296     contains curently processed image specific data and is already being passed
45297     on the argument list.
45298
45299     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45300     Acked-by: Kumar Gala <galak@kernel.crashing.org>
45301
45302 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
45303 Author: Marian Balakowicz <m8@semihalf.com>
45304 Date:   Wed Feb 27 11:00:47 2008 +0100
45305
45306     [Makefile] Sort COBJS in lib_<arch> Makefiles
45307
45308     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45309
45310 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
45311 Author: Marian Balakowicz <m8@semihalf.com>
45312 Date:   Wed Feb 27 11:00:47 2008 +0100
45313
45314     [new uImage] Optimize gen_get_image() flow control
45315
45316     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
45317     to do, update its control flow to better reflect that simple case.
45318
45319     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45320     Acked-by: Kumar Gala <galak@kernel.crashing.org>
45321
45322 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
45323 Author: Marian Balakowicz <m8@semihalf.com>
45324 Date:   Mon Feb 4 08:28:17 2008 +0100
45325
45326     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
45327
45328     PPC specific FDT blob handling code is divided into two separate routines:
45329
45330     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
45331     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
45332
45333     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45334     Acked-by: Kumar Gala <galak@kernel.crashing.org>
45335
45336 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
45337 Author: Jon Loeliger <jdl@freescale.com>
45338 Date:   Mon Feb 25 13:13:37 2008 -0600
45339
45340     86xx: Fix renamed GUR symbols in sbc8641d board.
45341
45342     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
45343     (86xx: Fix GUR PCI config registers properly), we should have
45344     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
45345     symbols in the sbc8641d board as well.  Fix this oversight.
45346
45347     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45348
45349 commit 64cd594e623c39f73964d18787763e4533f791f7
45350 Author: Stefan Roese <sr@denx.de>
45351 Date:   Mon Feb 25 16:50:48 2008 +0100
45352
45353     ppc4xx: Fix acadia_nand build problem
45354
45355     Don't include testdram() on NAND-booting target acadia_nand. This saves
45356     a few bytes and makes the target build clean again.
45357
45358     Signed-off-by: Stefan Roese <sr@denx.de>
45359
45360 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
45361 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45362 Date:   Sun Feb 24 23:03:12 2008 +0000
45363
45364     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
45365
45366     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45367
45368 commit 724902c8464e610642b3a170278b99710325888e
45369 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45370 Date:   Sun Feb 24 23:03:11 2008 +0000
45371
45372     arm-imx: Fix registers definition
45373
45374     Sync registers definition with linux
45375
45376     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45377
45378 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
45379 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45380 Date:   Sun Feb 24 23:03:10 2008 +0000
45381
45382     actua1/actua2/actua3: Fix multipleunused variable
45383
45384     - actua1:
45385         actux1.c: In function 'checkboard':
45386         actux1.c:92: warning: unused variable 'revision'
45387
45388     - actua2:
45389         actux2.c: In function 'checkboard':
45390         actux2.c:100: warning: unused variable 's'
45391         actux2.c:99: warning: unused variable 'revision'
45392         actux2.c: In function 'reset_phy':
45393         actux2.c:130: warning: unused variable 'i'
45394
45395     - actua3:
45396         actux3.c: In function 'checkboard':
45397         actux3.c:114: warning: unused variable 'revision'
45398
45399     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45400
45401 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
45402 Author: Marian Balakowicz <m8@semihalf.com>
45403 Date:   Mon Feb 4 08:28:09 2008 +0100
45404
45405     [new uImage] Add dual format uImage support framework
45406
45407     This patch adds framework for dual format images. Format detection is added
45408     and the bootm controll flow is updated to include cases for new FIT format
45409     uImages.
45410
45411     When the legacy (image_header based) format is detected appropriate
45412     legacy specific handling is invoked. For the new (FIT based) format uImages
45413     dual boot framework has a minial support, that will only print out a
45414     corresponding debug messages. Implementation of the FIT specific handling will
45415     be added in following patches.
45416
45417     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45418
45419 commit b29661fc1151077776454288051bc9a488351ce8
45420 Author: Wolfgang Denk <wd@denx.de>
45421 Date:   Sun Feb 24 15:21:36 2008 +0100
45422
45423     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
45424
45425     Signed-off-by: Wolfgang Denk <wd@denx.de>
45426
45427 commit 00b48a48424894daa589d166d73277830b1c6ac4
45428 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45429 Date:   Sat Feb 23 12:15:56 2008 +0100
45430
45431     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
45432
45433     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45434
45435 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
45436 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45437 Date:   Sat Feb 23 17:24:16 2008 +0900
45438
45439     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
45440
45441     ----------------------------------------------------------------
45442     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
45443
45444     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
45445     32bit targets.
45446
45447     GCC can be made to warn about usage of long long types with ISO C90
45448     (-ansi), but only with -pedantic.  You can write this in a way that even
45449     then it doesn't cause warnings, namely by:
45450
45451     #ifdef __GNUC__
45452     __extension__ typedef __signed__ long long __s64;
45453     __extension__ typedef unsigned long long __u64;
45454     #endif
45455
45456     The __extension__ keyword in front of this switches off any pedantic
45457     warnings for this expression.
45458
45459     Signed-off-by: Olaf Hering <olh@suse.de>
45460     Cc: <linux-arch@vger.kernel.org>
45461     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
45462     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
45463     ----------------------------------------------------------------
45464
45465     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45466
45467 commit 208acd112e6517b21fc30c420396902b103563ac
45468 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45469 Date:   Sat Feb 23 17:07:57 2008 +0900
45470
45471     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
45472
45473     This will reduce the build time.
45474
45475     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45476
45477 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
45478 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45479 Date:   Sat Feb 23 17:05:00 2008 +0900
45480
45481     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
45482
45483     This will reduce the build time.
45484
45485     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45486
45487 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
45488 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45489 Date:   Sat Feb 23 16:58:41 2008 +0900
45490
45491     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
45492
45493     This reduces the build time by ~10%. Here's the gth2_config example.
45494
45495             BEFORE       AFTER
45496     real    0m31.441s    0m27.833s
45497     user    0m24.766s    0m23.045s
45498     sys     0m10.425s    0m7.468s
45499
45500     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45501
45502 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
45503 Author: Marcel Moolenaar <marcelm@juniper.net>
45504 Date:   Fri Feb 22 10:48:07 2008 -0800
45505
45506     make define2mk.sed work on FreeBSD
45507
45508     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
45509     the define2mk.sed script was identified as the source of the link
45510     failure on FreeBSD. The problem is that sed(1) does not always support
45511     the '+' operator. It isn't on FreeBSD. The attach patch implements the
45512     equivalent, using the '*' operator instead and should work everywhere.
45513
45514     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
45515
45516 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
45517 Author: Detlev Zundel <dzu@denx.de>
45518 Date:   Fri Feb 22 17:21:32 2008 +0100
45519
45520     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
45521
45522     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
45523     final traces of long-deprecated "ramdisk" kernel parm") makes these
45524     changes neccessary.
45525
45526     Signed-off-by: Detlev Zundel <dzu@denx.de>
45527
45528 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
45529 Author: Larry Johnson <lrj@acm.org>
45530 Date:   Thu Feb 21 13:58:16 2008 -0500
45531
45532     LM75 bug fix for negative temperatures
45533
45534     When the LM75 temperature sensor measures a temperature below 0 C, the
45535     current driver does not perform sign extension, so the result returned is
45536     256 C too high.  This patch fixes the problem.
45537
45538     Signed-off-by: Larry Johnson <lrj@acm.org>
45539
45540 commit 5a910c224b13e413bda41922379add6d75c32da3
45541 Author: Heiko Schocher <hs@denx.de>
45542 Date:   Thu Feb 21 18:33:45 2008 +0100
45543
45544     IDS8247: update MAINTAINER entry.
45545
45546     Signed-off-by: Heiko Schocher <hs@denx.de>
45547
45548 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
45549 Author: Heiko Schocher <hs@denx.de>
45550 Date:   Thu Feb 21 18:31:15 2008 +0100
45551
45552     Fix device tree for mgsuvd board.
45553
45554     Rename the "scc" node in "ethernet" for the mgsuvd board.
45555
45556     Signed-off-by: Heiko Schocher <hs@denx.de>
45557
45558 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
45559 Author: Yuri Tikhonov <yur@emcraft.com>
45560 Date:   Thu Feb 21 14:23:42 2008 +0100
45561
45562     lwmon5: enable hardware watchdog
45563
45564     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
45565     causing it to reboot the board if U-Boot does a long busy-wait with
45566     udelay(). Thus, for these boards we have to restart WD more
45567     frequently.
45568
45569     This patch splits the busy-wait udelay() into smaller, predefined,
45570     intervals, so that the watchdog timer may be resetted with the
45571     configurable (CONFIG_WD_PERIOD) interval.
45572
45573     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
45574
45575 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
45576 Author: Anatolij Gustschin <agust@denx.de>
45577 Date:   Thu Feb 21 12:52:29 2008 +0100
45578
45579     ppc4xx: Support for ATI Radeon 9200 card on sequoia
45580
45581     Adds configuration option for ATI Radeon 9200 card
45582     support to sequoia config file. If CONFIG_VIDEO
45583     is enabled, TEXT_BASE should be changed to 0xFFF80000.
45584
45585     Signed-off-by: Anatolij Gustschin <agust@denx.de>
45586
45587 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
45588 Author: Kumar Gala <galak@kernel.crashing.org>
45589 Date:   Mon Feb 18 08:18:07 2008 -0600
45590
45591     Remove duplicate defines for ARRAY_SIZE
45592
45593     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
45594     the define in common.h.
45595
45596     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45597
45598 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
45599 Author: Kumar Gala <galak@kernel.crashing.org>
45600 Date:   Mon Feb 18 08:09:37 2008 -0600
45601
45602     ppc: Allow boards to specify effective amount of memory
45603
45604     For historical reasons we limited the stack to 256M because some boards
45605     could only map that much via BATS.  However newer boards are capable of
45606     mapping more memory (for example 85xx is capable of doing up to 2G).
45607
45608     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45609
45610 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
45611 Author: Mike Frysinger <vapier@gentoo.org>
45612 Date:   Mon Feb 18 05:24:13 2008 -0500
45613
45614     include autoconf.mk before any other .mk files
45615
45616     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
45617     those .mk files can have make if statements based on the current config.
45618
45619     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45620
45621 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
45622 Author: Mike Frysinger <vapier@gentoo.org>
45623 Date:   Mon Feb 18 05:10:07 2008 -0500
45624
45625     error check autoconf.mk generation
45626
45627     If any of the steps for generating autoconf.mk fail currently, they go
45628     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
45629     This is simpler and more robust than placing '|| exit $$?' after every line.
45630
45631     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45632
45633 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
45634 Author: Stefano Babic <sbabic@denx.de>
45635 Date:   Mon Feb 18 08:03:51 2008 +0100
45636
45637     Fix bug in dependency checking
45638
45639     By adding VERSION_FILE to the PHONY targets the script
45640     /tools/setlocalversion is always called and version_autogenerated.h
45641     is replaced only if the script find a modified source file.
45642
45643     Signed-off-by: Stefano Babic <sbabic@denx.de>
45644
45645 commit 98ba144ccc912eee90dd42699f023c497ce774c6
45646 Author: Kyungmin Park <kmpark@infradead.org>
45647 Date:   Mon Feb 18 14:35:43 2008 +0900
45648
45649     Fix GPMC CS2 memory setup at apollon
45650
45651     It disables the current map first
45652
45653     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45654
45655 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
45656 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45657 Date:   Sun Feb 17 23:52:46 2008 +0100
45658
45659     uli526x: Fix multiple differ in signedness and parentheses around comparison
45660
45661     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45662
45663 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
45664 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45665 Date:   Sun Feb 17 16:58:04 2008 +0100
45666
45667     MIPS: Fix CFG_NO_FLASH support
45668
45669     - Fix flash_init call when CFG_NO_FLASH is used
45670     - Remove no more needed flash.c for qemu-mips
45671
45672     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45673
45674 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
45675 Author: Mike Frysinger <vapier@gentoo.org>
45676 Date:   Sat Feb 16 02:40:18 2008 -0500
45677
45678     easylogo: clean up some more and add -r (rgb) support
45679
45680     Michael Hennerich added support for outputting an image in RGB format rather
45681     than forcing YUYV all the time.  This makes obvious sense if the display you
45682     have takes RGB input rather than YUYV.
45683
45684     Rather than hack in support for options, I've converted it to use getopt and
45685     cleaned up the argument parsing in the process.
45686
45687     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
45688     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45689
45690 commit f65c98129ccada3f7caf97d80395a95b84e911de
45691 Author: Mike Frysinger <vapier@gentoo.org>
45692 Date:   Sat Feb 16 02:12:37 2008 -0500
45693
45694     Makefile: add target for $(LDSCRIPT)
45695
45696     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
45697     then change into the board directory and try and create it.  This allows you
45698     to generate the linker script on the fly based upon board defines (like the
45699     Blackfin boards do).
45700
45701     There should be no regressions due to this change as the normal case is to
45702     already have a u-boot.lds file.  If that's the case, then there's nothing to
45703     generate, and so make will always exit.  The fix here is that if the linker
45704     script does not exist, the implicit rules take over and attempt to guess how
45705     to generate the file.
45706
45707     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45708
45709 commit 5583cbf736474ef754e128a54fb78632f57b48fd
45710 Author: Marian Balakowicz <m8@semihalf.com>
45711 Date:   Thu Feb 21 17:27:49 2008 +0100
45712
45713     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
45714
45715     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45716
45717 commit 2242f5369822bc7780db95c47985bb408ea9157b
45718 Author: Marian Balakowicz <m8@semihalf.com>
45719 Date:   Thu Feb 21 17:27:41 2008 +0100
45720
45721     [new uImage] Rename and move print_image_hdr() routine
45722
45723     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45724
45725 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
45726 Author: Marian Balakowicz <m8@semihalf.com>
45727 Date:   Thu Feb 21 17:20:20 2008 +0100
45728
45729     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
45730
45731     Introducing routines for parsing new uImage format bootm arguments:
45732     [<addr>]#<conf>             - configuration specification
45733     [<addr>]:<subimg>   - subimage specification
45734
45735     New format images can contain multiple subimages of the same type. For example
45736     a single new format image file can contain three kernels, two ramdisks and a
45737     couple of FDT blobs. Subimage and configuration specifications are extensions
45738     to bootm (and other image-related commands) arguments' syntax that allow to
45739     specify which particular subimage should be operated on.
45740
45741     Subimage specification is used to denote a particular subimage. Configurations
45742     are a bit more complex -- they are used to define a particualr booting setup,
45743     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
45744     etc.
45745
45746     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45747
45748 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
45749 Author: Marian Balakowicz <m8@semihalf.com>
45750 Date:   Thu Feb 21 17:20:19 2008 +0100
45751
45752     [new uImage] Add gen_get_image() routine
45753
45754     This routine assures that image (whether legacy or FIT) is not
45755     in a special dataflash storage.
45756
45757     If image address is a dataflash address image is moved to system RAM.
45758
45759     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45760
45761 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
45762 Author: Marian Balakowicz <m8@semihalf.com>
45763 Date:   Thu Feb 21 17:20:18 2008 +0100
45764
45765     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
45766
45767     New uImage format (Flattened Image Tree) requires libfdt
45768     functionality, print out error message if CONFIG_OF_LIBFDT
45769     is not defined.
45770
45771     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
45772     This commit turns it on by default.
45773
45774     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45775
45776 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
45777 Author: Michael Schwingen <michael@schwingen.org>
45778 Date:   Mon Feb 18 23:16:35 2008 +0100
45779
45780     CFI: Do not use uninitialized cmd_reset
45781
45782     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
45783     commands instead
45784
45785     From a short test, it looks like AMD-style flash roms treat *any* unknown
45786     command write as a reset, at least when in CFI Query mode, so issuing the
45787     Intel reset command to AMD-style flashs seems safe (from the small sample I
45788     have), plus the 3-cycle magic sequence should kick the state machine into
45789     the right state even without a reset command. Since the AMD-style flashs
45790     require the unlock sequence for real operation, I chose to try the AMD reset
45791     command first, so that Intel flashs do no see an invalid command prior to
45792     the CFI query.
45793
45794     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
45795     plus Intel StrataFlash.
45796
45797     Signed-off-by: Michael Schwingen <michael@schwingen.org>
45798     Signed-off-by: Stefan Roese <sr@denx.de>
45799
45800 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
45801 Author: Rafal Jaworowski <raj@semihalf.com>
45802 Date:   Thu Feb 21 11:56:44 2008 +0100
45803
45804     API: Add (c) and licensing notice to the public API header.
45805
45806     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
45807
45808 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
45809 Author: Yuri Tikhonov <yur@emcraft.com>
45810 Date:   Thu Feb 21 11:06:07 2008 +0100
45811
45812     Fix CPU POST test failure
45813
45814     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
45815     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
45816     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
45817     This patch just saves the CR value before running the test code, so allowing
45818     it to do anything it wants with CR.
45819
45820     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
45821     Acked-by: Yuri Tikhonov <yur@emcraft.com>
45822     --
45823
45824 commit d5908b093955415f3d340706378b991f911af671
45825 Author: Jon Loeliger <jdl@freescale.com>
45826 Date:   Wed Feb 20 15:26:51 2008 -0600
45827
45828     8610HPCD: Document the flashbank selection switches.
45829
45830     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45831
45832 commit a551cee99ad1d1da20fd23ad265de47448852f56
45833 Author: Jon Loeliger <jdl@freescale.com>
45834 Date:   Wed Feb 20 14:22:26 2008 -0600
45835
45836     86xx: Fix GUR PCI config registers properly.
45837
45838     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
45839     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
45840     botched it due to not realizing that 8610 and 8641 had different
45841     Global Utility Register defintions, one of which was like 85xx,
45842     and the other wasn't.  Correct this problem by introducing two
45843     symbols, one for each 86xx SoC, but neither of which is named
45844     anything like 85xx.
45845
45846     My bad.  Lovely Wednesday with git bisect.  You know.
45847
45848     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45849
45850 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
45851 Author: Jon Loeliger <jdl@freescale.com>
45852 Date:   Wed Feb 20 12:24:11 2008 -0600
45853
45854     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
45855
45856     Without an actual supported video card hooked up, enabling
45857     the CONFIG_VIDEO by default just makes it look broken by
45858     routing all console output to the video card.   Don't.
45859
45860     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45861
45862 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
45863 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45864 Date:   Wed Jan 30 15:08:15 2008 -0600
45865
45866     ColdFire: Fix missing code flash size for M5485EVB
45867
45868     Signed-off-by: James Mahan <kmahan@freescale.com>
45869     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45870
45871 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
45872 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45873 Date:   Wed Jan 30 15:04:42 2008 -0600
45874
45875     ColdFire: Fix 5282 and 5271 interrupt mask bit
45876
45877     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45878
45879 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
45880 Author: Jon Loeliger <jdl@freescale.com>
45881 Date:   Tue Feb 19 12:31:08 2008 -0600
45882
45883     8610HPCD: Fix typos in two PCI setup registers.
45884
45885     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
45886     were erroneously present as 85xx names and values, leftover from
45887     the clone wars.  Fix this by removing the 85xx cruft from the
45888     86xx codebase.
45889
45890     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45891
45892 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
45893 Author: Jon Loeliger <jdl@freescale.com>
45894 Date:   Mon Feb 18 14:01:56 2008 -0600
45895
45896     86xx: Convert sbc8641d to use libfdt.
45897
45898     This is the proper fix for a missing closing brace in the function
45899     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
45900     The ft_cpu_setup() function in mpc8641hpcn.c should have been
45901     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
45902     but was missed.  Only, the sbc8641d was nominally still using it.
45903     It all got ripped out, and the funcality that was in ft_board_setup()
45904     was refactored to remove the CPU portions into the new file
45905     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
45906
45907     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
45908
45909     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45910
45911 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
45912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45913 Date:   Sun Feb 17 23:35:31 2008 +0100
45914
45915     mpc86xx: Fix unused variable 'config' and 'immap'
45916
45917     and remove useless CONFIG_DDR_INTERLEAVE
45918
45919     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45920
45921 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
45922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45923 Date:   Sun Feb 17 23:03:36 2008 +0100
45924
45925     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
45926
45927     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45928
45929 commit b6f29c84c208a091f95a10cbc9852d729659ba20
45930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45931 Date:   Sun Feb 17 14:15:31 2008 +0100
45932
45933     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
45934
45935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45936
45937 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
45938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45939 Date:   Sun Feb 17 14:15:32 2008 +0100
45940
45941     pxa: fix assignment from incompatible pointer type
45942
45943     fix mmc_bread function prototype
45944
45945     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45946
45947 commit 64d792063fff90b8118179b092feee09fe5cae13
45948 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45949 Date:   Sun Feb 17 14:15:30 2008 +0100
45950
45951     at91cap9adk: fix implicit declaration of function 'eth_init'
45952
45953     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45954
45955 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
45956 Author: Wolfgang Denk <wd@denx.de>
45957 Date:   Sun Feb 17 15:43:44 2008 +0100
45958
45959     Remove files added by mistake, update CHANGELOG.
45960
45961     Signed-off-by: Wolfgang Denk <wd@denx.de>
45962
45963 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
45964 Author: Mike Nuss <mike@terascala.com>
45965 Date:   Wed Feb 6 11:10:11 2008 -0500
45966
45967     PPC440EPx: Optionally enable second I2C bus
45968
45969     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
45970     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
45971     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
45972
45973     Signed-off-by: Mike Nuss <mike@terascala.com>
45974     Cc: Stefan Roese <sr@denx.de>
45975
45976 commit ef5b4f221c22d05770878513951745f236b5b43f
45977 Author: Niklaus Giger <niklaus.giger@netstal.com>
45978 Date:   Tue Feb 5 10:26:44 2008 +0100
45979
45980     ppc4xx: HCU4/5. Cleanup configs
45981
45982     - hcu4.h: Removed define of CONFIG_PPC405GPr
45983     - Corrected phy addresses
45984     - Fix boot variables
45985     - Respect line length of 80 chars
45986
45987     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
45988
45989 commit 74973126d1be63ac75bdc192f46234dca3a7c421
45990 Author: Niklaus Giger <niklaus.giger@netstal.com>
45991 Date:   Tue Feb 5 11:31:28 2008 +0100
45992
45993     ppc4xx: HCU4/5. Cleanups
45994
45995     - Fix some coding style violations.
45996     - Use in/out_u16/32 where appropriate.
45997     - Use register names from ppc405.h.
45998     - Fix trace useage for Lauterbach.
45999     - Remove obsolete generation HCU2.
46000     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
46001
46002     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
46003
46004 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
46005 Author: Niklaus Giger <niklaus.giger@netstal.com>
46006 Date:   Tue Feb 5 10:26:41 2008 +0100
46007
46008     ppc4xx: PPC405GPr fix missing register definitions
46009
46010     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
46011
46012 commit 214398d9cb22268d9d4f7563359edca0f78297a2
46013 Author: Larry Johnson <lrj@acm.org>
46014 Date:   Fri Jan 18 21:49:05 2008 -0500
46015
46016     ppc4xx: Beautify configuration files for Sequoia and Korat boards
46017
46018     Signed-off-by: Larry Johnson <lrj@acm.org>
46019
46020 commit 30c6a241e88499f536e86d325759e29ba00ff67f
46021 Author: Anatolij Gustschin <agust@denx.de>
46022 Date:   Fri Feb 15 20:09:01 2008 +0100
46023
46024     Wipe out assembler warnings while compiling x86 biosemu
46025
46026     This patch tries to get rid of some assembler warnings about
46027     changed .got2 section type while compiling x86 bios emulator
46028     code.
46029
46030     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46031
46032 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
46033 Author: Wolfgang Denk <wd@denx.de>
46034 Date:   Fri Feb 15 00:57:09 2008 +0100
46035
46036     Prepare v1.3.2-rc1 release candidate
46037
46038 commit f33e9653c9c09868995d788511d573771c209fe5
46039 Author: Anatolij Gustschin <agust@denx.de>
46040 Date:   Fri Feb 15 00:13:20 2008 +0100
46041
46042     Fix compile warning on lib_ppc/board.c
46043
46044     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46045
46046 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
46047 Author: Anatolij Gustschin <agust@denx.de>
46048 Date:   Thu Feb 14 18:22:04 2008 +0100
46049
46050     Add Radeon Mobility 9200 pci device id to the radeon driver
46051
46052     This patch extends PCI device id table of the
46053     radeon driver so that the driver will also support
46054     Radeon Mobility 9200 (M9+) based boards.
46055
46056     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46057
46058 commit 1b8607e1f7143548c6062c28371449ec69588c00
46059 Author: Anatolij Gustschin <agust@denx.de>
46060 Date:   Thu Feb 14 18:19:50 2008 +0100
46061
46062     Extend ATI Radeon driver to support more video modes
46063
46064     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
46065     800x600, 640x480 at 24, 16 and 8 bpp.
46066
46067     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46068
46069 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
46070 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46071 Date:   Sun Feb 10 17:05:20 2008 +0100
46072
46073     xsengine: fix typo and few coding style
46074
46075     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46076
46077 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
46078 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
46079 Date:   Fri Feb 8 21:25:58 2008 +0100
46080
46081     Fix wrong memory limit calculation in memory-test
46082
46083     If the length of the memory address range passed to the "mtest" command is
46084     not of the form 2^x - 1, not all address lines are tested. This bug is
46085     inherited from the original software at
46086     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
46087     this.
46088
46089     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
46090
46091 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
46092 Author: Wolfgang Denk <wd@denx.de>
46093 Date:   Fri Feb 15 00:11:39 2008 +0100
46094
46095     Coding STyle cleanup.
46096
46097     Signed-off-by: Wolfgang Denk <wd@denx.de>
46098
46099 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
46100 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46101 Date:   Tue Feb 5 13:30:43 2008 +0900
46102
46103     sh: Fix register address of SH7722
46104
46105     The address of SH7722 is wrong by old document.
46106     This patch fixes this problem.
46107
46108     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46109
46110 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
46111 Author: Mike Frysinger <vapier@gentoo.org>
46112 Date:   Mon Feb 4 17:44:23 2008 -0500
46113
46114     only update version header as needed
46115
46116     Constantly rebuilding the version header will force useless relinking, so we
46117     simply need to compare the new header with the existing one before updating
46118     it.
46119
46120     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46121
46122 commit 208447f8e953f347425eb92c8e28d59e6d911363
46123 Author: Mike Frysinger <vapier@gentoo.org>
46124 Date:   Mon Jan 28 05:56:19 2008 -0500
46125
46126     Do not specify a CROSS_COMPILE default when executing size
46127
46128     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46129
46130 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
46131 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
46132 Date:   Wed Feb 13 11:19:19 2008 +0100
46133
46134     Fix return value of mtest when CFG_ALT_MEMTEST set
46135
46136     Fix a missing return statement from a non-void function.
46137
46138     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
46139
46140 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
46141 Author: Timur Tabi <timur@freescale.com>
46142 Date:   Wed Jan 9 14:35:26 2008 -0600
46143
46144     85xx, 86xx: Determine I2C clock frequencies and store in global_data
46145
46146     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
46147
46148     Update the get_clocks() function in 85xx and 86xx to determine the I2C
46149     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
46150
46151     Signed-off-by: Timur Tabi <timur@freescale.com>
46152
46153 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
46154 Author: Wolfgang Denk <wd@denx.de>
46155 Date:   Thu Feb 14 23:18:01 2008 +0100
46156
46157     TQM834x: clean up configuration
46158
46159     Get board name consistent with Linux and elsewhere;
46160     get rid of local network definitions etc.
46161
46162     Signed-off-by: Wolfgang Denk <wd@denx.de>
46163
46164 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
46165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46166 Date:   Thu Feb 14 08:02:12 2008 +0100
46167
46168     TFTP: fix search of ':' in BootFile
46169
46170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46171
46172 commit 0bc9efada170096c6b273f19165e32936d330d80
46173 Author: Wolfgang Denk <wd@denx.de>
46174 Date:   Thu Feb 14 22:46:55 2008 +0100
46175
46176     Coding style cleanup; update CHANGELOG.
46177
46178     Signed-off-by: Wolfgang Denk <wd@denx.de>
46179
46180 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
46181 Author: Wolfgang Denk <wd@denx.de>
46182 Date:   Thu Feb 14 22:43:22 2008 +0100
46183
46184     PPC: Use r2 instead of r29 as global data pointer
46185
46186     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
46187     will refuse to use load/store multiple insns; instead, it issues a
46188     list of simple load/store instructions upon function entry and exit,
46189     resulting in bigger code size, which in turn makes the build for a
46190     few boards fail.
46191
46192     Use r2 instead.
46193
46194     Signed-off-by: Wolfgang Denk <wd@denx.de>
46195
46196 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
46197 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
46198 Date:   Wed Jan 30 09:08:49 2008 +0100
46199
46200     ARM: make the machid configurable via the environment
46201
46202     If the variable "machid" exists, let do_bootm_linux use that instead
46203     of bd->bi_arch_number.
46204
46205     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
46206
46207 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
46208 Author: Vlad Lungu <vlad@comsys.ro>
46209 Date:   Wed Jan 23 16:34:46 2008 +0200
46210
46211     Use #ifdef CONFIG_FSLDMAFEC
46212
46213     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
46214     fails
46215
46216     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
46217
46218 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
46219 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
46220 Date:   Sat Jan 19 10:25:59 2008 +0900
46221
46222     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
46223
46224     Current MII_DEBUG is confusing in two ways. One is useless define-then-
46225     undef at the top of the file. The other is there is only one debug() in
46226     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
46227     While there are many useful printf()/puts() debug codes, but they are for
46228     DEBUG, not for MII_DEBUG.
46229
46230     This patch tries to put them all together into MII_DEBUG and debug().
46231
46232     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
46233
46234 commit 751b9b5189f3274b03c809172631316d6b002c82
46235 Author: Kyungmin Park <kmpark@infradead.org>
46236 Date:   Thu Jan 17 16:43:25 2008 +0900
46237
46238     OneNAND Initial Program Loader (IPL) support
46239
46240     This patch enables the OneNAND boot within U-Boot.
46241     Before this work, we used another OneNAND IPL called X-Loader based
46242     on open source. With this work, we can build the oneboot.bin image
46243     without other program.
46244
46245     The build sequence is simple.
46246     First, it compiles the u-boot.bin
46247     Second, it compiles OneNAND IPL
46248     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
46249     The mechanism is similar with NAND boot except it boots from itself.
46250
46251     Another thing is that you can only use the OneNAND IPL only to work
46252     other bootloader such as RedBoot and so on.
46253
46254     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
46255
46256 commit 21f6f9636f0e978397548751347425fbf8d42bb3
46257 Author: Andy Fleming <afleming@freescale.com>
46258 Date:   Wed Jan 16 13:06:59 2008 -0600
46259
46260     Fix CONFIG_MMC usage in fat code
46261
46262     A #if statement in fat.c depended on CONFIG_MMC, instead of
46263     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
46264     as "1" rather than just defined.  Now it's better.
46265
46266     Signed-off-by: Andy Fleming <afleming@freescale.com>
46267
46268 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
46269 Author: Rafal Jaworowski <raj@semihalf.com>
46270 Date:   Tue Jan 15 12:52:31 2008 +0100
46271
46272     ppc: Refactor cache routines, so there is only one common set.
46273
46274     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
46275
46276 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
46277 Author: Jon Loeliger <jdl@jdl.com>
46278 Date:   Wed Jan 23 15:55:02 2008 -0600
46279
46280     86xx: Fix compilation warning in sys_eprom.c
46281
46282     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
46283
46284     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46285
46286 commit 65230107025733e89e28fd5e5cfd916d4953c28a
46287 Author: Haavard Skinnemoen <hskinnemoen at>
46288 Date:   Fri Feb 22 11:40:50 2008 +0000
46289
46290     Move AT91RM9200DK board support under board/atmel
46291
46292     We already have a vendor subdir for Atmel, so we should use it.
46293
46294     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
46295
46296 commit 6d0943a6be99977d6d853d51749e9963d68eb192
46297 Author: Andreas Engel <andreas.engel@ericsson.com>
46298 Date:   Mon Jan 14 09:06:52 2008 +0000
46299
46300     ARM: cleanup duplicated exception handlingcode
46301
46302     Move duplicated exception handling code into lib_arm.
46303
46304     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
46305
46306 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
46307 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
46308 Date:   Fri Feb 1 10:09:03 2008 +0000
46309
46310     Support for Artila M-501 starter kit
46311
46312     Kimmo Leppala / Sysart and
46313     Timo Tuunainen / Sysart
46314
46315 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
46316 Author: Stelian Pop <stelian@popies.net>
46317 Date:   Mon Feb 11 10:50:19 2008 +0000
46318
46319     AT91CAP9 support
46320
46321     ---------------------------------
46322
46323     read_dataflash() takes a signed char pointer as a parameter. Silence a
46324     few warnings dues to incorrect parameter types in env_dataflash.c.
46325
46326     Signed-off-by: Stelian Pop <stelian@popies.net>
46327
46328 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
46329 Author: Stelian Pop <stelian@popies.net>
46330 Date:   Thu Feb 7 09:42:57 2008 +0000
46331
46332     AT91CAP9 support : move board files to Atmel vendor directory.
46333
46334     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
46335
46336     Signed-off-by: Stelian Pop <stelian@popies.net>
46337
46338 commit 7263ef191b87da94768f762c7093bedeb70db98f
46339 Author: Stelian Pop <stelian at>
46340 Date:   Thu Jan 3 21:15:56 2008 +0000
46341
46342     AT91CAP9 support : MACB changes
46343
46344     Signed-off-by: Stelian Pop <stelian <at> popies.net>
46345     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
46346
46347 commit 6afcabf11d7321850f4feaadfee841488ace54c5
46348 Author: Stelian Pop <stelian@popies.net>
46349 Date:   Thu Feb 7 16:37:54 2008 +0000
46350
46351     AT91CAP9 support : board/ files
46352
46353     Signed-off-by: Stelian Pop <stelian@popies.net>
46354
46355 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
46356 Author: Stelian Pop <stelian at>
46357 Date:   Wed Jan 30 21:15:54 2008 +0000
46358
46359     AT91CAP9 support : cpu/ files
46360
46361     Signed-off-by: Stelian Pop <stelian <at> popies.net>
46362
46363 commit fa506a926cec348805143576c941f8e61b333cc0
46364 Author: Stelian Pop <stelian@popies.net>
46365 Date:   Thu Jan 31 21:15:53 2008 +0000
46366
46367     AT91CAP9 support : include/ files
46368
46369     Signed-off-by: Stelian Pop <stelian@popies.net>
46370
46371 commit 20b197c6f2799af399a68f96a1aff543a75621b8
46372 Author: Stelian Pop <stelian@popies.net>
46373 Date:   Sun Jan 20 19:49:21 2008 +0000
46374
46375     AT91CAP9 support : build integration
46376
46377     Signed-off-by: Stelian Pop <stelian@popies.net>
46378
46379 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
46380 Author: Stelian Pop <stelian@popies.net>
46381 Date:   Sun Jan 20 21:07:00 2008 +0000
46382
46383     Improve DataFlash CS definition.
46384
46385     Use a structure instead of the error prone unnamed array to
46386     define the possible dataflash banks.
46387
46388     Signed-off-by: Stelian Pop <stelian@popies.net>
46389
46390 commit a6cdd21b56014208706238712a853a9e9a0a2290
46391 Author: Stelian Pop <stelian@popies.net>
46392 Date:   Sat Jan 19 21:09:35 2008 +0000
46393
46394     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
46395
46396     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
46397
46398     cpu/arm926ejs/start.o: In function `cpu_init_crit':
46399     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
46400
46401     Signed-off-by: Stelian Pop <stelian@popies.net>
46402
46403 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
46404 Author: Peter Pearse <peter.pearse@arm.com>
46405 Date:   Fri Feb 1 16:50:24 2008 +0000
46406
46407     Fix timer overflow in DaVinci
46408     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
46409
46410 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
46411 Author: Peter Pearse <peter.pearse@arm.com>
46412 Date:   Fri Feb 1 16:49:08 2008 +0000
46413
46414     Update board NetStar
46415     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
46416
46417 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
46418 Author: Niklaus Giger <niklaus.giger@netstal.com>
46419 Date:   Tue Feb 5 10:26:42 2008 +0100
46420
46421     ppc4xx: HCU4/5. Fix make O=../xx
46422
46423     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
46424
46425 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
46426 Author: Larry Johnson <lrj@acm.org>
46427 Date:   Tue Jan 22 08:51:59 2008 -0500
46428
46429     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
46430
46431     Signed-off-by: Larry Johnson <lrj@acm.org>
46432
46433 commit fe891ecf4d187e9d11dde869ed4623af52b54451
46434 Author: Hiroshi Ito <ito@mlb.co.jp>
46435 Date:   Thu Jan 31 18:35:04 2008 +0900
46436
46437     NFS Timeout with large files.
46438
46439     Retry to send NFS packet before reaching timeout.
46440
46441     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
46442
46443 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
46444 Author: Johannes Stezenbach <js@sig21.net>
46445 Date:   Tue Jan 29 00:11:25 2008 +0100
46446
46447     Add dependencies to avoid race conditions with parallel make.
46448
46449     Signed-off-by: Johannes Stezenbach <js@sig21.net>
46450
46451 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
46452 Author: Mike Frysinger <vapier@gentoo.org>
46453 Date:   Mon Jan 28 05:46:01 2008 -0500
46454
46455     Mark board_init_[fr] as noreturn
46456
46457     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46458
46459 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
46460 Author: Mike Frysinger <vapier@gentoo.org>
46461 Date:   Mon Jan 28 05:28:50 2008 -0500
46462
46463     Only use TEXT_BASE if defined by the board
46464
46465     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
46466
46467 commit 1b769881750030f10743808b9d6013e11f559350
46468 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46469 Date:   Fri Jan 25 07:54:47 2008 +0100
46470
46471     Fix remaining CONFIG_COMMANDS
46472
46473     update comments
46474     Fix coding style
46475
46476     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46477
46478 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
46479 Author: Niklaus Giger <niklaus.giger@netstal.com>
46480 Date:   Mon Jan 21 16:46:00 2008 +0100
46481
46482     Add *~ to .gitignore
46483
46484     One should never add a backup file ending in with ~ to the git repository.
46485
46486     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
46487
46488 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
46489 Author: Kumar Gala <galak@kernel.crashing.org>
46490 Date:   Thu Jan 17 00:02:10 2008 -0600
46491
46492     Remove duplicate defines for ARRAY_SIZE
46493
46494     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46495
46496 commit c77ce474b1c57b13e9d36d9830f147966c143694
46497 Author: Stelian Pop <stelian@popies.net>
46498 Date:   Mon Jan 14 22:08:14 2008 +0100
46499
46500     Fix incorrect address test in AT91F_DataflashSelect().
46501
46502     Signed-off-by: Stelian Pop <stelian@popies.net>
46503
46504 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
46505 Author: Kumar Gala <galak@kernel.crashing.org>
46506 Date:   Wed Feb 13 15:09:58 2008 -0600
46507
46508     Fix building of fdt_support.c if DEBUG set
46509
46510     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46511
46512 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
46513 Author: Jon Loeliger <jdl@freescale.com>
46514 Date:   Tue Feb 12 14:53:28 2008 -0600
46515
46516     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
46517
46518     These replace direct structure references for IMMR sections.
46519
46520     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46521
46522 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
46523 Author: Wolfgang Denk <wd@denx.de>
46524 Date:   Tue Feb 12 00:45:06 2008 +0100
46525
46526     Get rid of "#undef DEBUG" from board config files.
46527
46528     Signed-off-by: Wolfgang Denk <wd@denx.de>
46529
46530 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
46531 Author: Timur Tabi <timur@freescale.com>
46532 Date:   Tue Jan 15 17:09:41 2008 -0600
46533
46534     Remove #undef DEBUG from MPC83xx board header files
46535
46536     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
46537     The inclusion of this line makes it impossible to enable debug code in
46538     other source files, because "#define DEBUG" typically needs to be defined
46539     before any header files are included.
46540
46541     Signed-off-by: Timur Tabi <timur@freescale.com>
46542
46543 commit 69018ce2e086e9caf35b914d675b82bc4888f077
46544 Author: Kumar Gala <galak@kernel.crashing.org>
46545 Date:   Thu Jan 17 08:25:45 2008 -0600
46546
46547     QE: Move FDT support into a common file
46548
46549     Move the flat device tree setup for QE related devices into
46550     a common file shared between 83xx & 85xx platforms that have QE's.
46551
46552     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46553
46554 commit 5cf746c303710329f8040d9c62ee354313e3e91f
46555 Author: Marian Balakowicz <m8@semihalf.com>
46556 Date:   Thu Jan 31 13:59:09 2008 +0100
46557
46558     [new uImage] Move kernel data find code to get_kernel() routine
46559
46560     Verification of the kernel image (in old format) and finding kernel
46561     data is moved to a dedicated routine. The routine will also hold
46562     support for, to be added, new image format.
46563
46564     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46565
46566 commit 7b325454fd231d4273de3fe373850f777fb086bf
46567 Author: Marian Balakowicz <m8@semihalf.com>
46568 Date:   Thu Jan 31 13:58:20 2008 +0100
46569
46570     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
46571
46572     Move FDT blob finding and relocation to a dedicated
46573     get_fdt() routine. It increases code readability and
46574     will make adding support for new uImage format easier.
46575
46576     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46577
46578 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
46579 Author: Marian Balakowicz <m8@semihalf.com>
46580 Date:   Thu Jan 31 13:58:13 2008 +0100
46581
46582     [new uImage] Cleanup do_botm_linux() boot allocations
46583
46584     This patch moves common pre-boot allocation steps shared between PPC
46585     and M68K to a helper routines:
46586
46587     common:
46588     - get_boot_sp_limit()
46589     - get_boot_cmline()
46590     - get_boot_kbd()
46591
46592     platform:
46593     - set_clocks_in_mhz()
46594
46595     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46596
46597 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
46598 Author: Marian Balakowicz <m8@semihalf.com>
46599 Date:   Thu Jan 31 13:57:17 2008 +0100
46600
46601     [new uImage] Move ramdisk loading to a common routine
46602
46603     Ramdisk loading code, including initrd_high variable handling,
46604     was duplicated for PPC and M68K platforms. This patch creates
46605     common helper routine that is being called from both platform
46606     do_bootm_linux() routines.
46607
46608     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46609
46610 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
46611 Author: Marian Balakowicz <m8@semihalf.com>
46612 Date:   Thu Jan 31 13:55:53 2008 +0100
46613
46614     [new uImage] Removed dead ramdisk code on microblaze architectures
46615
46616     Microblaze do_bootm_linux() includes ramdisk processing code but
46617     the ramdisk does not get used anywhere later on.
46618
46619     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46620
46621 commit 5ad03eb3854c162684222a718b44c0716ea0db03
46622 Author: Marian Balakowicz <m8@semihalf.com>
46623 Date:   Thu Jan 31 13:55:39 2008 +0100
46624
46625     [new uImage] Factor out common image_get_ramdisk() routine
46626
46627     Architecture specific do_bootm_linux() routines share common
46628     ramdisk image processing code. Move this code to a common
46629     helper routine.
46630
46631     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46632
46633 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
46634 Author: Marian Balakowicz <m8@semihalf.com>
46635 Date:   Thu Jan 31 13:20:08 2008 +0100
46636
46637     [new uImage] Move FDT error printing to common fdt_error() routine
46638
46639     FDT error handling in PPC do_bootm_linux() shares the same message format.
46640     This patch moves error message printing to a helper fdt_error() routine.
46641
46642     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46643     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
46644
46645 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
46646 Author: Marian Balakowicz <m8@semihalf.com>
46647 Date:   Thu Jan 31 13:20:07 2008 +0100
46648
46649     [new uImage] Factor out common routines for getting os/arch/type/comp names
46650
46651     Move numeric-id to name translation for image os/arch/type/comp header
46652     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
46653     image_get_type_name(), image_get_comp_name().
46654
46655     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46656
46657 commit e99c26694a384221d336f6448c06a57479c0baa4
46658 Author: Marian Balakowicz <m8@semihalf.com>
46659 Date:   Thu Jan 31 13:20:07 2008 +0100
46660
46661     [new uImage] Remove standalone applications handling from boootm
46662
46663     Standalone applications are supposed to be run using the "go" command.
46664     This patch removes standalone images handling from the do_bootm().
46665
46666     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46667
46668 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
46669 Author: Marian Balakowicz <m8@semihalf.com>
46670 Date:   Thu Jan 31 13:20:07 2008 +0100
46671
46672     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
46673
46674     Support for OF_FLAT_TREE is to be obsoleted in the near future,
46675     remove related code from the bootm routines.
46676
46677     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46678
46679 commit 82850f3d32a2661868ec6876bed7a22c55cef718
46680 Author: Marian Balakowicz <m8@semihalf.com>
46681 Date:   Thu Jan 31 13:20:06 2008 +0100
46682
46683     [new uImage] Use image API in SH do_bootm_linux() routine
46684
46685     Introduce image handling API for lately added Hitachi SH architecture.
46686
46687     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46688
46689 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
46690 Author: Marian Balakowicz <m8@semihalf.com>
46691 Date:   Thu Jan 31 13:20:06 2008 +0100
46692
46693     [new uImage] Rename architecture specific bootm code files
46694
46695     Implementation of the do_bootm_linux() and other bootm helper routines is
46696     architecture specific code. As such it resides in lib_<arch> directories
46697     in files named <arch>_linux.c
46698
46699     This patch renames those files to a more clear and accurate
46700     lib_<arch>/bootm.c form.
46701
46702     List of the renamed files:
46703        lib_arm/armlinux.c -> lib_arm/bootm.c
46704        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
46705        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
46706        lib_i386/i386_linux.c -> lib_i386/bootm.c
46707        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
46708        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
46709        lib_mips/mips_linux.c -> lib_mips/bootm.c
46710        lib_nios/nios_linux.c -> lib_nios/bootm.c
46711        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
46712        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
46713        lib_sh/sh_linux.c -> lib_sh/bootm.c
46714
46715     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46716
46717 commit 7582438c285bf0cef82909d0f232de64ec567a8a
46718 Author: Marian Balakowicz <m8@semihalf.com>
46719 Date:   Thu Jan 31 13:20:06 2008 +0100
46720
46721     [new uImage] Return error on image move/uncompress overwrites
46722
46723     Check for overwrites during image move/uncompress, return with error
46724     when the original image gets corrupted. Report clear message to the user
46725     and prevent further troubles when pointer to the corrupted images is passed
46726     to do_bootm_linux routine.
46727
46728     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46729
46730 commit f13e7b2e993c61fed1f607962501e051940d6e80
46731 Author: Marian Balakowicz <m8@semihalf.com>
46732 Date:   Tue Jan 8 18:12:17 2008 +0100
46733
46734     [new uImage] Cleanup image header pointer use in bootm code
46735
46736     - use single image header pointer instead of a set of auxilliary variables.
46737     - add multi component image helper routines: get component size/data address
46738
46739     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46740
46741 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
46742 Author: Marian Balakowicz <m8@semihalf.com>
46743 Date:   Tue Jan 8 18:17:10 2008 +0100
46744
46745     [new uImage] Cleanup cmd_bootm.c
46746
46747     - sort and cleanup headers, declarations, etc.
46748     - group related routines
46749     - cleanup indentation, white spaces
46750
46751     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46752
46753 commit af13cdbc01eaf88880978bfb4f603e012818ba24
46754 Author: Marian Balakowicz <m8@semihalf.com>
46755 Date:   Tue Jan 8 18:11:45 2008 +0100
46756
46757     [new uImage] Add memmove_wd() common routine
46758
46759     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
46760
46761     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46762
46763 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
46764 Author: Marian Balakowicz <m8@semihalf.com>
46765 Date:   Tue Jan 8 18:11:44 2008 +0100
46766
46767     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
46768
46769     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46770
46771 commit 15158971f49255ccef54f0979a942cfd3de2ae52
46772 Author: Marian Balakowicz <m8@semihalf.com>
46773 Date:   Tue Jan 8 18:11:44 2008 +0100
46774
46775     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
46776
46777     Use image header copy instead of a (possibly corrupted) pointer to
46778     a initial image location.
46779
46780     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46781
46782 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
46783 Author: Marian Balakowicz <m8@semihalf.com>
46784 Date:   Tue Jan 8 18:11:44 2008 +0100
46785
46786     [new uImage] Remove I386 uImage fake_header() routine
46787
46788     I386 targets are not using a uImage format, instead fake header
46789     is added to ram image before it is further processed by bootm.
46790
46791     Remove this fixup and force proper uImage use for I386.
46792
46793     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46794
46795 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
46796 Author: Marian Balakowicz <m8@semihalf.com>
46797 Date:   Tue Jan 8 18:11:44 2008 +0100
46798
46799     [new uImage] Move CHUNKSZ definition to image.h
46800
46801     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
46802     move this definition to a common header.
46803
46804     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46805
46806 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
46807 Author: Marian Balakowicz <m8@semihalf.com>
46808 Date:   Tue Jan 8 18:11:43 2008 +0100
46809
46810     [new uImage] Move gunzip() common code to common/gunzip.c
46811
46812     Move gunzip(), zalloc() and zfree() to a separate file.
46813     Share zalloc() and zfree() with cramfs uncompress routine.
46814
46815     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46816
46817 commit d45d5a18b6b36688f2365623f9d550566c664b5b
46818 Author: Marian Balakowicz <m8@semihalf.com>
46819 Date:   Tue Jan 8 18:11:43 2008 +0100
46820
46821     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
46822
46823     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
46824     readable in PPC variant of do_bootm_linux() routine.
46825
46826     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46827
46828 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
46829 Author: Marian Balakowicz <m8@semihalf.com>
46830 Date:   Tue Jan 8 18:11:43 2008 +0100
46831
46832     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
46833
46834     PPC implementation of do_bootm_linux() routine is moved to
46835     a dedicated file lib_ppc/ppc_linux.c
46836
46837     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46838
46839 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
46840 Author: Marian Balakowicz <m8@semihalf.com>
46841 Date:   Tue Jan 8 18:14:09 2008 +0100
46842
46843     [new uImage] Define a API for image handling operations
46844
46845     - Add inline helper macros for basic header processing
46846     - Move common non inline code common/image.c
46847     - Replace direct header access with the API routines
46848     - Rename IH_CPU_* to IH_ARCH_*
46849
46850     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46851
46852 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
46853 Author: Marian Balakowicz <m8@semihalf.com>
46854 Date:   Thu Jan 31 13:19:58 2008 +0100
46855
46856     Add missing cmd_ximg.o to common/Makefile
46857
46858     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46859
46860 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
46861 Author: Grzegorz Bernacki <gjb@semihalf.com>
46862 Date:   Mon Jan 28 10:15:02 2008 +0100
46863
46864     ADS5121e: DDR2 init/timing update.
46865
46866     Signed-off-by: John Rigby <jrigby@freescale.com>
46867     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
46868
46869 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
46870 Author: John Rigby <jrigby@freescale.com>
46871 Date:   Wed Jan 30 13:36:57 2008 -0700
46872
46873     Device tree updates
46874
46875     Changes to match 5121 device tree going mainline in 2.6.25.
46876
46877     Change OF_SOC from "soc5121" to plain "soc".
46878     Remove unneeded "ref-frequency" fixups.
46879     Remove "address" enetaddr fixup.
46880
46881     Add bus-frequency fixup for old OF_SOC so old
46882     kernels with old device trees will work with new
46883     u-boot with 66MHz IPS clock
46884
46885     Signed-off-by: John Rigby <jrigby@freescale.com>
46886
46887 commit de55d18df3ff2ea614624e74793de7c43520e0e7
46888 Author: John Rigby <jrigby@freescale.com>
46889 Date:   Wed Jan 30 13:36:56 2008 -0700
46890
46891     Change IPS freq to 66MHz
46892
46893     Recommended frequency is 66MHz
46894     Change divider from 4 to 3.
46895
46896     Signed-off-by: John Rigby <jrigby@freescale.com>
46897
46898 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
46899 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46900 Date:   Mon Jan 14 22:38:55 2008 +0100
46901
46902     xsengine: rename board_post_init to board_late_init
46903
46904     missing migration from "Cleanup of some init functions"
46905     in c837dcb1a316745092567bfe4fb266d0941884ff
46906
46907     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46908
46909 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
46910 Author: Larry Johnson <lrj@acm.org>
46911 Date:   Sat Jan 12 23:35:33 2008 -0500
46912
46913     Add attribute POST_PREREL to ECC memory POST
46914
46915     Signed-off-by: Larry Johnson <lrj@acm.org>
46916
46917 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
46918 Author: Kumar Gala <galak@kernel.crashing.org>
46919 Date:   Thu Jan 17 08:25:45 2008 -0600
46920
46921     QE: Move FDT support into a common file
46922
46923     Move the flat device tree setup for QE related devices into
46924     a common file shared between 83xx & 85xx platforms that have QE's.
46925
46926     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46927
46928 commit d38da537943cd36356b9d3d9d9b60533554b81d8
46929 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46930 Date:   Wed Jan 23 17:20:14 2008 +0100
46931
46932     AVR32: Make SDRAM refresh rate configurable
46933
46934     The existing code assumes the SDRAM row refresh period should always
46935     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
46936     refresh rate should really be 7.81 us.
46937
46938     Add a refresh_period member to struct sdram_info and initialize it
46939     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
46940     panic() until the refresh_period member is updated properly.
46941
46942     Big thanks to Gerhard Berghofer for pointing out this issue.
46943
46944     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46945
46946 commit 61151cccb660cdb06a07fb283de6089913d7bde0
46947 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46948 Date:   Thu Apr 19 10:10:11 2007 +0200
46949
46950     ATSTK1000: Fix potential flash programming bug
46951
46952     The (now obsolete) atngw100 flash programming code was having problems
46953     programming the onboard at49bv642 chip. The atstk1000 flash
46954     programming code may have the same bug, so import fix for this problem
46955     from the AVR32 Linux BSP.
46956
46957     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46958
46959 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
46960 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46961 Date:   Thu Nov 22 17:04:13 2007 +0100
46962
46963     ATSTK1004: Fix comment about default load address
46964
46965     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
46966     wouldn't have worked anyway since the board can only access 4MB of
46967     SDRAM.
46968
46969     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46970
46971 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
46972 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46973 Date:   Thu Nov 22 17:01:24 2007 +0100
46974
46975     ATSTK1002: Use SDRAM + 4MB as default load address
46976
46977     Many people run into problems when they compile a big kernel and load
46978     the uImage at the default SDRAM + 2MB address as the kernel will
46979     overwrite the uImage as it is being unpacked. Increase the default
46980     load address so that we can load a 4MB kernel image without any
46981     problems.
46982
46983     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46984
46985 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
46986 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46987 Date:   Thu Nov 22 16:51:39 2007 +0100
46988
46989     ATNGW100: Fix default mtest range
46990
46991     Let mtest cover the whole SDRAM except the last megabyte, which is
46992     where u-boot lives.
46993
46994     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46995
46996 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
46997 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46998 Date:   Tue Jan 22 15:31:56 2008 +0900
46999
47000     sh: Fix register address of SH7722.
47001
47002     The address of SH7722 is wrong by old document.
47003     This patch fixes this problem.
47004
47005     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47006
47007 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
47008 Author: Mike Frysinger <vapier@gentoo.org>
47009 Date:   Mon Feb 4 19:26:57 2008 -0500
47010
47011     new command for displaying strings at specified memory locations
47012
47013     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47014
47015 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
47016 Author: Mike Frysinger <vapier@gentoo.org>
47017 Date:   Mon Feb 4 19:26:57 2008 -0500
47018
47019     rewrite/cleanup Blackfin RTC driver
47020
47021     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47022
47023 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
47024 Author: Mike Frysinger <vapier@gentoo.org>
47025 Date:   Mon Feb 4 19:26:57 2008 -0500
47026
47027     generate u-boot.ldr for Blackfin targets
47028
47029     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47030
47031 commit b779f7a59530436040f157f7841db7ab796542df
47032 Author: Mike Frysinger <vapier@gentoo.org>
47033 Date:   Mon Feb 4 19:26:57 2008 -0500
47034
47035     scrub unused symbols
47036
47037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47038
47039 commit cc2977acc3bbbb7850f16645dd1081f95335868d
47040 Author: Mike Frysinger <vapier@gentoo.org>
47041 Date:   Mon Feb 4 19:26:57 2008 -0500
47042
47043     move Blackfin cpu object list to respective cpu directories
47044
47045     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47046
47047 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
47048 Author: Mike Frysinger <vapier@gentoo.org>
47049 Date:   Mon Feb 4 19:26:57 2008 -0500
47050
47051     interface to Blackfin on-chip One-Time-Programmable memory
47052
47053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47054
47055 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
47056 Author: Mike Frysinger <vapier@gentoo.org>
47057 Date:   Mon Feb 4 19:26:56 2008 -0500
47058
47059     add support for memory commands with Blackfin L1 instruction memory
47060
47061     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47062
47063 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
47064 Author: Mike Frysinger <vapier@gentoo.org>
47065 Date:   Mon Feb 4 19:26:56 2008 -0500
47066
47067     use C code rather than inline assembly
47068
47069     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47070
47071 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
47072 Author: Mike Frysinger <vapier@gentoo.org>
47073 Date:   Mon Feb 4 19:26:56 2008 -0500
47074
47075     add Blackfin-specific reginfo command
47076
47077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47078
47079 commit 0858b835e7ea501ea084d34cef75932f098342bb
47080 Author: Mike Frysinger <vapier@gentoo.org>
47081 Date:   Mon Feb 4 19:26:55 2008 -0500
47082
47083     add support for Blackfin symbol prefixes to examples
47084
47085     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47086
47087 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
47088 Author: Mike Frysinger <vapier@gentoo.org>
47089 Date:   Mon Feb 4 19:26:55 2008 -0500
47090
47091     add Blackfin-specific bdinfo command
47092
47093     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47094
47095 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
47096 Author: Mike Frysinger <vapier@gentoo.org>
47097 Date:   Mon Feb 4 19:26:55 2008 -0500
47098
47099     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
47100
47101     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47102
47103 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
47104 Author: Mike Frysinger <vapier@gentoo.org>
47105 Date:   Mon Feb 4 19:26:55 2008 -0500
47106
47107     unify the Blackfin board targets
47108
47109     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47110
47111 commit d4d7730853e5d675f76ec666807da3028c91d592
47112 Author: Mike Frysinger <vapier@gentoo.org>
47113 Date:   Mon Feb 4 19:26:55 2008 -0500
47114
47115     punt Blackfin VDSP headers and import sanitized/auto-generated ones
47116
47117     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47118
47119 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
47120 Author: Mike Frysinger <vapier@gentoo.org>
47121 Date:   Mon Feb 4 19:26:54 2008 -0500
47122
47123     always pull in asm/blackfin.h for Blackfin ports
47124
47125     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47126
47127 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
47128 Author: Mike Frysinger <vapier@gentoo.org>
47129 Date:   Mon Feb 4 19:26:54 2008 -0500
47130
47131     add missing __raw versions of Blackfin read/write io functions
47132
47133     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47134
47135 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
47136 Author: Mike Frysinger <vapier@gentoo.org>
47137 Date:   Mon Feb 4 19:26:54 2008 -0500
47138
47139     add the default Blackfin logo used by Blackfin boards with splash screens
47140
47141     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47142
47143 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
47144 Author: Mike Frysinger <vapier@gentoo.org>
47145 Date:   Mon Feb 4 19:26:54 2008 -0500
47146
47147     add some more Blackfin docs
47148
47149     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47150
47151 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
47152 Author: Mike Frysinger <vapier@gentoo.org>
47153 Date:   Mon Feb 4 19:26:54 2008 -0500
47154
47155     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
47156
47157     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47158
47159 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
47160 Author: Mike Frysinger <vapier@gentoo.org>
47161 Date:   Mon Feb 4 19:26:54 2008 -0500
47162
47163     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
47164
47165     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47166
47167 commit b45264ee85cbd92020640a32e02fb434fd557108
47168 Author: Mike Frysinger <vapier@gentoo.org>
47169 Date:   Mon Feb 4 19:26:53 2008 -0500
47170
47171     add gitignores for Blackfin pieces
47172
47173     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47174
47175 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
47176 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47177 Date:   Fri Jan 18 01:14:03 2008 +0100
47178
47179     TFTP: add host ip addr support
47180
47181     allow to use a different server as set in serverip
47182     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
47183     if not defined the max length will be at 128
47184
47185     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47186
47187 commit e56b4b494cd92def577969f9678395aa22d34c9f
47188 Author: Timur Tabi <timur@freescale.com>
47189 Date:   Wed Jan 9 14:35:26 2008 -0600
47190
47191     85xx,86xx: Determine I2C clock frequencies and store in global_data
47192
47193     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
47194
47195     Update the get_clocks() function in 85xx and 86xx to determine the I2C
47196     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
47197
47198     Signed-off-by: Timur Tabi <timur@freescale.com>
47199
47200 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
47201 Author: Wolfgang Denk <wd@denx.de>
47202 Date:   Thu Dec 27 10:56:54 2007 +0100
47203
47204     OMAP5912: fix FIFO handling in UART driver
47205
47206     According to the OMAP5912 Serial Interfaces Reference Guide (see
47207     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
47208     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
47209     changed when the baud clock is not running, i. e. when both DLL and
47210     DLH are set to 0.
47211
47212     Thus make sure that DLL and DLH are 0 when writing the FCR.
47213
47214     Signed-off-by: Wolfgang Denk <wd@denx.de>
47215
47216 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
47217 Author: Harald Welte <laforge@openmoko.org>
47218 Date:   Wed Dec 19 15:10:52 2007 +0100
47219
47220     ARM: S3C24x0 SoC NAND controller support
47221
47222     This patch adds NAND support to the S3C24x0 SoC code in u-boot
47223
47224     Signed-off-by: Harald Welte <laforge@openmoko.org>
47225
47226 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
47227 Author: Harald Welte <laforge@openmoko.org>
47228 Date:   Wed Dec 19 14:24:40 2007 +0100
47229
47230     ARM: s3c24xx: Multiple serial port support
47231
47232     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
47233
47234     Signed-off-by: Harald Welte <laforge@openmoko.org>
47235
47236 commit a25f72f1f73a11de68251fb88c89991e202e68fa
47237 Author: Harald Welte <laforge@openmoko.org>
47238 Date:   Wed Dec 19 14:16:57 2007 +0100
47239
47240     ARM: arm920t: Allow use of 'gd' pointer from IRQ
47241
47242     This patch allows us to use the 'gd' pointer (and thus environment
47243     and everything else associated with it) from interrupt context on
47244     arm920t.
47245
47246     Signed-off-by: Harald Welte <laforge@openmoko.org>
47247
47248 commit be19bd5cd0f454b63298844a0b5377e029b2caad
47249 Author: Harald Welte <laforge@openmoko.org>
47250 Date:   Wed Dec 19 14:19:38 2007 +0100
47251
47252     ARM: arm920/s3c24xx: IRQ demulitplexer callback
47253
47254     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
47255     plus a stub implementation of it for the S3C2410.
47256
47257     The purpose is to allow arm920t implementations such as the s3c24x0 to
47258     implement interrupt handlers in u-boot without having to touch core
47259     arm920t code.
47260
47261     Signed-off-by: Harald Welte <laforge@openmoko.org>
47262
47263 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
47264 Author: Hebbar <gururajakr@sanyo.co.in>
47265 Date:   Tue Dec 18 16:03:07 2007 -0800
47266
47267     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
47268
47269     Add ifdef to bdinfo command to display ethernet information
47270     only if CONFIG_CMD_NET is defined for arm modules.
47271
47272     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
47273
47274 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
47275 Author: Hebbar <gururajakr@sanyo.co.in>
47276 Date:   Tue Dec 18 16:00:54 2007 -0800
47277
47278     ARM: add I2C init function call in lib_arm/board.c
47279
47280     Adds I2C init func call to init sequence for ARM boards. This is
47281     present in ppc,blackfin and other processor init sequence.
47282
47283     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
47284
47285 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
47286 Author: Stefan Roese <sr@denx.de>
47287 Date:   Fri Feb 1 09:38:29 2008 +0100
47288
47289     ppc4xx: Fix ndfc HW ECC byte order
47290
47291     The current ndfc HW ECC implementation swaps the first two ECC bytes.
47292     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
47293     so this swapping in the HW ECC driver is bogus. This patch fixes this
47294     problem and now really uses the SMC ECC byte order.
47295
47296     Thanks to Sean MacLennan for pointing this out.
47297
47298     Signed-off-by: Stefan Roese <sr@denx.de>
47299
47300 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
47301 Author: Stefan Roese <sr@denx.de>
47302 Date:   Wed Jan 30 15:35:50 2008 +0100
47303
47304     ppc4xx: Fix GPIO configuration for pcs440ep
47305
47306     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
47307     49-63 for GPIO. They have been configured as trace signals. This patch
47308     fixes this by clearing the corresponding bit.
47309
47310     Signed-off-by: Stefan Roese <sr@denx.de>
47311
47312 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
47313 Author: Stefan Roese <sr@denx.de>
47314 Date:   Wed Jan 30 14:48:28 2008 +0100
47315
47316     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
47317
47318     Signed-off-by: Stefan Roese <sr@denx.de>
47319
47320 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
47321 Author: Ladislav Michl <ladis@linux-mips.org>
47322 Date:   Fri Dec 7 00:42:32 2007 +0100
47323
47324     ARM: Board voiceblue update
47325
47326     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47327
47328 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
47329 Author: Ladislav Michl <ladis@linux-mips.org>
47330 Date:   Thu Dec 6 23:24:57 2007 +0100
47331
47332     ARM: AT91RM9200 based boards config cleanup
47333
47334     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47335
47336     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
47337     indentation.
47338
47339 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
47340 Author: Ladislav Michl <ladis@linux-mips.org>
47341 Date:   Thu Dec 6 22:59:16 2007 +0100
47342
47343     ARM: Fix at91rm9200dk base address
47344
47345     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
47346     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
47347     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
47348     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
47349     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
47350     I'm sending this patch 4th (!) time in hope it produces at least some
47351     reaction.
47352
47353     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
47354
47355     Fix at91rm9200dk base and environment address.
47356
47357 commit c95219fae2a7add7daa2f91aedca65b1698465c7
47358 Author: stefano babic <sbabic@denx.de>
47359 Date:   Tue Nov 20 10:40:24 2007 +0100
47360
47361     MMC for PXA 27X (resubmit)
47362
47363     MMC support for X_Scale PXA is broken and does not work.
47364     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
47365     There were already some patches around the world but none of them was
47366     merged into the official u-boot tree.
47367
47368     This patch makes order fixing this issue. Resubmit after code cleanup.
47369
47370     Applied and tested on PXA 270 (TrizepsIV module).
47371
47372     Signed-off-by: Stefano Babic <sbabic@denx.de>
47373
47374 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
47375 Author: stefano babic <sbabic@denx.de>
47376 Date:   Tue Nov 20 10:37:04 2007 +0100
47377
47378     Fix gcc issues in pxa-regs.h
47379
47380     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
47381     issues generates wrong code.
47382     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
47383     This patch fixes the problem and solves the gcc-4 issues as the linux
47384     kernel does.
47385
47386     Signed-off-by: Stefano Babic <sbabic@denx.de>
47387     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
47388
47389 commit 7047b388876e7b905b2ec4edb8010543e3641b85
47390 Author: Jens Gehrlein <sew_s@tqs.de>
47391 Date:   Tue Jan 29 08:45:03 2008 +0100
47392
47393     TQM834x: enable DHCP
47394
47395     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
47396     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47397
47398 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
47399 Author: Jens Gehrlein <sew_s@tqs.de>
47400 Date:   Tue Jan 29 08:45:02 2008 +0100
47401
47402     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
47403
47404     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
47405     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47406
47407 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
47408 Author: Ben Warren <biggerbadderben@gmail.com>
47409 Date:   Sat Jan 26 23:41:19 2008 -0500
47410
47411     Fix conditional compilation of mpx8xxx_spi driver
47412
47413     This driver should only compile if CONFIG_MPC8XXX_SPI is set
47414
47415     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47416     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47417
47418 commit 63f732d3d3880feb531f48af247c025bf01462b0
47419 Author: Rafal Jaworowski <raj@semihalf.com>
47420 Date:   Tue Jan 29 17:00:34 2008 +0100
47421
47422     API: Provide dummy halt() in the glue layer.
47423
47424     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
47425
47426     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
47427
47428 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
47429 Author: Rafal Jaworowski <raj@semihalf.com>
47430 Date:   Tue Jan 29 16:57:38 2008 +0100
47431
47432     API: Convert conditional building to the new scheme.
47433
47434     This fixes a build breakage with CONFIG_API enabled, which appeared after
47435     the recent changes in the U-Boot build system.
47436
47437     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
47438
47439 commit 98b742489c09780be6a832eeaa4e5eff824792bb
47440 Author: Wolfgang Denk <wd@denx.de>
47441 Date:   Fri Jan 25 09:56:17 2008 +0100
47442
47443     inka4x0: remove dead code
47444
47445     Signed-off-by: Wolfgang Denk <wd@denx.de>
47446
47447 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
47448 Author: Becky Bruce <becky.bruce@freescale.com>
47449 Date:   Wed Jan 23 16:31:06 2008 -0600
47450
47451     86xx: Add reginfo command
47452
47453     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47454
47455 commit ddcebcb638715a6278da93b553d5016f99823816
47456 Author: Becky Bruce <becky.bruce@freescale.com>
47457 Date:   Wed Jan 23 16:31:05 2008 -0600
47458
47459     86xx: Add print_laws function to fsl_law.c
47460
47461     This can be used for debug, and will be used by board code
47462     to help implement reginfo.
47463
47464     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47465
47466 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
47467 Author: Becky Bruce <becky.bruce@freescale.com>
47468 Date:   Wed Jan 23 16:31:04 2008 -0600
47469
47470     86xx: Remove old-style law setup code
47471
47472     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
47473
47474     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47475
47476 commit 713d8186649dae874613d495b0cecaa039a98b30
47477 Author: Becky Bruce <becky.bruce@freescale.com>
47478 Date:   Wed Jan 23 16:31:03 2008 -0600
47479
47480     86xx: Convert sbc8641d to use new law setup code.
47481
47482     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47483
47484 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
47485 Author: Becky Bruce <becky.bruce@freescale.com>
47486 Date:   Wed Jan 23 16:31:02 2008 -0600
47487
47488     86xx: Convert mpc8610hpcd to new law setup method.
47489
47490     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47491
47492 commit 4933b91f8a49e436681f163df3173beb91cac44a
47493 Author: Becky Bruce <becky.bruce@freescale.com>
47494 Date:   Wed Jan 23 16:31:01 2008 -0600
47495
47496     86xx: Support new law setup method and convert mpc8641
47497
47498     Adds the support code in cpu/mpc86xx for the new law setup code
47499     recently created fsl_law.c, and changes the MPC8641HPCN config
47500     to use this code.
47501
47502     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47503
47504 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
47505 Author: Becky Bruce <becky.bruce@freescale.com>
47506 Date:   Wed Jan 23 16:31:00 2008 -0600
47507
47508     86xx: Rearrange the sequence in start.S
47509
47510     * split the BAT initialization so that only 2 BATs (for the boot page
47511     and stack) are programmed very early on.  The rest are initialized later.
47512     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
47513     after translation has been enabled.
47514
47515     These changes will facilitate the moving of law and BAT initialization
47516     to C code, and will aid with 36-bit physical addressing support.
47517
47518     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47519
47520 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
47521 Author: Wolfgang Denk <wd@denx.de>
47522 Date:   Wed Jan 23 14:41:37 2008 +0100
47523
47524     Coding Style Cleanup; update CHANGELOG
47525
47526     Signed-off-by: Wolfgang Denk <wd@denx.de>
47527
47528 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
47529 Author: Wolfgang Denk <wd@denx.de>
47530 Date:   Wed Jan 23 14:31:17 2008 +0100
47531
47532     Coding Style Cleanup; update CHANGELOG
47533
47534     Signed-off-by: Wolfgang Denk <wd@denx.de>
47535
47536 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
47537 Author: Dave Liu <r63238@freescale.com>
47538 Date:   Fri Jan 18 10:07:04 2008 +0800
47539
47540     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
47541
47542     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
47543     cause the 83xx immap broken, so the DMA and PCI will
47544     be failed.
47545
47546     The patch fix the struct spi8xxx and rm struct spi83xx.
47547
47548     Signed-off-by: Dave Liu <daveliu@freescale.com>
47549     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47550
47551 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
47552 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47553 Date:   Sat Apr 14 17:11:49 2007 +0200
47554
47555     AVR32: ATNGW100 board support
47556
47557     Add support for the ATNGW100 Network Gateway reference design,
47558     including flash, ethernet and MMC support.
47559
47560     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47561
47562 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
47563 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47564 Date:   Sat Nov 24 18:15:31 2007 +0100
47565
47566     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
47567
47568     I don't know why the relevant layers can't do this by itself, but this
47569     is what ppc does.
47570
47571     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47572
47573 commit 799891ef7b1b3432032ec23466df6b665a797fa4
47574 Author: Michael Schwingen <michael@schwingen.org>
47575 Date:   Fri Jan 18 00:04:28 2008 +0100
47576
47577     Add AcTux board support
47578
47579     Hi,
47580
47581     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
47582     files that
47583     contain changes for multiple boards, the board-specific files follow as
47584     separate patches.
47585
47586     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47587
47588 commit 66a4344a4d910a11125df7768899ad529719855e
47589 Author: Michael Schwingen <michael@schwingen.org>
47590 Date:   Wed Jan 16 19:53:23 2008 +0100
47591
47592     add AcTux-4 board support
47593
47594     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47595
47596 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
47597 Author: Michael Schwingen <michael@schwingen.org>
47598 Date:   Wed Jan 16 19:51:55 2008 +0100
47599
47600     add AcTux-3 board support
47601
47602     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47603
47604 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
47605 Author: Michael Schwingen <michael@schwingen.org>
47606 Date:   Wed Jan 16 19:51:14 2008 +0100
47607
47608     add AcTux-2 board support
47609
47610     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47611
47612 commit ea99e8f05b7240fd657739e286664664ae160abe
47613 Author: Michael Schwingen <michael@schwingen.org>
47614 Date:   Wed Jan 16 19:50:37 2008 +0100
47615
47616     add AcTux-1 board support
47617
47618     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47619
47620 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
47621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47622 Date:   Mon Jan 14 19:20:08 2008 +0100
47623
47624     ARM: remove useless function board_post_init
47625
47626     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47627
47628 commit 96bd462942022e4569b582c072a0ed26de1cd19b
47629 Author: Michael Schwingen <michael@schwingen.org>
47630 Date:   Thu Jan 10 14:59:46 2008 +0100
47631
47632     IXP: enable RTS
47633
47634     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
47635     No handshaking is done, but the active RTS signal allows to
47636     connect to the target using a PC which is using RTS/CTS
47637     handshake, and does no harm if the PC is set to ignore RTS.
47638
47639     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47640
47641 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
47642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47643 Date:   Mon Jan 7 08:41:34 2008 +0100
47644
47645     IXP: add dynamic microcode addr
47646
47647     allow to load the microde from flash or ram by download it through
47648     the serial or other.
47649
47650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47651     Acked-by: Stefan Roese <sr@denx.de>
47652
47653 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
47654 Author: Michael Schwingen <michael@schwingen.org>
47655 Date:   Sat Nov 10 15:44:12 2007 +0100
47656
47657     load ixp42x NPE firmware from separate flash block, remove dead code
47658
47659     Hi,
47660
47661     the following patch adds support to move the IXP42X NPE firmware to a
47662     separate flash block, whose start address is defined in
47663     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
47664     NPE-enabled u-boot without copyright problems due to the NPE firmware.
47665
47666     I hope the patch applies, I get whitespace-related differences in the NPE
47667     files due to trailing whitespace in the original versions.
47668
47669     Signed-off-by: Michael Schwingen <michael@schwingen.org>
47670     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47671
47672 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
47673 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47674 Date:   Tue Jan 15 14:15:46 2008 -0600
47675
47676     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
47677
47678     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47679     Signed-off by: John Rigby <jrigby@freescale.com>
47680
47681 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
47682 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47683 Date:   Tue Jan 15 14:02:49 2008 -0600
47684
47685     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
47686
47687     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47688     Signed-off by: John Rigby <jrigby@freescale.com>
47689
47690 commit 777d1abd9796f1c2e148417cc10657e847d318ce
47691 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47692 Date:   Tue Jan 15 14:00:25 2008 -0600
47693
47694     ColdFire: Add MCF547x_8x FEC driver
47695
47696     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47697     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47698     Signed-off by: John Rigby <jrigby@freescale.com>
47699
47700 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
47701 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47702 Date:   Tue Jan 15 13:54:09 2008 -0600
47703
47704     ColdFire: Add MCF547x_8x dma code and header files
47705
47706     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47707     Signed-off by: John Rigby <jrigby@freescale.com>
47708
47709 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
47710 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47711 Date:   Tue Jan 15 13:52:03 2008 -0600
47712
47713     ColdFire: Add MCF547x_8x dma code - 2
47714
47715     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47716     Signed-off by: John Rigby <jrigby@freescale.com>
47717
47718 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
47719 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47720 Date:   Tue Jan 15 13:48:52 2008 -0600
47721
47722     ColdFire: Add MCF547x_8x dma code - 1
47723
47724     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47725     Signed-off by: John Rigby <jrigby@freescale.com>
47726
47727 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
47728 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47729 Date:   Tue Jan 15 13:39:44 2008 -0600
47730
47731     ColdFire: Add MCF547x_8x related header files
47732
47733     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47734     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47735     Signed-off by: John Rigby <jrigby@freescale.com>
47736
47737 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
47738 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47739 Date:   Tue Jan 15 13:37:34 2008 -0600
47740
47741     ColdFire: Add MCF547x_8x cpu arch
47742
47743     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47744     Signed-off by: John Rigby <jrigby@freescale.com>
47745
47746 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
47747 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47748 Date:   Mon Jan 14 17:47:23 2008 -0600
47749
47750     ColdFire: Add MCF5227x cpu and M52277EVB support-3
47751
47752     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47753     Signed-off by: John Rigby <jrigby@freescale.com>
47754
47755 commit c87581027994c148131b2f11aa75501f782ec19a
47756 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47757 Date:   Mon Jan 14 17:46:19 2008 -0600
47758
47759     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
47760
47761     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47762     Signed-off by: John Rigby <jrigby@freescale.com>
47763
47764 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
47765 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47766 Date:   Mon Jan 14 17:43:33 2008 -0600
47767
47768     ColdFire: Add MCF5227x cpu and M52277EVB support-1
47769
47770     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47771     Signed-off by: John Rigby <jrigby@freescale.com>
47772
47773 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
47774 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47775 Date:   Mon Jan 14 17:35:44 2008 -0600
47776
47777     ColdFire: Fix CFI Flash low level Read/Write macro
47778
47779     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47780     Signed-off by: John Rigby <jrigby@freescale.com>
47781
47782 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
47783 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47784 Date:   Mon Jan 14 17:23:08 2008 -0600
47785
47786     ColdFire: Add M5373EVB platform support - 2
47787
47788     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47789     Signed-off by: John Rigby <jrigby@freescale.com>
47790
47791 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
47792 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47793 Date:   Mon Jan 14 17:19:54 2008 -0600
47794
47795     ColdFire: Add M5373EVB platform support - 1
47796
47797     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47798     Signed-off by: John Rigby <jrigby@freescale.com>
47799
47800 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
47801 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47802 Date:   Mon Jan 14 17:17:03 2008 -0600
47803
47804     ColdFire: Update FlexBus CS for MCF532x
47805
47806     Definition update and change from 16bit to 32bit
47807
47808     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47809     Signed-off by: John Rigby <jrigby@freescale.com>
47810
47811 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
47812 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47813 Date:   Mon Jan 14 17:11:47 2008 -0600
47814
47815     ColdFire: PCI and misc updates for MCF5445x
47816
47817     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47818     Signed-off by: John Rigby <jrigby@freescale.com>
47819
47820 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
47821 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47822 Date:   Mon Jan 14 17:06:55 2008 -0600
47823
47824     ColdFire: MCF5445x header files cleanup
47825
47826     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47827     Signed-off by: John Rigby <jrigby@freescale.com>
47828
47829 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
47830 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47831 Date:   Mon Jan 14 16:59:42 2008 -0600
47832
47833     ColdFire: MCF532x header files cleanup
47834
47835     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47836     Signed-off by: John Rigby <jrigby@freescale.com>
47837
47838 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
47839 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47840 Date:   Mon Jan 14 15:30:15 2008 -0600
47841
47842     ColdFire: Add modules header files
47843
47844     Add CF specific modules header files
47845
47846     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47847     Signed-off-by: John Rigby <jrigby@freescale.com>
47848
47849 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
47850 Author: Kim Phillips <kim.phillips@freescale.com>
47851 Date:   Thu Jan 17 12:48:00 2008 -0600
47852
47853     codingstyle cleanup for spi driver
47854
47855     ..and rm unused CONFIG_FSL_SPI define
47856
47857     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47858
47859 commit d59feffb42c9f174116db7a82a311df98983dfce
47860 Author: Haiying Wang <Haiying.Wang@freescale.com>
47861 Date:   Wed Jan 16 17:12:12 2008 -0500
47862
47863     FSL: Fix common EEPROM_data structure definition
47864
47865     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
47866     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
47867       bd->bi_ethaddr.
47868
47869     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
47870
47871 commit 6bee764bd6da510a4aad614880300c968bc7318d
47872 Author: Timur Tabi <timur@freescale.com>
47873 Date:   Wed Jan 16 15:48:12 2008 -0600
47874
47875     86xx: enable command-line editing
47876
47877     Enable command-line editing for all MPC86xx boards.
47878
47879     Signed-off-by: Timur Tabi <timur@freescale.com>
47880
47881 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
47882 Author: Ben Warren <biggerbadderben@gmail.com>
47883 Date:   Wed Jan 16 22:37:42 2008 -0500
47884
47885     Implement hard SPI driver on MPC8349EMDS
47886
47887     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
47888     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
47889
47890     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47891     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47892
47893 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
47894 Author: Ben Warren <biggerbadderben@gmail.com>
47895 Date:   Wed Jan 16 22:37:35 2008 -0500
47896
47897     Add support for a Freescale non-CPM SPI controller
47898
47899     This patch adds support for the SPI controller found on Freescale PowerPC
47900     processors such as the MCP834x family.  Additionally, a new config option,
47901     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
47902
47903     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47904     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47905
47906 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
47907 Author: Dave Liu <r63238@freescale.com>
47908 Date:   Thu Jan 17 18:23:19 2008 +0800
47909
47910     mpc83xx: Fix the fatal conflict of merge
47911
47912     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
47913     will cause the mpc8315erdb board can't boot up.
47914
47915     The patch fix that bug, and remove the duplicated #ifdef
47916     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
47917     MPC8313E processor.
47918
47919     Signed-off-by: Dave Liu <daveliu@freescale.com>
47920     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47921
47922 commit 3259eeaa4148125a81417477f62c05bd67f60587
47923 Author: Larry Johnson <lrj@acm.org>
47924 Date:   Thu Jan 17 08:50:09 2008 -0500
47925
47926     Merge Sequoia beautification into Korat code
47927
47928     Signed-off-by: Larry Johnson <lrj@acm.org>
47929
47930 commit e16925773211291b562e77187061e9dd1d757217
47931 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47932 Date:   Thu Jan 17 07:45:05 2008 +0100
47933
47934     net: add 'ethrotate' environment variable
47935
47936     [PATCH] net: add 'ethrotate' environment variable
47937
47938     This patch replaces the buildtime configuration option
47939     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
47940     configuration veriable. See README.
47941
47942     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47943     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47944
47945 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
47946 Author: Stefan Roese <sr@denx.de>
47947 Date:   Thu Jan 17 14:29:04 2008 +0100
47948
47949     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
47950
47951     Signed-off-by: Stefan Roese <sr@denx.de>
47952
47953 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
47954 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47955 Date:   Thu Jan 17 18:07:32 2008 +0900
47956
47957     sh: Remove CONFIG_COMMANDS from MS7720SE config file
47958
47959     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47960
47961 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
47962 Author: Niklaus Giger <niklaus.giger@netstal.com>
47963 Date:   Wed Jan 16 18:39:20 2008 +0100
47964
47965     ppc4xx: Netstal HCU4 board: added various fixes and POST
47966
47967     - Moved some common code to netstal/common/nm_bsp.c.
47968     - sdram initialisation goes go netstal/common/fixed_sdram.c.
47969     - Added support for POST.
47970     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
47971
47972     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47973
47974 commit 69b0634a4ee98c9791815600d43b99f626a952f3
47975 Author: Niklaus Giger <niklaus.giger@netstal.com>
47976 Date:   Thu Jan 17 12:53:56 2008 +0100
47977
47978     ppc4xx: netstal/common define routines used by all boards
47979
47980     Added some routines used by all Netstal boards:
47981     - nm_bsp.c: - nm_show_print and
47982             -  common_misc_init_r
47983             - set_params_for_sw_install. Very specific code to handle our SW
47984               installation procedure
47985     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
47986       to handle sdram initialization.
47987     - nm.h: Common header
47988
47989     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47990
47991 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
47992 Author: Niklaus Giger <niklaus.giger@netstal.com>
47993 Date:   Wed Jan 16 18:39:18 2008 +0100
47994
47995     ppc4xx: Netstal HCU5 board: added various fixes and POST
47996
47997     - Moved some common code to nestal/common/nm_bsp.c.
47998     - Added support for the vxWorks EDR.
47999     - Enable trace for Lauterbach, if present.
48000     - Added support for POST.
48001     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
48002
48003     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48004
48005 commit 4371090e5da77edc7bf9f296364db4801639d9c4
48006 Author: Niklaus Giger <niklaus.giger@netstal.com>
48007 Date:   Wed Jan 16 18:39:08 2008 +0100
48008
48009     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
48010
48011     - Various fixes
48012     - Reduced rom_size from 384 to 320 kB
48013     - Environment is now in flash
48014     - Added POST
48015     - Support for OF
48016
48017     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48018
48019 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
48020 Author: Niklaus Giger <niklaus.giger@netstal.com>
48021 Date:   Wed Jan 16 18:37:50 2008 +0100
48022
48023     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
48024
48025     - Various fixes
48026     - Reduced rom_size from 384 to 320 kB
48027     - Environment is now in flash
48028     - Added POST
48029     - Support for OF
48030
48031     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48032
48033 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
48034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48035 Date:   Thu Jan 17 10:53:08 2008 +0100
48036
48037     ppc4xx: Complete DU440 board support
48038
48039     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48040
48041 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
48042 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48043 Date:   Thu Jan 17 10:52:30 2008 +0100
48044
48045     ppc4xx: Add DU440 board support
48046
48047     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48048
48049 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
48050 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48051 Date:   Thu Jan 17 15:53:52 2008 +0900
48052
48053     sh: Update SuperH SCIF driver
48054
48055     This patch fixed wrong SH7720 CPU macro and changed macro that
48056     calculated value of SCBRR register.
48057
48058     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48059
48060 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
48061 Author: Grzegorz Bernacki <gjb@semihalf.com>
48062 Date:   Wed Jan 16 15:12:47 2008 +0100
48063
48064     Set ips dividor to 1/4 of csb clock.
48065
48066     Previous setting cause ips clock to be out of spec. This bug was found by John
48067     Rigby from Freescale.
48068
48069     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48070
48071 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
48072 Author: Kumar Gala <galak@kernel.crashing.org>
48073 Date:   Thu Jan 17 02:19:18 2008 -0600
48074
48075     85xx: Get ride of old TLB setup code
48076
48077     Now that all boards have been converted, remove old config code and the
48078     config option for the new style.
48079
48080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48081
48082 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
48083 Author: Kumar Gala <galak@kernel.crashing.org>
48084 Date:   Thu Jan 17 02:02:10 2008 -0600
48085
48086     85xx: Convert TQM85xx to new TLB setup
48087
48088     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48089
48090 commit 74121b470c14f7eaf284ee838bffca6f9521069e
48091 Author: Kumar Gala <galak@kernel.crashing.org>
48092 Date:   Thu Jan 17 01:56:32 2008 -0600
48093
48094     85xx: Convert STXGP3 & STXSSA to new TLB setup
48095
48096     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48097
48098 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
48099 Author: Kumar Gala <galak@kernel.crashing.org>
48100 Date:   Thu Jan 17 01:44:34 2008 -0600
48101
48102     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
48103
48104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48105
48106 commit 818218bac6a11591e2542c344d2330e0f4e1968b
48107 Author: Kumar Gala <galak@kernel.crashing.org>
48108 Date:   Thu Jan 17 01:31:34 2008 -0600
48109
48110     85xx: Convert PM854/PM856 to new TLB setup
48111
48112     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48113
48114 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
48115 Author: Kumar Gala <galak@kernel.crashing.org>
48116 Date:   Thu Jan 17 01:25:33 2008 -0600
48117
48118     85xx: Convert MPC8540EVAL to new TLB setup
48119
48120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48121
48122 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
48123 Author: Kumar Gala <galak@kernel.crashing.org>
48124 Date:   Thu Jan 17 01:12:22 2008 -0600
48125
48126     85xx: Convert MPC8568 MDS to new TLB setup
48127
48128     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48129
48130 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
48131 Author: Kumar Gala <galak@kernel.crashing.org>
48132 Date:   Thu Jan 17 01:01:09 2008 -0600
48133
48134     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
48135
48136     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48137
48138 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
48139 Author: Kumar Gala <galak@kernel.crashing.org>
48140 Date:   Thu Jan 17 00:52:29 2008 -0600
48141
48142     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
48143
48144     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48145
48146 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
48147 Author: Kumar Gala <galak@kernel.crashing.org>
48148 Date:   Thu Jan 17 00:32:17 2008 -0600
48149
48150     85xx: Convert ATUM8548 to new TLB setup
48151
48152     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48153
48154 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
48155 Author: Kumar Gala <galak@kernel.crashing.org>
48156 Date:   Wed Jan 16 23:11:57 2008 -0600
48157
48158     85xx: Convert MPC8544 DS to new TLB setup
48159
48160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48161
48162 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
48163 Author: Kumar Gala <galak@kernel.crashing.org>
48164 Date:   Wed Jan 16 22:38:34 2008 -0600
48165
48166     85xx: Reworked initial processor init
48167
48168     Reworked the initial processor initialzation sequence:
48169     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
48170     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
48171     * Reworked initial asm code to do most of the core init before TLBs
48172
48173     The main reasons for these changes are to allow handling of 36-bit phys
48174     addresses in the future and some of the issues that will exist when we
48175     do that.
48176
48177     There are a few caveats on what can be initialized via the LAW and TLB
48178     static tables:
48179     * TLB entry 14/15 can't be initialized via the TLB table
48180     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
48181       the code that is currently executing.
48182
48183     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48184
48185 commit 44a23cfd6360a68eaa41f945190618a55519eac3
48186 Author: Kumar Gala <galak@kernel.crashing.org>
48187 Date:   Wed Jan 16 22:33:22 2008 -0600
48188
48189     85xx: Introduce new tlb API
48190
48191     Add a set of functions to manipulate TLB entries:
48192      * set_tlb() - write a tlb entry
48193      * invalidate_tlb() - invalidate a tlb array
48194      * disable_tlb() - disable a variable size tlb entry
48195      * init_tlbs() - setup initial tlbs based on static table
48196
48197     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48198
48199 commit be88b1699863c262818f3af7f60173b4d48df8fc
48200 Author: Stefan Roese <sr@denx.de>
48201 Date:   Thu Jan 17 07:50:17 2008 +0100
48202
48203     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
48204
48205     Signed-off-by: Stefan Roese <sr@denx.de>
48206
48207 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
48208 Author: Kumar Gala <galak@kernel.crashing.org>
48209 Date:   Wed Jan 16 10:04:42 2008 -0600
48210
48211     85xx: Use proper defines for PCI addresses
48212
48213     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
48214     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
48215     be used for configuring the PCI ATMU.
48216
48217     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48218
48219 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
48220 Author: Kumar Gala <galak@kernel.crashing.org>
48221 Date:   Wed Jan 16 09:22:29 2008 -0600
48222
48223     85xx: Remove old style of LAW init
48224
48225     All boards are now using the new fsl_law code so we can drop the old version.
48226
48227     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48228
48229 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
48230 Author: Kumar Gala <galak@kernel.crashing.org>
48231 Date:   Wed Jan 16 09:15:29 2008 -0600
48232
48233     85xx: convert remaining 85xx boards over to use new LAW init code
48234
48235     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
48236     to use new LAW init code.
48237
48238     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48239
48240 commit 572b13afc42710f2957c382a710360429c0e099b
48241 Author: Kumar Gala <galak@kernel.crashing.org>
48242 Date:   Wed Jan 16 09:11:53 2008 -0600
48243
48244     85xx: convert STXGP3/STXSSA over to use new LAW init code
48245
48246     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48247
48248 commit 45f2166ac0233a9263058378f39612bd11f61196
48249 Author: Kumar Gala <galak@kernel.crashing.org>
48250 Date:   Wed Jan 16 09:06:48 2008 -0600
48251
48252     85xx: convert PM854/PM856 over to use new LAW init code
48253
48254     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48255
48256 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
48257 Author: Kumar Gala <galak@kernel.crashing.org>
48258 Date:   Wed Jan 16 09:05:27 2008 -0600
48259
48260     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
48261
48262     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48263
48264 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
48265 Author: Kumar Gala <galak@kernel.crashing.org>
48266 Date:   Wed Jan 16 01:45:10 2008 -0600
48267
48268     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
48269
48270     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48271
48272 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
48273 Author: Kumar Gala <galak@kernel.crashing.org>
48274 Date:   Wed Jan 16 01:32:06 2008 -0600
48275
48276     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
48277
48278     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48279
48280 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
48281 Author: Kumar Gala <galak@kernel.crashing.org>
48282 Date:   Wed Jan 16 01:16:16 2008 -0600
48283
48284     85xx: convert MPC8544 DS over to use new LAW init code
48285
48286     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48287
48288 commit 83d40dfd79fe868796275802f60116d84b9e4395
48289 Author: Kumar Gala <galak@kernel.crashing.org>
48290 Date:   Wed Jan 16 01:13:58 2008 -0600
48291
48292     85xx: Move LAW init code into C
48293
48294     Move the initialization of the LAWs into C code and provide an API
48295     to allow modification of LAWs after init.
48296
48297     Board code is responsible to provide a law_table and num_law_entries.
48298
48299     We should be able to use the same code on 86xx as well.
48300
48301     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48302
48303 commit bed8ce838a609aaab136d43b25e6df2a520bc854
48304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48305 Date:   Sat Dec 22 15:03:12 2007 +0100
48306
48307     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
48308
48309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48310
48311 commit 0764c164fed6277d359cf132d55187ea34290114
48312 Author: Vlad Lungu <vlad@comsys.ro>
48313 Date:   Wed Jan 16 19:27:51 2008 +0200
48314
48315     MIPS:Target support for qemu -M mips
48316
48317     With serial, NE2000, IDE support. Tested in big-endian mode.
48318     Memory size hard-coded to 128M for now, so don't play with
48319     the -m option.
48320
48321     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48322
48323 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
48324 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48325 Date:   Fri Jan 11 00:01:37 2008 +0100
48326
48327     Fix nfs command help to reflect that the serverip is optional
48328
48329     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48330     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48331
48332 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
48333 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48334 Date:   Mon Dec 10 22:32:14 2007 +0100
48335
48336     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
48337
48338     and move is_valid_ether_addr board file
48339
48340     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48341     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48342
48343 commit c2f896b8fc4722e36915903e1942e138e68ce804
48344 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48345 Date:   Wed Jan 16 16:13:31 2008 +0900
48346
48347     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
48348
48349     rx_status on the memory is basically in LE, but needs to be handled in CPU
48350     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
48351     it'll work fine.
48352
48353     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48354     Cc: Masami Komiya <mkomiya@sonare.it>
48355     Cc: Lucas Jin <lucasjin@gmail.com>
48356     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48357
48358 commit 96a236746fe6a7b84802afb4ed31536696d34812
48359 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48360 Date:   Wed Jan 16 16:12:26 2008 +0900
48361
48362     drivers/net/rtl8139.c: Fix cache coherency issues
48363
48364     Current driver is meant for cache coherent systems. This patch adds
48365     flush_cache() routines to support cache non-coherent systems.
48366
48367     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48368     Cc: Masami Komiya <mkomiya@sonare.it>
48369     Cc: Lucas Jin <lucasjin@gmail.com>
48370     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48371
48372 commit d1276c76c1e2b5035296689280ba1acb2c425104
48373 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48374 Date:   Wed Jan 16 16:11:14 2008 +0900
48375
48376     drivers/net/rtl8139.c: Fix tx timeout
48377
48378     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
48379     does, the condition "(currticks() < to)" becomes invalid and immediately
48380     leads to tx timeout error. This patch introduces the fine-graded udely(10)
48381     loops to ease the impact of wrapping around.
48382
48383     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48384     Cc: Masami Komiya <mkomiya@sonare.it>
48385     Cc: Lucas Jin <lucasjin@gmail.com>
48386     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48387
48388 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
48389 Author: Dave Liu <r63238@freescale.com>
48390 Date:   Fri Jan 11 18:45:28 2008 +0800
48391
48392     TSEC: Add the support for RealTek RTL8211B PHY
48393
48394     Add the support of RealTek RTL8211B PHY, the RTL8211B
48395     PHY only supports RGMII and MII mode.
48396
48397     Signed-off-by: Dave Liu <daveliu@freescale.com>
48398     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48399
48400 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
48401 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48402 Date:   Wed Jan 16 09:40:41 2008 +0100
48403
48404     Remove annoying debug printout for PHY less boards.
48405
48406     PHY less board prints out lots of "read wrong ...":
48407     read wrong value : mii_id 3,mii_reg 2, base e0102320
48408     read wrong value : mii_id 3,mii_reg 3, base e0102320
48409     UEC: PHY is Generic MII (ffffffff)
48410     read wrong value : mii_id 3,mii_reg 4, base e0102320
48411     read wrong value : mii_id 3,mii_reg 0, base e0102320
48412     read wrong value : mii_id 3,mii_reg 1, base e0102320
48413     read wrong value : mii_id 3,mii_reg 1, base e0102320
48414     read wrong value : mii_id 3,mii_reg 5, base e0102320
48415     read wrong value : mii_id 3,mii_reg 1, base e0102320
48416     read wrong value : mii_id 3,mii_reg 1, base e0102320
48417     read wrong value : mii_id 3,mii_reg 5, base e0102320
48418     FSL UEC0: Full Duplex
48419     FSL UEC0: Speed 100BT
48420     FSL UEC0: Link is up
48421     Using FSL UEC0 device
48422
48423     Make this printout depend on UEC_VERBOSE_DEBUG and
48424     remove its definition in uec_phy.c
48425
48426     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48427     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48428
48429 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
48430 Author: Kim Phillips <kim.phillips@freescale.com>
48431 Date:   Tue Jan 15 14:11:00 2008 -0600
48432
48433     net: reduce boot latency on QE UEC based boards
48434
48435     actually polling for PHY autonegotiation to finish enables us to remove the
48436     5 second boot prompt latency present on QE based boards.
48437
48438     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
48439     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
48440     code shamelessly stolen from tsec driver.
48441
48442     also rm unused CONFIG_RMII_MODE code.
48443
48444     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48445     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48446     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48447
48448 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
48449 Author: michael.firth@bt.com <michael.firth@bt.com>
48450 Date:   Wed Jan 16 11:40:51 2008 +0000
48451
48452     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
48453
48454     The current TSEC driver limits MDIO access to the devices that have been configured as attached
48455     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
48456
48457     Signed-off-by: Michael Firth <michael.firth@bt.com>
48458     Acked-by: Andy Fleming <afleming@freescale.com>
48459     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48460
48461 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
48462 Author: Kim Phillips <kim.phillips@freescale.com>
48463 Date:   Wed Jan 16 00:38:05 2008 -0600
48464
48465     Add support for the MPC837xERDB
48466
48467     MPC837xERDB board support includes:
48468     * DDR2 330MHz hardcoded (soldered on the board)
48469     * Local Bus NOR Flash
48470     * I2C, UART and RTC
48471     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
48472     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
48473     *                  load)
48474
48475     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
48476     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
48477     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48478
48479 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
48480 Author: Kim Phillips <kim.phillips@freescale.com>
48481 Date:   Wed Jan 16 12:06:16 2008 -0600
48482
48483     mpc83xx: add support for more system clock performance controls
48484
48485     System registers that are modified are the Arbiter Configuration
48486     Register (ACR), the System Priority Control Register (SPCR), and the
48487     System Clock Configuration Register (SCCR).
48488
48489     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
48490     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
48491     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48492
48493 commit 16c3cde050e2d243e62b37486f1558570787beb8
48494 Author: James Yang <james.yang@freescale.com>
48495 Date:   Wed Jan 16 11:58:08 2008 -0600
48496
48497     FSL: Generalize PIXIS reset command parsing.
48498
48499     Before, the order of arguments to the pixis_reset
48500     command needed to be supplied in a hard-coded order.
48501     Generalize the command parsing to allow any order.
48502
48503     Signed-off-by: James Yang <james.yang@freescale.com>
48504     Acked-by: Jon Loeliger <jdl@freescale.com>
48505
48506 commit ad8f8687b78c3e917b173f038926695383c55555
48507 Author: Jon Loeliger <jdl@freescale.com>
48508 Date:   Tue Jan 15 13:42:41 2008 -0600
48509
48510     FSL: Convert board/freescale/common/Makefile to use CONFIG_
48511
48512     Convert the board/freescale/common/Makefile to use
48513     CONFIG_* options to select which files to conditionally
48514     compile into the board/freescale/common library rather
48515     than conditionally compiling entire files.
48516
48517     Now handles::
48518         CONFIG_FSL_PIXIS
48519         CONFIG_FSL_DIU_FB
48520         CONFIG_PQ_MDS_PIB
48521
48522     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
48523
48524     Signed-off-by: Jon Loeliger <jdl@freescale.com>
48525
48526 commit 7c2221eb230372a9e537c4f6636b147b0909325f
48527 Author: Roy Zang <tie-fei.zang@freescale.com>
48528 Date:   Tue Jan 15 16:38:38 2008 +0800
48529
48530     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
48531
48532     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
48533     Remove unused ethernet CONFIG_ options.
48534
48535     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48536     Acked-by: Jon Loeliger <jdl@freescale.com>
48537
48538 commit 711a7946277d2e29af481011e8635e9975c54e45
48539 Author: Kim Phillips <kim.phillips@freescale.com>
48540 Date:   Tue Jan 15 14:05:14 2008 -0600
48541
48542     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
48543
48544     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
48545
48546     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48547
48548 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
48549 Author: Kim Phillips <kim.phillips@freescale.com>
48550 Date:   Tue Jan 15 09:51:12 2008 -0600
48551
48552     mpc83xx: clean up mpc8360emds.c warnings
48553
48554     mpc8360emds.c: In function 'ft_board_setup':
48555     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
48556     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
48557     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
48558     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
48559     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
48560     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
48561
48562     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48563
48564 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
48565 Author: Kim Phillips <kim.phillips@freescale.com>
48566 Date:   Mon Jan 14 16:14:46 2008 -0600
48567
48568     mpc83xx: fix phy-connection-type fixup code
48569
48570     use tree passed to us in local blob, not global fdt.
48571
48572     Also use fdt_path_offset to convert to relative offset, since absolute
48573     reference is needed to check for rgmii-id mode string value.
48574
48575     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48576
48577 commit 2b4c952be7c4357a13e839d48df80853820c33eb
48578 Author: Kumar Gala <galak@kernel.crashing.org>
48579 Date:   Mon Jan 14 09:01:40 2008 -0600
48580
48581     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
48582
48583     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48584     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48585
48586 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
48587 Author: Poonam Aggrwal <b10812@freescale.com>
48588 Date:   Mon Jan 14 09:41:14 2008 +0530
48589
48590     Changes in uboot DDR configuration for MPC8313eRDB
48591
48592     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
48593     DDR configuration in u-boot code. Some are related to performance, some
48594     affect stability and some correct few basic errors in the current
48595     configuration.
48596
48597     The changes have been tested and found to give better memory latency
48598     figures on MPC8313eRDB.LMBench figures prove it.
48599
48600     The changes are:
48601
48602     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
48603       (this may improve performance for application with many read
48604       or write to open pages).
48605     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
48606       001 (activating all the CS when only one is used may cause
48607       unwanted noise on the system)
48608
48609     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
48610       Tras=45ns)
48611     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
48612
48613     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
48614       comply with the 3 ODT clk requirements)
48615     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
48616     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
48617
48618     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
48619     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
48620
48621     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
48622     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
48623
48624     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
48625     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
48626
48627     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
48628     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
48629     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
48630     Cc: Josep P J <PJ.Joseph@freescale.com>
48631     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48632
48633 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
48634 Author: Jerry Van Baren <gvb.uboot@gmail.com>
48635 Date:   Sat Jan 12 13:24:14 2008 -0500
48636
48637     Enable the isdram command on the MPC8360EMDS board
48638
48639     The isdram command prints out decoded information the "serial presence
48640     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
48641     debugging memory configuration problems.
48642
48643     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
48644     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48645
48646 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
48647 Author: Dave Liu <r63238@freescale.com>
48648 Date:   Fri Jan 11 18:48:24 2008 +0800
48649
48650     mpc83xx: Add the support for MPC8315ERDB board
48651
48652     The features list:
48653     - Boot from NOR Flash
48654     - DDR2 266MHz hardcoded configuration
48655     - Local bus NOR Flash R/W operation
48656     - I2C, UART, MII and RTC
48657     - eTSEC0/1 support
48658     - PCI host
48659
48660     Signed-off-by: Dave Liu <daveliu@freescale.com>
48661     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48662
48663 commit b05884efa614e4d8a9413158fc228e0dc02ab704
48664 Author: Dave Liu <r63238@freescale.com>
48665 Date:   Fri Jan 11 18:46:50 2008 +0800
48666
48667     mpc83xx: Add config of eTSEC emergency priority in SPCR
48668
48669     The TSEC emergency priority definition of 831x/837x
48670     is different than the definition of 834x in SPCR register.
48671
48672     Add the other config of TSEC emergency priority into
48673     cpu_init.c
48674
48675     Signed-off-by: Dave Liu <daveliu@freescale.com>
48676     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48677
48678 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
48679 Author: Dave Liu <r63238@freescale.com>
48680 Date:   Fri Jan 11 18:42:19 2008 +0800
48681
48682     mpc83xx: Remove cache config from MPC8360ERDK.h
48683
48684     The MPC8360ERDK board support patch is added before
48685     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
48686     so, miss clean up it.
48687
48688     The patch clean up the miss cache config.
48689
48690     Signed-off-by: Dave Liu <daveliu@freescale.com>
48691     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48692
48693 commit cd9d23053d435c08fc8695017b5cb9003fcda786
48694 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
48695 Date:   Mon Jan 14 23:09:32 2008 +0300
48696
48697     nand: FSL UPM NAND driver
48698
48699     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
48700
48701 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
48702 Author: Kyungmin Park <kmpark@infradead.org>
48703 Date:   Tue Jan 15 08:59:44 2008 +0900
48704
48705     OneNAND: Separate U-Boot dependent code from OneNAND
48706
48707     OneNAND: Separate U-Boot dependent code from OneNAND
48708
48709     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
48710
48711 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
48712 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48713 Date:   Wed Jan 16 10:33:46 2008 +0100
48714
48715     ppc4xx: Sequoia coding style cleanup and beautification
48716
48717     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48718
48719 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
48720 Author: Larry Johnson <lrj@acm.org>
48721 Date:   Tue Jan 15 14:35:58 2008 -0500
48722
48723     ppc4xx: Refactor ECC POST for AMCC Denali core
48724
48725     The ECC POST reported intermittent failures running after power-up on
48726     the Korat PPC440EPx board.  Even when the test passed, the debugging
48727     output occasionally reported additional unexpected ECC errors.
48728
48729     This refactoring has three main objectives: (1) minimize the code
48730     executed with ECC enabled during the tests, (2) add more checking of the
48731     results so any unexpected ECC errors would cause the test to fail, and
48732     (3) use synchronization (only) where required by the processor.
48733
48734     Signed-off-by: Larry Johnson <lrj@acm.org>
48735
48736 commit 2465665b73ac2f688af945b1ed510752afa816a4
48737 Author: David Saada <David.Saada@ecitele.com>
48738 Date:   Tue Jan 15 10:40:24 2008 +0200
48739
48740     QE UEC: Extend number of supported UECs to 4
48741
48742     This patch extends the number of supported UECs to 4. Note that the
48743     problem of QE thread resources exhaustion is resolved by setting the
48744     correct number of QE threads according to Ethernet type (GBE or FE).
48745
48746     Signed-off-by: David Saada <david.saada@ecitele.com>
48747     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48748
48749 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
48750 Author: Wolfgang Denk <wd@denx.de>
48751 Date:   Wed Jan 16 00:01:01 2008 +0100
48752
48753     LWMON5: enable hush shell as command line parser
48754
48755     Signed-off-by: Wolfgang Denk <wd@denx.de>
48756
48757 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
48758 Author: Wolfgang Denk <wd@denx.de>
48759 Date:   Tue Jan 15 17:22:28 2008 +0100
48760
48761     ADS5121: disable watchdog; enable image timestamps
48762
48763     Signed-off-by: Wolfgang Denk <wd@denx.de>
48764
48765 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
48766 Author: Wolfgang Denk <wd@denx.de>
48767 Date:   Tue Jan 15 17:21:28 2008 +0100
48768
48769     TK885D: fixes for bigger flash sector sizes on new modules;
48770     adjust default environment;
48771     disable SCC ethernet (not used on this board).
48772
48773     Signed-off-by: Wolfgang Denk <wd@denx.de>
48774
48775 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
48776 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48777 Date:   Tue Jan 15 17:48:13 2008 +0900
48778
48779     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
48780
48781     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48782
48783 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
48784 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48785 Date:   Tue Jan 15 23:25:25 2008 +0900
48786
48787     sh: Add support SH7710/SH7712
48788
48789     SH7710/SH7712 of SH3 CPU are supported.
48790     SH771X is called SH-Ether, and has the Ether controller in CPU.
48791     The driver of Ether is not included in this patch.
48792
48793     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48794
48795 commit 63a11be68306870e04d3851ed9fa41955cdf4894
48796 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48797 Date:   Tue Jan 15 23:06:17 2008 +0900
48798
48799     sh: Add support of map_physmem() and unmap_physmem() to SuperH
48800
48801     This patch add the support of map_physmem() and unmap_physmem()
48802     used with Common Flash Interface(CFI) driver.
48803
48804     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48805
48806 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
48807 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48808 Date:   Wed Jan 9 14:42:27 2008 +0900
48809
48810     sh: Add maintainer of MS7720SE to the MAINTAINER file
48811
48812     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48813
48814 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
48815 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48816 Date:   Wed Jan 9 14:39:58 2008 +0900
48817
48818     sh: Fix board name in MS7720SE's config.mk
48819
48820     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48821
48822 commit c0a04d93734d768b39dbb72fb501b65614c8615d
48823 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48824 Date:   Wed Jan 9 14:37:36 2008 +0900
48825
48826     sh: Add MS7720SE to MAKEALL
48827
48828     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48829
48830 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
48831 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48832 Date:   Mon Dec 3 22:58:50 2007 +0900
48833
48834     sh: Add support for MS7720RP02 board
48835
48836     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48837     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48838     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48839
48840 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
48841 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48842 Date:   Wed Jan 9 14:30:02 2008 +0900
48843
48844     sh: Add support for SH7720 in serial_sh driver.
48845
48846     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48847     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48848     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48849
48850 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
48851 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48852 Date:   Mon Dec 3 22:58:45 2007 +0900
48853
48854     sh: Add support SH3 and SH7720
48855
48856     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
48857     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48858     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
48859
48860 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
48861 Author: Stefan Roese <sr@denx.de>
48862 Date:   Tue Jan 15 10:11:02 2008 +0100
48863
48864     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
48865
48866     Signed-off-by: Stefan Roese <sr@denx.de>
48867
48868 commit 17bef68097ab3692500a36fb31115bff7910aa99
48869 Author: Niklaus Giger <niklausgiger@gmx.ch>
48870 Date:   Mon Jan 14 14:04:42 2008 +0100
48871
48872     ppc_4xx: Fix post spr.c for PPC405
48873
48874     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
48875     for PPC440 and derivates processor.
48876
48877     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48878
48879 commit 06c428bcd4413014b43236e77765022071424fa6
48880 Author: Dave Liu <r63238@freescale.com>
48881 Date:   Mon Jan 14 11:12:01 2008 +0800
48882
48883     QE: fix compile warning
48884
48885     qe.c: In function 'qe_upload_firmware':
48886     qe.c:390: warning: pointer targets in passing argument 2
48887     uec.c: In function 'uec_initialize':
48888     uec.c:1236: warning: 'uec_info' may be used uninitialized
48889
48890     Signed-off-by: Dave Liu <daveliu@freescale.com>
48891
48892 commit a0dd99d51efa55fe023e19c97ead92683725eb11
48893 Author: Stefan Roese <sr@denx.de>
48894 Date:   Mon Jan 14 10:05:05 2008 +0100
48895
48896     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
48897
48898     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
48899     to remove the USB PHY reset after powerup. The CPLD will keep the
48900     USB PHY in reset (active low) until the bit is set to 1 in
48901     board_early_init_f().
48902
48903     Signed-off-by: Stefan Roese <sr@denx.de>
48904
48905 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
48906 Author: Wolfgang Denk <wd@denx.de>
48907 Date:   Sun Jan 13 23:26:45 2008 +0100
48908
48909     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
48910
48911     Signed-off-by: Wolfgang Denk <wd@denx.de>
48912
48913 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
48914 Author: Wolfgang Denk <wd@denx.de>
48915 Date:   Sun Jan 13 23:37:50 2008 +0100
48916
48917     ADS5121: Fix typo in ads5121.c, adjust default environment
48918
48919     Signed-off-by: Wolfgang Denk <wd@denx.de>
48920
48921 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
48922 Author: John Rigby <jrigby@freescale.com>
48923 Date:   Fri Aug 24 18:18:43 2007 -0600
48924
48925     ADS5121: MAX slew rate for PATA pins
48926
48927     Signed-off-by: John Rigby <jrigby@freescale.com>
48928
48929 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
48930 Author: Wolfgang Denk <wd@denx.de>
48931 Date:   Sun Jan 13 21:05:52 2008 +0100
48932
48933     Fix Makefile dependency problem with parallel builds.
48934
48935     Signed-off-by: Wolfgang Denk <wd@denx.de>
48936
48937 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
48938 Author: Wolfgang Denk <wd@denx.de>
48939 Date:   Sun Jan 13 19:51:39 2008 +0100
48940
48941     MPC8544DS: fix board Makefile for silent build (with -s)
48942
48943     Signed-off-by: Wolfgang Denk <wd@denx.de>
48944
48945 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
48946 Author: Wolfgang Denk <wd@denx.de>
48947 Date:   Sun Jan 13 16:44:08 2008 +0100
48948
48949     PMC440 board: fix board Makefile for out-of-tree building
48950
48951     Signed-off-by: Wolfgang Denk <wd@denx.de>
48952
48953 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
48954 Author: Wolfgang Denk <wd@denx.de>
48955 Date:   Sun Jan 13 16:07:44 2008 +0100
48956
48957     Makalu: fix compile warning
48958
48959     Signed-off-by: Wolfgang Denk <wd@denx.de>
48960
48961 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
48962 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48963 Date:   Sun Jan 13 12:36:12 2008 +0100
48964
48965     cmd_nand : fix compiler warning.
48966
48967     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48968
48969 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
48970 Author: Michael Schwingen <rincewind@discworld.dascon.de>
48971 Date:   Sat Jan 12 20:29:47 2008 +0100
48972
48973     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
48974
48975     Signed-off-by: Michael Schwingen <michael@schwingen.org>
48976     Acked-by: Stefan Roese <sr@denx.de>
48977
48978 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
48979 Author: Wolfgang Denk <wd@denx.de>
48980 Date:   Sun Jan 13 02:19:44 2008 +0100
48981
48982     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
48983
48984     Signed-off-by: Wolfgang Denk <wd@denx.de>
48985
48986 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
48987 Author: Wolfgang Denk <wd@denx.de>
48988 Date:   Sun Jan 13 02:19:13 2008 +0100
48989
48990     MPC8xx FEC driver: fix compiler warning.
48991
48992     Signed-off-by: Wolfgang Denk <wd@denx.de>
48993
48994 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
48995 Author: Wolfgang Denk <wd@denx.de>
48996 Date:   Sun Jan 13 00:59:21 2008 +0100
48997
48998     Fix Makefile dependencies issues; allow silent build
48999
49000     - get rid of "version" target whichdidn't really work
49001     - make autoconf.mk depend on version_autogenerated.h to make sure
49002       to rebuild files as needed
49003     - add XECHO macro to allow for silent build using "make -s"
49004
49005     Signed-off-by: Wolfgang Denk <wd@denx.de>
49006
49007 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
49008 Author: Wolfgang Denk <wd@denx.de>
49009 Date:   Sun Jan 13 00:55:47 2008 +0100
49010
49011     ADS5121e: fix compile warning
49012
49013     Signed-off-by: Wolfgang Denk <wd@denx.de>
49014
49015 commit f2b6f4610627fe3d607620e25082916a01538875
49016 Author: Wolfgang Denk <wd@denx.de>
49017 Date:   Sun Jan 13 00:55:18 2008 +0100
49018
49019     MUNICes: fix board Makefile for remote build directory
49020
49021     Signed-off-by: Wolfgang Denk <wd@denx.de>
49022
49023 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
49024 Author: Oliver Weber <almoeli@gmx.de>
49025 Date:   Wed Jan 9 17:04:38 2008 +0100
49026
49027     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
49028
49029     Signed-off-by: Oliver Weber <almoeli@gmx.de>
49030
49031 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
49032 Author: Andreas Engel <andreas.engel@ericsson.com>
49033 Date:   Wed Jan 9 17:10:56 2008 +0100
49034
49035     Make bootretry work when command line editing is enabled
49036
49037     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
49038     This patch fixes the problem.
49039
49040     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
49041
49042 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
49043 Author: Larry Johnson <lrj@acm.org>
49044 Date:   Fri Jan 11 23:26:18 2008 -0500
49045
49046     Refactor code for "i2c sdram" command
49047
49048     Signed-off-by: Larry Johnson <lrj@acm.org>
49049
49050 commit 0df6b8446c4721b91ce311548114891130371083
49051 Author: Larry Johnson <lrj@acm.org>
49052 Date:   Thu Jan 10 22:23:39 2008 -0500
49053
49054     Fix "i2c sdram" command for DDR2 DIMMs
49055
49056     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
49057     "i2c sdram" command.  This patch provides correct alternative
49058     interpretations when DDR2 memory is detected.
49059
49060     Signed-off-by: Larry Johnson <lrj@acm.org>
49061
49062 commit 64134f011254123618798ff77c42ba196b2ec485
49063 Author: Wolfgang Denk <wd@denx.de>
49064 Date:   Sat Jan 12 20:31:39 2008 +0100
49065
49066     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
49067
49068     With recent toolchain versions, some boards would not build because
49069     or errors like this one (here for ocotea board when building with
49070     ELDK 4.2 beta):
49071     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
49072
49073     For many boards, the .bss section is big enough that it wraps around
49074     at the end of the address space (0xFFFFFFFF), so the problem will not
49075     be visible unless you use a 64 bit tool chain for development. On
49076     some boards however, changes to the code size (due to different
49077     optimizations) we bail out with section overlaps like above.
49078
49079     The fix is to add the NOLOAD attribute to the .bss and .sbss
49080     sections, telling the linker that .bss does not consume any space in
49081     the image.
49082
49083     Signed-off-by: Wolfgang Denk <wd@denx.de>
49084
49085 commit 3afac79ec27b91df185f090b31dad9620779f440
49086 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49087 Date:   Fri Jan 11 20:42:58 2008 -0600
49088
49089     USB: Add Philips 1561 PCI-OHCI ids
49090     (needed for M5475EVB)
49091
49092     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49093
49094 commit 5e8def6731cd7bec74bff42a16b139de04010353
49095 Author: Wolfgang Denk <wd@denx.de>
49096 Date:   Sat Jan 12 15:51:34 2008 +0100
49097
49098     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
49099     boards.
49100
49101     Signed-off-by: Heiko Schocher <hs@denx.de>
49102     Signed-off-by: Wolfgang Denk <wd@denx.de>
49103
49104 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
49105 Author: Grzegorz Bernacki <gjb@semihalf.com>
49106 Date:   Fri Jan 11 12:03:43 2008 +0100
49107
49108     MPC512X: Cleanup bus clock names.
49109
49110     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
49111
49112 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
49113 Author: Grzegorz Bernacki <gjb@semihalf.com>
49114 Date:   Tue Jan 8 17:16:59 2008 +0100
49115
49116     MPC512X: Fixed typo in macro name.
49117
49118     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
49119
49120 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
49121 Author: Grzegorz Bernacki <gjb@semihalf.com>
49122 Date:   Tue Jan 8 17:16:15 2008 +0100
49123
49124     ads5121: Added support for FDT.
49125
49126     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
49127
49128 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
49129 Author: Wolfgang Denk <wd@denx.de>
49130 Date:   Sat Jan 12 01:05:50 2008 +0100
49131
49132     Coding Style cleanup; update CHANGELOG.
49133
49134     Signed-off-by: Wolfgang Denk <wd@denx.de>
49135
49136 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
49137 Author: Heiko Schocher <hs@denx.de>
49138 Date:   Fri Jan 11 15:15:17 2008 +0100
49139
49140     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
49141
49142     Signed-off-by: Timur Tabi <timur@freescale.com>
49143     Signed-off-by: Heiko Schocher <hs@denx.de>
49144
49145 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
49146 Author: Heiko Schocher <hs@denx.de>
49147 Date:   Fri Jan 11 15:15:16 2008 +0100
49148
49149     MUNICes: Set the right CFG_DEFAULT_MBAR value.
49150
49151     Signed-off-by: Heiko Schocher <hs@denx.de>
49152
49153 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
49154 Author: Heiko Schocher <hs@denx.de>
49155 Date:   Fri Jan 11 15:15:15 2008 +0100
49156
49157     added the config File for the MUNICes board.
49158
49159     Signed-off-by: Heiko Schocher <hs@denx.de>
49160
49161 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
49162 Author: Heiko Schocher <hs@denx.de>
49163 Date:   Fri Jan 11 15:15:14 2008 +0100
49164
49165     added basic support for the MUNICes board.
49166
49167     Signed-off-by: Heiko Schocher <hs@denx.de>
49168
49169 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
49170 Author: Wolfgang Denk <wd@denx.de>
49171 Date:   Sat Jan 12 00:39:37 2008 +0100
49172
49173     Update CHANGELOG and MAINTAINERS files.
49174
49175     Signed-off-by: Wolfgang Denk <wd@denx.de>
49176
49177 commit 5ba7390c3cb579172be66888a371707b47b5be4e
49178 Author: Anatolij Gustschin <agust@denx.de>
49179 Date:   Fri Jan 11 02:15:02 2008 +0100
49180
49181     Fix compilation problem in common/cmd_bmp.c
49182
49183     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
49184     isn't defined. This patch fix this.
49185
49186     Signed-off-by: Anatolij Gustschin <agust@denx.de>
49187
49188 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
49189 Author: Heiko Schocher <hs@denx.de>
49190 Date:   Fri Jan 11 01:12:09 2008 +0100
49191
49192     Fix defaultconfig for the mgcoge board.
49193
49194     Signed-off-by: Heiko Schocher <hs@denx.de>
49195
49196 commit ac9db066b26935f31bff15c98168b19faeb603f3
49197 Author: Heiko Schocher <hs@denx.de>
49198 Date:   Fri Jan 11 01:12:08 2008 +0100
49199
49200     Added support for the mgcoge board from keymile.
49201
49202     Signed-off-by: Heiko Schocher <hs@denx.de>
49203
49204 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
49205 Author: Heiko Schocher <hs@denx.de>
49206 Date:   Fri Jan 11 01:12:07 2008 +0100
49207
49208     Enable SMC microcode relocation patch for SMC1.
49209
49210     Signed-off-by: Heiko Schocher <hs@denx.de>
49211
49212 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
49213 Author: Heiko Schocher <hs@denx.de>
49214 Date:   Fri Jan 11 01:12:06 2008 +0100
49215
49216     Added support for the mgsuvd board from keymile.
49217
49218     Signed-off-by: Heiko Schocher <hs@denx.de>
49219
49220 commit bf05293973b348f6946c9df92cd3c65ece42d0be
49221 Author: James Yang <james.yang@freescale.com>
49222 Date:   Thu Jan 10 16:02:07 2008 -0600
49223
49224     Fix 64-bit vsprintf.
49225
49226     There were some size and unsigned problems.
49227     Also add support for "ll" size modifier in format string like glibc
49228
49229     Signed-off-by: James Yang <James.Yang@freescale.com>
49230     Acked-by: Jon Loeliger <jdl@freescale.com>
49231
49232 commit 92fa37eac530860643afa26ae347af3d23d67309
49233 Author: Larry Johnson <lrj@acm.org>
49234 Date:   Wed Jan 9 12:42:35 2008 -0500
49235
49236     Remove superfluous preprocessor conditionals from LM73 driver
49237
49238     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
49239
49240     (2) Use conditional Makefile.o.
49241
49242     Signed-off-by: Larry Johnson <lrj@acm.org>
49243
49244 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
49245 Author: Guennadi Liakhovetski <lg@denx.de>
49246 Date:   Thu Jan 10 17:59:07 2008 +0100
49247
49248     Add support for the TK885D baseboard from TELE-DATA
49249
49250     The TK885D board uses a TQM885D module from TQ, this port adds an
49251     own configuration file and adds a last_stage_init() method to
49252     configure the two PHYs, depending on the phy_auto_nego environment
49253     variable.
49254
49255     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49256
49257 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
49258 Author: Kumar Gala <galak@kernel.crashing.org>
49259 Date:   Thu Jan 10 02:22:05 2008 -0600
49260
49261     Fix compiler warning
49262
49263     main.c: In function 'readline_into_buffer':
49264     main.c:927: warning: unused variable 'p_buf'
49265
49266     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49267
49268 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
49269 Author: Anatolij Gustschin <agust@denx.de>
49270 Date:   Fri Jan 11 14:30:01 2008 +0100
49271
49272     Add Fujitsu CoralP/Lime video driver
49273
49274     Signed-off-by: Anatolij Gustschin <agust@denx.de>
49275     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
49276
49277 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
49278 Author: Anatolij Gustschin <agust@denx.de>
49279 Date:   Fri Jan 11 02:39:47 2008 +0100
49280
49281     Fix video console newline and carriage return handling
49282
49283     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
49284     are not displayed correctly. This is an attempt to fix
49285     this issue. Also add carriage return handling.
49286
49287     Signed-off-by: Anatolij Gustschin <agust@denx.de>
49288     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
49289
49290 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
49291 Author: Stefan Roese <sr@denx.de>
49292 Date:   Fri Jan 11 15:53:58 2008 +0100
49293
49294     ppc4xx: Fix sdram init on Sequoia boards
49295
49296     Clear possible errors in MCSR resulting from data-eye-search.
49297     If not done, then we could get an interrupt later on when
49298     exceptions are enabled.
49299
49300     Signed-off-by: Stefan Roese <sr@denx.de>
49301
49302 commit d610a60730b7464f6f659db49d264d89a7c71061
49303 Author: Anatolij Gustschin <agust@denx.de>
49304 Date:   Fri Jan 11 15:31:09 2008 +0100
49305
49306     ppc4xx: Rework Lime support for lwmon5
49307
49308     Rework Lime support for lwmon5 using new video driver
49309
49310     Signed-off-by: Anatolij Gustschin <agust@denx.de>
49311
49312 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
49313 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49314 Date:   Fri Jan 11 14:55:16 2008 +0100
49315
49316     ppc4xx: Update PMC440 config file
49317
49318     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49319
49320 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
49321 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49322 Date:   Fri Jan 11 14:55:08 2008 +0100
49323
49324     ppx4xx: Fix sdram init on PMC440 boards
49325
49326     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49327
49328 commit 061aad4d320dddce26247699dcf2875ee2ea1366
49329 Author: Dave Liu <r63238@freescale.com>
49330 Date:   Thu Jan 10 23:09:33 2008 +0800
49331
49332     mpc83xx: Fix the bug of 266MHz data rate DDR
49333
49334     The DDR doesn't work on the 266MHz data rate,
49335     the patch fix the bug.
49336
49337     Signed-off-by: Dave Liu <daveliu@freescale.com>
49338     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49339
49340 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
49341 Author: Dave Liu <r63238@freescale.com>
49342 Date:   Thu Jan 10 23:08:26 2008 +0800
49343
49344     mpc83xx: Make the code more readable
49345
49346     Format the code, make it more readable
49347
49348     Signed-off-by: Dave Liu <daveliu@freescale.com>
49349     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49350
49351 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
49352 Author: Dave Liu <r63238@freescale.com>
49353 Date:   Thu Jan 10 23:07:23 2008 +0800
49354
49355     mpc83xx: Reduce the latency of DDR
49356
49357     Reduce the AL from 2 to 1 clock to improve the performance.
49358
49359     Signed-off-by: Dave Liu <daveliu@freescale.com>
49360     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49361
49362 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
49363 Author: Dave Liu <r63238@freescale.com>
49364 Date:   Thu Jan 10 23:06:05 2008 +0800
49365
49366     mpc83xx: Fix the wrong definition of MPC8315E
49367
49368     According to the latest user manual of MPC8315E,
49369     1) The SVCOD of HRCWL is different than 837x
49370     2) The SCCR has changes
49371
49372     Signed-off-by: Dave Liu <daveliu@freescale.com>
49373     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49374
49375 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
49376 Author: Dave Liu <r63238@freescale.com>
49377 Date:   Thu Jan 10 23:05:00 2008 +0800
49378
49379     mpc83xx: Fix the typo in mpc83xx.h
49380
49381     The SPCR about TSEC priority is wrong.
49382
49383     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
49384     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
49385     Signed-off-by: Dave Liu <daveliu@freescale.com>
49386     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49387
49388 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
49389 Author: Dave Liu <r63238@freescale.com>
49390 Date:   Thu Jan 10 23:04:13 2008 +0800
49391
49392     mpc83xx: Fix the typo in global data struct
49393
49394     Fix the typo in global_data.h
49395
49396     Signed-off-by: Dave Liu <daveliu@freescale.com>
49397     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49398
49399 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
49400 Author: Dave Liu <r63238@freescale.com>
49401 Date:   Thu Jan 10 23:03:03 2008 +0800
49402
49403     mpc83xx: Remove cache config from config.h
49404
49405     clean up the cache config from configs.h of board
49406
49407     Signed-off-by: Dave Liu <daveliu@freescale.com>
49408     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49409
49410 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
49411 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
49412 Date:   Wed Jan 9 20:57:47 2008 +0300
49413
49414     mpc83xx: add support for the MPC8360E-RDK
49415
49416     This is MPC8360E based board with:
49417     - 256MB fixed SDRAM;
49418     - 8MB Intel Strata NOR flash;
49419     - StMICRO 64MiB NAND flash;
49420     - two 10/100/1000 ethernet ports connected via Broadcom
49421       BCM5481 PHYs;
49422     - two 10/100 ethernet ports connected via National
49423       DP83848 PHYs;
49424     - one PCI and one miniPCI slots;
49425     - four serial ports (two NS16550-compatible, two UCCs);
49426     - four USB ports working through MPC8360E "FHCI" USB controller;
49427     - Fujitsu MB86277 graphics controller;
49428     - Analog to Digital Converter/Touchscreen controller, AD7843
49429       connected to SPI.
49430
49431     Features not supported in this patch are:
49432     - StMICRO 64MiB NAND flash (patch sent);
49433     - MINT framebuffer initialization (patch is pending);
49434     - Fetching production information from the EEPROM via I2C;
49435     - FHCI USB;
49436     - Two slow UCCs used as RS-485 UARTs.
49437
49438     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49439     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49440
49441 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
49442 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
49443 Date:   Wed Jan 9 20:57:40 2008 +0300
49444
49445     mpc83xx: add "fsl, qe" compatible fixups
49446
49447     New device trees will use "fsl,qe" compatible properties.
49448
49449     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49450     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49451
49452 commit 977b57583a7c34010e566a09a679ec3c1836f996
49453 Author: Kim Phillips <kim.phillips@freescale.com>
49454 Date:   Wed Jan 9 15:24:06 2008 -0600
49455
49456     mpc83xx: add missing CONFIG_HAS_ETH0 defines
49457
49458     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
49459     is defined; add the define to the missing board configs.
49460
49461     Thanks to Emilian Medve for finding this.
49462
49463     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49464
49465 commit b830b7f1635984ba607219fcbd78597c28eeb529
49466 Author: Becky Bruce <bgill@freescale.com>
49467 Date:   Thu Jan 10 14:00:28 2008 -0600
49468
49469     86xx: Support 2GB DIMMs
49470
49471     Configure the number of bits used to address the banks inside the SDRAM
49472     device.  The default register value of 0 means 2 bits to address 4 banks.
49473     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
49474
49475     Signed-off-by: Becky Bruce <bgill@freescale.com>
49476
49477 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
49478 Author: Niklaus Giger <niklausgiger@gmx.ch>
49479 Date:   Thu Jan 10 18:50:33 2008 +0100
49480
49481     ppc4xx: Make Sequoia boot vxWorks
49482
49483     vxWorks expects in
49484     TLB 0 a entry for the Machine Check interrupt
49485     TLB 1 a entry for the RAM
49486     TLB 2 a entry for the EBC
49487     TLB 3 a entry for the boot flash
49488
49489     After changing the baudrate to 9600 I had no problems to boot the
49490     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
49491     June 18, 2007)
49492
49493     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49494
49495 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
49496 Author: Larry Johnson <lrj@arlinx.com>
49497 Date:   Wed Jan 9 23:10:27 2008 -0500
49498
49499     ppc4xx: Fix dflush() to restore DVLIM register
49500
49501     Signed-off-by: Larry Johnson <lrj@acm.org>
49502
49503 commit 252f60b068d1f94190b5bcfda169db582387e15e
49504 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49505 Date:   Thu Jan 10 03:52:44 2008 -0500
49506
49507     Nios2: remove common/cmd_bdinfo.c unused variable.
49508
49509     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49510     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
49511
49512 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
49513 Author: Ben Warren <biggerbadderben@gmail.com>
49514 Date:   Wed Jan 9 18:15:53 2008 -0500
49515
49516     Fix Ethernet init() return codes
49517
49518     Change return values of init() functions in all Ethernet drivers to conform
49519     to the following:
49520
49521         >=0: Success
49522         <0:  Failure
49523
49524     All drivers going forward should return 0 on success.  Current drivers that
49525     return 1 on success were left as-is to minimize changes.
49526
49527     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49528     Acked-by: Stefan Roese <sr@denx.de>
49529     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49530     Acked-by: Kim Phillips <kim.phillips@freescale.com>
49531     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49532     Acked-By: Timur Tabi <timur@freescale.com>
49533
49534 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
49535 Author: Wolfgang Denk <wd@denx.de>
49536 Date:   Thu Jan 10 00:55:14 2008 +0100
49537
49538     Coding Style cleanup; update CHANGELOG
49539
49540     Signed-off-by: Wolfgang Denk <wd@denx.de>
49541
49542 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
49543 Author: Kim Phillips <kim.phillips@freescale.com>
49544 Date:   Wed Jan 9 16:56:54 2008 -0600
49545
49546     Add QE brg freq and correct qe bus freq fdt update code
49547
49548     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49549     Signed-off-by: Andy Fleming <afleming@freescale.com>
49550
49551 commit 890dfef06c2d169a3356359596890754dfb8ee1c
49552 Author: Andy Fleming <afleming@freescale.com>
49553 Date:   Wed Jan 9 16:34:51 2008 -0600
49554
49555     Remove cache config from ATUM8548 and sbc8548 configs
49556
49557     These boards weren't updated by Kumar's config patch because they
49558     weren't in the tree, yet.
49559
49560     Signed-off-by: Andy Fleming <afleming@freescale.com>
49561
49562 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
49563 Author: Timur Tabi <timur@freescale.com>
49564 Date:   Mon Jan 7 13:31:19 2008 -0600
49565
49566     85xx: add ability to upload QE firmware
49567
49568     Define the layout of a binary blob that contains a QE firmware and instructions
49569     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
49570     perform the actual upload.  Add command-line command "qe fw" to take a firmware
49571     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
49572     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
49573     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
49574
49575     Signed-off-by: Timur Tabi <timur@freescale.com>
49576
49577 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
49578 Author: Kumar Gala <galak@kernel.crashing.org>
49579 Date:   Tue Jan 8 01:22:21 2008 -0600
49580
49581     85xx: Remove cache config from configs.h
49582
49583     Either use the standard defines in asm/cache.h or grab the information
49584     at runtime from the L1CFG SPR.
49585
49586     Also, minor cleanup in cache.h to make the code a bit more readable.
49587
49588     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49589
49590 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
49591 Author: robert lazarski <robertlazarski@gmail.com>
49592 Date:   Fri Dec 21 10:39:27 2007 -0500
49593
49594     mpc85xx: Add support for ATUM8548 (updated)
49595
49596     Add support for Instituto Atlantico's ATUM8548 board
49597
49598     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
49599     Signed-off-by: Andy Fleming <afleming@freescale.com>
49600
49601 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
49602 Author: robert lazarski <robertlazarski@gmail.com>
49603 Date:   Fri Dec 21 10:36:37 2007 -0500
49604
49605     mpc85xx: Add support for ATUM8548 (updated)
49606
49607     Add support for Instituto Atlantico's ATUM8548 board
49608
49609     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
49610
49611 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
49612 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49613 Date:   Thu Dec 13 06:45:14 2007 -0600
49614
49615     mpc85xx: Add support for SBC8548 (updated)
49616
49617     Add support for Wind River's SBC8548 reference board.
49618
49619     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49620
49621 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
49622 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49623 Date:   Thu Dec 13 06:45:08 2007 -0600
49624
49625     mpc85xx: Add support for SBC8548 (updated)
49626
49627     Add support for Wind River's SBC8548 reference board.
49628
49629     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49630     Signed-off by: Andy Fleming <afleming@freescale.com>
49631
49632 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
49633 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
49634 Date:   Mon Oct 22 19:58:19 2007 +0400
49635
49636     MPC8568E-MDS: set up QE pario for UART1
49637
49638     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
49639     be set up appropriately.
49640
49641     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49642
49643 commit ad162249cb371e9e38971676f09be791e5f3cf4a
49644 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
49645 Date:   Mon Oct 22 18:12:46 2007 +0400
49646
49647     MPC8568E-MDS: reset UCCs to use them reliably
49648
49649     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
49650     UCCs.
49651
49652     p.s Similar code exists in the Linux kernel board file (for capability
49653     reasons with older U-Boots), but should be removed some day.
49654
49655     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
49656
49657 commit 2146cf56821c3364786ca94a7306008c5824b238
49658 Author: Kumar Gala <galak@kernel.crashing.org>
49659 Date:   Wed Dec 19 01:18:15 2007 -0600
49660
49661     Reworked FSL Book-E TLB macros to be more readable
49662
49663     The old macros made it difficult to know what WIMGE and perm bits
49664     were set for a TLB entry.  Actually use the bit masks for these items
49665     since they are only a single bit.
49666
49667     Also moved the macros into mmu.h out of e500.h since they aren't specific
49668     to e500.
49669
49670     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49671
49672 commit 1d47273d46925929f8f2c1913cd96d7257aade88
49673 Author: Kumar Gala <galak@kernel.crashing.org>
49674 Date:   Tue Dec 18 23:21:51 2007 -0600
49675
49676     Use FSL Book-E MMU macros from Linux Kernel
49677
49678     Grab the FSL Book-E MAS register macros from Linux.  Also added
49679     defines for page sizes up to 4TB and removed SHAREN since it doesnt
49680     really exist.
49681
49682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49683
49684 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
49685 Author: Andy Fleming <afleming@freescale.com>
49686 Date:   Wed Jan 9 13:51:32 2008 -0600
49687
49688     Fix my own merge stupidity
49689
49690     Way back in August I merged Heiko's patch:
49691     566a494f592: [PCS440EP] upgrade the PCS440EP board
49692
49693     with Jon's CONFIG_COMMANDS patches.
49694
49695     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
49696
49697     However, in the process, I left out some of Heiko's good changes.
49698
49699     Now Heiko's and Jon's patches are properly merged in fat_register_device()
49700
49701     Signed-off-by: Andy Fleming <afleming@freescale.com>
49702
49703 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
49704 Author: James Yang <James.Yang@freescale.com>
49705 Date:   Wed Jan 9 11:17:49 2008 -0600
49706
49707     Expose parse_line() globally.
49708
49709     Add new function readline_into_buffer() that allows the
49710     output of readline to be put into a pointer to char buffer.
49711
49712     This refactoring allows other functions besides the
49713     main command loop to also use the same input mechanism.
49714
49715     Signed-off-by: James Yang <James.Yang@freescale.com>
49716     Acked-by: Jon Loeliger <jdl@freescale.com>
49717
49718 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
49719 Author: Guennadi Liakhovetski <lg@denx.de>
49720 Date:   Wed Jan 9 01:15:25 2008 +0100
49721
49722     trivial: fix consequences of a bad merge
49723
49724     Fix what looks like a merge artifact.
49725
49726     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49727
49728 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
49729 Author: Zhang Wei <wei.zhang@freescale.com>
49730 Date:   Thu Jan 3 10:51:15 2008 +0800
49731
49732     Add Ctrl combo key support to usb keyboard driver.
49733
49734     Ctrl combo key support is added, which is very useful to input Ctrl-C
49735     for interrupt current job.
49736     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
49737     key input when tstc() is called.
49738
49739     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49740
49741 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
49742 Author: Marcel Ziswiler <marcel@ziswiler.com>
49743 Date:   Sun Dec 30 03:30:56 2007 +0100
49744
49745     fix various comments
49746
49747     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
49748
49749 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
49750 Author: Marcel Ziswiler <marcel@ziswiler.com>
49751 Date:   Sun Dec 30 03:30:46 2007 +0100
49752
49753     fix comments with new drivers organization
49754
49755     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
49756
49757 commit a9b410dc7d2a4721c408b13abfc037988150f145
49758 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49759 Date:   Fri Dec 28 12:50:59 2007 +0900
49760
49761     Remove the obsolete terse version of do_mii()
49762
49763     We now have more useful version of do_mii() and everybody use it.
49764     Gerald Van Baren says:
49765
49766     > When I originally wrote the mii command 6(!) years ago, I wrote a
49767     > verbose version that printed human readable decomposition of the flags,
49768     > etc., and a terse one that didn't print as much stuff and thus had a
49769     > smaller memory footprint.
49770     >
49771     > It sounds like the terse version has withered and died, apparently
49772     > people are only using the verbose version (which is very understandable,
49773     > I do myself).
49774
49775     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49776     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49777
49778 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
49779 Author: Mike Frysinger <vapier@gentoo.org>
49780 Date:   Thu Dec 27 13:42:56 2007 -0500
49781
49782     Do not reference sha1.c when building mkimage.
49783
49784     remove sha1.o from mkimage linking since it isn't actually used.
49785
49786     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49787
49788 commit b9173af73e524d37c812f210173cf83385c5171a
49789 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49790 Date:   Thu Dec 27 15:39:54 2007 +0900
49791
49792     common/cmd_mii.c: Add sanity argc check
49793
49794     If type mii command without arguments, we suffer from uninitialized argv[]
49795     entries; for example we MIPS get stuck by TLB error.
49796
49797     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49798
49799 commit 500856eb1707ed17d9204baa61dd59948d3b2899
49800 Author: Rafal Jaworowski <raj@semihalf.com>
49801 Date:   Wed Jan 9 19:39:36 2008 +0100
49802
49803     API for external applications.
49804
49805     This is an API for external (standalone) applications running on top of
49806     U-Boot, and is meant to be more extensible and robust than the existing
49807     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
49808     for more details.
49809
49810     Included is the demo application using this new framework (api_examples).
49811
49812     Please note this is still an experimental feature, and is turned off by
49813     default.
49814
49815     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
49816
49817 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
49818 Author: Jon Loeliger <jdl@freescale.com>
49819 Date:   Wed Jan 9 12:14:55 2008 -0600
49820
49821     86xx: Remove cache config from configs.h
49822
49823     Just use the standard defines in asm/cache.h.
49824
49825     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49826
49827 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
49828 Author: Rafal Jaworowski <raj@semihalf.com>
49829 Date:   Wed Jan 9 18:05:27 2008 +0100
49830
49831     Globalize envmatch()
49832
49833     The newly introduced API (routines related to env vars) will need to call
49834     it.
49835
49836     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
49837
49838 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
49839 Author: Jon Loeliger <jdl@freescale.com>
49840 Date:   Fri Jan 4 12:07:27 2008 -0600
49841
49842     Convert MPC8610HPCD to use libfdt.
49843
49844     Assumes the presence of the aliases node in the DTS to
49845     locate the pci and serial nodes for fixups.
49846
49847     Use consistent fdtaddr and fdtfile in environment variables.
49848
49849     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49850
49851 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
49852 Author: Jon Loeliger <jdl@freescale.com>
49853 Date:   Fri Jan 4 11:58:23 2008 -0600
49854
49855     8610: Fix lingering compile warnings.
49856
49857     Turn off DEBUG.
49858
49859     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49860
49861 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
49862 Author: Wolfgang Denk <wd@denx.de>
49863 Date:   Wed Jan 9 15:14:46 2008 +0100
49864
49865     Coding Style cleanup, update CHANGELOG
49866
49867     Signed-off-by: Wolfgang Denk <wd@denx.de>
49868
49869 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
49870 Author: Mike Frysinger <vapier@gentoo.org>
49871 Date:   Tue Dec 18 04:29:55 2007 -0500
49872
49873     fix easylogo on big endian dev systems
49874
49875     didnt realize how out of shape easylogo actually was until i tried using it.
49876     this patch does byte swapping as need be on the input tga header since the tga
49877     is in little endian but the host could just as well be big endian.  i didnt
49878     bother using bswap macros or such stuff from system headers as nothing in
49879     POSIX dictates byte swapping functionality.
49880
49881     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49882
49883 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
49884 Author: Mike Frysinger <vapier@gentoo.org>
49885 Date:   Tue Dec 18 03:23:25 2007 -0500
49886
49887     cleanup easylogo
49888
49889     - make the Makefile not suck
49890     - include proper headers for prototypes
49891     - fix obvious broken handling of strchr() when handling '.' in filenames
49892
49893     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
49894
49895 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
49896 Author: raptorbrino@aim.com <raptorbrino@aim.com>
49897 Date:   Thu Dec 13 21:23:28 2007 -0500
49898
49899     Fix build problems under Cygwin
49900
49901     This patch allows u-boot to build without error in a cygwin
49902     environment.  Cygwin does not define __u64 in it's
49903     include/asm/types.h file.  The -idirafter flag in the u-boot
49904     build causes the inclusion of the cygwin types.h file as opposed
49905     to u-bot/include/asm/types.h file which does define __u64.
49906     Subsequently, sha1.c compile fails due to unknown symbol.
49907
49908     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
49909
49910 commit 43ef1c381f9195504a2488f5cb909227eb97d475
49911 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
49912 Date:   Fri Nov 30 17:29:59 2007 +0100
49913
49914     cmd_bmp: Add support for displaying gzip compressed bmps
49915
49916     The existing code can show information about a gzip compressed BMP
49917     image, but can't actually display it.
49918
49919     Therefore, move the decompression code out of bmp_info() and use it in
49920     bmp_display() as well in order to display a compressed BMP image.
49921
49922     Also, clean things up a bit and fix a memory leak while we're at it.
49923
49924     [hskinnemoen@atmel.com: a bit of refactoring]
49925     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49926
49927 commit d197ffd8172c6fdef38733424640a9a47295d6e9
49928 Author: Guennadi Liakhovetski <lg@denx.de>
49929 Date:   Thu Nov 29 21:15:56 2007 +0100
49930
49931     Fix and optimize MII operations on FEC (MPC8xx) controllers
49932
49933     This patch fixes several issues at least on a MPC885 based system with two
49934     FEC interfaces used in MII mode.
49935
49936     1. PHY discovery should first read PHY_PHYIDR2 register and only then
49937        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
49938        otherwise the values read are wrong. Also notice, that PHY discovery
49939        cannot work on MPC88x / MPC87x in setups with both FECs active at all
49940        in its present form, because for both interfaces the registers from FEC
49941        1 are used to communicate over MII.
49942
49943     2. Remove code duplication for resetting the FEC by isolating it into a
49944        separate function.
49945
49946     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
49947
49948     4. Optimize mii_init() to only reset the FEC 1 controller once.
49949
49950     5. Fix a typo in mii_init() using index i instead of j thus potentially
49951        leading to unpredictable results.
49952
49953     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49954
49955 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
49956 Author: Guennadi Liakhovetski <lg@denx.de>
49957 Date:   Tue Nov 20 13:14:20 2007 +0100
49958
49959     Fix endianness conversions in rtl8169 driver
49960
49961     It is unclear on what platforms this driver has been tested, since
49962     noone up to now defines CONFIG_RTL8169 in the board configuration
49963     header. Now it has been fixed for a big-endian mpc8241 based
49964     linkstation platform. This patch presents the necessary endianness
49965     conversion fixes.
49966
49967     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49968
49969 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
49970 Author: Zhang Wei <wei.zhang@freescale.com>
49971 Date:   Thu Jan 3 10:51:15 2008 +0800
49972
49973     Add Ctrl combo key support to usb keyboard driver.
49974
49975     Ctrl combo key support is added, which is very useful to input Ctrl-C
49976     for interrupt current job.
49977     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
49978     key input when tstc() is called.
49979
49980     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49981     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
49982
49983 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
49984 Author: Wolfgang Denk <wd@denx.de>
49985 Date:   Wed Jan 9 13:43:38 2008 +0100
49986
49987     Coding Style clenaup; update CHANGELOG
49988
49989     Signed-off-by: Wolfgang Denk <wd@denx.de>
49990
49991 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
49992 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49993 Date:   Thu Dec 27 17:13:11 2007 +0100
49994
49995     Remove bit swapping in Xilinx Spartan bitfile loading
49996
49997     This patch removes the unnecessary bit swapping when
49998     booting .bit files with the 'fpga loadb' command.
49999
50000     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50001
50002 commit 437fc7327f0611f82937858f2d80e4cd61b40984
50003 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50004 Date:   Thu Dec 27 17:13:05 2007 +0100
50005
50006     Fix MSB check in Xilinx Spartan slave serial mode
50007
50008     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50009
50010 commit 3bff4ffa33729a42645e328a21e8d16488872958
50011 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50012 Date:   Thu Dec 27 17:12:56 2007 +0100
50013
50014     Add new Xilinx Spartan FPGA types
50015
50016     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50017
50018 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
50019 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50020 Date:   Thu Dec 27 17:12:43 2007 +0100
50021
50022     Add pre and post configuration callbacks for Spartan FPGAs
50023
50024     This patch adds a post configuration callback for Spartan2/3 FPGAs.
50025     pre and post configuration callback are now optional and
50026     not called when the function pointer is set to NULL.
50027
50028     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50029
50030 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
50031 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50032 Date:   Thu Dec 27 17:12:34 2007 +0100
50033
50034     Improve configuration of FPGA subsystem
50035
50036     This patch removes the FPGA subsystem configuration through
50037     the CONFIG_FPGA bitmask configuration option.
50038
50039     See README for the new options:
50040
50041         CONFIG_FPGA,
50042         CONFIG_FPGA_<vendor>,
50043         CONFIG_FPGA_<family>
50044
50045     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50046
50047 commit 95c6bc7d4a3588b452baca610f8c795a83630477
50048 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50049 Date:   Thu Dec 27 16:55:17 2007 +0100
50050
50051     Add Epson RX8025 RTC support
50052
50053     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50054
50055 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
50056 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50057 Date:   Thu Dec 27 16:57:23 2007 +0100
50058
50059     serial: Make default_serial_console() a weak function
50060
50061     With this patch it is possible to reimplement default_serial_console()
50062     in board specific code. This will be done in the upcomming PMC440
50063     U-Boot port. This also allows the lwmon board maintainer to
50064     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
50065
50066     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50067
50068 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
50069 Author: Harald Welte <laforge@openmoko.org>
50070 Date:   Wed Dec 19 14:14:47 2007 +0100
50071
50072     add 'terminal program' functionality
50073
50074     This patch adds a 'cu' like serial terminal command to u-boot
50075     using which you can access other serial ports from the system console.
50076
50077     OpenMoko uses this in their Neo1973 phones to get access to the GSM
50078     Modem and GPS chip from the bootloader.
50079
50080     Signed-off-by: Harald Welte <laforge@openmoko.org>
50081
50082 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
50083 Author: Harald Welte <laforge@openmoko.org>
50084 Date:   Wed Dec 19 14:12:53 2007 +0100
50085
50086     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
50087     that used to exist with the legacy NAND code
50088
50089     Signed-off-by: Harald Welte <laforge@openmoko.org>
50090
50091 commit f540c42d9564854b19ce9bbb70affe172529fe70
50092 Author: Harald Welte <laforge@openmoko.org>
50093 Date:   Wed Dec 19 14:09:58 2007 +0100
50094
50095     Fix building with CRAMFS but not JFFS2 support
50096
50097     Signed-off-by: Harald Welte <laforge@openmoko.org>
50098
50099 commit 23d0baf967fecdaf1804f045f6339337c5607eec
50100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50101 Date:   Sat Dec 22 15:52:58 2007 +0100
50102
50103     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
50104
50105     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50106     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50107
50108 commit 23776ff292966a85d811126933830bed48211826
50109 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50110 Date:   Tue Dec 11 10:53:12 2007 +0100
50111
50112     ARM: support board-specific ethernet PHY init
50113
50114     Add until the new phylib will be arrived
50115
50116     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50117
50118 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
50119 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50120 Date:   Sat Dec 8 16:34:08 2007 +0100
50121
50122     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
50123
50124     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50125
50126 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
50127 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50128 Date:   Sun Dec 9 11:01:10 2007 +0100
50129
50130     Add missing file in gitignore and comments
50131
50132     based on Linux source tree's .gitignore files
50133
50134     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50135
50136 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
50137 Author: Wolfgang Denk <wd@denx.de>
50138 Date:   Wed Jan 9 11:36:21 2008 +0100
50139
50140     Coding Style cleanup, update CHANGELOG
50141
50142     Signed-off-by: Wolfgang Denk <wd@denx.de>
50143
50144 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
50145 Author: Stefan Roese <sr@denx.de>
50146 Date:   Wed Jan 9 10:38:58 2008 +0100
50147
50148     POST: Execute SPR test after relocation
50149
50150     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
50151     self modifying code and this doesn't work with stack in d-cache, since
50152     I can't move the code from d-cache to i-cache. We move the SPR test to
50153     be executed a little later, after relocation. Then stack is located in
50154     SDRAM and this self-modifying code is no problem anymore.
50155
50156     Signed-off-by: Stefan Roese <sr@denx.de>
50157
50158 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
50159 Author: Stefan Roese <sr@denx.de>
50160 Date:   Wed Jan 9 10:28:20 2008 +0100
50161
50162     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
50163
50164     This patch configures the LWMON5 port to use d-cache as init-ram and
50165     the unused GPT0_COMP6 as POST WORD storage.
50166
50167     Signed-off-by: Stefan Roese <sr@denx.de>
50168
50169 commit 1754f50b710194f886b6f2831803d8960171a14d
50170 Author: Stefan Roese <sr@denx.de>
50171 Date:   Wed Jan 9 10:25:46 2008 +0100
50172
50173     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
50174
50175     The privious 4xx POST implementation only supported storing the POST
50176     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
50177     we need to store the POST WORD in some other non volatile location.
50178     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
50179     a location.
50180
50181     Signed-off-by: Stefan Roese <sr@denx.de>
50182
50183 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
50184 Author: Stefan Roese <sr@denx.de>
50185 Date:   Wed Jan 9 10:23:16 2008 +0100
50186
50187     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
50188
50189     This patch adds support for locking the init-ram/stack in d-cache,
50190     so that other regions may use d-cache as well
50191
50192     Note, that this current implementation locks exactly 4k of d-cache,
50193     so please make sure that you don't define a bigger init-ram area. Take
50194     a look at the lwmon5 440EPx implementation as a reference.
50195
50196     Signed-off-by: Stefan Roese <sr@denx.de>
50197
50198 commit 0ddb89601a8d29e808db450366752ffdc6267c53
50199 Author: Wolfgang Denk <wd@denx.de>
50200 Date:   Wed Jan 9 10:16:33 2008 +0100
50201
50202     Fix memset bug in ext2fs_read_file()
50203
50204     ext2fs_read_file() had the function arguments swapped.
50205
50206     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
50207
50208     Signed-off-by: Wolfgang Denk <wd@denx.de>
50209
50210 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
50211 Author: Markus Klotzbücher <mk@denx.de>
50212 Date:   Tue Jan 5 08:17:15 1988 +0100
50213
50214     Fix problems with usb storage devices on MPC5200 /TQM5200
50215
50216     The MPC5200 OHCI controller operates in big endian, so
50217     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
50218
50219     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
50220
50221 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
50222 Author: Wolfgang Denk <wd@denx.de>
50223 Date:   Tue Jan 8 22:58:27 2008 +0100
50224
50225     Fix compile problem with new env code.
50226
50227     Signed-off-by: Wolfgang Denk <wd@denx.de>
50228
50229 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
50230 Author: Markus Klotzbücher <mk@denx.de>
50231 Date:   Tue Nov 27 10:23:20 2007 +0100
50232
50233     tools: fix fw_printenv tool to compile again
50234
50235     This patch updates the fw_printenv/fw_setenv userspace tool to include
50236     the correct MTD header in order to compile against current kernel
50237     headers. Backward compatibility is preserved by introducing an option
50238     MTD_VERSION which can be set to "old" for compilation using the old MTD
50239     headers. Along with this a number of warnings are fixed.
50240
50241     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
50242
50243 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
50244 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50245 Date:   Tue Jan 8 15:40:09 2008 +0100
50246
50247     ppc4xx: assign PCI interrupts on seuqoia boards
50248
50249     Some operating systems rely on assigned PCI interrupts.
50250
50251     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50252
50253 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
50254 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50255 Date:   Tue Jan 8 15:50:49 2008 +0100
50256
50257     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
50258
50259     This patch allows the use of 4xx interrupt vector number defines
50260     in board specific code outside cpu/ppc4xx.
50261
50262     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50263
50264 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
50265 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50266 Date:   Tue Jan 8 15:39:01 2008 +0100
50267
50268     ppc4xx: Fix UIC2 vector number base
50269
50270     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50271
50272 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
50273 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50274 Date:   Tue Jan 8 12:49:58 2008 +0100
50275
50276     ppc4xx: Update PLB/PCI divider for PMC440 board
50277
50278     This patch updates the PLB/PCI divider when running at
50279     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
50280
50281     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50282
50283 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
50284 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50285 Date:   Tue Jan 8 11:13:09 2008 +0100
50286
50287     ppc4xx: Disable error message when no NAND chip is installed on PMC440
50288
50289     Add CFG_NAND_QUIET_TEST option to disable error message when
50290     no NAND chip is installed on PMC440 boards.
50291
50292     Disable a couple of config defines that are only used for NAND_U_BOOT.
50293
50294     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50295
50296 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
50297 Author: Wolfgang Denk <wd@denx.de>
50298 Date:   Tue Jan 8 22:58:27 2008 +0100
50299
50300     Fix compile problem with new env code.
50301
50302     Signed-off-by: Wolfgang Denk <wd@denx.de>
50303
50304 commit 6de66b35426312a21174a9bf0576a094e2904bea
50305 Author: Markus Klotzbücher <mk@denx.de>
50306 Date:   Tue Nov 27 10:23:20 2007 +0100
50307
50308     tools: fix fw_printenv tool to compile again
50309
50310     This patch updates the fw_printenv/fw_setenv userspace tool to include
50311     the correct MTD header in order to compile against current kernel
50312     headers. Backward compatibility is preserved by introducing an option
50313     MTD_VERSION which can be set to "old" for compilation using the old MTD
50314     headers. Along with this a number of warnings are fixed.
50315
50316     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
50317
50318 commit ad3006fe7e84667021753b74247b0bafd97ba35f
50319 Author: Gerald Van Baren <vanbaren@cideas.com>
50320 Date:   Mon Jan 7 23:47:32 2008 -0500
50321
50322     LIBFDT: use memmove() instead of memcpy()
50323
50324     This is partial patch from the DTC/libfdt
50325     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
50326     Author: David Gibson <david@gibson.dropbear.id.au>
50327     Date:   Wed Nov 21 11:56:14 2007 +1100
50328
50329         The patch also fixes one genuine bug caught by valgrind -
50330         _packblocks() in fdt_rw.c was using memcpy() where it should have been
50331         using memmove().
50332
50333     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50334
50335 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
50336 Author: David Gibson <david@gibson.dropbear.id.au>
50337 Date:   Mon Dec 17 14:42:07 2007 +1100
50338
50339     libfdt: Add more documentation (patch the seventh)
50340
50341     This patch adds more documenting comments to libfdt.h.  Specifically,
50342     these document the read/write functions (not including fdt_open_into()
50343     and fdt_pack(), for now).
50344
50345     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
50346
50347 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
50348 Author: David Gibson <david@gibson.dropbear.id.au>
50349 Date:   Mon Dec 17 14:41:52 2007 +1100
50350
50351     libfdt: Add more documentation (patch the sixth)
50352
50353     This patch adds some more documenting comments to libfdt.h.
50354     Specifically this documents all the write-in-place functions.
50355
50356     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
50357
50358 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
50359 Author: Gerald Van Baren <vanbaren@cideas.com>
50360 Date:   Sat Dec 29 22:45:27 2007 -0500
50361
50362     Fine grained per property /chosen updating.
50363
50364     Implement a suggestion by Scott Wood to make the /chosen handling fine
50365     grained.  Don't overwrite pre-existing properties on a per-property basis,
50366     so if /chosen exists but a necessary /chosen/property doesn't, it gets
50367     created.  If a /chosen property exists, it is NOT overwritten unless the
50368     "force" flag is true.
50369
50370     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50371
50372 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
50373 Author: Gerald Van Baren <vanbaren@cideas.com>
50374 Date:   Sat Jan 5 15:33:29 2008 -0500
50375
50376     Improve the FDT help message.
50377
50378     Add a note that "fdt copy" makes the new address active.
50379     Remove most of the extra hints at the end of the fdt help.
50380
50381     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50382
50383 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
50384 Author: Gerald Van Baren <vanbaren@cideas.com>
50385 Date:   Sat Jan 5 14:52:04 2008 -0500
50386
50387     Support setting FDT properties with optional values.
50388
50389     Fix a bug found and documented by Bartlomiej Sieka where the optional
50390     value on "fdt set <path> <prop> [<val>]" wasn't optional.
50391
50392     => fdt mknode / testnode
50393     => fdt print /testnode
50394     testnode {
50395     };
50396     => fdt set /testnode testprop
50397     => fdt print /testnode
50398     testnode {
50399             testprop;
50400     };
50401
50402     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50403
50404 commit 22fb2246df91bfc840d87f0c5910818bad55577a
50405 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50406 Date:   Fri Dec 28 11:56:30 2007 +0100
50407
50408     Add fdt_find_and_setprop() to fdt_support.h
50409
50410     fdt_find_and_setprop() is used by several 4xx boards and it's
50411     missing in the appropriate header. This patch eliminates a
50412     warning when building U-Boot for such boards.
50413
50414     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50415     Acked-by: Stefan Roese <sr@denx.de>
50416
50417 commit 802b769bac17b0560d3535a42c502469ee190cd1
50418 Author: Stefan Roese <sr@denx.de>
50419 Date:   Tue Jan 8 18:39:30 2008 +0100
50420
50421     ppc4xx: Return 0 on success in 4xx ethernet driver
50422
50423     Signed-off-by: Stefan Roese <sr@denx.de>
50424
50425 commit 6775c68683a53c7abc778774641aac6f833a2cbf
50426 Author: Kim Phillips <kim.phillips@freescale.com>
50427 Date:   Tue Jan 8 09:59:49 2008 -0600
50428
50429     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
50430
50431     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50432
50433 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
50434 Author: Kim Phillips <kim.phillips@freescale.com>
50435 Date:   Thu Dec 20 16:28:34 2007 -0600
50436
50437     mpc83xx: rm remaining FLAT_TREE code
50438
50439     ..in board pci.c files
50440
50441     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50442
50443 commit b3458d2cd55d01732e30a76d898afd99e871cd67
50444 Author: Kim Phillips <kim.phillips@freescale.com>
50445 Date:   Thu Dec 20 15:57:28 2007 -0600
50446
50447     mpc83xx: remove FLAT_TREE code
50448
50449     need to rm it from pci code, too!
50450
50451     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50452
50453 commit 5b8bc606c61456566af6912f818a153b6b06f242
50454 Author: Kim Phillips <kim.phillips@freescale.com>
50455 Date:   Thu Dec 20 14:09:22 2007 -0600
50456
50457     mpc83xx: convert to using do_fixup_*()
50458
50459     convert to using simpler mpc85xx style fdt update code; streamline by
50460     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
50461     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
50462     converted over to using libfdt).
50463
50464     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50465
50466 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
50467 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
50468 Date:   Thu Dec 20 12:58:51 2007 -0500
50469
50470     sbc8349: enable libfdt by default on WRS SBC8349 board.
50471
50472     Make libfdt the default for the WRS SBC8349 board.
50473     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
50474     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
50475
50476     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
50477
50478 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
50479 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
50480 Date:   Thu Dec 20 12:58:16 2007 -0500
50481
50482     sbc8349: migrate board to libfdt
50483
50484     This adds libfdt support code for the Wind River sbc8349 board.
50485
50486     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
50487     the other Freescale 83xx boards.
50488
50489     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
50490
50491 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
50492 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
50493 Date:   Thu Dec 20 12:56:19 2007 -0500
50494
50495     sbc8349: Remove board specific ECC code
50496
50497     ECC code is now shared for all 83xx boards, so remove board specific one.
50498     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
50499
50500     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
50501
50502 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
50503 Author: Kim Phillips <kim.phillips@freescale.com>
50504 Date:   Thu Dec 20 01:30:48 2007 -0600
50505
50506     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
50507
50508     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
50509
50510     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50511
50512 commit ccf21c311e68d48399eff1e72936052885f6e3f7
50513 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50514 Date:   Thu Dec 6 16:43:40 2007 +0100
50515
50516     Add support CONFIG_UEC_ETH3 in MPC83xx
50517
50518     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50519
50520 commit e6af9932d31171e35db880e7b2f29f903b1b7660
50521 Author: Kumar Gala <galak@kernel.crashing.org>
50522 Date:   Mon Nov 26 11:00:54 2007 -0600
50523
50524     Remove CONFIG options related to OF that we dont use
50525
50526     The MPC8360E MDS config defined:
50527         CONFIG_OF_HAS_BD_T
50528         CONFIG_OF_HAS_UBOOT_ENV
50529
50530     Which we don't use or ever needed.  This seems like copy-paste feature creep.
50531
50532     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50533
50534 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
50535 Author: Kim Phillips <kim.phillips@freescale.com>
50536 Date:   Mon Dec 10 14:16:22 2007 -0600
50537
50538     mpc83xx: supress compiler warning
50539
50540     mpc8360emds.c: In function â€˜ft_board_setup’:
50541     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
50542     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
50543
50544     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50545
50546 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
50547 Author: Kim Phillips <kim.phillips@freescale.com>
50548 Date:   Tue Nov 27 14:17:29 2007 -0600
50549
50550     mpc83xx: fix remaining fdt_find_node_by_path references
50551
50552     rename to fdt_path_offset
50553
50554     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50555
50556 commit 921d4b19ad1be704df58725485d9292dc0414adf
50557 Author: Kim Phillips <kim.phillips@freescale.com>
50558 Date:   Mon Nov 19 12:30:09 2007 -0600
50559
50560     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
50561
50562     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
50563     This change guarantees that the environment will be located on the
50564     first flash sector after the U-Boot image.
50565
50566     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50567
50568 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
50569 Author: Kim Phillips <kim.phillips@freescale.com>
50570 Date:   Fri Nov 9 14:28:08 2007 -0600
50571
50572     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
50573
50574     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
50575     properties in the device tree so the PHY gets configured for internal delay on
50576     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
50577
50578     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50579
50580 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
50581 Author: Dave Liu <r63238@freescale.com>
50582 Date:   Tue Sep 18 12:41:15 2007 +0800
50583
50584     mpc83xx: update the CREDITS and MAINTAINERS
50585
50586     update the CREDITS and MAINTAINERS.
50587
50588     Signed-off-by: Dave Liu <daveliu@freescale.com>
50589
50590 commit b21add4b42af7b767448251b599b91066a160e0d
50591 Author: Dave Liu <r63238@freescale.com>
50592 Date:   Tue Sep 18 12:40:21 2007 +0800
50593
50594     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
50595
50596     Add the MAINTAINER and MAKEALL entries for mpc837xemds
50597
50598     Signed-off-by: Dave Liu <daveliu@freescale.com>
50599
50600 commit f8900ce9094c462355eb792eea264ff16ac8fd16
50601 Author: Dave Liu <r63238@freescale.com>
50602 Date:   Tue Sep 18 12:38:53 2007 +0800
50603
50604     mpc83xx: Add the MPC837xEMDS board readme
50605
50606     Add the README.mpc837xemds to /doc
50607
50608     Signed-off-by: Dave Liu <daveliu@freescale.com>
50609
50610 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
50611 Author: Dave Liu <r63238@freescale.com>
50612 Date:   Tue Sep 18 12:37:57 2007 +0800
50613
50614     mpc83xx: Add the support of MPC837xEMDS board
50615
50616     The MPC837xEMDS board support:
50617     * DDR2 400MHz hardcoded and SPD init
50618     * Local bus NOR Flash
50619     * I2C, UART, MII and RTC
50620     * eTSEC RGMII
50621     * PCI host
50622
50623     Signed-off-by: Dave Liu <daveliu@freescale.com>
50624
50625 commit 555da61702771fe0f76f3de23b4e7590f3704161
50626 Author: Dave Liu <r63238@freescale.com>
50627 Date:   Tue Sep 18 12:36:58 2007 +0800
50628
50629     mpc83xx: Add the support of MPC8315E SoC
50630
50631     The MPC8315E SoC including e300c3 core and new IP blocks,
50632     such as TDM, PCI Express and SATA controller.
50633
50634     Signed-off-by: Dave Liu <daveliu@freescale.com>
50635
50636 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
50637 Author: Dave Liu <r63238@freescale.com>
50638 Date:   Tue Sep 18 12:36:11 2007 +0800
50639
50640     mpc83xx: Add the support of MPC837x SoC
50641
50642     The MPC837x SoC including e300c4 core and new IP blocks,
50643     such as SDHC, PCI Express and SATA controller.
50644
50645     Signed-off-by: Dave Liu <daveliu@freescale.com>
50646
50647 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
50648 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50649 Date:   Wed Nov 14 18:54:53 2007 +0300
50650
50651     MPC8360E-MDS: configure and enable second UART
50652
50653     Despite user manual, BCSR9.7 is negated (high) on HRST, so
50654     UART2 is disabled. Fix that and configure QE pins properly.
50655
50656     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50657
50658 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
50659 Author: Timur Tabi <timur@freescale.com>
50660 Date:   Mon Nov 5 09:34:06 2007 -0600
50661
50662     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
50663
50664     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
50665     currently-defined 83xx boards.  This change guarantees that the environment
50666     will be located on the first flash sector after the U-Boot image.
50667
50668     Signed-off-by: Timur Tabi <timur@freescale.com>
50669     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50670
50671 commit e05329516a13616b53240cd85b739217c2bf87f1
50672 Author: Larry Johnson <lrj@acm.org>
50673 Date:   Fri Jan 4 13:27:02 2008 -0500
50674
50675     ppc4xx: Remove weak binding from common Denali data-eye search code
50676
50677     Now that there are no board-specific versions of
50678     "denali_core_search_data_eye()", the weak binding on the common version
50679     can be removed.
50680
50681     Signed-off-by: Larry Johnson <lrj@acm.org>
50682
50683 commit 5ba576c01602fd328800a427964c36a0a05c5dce
50684 Author: Stefan Roese <sr@denx.de>
50685 Date:   Sat Jan 5 09:13:46 2008 +0100
50686
50687     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
50688
50689     Signed-off-by: Stefan Roese <sr@denx.de>
50690
50691 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
50692 Author: Stefan Roese <sr@denx.de>
50693 Date:   Sat Jan 5 09:12:41 2008 +0100
50694
50695     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
50696
50697     On Katmai the complete auto-calibration somehow doesn't seem to
50698     produce the best results, meaning optimal values for RQFD/RFFD.
50699     This was discovered by GDA using a high bandwidth scope,
50700     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
50701     so now on Katmai "only" RFFD is auto-calibrated.
50702
50703     This patch also adds RDCC calibration as mentioned on page 7 of
50704     the AMCC PowerPC440SP/SPe DDR2 application note:
50705     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
50706
50707     Signed-off-by: Stefan Roese <sr@denx.de>
50708
50709 commit 49db47b8ae6afff2b898be312948ff501357dc80
50710 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50711 Date:   Wed Jan 2 16:48:42 2008 +0100
50712
50713     ppc4xx: Remove sdram.h from PMC440 board
50714
50715     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50716
50717 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
50718 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50719 Date:   Wed Jan 2 16:48:34 2008 +0100
50720
50721     ppc4xx: use common denali core defines and data eye search code for PMC440
50722
50723     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50724
50725 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
50726 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50727 Date:   Wed Jan 2 12:05:14 2008 +0100
50728
50729     ppc4xx: More cleanup for esd's LCD code
50730
50731     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50732
50733 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
50734 Author: Stefan Roese <sr@denx.de>
50735 Date:   Fri Jan 4 12:00:01 2008 +0100
50736
50737     ppc4xx: Fix Sequoia NAND booting target
50738
50739     The Sequoia NAND booting target now uses the recently extracted
50740     cpu/ppc4xx/denali_data_eye.c file too.
50741
50742     Signed-off-by: Stefan Roese <sr@denx.de>
50743
50744 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
50745 Author: Lawrence R. Johnson <lrj@acm.org>
50746 Date:   Thu Jan 3 15:02:02 2008 -0500
50747
50748     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
50749
50750     Signed-off-by: Larry Johnson <lrj@acm.org>
50751
50752 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
50753 Author: Lawrence R. Johnson <lrj@acm.org>
50754 Date:   Fri Jan 4 02:11:56 2008 -0500
50755
50756     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
50757
50758     Note: this patch changes the configuration of some GPIO registers:
50759
50760        Register      Old Value   New Value
50761     ---------------  ----------  ----------
50762     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
50763     DCR GPIO0_TSRH   0x55005000  0x00000000
50764     DCR GPIO1_TCR    0xC2000000  0xE2000000
50765     DCR GPIO1_TSRL   0x0C000000  0x00200000
50766     DCR GPIO1_ISR2L  0x00050000  0x00110000
50767
50768     Signed-off-by: Larry Johnson <lrj@acm.org>
50769
50770 commit 5ab884b254ca2e707ab50545cd705f30108cf491
50771 Author: Lawrence R. Johnson <lrj@acm.org>
50772 Date:   Thu Jan 3 18:54:00 2008 -0500
50773
50774     ppc4xx: Add functionality to GPIO support
50775
50776     This patch makes two additions to GPIO support:
50777
50778     First, it adds function gpio_read_in_bit() to read the a bit from the
50779     GPIO Input Register (GPIOx_IR) in the same way that function
50780     gpio_read_out_bit() reads a bit from the GPIO Output Register
50781     (GPIOx_OR).
50782
50783     Second, it modifies function gpio_set_chip_configuration() to provide
50784     an additional option for configuring the GPIO from the
50785     "CFG_4xx_GPIO_TABLE".
50786
50787     According to the 440EPx User's Manual, when an alternate output is used,
50788     the three-state control is configured in one of two ways, depending on
50789     the particular output.  The first option is to select the corresponding
50790     alternate three-state control in the GPIOx_TRSH/L registers.  The second
50791     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
50792     the GPIOx_TRSH/L registers, and set the corresponding bit in the
50793     GPIOx_TCR register to enable the output.  For example, the Manual
50794     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
50795     the alternate three-state control (first option), and specifies
50796     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
50797     enabled in the GPIOx_TCR register (second option).
50798
50799     Currently, gpio_set_chip_configuration() configures all alternate signal
50800     outputs to use the first option.  This patch allow the second option to
50801     be selected by setting the "out_val" element in the table entry to
50802     "GPIO_OUT_1".  The first option is used when the "out_val" element is
50803     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
50804     alternate signal is selected, and because all current GPIO tables set
50805     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
50806     not change any existing configurations.
50807
50808     Signed-off-by: Larry Johnson <lrj@acm.org>
50809
50810 commit 196404cdc1de495d6182e84731c200fc5748df15
50811 Author: Larry Johnson <lrj@arlinx.com>
50812 Date:   Sun Dec 30 01:01:54 2007 -0500
50813
50814     PPC4xx: Remove sdram.h from board/lwmon5
50815
50816     These definitions are now in "include/ppc440.h".
50817
50818     Signed-off-by: Larry Johnson <lrj@acm.org>
50819
50820 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
50821 Author: Larry Johnson <lrj@arlinx.com>
50822 Date:   Sun Dec 30 01:01:32 2007 -0500
50823
50824     PPC4xx: Use common code for LWMON5 board SDRAM support
50825
50826     This patch also modifies the functionality of the code so that the data-eye
50827     search is now done with with the cache disabled.
50828
50829     Signed-off-by: Larry Johnson <lrj@acm.org>
50830
50831 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
50832 Author: Larry Johnson <lrj@arlinx.com>
50833 Date:   Sun Dec 30 01:01:14 2007 -0500
50834
50835     PPC4xx: Remove sdram.h from board/amcc/sequoia
50836
50837     These definitions are now in "include/ppc440.h".
50838
50839     Signed-off-by: Larry Johnson <lrj@acm.org>
50840
50841 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
50842 Author: Larry Johnson <lrj@arlinx.com>
50843 Date:   Sun Dec 30 01:00:50 2007 -0500
50844
50845     PPC4xx: Use common code for Sequoia board SDRAM support
50846
50847     Signed-off-by: Larry Johnson <lrj@acm.org>
50848
50849 commit 8b0c5c127690335758100c25eaec2b84db97c101
50850 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50851 Date:   Thu Dec 27 16:58:41 2007 +0100
50852
50853     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
50854
50855     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
50856     networking stack does not automatically switch to
50857     another interface. This patch does not touch the default
50858     behavior.
50859
50860     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50861     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50862
50863 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
50864 Author: Upakul Barkakaty <upakul@gmail.com>
50865 Date:   Thu Nov 29 12:16:13 2007 +0530
50866
50867     NET: Proper return code handling in eth_init() function in file eth.c
50868
50869     This patch modifies the return code handling in the eth_init()
50870     function, to be compatible with the handling of the return codes in
50871     the other network stack files. It now returns a 0 on Success and -1 on
50872     error.
50873
50874     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
50875     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50876
50877 commit 5ca2d0953e4579a80810966cca2077e20d912c97
50878 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50879 Date:   Mon Nov 19 20:27:04 2007 +0900
50880
50881     net/eth.c: Fix env_enetaddr signed overflow
50882
50883     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
50884     warned as below:
50885
50886       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
50887
50888       DRAM:  256 MB
50889       Flash: 32 MB
50890       In:    serial
50891       Out:   serial
50892       Err:   serial
50893       Net:   NEC-Candy
50894       Warning: NEC-Candy MAC addresses don't match:
50895       Address in SROM is         00:00:4C:80:92:A2
50896       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
50897
50898     This patch changes env_enetaddr type from `char' to `unsigned char'.
50899
50900     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
50901     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50902     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50903
50904 commit f85b60710571b37293d2233933b76e2aa3db5635
50905 Author: Rafal Jaworowski <raj@semihalf.com>
50906 Date:   Thu Dec 27 18:19:02 2007 +0100
50907
50908     Introduce new eth_receive routine
50909
50910     The purpose of this routine is receiving a single network frame, outside of
50911     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
50912     U-Boot will let them utilise networking facilities. For sending a raw frame
50913     the already existing eth_send() can be used.
50914
50915     The direct consumer of this routine is the newly introduced API layer for
50916     external applications (enabled with CONFIG_API).
50917
50918     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50919     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
50920     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50921
50922 commit 5c740711f0ea5b51414b341b71597c4a0751be74
50923 Author: Jon Loeliger <jdl@freescale.com>
50924 Date:   Thu Jan 3 10:41:04 2008 -0600
50925
50926     8610: Move include of config.h earlier.
50927
50928     Include config.h earlier in the set of #includes
50929     so as to avoid a incidental and duplicate definition
50930     of CFG_CACHELINE_SIZE.
50931
50932     Signed-off-by: Jon Loeliger
50933
50934 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
50935 Author: Jon Loeliger <jdl@freescale.com>
50936 Date:   Tue Dec 4 10:53:34 2007 -0600
50937
50938     Don't slam #undef DEBUG in the 8641HPCN config file.
50939
50940     Doing so prevents it from being individually set
50941     and useful in other files.
50942
50943     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50944
50945 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
50946 Author: Jon Loeliger <jdl@freescale.com>
50947 Date:   Wed Nov 28 14:47:18 2007 -0600
50948
50949     Convert MPC8641HPCN to use libfdt.
50950
50951     Assumes the presence of the aliases node in the DTS to
50952     locate the ethernet, pci and serial nodes for fixups.
50953
50954     Use consistent fdtaddr and fdtfile in environment variables.
50955
50956     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50957
50958 commit ce37422d0002e10490e268392e0c4e3028e52cec
50959 Author: Stefan Roese <sr@denx.de>
50960 Date:   Wed Jan 2 14:06:26 2008 +0100
50961
50962     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
50963
50964     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
50965     flash chips connected to a 32bit wide port.
50966
50967     Signed-off-by: Stefan Roese <sr@denx.de>
50968
50969 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
50970 Author: Wolfgang Denk <wd@denx.de>
50971 Date:   Wed Jan 2 15:58:44 2008 +0100
50972
50973     Fix compile problem introduced by "cleanup" commit 3dfd708c
50974
50975     Signed-off-by: Wolfgang Denk <wd@denx.de>
50976
50977 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
50978 Author: Wolfgang Denk <wd@denx.de>
50979 Date:   Wed Jan 2 15:54:45 2008 +0100
50980
50981     Make scripts and Makefiles POSIX compliant
50982
50983     The bash builtin versions of the "test" (resp. "[") command allow
50984     using "==" for string comparisons, but POSIX compatible implemen-
50985     tations (like /usr/bin/test) insist on using "=" only. On such systems
50986     you will see:
50987
50988         $ /usr/bin/test a == a && echo OK
50989         /usr/bin/test: ==: binary operator expected
50990
50991     This patch fixes Makefiles and scripts to use POSIX style.
50992
50993     Signed-off-by: Wolfgang Denk <wd@denx.de>
50994
50995 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
50996 Author: Stefan Roese <sr@denx.de>
50997 Date:   Wed Jan 2 14:05:37 2008 +0100
50998
50999     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
51000
51001     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
51002     flash chips connected to a 32bit wide port.
51003
51004     Signed-off-by: Stefan Roese <sr@denx.de>
51005
51006 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
51007 Author: Wolfgang Denk <wd@denx.de>
51008 Date:   Wed Jan 2 12:38:43 2008 +0100
51009
51010     Minor coding style cleanup.
51011
51012     Signed-off-by: Wolfgang Denk <wd@denx.de>
51013
51014 commit e174ac34adf5d5653df12bc3cf19c52063a71269
51015 Author: Stefan Roese <sr@denx.de>
51016 Date:   Fri Dec 28 17:29:56 2007 +0100
51017
51018     ppc4xx: Coding style cleanup
51019
51020     Signed-off-by: Stefan Roese <sr@denx.de>
51021
51022 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
51023 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51024 Date:   Fri Dec 28 17:07:24 2007 +0100
51025
51026     ppc4xx: Complete PMC440 board support
51027
51028     This patch brings the PMC440 board configuration file.
51029     Finally it enables the PMC440 board support.
51030
51031     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51032
51033 commit 407843a582560fc5231299561ab3c2b6b6cd3397
51034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51035 Date:   Fri Dec 28 17:07:18 2007 +0100
51036
51037     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
51038
51039     This patch adds some BSP commands and FPGA booting support
51040     for esd's PMC440 boards.
51041
51042     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51043
51044 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
51045 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51046 Date:   Fri Dec 28 17:07:14 2007 +0100
51047
51048     ppc4xx: Add initial esd PMC440 board files
51049
51050     This patch adds the first files for the new esd PMC440 boards.
51051     The next two patches will complete the PMC440 board support.
51052
51053     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51054
51055 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
51056 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51057 Date:   Fri Dec 28 17:10:36 2007 +0100
51058
51059     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
51060
51061     - add EEPROM write protection for esd PLU405 boards.
51062     - initialize NAND GPIOs
51063     - use correct io accessors
51064     - cleanup
51065
51066     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51067
51068 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
51069 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51070 Date:   Fri Dec 28 17:10:44 2007 +0100
51071
51072     ppc4xx: use correct io accessors for esd's LCD code
51073
51074     This patch fixes esd's LCD dectection code to work correctly with
51075     newer gcc versions.
51076
51077     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51078
51079 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
51080 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51081 Date:   Fri Dec 28 17:10:42 2007 +0100
51082
51083     ppc4xx: Maintenance patch for VOH405 boards
51084
51085     - add EEPROM write protection
51086     - initialize NAND GPIOs
51087     - use correct io accessors
51088     - slow down I2C clock to 100kHz
51089     - enable ext. I2C bus
51090     - cleanup
51091
51092     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51093
51094 commit c05569066dbcba3fdf36d4d1943df265dc316a86
51095 Author: Stefan Roese <sr@denx.de>
51096 Date:   Fri Dec 28 16:08:08 2007 +0100
51097
51098     ppc4xx: Enable 405EP PCI arbiter per default on all boards
51099
51100     In an attmemt to clean up the 4xx start.S file, I removed the enabling
51101     of the internal 405EP PCI arbiter. This is needed for multiple other
51102     405EP platforms, like most of the esd 405EP. Now the internal PCI
51103     arbiter is enabled again per default as it has been before.
51104
51105     Signed-off-by: Stefan Roese <sr@denx.de>
51106     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51107
51108 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
51109 Author: Stefan Roese <sr@denx.de>
51110 Date:   Fri Dec 28 15:53:46 2007 +0100
51111
51112     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
51113
51114     Signed-off-by: Stefan Roese <sr@denx.de>
51115     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51116
51117 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
51118 Author: Stefan Roese <sr@denx.de>
51119 Date:   Fri Dec 28 06:06:04 2007 +0100
51120
51121     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
51122
51123     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
51124     platforms mentioned above.
51125
51126     Signed-off-by: Stefan Roese <sr@denx.de>
51127
51128 commit b568fd25574181a3b12ae3d66b2913903442cb83
51129 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51130 Date:   Thu Dec 27 17:03:46 2007 +0100
51131
51132     Remove CPCI440 board
51133
51134     This board never left prototyping state and it
51135     became a millstone round my neck. So remove it.
51136
51137     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51138
51139 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
51140 Author: Larry Johnson <lrj@arlinx.com>
51141 Date:   Thu Dec 27 11:28:51 2007 -0500
51142
51143     Add support for Korat PPC440EPx board
51144
51145     These patches add support for the PPC440EPx-based "Korat" board to
51146     U-Boot.  They are based primarily on support for the Sequoia board.
51147
51148     Signed-off-by: Larry Johnson <lrj@acm.org>
51149
51150 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
51151 Author: Larry Johnson <lrj@arlinx.com>
51152 Date:   Sat Dec 22 15:16:25 2007 -0500
51153
51154     Add configuration file for Korat board
51155
51156     This patch supplies the configuration file for the Korat PPC440EPx-
51157     processor board.
51158
51159     Signed-off-by: Larry Johnson <lrj@acm.org>
51160
51161 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
51162 Author: Larry Johnson <lrj@arlinx.com>
51163 Date:   Sat Dec 22 15:16:11 2007 -0500
51164
51165     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
51166
51167     Signed-off-by: Larry Johnson <lrj@acm.org>
51168
51169 commit aba19604d848b2838cfb9ebe818909e6a216058e
51170 Author: Larry Johnson <lrj@arlinx.com>
51171 Date:   Thu Dec 27 10:54:48 2007 -0500
51172
51173     Add 440EPx DDR2 SPD DIMM support
51174
51175     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
51176     controller.  It should also work on the 440GRx.  It is based on the DDR2
51177     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
51178
51179     This code has been tested on prototype Korat boards with three Kingston
51180     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
51181     (two ranks).  The Korat board has a single DIMM socket, but support has
51182     been provided (though not tested) for boards with two DIMM sockets.
51183
51184     Signed-off-by: Larry Johnson <lrj@acm.org>
51185
51186 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
51187 Author: Larry Johnson <lrj@arlinx.com>
51188 Date:   Sat Dec 22 15:15:30 2007 -0500
51189
51190     Copy 440EPx/GRx SDRAM data-eye search to common directory
51191
51192     This patch creates a non-board-specific file for performing the SDRAM
51193     data-eye search.  It also adds ECC error checking to the test of valid
51194     data on readback when ECC is enabled.
51195
51196     Signed-off-by: Larry Johnson <lrj@acm.org>
51197
51198 commit c46f53333b22b1f9098676bea8884fc7db820cf3
51199 Author: Larry Johnson <lrj@arlinx.com>
51200 Date:   Sat Dec 22 15:15:13 2007 -0500
51201
51202     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
51203
51204     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
51205     It also fixes two typos in the definitions, so the board-specific
51206     "sdram.h" files containing these definitions are also fixed to avoid
51207     compiler warnings.
51208
51209     Signed-off-by: Larry Johnson <lrj@acm.org>
51210
51211 commit c348578bf612d0c56d8d376d23cae16defbd86af
51212 Author: Larry Johnson <lrj@arlinx.com>
51213 Date:   Thu Dec 27 10:50:55 2007 -0500
51214
51215     Add Ethernet 1000BASE-X support for PPC4xx
51216
51217     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
51218     is defined, the PHY will advertise it's capabilities for autonegotiation
51219     based on the capabilities shown in the PHY's status registers, including
51220     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
51221     advertise hard-coded capabilities, as before.
51222
51223     Signed-off-by: Larry Johnson <lrj@acm.org>
51224
51225 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
51226 Author: Larry Johnson <lrj@arlinx.com>
51227 Date:   Thu Dec 27 09:52:17 2007 -0500
51228
51229     Add driver for National Semiconductor LM73 temperature sensor
51230
51231     This driver is based on the driver for the LM75.
51232
51233     Signed-off-by: Larry Johnson <lrj@acm.org>
51234
51235 commit 12618278688ea9b3d76536960a5ad2e3790fac40
51236 Author: Larry Johnson <lrj@arlinx.com>
51237 Date:   Sat Dec 22 15:14:00 2007 -0500
51238
51239     Add driver for STMicroelectronics M41T60 RTC
51240
51241     This driver is based on the driver for the M41T11.  In the intended
51242     application, the RTC will be powered by a large capacitor, rather than a
51243     battery.  The driver therefore checks to see whether the RTC has lost
51244     power.  The chip's OUT bit is normally reset from its power-up state.  If
51245     the OUT bit is read as set, or if the date and time are not valid, then the
51246     RTC is assumed to have lost power, and its date and time are reset to
51247     1900-01-01 00:00:00.
51248
51249     Support for adjusting the speed of the clock to improve accuracy is
51250     provided through an environment variable.
51251
51252     Signed-off-by: Larry Johnson <lrj@acm.org>
51253
51254 commit d3471173e14b7544bb60339eda8d3d3906694b0a
51255 Author: Larry Johnson <lrj@arlinx.com>
51256 Date:   Sat Dec 22 15:34:39 2007 -0500
51257
51258     Use out_be32() and friends to access memory-mapped registers in sequoia.c
51259
51260     Signed-off-by: Larry Johnson <lrj@acm.org>
51261
51262 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
51263 Author: Larry Johnson <lrj@arlinx.com>
51264 Date:   Sat Dec 22 15:34:20 2007 -0500
51265
51266     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
51267
51268     Signed-off-by: Larry Johnson <lrj@acm.org>
51269
51270 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
51271 Author: Larry Johnson <lrj@arlinx.com>
51272 Date:   Sat Dec 22 15:23:50 2007 -0500
51273
51274     Cosmetic changes to ECC POST for AMCC Denali core
51275
51276     Signed-off-by: Larry Johnson <lrj@acm.org>
51277
51278 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
51279 Author: Stefan Roese <sr@denx.de>
51280 Date:   Wed Dec 26 20:20:19 2007 +0100
51281
51282     ppc4xx: Fix compilation problem in 405 cache POST test
51283
51284     Signed-off-by: Stefan Roese <sr@denx.de>
51285
51286 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
51287 Author: Stefan Roese <sr@denx.de>
51288 Date:   Sat Dec 22 12:20:09 2007 +0100
51289
51290     ppc4xx: Move virtual address of POST cache test to bigger address
51291
51292     On Sequoia & LWMON5 the virtual address of the POST cache test is now
51293     moved to a bigger address. This enables usage of more memory on those
51294     boards.
51295
51296     Signed-off-by: Stefan Roese <sr@denx.de>
51297
51298 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
51299 Author: Stefan Roese <sr@denx.de>
51300 Date:   Sat Dec 22 12:18:26 2007 +0100
51301
51302     ppc4xx: Fix problem in 44x cache POST routine
51303
51304     As repoted by Larry Johnson, running "diag run cache" caused a crash
51305     in U-Boot. This problem was introduced by a patch that removed the
51306     TLB entry for the cache test after the test has completed. Since this
51307     TLB was only setup once, a 2nd attempt to run this cache test
51308     failed with a crash. Now this TLB entry is created every time the
51309     routine is called.
51310
51311     Signed-off-by: Stefan Roese <sr@denx.de>
51312
51313 commit b0265b576bb8fa9465f99e99c323768b562fadc2
51314 Author: Stefan Roese <sr@denx.de>
51315 Date:   Fri Dec 21 07:51:29 2007 +0100
51316
51317     ppc4xx: Update Makalu fdt support
51318
51319     Signed-off-by: Stefan Roese <sr@denx.de>
51320
51321 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
51322 Author: Stefan Roese <sr@denx.de>
51323 Date:   Wed Dec 19 09:05:40 2007 +0100
51324
51325     ppc4xx: Add fdt support to AMCC Katmai eval board
51326
51327     Signed-off-by: Stefan Roese <sr@denx.de>
51328
51329 commit 328a340392a5df9aaf00792be989df73e750859e
51330 Author: Stefan Roese <sr@denx.de>
51331 Date:   Tue Dec 18 08:44:51 2007 +0100
51332
51333     ppc4xx: fdt: Cleanup setup of cpu node setup
51334
51335     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
51336     without using the absolute path to the cpu node. This makes it possible
51337     to use this U-Boot version with both versions of cpu-node naming
51338     "cpu@0" and the former "PowerPC,440EPx@0".
51339
51340     Signed-off-by: Stefan Roese <sr@denx.de>
51341
51342 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
51343 Author: Stefan Roese <sr@denx.de>
51344 Date:   Mon Dec 17 17:26:21 2007 +0100
51345
51346     ppc4xx: Fix lwmon5 compilation problem
51347
51348     Now that the 440EPx ECC test is not board specific anymore
51349     remove this Makefile.
51350
51351     Signed-off-by: Stefan Roese <sr@denx.de>
51352
51353 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
51354 Author: Anatolij Gustschin <agustschin@t-online.de>
51355 Date:   Wed Dec 5 17:43:20 2007 +0100
51356
51357     Fix ppc4xx clear_bss() code
51358
51359     ppc4xx clear_bss() fails if BSS segment size is not
51360     divisible by 4 without remainder. This patch provides
51361     fix for this problem.
51362
51363     Signed-off-by: Anatolij Gustschin <agust@denx.de>
51364
51365 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
51366 Author: Niklaus Giger <niklausgiger@gmx.ch>
51367 Date:   Fri Nov 30 18:35:11 2007 +0100
51368
51369     PPC4xx: Minimal changes to add vxWorks support
51370
51371     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
51372
51373 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
51374 Author: Markus Klotzbücher <mk@denx.de>
51375 Date:   Fri Nov 23 13:09:18 2007 +0100
51376
51377     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
51378
51379     When using dhcp/bootp the "netmask" environment variable is not
51380     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
51381     desireable, so the following patch adds this this option to the board
51382     config.
51383
51384     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51385     Signed-off-by: Stefan Roese <sr@denx.de>
51386
51387 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
51388 Author: Larry Johnson <lrj@arlinx.com>
51389 Date:   Sat Oct 27 12:48:15 2007 -0400
51390
51391     Fix/enhance ECC POST for 440EPx/GRx
51392
51393     This patch allows the ECC POST to be used for different boards with the
51394     PPC440 Denali SDRAM controller.  Modifications include skipping the test
51395     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
51396     to prevent timing errors.
51397
51398     Signed-off-by: Larry Johnson <lrj@acm.org>
51399
51400 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
51401 Author: Larry Johnson <lrj@arlinx.com>
51402 Date:   Sat Oct 27 12:48:05 2007 -0400
51403
51404     PPC4xx: Move/rename ECC POST for 440EPx/GRx
51405
51406     Signed-off-by: Larry Johnson <lrj@acm.org>
51407
51408 commit c29d2d3680046d430022c55e50fcb27f5866517e
51409 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51410 Date:   Fri Dec 14 11:20:33 2007 +0100
51411
51412     ppc4xx: use correct io accessors for 4xx ethernet POST
51413
51414     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51415
51416 commit ba79fde58a48c0a6ff8e2a96caba951594142203
51417 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51418 Date:   Fri Dec 14 11:19:56 2007 +0100
51419
51420     ppc4xx: fix flush + invalidate_dcache_range arguments
51421
51422     flush + invalidate_dcache_range() expect the start and stop+1 address.
51423     So the stop address is the first address behind (!) the range.
51424
51425     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51426
51427 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
51428 Author: Stefan Roese <sr@denx.de>
51429 Date:   Fri Dec 14 08:41:29 2007 +0100
51430
51431     ppc4xx: fdt: use fdt_fixup_ethernet()
51432
51433     By using aliases in the dts file, the ethernet node fixup is
51434     much easier with the recently added functions.
51435
51436     Please note that the dts file needs the aliases for this to work.
51437
51438     Signed-off-by: Stefan Roese <sr@denx.de>
51439
51440 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
51441 Author: Stefan Roese <sr@denx.de>
51442 Date:   Thu Dec 13 14:52:53 2007 +0100
51443
51444     ppc4xx: Bring 4xx fdt support up-to-date
51445
51446     This patch update the 4xx fdt support. It enabled fdt booting
51447     on the AMCC Kilauea and Sequoia for now. More can follow later
51448     quite easily.
51449
51450     Signed-off-by: Stefan Roese <sr@denx.de>
51451
51452 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
51453 Author: Stefan Roese <sr@denx.de>
51454 Date:   Thu Dec 27 07:50:54 2007 +0100
51455
51456     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
51457
51458     The check for an sufficiently erased destination was missing in the
51459     buffered write function of the cfi flash driver (when
51460     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
51461     writing to such a region will fail with the currect error message.
51462
51463     Signed-off-by: Stefan Roese <sr@denx.de>
51464
51465 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
51466 Author: Martin Krause <martin.krause@tqs.de>
51467 Date:   Mon Nov 12 10:56:17 2007 +0100
51468
51469     Some configuration updates for the TQM5200 based TB5200 board:
51470
51471     - enable command line history
51472     - increase malloc space (because of bigger flash sectors)
51473
51474     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51475
51476 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
51477 Author: Martin Krause <martin.krause@tqs.de>
51478 Date:   Thu Sep 27 11:10:08 2007 +0200
51479
51480     TQM8xx: use the CFI flash driver on all TQM8xx boards
51481
51482     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51483
51484 commit 11d9eec479b470eab9242ab937fca70a876d9376
51485 Author: Martin Krause <martin.krause@tqs.de>
51486 Date:   Wed Sep 26 17:55:56 2007 +0200
51487
51488     TQM885D: adjust for doubled flash sector size + some minor fixes
51489
51490     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51491
51492 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
51493 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
51494 Date:   Wed Sep 26 17:55:54 2007 +0200
51495
51496     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
51497
51498     CAS-Latency=2, Write Recovery Time tWR=2
51499     The max. supported bus frequency is 66 MHz. Therefore, changed
51500     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
51501
51502     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51503
51504 commit b988b8cd443989be65161888eea0127ad03f846f
51505 Author: Martin Krause <martin.krause@tqs.de>
51506 Date:   Wed Sep 26 17:55:56 2007 +0200
51507
51508     TQM885D: use calculated cpuclk instead of measuring it
51509
51510     On the TQM885D the measurement of cpuclk with the PIT reference
51511     timer ist not necessary. Since all module variants use the same
51512     external 10 MHz oscillator, the cpuclk only depends on the PLL
51513     configuration - which is readable by software.
51514
51515     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51516
51517 commit 492c7049869348d31168de8dad89651315e468e0
51518 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
51519 Date:   Thu Sep 27 14:54:46 2007 +0200
51520
51521     TQM885D: fix SDRAM refresh
51522
51523     At 133 MHz the current SDRAM refresh rate is too fast
51524     (measured 4 * 1.17 us).
51525     CFG_MAMR_PTA changes from 39 to 128. This result
51526     in a refresh rate of 4 * 7.8 us at the default clock
51527     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
51528     This is a compromise until a new method is found to
51529     adjust the refresh rate.
51530
51531     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51532
51533 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
51534 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
51535 Date:   Thu Sep 27 14:54:46 2007 +0200
51536
51537     TQM860M: Support for 10col SDRAMs, max. 128 MiB
51538
51539     Signed-off-by: Martin Krause <martin.krause@tqs.de>
51540
51541 commit 61fb15c516fef5631e305f1976d7b3a679725856
51542 Author: Wolfgang Denk <wd@denx.de>
51543 Date:   Thu Dec 27 01:52:50 2007 +0100
51544
51545     Fix coding style issues; update CHANGELOG.
51546
51547     Signed-off-by: Wolfgang Denk <wd@denx.de>
51548
51549 commit 467bcee11fe26ad422f2de971aa70866079870f2
51550 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51551 Date:   Fri Dec 14 15:36:18 2007 +0100
51552
51553     cfi_flash: Add manufacturer-specific fixups
51554
51555     Run fixups based on the JEDEC manufacturer ID independent of the
51556     command set ID.
51557
51558     This changes current behaviour: Previously, geometry reversal for AMD
51559     chips were done based on the command set ID, while they are now done
51560     based on the JEDEC manufacturer and device ID.
51561
51562     Also add fixup for top-boot Atmel chips. A fixup is needed for
51563     AT49BV6416(T) too, but since u-boot currently only reads the low byte
51564     of the device ID, there's no way to tell it apart from AT49BV642D,
51565     which should not have this fixup. Since AT49BV642D support is
51566     necessary to get ATNGW100 board support into mainline, I've commented
51567     out the fixup for now.
51568
51569     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51570
51571 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
51572 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51573 Date:   Fri Dec 14 15:36:17 2007 +0100
51574
51575     cfi_flash: Add cmdset-specific init functions
51576
51577     Move things like reading JEDEC IDs and fixing up geometry reversal
51578     into separate functions. The geometry reversal fixup is now performed
51579     by altering the qry structure directly, which makes the sector init
51580     code slightly cleaner.
51581
51582     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51583
51584 commit e23741f4a6d8047520ef0d4971762749b3587d32
51585 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51586 Date:   Fri Dec 14 15:36:16 2007 +0100
51587
51588     cfi_flash: Read whole QRY structure in one go
51589
51590     Read out the whole CFI Standard Query structure after successful cfi
51591     identification. This allows subsequent code to access this information
51592     directly without having to go through flash_read_uchar() and friends.
51593
51594     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51595
51596 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
51597 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51598 Date:   Mon Dec 17 11:02:44 2007 +0100
51599
51600     AVR32: Fix logic inversion in disable_interrupts()
51601
51602     disable_interrupts() should return nonzero if interrupts were
51603     _enabled_ before, not disabled.
51604
51605     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51606
51607 commit acac475212cbedb17b321a363a1c878e2b47b37f
51608 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51609 Date:   Fri Dec 14 16:51:22 2007 +0100
51610
51611     AVR32: Enable interrupts at bootup
51612
51613     The timer code depends on the timer interrupt to keep track of the
51614     upper 32 bits of the cycle counter. This obviously doesn't work when
51615     interrupts are disabled the whole time.
51616
51617     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51618
51619 commit 9570bcd87f4db255514f43b6701746c412f8fef0
51620 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51621 Date:   Thu Nov 15 10:03:45 2007 +0100
51622
51623     AVR32: Fix wrong pin setup for USART3
51624
51625     As reported by Gerhard Berghofer:
51626
51627     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
51628     instead of PB18 and PB19.
51629
51630     which is obviously correct. There's currently no code that uses
51631     USART3, but custom boards may run into problems.
51632
51633     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51634
51635 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
51636 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51637 Date:   Thu Nov 1 12:44:20 2007 +0100
51638
51639     README: Remove ATSTK1000 daughterboard list
51640
51641     As noted by Kim Phillips, these lists tend to become out of date.
51642
51643     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51644
51645 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
51646 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51647 Date:   Tue Oct 30 14:56:36 2007 +0100
51648
51649     Add ATSTK100[234] to MAINTAINERS
51650
51651     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
51652     "mother". Also update the entry for ATSTK1000 to be not only about the
51653     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
51654
51655     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51656
51657 commit 64ff2357b1727213803591813dbc779c924bf772
51658 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51659 Date:   Mon Oct 29 13:02:54 2007 +0100
51660
51661     AVR32: Add support for the ATSTK1004 board
51662
51663     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
51664     which is a derivative of AT32AP7000.
51665
51666     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51667
51668 commit 667568db157f374b85abd7e03596ddd1f0b25681
51669 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51670 Date:   Mon Oct 29 13:02:54 2007 +0100
51671
51672     AVR32: Add support for the ATSTK1003 board
51673
51674     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
51675     which is a derivative of AT32AP7000.
51676
51677     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51678
51679 commit 5fee84a794a51ec830548cda485a770efb018b92
51680 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51681 Date:   Mon Oct 29 13:23:33 2007 +0100
51682
51683     AVR32: Make some AT32AP700x peripherals optional
51684
51685     Add a chip-features file providing definitions of the form
51686
51687     AT32AP700x_CHIP_HAS_<peripheral>
51688
51689     to indicate the availability of the given peripheral on the currently
51690     selected chip.
51691
51692     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51693
51694 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
51695 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51696 Date:   Mon Oct 29 13:09:56 2007 +0100
51697
51698     AVR32: Rename at32ap7000 -> at32ap700x
51699
51700     The SoC-specific code for all the AT32AP700x CPUs is practically
51701     identical; the only difference is that some chips have less features
51702     than others. By doing this rename, we can add support for the AP7000
51703     derivatives simply by making some features conditional.
51704
51705     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51706
51707 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
51708 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51709 Date:   Fri Jun 29 18:22:34 2007 +0200
51710
51711     atmel_mci: Show SR when block read fails
51712
51713     Show controller status as well as card status when an error occurs
51714     during block read.
51715
51716     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51717
51718 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
51719 Author: Stefan Roese <sr@denx.de>
51720 Date:   Thu Dec 13 14:52:53 2007 +0100
51721
51722     ppc4xx: Bring 4xx fdt support up-to-date
51723
51724     This patch update the 4xx fdt support. It enabled fdt booting
51725     on the AMCC Kilauea and Sequoia for now. More can follow later
51726     quite easily.
51727
51728     Signed-off-by: Stefan Roese <sr@denx.de>
51729
51730 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
51731 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51732 Date:   Thu Dec 13 12:56:34 2007 +0100
51733
51734     cfi_flash: Use map_physmem() and unmap_physmem()
51735
51736     Use map_physmem() and unmap_physmem() to convert from physical to
51737     virtual addresses. This gives the arch a chance to provide an uncached
51738     mapping for flash accesses.
51739
51740     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51741
51742 commit 4d7d6936eb29af7cca330937808312aa5f61454d
51743 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51744 Date:   Thu Dec 13 12:56:33 2007 +0100
51745
51746     Introduce map_physmem() and unmap_physmem()
51747
51748     map_physmem() returns a virtual address which can be used to access a
51749     given physical address without involving the cache. unmap_physmem()
51750     should be called when the virtual address returned by map_physmem() is
51751     no longer needed.
51752
51753     This patch adds a stub implementation which simply returns the
51754     physical address cast to a uchar * for all architectures except AVR32,
51755     which converts the physical address to an uncached virtual mapping.
51756     unmap_physmem() is a no-op on all architectures, but if any
51757     architecture needs to do such mappings through the TLB, this is the
51758     hook where those TLB entries can be invalidated.
51759
51760     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51761
51762 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
51763 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51764 Date:   Thu Dec 13 12:56:32 2007 +0100
51765
51766     cfi_flash: Introduce read and write accessors
51767
51768     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
51769     them to access the flash memory. This makes it clearer when the flash
51770     is actually being accessed; merely dereferencing a volatile pointer
51771     looks just like any other kind of access.
51772
51773     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51774
51775 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
51776 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51777 Date:   Thu Dec 13 12:56:31 2007 +0100
51778
51779     Implement __raw_{read,write}[bwl] on all architectures
51780
51781     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
51782     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
51783     from Linux.
51784
51785     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51786
51787 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
51788 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51789 Date:   Sat Oct 6 18:55:36 2007 +0200
51790
51791     cfi_flash: Reorder functions and eliminate extra prototypes
51792
51793     Reorder the functions in cfi_flash.c so that each function only uses
51794     functions that have been defined before it. This allows the static
51795     prototype declarations near the top to be eliminated and might allow
51796     gcc to do a better job inlining functions.
51797
51798     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51799
51800 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
51801 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51802 Date:   Thu Dec 13 12:56:29 2007 +0100
51803
51804     cfi_flash: Make some needlessly global functions static
51805
51806     Make functions not declared in any header file static.
51807
51808     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51809
51810 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
51811 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51812 Date:   Thu Dec 13 12:56:28 2007 +0100
51813
51814     cfi_flash: Break long lines
51815
51816     This patch tries to keep all lines in the cfi_flash driver below 80
51817     columns. There are a few lines left which don't fit this requirement
51818     because I couldn't find any trivial way to break them (i.e. it would
51819     take some restructuring, which I intend to do in a later patch.)
51820
51821     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51822
51823 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
51824 Author: Bartlomiej Sieka <tur@semihalf.com>
51825 Date:   Tue Dec 11 13:59:57 2007 +0100
51826
51827     CFI: synchronize command offsets with Linux CFI driver
51828
51829     Fixes non-working CFI Flash on the Inka4x0 board.
51830
51831     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51832
51833 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
51834 Author: Kumar Gala <galak@kernel.crashing.org>
51835 Date:   Fri Dec 7 12:17:34 2007 -0600
51836
51837     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
51838
51839     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
51840     (MPC8544DS, MPC8548CDS, MPC8568MDS).
51841
51842     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51843
51844 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
51845 Author: Kumar Gala <galak@kernel.crashing.org>
51846 Date:   Fri Dec 7 12:04:30 2007 -0600
51847
51848     Update Freescale MPC85xx ADS/CDS/MDS board config
51849
51850     * Enabled CONFIG_CMD_ELF
51851
51852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51853
51854 commit d435793229ce29a42797c1edc39f5b34f987f91a
51855 Author: Kumar Gala <galak@kernel.crashing.org>
51856 Date:   Fri Dec 7 04:59:26 2007 -0600
51857
51858     Handle Asynchronous DDR clock on 85xx
51859
51860     The MPC8572 introduces the concept of an asynchronous DDR clock with
51861     regards to the platform clock.
51862
51863     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
51864     mode.
51865
51866     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51867
51868 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
51869 Author: Kumar Gala <galak@kernel.crashing.org>
51870 Date:   Thu Nov 29 10:34:28 2007 -0600
51871
51872     Update Freescale MPC85xx ADS/CDS/MDS board config
51873
51874     * Removed some misc environment setup
51875     * Enabled CONFIG_CMDLINE_EDITING
51876
51877     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51878
51879 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
51880 Author: Kumar Gala <galak@kernel.crashing.org>
51881 Date:   Thu Nov 29 10:47:44 2007 -0600
51882
51883     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
51884
51885     Minor path corrections needed to ensure buildability.
51886
51887     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51888
51889 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
51890 Author: Kumar Gala <galak@kernel.crashing.org>
51891 Date:   Thu Nov 29 10:16:18 2007 -0600
51892
51893     Move the MPC8540 ADS board under board/freescale.
51894
51895     Minor path corrections needed to ensure buildability.
51896
51897     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51898
51899 commit 870ceac5b3a3486c109396e005af81ae762b5710
51900 Author: Kumar Gala <galak@kernel.crashing.org>
51901 Date:   Thu Nov 29 10:14:50 2007 -0600
51902
51903     Move the MPC8560 ADS board under board/freescale.
51904
51905     Minor path corrections needed to ensure buildability.
51906
51907     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51908
51909 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
51910 Author: Kumar Gala <galak@kernel.crashing.org>
51911 Date:   Thu Nov 29 10:13:47 2007 -0600
51912
51913     Move the MPC8568 MDS board under board/freescale.
51914
51915     Minor path corrections needed to ensure buildability.
51916
51917     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51918
51919 commit a853d56c59b33415304531443633808736acfc6e
51920 Author: Kumar Gala <galak@kernel.crashing.org>
51921 Date:   Thu Nov 29 02:18:59 2007 -0600
51922
51923     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
51924
51925     We already had defines for LAWAR_TRGT_IF_* that we should use
51926     rather than creating new ones.  Also, added some missing defines for
51927     PCIE targets.
51928
51929     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51930
51931 commit 04db400892da37b76a585e332a0c137954ad2015
51932 Author: Kumar Gala <galak@kernel.crashing.org>
51933 Date:   Thu Nov 29 02:10:09 2007 -0600
51934
51935     Stop using immap_t on 85xx
51936
51937     In the future the offsets to various blocks may not be in same location.
51938     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
51939     instead of getting it via &immap.
51940
51941     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51942
51943 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
51944 Author: Kumar Gala <galak@kernel.crashing.org>
51945 Date:   Thu Nov 29 01:23:09 2007 -0600
51946
51947     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
51948
51949     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51950
51951 commit c480861bf000156e6a3e932c258db59ff2212dd3
51952 Author: Kumar Gala <galak@kernel.crashing.org>
51953 Date:   Thu Nov 29 01:06:19 2007 -0600
51954
51955     Update MPC8568 MDS to use libfdt
51956
51957     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
51958     ethernet, pci, and serial for the various fixups that are done.
51959
51960     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51961
51962 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
51963 Author: Haiying Wang <Haiying.Wang@freescale.com>
51964 Date:   Wed Nov 14 15:52:06 2007 -0500
51965
51966     Add PCI Express support on MPC8568MDS
51967
51968     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
51969     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51970
51971 commit b90d25497625b90ffa3f2911a0895ca237556ff5
51972 Author: Kumar Gala <galak@kernel.crashing.org>
51973 Date:   Thu Nov 29 00:11:44 2007 -0600
51974
51975     Update MPC85xx CDS to use libfdt
51976
51977     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
51978     ethernet, pci, and serial for the various fixups that are done.
51979
51980     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51981
51982 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
51983 Author: Kumar Gala <galak@kernel.crashing.org>
51984 Date:   Wed Nov 28 22:54:27 2007 -0600
51985
51986     Update MPC8540 ADS to use libfdt
51987
51988     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
51989     ethernet, pci, and serial for the various fixups that are done.
51990
51991     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51992
51993 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
51994 Author: Kumar Gala <galak@kernel.crashing.org>
51995 Date:   Wed Nov 28 22:40:31 2007 -0600
51996
51997     Update MPC8560 ADS to use libfdt
51998
51999     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
52000     ethernet, pci, and serial for the various fixups that are done.
52001
52002     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52003
52004 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
52005 Author: Kumar Gala <galak@kernel.crashing.org>
52006 Date:   Wed Nov 28 00:36:33 2007 -0600
52007
52008     Stop using immap_t for cpm offset on 85xx
52009
52010     In the future the offsets to various blocks may not be in same location.
52011     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
52012     instead of getting it via &immap->im_cpm.
52013
52014     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52015
52016 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
52017 Author: Kumar Gala <galak@kernel.crashing.org>
52018 Date:   Tue Nov 27 23:25:02 2007 -0600
52019
52020     Stop using immap_t for guts offset on 85xx
52021
52022     In the future the offsets to various blocks may not be in same location.
52023     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
52024     instead of getting it via &immap->im_gur.
52025
52026     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52027
52028 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
52029 Author: Kumar Gala <galak@kernel.crashing.org>
52030 Date:   Tue Nov 27 22:42:34 2007 -0600
52031
52032     Update MPC8544 DS config
52033
52034     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
52035     * Removed some misc environment setup
52036     * Moved to using fdtfile & fdtaddr as fdt env var names
52037     * Enabled CONFIG_CMDLINE_EDITING
52038
52039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52040
52041 commit addce57e2e4c49e77ffb2020a84690713bb18b47
52042 Author: Kumar Gala <galak@kernel.crashing.org>
52043 Date:   Mon Nov 26 17:12:24 2007 -0600
52044
52045     Update MPC8544DS to use libfdt
52046
52047     Updated the MPC8544DS config to use libfdt and assume use of aliases for
52048     ethernet, pci, and serial for the various fixups that are done.
52049
52050     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52051
52052 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
52053 Author: Kumar Gala <galak@kernel.crashing.org>
52054 Date:   Thu Nov 29 00:15:30 2007 -0600
52055
52056     Add libfdt based ft_cpu_setup for mpc85xx
52057
52058     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52059
52060 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
52061 Author: Stefan Roese <sr@denx.de>
52062 Date:   Tue Dec 11 13:38:19 2007 +0100
52063
52064     ppc4xx: Correct GPIO offset in gpio_config()
52065
52066     Thanks to Gary Jennejohn for pointing this out.
52067
52068     Signed-off-by: Stefan Roese <sr@denx.de>
52069
52070 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
52071 Author: Stefan Roese <sr@denx.de>
52072 Date:   Tue Dec 11 11:46:01 2007 +0100
52073
52074     rtc: Fix merging problem
52075
52076     Signed-off-by: Stefan Roese <sr@denx.de>
52077
52078 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
52079 Author: Stefan Roese <sr@denx.de>
52080 Date:   Sat Dec 8 14:47:34 2007 +0100
52081
52082     ppc4xx: 405EX: Correctly enable USB pins
52083
52084     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
52085     function control) registers. This is done for the AMCC Kilauea and
52086     Makalu eval boards.
52087
52088     Signed-off-by: Stefan Roese <sr@denx.de>
52089
52090 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
52091 Author: Stefan Roese <sr@denx.de>
52092 Date:   Sat Dec 8 08:25:09 2007 +0100
52093
52094     CFI: Coding style cleanup
52095
52096     Signed-off-by: Stefan Roese <sr@denx.de>
52097
52098 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
52099 Author: Michael Schwingen <michael@schwingen.org>
52100 Date:   Fri Dec 7 23:35:02 2007 +0100
52101
52102     CFI: support JEDEC flash roms in CFI-flash framework
52103
52104     The following patch adds support for non-CFI flash ROMS, by hooking into the
52105     CFI flash code and using most of its code, as recently discussed here in the
52106     thread "Mixing CFI and non-CFI flashs".
52107
52108     Signed-off-by: Michael Schwingen <michael@schwingen.org>
52109     Signed-off-by: Stefan Roese <sr@denx.de>
52110
52111 commit c01b17dd856fa120b2970f50d9598546a4927ec3
52112 Author: Gerald Van Baren <vanbaren@cideas.com>
52113 Date:   Wed Nov 28 21:24:50 2007 -0500
52114
52115     Conditionally compile fdt_fixup_ethernet()
52116
52117     Fix compiler warnings: On boards that don't have ethernets defined,
52118     don't compile fdt_fixup_ethernet().
52119
52120 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
52121 Author: Kumar Gala <galak@kernel.crashing.org>
52122 Date:   Tue Nov 27 21:59:46 2007 -0600
52123
52124     Convert boards that set memory node to use fdt_fixup_memory()
52125
52126     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52127
52128 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
52129 Author: Kumar Gala <galak@kernel.crashing.org>
52130 Date:   Mon Nov 26 17:06:15 2007 -0600
52131
52132     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
52133
52134     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
52135     determine which serial alias we should set linux,stdout-path to.
52136
52137     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52138
52139 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
52140 Author: Kumar Gala <galak@kernel.crashing.org>
52141 Date:   Mon Nov 26 14:57:45 2007 -0600
52142
52143     Add common memory fixup function
52144
52145     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
52146
52147     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52148
52149 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
52150 Author: Kumar Gala <galak@kernel.crashing.org>
52151 Date:   Mon Nov 26 11:19:12 2007 -0600
52152
52153     Conditionally compile fdt_support.c
52154
52155     Modify common/Makefile to conditionally compile fdt_support.c based
52156     on CONFIG_OF_LIBFDT.
52157
52158     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52159
52160 commit d88e7ba0980773479e1a64badb293116071b7ef0
52161 Author: Kumar Gala <galak@kernel.crashing.org>
52162 Date:   Mon Nov 26 10:41:40 2007 -0600
52163
52164     Fix build breakage due to libfdt import
52165
52166     The IDS8247 got lost in the update and need an API update
52167     do to rename of functions in libfdt.
52168
52169     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52170
52171 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
52172 Author: Gerald Van Baren <vanbaren@cideas.com>
52173 Date:   Fri Nov 23 19:43:20 2007 -0500
52174
52175     Add spaces around the = in the fdt print format.
52176
52177     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52178
52179 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
52180 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52181 Date:   Fri Dec 7 01:25:38 2007 +0900
52182
52183     sh: Moved driver of the SuperH dependence
52184
52185     The composition of the directory in the drivers/ changed.
52186     I moved SuperH serial driver and marubun PCMCIA driver.
52187
52188     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52189
52190 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
52191 Author: Wolfgang Denk <wd@denx.de>
52192 Date:   Thu Dec 6 10:21:19 2007 +0100
52193
52194     Release v1.3.1
52195
52196     Signed-off-by: Wolfgang Denk <wd@denx.de>
52197
52198 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
52199 Author: Wolfgang Denk <wd@denx.de>
52200 Date:   Thu Dec 6 10:21:03 2007 +0100
52201
52202     ADS5121 Board: fix compile problem.
52203
52204     Signed-off-by: Wolfgang Denk <wd@denx.de>
52205
52206 commit a27044b14a9e93678a82d7b35f202b93e7687abc
52207 Author: Stefan Roese <sr@denx.de>
52208 Date:   Thu Dec 6 05:58:43 2007 +0100
52209
52210     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
52211
52212     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
52213     setting the FIXD bit in the SDR0_MFR register. Here a description of the
52214     symptoms:
52215
52216     Problem Description
52217     ------------------------------
52218     If a DMA is performed between memory and PCI with the DMA 1 Controller
52219     using prefetch, and as a result uses a special purpose buffer selected by
52220     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
52221     the first part of the transfer sequence is performed twice. The
52222     PPC440SPe PCI Controller requests more data than was needed such that in
52223     the case of enforce memory protection, a host CPU  exception can occur.
52224     No data is corrupted, because data transfer is stopped in the PCI
52225     Controller. Prefetch enable is specified by setting DMA Configuration
52226     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
52227
52228     Behavior that may be observed in a running system
52229     ---------------------------------------------------------------------------
52230
52231     1. DMA performance is decreased because of the double access on the PCI bus
52232     interface.
52233     2. If an illegal access to some address on the PCI bus is detected at the
52234     system level, a machine check or similar system error may occur.
52235
52236     Workarounds Available
52237     ----------------------------------
52238
52239     1. Do not program prefetch. Note that a prefetch command cannot be programmed
52240     without selecting a special purpose buffer.
52241     2. To avoid crossing a physical boundary of the PCI slave device, add 512
52242     bytes of address to the PCI address range.
52243
52244     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
52245     from AMCC and slighly changed.
52246
52247     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
52248     Signed-off-by: Stefan Roese <sr@denx.de>
52249
52250 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
52251 Author: Stefan Roese <sr@denx.de>
52252 Date:   Tue Dec 4 16:29:48 2007 +0100
52253
52254     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
52255
52256     Signed-off-by: Stefan Roese <sr@denx.de>
52257
52258 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
52259 Author: Wolfgang Denk <wd@denx.de>
52260 Date:   Mon Dec 3 00:15:28 2007 +0100
52261
52262     Prepare for 1.3.1-rc1
52263
52264     Signed-off-by: Wolfgang Denk <wd@denx.de>
52265
52266 commit e15e33433e7c05111968dc9b434a52fd42cbd221
52267 Author: Stefan Roese <sr@denx.de>
52268 Date:   Fri Nov 30 07:15:41 2007 +0100
52269
52270     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
52271
52272     This manual PCIe reset triggering solves the problem seen with the
52273     Intel EPRO/1000 card, which was not detected (link not established)
52274     upon power-up reset.
52275
52276     Signed-off-by: Stefan Roese <sr@denx.de>
52277
52278 commit 260eea5676ca46903a335686cc020b29c4ca46fe
52279 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52280 Date:   Thu Nov 29 01:21:54 2007 +0900
52281
52282     sh: Add SuperH boards maintainer to MAINTAINERS file
52283
52284     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
52285
52286     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52287
52288 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
52289 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52290 Date:   Thu Nov 29 00:13:04 2007 +0900
52291
52292     sh: Add ms7750se support in MAKEALL
52293
52294     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52295
52296 commit c7144373427a178332bf9754131c8c34c52c200a
52297 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52298 Date:   Tue Nov 27 09:44:53 2007 +0100
52299
52300     sh: Add sh3 and sh4 support in MAKEALL
52301
52302     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52303     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52304
52305 commit 130080874a3d28450098481a262c5f7c855e908d
52306 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52307 Date:   Sun Nov 25 02:51:17 2007 +0900
52308
52309     sh: Add document for SuperH.
52310
52311     This document is a summary of information concerning SuperH of U-Boot.
52312
52313     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52314
52315 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
52316 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52317 Date:   Sun Nov 25 02:39:31 2007 +0900
52318
52319     sh: Add marubun's pcmcia driver
52320
52321     Marubun pcmcia is a chip for PCMCIA used with SuperH.
52322     Of course, this can be used even by other architectures.
52323     When use this driver, came to be able to use CompactFlash
52324     and Ethernet.
52325
52326     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52327
52328 commit febd86b969b975289ed948f1ac0eb9722da41ced
52329 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52330 Date:   Sun Nov 25 02:32:13 2007 +0900
52331
52332     sh: Update SuperH SCIF driver
52333
52334     - Changed volatile unsigned to vu_.
52335     - Changed Makefile for kconfig.
52336
52337     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52338
52339 commit 8be760903645af09871be50ad0a6f9ebb62b311d
52340 Author: Stefan Roese <sr@denx.de>
52341 Date:   Tue Nov 27 11:57:35 2007 +0100
52342
52343     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
52344
52345     After an error in the AMCC 405EX users manual now correctly configure
52346     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
52347     usage.
52348
52349     Signed-off-by: Stefan Roese <sr@denx.de>
52350
52351 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
52352 Author: Wolfgang Denk <wd@denx.de>
52353 Date:   Mon Nov 26 19:18:21 2007 +0100
52354
52355     Cleanup coding style; update CHANGELOG
52356
52357     Signed-off-by: Wolfgang Denk <wd@denx.de>
52358
52359 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
52360 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52361 Date:   Sun Nov 25 22:39:25 2007 +0100
52362
52363     MAKEALL: add missing 512x boards in ppc
52364
52365     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52366
52367 commit a340c325e668ca7386c2276387681720be9c3757
52368 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52369 Date:   Sun Nov 25 18:45:47 2007 +0100
52370
52371     Makefile : fix tags ctags etags with new drivers organization
52372
52373     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52374
52375 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
52376 Author: Stefan Roese <sr@denx.de>
52377 Date:   Mon Nov 26 15:06:14 2007 +0100
52378
52379     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
52380
52381     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
52382     operation.
52383
52384     Signed-off-by: Stefan Roese <sr@denx.de>
52385
52386 commit ca1ce226287270bb01e25b8e3674c701f12edf19
52387 Author: Stefan Roese <sr@denx.de>
52388 Date:   Mon Nov 26 15:01:45 2007 +0100
52389
52390     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
52391
52392     Signed-off-by: Stefan Roese <sr@denx.de>
52393
52394 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
52395 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52396 Date:   Sun Nov 25 18:45:47 2007 +0100
52397
52398     Makefile : fix tags ctags etags with new drivers organization
52399
52400     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52401
52402 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
52403 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52404 Date:   Sat Nov 24 21:26:56 2007 +0100
52405
52406     drivers/mtd : move mtd drivers to drivers/mtd
52407
52408     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52409
52410 commit 318c0b90431f2648552e5ade78833f42652ce859
52411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52412 Date:   Sat Nov 24 21:17:55 2007 +0100
52413
52414     drivers/misc : move misc drivers to drivers/misc
52415
52416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52417
52418 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
52419 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52420 Date:   Sat Nov 24 21:13:59 2007 +0100
52421
52422     drivers/block : move block drivers to drivers/block
52423
52424     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52425
52426 commit 0c698dcaa70275eb8814f665b545547cee013892
52427 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52428 Date:   Sat Nov 24 20:59:50 2007 +0100
52429
52430     drivers/rtc : move rtc drivers to drivers/rtc
52431
52432     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52433
52434 commit f868cc5a50757d94f36c312395481cb0f187d9e6
52435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52436 Date:   Sat Nov 24 20:14:44 2007 +0100
52437
52438     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
52439
52440     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52441
52442 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
52443 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52444 Date:   Sat Nov 24 19:46:45 2007 +0100
52445
52446     drivers/input : move input drivers to drivers/input
52447
52448     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52449
52450 commit e4558666293364fc3af1c1d9381ca933fa0f1275
52451 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52452 Date:   Sat Nov 24 19:40:11 2007 +0100
52453
52454     drivers/usb : move usb drivers to drivers/usb
52455
52456     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52457
52458 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
52459 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52460 Date:   Sat Nov 24 19:33:38 2007 +0100
52461
52462     drivers/serial : move serial drivers to drivers/serial
52463
52464     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52465
52466 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
52467 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52468 Date:   Wed Nov 21 21:19:24 2007 +0100
52469
52470     drivers/net : move net drivers to drivers/net
52471
52472     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52473
52474 commit 352d259130b349fe9593b8dada641bd78a9659e5
52475 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52476 Date:   Tue Nov 20 20:41:48 2007 +0100
52477
52478     drivers/video : move video drivers to drivers/video
52479
52480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52481
52482 commit 73646217186aa17afc8e305c5f06f06dd335eaad
52483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52484 Date:   Tue Nov 20 20:33:09 2007 +0100
52485
52486     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
52487
52488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52489
52490 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
52491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52492 Date:   Tue Nov 20 20:28:09 2007 +0100
52493
52494     drivers/pci : move pci drivers to drivers/pci
52495
52496     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52497
52498 commit 9162352817579840d7802da6d85872b3ca003c97
52499 Author: Gerald Van Baren <vanbaren@cideas.com>
52500 Date:   Thu Nov 22 17:23:23 2007 -0500
52501
52502     Fix fdt printing for updated libfdt
52503
52504     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
52505
52506     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52507
52508 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
52509 Author: Kumar Gala <galak@kernel.crashing.org>
52510 Date:   Wed Nov 21 13:30:15 2007 -0600
52511
52512     Add additional fdt fixup helper functions
52513
52514     Added the following fdt fixup helpers:
52515      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
52516      * do_fixup_by_compat{_u32} - Find matching nodes by compat
52517
52518     The _u32 variants work the same only the property they are setting
52519     is know to be a 32-bit integer instead of a byte buffer.
52520
52521     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52522
52523 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
52524 Author: Kumar Gala <galak@kernel.crashing.org>
52525 Date:   Wed Nov 21 11:11:03 2007 -0600
52526
52527     Add fdt_fixup_ethernet helper to set mac addresses
52528
52529     Added a fixup helper that uses aliases to set mac addresses
52530     in the device tree based on the bd_t
52531
52532     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52533
52534 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
52535 Author: Kumar Gala <galak@kernel.crashing.org>
52536 Date:   Wed Nov 21 14:07:46 2007 -0600
52537
52538     Fix warnings from import of libfdt
52539
52540     cmd_fdt.c: In function fdt_print:
52541     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
52542     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
52543     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
52544     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
52545
52546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52547
52548 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
52549 Author: Kumar Gala <galak@kernel.crashing.org>
52550 Date:   Wed Oct 24 11:04:22 2007 -0500
52551
52552     Update libfdt from device tree compiler (dtc)
52553
52554     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
52555     the device tree compiler (dtc) project.
52556
52557     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52558
52559 commit e93becf80d732b64aef81b23e8b6ece02c40533d
52560 Author: Kumar Gala <galak@kernel.crashing.org>
52561 Date:   Sat Nov 3 19:46:28 2007 -0500
52562
52563     Move do_fixup* for libfdt into common code
52564
52565     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
52566     into common/fdt_support.c and renamed:
52567
52568     do_fixup()  -> do_fixup_by_path()
52569     do_fixup_u32()      -> do_fixup_by_path_u32()
52570
52571     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52572
52573 commit f738b4a75998f42a7408defadc9baac7a31c92db
52574 Author: Kumar Gala <galak@kernel.crashing.org>
52575 Date:   Thu Oct 25 16:15:07 2007 -0500
52576
52577     Make no options to fdt print default to '/'
52578
52579     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52580
52581 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
52582 Author: Kumar Gala <galak@kernel.crashing.org>
52583 Date:   Wed Oct 24 10:21:57 2007 -0500
52584
52585     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
52586
52587     Removed:
52588         fdt_node_is_compatible
52589         fdt_find_node_by_type
52590         fdt_find_compatible_node
52591
52592     To ease merge of newer libfdt as we aren't using them anywhere at this time.
52593
52594     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
52595     reason.
52596
52597     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52598
52599 commit 98e2867cc85409b919f862e6c16026461ec955df
52600 Author: Grant Likely <grant.likely@secretlab.ca>
52601 Date:   Wed Nov 21 09:19:37 2007 -0700
52602
52603     [BUILD] Remove libraries when updating autoconf.mk
52604
52605     Fix library problems caused by conditional compilation.  Using
52606     autoconf.mk to decide which files to compile has caused a problem when
52607     changing configuration from one board to another without clearing out
52608     the library (*.a) files.
52609
52610     It used to be that the linker was always passed the same list of .o
52611     files when building the .a files.  However, that is not longer true
52612     with conditional compilation.  Now, a different board config will have
52613     a different file list passed to the linker.  The problem occurs when
52614     a library has already been built and the board config is changed.
52615
52616     Since the linker will update instead of replace a preexisting library,
52617     then if the file list changes to remove some object files the old
52618     objects will still exist in the library.
52619
52620     The solution is to remove all old library files when autoconf.mk is
52621     made.
52622
52623     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52624
52625 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
52626 Author: Kumar Gala <galak@kernel.crashing.org>
52627 Date:   Wed Nov 21 08:49:50 2007 -0600
52628
52629     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
52630
52631     Modify libfdt/Makefile to conditionally compile the *.c files based
52632     on the board config.
52633
52634     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52635
52636 commit 4a43719a7738712811d822ca8125427b27a55cdc
52637 Author: Grant Likely <grant.likely@secretlab.ca>
52638 Date:   Mon Sep 24 09:05:31 2007 -0600
52639
52640     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
52641
52642     Modify common/Makefile to conditionally compile the cmd_*.c files based
52643     on the board config.
52644
52645     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52646
52647 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
52648 Author: Grant Likely <grant.likely@secretlab.ca>
52649 Date:   Mon Sep 24 09:05:31 2007 -0600
52650
52651     [BUILD] Generate include/autoconf.mk from board config files
52652
52653     Use cpp and sed to postprocess config.h and import the defined values
52654     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
52655     give 'make' access to the board configuration.
52656
52657     Doing this enables conditional compilation at the Makefile level instead
52658     of by wrapping every .c file with #ifdef/#endif wrappers.
52659
52660     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52661
52662 commit 68b88999da87ab88e71e1306192905be3450198e
52663 Author: Jon Loeliger <jdl@freescale.com>
52664 Date:   Tue Nov 20 15:02:26 2007 -0600
52665
52666     8610HPCD: Enable the 8610 Display Interface Unit
52667
52668     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52669
52670 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
52671 Author: Jon Loeliger <jdl@freescale.com>
52672 Date:   Tue Nov 20 15:00:53 2007 -0600
52673
52674     Move 8610 DIU interface structure definitions to header file.
52675
52676     These two structures are still needed during the
52677     initialization and setup of the DIU hardware.
52678     So move them to the fsl_diu_fb.h file for now.
52679     Official "blah".
52680
52681     Noticed-by: York Sun <yorksun@freescale.com>
52682     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52683
52684 commit 080c646dbf474a109c3f85718fb01ce042a38c45
52685 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52686 Date:   Tue Nov 20 20:14:18 2007 +0100
52687
52688     drivers/i2c : move i2c drivers to drivers/i2c
52689
52690     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52691
52692 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
52693 Author: Wolfgang Denk <wd@denx.de>
52694 Date:   Mon Nov 19 22:20:24 2007 +0100
52695
52696     Prepare for 1.3.0 release.
52697
52698     Signed-off-by: Wolfgang Denk <wd@denx.de>
52699
52700 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
52701 Author: Haiying Wang <Haiying.Wang@freescale.com>
52702 Date:   Mon Nov 19 10:02:13 2007 -0500
52703
52704     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
52705
52706     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
52707
52708     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
52709
52710 commit f8c320609366176b31104d9bf5e295232e1c7f1d
52711 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
52712 Date:   Mon Nov 19 11:14:16 2007 +0900
52713
52714     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
52715
52716     lowlevel_init.S: Assembler messages:
52717     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
52718
52719     Looking at codes, the `memtest' and `clearmem' are intentional mixed
52720     use of `global symbols' and `label' for debugging purpose. To make it
52721     build, just disable global-symbols-use for now. As a result `memtest'
52722     still remains as unused, but leave it be...
52723
52724     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
52725
52726 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
52727 Author: Wolfgang Denk <wd@denx.de>
52728 Date:   Mon Nov 19 12:59:14 2007 +0100
52729
52730     Fix build problems with mp2usb board
52731
52732     Signed-off-by: Wolfgang Denk <wd@denx.de>
52733
52734 commit 6bf4c686afca1e86e1c384d59218f914605713bf
52735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52736 Date:   Sun Nov 18 18:36:11 2007 +0100
52737
52738     s3c24x0: Fix usb_ohci.c missing in Makefile
52739     and usb_ohci.c warning differ in signedness
52740
52741     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52742
52743 commit 6073f61e078da5ddb521b56256bcc36508589883
52744 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52745 Date:   Sun Nov 18 12:55:02 2007 +0100
52746
52747     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
52748
52749     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52750
52751 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
52752 Author: Wolfgang Denk <wd@denx.de>
52753 Date:   Sun Nov 18 17:11:09 2007 +0100
52754
52755     Fix compiler warnings for ARM systems.
52756
52757     Signed-off-by: Wolfgang Denk <wd@denx.de>
52758
52759 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
52760 Author: Wolfgang Denk <wd@denx.de>
52761 Date:   Sun Nov 18 16:36:27 2007 +0100
52762
52763     Fix compiler warnings for PPC systems. Update CHANGELOG.
52764
52765     Signed-off-by: Wolfgang Denk <wd@denx.de>
52766
52767 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
52768 Author: Stefan Roese <sr@denx.de>
52769 Date:   Sun Nov 18 14:44:44 2007 +0100
52770
52771     ppc4xx: Correct 405EX PCIe UTL register mapping
52772
52773     Map 4k mem space for UTL registers for each port.
52774
52775     Signed-off-by: Stefan Roese <sr@denx.de>
52776
52777 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
52778 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52779 Date:   Sat Nov 17 11:31:10 2007 +0100
52780
52781     Fix warning differ in signedness in net/net.c and net/nfs.c
52782
52783 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
52784 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52785 Date:   Sat Nov 17 20:42:45 2007 +0900
52786
52787     gth2.c: Fix a warning on gth2 build.
52788
52789     gth2.c: In function 'misc_init_r':
52790     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
52791
52792     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52793
52794 commit 2309c130aa4c84b91bd874a41269c923eb61b555
52795 Author: Stefan Roese <sr@denx.de>
52796 Date:   Sat Nov 17 07:58:25 2007 +0100
52797
52798     Fix warning differ in signedness in common/cmd_scsi.c
52799
52800     Signed-off-by: Stefan Roese <sr@denx.de>
52801
52802 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
52803 Author: Stefan Roese <sr@denx.de>
52804 Date:   Sat Nov 17 14:52:29 2007 +0100
52805
52806     ppc4xx: Update AMCC Kilauea config file
52807
52808     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
52809
52810     Signed-off-by: Stefan Roese <sr@denx.de>
52811
52812 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
52813 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52814 Date:   Sat Nov 17 20:05:26 2007 +0900
52815
52816     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
52817
52818     Current trick to pick up GNU assembler minor version does not work with the
52819     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
52820     "(GNU Binutils) ".
52821
52822       $ sde-as --version |grep "GNU assembler"
52823       GNU assembler 2.15.94 mipssde-6.02.02-20050602
52824       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
52825       2.15.94
52826       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
52827       15
52828       $
52829
52830       $ mips-linux-as --version |grep "GNU assembler"
52831       GNU assembler (GNU Binutils) 2.18
52832       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
52833       (GNU
52834       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
52835       (no output)
52836       $
52837
52838     As a result of above, you'll see many noises with such binutils:
52839
52840       make -C cpu/mips/
52841       /bin/sh: line 0: [: : integer expression expected
52842       /bin/sh: line 0: [: : integer expression expected
52843       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
52844       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
52845       /bin/sh: line 0: [: : integer expression expected
52846       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
52847       /bin/sh: line 0: [: : integer expression expected
52848       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
52849       /bin/sh: line 0: [: : integer expression expected
52850
52851     This patch simplifies the trick and makes it work with both versions of gas.
52852     I also replace an expensive `awk (or gawk)' with `cut'.
52853
52854     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52855
52856 commit 16664f72850846e645616da1c0fa5afcd6d15f15
52857 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52858 Date:   Sat Nov 17 20:05:26 2007 +0900
52859
52860     [MIPS] Remove useless instructions for initializing $gp.
52861
52862     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52863
52864 commit 03c031d5660ea946c39af6e2e16267da857c609f
52865 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52866 Date:   Sat Oct 27 15:27:06 2007 +0900
52867
52868     [MIPS] MIPS 4K core: Coding style cleanups
52869
52870     No logical changes.
52871
52872     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52873
52874 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
52875 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52876 Date:   Sat Nov 17 20:05:20 2007 +0900
52877
52878     [MIPS] gth2.c: Fix a warning on gth2 build.
52879
52880     gth2.c: In function 'misc_init_r':
52881     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
52882
52883     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52884
52885 commit 4fbd0741b2b6441da10be93e10267122581b7079
52886 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52887 Date:   Sat Oct 27 15:22:33 2007 +0900
52888
52889     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
52890
52891     au1x00_eth.c: In function 'au1x00_miiphy_write':
52892     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
52893
52894     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52895
52896 commit f01320459736f156707425cf8112f98606301aa4
52897 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52898 Date:   Sat Oct 27 15:00:25 2007 +0900
52899
52900     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
52901
52902     au1x00_eth.c: In function 'au1x00_enet_initialize':
52903     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
52904     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
52905     au1x00_eth.c:246: error: for each function it appears in.)
52906     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
52907     au1x00_eth.c: In function 'au1x00_miiphy_write':
52908     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
52909     make[1]: *** [au1x00_eth.o] Error 1
52910
52911     Fixed by moving these two functions forward.
52912
52913     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52914
52915 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
52916 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52917 Date:   Sat Oct 27 15:00:25 2007 +0900
52918
52919     MAKEALL: Added missing pb1000 board
52920
52921     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52922
52923 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
52924 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52925 Date:   Sat Oct 27 15:00:24 2007 +0900
52926
52927     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
52928
52929     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52930
52931 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
52932 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52933 Date:   Sat Oct 27 15:00:24 2007 +0900
52934
52935     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
52936
52937     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52938
52939 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
52940 Author: Wolfgang Denk <wd@denx.de>
52941 Date:   Sat Nov 17 02:34:38 2007 +0100
52942
52943     Update CHANGELOIG, prepare for -rc4
52944
52945     Signed-off-by: Wolfgang Denk <wd@denx.de>
52946
52947 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
52948 Author: Luotao Fu <l.fu@pengutronix.de>
52949 Date:   Wed Nov 14 18:58:33 2007 +0100
52950
52951     Fix the i2c frequency and default address in rsdproto board
52952
52953     rsdproto board support has wrong I2C frequency and wrong return value
52954     handling.
52955
52956     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
52957
52958 commit 429c180edad038f91c989cb14b478228092e7054
52959 Author: Wolfgang Denk <wd@denx.de>
52960 Date:   Sat Nov 17 01:45:38 2007 +0100
52961
52962     powerpc: Backout relocation changes for MPC5121, too.
52963
52964     Apply Grant Likely's backout to MPC5121 code, too.
52965
52966     Pointed out by Rafal Jaworowski <raj@semihalf.com>
52967
52968     Signed-off-by: Wolfgang Denk <wd@denx.de>
52969
52970 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
52971 Author: Grant Likely <grant.likely@secretlab.ca>
52972 Date:   Tue Nov 13 22:18:33 2007 -0700
52973
52974     powerpc: Backout relocation changes.
52975
52976     Ugh.  I *hate* to back this change out, but these compiler flags don't
52977     work for relocation on all versions of GCC.  I've not been able to
52978     reproduce the environment in my setup (and hence, not been able to
52979     find a combination that *does* work), so I've got no choice but to go
52980     back to the old gcc flags and linker script.
52981
52982     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52983
52984 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
52985 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52986 Date:   Tue Nov 13 09:11:05 2007 +0100
52987
52988     Fixed mips_io_port_base build errors.
52989
52990     This patch has been sent on:
52991     - 29 Sep 2007
52992
52993     Although mips_io_port_base is currently a part of IDE command, it is quite
52994     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
52995     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
52996
52997     This patch is triggered by multiple definition of `mips_io_port_base' build
52998     error on gth2 (and tb0229 also needs this fix.)
52999
53000     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
53001     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
53002     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
53003     make: *** [u-boot] Error 1
53004
53005     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53006     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53007
53008 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
53009 Author: Wolfgang Denk <wd@denx.de>
53010 Date:   Sat Nov 17 01:30:40 2007 +0100
53011
53012     Fix a bug in the slave serial programming mode for the Xilinx
53013     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
53014     the most significant bit was set, which did not work on any
53015     architecture where "char" defaulted to be an unsigned type.
53016
53017     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
53018
53019     Signed-off-by: Wolfgang Denk <wd@denx.de>
53020
53021 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
53022 Author: Jon Loeliger <jdl@freescale.com>
53023 Date:   Thu Nov 1 12:23:29 2007 -0500
53024
53025     86xx: Fix broken variable reference when #def DEBUGing.
53026
53027     Sometimes you can't reference the DDR2 controller variables.
53028
53029     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53030
53031 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
53032 Author: Jason Jin <Jason.jin@freescale.com>
53033 Date:   Fri Oct 26 18:32:00 2007 +0800
53034
53035     make 8610 board use pixis reset
53036
53037     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53038
53039 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
53040 Author: Jason Jin <Jason.jin@freescale.com>
53041 Date:   Mon Oct 29 19:26:21 2007 +0800
53042
53043     Unify pixis_reset altbank across board families
53044
53045     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
53046     into the separate board config files.
53047
53048     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53049     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53050
53051 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
53052 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53053 Date:   Wed Nov 7 08:19:21 2007 +0100
53054
53055     Fix warning: pointer targets in assignment differ in signedness
53056
53057     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53058
53059 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
53060 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53061 Date:   Wed Nov 7 08:19:19 2007 +0100
53062
53063     Fix warning differ in signedness in common/cmd_ide.c
53064
53065     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53066
53067 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
53068 Author: Stefan Roese <sr@denx.de>
53069 Date:   Fri Nov 16 14:16:54 2007 +0100
53070
53071     ppc4xx: Enable 405EX PCIe UTL register configuration
53072
53073     Till now the UTL registers on 405EX were not initialized but left with
53074     their default values. This patch new initializes some of the UTL
53075     registers on 405EX.
53076
53077     Signed-off-by: Stefan Roese <sr@denx.de>
53078
53079 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
53080 Author: Stefan Roese <sr@denx.de>
53081 Date:   Fri Nov 16 14:00:59 2007 +0100
53082
53083     ppc4xx: Update AMCC Makalu for board rev 1.1
53084
53085     This patch adds changes needed for Makalu rev 1.1:
53086
53087     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
53088     - Enable 2nd ethernet port EMAC1
53089     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
53090     - Reset PCIe ports via GPIO upon bootup
53091
53092     Signed-off-by: Stefan Roese <sr@denx.de>
53093
53094 commit 4d4faae65e115e327425cd514c1a35146a85166b
53095 Author: Grant Likely <grant.likely@secretlab.ca>
53096 Date:   Mon Sep 24 09:05:31 2007 -0600
53097
53098     Group PCI and PCMCIA drivers in drivers/Makefile
53099
53100     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53101
53102 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
53103 Author: Grant Likely <grant.likely@secretlab.ca>
53104 Date:   Mon Sep 24 09:05:31 2007 -0600
53105
53106     Group block/flash drivers in drivers/Makefile
53107
53108     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53109
53110 commit df58c81551700f058b44cacf55a7997fa63bfe0a
53111 Author: Grant Likely <grant.likely@secretlab.ca>
53112 Date:   Mon Sep 24 09:05:31 2007 -0600
53113
53114     Group USB drivers in drivers/Makefile
53115
53116     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53117
53118 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
53119 Author: Grant Likely <grant.likely@secretlab.ca>
53120 Date:   Mon Sep 24 09:05:30 2007 -0600
53121
53122     Group i2c drivers in drivers/Makefile
53123
53124     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53125
53126 commit ec00c76de0e5971273905998d62d6bb119324218
53127 Author: Grant Likely <grant.likely@secretlab.ca>
53128 Date:   Mon Sep 24 09:05:30 2007 -0600
53129
53130     Group console drivers in drivers/Makefile
53131
53132     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53133
53134 commit 754f230aa01b8c789fc31f8013c2487954073300
53135 Author: Grant Likely <grant.likely@secretlab.ca>
53136 Date:   Mon Sep 24 09:05:30 2007 -0600
53137
53138     Group network drivers in drivers/Makefile
53139
53140     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53141
53142 commit f0037c56b0d12cd46215124667b9f83d60ef9391
53143 Author: Grant Likely <grant.likely@secretlab.ca>
53144 Date:   Mon Sep 24 09:05:30 2007 -0600
53145
53146     Build: split COBJS value into multiple lines
53147
53148     This change is in preparation for condtitionial compile support in the
53149     build system.  By spliting them all into seperate lines now, subsequent
53150     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
53151     be less invasive and easier to review
53152
53153     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53154
53155 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
53156 Author: Grant Likely <grant.likely@secretlab.ca>
53157 Date:   Mon Sep 24 09:05:30 2007 -0600
53158
53159     Add .gitignore files
53160
53161     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53162     Acked-by: Kim Phillips <kim.phillips@freescale.com>
53163
53164 commit 955413f35f054a82e40042f1dbcf501c6a05719b
53165 Author: Grant Likely <grant.likely@secretlab.ca>
53166 Date:   Thu Nov 15 08:27:52 2007 -0700
53167
53168     Revert "Correct relocation fixup for mpc5xx"
53169
53170     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
53171     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53172
53173 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
53174 Author: Grant Likely <grant.likely@secretlab.ca>
53175 Date:   Thu Nov 15 08:24:32 2007 -0700
53176
53177     Revert "Correct fixup relocation for MPC5xxx"
53178
53179     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
53180     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53181
53182 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
53183 Author: Grant Likely <grant.likely@secretlab.ca>
53184 Date:   Thu Nov 15 08:21:04 2007 -0700
53185
53186     Revert "Correct fixup relocation for mpc8220"
53187
53188     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
53189     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53190
53191 commit 70922342369e5e39b286fe21e768a239ca07a514
53192 Author: Grant Likely <grant.likely@secretlab.ca>
53193 Date:   Thu Nov 15 08:20:57 2007 -0700
53194
53195     Revert "Correct fixup relocation for mpc824x"
53196
53197     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
53198     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53199
53200 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
53201 Author: Grant Likely <grant.likely@secretlab.ca>
53202 Date:   Thu Nov 15 08:20:50 2007 -0700
53203
53204     Revert "Correct fixup relocation for mpc8260"
53205
53206     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
53207     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53208
53209 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
53210 Author: Grant Likely <grant.likely@secretlab.ca>
53211 Date:   Thu Nov 15 08:20:43 2007 -0700
53212
53213     Revert "Correct fixup relocation for mpc83xx"
53214
53215     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
53216     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53217
53218 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
53219 Author: Grant Likely <grant.likely@secretlab.ca>
53220 Date:   Thu Nov 15 08:20:25 2007 -0700
53221
53222     Revert "[MPC512x] Correct fixup relocation"
53223
53224     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
53225     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53226
53227 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
53228 Author: Stefan Roese <sr@denx.de>
53229 Date:   Thu Nov 15 14:25:09 2007 +0100
53230
53231     ppc4xx: Small AMCC Kilauea cleanup
53232
53233     Remove not needed pci_target_init() function.
53234
53235     Signed-off-by: Stefan Roese <sr@denx.de>
53236
53237 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
53238 Author: Stefan Roese <sr@denx.de>
53239 Date:   Thu Nov 15 14:23:55 2007 +0100
53240
53241     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
53242
53243     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
53244     - Cleanup of the 4xx GPIO functions
53245     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
53246
53247     Signed-off-by: Stefan Roese <sr@denx.de>
53248
53249 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
53250 Author: Stefan Roese <sr@denx.de>
53251 Date:   Thu Nov 15 14:20:08 2007 +0100
53252
53253     ppc4xx: AMCC Taihu board config file cleanup
53254
53255     This patch makes the AMCC Taihu a little more compatible to the other
53256     AMCC eval boards.
53257
53258     Signed-off-by: Stefan Roese <sr@denx.de>
53259
53260 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
53261 Author: Marian Balakowicz <m8@semihalf.com>
53262 Date:   Thu Nov 15 13:37:28 2007 +0100
53263
53264     [INKA4x0] NG hardware: flash support
53265
53266     Disabled and remove inka4x0 custom flash driver, use CFI flash
53267     driver instead.
53268
53269     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53270
53271 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
53272 Author: Marian Balakowicz <m8@semihalf.com>
53273 Date:   Thu Nov 15 13:29:55 2007 +0100
53274
53275     [INKA4x0] NG hardware: SDRAM support
53276
53277     Add support for three new DDR chips that may  be present on a NG
53278     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
53279
53280     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
53281
53282     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53283
53284 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
53285 Author: Marian Balakowicz <m8@semihalf.com>
53286 Date:   Thu Nov 15 13:24:43 2007 +0100
53287
53288     [INKA4x0] NG hardware: platform code update
53289
53290     - Cleanup compile warnings.
53291     - Add missing '\0' in default environment.
53292     - Increase CFG_MONITOR_LEN to 256 KiB.
53293     - Add required CFG_USE_PPCENV.
53294
53295     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53296
53297 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
53298 Author: Peter Pearse <peter.pearse@arm.com>
53299 Date:   Thu Nov 15 08:58:00 2007 +0000
53300
53301     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
53302     Remove warnings re onenand_read() & write()
53303
53304 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
53305 Author: Peter Pearse <peter.pearse@arm.com>
53306 Date:   Thu Nov 15 08:45:13 2007 +0000
53307
53308     Correction patch
53309
53310 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
53311 Author: Roy Zang <tie-fei.zang@freescale.com>
53312 Date:   Thu Sep 13 18:52:28 2007 +0800
53313
53314     Enable ULi1575 Ethernet support in 8610HPCD config
53315
53316     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
53317     Acked-by: Jon Loeliger <jdl@freescale.com>
53318
53319 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
53320 Author: Stefan Roese <sr@denx.de>
53321 Date:   Tue Nov 13 08:18:20 2007 +0100
53322
53323     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
53324
53325     Signed-off-by: Stefan Roese <sr@denx.de>
53326
53327 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
53328 Author: Stefan Roese <sr@denx.de>
53329 Date:   Tue Nov 13 08:06:11 2007 +0100
53330
53331     ppc4xx: Fix 405EX PCIe UTLSET register setup
53332
53333     Signed-off-by: Stefan Roese <sr@denx.de>
53334
53335 commit 1ce55151c85d068f70317a8d65c61058b891afb4
53336 Author: Heiko Schocher <hs@denx.de>
53337 Date:   Tue Nov 13 07:50:29 2007 +0100
53338
53339     [UC101] SRAM now with 2 MB working.
53340
53341     Signed-off-by: Heiko Schocher <hs@denx.de>
53342
53343 commit 2d14684341109a69616e4d6016cd61402d55086f
53344 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53345 Date:   Fri Nov 9 15:37:53 2007 +0100
53346
53347     ppc4xx: Use generic usb-ohci driver for sequoia board
53348
53349     This patch makes the sequoia board use the generic usb-ohci driver
53350     instead of cpu/ppc4xx/usb_ohci.c.
53351
53352     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53353     Signed-off-by: Stefan Roese <sr@denx.de>
53354
53355 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
53356 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53357 Date:   Fri Nov 9 15:37:23 2007 +0100
53358
53359     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
53360
53361     This patch disables the 44x d-cache on 'usb start' and
53362     reenables it on 'usb stop'. This should be seen as a
53363     temporary fix until the generic usb-ohci driver can
53364     life with d-cache enabled.
53365
53366     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53367     Signed-off-by: Stefan Roese <sr@denx.de>
53368
53369 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
53370 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53371 Date:   Fri Nov 9 15:36:44 2007 +0100
53372
53373     ppc4xx: Remove redundant code from 4xx network driver
53374
53375     This patch removes some redundant code and decrements the end
53376     address of cache flush and invalidate by 1.
53377
53378     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53379     Signed-off-by: Stefan Roese <sr@denx.de>
53380
53381 commit 5ca9881aad8c413ac2a82868a5e3719178254502
53382 Author: Peter Pearse <peter.pearse@arm.com>
53383 Date:   Fri Nov 9 15:24:26 2007 +0000
53384
53385     Add apollon board support
53386     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
53387
53388 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
53389 Author: Stefan Roese <sr@denx.de>
53390 Date:   Fri Nov 9 12:19:58 2007 +0100
53391
53392     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
53393
53394     Signed-off-by: Stefan Roese <sr@denx.de>
53395
53396 commit c7f69c340277935a6c19a956421852da944a365f
53397 Author: Stefan Roese <sr@denx.de>
53398 Date:   Fri Nov 9 12:18:54 2007 +0100
53399
53400     ppc4xx: Make output a little shorter on I2C bootrom detection
53401
53402     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
53403     already print a line with the information which I2C bootrom is
53404     used for bootstrap configuration. So we don't need this extra line
53405     with "I2C boot EEPROM en-/dis-abled".
53406
53407     This patch also has a little code cleanup integrated.
53408
53409     Signed-off-by: Stefan Roese <sr@denx.de>
53410
53411 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
53412 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53413 Date:   Thu Nov 8 12:50:18 2007 -0600
53414
53415     ColdFire: MCF5329 - Remove reset registers from CCM
53416
53417     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53418
53419 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
53420 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53421 Date:   Thu Nov 8 12:31:11 2007 -0600
53422
53423     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
53424
53425     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53426
53427 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
53428 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53429 Date:   Thu Nov 8 12:19:01 2007 -0600
53430
53431     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
53432
53433     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53434
53435 commit 225a24b5e062ad94627424508ae814f51dbe1a34
53436 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53437 Date:   Wed Nov 7 18:00:54 2007 -0600
53438
53439     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
53440
53441     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53442
53443 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
53444 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53445 Date:   Wed Nov 7 17:56:15 2007 -0600
53446
53447     ColdFire: MCF532x - Update do_reset() using core reset
53448
53449     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53450
53451 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
53452 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53453 Date:   Wed Nov 7 17:51:00 2007 -0600
53454
53455     ColdFire: Update cpu flag for 4.2-xx compiler
53456
53457     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
53458
53459 commit 070ba56115b4da63b46e974287fa4550d4023386
53460 Author: York Sun <yorksun@freescale.com>
53461 Date:   Wed Oct 31 14:59:04 2007 -0500
53462
53463     8610: Add console frame buffer support to FSL 8610 DIU driver.
53464
53465     Add cfb console support to FSL 8610 DIU driver.
53466     Inspect board version from PIXIS to obtain correct pixel format.
53467
53468     Use #define CONFIG_VIDEO in config file to enable fb console.
53469
53470     To switch monitor, set monitor variable to
53471     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
53472     followed by "diufb init".
53473
53474     Preserve logo bitmap at the top of the fb console.
53475
53476     Signed-off-by: York Sun <yorksun@freescale.com>
53477     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53478
53479 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
53480 Author: York Sun <yorksun@freescale.com>
53481 Date:   Mon Oct 29 13:58:39 2007 -0500
53482
53483     8610: Add 8610 DIU display driver
53484
53485     1280x1024 and 1024x768 @ 32 bpp are supported now.
53486     DVI, Single-link LVDS, Double-link LVDS are all supported.
53487
53488     Environmental variable "monitor" is used to specify monitor port.
53489
53490     A new command "diufb" is introduced to reinitialize monitor
53491     and display a BMP file in the memory. So far, 1-bit, 4-bit,
53492     8-bit and 24-bit BMP formats are supported.
53493
53494         diufb init
53495             - initialize the diu driver
53496         Enable the port specified in the environmental variable "monitor"
53497
53498         diufb addr
53499             - display bmp file in memory.
53500         The bmp image should be no bigger than the resolution, 1280x1024
53501         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
53502
53503     Note, this driver allocate memory but doesn't free it after use
53504     It is written on purpose -- to avoid a failure of reallocation
53505     due to memory fragement.
53506
53507     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
53508
53509     Signed-off-by: York Sun <yorksun@freescale.com>
53510     Signed-off-by: Jon loeliger <jdl@freescale.com>
53511
53512 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
53513 Author: York Sun <yorksun@freescale.com>
53514 Date:   Wed Oct 31 10:43:59 2007 -0500
53515
53516     FSL: Add a freescale bitmap logo.
53517
53518     This Freescale logo is a 340 x 128 x 4bpp BMP file
53519     that can be displayed by the DIU Framebuffer driver.
53520
53521     Signed-off-by: York Sun <yorksun@freescale.com>
53522     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53523
53524 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
53525 Author: York Sun <yorksun@freescale.com>
53526 Date:   Mon Oct 29 13:57:53 2007 -0500
53527
53528     8610: Make some extra debug environment variables conditional.
53529
53530     One may #define ENV_DEBUG to get them back again.
53531
53532     Signed-off-by: York Sun <yorksun@freescale.com>
53533
53534 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
53535 Author: Jason Jin <Jason.jin@freescale.com>
53536 Date:   Mon Oct 29 19:26:21 2007 +0800
53537
53538     8610: Actually enable pixis_reset CONFIGs
53539
53540     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53541
53542 commit f3bceaab230b4748d0afc4109b6837308f018b40
53543 Author: Jason Jin <Jason.jin@freescale.com>
53544 Date:   Fri Oct 26 18:31:59 2007 +0800
53545
53546     Fix the BAT definition of PCI IO on 8610 board
53547
53548     The address in the BAT register is aligned with the BAT size.
53549     The original definition actually did not define BAT for PCIE2 IO.
53550     This patch fix this.
53551
53552     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53553
53554 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
53555 Author: Jason Jin <Jason.jin@freescale.com>
53556 Date:   Mon Oct 29 19:26:21 2007 +0800
53557
53558     Unify pixis_reset altbank across board families
53559
53560     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
53561     into the separate board config files.
53562
53563     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53564     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53565
53566 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
53567 Author: Jason Jin <Jason.jin@freescale.com>
53568 Date:   Fri Oct 26 18:32:00 2007 +0800
53569
53570     make 8610 board use pixis reset
53571
53572     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53573
53574 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
53575 Author: Jon Loeliger <jdl@freescale.com>
53576 Date:   Thu Nov 1 12:23:29 2007 -0500
53577
53578     86xx: Fix broken variable reference when #def DEBUGing.
53579
53580     Sometimes you can't reference the DDR2 controller variables.
53581
53582     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53583
53584 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
53585 Author: Roy Zang <tie-fei.zang@freescale.com>
53586 Date:   Mon Nov 5 17:39:24 2007 +0800
53587
53588     Implement general ULi 526x Ethernet driver support in U-boot
53589
53590     This patch implements general ULi 526x Ethernet driver.
53591     Until now, it is the only native Ethernet port on
53592     MPC8610HPCD board, but it could be used on other boards
53593     with ULi 526x Ethernet port as well.
53594
53595     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
53596     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53597     Acked-by: Jon Loeliger <jdl@freescale.com>
53598     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53599
53600 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
53601 Author: Larry Johnson <lrj@arlinx.com>
53602 Date:   Thu Nov 1 08:46:50 2007 -0500
53603
53604     NET: Add Ethernet 1000BASE-X support for PPC4xx
53605
53606     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
53607     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
53608     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
53609     "mii info" command is modified to distinguish between 1000BASE-T and -X.
53610
53611     Signed-off-by: Larry Johnson <lrj@acm.org>
53612     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53613
53614 commit 298035df4948b113d29ac0e694717d34b95bc5dc
53615 Author: Larry Johnson <lrj@arlinx.com>
53616 Date:   Wed Oct 31 11:21:29 2007 -0500
53617
53618     NET: Cosmetic changes
53619
53620     Signed-off-by: Larry Johnson <lrj@acm.org>
53621     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53622
53623 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
53624 Author: Stefan Roese <sr@denx.de>
53625 Date:   Mon Nov 5 07:43:05 2007 +0100
53626
53627     ppc4xx: Make output a little shorter on PCIe detection
53628
53629     Now not max 3 lines but 2 lines are printed per PCIe port.
53630
53631     Signed-off-by: Stefan Roese <sr@denx.de>
53632
53633 commit 992742a5b09d9040adbd156fb90756af66ade310
53634 Author: Wolfgang Denk <wd@denx.de>
53635 Date:   Sat Nov 3 23:09:27 2007 +0100
53636
53637     Cleanup coding style; update CHANGELOG
53638
53639     Signed-off-by: Wolfgang Denk <wd@denx.de>
53640
53641 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
53642 Author: Bruce Adler <bruce.adler@ccpu.com>
53643 Date:   Fri Nov 2 13:15:42 2007 -0700
53644
53645     fix wording in README
53646
53647     Changed the wording to properly describe the shadowing
53648     of the environment from ROM to RAM
53649
53650     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
53651
53652 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
53653 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53654 Date:   Wed Oct 31 02:18:15 2007 +0900
53655
53656     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
53657
53658     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53659
53660 commit ec22755799466c8a103664bb3a5e647bf9c238f4
53661 Author: Vlad Lungu <vlad@comsys.ro>
53662 Date:   Thu Oct 25 16:08:14 2007 +0300
53663
53664     Trimmed some variables in ne2000.c
53665
53666     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
53667
53668 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
53669 Author: Zhang Wei <wei.zhang@freescale.com>
53670 Date:   Thu Oct 25 17:51:27 2007 +0800
53671
53672     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
53673
53674     The scan code of the key 'z' is 0x1d, which should be handled.
53675
53676     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
53677     controller.
53678
53679     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53680
53681 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
53682 Author: Zhang Wei <wei.zhang@freescale.com>
53683 Date:   Thu Oct 25 17:30:04 2007 +0800
53684
53685     Fix USB support issue for MPC8641HPCN board.
53686
53687     The configuration file has already enabled USB, but it
53688     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
53689     on MPC8641HPCN can not work because of the wrong USB
53690     register endian.
53691
53692     And add the USB command to U-Boot commands list.
53693
53694     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53695
53696 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
53697 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53698 Date:   Wed Oct 24 18:16:01 2007 +0200
53699
53700     Use config_cmd_default.h instead of config_cmd_all.h
53701
53702     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53703
53704 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
53705 Author: Marian Balakowicz <m8@semihalf.com>
53706 Date:   Wed Oct 24 01:37:36 2007 +0200
53707
53708     TQM5200: Call usb_cpu_init() during board init
53709
53710     usb_cpu_init() configures GPS USB pins, clocks, etc. and
53711     is required for proper operation of kernel USB subsystem.
53712     This setup was previously done in the kernel by the fixup
53713     code which is being removed, thus low level init must be
53714     done by U-boot now.
53715
53716     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53717
53718 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
53719 Author: Guennadi Liakhovetski <lg@denx.de>
53720 Date:   Tue Oct 23 16:25:50 2007 +0200
53721
53722     Fix typo in nfs.c
53723
53724     An obvious typo. Originally fixed in linkstation u-boot port.
53725
53726     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
53727
53728 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
53729 Author: Guennadi Liakhovetski <lg@denx.de>
53730 Date:   Tue Oct 23 14:35:05 2007 +0200
53731
53732     Fix a typo in cpu/mpc824x/interrupts.c
53733
53734     Since December 2003 the timer_interrupt_cpu() function in
53735     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
53736     parameter. Remove it.
53737
53738     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
53739
53740 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
53741 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
53742 Date:   Wed Oct 17 11:13:51 2007 +0200
53743
53744     add ft_cpu_setup(..) on mpc8260
53745
53746     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
53747     based on code from mpc5xxx
53748
53749     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
53750     --
53751
53752 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
53753 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
53754 Date:   Wed Oct 17 11:18:42 2007 +0200
53755
53756     changes for IDS8247 board support
53757
53758     To get the IDS8247 board working following are done:
53759      - FCC2 is deactivated
53760      - FCC1 is activated
53761      - I2C is activated
53762      - CFI driver is activated
53763      - Adapted for use with LIBFDT
53764
53765     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
53766     --
53767
53768 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
53769 Author: Stefan Roese <sr@denx.de>
53770 Date:   Sat Nov 3 12:08:28 2007 +0100
53771
53772     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
53773
53774     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
53775     Again, only one image supports both targets.
53776
53777     Signed-off-by: Stefan Roese <sr@denx.de>
53778
53779 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
53780 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
53781 Date:   Wed Oct 24 15:48:37 2007 +0200
53782
53783     ATSTK1002: Remove default ethernet addresses
53784
53785     Wolfgang is right: It's not a good idea to set up default initial
53786     ethernet addresses for a board, even though they belong to the local
53787     range.
53788
53789     This will change the failure mode from "IT manager screams at you for
53790     using duplicate ethernet addresses" to a nice error message explaining
53791     that the ethernet address hasn't been set properly.
53792
53793     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
53794
53795 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
53796 Author: Justin Flammia <jflammia@savantav.com>
53797 Date:   Mon Oct 29 17:40:35 2007 -0400
53798
53799     DHCP Client Fix
53800
53801     This is a multi-part message in MIME format.
53802
53803     commit e6e505eae94ed721e123e177489291fc4544b7b8
53804     Author: Justin Flammia <jflammia@savantav.com>
53805     Date:   Mon Oct 29 17:19:03 2007 -0400
53806
53807         Found a bug in the way the DHCP Request packet is built, where the IP address
53808         that is offered by the server is bound to prematurely. This patch is a fix of
53809         that bug where the IP address offered by the DHCP server is not used until
53810         after the DHCP ACK from the server is received.
53811
53812     Signed-off-by: Justin Flammia <jflammia@savantav.com>
53813     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53814
53815 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
53816 Author: Stefan Roese <sr@denx.de>
53817 Date:   Wed Oct 31 20:58:34 2007 +0100
53818
53819     ppc4xx: Fix acadia_nand build problem
53820
53821     Since the cache handling functions were moved from start.S into cache.S
53822     the acadia NAND booting Makfile needs to be adapted accordingly.
53823
53824     Signed-off-by: Stefan Roese <sr@denx.de>
53825
53826 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
53827 Author: Stefan Roese <sr@denx.de>
53828 Date:   Wed Oct 31 20:57:11 2007 +0100
53829
53830     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
53831
53832     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
53833     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
53834     boards by defining CONFIG_4xx_DCACHE in the board config file. This
53835     option will disappear, when more boards use is successfully and no
53836     more known problems exist.
53837
53838     This is tested successfully on Sequoia and Katmai. The only problem that
53839     needs to be fixed is, that USB is not working on Sequoia right now, since
53840     it will need some cache handling code too, similar to the 4xx EMAC driver.
53841
53842     Signed-off-by: Stefan Roese <sr@denx.de>
53843
53844 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
53845 Author: Stefan Roese <sr@denx.de>
53846 Date:   Wed Oct 31 20:51:10 2007 +0100
53847
53848     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
53849
53850     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
53851     disable the cache for the CPU POST tests, since these tests consist
53852     of self modifying code. This is done via the new change_tlb() function.
53853
53854     Signed-off-by: Stefan Roese <sr@denx.de>
53855
53856 commit f71b2888b4b3c870909a0341427b2a914246f81f
53857 Author: Stefan Roese <sr@denx.de>
53858 Date:   Wed Oct 31 20:47:26 2007 +0100
53859
53860     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
53861
53862     This patch enables the 4xx EMAC POST driver to work too, when dcache is
53863     enabled.
53864
53865     Signed-off-by: Stefan Roese <sr@denx.de>
53866
53867 commit a2685904061b35a17583d65fe47cdc2686a69eaa
53868 Author: Stefan Roese <sr@denx.de>
53869 Date:   Wed Oct 31 20:45:53 2007 +0100
53870
53871     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
53872
53873     Signed-off-by: Stefan Roese <sr@denx.de>
53874
53875 commit ff768cb168d8157c24a25016dbfbeb465e47f420
53876 Author: Stefan Roese <sr@denx.de>
53877 Date:   Wed Oct 31 18:01:24 2007 +0100
53878
53879     ppc4xx: Change 4xx ethernet driver to handle cached memory too
53880
53881     This patch enables the 4xx EMAC driver to work too, when dcache is
53882     enabled.
53883
53884     Signed-off-by: Stefan Roese <sr@denx.de>
53885
53886 commit 483e09a223c666269ef81d3573a6591b1046b0ef
53887 Author: Stefan Roese <sr@denx.de>
53888 Date:   Wed Oct 31 17:59:22 2007 +0100
53889
53890     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
53891
53892     This function is used to either turn cache on or off in a specific
53893     memory area.
53894
53895     Signed-off-by: Stefan Roese <sr@denx.de>
53896
53897 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
53898 Author: Stefan Roese <sr@denx.de>
53899 Date:   Wed Oct 31 17:57:52 2007 +0100
53900
53901     ppc4xx: Remove cache definition from 4xx board config files
53902
53903     All 4xx board config files don't need the cache definitions anymore.
53904     These are now defined in common headers.
53905
53906     Signed-off-by: Stefan Roese <sr@denx.de>
53907
53908 commit 9b94ac61d2176185c30adf0793e079ec30e68687
53909 Author: Stefan Roese <sr@denx.de>
53910 Date:   Wed Oct 31 17:55:58 2007 +0100
53911
53912     ppc4xx: Rework 4xx cache support
53913
53914     New cache handling functions added and all existing functions
53915     moved from start.S into seperate cache.S.
53916
53917     Signed-off-by: Stefan Roese <sr@denx.de>
53918
53919 commit 06713773da4ac3d390c63d82641eb553224b27c2
53920 Author: Stefan Roese <sr@denx.de>
53921 Date:   Tue Oct 23 18:03:12 2007 +0200
53922
53923     ppc4xx: Remove compiler warning from previous commit
53924
53925     Signed-off-by: Stefan Roese <sr@denx.de>
53926
53927 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
53928 Author: Stefan Roese <sr@denx.de>
53929 Date:   Tue Oct 23 14:40:30 2007 +0200
53930
53931     ppc4xx: Remove temporary TLB entry in POST cache test
53932
53933     Signed-off-by: Stefan Roese <sr@denx.de>
53934
53935 commit 1338e6a81834099ba19733b69aafd8ef5f098094
53936 Author: Stefan Roese <sr@denx.de>
53937 Date:   Tue Oct 23 14:05:08 2007 +0200
53938
53939     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
53940
53941     I lately noticed, that newer 4xx board with GBit support sometimes don't
53942     finish link autonegotiation in 4 seconds. Changing this timeout to 5
53943     seconds seems fine here.
53944
53945     Signed-off-by: Stefan Roese <sr@denx.de>
53946
53947 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
53948 Author: Stefan Roese <sr@denx.de>
53949 Date:   Tue Oct 23 14:03:17 2007 +0200
53950
53951     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
53952
53953     This patch changes all in32/out32 calls to use the recommended in_be32/
53954     out_be32 macros instead.
53955
53956     Signed-off-by: Stefan Roese <sr@denx.de>
53957
53958 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
53959 Author: Stefan Roese <sr@denx.de>
53960 Date:   Thu Oct 25 12:24:59 2007 +0200
53961
53962     ppc4xx: Fix POST ethernet test for Haleakala
53963
53964     The POST ethernet test needed to be changed to dynamically determine
53965     the count of ethernet devices. This code is cloned from the 4xx
53966     ethernet driver.
53967
53968     Signed-off-by: Stefan Roese <sr@denx.de>
53969
53970 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
53971 Author: Stefan Roese <sr@denx.de>
53972 Date:   Tue Oct 23 11:31:05 2007 +0200
53973
53974     ppc4xx: Correct UART input clock calculation and passing to fdt
53975
53976     We now use a value in the gd (global data) structure for the UART input
53977     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
53978     in get_sys_info().
53979
53980     Signed-off-by: Stefan Roese <sr@denx.de>
53981
53982 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
53983 Author: Stefan Roese <sr@denx.de>
53984 Date:   Tue Oct 23 10:10:08 2007 +0200
53985
53986     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
53987
53988     The Haleakala is nearly identical with the Kilauea eval board. The only
53989     difference is that the 405EXr only supports one EMAC and one PCIe
53990     interface. This patch adds support for the Haleakala board by using
53991     the identical image for Kilauea and Haleakala. The distinction is done
53992     by comparing the PVR.
53993
53994     Signed-off-by: Stefan Roese <sr@denx.de>
53995
53996 commit 9f798766aa85e62eb8fa8c721e148df609b78137
53997 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
53998 Date:   Tue Oct 23 08:29:10 2007 +0200
53999
54000     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
54001
54002     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
54003
54004     Note:
54005     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
54006     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
54007     modules are still plugged in. So it is recommended to remove the DIMM
54008     modules while using the NAND booting code with the fixed SDRAM setup!
54009
54010     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
54011     Signed-off-by: Stefan Roese <sr@denx.de>
54012
54013 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
54014 Author: Stefan Roese <sr@denx.de>
54015 Date:   Mon Oct 22 16:24:44 2007 +0200
54016
54017     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
54018
54019     Signed-off-by: Stefan Roese <sr@denx.de>
54020
54021 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
54022 Author: Stefan Roese <sr@denx.de>
54023 Date:   Mon Oct 22 16:22:40 2007 +0200
54024
54025     ppc4xx: Rework of 4xx serial driver (4)
54026
54027     Change 4xx_uart.c:
54028
54029     - Use in_8/out_8 macros instead of in8/out8
54030     - No need for UART_BASE marco anymore, now really handled via function
54031       parameter
54032     - serial_init_common() introduced
54033     - Further coding style cleanup
54034
54035     Signed-off-by: Stefan Roese <sr@denx.de>
54036
54037 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
54038 Author: Stefan Roese <sr@denx.de>
54039 Date:   Mon Oct 22 15:45:49 2007 +0200
54040
54041     ppc4xx: Rework of 4xx serial driver (3)
54042
54043     Change all linker scripts to reference the changed driver name iop480_uart.o.
54044
54045     Signed-off-by: Stefan Roese <sr@denx.de>
54046
54047 commit 882ae41274921f9016131806bdeb27e19606f47a
54048 Author: Stefan Roese <sr@denx.de>
54049 Date:   Mon Oct 22 15:44:39 2007 +0200
54050
54051     ppc4xx: Rework of 4xx serial driver (2)
54052
54053     Change all linker scripts to reference the changed driver name 4xx_uart.o.
54054
54055     Note: In most cased all these explicit referencing of these object files
54056     in the linker scripts is not neccessary. Only for manually embedded
54057     environment into the U-Boot image, which is not done is most cases.
54058
54059     Signed-off-by: Stefan Roese <sr@denx.de>
54060
54061 commit ad31e40bed042cb670d0036fea96435007afb838
54062 Author: Stefan Roese <sr@denx.de>
54063 Date:   Mon Oct 22 15:09:59 2007 +0200
54064
54065     ppc4xx: Rework of 4xx serial driver (1)
54066
54067     This patch starts the rework of the PPC4xx serial driver. First we split
54068     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
54069     handling code and the other one iop480_uart.c with the UART code for the
54070     PLX-Tech IOP480 PPC (PPC403 based).
54071
54072     Signed-off-by: Stefan Roese <sr@denx.de>
54073
54074 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
54075 Author: Stefan Roese <sr@denx.de>
54076 Date:   Mon Oct 22 10:30:38 2007 +0200
54077
54078     ppc4xx: Correct UART input clock calculation and passing to fdt
54079
54080     Signed-off-by: Stefan Roese <sr@denx.de>
54081
54082 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
54083 Author: Stefan Roese <sr@denx.de>
54084 Date:   Mon Oct 22 07:34:34 2007 +0200
54085
54086     ppc4xx: Add initial AMCC Makalu 405EX support
54087
54088     Signed-off-by: Stefan Roese <sr@denx.de>
54089
54090 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
54091 Author: Stefan Roese <sr@denx.de>
54092 Date:   Mon Oct 22 07:33:52 2007 +0200
54093
54094     ppc4xx: Add freqUART to CPU speed detection
54095
54096     This value is needed later for the device tree configuration of
54097     the uart clock.
54098
54099     Signed-off-by: Stefan Roese <sr@denx.de>
54100
54101 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
54102 Author: Stefan Roese <sr@denx.de>
54103 Date:   Sun Oct 21 14:26:29 2007 +0200
54104
54105     ppc: Small Kilauea cleanup of config file
54106
54107     Signed-off-by: Stefan Roese <sr@denx.de>
54108
54109 commit 758c037aeead34b49631b8da3a90b1bba14c0410
54110 Author: Stefan Roese <sr@denx.de>
54111 Date:   Sun Oct 21 08:16:12 2007 +0200
54112
54113     rtc: Add Xicor/Intersil X1205 RTC support
54114
54115     This patch adds support for the Xicor/Intersil X1205 RTC used on the
54116     AMCC Makalu eval board. This driver is basically cloned from the Linux
54117     driver version (2.6.23).
54118
54119     This patch also introduces the Linux bcd.h header for the BCD2BIN/
54120     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
54121     should be converted to also use this header instead of implementing
54122     their own local copy of these functions/macros.
54123
54124     Signed-off-by: Stefan Roese <sr@denx.de>
54125
54126 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
54127 Author: Stefan Roese <sr@denx.de>
54128 Date:   Sun Oct 21 08:12:41 2007 +0200
54129
54130     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
54131
54132     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
54133     PPC440_SYS_INFO structure into the common ppc4xx.h header.
54134
54135     Lot's of other macros are good candidates to be consolidated this way
54136     in the future.
54137
54138     Signed-off-by: Stefan Roese <sr@denx.de>
54139
54140 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
54141 Author: Stefan Roese <sr@denx.de>
54142 Date:   Sun Oct 21 08:05:18 2007 +0200
54143
54144     ppc4xx: Fix size setup in Kilauea DDR2 init routine
54145
54146     The size was initilized wrong. Instead of 256MB, the DDR2 controller
54147     was setup to 512MB. Now the correct values is used.
54148
54149     This patch also does a little cleanup and adds a comment here.
54150
54151     Signed-off-by: Stefan Roese <sr@denx.de>
54152
54153 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
54154 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
54155 Date:   Thu Oct 18 17:29:04 2007 +0200
54156
54157     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
54158
54159     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
54160     number is used to access system registers.
54161
54162     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
54163     Signed-off-by: Stefan Roese <sr@denx.de>
54164
54165 commit c36c68160333ac5fe41ec3db12a728b7075b3912
54166 Author: Stefan Roese <sr@denx.de>
54167 Date:   Thu Oct 18 07:42:27 2007 +0200
54168
54169     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
54170
54171     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
54172     is the internal SRAM. Since I now ported and tested this endpoint mode
54173     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
54174     Katmai.
54175
54176     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
54177     this setup.
54178
54179     Signed-off-by: Stefan Roese <sr@denx.de>
54180
54181 commit 5cb4af4791f61843432155142b6cfac901f66c10
54182 Author: Stefan Roese <sr@denx.de>
54183 Date:   Thu Oct 18 07:39:38 2007 +0200
54184
54185     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
54186
54187     This patch adds endpoint support for the AMCC Kilauea eval board. It can
54188     be tested by connecting a reworked PCIe cable (only 1x lane singles
54189     connected) to another root-complex.
54190
54191     In this test setup, a 64MB inbound window is configured at BAR0 which maps
54192     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
54193     access the first 64MB of the SDRAM on the PPC side.
54194
54195     Signed-off-by: Stefan Roese <sr@denx.de>
54196
54197 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
54198 Author: Stefan Roese <sr@denx.de>
54199 Date:   Sat Oct 13 16:43:23 2007 +0200
54200
54201     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
54202
54203     This patch adds support for dynamic configuration of PCIe ports for the
54204     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
54205     boards Yucca & Katmai and the 405EX board Kilauea.
54206
54207     This dynamic configuration is done via the "pcie_mode" environement
54208     variable. This variable can be set to "EP" or "RP" for endpoint or
54209     rootpoint mode. Multiple values can be joined via the ":" delimiter.
54210     Here an example:
54211
54212     pcie_mode=RP:EP:EP
54213
54214     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
54215     as endpoint.
54216
54217     Per default Yucca will be configured as:
54218     pcie_mode=RP:EP:EP
54219
54220     Per default Katmai will be configured as:
54221     pcie_mode=RP:RP:REP
54222
54223     Per default Kilauea will be configured as:
54224     pcie_mode=RP:RP
54225
54226     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
54227     Signed-off-by: Stefan Roese <sr@denx.de>
54228
54229 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
54230 Author: Stefan Roese <sr@denx.de>
54231 Date:   Thu Oct 11 11:15:59 2007 +0200
54232
54233     ppc4xx: Enable device tree support (fdt) on Kilauea per default
54234
54235     This patch enables the fdt support on the AMCC Kilauea eval board.
54236     Additionally now EBC ranges fdt fixup is included to support NOR
54237     FLASH mapping via the Linux physmap_of driver.
54238
54239     This Kilauea port now support booting arch/ppc and arch/powerpc
54240     Linux kernels. The default environment "net_nfs" is for arch/ppc
54241     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
54242     support will be removed.
54243
54244     Signed-off-by: Stefan Roese <sr@denx.de>
54245
54246 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
54247 Author: Stefan Roese <sr@denx.de>
54248 Date:   Thu Oct 11 11:11:45 2007 +0200
54249
54250     ppc4xx: Add additional debug info to 4xx fdt support
54251
54252     Signed-off-by: Stefan Roese <sr@denx.de>
54253
54254 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
54255 Author: Stefan Roese <sr@denx.de>
54256 Date:   Fri Oct 5 21:28:58 2007 +0200
54257
54258     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
54259
54260     Signed-off-by: Stefan Roese <sr@denx.de>
54261
54262 commit 1941cce71b1ae975602854045061e82f94ecd012
54263 Author: Stefan Roese <sr@denx.de>
54264 Date:   Fri Oct 5 17:35:10 2007 +0200
54265
54266     ppc4xx: Fix small merge problem in 4xx_enet.c
54267
54268     Signed-off-by: Stefan Roese <sr@denx.de>
54269
54270 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
54271 Author: Stefan Roese <sr@denx.de>
54272 Date:   Fri Oct 5 17:11:30 2007 +0200
54273
54274     ppc4xx: Add initial AMCC Kilauea 405EX support
54275
54276     Signed-off-by: Stefan Roese <sr@denx.de>
54277
54278 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
54279 Author: Stefan Roese <sr@denx.de>
54280 Date:   Fri Oct 5 17:10:59 2007 +0200
54281
54282     ppc4xx: Add PPC405EX support
54283
54284     Signed-off-by: Stefan Roese <sr@denx.de>
54285
54286 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
54287 Author: Stefan Roese <sr@denx.de>
54288 Date:   Fri Oct 5 17:09:36 2007 +0200
54289
54290     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
54291
54292     Signed-off-by: Stefan Roese <sr@denx.de>
54293
54294 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
54295 Author: Stefan Roese <sr@denx.de>
54296 Date:   Fri Oct 5 17:07:50 2007 +0200
54297
54298     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
54299
54300     Signed-off-by: Stefan Roese <sr@denx.de>
54301
54302 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
54303 Author: Stefan Roese <sr@denx.de>
54304 Date:   Fri Oct 5 17:04:57 2007 +0200
54305
54306     POST: Add 405EX support to 4xx UART POST test
54307
54308     Signed-off-by: Stefan Roese <sr@denx.de>
54309
54310 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
54311 Author: Stefan Roese <sr@denx.de>
54312 Date:   Fri Oct 5 15:10:02 2007 +0200
54313
54314     DTT: Prepare DS1775 driver for use of different I2C addresses
54315
54316     Signed-off-by: Stefan Roese <sr@denx.de>
54317
54318 commit 19e93b1e16d267220440d827b920fbad8abfa70f
54319 Author: Stefan Roese <sr@denx.de>
54320 Date:   Fri Oct 5 14:23:43 2007 +0200
54321
54322     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
54323
54324     Signed-off-by: Stefan Roese <sr@denx.de>
54325
54326 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
54327 Author: Stefan Roese <sr@denx.de>
54328 Date:   Fri Oct 5 09:22:33 2007 +0200
54329
54330     ppc4xx: 4xx_pcie: Disable debug output as default
54331
54332     Signed-off-by: Stefan Roese <sr@denx.de>
54333
54334 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
54335 Author: Stefan Roese <sr@denx.de>
54336 Date:   Fri Oct 5 09:18:23 2007 +0200
54337
54338     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
54339
54340     Signed-off-by: Stefan Roese <sr@denx.de>
54341
54342 commit 4dbee8a90df613eb517aadbecebd70f168913d30
54343 Author: Stefan Roese <sr@denx.de>
54344 Date:   Fri Oct 5 07:57:20 2007 +0200
54345
54346     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
54347
54348     128MB seems to be the smallest possible value for the memory size
54349     for on PCIe port. With this change now the BAR's of the PCIe cards
54350     are accessible under U-Boot.
54351
54352     One big note: This only works for PCIe port 0 & 1. For port 2 this
54353     currently doesn't work, since the base address is now 0xc0000000
54354     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
54355     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
54356     to change the base addresses completely and this change would have
54357     too much impact right now.
54358
54359     This patch adds debug output to the 4xx pcie driver too.
54360
54361     Signed-off-by: Stefan Roese <sr@denx.de>
54362
54363 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
54364 Author: Stefan Roese <sr@denx.de>
54365 Date:   Wed Oct 3 21:16:32 2007 +0200
54366
54367     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
54368
54369     Signed-off-by: Stefan Roese <sr@denx.de>
54370
54371 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
54372 Author: Stefan Roese <sr@denx.de>
54373 Date:   Wed Oct 3 15:01:02 2007 +0200
54374
54375     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
54376
54377     These files were introduced with the IBM 405GP but are currently used on all
54378     4xx PPC platforms. So the name doesn't match the content anymore. This patch
54379     renames the files to 4xx_pci.c/h.
54380
54381     Signed-off-by: Stefan Roese <sr@denx.de>
54382
54383 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
54384 Author: Stefan Roese <sr@denx.de>
54385 Date:   Wed Oct 3 14:14:58 2007 +0200
54386
54387     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
54388
54389     Signed-off-by: Stefan Roese <sr@denx.de>
54390
54391 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
54392 Author: Stefan Roese <sr@denx.de>
54393 Date:   Wed Oct 3 10:38:09 2007 +0200
54394
54395     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
54396
54397     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
54398         the SDR registers of the PCIe ports. This makes the overall design
54399         clearer, since it removed a lot of switch statements which are not
54400         needed anymore.
54401
54402         Also, the functions ppc4xx_init_pcie_rootport() and
54403         ppc4xx_init_pcie_entport() are merged into a single function
54404         ppc4xx_init_pcie_port(), since most of the code was duplicated.
54405         This makes maintainance and porting to other 4xx platforms
54406         easier.
54407
54408     Signed-off-by: Stefan Roese <sr@denx.de>
54409
54410 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
54411 Author: Stefan Roese <sr@denx.de>
54412 Date:   Wed Oct 3 07:48:09 2007 +0200
54413
54414     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
54415
54416     This patch is the first patch of a series to make the 440SPe PCIe code
54417     usable on different 4xx PPC platforms. In preperation for the new 405EX
54418     which is also equipped with PCIe interfaces.
54419
54420     (2) This patch renames the functions from 440spe_ to 4xx_ with a
54421         little additional cleanup
54422
54423     Signed-off-by: Stefan Roese <sr@denx.de>
54424
54425 commit c7c6da23028f146d912514b95aefa3da7cf37699
54426 Author: Stefan Roese <sr@denx.de>
54427 Date:   Wed Oct 3 07:34:10 2007 +0200
54428
54429     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
54430
54431     This patch is the first patch of a series to make the 440SPe PCIe code
54432     usable on different 4xx PPC platforms. In preperation for the new 405EX
54433     which is also equipped with PCIe interfaces.
54434
54435     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
54436
54437     Signed-off-by: Stefan Roese <sr@denx.de>
54438
54439 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
54440 Author: Marian Balakowicz <m8@semihalf.com>
54441 Date:   Wed Oct 24 01:37:36 2007 +0200
54442
54443     TQM5200: Call usb_cpu_init() during board init
54444
54445     usb_cpu_init() configures GPS USB pins, clocks, etc. and
54446     is required for proper operation of kernel USB subsystem.
54447     This setup was previously done in the kernel by the fixup
54448     code which is being removed, thus low level init must be
54449     done by U-boot now.
54450
54451     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54452     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54453
54454 commit b5af773f8d92677e06f3295b45557c9d0a487c24
54455 Author: Zhang Wei <wei.zhang@freescale.com>
54456 Date:   Thu Oct 25 17:51:27 2007 +0800
54457
54458     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
54459
54460     The scan code of the key 'z' is 0x1d, which should be handled.
54461
54462     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
54463     controller.
54464
54465     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
54466     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54467
54468 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
54469 Author: Rodolfo Giometti <giometti@enneenne.com>
54470 Date:   Mon Oct 15 11:59:17 2007 +0200
54471
54472     PXA USB OHCI: "usb stop" implementation.
54473
54474     Some USB keys need to be switched off before loading the kernel
54475     otherwise they can remain in an undefined status which prevents them
54476     to be correctly recognized by the kernel.
54477
54478     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
54479     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54480
54481 commit 31548249decf18a6b877a18436b6139dd483fe4a
54482 Author: Justin Flammia <jflammia@savantav.com>
54483 Date:   Mon Oct 29 17:40:35 2007 -0400
54484
54485     DHCP Client Fix
54486
54487     This is a multi-part message in MIME format.
54488
54489     commit e6e505eae94ed721e123e177489291fc4544b7b8
54490     Author: Justin Flammia <jflammia@savantav.com>
54491     Date:   Mon Oct 29 17:19:03 2007 -0400
54492
54493         Found a bug in the way the DHCP Request packet is built, where the IP address
54494         that is offered by the server is bound to prematurely. This patch is a fix of
54495         that bug where the IP address offered by the DHCP server is not used until
54496         after the DHCP ACK from the server is received.
54497
54498     Signed-off-by: Justin Flammia <jflammia@savantav.com>
54499     Signed-off-by: Ben Warren <bwarren@qstreams.com>
54500
54501 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
54502 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54503 Date:   Thu Oct 25 17:16:22 2007 -0500
54504
54505     ColdFire 54455: Fix correct boot location for atmel and intel
54506
54507     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54508
54509 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
54510 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54511 Date:   Thu Oct 25 17:14:00 2007 -0500
54512
54513     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
54514
54515     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54516
54517 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
54518 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54519 Date:   Thu Oct 25 17:12:36 2007 -0500
54520
54521     ColdFire 5329: Assign correct SDRAM size and fix cache
54522
54523     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54524
54525 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
54526 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54527 Date:   Thu Oct 25 17:10:23 2007 -0500
54528
54529     ColdFire 5253: Assign correct SDRAM size
54530
54531     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54532
54533 commit 2acefa72ee0026f862ab65597ca687428f63a973
54534 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54535 Date:   Thu Oct 25 17:09:17 2007 -0500
54536
54537     ColdFire 5282: Fix external flash boot and return dramsize
54538
54539     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
54540
54541 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
54542 Author: Bartlomiej Sieka <tur@semihalf.com>
54543 Date:   Thu Oct 25 17:20:01 2007 +0200
54544
54545     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
54546
54547     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54548
54549 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
54550 Author: Martin Krause <martin.krause@tqs.de>
54551 Date:   Wed Oct 24 08:42:25 2007 +0200
54552
54553     TQM5200: fix spurious characters on second serial interface
54554
54555     With this patch PSC3 is configured as UART. This is done, because if
54556     the pins of PSC3 are not configured at all (-> all pins are GPI),
54557     due to crosstalk, spurious characters may be send over the RX232_2_TXD
54558     signal line.
54559
54560     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54561     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54562
54563 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
54564 Author: Martin Krause <martin.krause@tqs.de>
54565 Date:   Wed Oct 24 08:41:27 2007 +0200
54566
54567     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
54568
54569     Some commands for the STK52xx base board try to access the SM501 grafic
54570     controller. But the TQM5200S has no grafic controller (only the TQM5200
54571     and the TQM5200B have). This patch deactivates the commands accessing
54572     the SM501 for the TQM5200S.
54573
54574     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54575     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54576
54577 commit b31f64343ead9482cd439b1adbe4c34026a641b1
54578 Author: Martin Krause <martin.krause@tqs.de>
54579 Date:   Mon Oct 22 16:45:53 2007 +0200
54580
54581     TQM5200: fix spurious characters on second serial interface
54582
54583     With this patch PSC3 is configured as UART. This is done, because if
54584     the pins of PSC3 are not configured at all (-> all pins are GPI),
54585     due to crosstalk, spurious characters may be send over the RX232_2_TXD
54586     signal line.
54587
54588     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54589
54590 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
54591 Author: Martin Krause <martin.krause@tqs.de>
54592 Date:   Mon Oct 22 16:40:06 2007 +0200
54593
54594     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
54595
54596     Some commands for the STK52xx base board try to access the SM501 grafic
54597     controller. But the TQM5200S has no grafic controller (only the TQM5200
54598     and the TQM5200B have). This patch deactivates the commands accessing
54599     the SM501 for the TQM5200S.
54600
54601     Signed-off-by: Martin Krause <martin.krause@tqs.de>
54602
54603 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
54604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54605 Date:   Sun Oct 21 09:14:28 2007 +0200
54606
54607     Mips: Fix string functions differ prototype declaration
54608
54609     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54610
54611 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
54612 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54613 Date:   Fri Oct 19 17:51:40 2007 -0500
54614
54615     fsl_pci_init enable COMMAND_MEMORY if inbound window
54616
54617     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
54618     to pciauto_setup_device has the side effect of not getting
54619     COMMAND_MEMORY set.
54620
54621     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54622
54623 commit e9d0d527992566ebef9826962ff1745b2f082b92
54624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54625 Date:   Fri Oct 19 10:55:24 2007 +0200
54626
54627     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
54628
54629     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54630
54631 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
54632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54633 Date:   Fri Oct 19 08:10:15 2007 +0200
54634
54635     fix warning: no return statement in function returning non-void
54636
54637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54638
54639 commit e78220f6e514206757acfe247297fc9a328a881f
54640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54641 Date:   Fri Oct 19 06:33:45 2007 +0200
54642
54643     xsengine: Fix no partition type specified, use DOS as default
54644
54645     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54646
54647 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
54648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54649 Date:   Fri Oct 19 00:24:59 2007 +0200
54650
54651     lubbock: Fix no partition type specified, use DOS as default
54652
54653     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54654
54655 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
54656 Author: Wolfgang Denk <wd@denx.de>
54657 Date:   Tue Oct 23 16:50:03 2007 +0200
54658
54659     Coding style: keep lists sorted; update CHANGELOG
54660
54661     Signed-off-by: Wolfgang Denk <wd@denx.de>
54662
54663 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
54664 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54665 Date:   Fri Oct 19 00:09:05 2007 +0200
54666
54667     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
54668
54669     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54670
54671 commit 96455bfebc9887837095c9051d216f53c61b5f10
54672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54673 Date:   Fri Oct 19 00:07:39 2007 +0200
54674
54675     Fix warning differ in signedness in board/innokom/innokom.c
54676
54677     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54678
54679 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
54680 Author: Marcel Ziswiler <marcel@ziswiler.com>
54681 Date:   Fri Oct 19 00:25:33 2007 +0200
54682
54683     fix pxa255_idp board
54684
54685     The pxa255_idp being an old unmaintained board showed several issues:
54686     1. CONFIG_INIT_CRITICAL was still defined.
54687     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
54688     3. Symbol flash_addr was undeclared.
54689     4. The boards lowlevel_init function was still called memsetup.
54690     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
54691     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
54692     'target CPU does not support interworking' warnings on recent compilers.
54693     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
54694     indexes rather than the register definitions from the pxa-regs header
54695     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
54696     avoid any ambiguities.
54697     8. There were several redefinition warnings concerning ICMR, OSMR3,
54698     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
54699     9. The board configuration file was rather outdated.
54700     10. The part header file defined the vendor, product and revision arrays
54701     as unsigned chars instead of just chars in the block_dev_desc_t
54702     structure.
54703
54704     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
54705
54706 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
54707 Author: Rune Torgersen <runet@innovsys.com>
54708 Date:   Wed Oct 17 11:56:31 2007 -0500
54709
54710     Make MPC8266ADS command selection more robust
54711
54712     Fix MPC8266 command line definition so it won't break when new commands
54713     are added to u-boot.
54714     Signed-off-by Rune Torgersen <runet@innovsys.com>
54715
54716 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
54717 Author: Bartlomiej Sieka <tur@semihalf.com>
54718 Date:   Tue Oct 23 13:14:10 2007 +0200
54719
54720     Motion-PRO: Update configuration to accomodate next generation board.
54721
54722     New board has faster oscillator and a different Flash chip. This affects:
54723     - CFG_MPC5XXX_CLKIN
54724     - SDRAM timings
54725     - Flash CS configuration (timings)
54726     - Flash sector size, and thus MTD partition layout
54727     - malloc() arena size (due to bigger Flash sectors)
54728     - smaller memory test range (due to bigger malloc() arena)
54729
54730     This patch also enables more extensive memory testing via "mtest".
54731
54732     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54733
54734 commit eff501904df2bf1724a750062628ba2c51dbb1f8
54735 Author: Bartlomiej Sieka <tur@semihalf.com>
54736 Date:   Tue Oct 23 11:36:07 2007 +0200
54737
54738     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
54739
54740     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
54741     register must be written a value of 0x00000004 as the first step of the
54742     SDRAM contorller configuration.
54743
54744     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54745
54746 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
54747 Author: Peter Pearse <peter.pearse@arm.com>
54748 Date:   Tue Oct 23 10:22:16 2007 +0100
54749
54750     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
54751
54752 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
54753 Author: Stefan Roese <sr@denx.de>
54754 Date:   Tue Oct 23 10:17:42 2007 +0200
54755
54756     ppc4xx: lwmon5: Some further GPIO config changes
54757
54758     Signed-off-by: Stefan Roese <sr@denx.de>
54759
54760 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
54761 Author: Vlad Lungu <vlad@comsys.ro>
54762 Date:   Sun Oct 21 22:10:10 2007 +0900
54763
54764     [MIPS] Fix UNCACHED_SDRAM
54765
54766     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
54767
54768     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54769     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54770
54771 commit 00101dd7a32d12f698150123e47e4b3420279f86
54772 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54773 Date:   Sun Oct 21 21:30:42 2007 +0900
54774
54775     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
54776
54777     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54778
54779 commit eb700636db017d310edaeb559b13d82588560674
54780 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54781 Date:   Sun Oct 21 10:55:37 2007 +0900
54782
54783     [MIPS] u-boot.lds: Define _gp in a standard manner
54784
54785     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54786
54787 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
54788 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54789 Date:   Sun Oct 21 10:55:36 2007 +0900
54790
54791     [MIPS] Fix $gp usage
54792
54793     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
54794     As a general principle, we should use _gp for $gp.
54795
54796     Thanks to linker script's help we fortunately have _gp which equals to
54797     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
54798     be able to access to GOT entires, global variables and procedure entry
54799     points. The right thing to do is to use _gp.
54800
54801     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
54802     which holds the offset from _gp. When updating GOT entries, we use this
54803     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
54804
54805     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
54806     I made some change to leave over num_got_entries.
54807
54808     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54809     Cc: Vlad Lungu <vlad@comsys.ro>
54810
54811 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
54812 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54813 Date:   Sun Oct 21 10:55:36 2007 +0900
54814
54815     [MIPS] u-boot.lds: Fix __got_start and __got_end
54816
54817     Ensure that __got_start points to top of the `.got', and __got_end points
54818     to bottom as well, so that we never fail to count num_got_entries.
54819
54820     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54821
54822 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
54823 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54824 Date:   Sun Oct 21 10:55:36 2007 +0900
54825
54826     [MIPS] u-boot.lds: Remove duplicated .sdata section
54827
54828     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54829
54830 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
54831 Author: Wolfgang Denk <wd@denx.de>
54832 Date:   Sun Oct 21 01:01:17 2007 +0200
54833
54834     Minor coding style cleanup; update CHANGELOG
54835
54836     Signed-off-by: Wolfgang Denk <wd@denx.de>
54837
54838 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
54839 Author: Vlad Lungu <vlad@comsys.ro>
54840 Date:   Thu Oct 4 20:47:10 2007 +0300
54841
54842     Fix NE2000 driver:
54843
54844     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
54845     to do anything in eth_stop() if eth_init() was not called.
54846     Simplified RX path in order to avoid timeouts on really really
54847     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
54848     clever enough to cope with 1 packet per eth_rx().
54849
54850     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54851
54852 commit df90968b48fb34fa9072fab150db2ac89678f537
54853 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
54854 Date:   Mon Sep 24 13:32:13 2007 -0400
54855
54856     Setting MSR[DE] in do_reset
54857
54858     Hello,
54859        This patch ensures the soft reset of the board for the 85xx boards
54860        by setting the MSR[DE] in the do_reset function.
54861
54862     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
54863
54864 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
54865 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
54866 Date:   Mon Sep 24 13:36:01 2007 -0400
54867
54868     MSR overwrite fix
54869
54870     Hello,
54871       This patch fixes the MSR overwrite in the start.S when moving out of
54872       the last 4K page.
54873
54874     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
54875
54876 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
54877 Author: Dan Wilson <dwilson@fulcrummicro.com>
54878 Date:   Fri Oct 19 11:33:48 2007 -0500
54879
54880     tsec driver should clear RHALT on startup
54881
54882     This was causing problems for some people.
54883
54884     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
54885     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
54886     Signed-off-by: Andy Fleming <afleming@freescale.com>
54887
54888 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
54889 Author: Kumar Gala <galak@kernel.crashing.org>
54890 Date:   Thu Oct 11 00:29:18 2007 -0500
54891
54892     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
54893
54894     On the MPC85xx CDS we have two issues:
54895
54896     1. The device tree fixup code did not check to see if the property we are
54897     trying to update is actually found.  Its possible that it would update
54898     random memory starting at 0.
54899
54900     2. Newer Linux kernel's have moved the location of the PCI nodes to be
54901     sibilings of the soc node and not children.  The explicit PATH to the PCI
54902     node would not be found for these device trees.  Add the ability to handle
54903     both paths.  In the future we shouldn't handle such fixups by explicit path.
54904
54905     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54906
54907 commit a3063eec775719b7e91023bbec3f64b3118791df
54908 Author: Kumar Gala <galak@kernel.crashing.org>
54909 Date:   Thu Oct 11 00:18:48 2007 -0500
54910
54911     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
54912
54913     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
54914     console.  Make it so we match that config what we tell Linux as the early
54915     STDOUT console.
54916
54917     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54918
54919 commit e1ce3cb617bb06f91f82f98915391175addf3e82
54920 Author: Kumar Gala <galak@kernel.crashing.org>
54921 Date:   Tue Oct 2 11:12:27 2007 -0500
54922
54923     Remove magic numbers from cache related operations for mpc85xx
54924
54925     The mpc85xx start code uses some magic numbers that we actually
54926     have #defines for in <config.h> so use those instead.
54927
54928     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54929
54930 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
54931 Author: Detlev Zundel <dzu@denx.de>
54932 Date:   Fri Oct 19 16:47:26 2007 +0200
54933
54934     Fix two typos.
54935
54936     Signed-off-by: Detlev Zundel <dzu@denx.de>
54937
54938 commit 281df457c1aa50d2752165d0c5c3282d4027b974
54939 Author: Tony Li <tony.li@freescale.com>
54940 Date:   Thu Oct 18 17:47:19 2007 +0800
54941
54942     mpc83xx: Add configure entry for MPC83xx ATM support
54943
54944     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
54945     Makfile and MAKEALL
54946
54947     Signed-off-by: Tony Li <tony.li@freescale.com>
54948     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54949
54950 commit d2646554f529a9577515eceb0ec5eceee18244ba
54951 Author: Tony Li <tony.li@freescale.com>
54952 Date:   Thu Oct 18 17:44:38 2007 +0800
54953
54954     mpc83xx: pq-mds-pib.c typo error
54955
54956     Correct to val8 from val.
54957
54958     Signed-off-by: Tony Li <tony.li@freescale.com>
54959     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54960
54961 commit 3e11ae80fec1ee12194940955431186abf6009c2
54962 Author: Stefan Roese <sr@denx.de>
54963 Date:   Wed Oct 17 15:40:19 2007 +0200
54964
54965     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
54966
54967     Signed-off-by: Stefan Roese <sr@denx.de>
54968
54969 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
54970 Author: Jon Loeliger <jdl@freescale.com>
54971 Date:   Tue Oct 16 15:27:43 2007 -0500
54972
54973     Initial mpc8610hpcd Makefile files.
54974
54975     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54976     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54977     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54978     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54979
54980 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
54981 Author: Jon Loeliger <jdl@freescale.com>
54982 Date:   Tue Oct 16 15:26:51 2007 -0500
54983
54984     Initial mpc8610hpcd cpu/, README and include/ files.
54985
54986     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54987     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54988     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
54989     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54990
54991 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
54992 Author: Jon Loeliger <jdl@freescale.com>
54993 Date:   Tue Oct 16 13:54:01 2007 -0500
54994
54995     Initial mpc8610hpcd board files.
54996
54997     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54998     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
54999     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55000     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55001
55002 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
55003 Author: runet@innovsys.com <runet@innovsys.com>
55004 Date:   Tue Oct 16 14:50:40 2007 -0500
55005
55006     Make MPC8266ADS board compile again.
55007
55008     Signed-off-by: Runet Torgersen <runet@innovsys.com>
55009
55010 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
55011 Author: Jon Loeliger <jdl@freescale.com>
55012 Date:   Mon Aug 27 12:41:03 2007 -0500
55013
55014     86xx: Allow for fewer DDR slots per memory controller.
55015
55016     As a direct correlation exists between DDR DIMM slots
55017     and SPD EEPROM addresses used to configure them, use
55018     the individually defined SPD_EEPROM_ADDRESS* values to
55019     determine if a DDR DIMM slot should have its SPD
55020     configuration read or not.
55021
55022     Effectively, this now allows for 1 or 2 DIMM slots
55023     per memory controller.
55024
55025     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55026
55027 commit 4d4a945e189a2f384c66432316da2788a0ac1607
55028 Author: Rodolfo Giometti <giometti@enneenne.com>
55029 Date:   Mon Oct 15 11:59:17 2007 +0200
55030
55031     PXA USB OHCI: "usb stop" implementation.
55032
55033     Some USB keys need to be switched off before loading the kernel
55034     otherwise they can remain in an undefined status which prevents them
55035     to be correctly recognized by the kernel.
55036
55037     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
55038
55039 commit e2e93442e558cf1500e92861f99713b2f045ea22
55040 Author: Stefan Roese <sr@denx.de>
55041 Date:   Mon Oct 15 11:39:00 2007 +0200
55042
55043     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
55044
55045     The I2C bootstrap values that can be setup via the "bootstrap" command,
55046     were setup incorrect regarding the generation of the internal sync PCI
55047     clock. The values for PLB clock == 133MHz were slighly incorrect and the
55048     values for PLB clock == 166MHz were totally incorrect. This could
55049     lead to a hangup upon booting while PCI configuration scan.
55050
55051     This patch fixes this issue and configures valid PCI divisor values
55052     for the sync PCI clock, with respect to the provided external async
55053     PCI frequency.
55054
55055     Here the values of the formula in the chapter 14.2 "PCI clocking"
55056     from the 440EPx users manual:
55057
55058     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
55059
55060     33MHz async PCI frequency:
55061     PLB = 133:
55062     =>      32 <= 44.3 <= 65        (div = 3)
55063
55064     PLB = 166:
55065     =>      32 <= 55.3 <= 65        (div = 3)
55066
55067     66MHz async PCI frequency:
55068     PLB = 133:
55069     =>      65 <= 66.5 <= 132       (div = 2)
55070
55071     PLB = 166:
55072     =>      65 <= 83 <= 132         (div = 2)
55073
55074     Signed-off-by: Stefan Roese <sr@denx.de>
55075
55076 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
55077 Author: Stefan Roese <sr@denx.de>
55078 Date:   Mon Oct 15 11:29:33 2007 +0200
55079
55080     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
55081
55082     The BCSR status bit for the 66MHz PCI operation was correctly
55083     addressed (MSB/LSB problem). Now the correct currently setup
55084     PCI frequency is displayed upon bootup.
55085
55086     This patch also fixes this problem on Rainier & Yellowstone, since these
55087     boards use the same souce code as Sequoia & Yosemite do.
55088
55089     Signed-off-by: Stefan Roese <sr@denx.de>
55090
55091 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
55092 Author: Martin Krause <martin.krause@tqs.de>
55093 Date:   Wed Sep 26 17:55:56 2007 +0200
55094
55095     TQM860M: adjust for doubled flash sector size.
55096
55097     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
55098     doubled sector size.
55099
55100     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55101
55102 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
55103 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
55104 Date:   Wed Sep 26 17:55:54 2007 +0200
55105
55106     TQM8xx: Fix CAN timing.
55107
55108     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55109
55110 commit d43e489baf02afae49077791fb22332d240d8656
55111 Author: Martin Krause <martin.krause@tqs.de>
55112 Date:   Thu Sep 27 14:54:36 2007 +0200
55113
55114     TQM866M: fix SDRAM refresh
55115
55116     At 133 MHz the current SDRAM refresh rate is too fast
55117     (measured 4 * 1.17 us).
55118     CFG_MAMR_PTA changes from 39 to 97. This result
55119     in a refresh rate of 4 * 7.8 us at the default clock
55120     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
55121     This is a compromise until a new method is found to
55122     adjust the refresh rate.
55123
55124     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55125
55126 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
55127 Author: Martin Krause <martin.krause@tqs.de>
55128 Date:   Wed Sep 26 17:55:55 2007 +0200
55129
55130     TQM866M: adjust for doubled flash sector size.
55131
55132     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
55133     doubled sector size.
55134
55135     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55136
55137 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
55138 Author: Michal Simek <monstr@monstr.eu>
55139 Date:   Sun Oct 14 16:12:29 2007 +0200
55140
55141     [FIX] XUPV2P change command handling
55142     and remove code violation
55143
55144 commit 636400198228d96983c06657b17f760f5989958e
55145 Author: Wolfgang Denk <wd@denx.de>
55146 Date:   Sun Oct 14 00:13:19 2007 +0200
55147
55148     Prepare for 1.3.0-rc3 release
55149
55150     Signed-off-by: Wolfgang Denk <wd@denx.de>
55151
55152 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
55153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55154 Date:   Sat Sep 29 13:41:37 2007 +0200
55155
55156     Fix warning differ in signedness in cpu/pxa/mmc.c
55157
55158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55159
55160 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
55161 Author: Wolfgang Denk <wd@denx.de>
55162 Date:   Sat Oct 13 23:51:14 2007 +0200
55163
55164     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
55165
55166     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55167     Signed-off-by: Wolfgang Denk <wd@denx.de>
55168
55169 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
55170 Author: Wolfgang Denk <wd@denx.de>
55171 Date:   Sat Oct 13 21:15:39 2007 +0200
55172
55173     Coding Style cleanup.
55174
55175     Signed-off-by: Wolfgang Denk <wd@denx.de>
55176
55177 commit e1893815b0999410d7a327589611c7b38e95299e
55178 Author: Wolfgang Denk <wd@denx.de>
55179 Date:   Fri Oct 12 15:49:39 2007 +0200
55180
55181     GP3 SSA: enable RTC
55182
55183     Signed-off-by: Wolfgang Denk <wd@denx.de>
55184
55185 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
55186 Author: Grzegorz Bernacki <gjb@semihalf.com>
55187 Date:   Tue Oct 9 13:58:24 2007 +0200
55188
55189     [ads5121] EEPROM support added.
55190
55191     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55192
55193 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
55194 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55195 Date:   Sat Oct 6 18:55:35 2007 +0200
55196
55197     AVR32: Initialize bi_flash* in board_init_r
55198
55199     The ATSTK1000-specific flash driver intializes bi_flashstart,
55200     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
55201     driver, don't.
55202
55203     Initialize these in board_init_r instead so that things will still be
55204     set up correctly when we switch to the CFI driver.
55205
55206     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55207
55208 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
55209 Author: Marian Balakowicz <m8@semihalf.com>
55210 Date:   Fri Oct 5 10:40:54 2007 +0200
55211
55212     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
55213
55214     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55215
55216 commit 92869195ef8210758d2176230c0a36897afd50ed
55217 Author: Bartlomiej Sieka <tur@semihalf.com>
55218 Date:   Fri Oct 5 09:46:06 2007 +0200
55219
55220     CM5200: Fix missing null-termination in hostname manipulation code
55221
55222     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55223
55224 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
55225 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55226 Date:   Tue Oct 2 19:09:01 2007 +0200
55227
55228     Fix memtest breakage
55229
55230     CFG_MEMTEST_START uses weird magic involving gd, which fails to
55231     compile. Use hardcoded values instead (we actually know how much RAM
55232     we have on board.)
55233
55234     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55235
55236 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
55237 Author: Stefan Roese <sr@denx.de>
55238 Date:   Tue Oct 2 11:44:46 2007 +0200
55239
55240     ppc4xx: Coding style cleanup
55241
55242     Signed-off-by: Stefan Roese <sr@denx.de>
55243
55244 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
55245 Author: Stefan Roese <sr@denx.de>
55246 Date:   Tue Oct 2 11:44:19 2007 +0200
55247
55248     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
55249
55250     Signed-off-by: Stefan Roese <sr@denx.de>
55251
55252 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
55253 Author: Grzegorz Bernacki <gjb@semihalf.com>
55254 Date:   Mon Oct 1 09:51:50 2007 +0200
55255
55256     Program EPLD to force full duplex mode for PHY.
55257
55258     EPLD forces modes of PHY operation. By default full duplex is turned off.
55259     This fix turns it on.
55260
55261     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55262
55263 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
55264 Author: Timo Ketola <timo.ketola@exertus.fi>
55265 Date:   Mon Sep 24 14:50:32 2007 +0300
55266
55267     Bugfix: Use only one PTD for one endpoint
55268
55269     Original isp116x-hcd code prepared multiple PTDs for longer than 16
55270     byte transfers for one endpoint. That is unnecessary because the
55271     ISP116x is able to split long data from one PTD into multiple
55272     transactions based on the buffer size of the endpoint. It also caused
55273     serious problems if the endpoint NAKed some of the transactions. In
55274     that case ISP116x wouldn't notice that the other PTDs were for the same
55275     endpoint and would try the other PTDs possibly out of order. That would
55276     break the whole transfer.
55277
55278     This patch makes isp116x_submit_job to use one PTD for one transfer.
55279
55280     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
55281     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
55282
55283 commit 86ec86c04326c3913178a7679aa910de071da75d
55284 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55285 Date:   Thu Sep 27 23:27:47 2007 +0200
55286
55287     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
55288
55289     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55290
55291 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
55292 Author: Stefan Roese <sr@denx.de>
55293 Date:   Tue Sep 11 14:12:55 2007 +0200
55294
55295     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
55296
55297     Signed-off-by: Stefan Roese <sr@denx.de>
55298
55299 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
55300 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55301 Date:   Wed Sep 26 16:35:54 2007 -0500
55302
55303     85xx io out functions need sync after write.
55304
55305     This fixes the mc146818 rtc_read/write functions for 85xx.
55306
55307     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55308
55309 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
55310 Author: Grant Likely <grant.likely@secretlab.ca>
55311 Date:   Tue Sep 25 15:48:05 2007 -0600
55312
55313     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
55314
55315     CFG_FPGA_XILINX is a bit value used to test against the value in
55316     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
55317     think that is the intention in this code.
55318
55319     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55320
55321 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
55322 Author: Michal Simek <monstr@monstr.eu>
55323 Date:   Mon Sep 24 00:41:30 2007 +0200
55324
55325     [FIX] change command handling and removing code violation
55326
55327 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
55328 Author: Michal Simek <monstr@monstr.eu>
55329 Date:   Mon Sep 24 00:36:06 2007 +0200
55330
55331     [FIX] change sets of commands
55332     because changing of command handling brings
55333     compilation problems
55334
55335 commit cb1bc63b75a232571eb69aa2c8aa919321655845
55336 Author: Michal Simek <monstr@monstr.eu>
55337 Date:   Mon Sep 24 00:30:42 2007 +0200
55338
55339     [FIX] Email reparation & Copyright
55340     Both codes are written by myself without any
55341     support from CTU
55342
55343 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
55344 Author: Michal Simek <monstr@monstr.eu>
55345 Date:   Mon Sep 24 00:25:11 2007 +0200
55346
55347     [PATCH] Change macro name for UartLite
55348     because PowerPC 405 can use UartLite as console
55349
55350 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
55351 Author: Michal Simek <monstr@monstr.eu>
55352 Date:   Mon Sep 24 00:21:19 2007 +0200
55353
55354     [PATCH] Add support for design without interrupt controller
55355     Polling timer
55356
55357 commit 0731933ec8ec45d02ba89b52df673d526873cdde
55358 Author: Michal Simek <monstr@monstr.eu>
55359 Date:   Mon Sep 24 00:19:48 2007 +0200
55360
55361     [FIX] resolve problem with cpu without barrel shifter
55362
55363 commit db14d77995ce515b728b178b63f82babe60e3d56
55364 Author: Michal Simek <monstr@monstr.eu>
55365 Date:   Mon Sep 24 00:18:46 2007 +0200
55366
55367     [FIX] repair email address
55368
55369 commit 481d4328618804add1f818a6c96296121cd0528e
55370 Author: Michal Simek <monstr@monstr.eu>
55371 Date:   Mon Sep 24 00:17:42 2007 +0200
55372
55373     [FIX] repair MFSL commands
55374
55375 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
55376 Author: Michal Simek <monstr@monstr.eu>
55377 Date:   Mon Sep 24 00:08:37 2007 +0200
55378
55379     synchronizition with mainline
55380
55381 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
55382 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55383 Date:   Sun Sep 23 02:42:38 2007 +0900
55384
55385     sh: Add support command of ide with sh
55386
55387     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55388
55389 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
55390 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55391 Date:   Sun Sep 23 02:38:42 2007 +0900
55392
55393     sh: Update Makefile
55394
55395     Add support MS7722SE01 to Makefile.
55396
55397     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55398
55399 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
55400 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55401 Date:   Sun Sep 23 02:31:13 2007 +0900
55402
55403     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
55404
55405     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55406
55407 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
55408 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55409 Date:   Sun Sep 23 02:19:24 2007 +0900
55410
55411     sh: Update MS7750SE01 platform
55412
55413     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55414
55415 commit 516ad760db3553766267ada01b7d5d727faa4bbd
55416 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55417 Date:   Sun Sep 23 02:17:08 2007 +0900
55418
55419     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
55420
55421     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55422
55423 commit b02bad128669e567fce87d8df823b06a0144b8db
55424 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55425 Date:   Sun Sep 23 02:12:30 2007 +0900
55426
55427     sh: Update core code of SuperH.
55428
55429     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55430
55431 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
55432 Author: Wolfgang Denk <wd@denx.de>
55433 Date:   Thu Sep 20 00:04:14 2007 +0200
55434
55435     v1.3.0-rc2
55436
55437     Signed-off-by: Wolfgang Denk <wd@denx.de>
55438
55439 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
55440 Author: Wolfgang Denk <wd@denx.de>
55441 Date:   Tue Sep 18 21:36:35 2007 +0200
55442
55443     Avoid compiler warning.
55444
55445     Signed-off-by: Wolfgang Denk <wd@denx.de>
55446
55447 commit 8a783a65851bc7421ab69f442261215e21b8891a
55448 Author: Grant Likely <grant.likely@secretlab.ca>
55449 Date:   Tue Sep 18 12:24:57 2007 -0600
55450
55451     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
55452
55453     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
55454     nulls in a string differently.  For example, the following statement:
55455         echo "this is a string\0" > afile
55456     Will produce the following with /bin/bash:
55457         "this is a string\0"
55458     But with /bin/dash, will produce:
55459         "this is a string
55460
55461     Bug fixed by moving the embedded null out of the makefile and into the
55462     config header.  Also renamed the macro to avoid usage colision with the same
55463     macro used by other board ports.
55464
55465     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55466
55467 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
55468 Author: Wolfgang Denk <wd@denx.de>
55469 Date:   Tue Sep 18 17:40:27 2007 +0200
55470
55471     MCC200: fix build warning
55472
55473     The MCC200 board config file includes version.h for some customer-
55474     specific setting, which causes warnings with "make depend"; build
55475     version.h before depend.
55476
55477     Signed-off-by: Wolfgang Denk <wd@denx.de>
55478
55479 commit bd86220f58b99d6896198c385fda132f0c980915
55480 Author: Peter Pearse <peter.pearse@arm.com>
55481 Date:   Tue Sep 18 13:07:54 2007 +0100
55482
55483     Move coloured led API to status_led.h
55484     Improve indentation in drivers/at45.c
55485
55486 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
55487 Author: Eirik Aanonsen <eaa@wprmedical.com>
55488 Date:   Tue Sep 18 08:47:20 2007 +0200
55489
55490     Update atstk1002 bootargs.
55491
55492     Updates to atstk1002 U-Boot header file:
55493     - Changed bootargs:
55494         * Set the bootargs for at1002 to point to the SD-card partition instead
55495         * ... of the boot flash.
55496         * Removing the rootfstype since that argument are not needed.
55497
55498     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
55499     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55500
55501 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
55502 Author: Eirik Aanonsen <eaa@wprmedical.com>
55503 Date:   Wed Sep 12 13:32:37 2007 +0200
55504
55505     Add some comments to clocks in atstk1002.h
55506
55507     This patch applies some clarifying comments to how the different
55508     clocks are setup according to atstk1002.h Some of the previous
55509     comments where stating wrongful information.
55510
55511     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55512
55513 commit 97213f32416ead885deafea86774e912ffd60ad0
55514 Author: David Saada <David.Saada@ecitele.com>
55515 Date:   Mon Sep 17 17:04:47 2007 +0200
55516
55517     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
55518
55519     Signed-off-by: David Saada <david.saada@ecitele.com>
55520
55521 commit 30363e98fa470fbecea5e8bc0f1443352754f303
55522 Author: Stefan Roese <sr@denx.de>
55523 Date:   Mon Sep 17 08:20:47 2007 +0200
55524
55525     Small whitespace cleanup of OneNAND patch
55526
55527     Signed-off-by: Stefan Roese <sr@denx.de>
55528
55529 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
55530 Author: Kyungmin Park <kmpark@infradead.org>
55531 Date:   Mon Sep 10 17:15:14 2007 +0900
55532
55533     OneNAND support (take #2)
55534
55535     [PATCH 3/3] OneNAND support (take #2)
55536
55537     OneNAND support at U-Boot
55538
55539     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55540
55541 commit 17aa2800457df0c06b41516f46f126712c196219
55542 Author: Kyungmin Park <kmpark@infradead.org>
55543 Date:   Mon Sep 10 17:14:34 2007 +0900
55544
55545     OneNAND support (take #2)
55546
55547     [PATCH 2/3] OneNAND support (take #2)
55548
55549     OneNAND support at U-Boot
55550
55551     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55552
55553 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
55554 Author: Kyungmin Park <kmpark@infradead.org>
55555 Date:   Mon Sep 10 17:13:49 2007 +0900
55556
55557     OneNAND support (take #2)
55558
55559     [PATCH 1/3] OneNAND support (take #2)
55560
55561     OneNAND support at U-Boot
55562
55563     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55564
55565 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
55566 Author: Michal Simek <monstr@monstr.eu>
55567 Date:   Sun Sep 16 20:51:57 2007 +0200
55568
55569     [FIX] remove files form repository
55570
55571 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
55572 Author: Wolfgang Denk <wd@denx.de>
55573 Date:   Sun Sep 16 17:10:04 2007 +0200
55574
55575     TQM8xx[LM]: Fix broken environment alignment.
55576
55577     With recent toolchains, the environment sectors were no longer aligned to
55578     sector boundaries. The reason was a combination of two bugs:
55579
55580     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
55581        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
55582        this gets defined, is not included here (and cannot be included
55583        without causing lots of problems).
55584
55585        Added a new #define CFG_USE_PPCENV for all boards which really
55586        want to put the environment is a ".ppcenv" section.
55587
55588     2) The linker scripts just include environment.o, silently assuming
55589        that the objects in that file are really in the order in which
55590        they are coded in the C file, i. e. "environment" first, then
55591        "redundand_environment", and "env_size" last. However, current
55592        toolchains (GCC-4.x) reorder the objects, causing the environment
55593        data not to start on a flash sector boundary:
55594
55595        Instead of:                                      we got:
55596
55597         40008000 T environment                  40008000 T env_size
55598         4000c000 T redundand_environment        40008004 T redundand_environment
55599         40010000 T env_size                     4000c004 T environment
55600
55601        Note: this patch fixes just the first part, and cures the alignment
55602        problem by making sure that "env_size" gets placed correctly. However,
55603        we still have a potential issue because primary and redundant
55604        environment sectors are actually swapped, i. e. we have now:
55605
55606         40008000 T redundand_environment
55607         4000c000 T environment
55608         40010000 T env_size
55609
55610        This shall be fixed in the next version.
55611
55612     Signed-off-by: Wolfgang Denk <wd@denx.de>
55613
55614 commit eb6da8050797c204c9d010548424186c7ce32fc1
55615 Author: Wolfgang Denk <wd@denx.de>
55616 Date:   Sun Sep 16 02:39:35 2007 +0200
55617
55618     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
55619
55620     Signed-off-by: Wolfgang Denk <wd@denx.de>
55621
55622 commit cd2d1602c54cc6957bdef3872272a4b264893960
55623 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
55624 Date:   Mon Sep 10 14:54:56 2007 -0400
55625
55626     Typo fix in tsec.c
55627
55628     Fixup for the break statement in wrong place.
55629
55630     [Patch by urwithsughosh@gmail.com]
55631     Acked-by: Andy Fleming <afleming@freescale.com>
55632     Signed-off-by:      Wolfgang Denk <wd@denx.de>
55633
55634 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
55635 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55636 Date:   Tue Sep 11 17:04:00 2007 +0200
55637
55638     Fix do_div() usage in nand process output
55639
55640     Fix usage of do_div() in nand erase|read|write process output.
55641
55642     The last patch to nand_util.c introduced do_div() instead of libgcc's
55643     implementation. But do_div() returns the quotient in its first
55644     macro parameter and not as result.
55645
55646     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55647
55648 commit c750d2e6692a000a82f29de7bf24e3dc21239161
55649 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55650 Date:   Wed Sep 12 12:36:53 2007 +0200
55651
55652     NAND: Add CFG_NAND_QUIET option
55653
55654     This config option sets the default for the progress information
55655     output behavior that can also be configured through the 'quiet'
55656     environment variable.
55657
55658     The legacy NAND code does not print the current progress info
55659     on the console. So this option is for backward compatibility for
55660     units that are in the field and where setting the quiet variable
55661     is not an option. With CFG_NAND_QUIET set to '1' the console
55662     progress info is turned off. This can still be overwritten
55663     through the environment variable.
55664
55665     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55666
55667 commit dcb88630290d2bcd803386dd4c2be73142994c4f
55668 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
55669 Date:   Thu Sep 13 16:06:05 2007 -0700
55670
55671     ColdFire: fix build error becasue of bad type of mii_init()
55672
55673     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55674
55675 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
55676 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
55677 Date:   Thu Sep 13 16:04:05 2007 -0700
55678
55679     ColdFire: Fix build error caused by pixis.c
55680
55681     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
55682
55683     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55684
55685 commit e21659e30660a1377c42af135a6114efe39801d9
55686 Author: Sam Sparks <SSparks@twacs.com>
55687 Date:   Fri Sep 14 11:14:42 2007 -0600
55688
55689     Update MPC8349ITX*_config to place config.tmp in right place.
55690
55691     MPC834ITX*_config does not store config.tmp at the correct locatation,
55692     causing MPC8349ITXGP to have the wrong TEXT_BASE.
55693
55694     Signed-off-by: Sam Sparks <SSparks@twacs.com>
55695     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55696
55697 commit 1218abf1b5817a39a82399b4b928b00750575bda
55698 Author: Wolfgang Denk <wd@denx.de>
55699 Date:   Sat Sep 15 20:48:41 2007 +0200
55700
55701     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
55702
55703     Signed-off-by: Wolfgang Denk <wd@denx.de>
55704
55705 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
55706 Author: Dirk Behme <dirk.behme@googlemail.com>
55707 Date:   Sat Sep 15 11:55:42 2007 +0200
55708
55709     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
55710
55711     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
55712     function local.
55713
55714     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
55715
55716     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
55717
55718 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
55719 Author: Michal Simek <monstr@monstr.eu>
55720 Date:   Sat Sep 15 00:03:35 2007 +0200
55721
55722     Synchronize with U-BOOT mainline
55723
55724 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
55725 Author: Sam Sparks <SSparks@twacs.com>
55726 Date:   Fri Sep 14 11:14:42 2007 -0600
55727
55728     Update MPC8349ITX*_config to place config.tmp in right place.
55729
55730     MPC834ITX*_config does not store config.tmp at the correct locatation,
55731     causing MPC8349ITXGP to have the wrong TEXT_BASE.
55732
55733     Signed-off-by: Sam Sparks <SSparks@twacs.com>
55734     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55735     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55736
55737 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
55738 Author: Bartlomiej Sieka <tur@semihalf.com>
55739 Date:   Thu Sep 13 18:21:48 2007 +0200
55740
55741     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
55742
55743     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55744
55745 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
55746 Author: Bartlomiej Sieka <tur@semihalf.com>
55747 Date:   Thu Sep 13 16:33:59 2007 +0200
55748
55749     tqm5200: Restore customary env. variable boot commands for powerpc kernels
55750
55751     - update default definitions of kernel_addr and fdt_addr env. variables
55752     - make arch/powerpc booting the default scenario
55753     - update MTD partition layout to match the above
55754
55755     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55756
55757 commit f34024d4a328e6edd906456da98d2c537155c4f7
55758 Author: Wolfgang Denk <wd@denx.de>
55759 Date:   Wed Sep 12 00:48:57 2007 +0200
55760
55761     Fix memory corruption problem on STX GP3 SSA Board.
55762
55763     Signed-off-by: Wolfgang Denk <wd@denx.de>
55764
55765 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
55766 Author: Peter Pearse <peter.pearse@arm.com>
55767 Date:   Tue Sep 11 15:35:01 2007 +0100
55768
55769     Final tidy
55770
55771 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
55772 Author: Grzegorz Bernacki <gjb@semihalf.com>
55773 Date:   Tue Sep 11 15:42:11 2007 +0200
55774
55775     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
55776     scan on second pci bus.
55777
55778     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55779
55780 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
55781 Author: Grzegorz Bernacki <gjb@semihalf.com>
55782 Date:   Tue Sep 11 12:57:52 2007 +0200
55783
55784     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
55785
55786     Bamboo has a file sdram.c which needs special treatment when building in
55787     separate directory. It has to be linked to build directory otherwise it is
55788     not seen.
55789
55790     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55791
55792 commit d45963854eff39d575124d859419bb4953ce2c87
55793 Author: Michal Simek <monstr@monstr.eu>
55794 Date:   Tue Sep 11 00:37:04 2007 +0200
55795
55796     [FIX] Microblaze ML401 - repare FLASH handling
55797
55798 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
55799 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
55800 Date:   Mon Sep 10 16:55:59 2007 +0100
55801
55802     Allocate CPU Architecture Code for STMicroelectronics' ST200.
55803
55804     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
55805     ---------------------------------------------------
55806
55807 commit 754bac48156f8958d8f6a53a51eda88ab5758929
55808 Author: Wolfgang Denk <wd@denx.de>
55809 Date:   Mon Sep 10 20:42:31 2007 +0200
55810
55811     Update version to match current state.
55812
55813     Signed-off-by: Wolfgang Denk <wd@denx.de>
55814
55815 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
55816 Author: Grzegorz Bernacki <gjb@semihalf.com>
55817 Date:   Mon Sep 10 17:39:08 2007 +0200
55818
55819     [MPC512x] Streamline frame handling in the FEC driver
55820
55821     - convert frame size settings to be derived from a single base
55822     - set frame size to the recommended default value
55823
55824     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55825
55826 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
55827 Author: Kyungmin Park <kmpark@infradead.org>
55828 Date:   Mon Sep 10 11:34:00 2007 +0900
55829
55830     Remove compiler warning: target CPU does not support interworking
55831
55832     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55833
55834 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
55835 Author: Wolfgang Denk <wd@denx.de>
55836 Date:   Sun Sep 9 21:21:33 2007 +0200
55837
55838     Fix compile error in spc1920 config.
55839
55840     Signed-off-by: Markus Klotzbücher <mk@denx.de>
55841     Signed-off-by: Wolfgang Denk <wd@denx.de>
55842
55843 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
55844 Author: Grant Likely <grant.likely@secretlab.ca>
55845 Date:   Fri Sep 7 09:25:07 2007 -0600
55846
55847     Bugfix: make bootm+libfdt compile on boards with no flash
55848
55849     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
55850
55851 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
55852 Author: Grzegorz Bernacki <gjb@semihalf.com>
55853 Date:   Fri Sep 7 18:35:37 2007 +0200
55854
55855     [PPC440SPe] PCIe environment settings for Katmai and Yucca
55856
55857     - 'pciconfighost' is set by default in order to be able to scan bridges
55858     behind the primary host/PCIe
55859
55860     - 'pciscandelay' env variable is recognized to allow for user-controlled
55861     delay before the PCIe bus enumeration; some peripheral devices require a
55862     significant delay before they can be scanned (e.g. LSI8408E); without the
55863     delay they are not detected
55864
55865     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55866
55867 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
55868 Author: Grzegorz Bernacki <gjb@semihalf.com>
55869 Date:   Fri Sep 7 18:20:23 2007 +0200
55870
55871     [PPC440SPe] Improve PCIe configuration space access
55872
55873     - correct configuration space mapping
55874     - correct bus numbering
55875     - better access to config space
55876
55877     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
55878     first device on the first bus. We now allow to configure up to 16 buses;
55879     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
55880     peripheral devices farther in hierarchy can be identified.
55881
55882     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55883
55884 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
55885 Author: Grzegorz Bernacki <gjb@semihalf.com>
55886 Date:   Fri Sep 7 17:46:18 2007 +0200
55887
55888     [PPC440SPe] Convert machine check exceptions handling
55889
55890     Convert using fixup mechanism to suppressing MCK for the duration of config
55891     read/write transaction: while fixups work fine with the case of a precise
55892     exception, we identified a major drawback with this approach when there's
55893     an imprecise case. In this scenario there is the following race condition:
55894     the fixup is (by design) set to catch the instruction following the one
55895     actually causing the exception; if an interrupt (e.g. decrementer) happens
55896     between those two instructions, the ISR code is executed before the fixup
55897     handler the machine check is no longer protected by the fixup handler as it
55898     appears as within the ISR code. In consequence the fixup approach is being
55899     phased out and replaced with explicit suppressing of MCK during a PCIe
55900     config read/write cycle.
55901
55902     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55903
55904 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
55905 Author: Wolfgang Denk <wd@denx.de>
55906 Date:   Fri Sep 7 17:43:36 2007 +0200
55907
55908     Fix typo in MAKEALL script.
55909
55910     Signed-off-by: Wolfgang Denk <wd@denx.de>
55911
55912 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
55913 Author: Grzegorz Bernacki <gjb@semihalf.com>
55914 Date:   Fri Sep 7 17:09:21 2007 +0200
55915
55916     [MPC512x] Proper handling of larger frames in the FEC driver
55917
55918     When frame larger than local RX buffer is received, it is split and handled
55919     by two buffer descriptors. Prior to this patch the FEC driver discarded
55920     contents of a buffer descriptor without the 'LAST' bit set, so the first
55921     part of the frame was lost in case of larger frames. This fix allows to
55922     safely combine the two pieces into the whole frame.
55923
55924     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
55925
55926 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
55927 Author: Rafal Jaworowski <raj@semihalf.com>
55928 Date:   Fri Sep 7 17:05:36 2007 +0200
55929
55930     [MPC512x] Correct fixup relocation
55931
55932     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55933
55934 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
55935 Author: Wolfgang Denk <wd@denx.de>
55936 Date:   Fri Sep 7 01:21:25 2007 +0200
55937
55938     Update CHANGELOG, minor coding style cleanup.
55939
55940 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
55941 Author: stefano babic <sbabic@denx.de>
55942 Date:   Thu Aug 30 23:01:49 2007 +0200
55943
55944     PXA270: Added support for TrizepsIV board.
55945
55946     This patch add support for the Trizeps IV module (520Mhz).
55947
55948     Signed-off-by: Stefano Babic <sbabic@denx.de>
55949
55950 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
55951 Author: stefano babic <sbabic@denx.de>
55952 Date:   Thu Aug 30 22:57:04 2007 +0200
55953
55954     PXA270: Add support for multiple serial ports.
55955
55956     This patch adds support for multiple serial ports to the PXA target.
55957     FFUART, BTUART and STUART are supported.
55958
55959     Signed-off-by: Stefano Babic <sbabic@denx.de>
55960
55961 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
55962 Author: stefano babic <sbabic@denx.de>
55963 Date:   Thu Aug 30 22:48:47 2007 +0200
55964
55965     PXA270: fix compile issue (invalid lvalue)
55966
55967     Code is broken for PXA270 due to "invalid lvalue in assignment".
55968
55969     This patch fix it in pxa-regs.h
55970
55971     Signed-off-by: Stefano Babic <sbabic@denx.de>
55972
55973 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
55974 Author: Jason Jin <Jason.jin@freescale.com>
55975 Date:   Thu Aug 30 18:19:05 2007 +0800
55976
55977     Add BUILD_DIR support for bios emulator.
55978
55979     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
55980
55981 commit b4d8a55145442f136982634862341a3e02002bda
55982 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55983 Date:   Fri Aug 31 14:41:51 2007 +0900
55984
55985     [MIPS] Remove inline asm string functions
55986
55987     Stop using inline string functions on MIPS as other ARCHs do so,
55988     since the optimized inline asm versions are not small.
55989
55990     This change is triggered by a following MIPS build error:
55991     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
55992     common/exports.c:32: undefined reference to `strcmp'
55993     make: *** [u-boot] Error 1
55994
55995     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55996
55997 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
55998 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55999 Date:   Fri Aug 31 14:41:45 2007 +0900
56000
56001     [MIPS] Update asm string header
56002
56003     This patches contains several bugfixes and cleanups in the latest upstream:
56004
56005      - Don't include linux/config.h
56006      - Remove buggy inline version of memscan.
56007      - Merge with Linux 2.6.11-rc3.
56008      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
56009      - Goodbye mips64.  31704 lines of code bite the dust.
56010      - Replace extern inline with static inline.
56011      - Fix return value of strncpy.
56012      - Remove a bunch more "$1" clobbers.
56013
56014     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56015
56016 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
56017 Author: Bartlomiej Sieka <tur@semihalf.com>
56018 Date:   Tue Sep 4 17:31:22 2007 +0200
56019
56020     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
56021
56022     Fix incorrect blob address calculation in do_bootm_linux() that prevents
56023     booting the kernel from a multi-file image (kernel + initrd + blob).
56024
56025     Also, make minor updates to the U-Boot's output and to the coding style.
56026
56027     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
56028
56029 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
56030 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
56031 Date:   Fri Aug 31 14:29:04 2007 +0200
56032
56033     Add support for Sil680 IDE controller.
56034
56035     o add drivers/sil680.c to support the Sil680 IDE-controller.
56036     o drivers/Makefile: add sil680.o.
56037
56038     Signed-off-by: Gary Jennejohn <garyj@denx.de>
56039
56040 commit e79021223bc339df655e360645a52c457a74b067
56041 Author: Grant Likely <grant.likely@secretlab.ca>
56042 Date:   Thu Sep 6 09:47:40 2007 -0600
56043
56044     bootm/fdt: Only process the fdt if an fdt address was provided
56045
56046     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
56047     kernels using the board info structure (instead of passing a device tree)
56048     This change allows the old style booting to be used if the fdt argument
56049     was not passed to 'bootm'.
56050
56051     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56052     Acked-by: Kim Phillips <kim.phillips@freescale.com>
56053
56054 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
56055 Author: Grant Likely <grant.likely@secretlab.ca>
56056 Date:   Thu Sep 6 09:46:23 2007 -0600
56057
56058     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
56059
56060     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
56061
56062     Tested on: lite5200b
56063
56064     Note: the fixup functions have not been moved to a common place.  This
56065     patch is targeted for immediate merging as in solves a build issue, but
56066     the final name/location of the fixups is still subject to debate.  I
56067     propose to merge this now, and move the fixups in the next merge window
56068     to be usable by all targets.
56069
56070     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56071
56072 commit 41bb76e941929f54a73206fb132f7a4c275543a3
56073 Author: Grant Likely <grant.likely@secretlab.ca>
56074 Date:   Thu Sep 6 09:46:17 2007 -0600
56075
56076     libfdt: add convenience function fdt_find_and_setprop()
56077
56078     Given the path to a node, fdt_find_and_setprop() allows a property value
56079     to be set directly.
56080
56081     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56082
56083 commit 80767a6cead9990d9e77e62be947843c2c72f469
56084 Author: Peter Pearse <peter.pearse@arm.com>
56085 Date:   Wed Sep 5 16:04:41 2007 +0100
56086
56087     Changed API name to coloured_led.h
56088     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
56089     Tidied other cpu/arm920t/start.S code
56090
56091 commit 56a9270521baaa00e12639a978302a67f61ef060
56092 Author: Kumar Gala <galak@kernel.crashing.org>
56093 Date:   Thu Aug 30 16:18:18 2007 -0500
56094
56095     Fix ULI RTC support on MPC8544 DS
56096
56097     The RTC on the M1575 ULI chipset requires a dummy read before
56098     we are able to talk to the RTC.  We accomplish this by adding a
56099     second memory region to the PHB the ULI is on and read from it.
56100
56101     The second region is added to maintain compatiabilty with Linux's
56102     view of the PCI memory map.
56103
56104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56105
56106 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
56107 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56108 Date:   Thu Aug 30 01:58:48 2007 -0500
56109
56110     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
56111
56112     pcie is now differentiated from pci.  Add 8641 bus-range updates.
56113
56114     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56115
56116 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
56117 Author: Peter Pearse <peter.pearse@arm.com>
56118 Date:   Tue Sep 4 16:18:38 2007 +0100
56119
56120     Add coloured led interface for ARM boards.
56121     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
56122
56123 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
56124 Author: Peter Pearse <peter.pearse@arm.com>
56125 Date:   Tue Sep 4 14:49:28 2007 +0100
56126
56127     Move include/led.h to board/at91rm9200dk
56128
56129 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
56130 Author: Peter Pearse <peter.pearse@arm.com>
56131 Date:   Tue Sep 4 14:25:51 2007 +0100
56132
56133     Ran Lindent on drivers/at45.c
56134
56135 commit 557ab89d294f08dd532f21d19861b40093200a33
56136 Author: Peter Pearse <peter.pearse@arm.com>
56137 Date:   Tue Sep 4 14:23:50 2007 +0100
56138
56139     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
56140
56141 commit 81b73dec16fd1227369a191e725e10044a9d56b8
56142 Author: Gary Jennejohn <garyj@denx.de>
56143 Date:   Fri Aug 31 15:21:46 2007 +0200
56144
56145     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
56146
56147     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
56148     set to non-zero, because it doesn't support MRM (memory-read-
56149     multiple) correctly. We now added the possibility to configure
56150     this register in the board config file, so that the default value
56151     of 8 can be overridden.
56152
56153     Here the details of this patch:
56154
56155     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
56156       board-specific settings. As an example the sequoia board requires 0.
56157       Idea from Stefan Roese <sr@denx.de>.
56158     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
56159       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
56160     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
56161       CFG_PCI_CACHE_LINE_SIZE to 0.
56162
56163     Signed-off-by: Gary Jennejohn <garyj@denx.de>
56164     Signed-off-by: Stefan Roese <sr@denx.de>
56165
56166 commit 60174746c668b309378a91488dded898e9553eae
56167 Author: Wolfgang Denk <wd@denx.de>
56168 Date:   Fri Aug 31 10:01:51 2007 +0200
56169
56170     Fix TFTP OACK code for short packets.
56171
56172     The old code had a loop limit overflow bug which caused a semi-
56173     infinite loop for small packets, because in "i<len-8", "i" was signed,
56174     but "len" was unsigned, and "len-8" became a huge number for small
56175     values of "len".
56176
56177     This is a workaround which replaces broken commit 8f1bc284.
56178
56179     Signed-off-by: Wolfgang Denk <wd@denx.de>
56180
56181 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
56182 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
56183 Date:   Thu Aug 30 15:03:05 2007 +0200
56184
56185     Reduce BOOTDELAY variable to 1 second by default for STK1002
56186
56187     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
56188     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56189
56190 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
56191 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
56192 Date:   Thu Aug 30 15:03:04 2007 +0200
56193
56194     Remove double quotation marks around MAC address for STK1002
56195
56196     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
56197     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56198
56199 commit ff13ac8c7bbebb238e339592de765c546dba1073
56200 Author: Wolfgang Denk <wd@denx.de>
56201 Date:   Thu Aug 30 14:42:15 2007 +0200
56202
56203     Backout commit 8f1bc284 as it causes TFTP to fail.
56204
56205     Signed-off-by: Wolfgang Denk <wd@denx.de>
56206
56207 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
56208 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56209 Date:   Thu Aug 30 02:26:17 2007 -0500
56210
56211     Revert "Fix MPC8544DS PCIe3 scsi."
56212
56213     This reverts commit 9468e680.
56214     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
56215
56216     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56217
56218 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
56219 Author: Grant Likely <grant.likely@secretlab.ca>
56220 Date:   Wed Aug 29 18:26:24 2007 -0600
56221
56222     tftp: don't implicity trust the format of recevied packets
56223
56224     The TFTP OACK code trusts that the incoming packet is formated as
56225     ASCII text and can be processed by string functions. It also has a
56226     loop limit overflow bug where if the packet length is less than 8, it
56227     ends up looping over *all* of memory to find the 'blksize' string.
56228
56229     This patch solves the problem by forcing the packet to be null
56230     terminated and using strstr() to search for the sub string.
56231
56232     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56233
56234 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
56235 Author: Stefan Roese <sr@denx.de>
56236 Date:   Wed Aug 29 16:31:18 2007 +0200
56237
56238     ppc4xx: Change lwmon5 default environment to support Linux RTC
56239
56240     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
56241     to supply the RTC I2C address as bootline parameter. This patch
56242     adds support for this rtc probing parameter to the bootargs:
56243
56244     "rtc-pcf8563.probe=0,0x51"
56245
56246     Signed-off-by: Stefan Roese <sr@denx.de>
56247
56248 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
56249 Author: Kim Phillips <kim.phillips@freescale.com>
56250 Date:   Wed Aug 29 09:06:05 2007 -0500
56251
56252     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
56253
56254     this had slipped through the cracks, since the sbc board was added
56255     after I wrote the original patch to remove all these symbols, and
56256     before it was merged.
56257
56258     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56259
56260 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
56261 Author: Wolfgang Denk <wd@denx.de>
56262 Date:   Wed Aug 29 14:05:30 2007 +0200
56263
56264     Add mii_init() prototype
56265
56266     to get rid of a *lot* of compiler warnings.
56267
56268     Signed-off-by: Wolfgang Denk <wd@denx.de>
56269
56270 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
56271 Author: Wolfgang Denk <wd@denx.de>
56272 Date:   Wed Aug 29 13:35:03 2007 +0200
56273
56274     Disable network support on cmi_mpc5xx board
56275
56276     ..because it caused compiler errors and there seems to be no
56277     board maintainer to take care of this.
56278
56279     Signed-off-by: Wolfgang Denk <wd@denx.de>
56280
56281 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
56282 Author: Kumar Gala <galak@kernel.crashing.org>
56283 Date:   Mon Aug 20 09:44:00 2007 -0500
56284
56285     Fix MPC8544DS PCIe3 scsi.
56286
56287     <ed.swarthout@freescale.com>
56288
56289     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
56290     is allocating memory space it doesn't need.
56291
56292     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
56293     Signed-off-by: Andy Fleming <afleming@freescale.com>
56294
56295 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
56296 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56297 Date:   Tue Aug 21 09:38:59 2007 -0500
56298
56299     8548cds fixes
56300
56301     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
56302     correct consoledev needed for linux boot.
56303     Standardize on fdt{file,addr} var to hold dtb file name.
56304
56305     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
56306
56307     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56308
56309 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
56310 Author: Haiying Wang <Haiying.Wang@freescale.com>
56311 Date:   Thu Aug 23 15:20:54 2007 -0400
56312
56313     Enable L2 cache for MPC8568MDS board
56314
56315     The L2 cache size is 512KB for 8568, print out the correct informaiton.
56316
56317     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
56318
56319 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
56320 Author: Jason Jin <Jason.jin@freescale.com>
56321 Date:   Wed Aug 22 17:54:49 2007 +0800
56322
56323     Remove the bios emulator binary files from MAI board
56324
56325     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
56326
56327 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
56328 Author: Kim Phillips <kim.phillips@freescale.com>
56329 Date:   Tue Aug 21 17:00:17 2007 -0500
56330
56331     support board vendor-common makefiles
56332
56333     if a board/$(VENDOR)/common/Makefile exists, build it.
56334
56335     also add the first such case, board/freescale/common/Makefile, to
56336     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
56337     dictated by board configuration.
56338
56339     thusly get rid of alternate build dir errors such as:
56340
56341     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
56342
56343     by putting the common/ mkdir command in its proper place (the common
56344     Makefile). Common bits from existing individual board Makefiles have
56345     been removed.
56346
56347     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56348
56349 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
56350 Author: stefano babic <sbabic@denx.de>
56351 Date:   Tue Aug 21 15:52:33 2007 +0200
56352
56353     Fix: TFTP is not working on little endian systems
56354
56355     TFTP does not work anymore after multicast tftp
56356     patch was applied on little endian systems.
56357     This patch fix it.
56358
56359     Signed-off-by: Stefano Babic <sbabic@denx.de>
56360
56361 commit 5f470948570526e9186f053a3003da7719604e90
56362 Author: stefano babic <sbabic@denx.de>
56363 Date:   Tue Aug 21 15:50:33 2007 +0200
56364
56365     Fix MAC address setting in DM9000 driver.
56366
56367     The logic to check if there is a correct MAC address in the DM9000
56368     EEPROM, added in the last patch, is wrong. Now the MAC address is
56369     always taken from the environment, even if a suitable MAC is present
56370     in the EEPROM.
56371
56372     Signed-off-by: Stefano Babic <sbabic@denx.de>
56373
56374 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
56375 Author: Martin Krause <martin.krause@tqs.de>
56376 Date:   Tue Aug 21 12:40:34 2007 +0200
56377
56378     MPC5xxx: fix some compiler warnings in USB code
56379
56380     Fix the following warnings:
56381     - usb.c:xx: warning: function declaration isn't a prototype
56382     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
56383       from pointer wihtout a cast
56384
56385     Signed-off-by: Martin Krause <martin.krase@tqs.de>
56386
56387 commit 16e23c3f5dab6937f5109365416808c7f15c122b
56388 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56389 Date:   Mon Aug 20 23:55:33 2007 -0500
56390
56391     fsl_pci_init - Remove self PCSRBAR allocation
56392
56393     CPU physical address space was being wasted by allocating a
56394     PCSRBAR PCI inbound region to it's memory space.
56395
56396     As a rule, PCSRBAR should be left alone since it does not affect
56397     transactions from self and other masters may have changed it.
56398
56399     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
56400
56401 commit 0e700ce03a23bb1921149bc77008ace7103d5289
56402 Author: Martin Krause <martin.krause@tqs.de>
56403 Date:   Mon Aug 20 13:56:47 2007 +0200
56404
56405     Fix compiler warning in include/s3c2410.h
56406
56407     This patch fixes the "type qualifiers ignored on fuction return tpye"
56408     warning for include/s3c2410.h
56409
56410     Signed-off-by: Martin Krause <martin.krause@tqs.de>
56411
56412 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
56413 Author: Dirk Behme <dirk.behme@googlemail.com>
56414 Date:   Mon Aug 20 07:09:05 2007 +0200
56415
56416     Fix compilation error for omap2420h4_config.
56417
56418     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
56419     and flash_probe() calls in env_flash.c.
56420
56421     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
56422
56423 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
56424 Author: Kim Phillips <kim.phillips@freescale.com>
56425 Date:   Fri Aug 10 14:34:14 2007 -0500
56426
56427     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
56428
56429     and make some minor corrections to the FDT part of the README.
56430
56431     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56432
56433 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
56434 Author: Wolfgang Denk <wd@denx.de>
56435 Date:   Wed Aug 29 01:32:05 2007 +0200
56436
56437     Minor coding style cleanup.
56438
56439     Signed-off-by: Wolfgang Denk <wd@denx.de>
56440
56441 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
56442 Author: Heiko Schocher <hs@pollux.denx.de>
56443 Date:   Tue Aug 28 17:40:33 2007 +0200
56444
56445     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
56446
56447     Signed-off-by: Heiko Schocher <hs@denx.de>
56448
56449 commit f98984cb194bb34dbe1db9429d3b51133af30d07
56450 Author: Heiko Schocher <hs@pollux.denx.de>
56451 Date:   Tue Aug 28 17:39:14 2007 +0200
56452
56453     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
56454               define there own I/O functions.
56455               (Needed for the pcs440ep board).
56456             - The default I/O Functions are again 8 Bit accesses.
56457             - Added CONFIG_CMD_IDE for the pcs440ep Board.
56458
56459     Signed-off-by: Heiko Schocher <hs@denx.de>
56460
56461 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
56462 Author: Semih Hazar <semih.hazar@indefia.com>
56463 Date:   Mon Aug 20 19:00:01 2007 +0300
56464
56465     AVR32: Change prototype of memset
56466
56467     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
56468     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56469
56470 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
56471 Author: Yuri Tikhonov <yur@emcraft.com>
56472 Date:   Sat Aug 25 05:07:16 2007 +0200
56473
56474     POST: limit memory test area to not touch global data anymore
56475
56476     As experienced on lwmon5, on some boards the POST memory test can
56477     corrupt the global data buffer (bd). This patch fixes this issue
56478     by checking and limiting this area.
56479
56480     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
56481     Signed-off-by: Stefan Roese <sr@denx.de>
56482
56483 commit 75e1a84d483e36be10e206e539b028c4889e1158
56484 Author: Stefan Roese <sr@denx.de>
56485 Date:   Fri Aug 24 15:41:42 2007 +0200
56486
56487     ppc4xx: Add RTC POST test to lwmon5 board configuration
56488
56489     Since this RTC POST test is taking quite a while to complete
56490     it's only initiated upon special keypress same as the complete
56491     memory POST.
56492
56493     Signed-off-by: Stefan Roese <sr@denx.de>
56494
56495 commit d7bfa620037a6d2210159387571bdf93aa32c162
56496 Author: Stefan Roese <sr@denx.de>
56497 Date:   Fri Aug 24 15:19:10 2007 +0200
56498
56499     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
56500
56501     Signed-off-by: Stefan Roese <sr@denx.de>
56502
56503 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
56504 Author: Stefan Roese <sr@denx.de>
56505 Date:   Thu Aug 23 11:02:37 2007 +0200
56506
56507     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
56508
56509     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
56510     board. Now the "eeprom" command can be used to read/write from/to this
56511     device. Additionally a new command was added "eepromwp" to en-/disable
56512     the write-protect of this 2nd EEPROM.
56513
56514     The 1st EEPROM is not affected by this write-protect command.
56515
56516     Signed-off-by: Stefan Roese <sr@denx.de>
56517
56518 commit c64fb30e4c5976007d56fc1789c7a0666082b536
56519 Author: Stefan Roese <sr@denx.de>
56520 Date:   Wed Aug 22 08:56:09 2007 +0200
56521
56522     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
56523
56524     Signed-off-by: Stefan Roese <sr@denx.de>
56525
56526 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
56527 Author: Stefan Roese <sr@denx.de>
56528 Date:   Tue Aug 21 16:27:57 2007 +0200
56529
56530     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
56531
56532     This patch adds support for the matrix keyboard on the lwmon5 board.
56533     Since the implementation in the dsPCI is kind of compatible with the
56534     "old" lwmon board, most of the code is copied from the lwmon
56535     board directory.
56536
56537     Signed-off-by: Stefan Roese <sr@denx.de>
56538
56539 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
56540 Author: Wolfgang Denk <wd@denx.de>
56541 Date:   Sun Aug 19 10:27:34 2007 +0200
56542
56543     Fix some build errors.
56544
56545     Signed-off-by: Wolfgang Denk <wd@denx.de>
56546
56547 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
56548 Author: Wolfgang Denk <wd@denx.de>
56549 Date:   Sat Aug 18 22:00:38 2007 +0200
56550
56551     Update CHANGELOG.
56552
56553 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
56554 Author: Kim Phillips <kim.phillips@freescale.com>
56555 Date:   Thu Aug 16 22:52:39 2007 -0500
56556
56557     lib_ppc: make board_add_ram_info weak
56558
56559     platforms wishing to display RAM diagnostics in addition to size,
56560     can do so, on one line, in their own board_add_ram_info()
56561     implementation.
56562
56563     this consequently eliminates CONFIG_ADD_RAM_INFO.
56564
56565     Thanks to Stefan for the hint.
56566
56567     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56568
56569 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
56570 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56571 Date:   Fri Aug 17 12:43:44 2007 +0900
56572
56573     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
56574
56575     This patch has been sent on:
56576     - 6 Jun 2007
56577
56578     Many users of PCI config read routines tend to ignore the function
56579     ret value, and are only concerned about the contents of *val. Based
56580     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
56581     the *val on dword read error.
56582
56583     Without this fix, for example, we'll go on scanning bus with vendor or
56584     header_type uninitialized. This brings many unnecessary config trials.
56585
56586     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
56587
56588 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
56589 Author: Stefan Roese <sr@denx.de>
56590 Date:   Sat Aug 18 14:37:52 2007 +0200
56591
56592     ColdFire: Fix some remaining problems with CFG_CMD_
56593
56594     Signed-off-by: Stefan Roese <sr@denx.de>
56595
56596 commit 8280f6a1c43247616b68224675188e5ccd124650
56597 Author: Stefan Roese <sr@denx.de>
56598 Date:   Sat Aug 18 14:33:02 2007 +0200
56599
56600     Coding style cleanup
56601
56602     Signed-off-by: Stefan Roese <sr@denx.de>
56603
56604 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
56605 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56606 Date:   Thu Aug 16 19:23:50 2007 -0500
56607
56608     ColdFire: Add M5235EVB Platform for MCF523x
56609
56610     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56611
56612 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
56613 Author: Kim Phillips <kim.phillips@freescale.com>
56614 Date:   Fri Aug 17 09:30:00 2007 -0500
56615
56616     mpc83xx: fix typo in DDR2 programming
56617
56618     introduced in the implement board_add_ram_info patch as I was cleaning out the
56619     magic numbers.  sorry.
56620
56621     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56622
56623 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
56624 Author: Kim Phillips <kim.phillips@freescale.com>
56625 Date:   Thu Aug 16 22:53:09 2007 -0500
56626
56627     mpc83xx: move freescale boards to boards/freescale
56628
56629     includes build fixes.
56630
56631     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56632
56633 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
56634 Author: Kim Phillips <kim.phillips@freescale.com>
56635 Date:   Thu Aug 16 22:52:59 2007 -0500
56636
56637     mpc83xx: suppress unused variable 'val8' warning
56638
56639     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56640
56641 commit bbea46f76f767b919070b4829bf34c86bd223248
56642 Author: Kim Phillips <kim.phillips@freescale.com>
56643 Date:   Thu Aug 16 22:52:48 2007 -0500
56644
56645     mpc83xx: implement board_add_ram_info
56646
56647     add board_add_ram_info, to make memory diagnostic output more
56648     consistent. u-boot banner output now looks like:
56649
56650     DRAM:  256 MB (DDR1, 64-bit, ECC on)
56651
56652     and for boards with SDRAM on the local bus, a line such as this is
56653     added:
56654
56655     SDRAM: 64 MB (local bus)
56656
56657     also replaced some magic numbers with their equivalent define names.
56658
56659     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56660
56661 commit 14778585d1389d86d5846efec29e5fce892680ce
56662 Author: Tony Li <tony.li@freescale.com>
56663 Date:   Fri Aug 17 10:35:59 2007 +0800
56664
56665     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
56666
56667     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
56668     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
56669
56670     Signed-off-by Tony Li <tony.li@freescale.com>
56671
56672 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
56673 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56674 Date:   Thu Aug 16 15:05:11 2007 -0500
56675
56676     ColdFire: Add M54455EVB for MCF5445x
56677
56678     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56679
56680 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
56681 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56682 Date:   Thu Aug 16 13:20:50 2007 -0500
56683
56684     ColdFire: Add M5253EVBE platform for MCF52x2
56685
56686     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56687
56688 commit a605aacd8324094199402816cc6d9124aba57b8d
56689 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56690 Date:   Thu Aug 16 05:04:31 2007 -0500
56691
56692     ColdFire: Add M5249EVB platform for MCF52x2
56693
56694     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56695
56696 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
56697 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56698 Date:   Wed Aug 15 20:32:06 2007 -0500
56699
56700     ColdFire: Update Freescale MCF52x2 platforms
56701
56702     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56703
56704 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
56705 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56706 Date:   Wed Aug 15 19:55:10 2007 -0500
56707
56708     ColdFire: Update EB+MCF-EV123 platform
56709
56710     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56711
56712 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
56713 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56714 Date:   Wed Aug 15 19:46:38 2007 -0500
56715
56716     ColdFire: update TASREG platform for MCF52x2
56717
56718     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56719
56720 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
56721 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56722 Date:   Wed Aug 15 19:45:51 2007 -0500
56723
56724     ColdFire: update r5200 platform for MCF52x2
56725
56726     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56727
56728 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
56729 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56730 Date:   Wed Aug 15 19:43:20 2007 -0500
56731
56732     ColdFire: idmr platform MCF52x2 update
56733
56734     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56735
56736 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
56737 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56738 Date:   Wed Aug 15 19:41:06 2007 -0500
56739
56740     ColdFire: cobra5272 platform for MCF52x2 update
56741
56742     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56743
56744 commit 56115665b4a64c10c01440c57749b265e0908fa4
56745 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56746 Date:   Wed Aug 15 19:38:15 2007 -0500
56747
56748     ColdFire: MCF52x2 Header files update
56749
56750     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56751
56752 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
56753 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56754 Date:   Wed Aug 15 19:21:21 2007 -0500
56755
56756     ColdFire: MCF52x2 update
56757
56758     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56759
56760 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
56761 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56762 Date:   Wed Aug 15 18:46:11 2007 -0500
56763
56764     ColdFire: MCF5329 update cache
56765
56766     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56767
56768 commit 7171977fb8fd77cfb6676953fa9a05789c450513
56769 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56770 Date:   Wed Aug 15 15:40:20 2007 -0500
56771
56772     ColdFire: MCF5329 header file clean up
56773
56774     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56775
56776 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
56777 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56778 Date:   Wed Aug 15 15:39:17 2007 -0500
56779
56780     ColdFire: MCF5329 Update and cleanup
56781
56782     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56783
56784 commit 10327dc5541f947c0cf7e31fef86c4706169607a
56785 Author: Andy Fleming <afleming@freescale.com>
56786 Date:   Thu Aug 16 16:35:02 2007 -0500
56787
56788     Add CONFIG_HAS_ETH0 to all boards with TSEC
56789
56790     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
56791     to update TSEC1's device-tree node, so we need to add it
56792     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
56793     since they will eventually do something similar.
56794
56795     Signed-off-by: Andy Fleming <afleming@freescale.com>
56796
56797 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
56798 Author: Kumar Gala <galak@kernel.crashing.org>
56799 Date:   Thu Aug 16 15:05:04 2007 -0500
56800
56801     Update MPC8544 DS PCI memory map
56802
56803     The PCIe bus that the ULI M1575 is connected to has no possible way of
56804     needing more than the fixed amount of IO & Memory space needed by the ULI.
56805
56806     So make it use far less IO & memory space and have it use the shared LAW.  This
56807     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
56808     by each bus.
56809
56810     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56811
56812 commit ea5877e31ed63ade948fd1293895ec23fe01472e
56813 Author: Kumar Gala <galak@kernel.crashing.org>
56814 Date:   Thu Aug 16 11:01:21 2007 -0500
56815
56816     Fix up some fdt issues on 8544DS
56817
56818     It looks like we had a merge issue that duplicated a bit of code
56819     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
56820     the MAC address properly set in the device tree on boot for TSEC1
56821
56822     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56823
56824 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
56825 Author: Niklaus Giger <niklaus.giger@netstal.com>
56826 Date:   Thu Aug 16 15:16:03 2007 +0200
56827
56828     PPC4xx:HCU4/5 cleanup
56829
56830     Minor cleanups to confirm to the u-boot coding style.
56831     Some german expressions -> english.
56832     HCU5 enforces a unique IP adress for a given slot in the rack.
56833
56834     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
56835
56836 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
56837 Author: Niklaus Giger <niklaus.giger@netstal.com>
56838 Date:   Thu Aug 16 15:16:02 2007 +0200
56839
56840     PPC4xx:HCU4/5 cleanup ecc/sdram init
56841
56842     Make ecc initialisation robust, as DDR2-ECC errors may be generated
56843     while zeroing the RAM.
56844
56845     Return 16 bytes (a cacheline) less than the available memory, as the
56846     board and/or PPC440EPx might have problems accessing the last bytes.
56847
56848     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
56849
56850 commit d35b508a55508535b6e8445b718585d27df733d3
56851 Author: Kim Phillips <kim.phillips@freescale.com>
56852 Date:   Wed Aug 15 22:29:56 2007 -0500
56853
56854     fdt: suppress unused variable 'bd' warning
56855
56856     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56857
56858 commit 82bd9ee77490588d4da785d75829ca63d0176baf
56859 Author: Andy Fleming <afleming@freescale.com>
56860 Date:   Wed Aug 15 20:06:50 2007 -0500
56861
56862     Fix warnings from of_data copy fix
56863
56864     Forgot to cast of_flat_tree to ulong.
56865
56866     Signed-off-by: Andy Fleming <afleming@freescale.com>
56867
56868 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
56869 Author: Andy Fleming <afleming@freescale.com>
56870 Date:   Wed Aug 15 20:03:44 2007 -0500
56871
56872     Don't wait for disconnected TSECs
56873
56874     The TSEC driver's PHY code waits a long time for autonegotiation to
56875     complete, even if the link is down.  The PHY knows the link is
56876     down or up before autonegotiation completes, so we can short-circuit
56877     the process if the link is down.
56878
56879     Signed-off-by: Andy Fleming <afleming@freescale.com>
56880
56881 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
56882 Author: Andy Fleming <afleming@freescale.com>
56883 Date:   Wed Aug 15 20:03:34 2007 -0500
56884
56885     Fix numerous bugs in the 8568 UEC support
56886
56887     Actually, fixed a large bug in the UEC for *all* platforms.
56888     How did this ever work?
56889
56890     uec_init() did not follow the spec for eth_init(), and returned
56891     0 on success.  Switch it to return the link like tsec_init()
56892     (and 0 on error)
56893
56894     The immap for the 8568 was defined based on MPC8568, rather than
56895     CONFIG_MPC8568
56896
56897     CONFIG_QE was off
56898
56899     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
56900
56901     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
56902     enabled
56903
56904     Signed-off-by: Andy Fleming <afleming@freescale.com>
56905
56906 commit 3a79013e2adda53332dfd0b511066a805e929a9d
56907 Author: Andy Fleming <afleming@freescale.com>
56908 Date:   Wed Aug 15 20:03:25 2007 -0500
56909
56910     Define tsec flag values in config files
56911
56912     The tsec_info structure and array has a "flags" field for each
56913     ethernet controller.  This field is the only reason there are
56914     settings.  Switch to defining TSECn_FLAGS for each controller
56915     in the config header, and we can greatly simplify the array, and
56916     also simplify the addition of future boards.
56917
56918     Signed-off-by: Andy Fleming <afleming@freescale.com>
56919
56920 commit ec7238229507e7f47533a611ea8c53319d234cf3
56921 Author: Andy Fleming <afleming@freescale.com>
56922 Date:   Wed Aug 15 20:03:13 2007 -0500
56923
56924     Add support for building all boards with a TSEC
56925
56926     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
56927     Now we can do a MAKEALL test on all of them!
56928
56929     Signed-off-by: Andy Fleming <afleming@freescale.com>
56930
56931 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
56932 Author: Andy Fleming <afleming@freescale.com>
56933 Date:   Wed Aug 15 17:30:56 2007 -0500
56934
56935     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
56936
56937     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
56938     neglected to *also* put the code inside the similar #ifdef
56939     for CONFIG_OF_FLAT_TREE.
56940
56941     Signed-off-by: Andy Fleming <afleming@freescale.com>
56942
56943 commit 78f9fef7f406078c8bf7191e665a73f795157746
56944 Author: Scott Wood <scottwood@freescale.com>
56945 Date:   Wed Aug 15 15:46:46 2007 -0500
56946
56947     mpc885ads: Don't define CONFIG_BZIP2.
56948
56949     bzip2 requires a significant chunk of malloc space, and there isn't
56950     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
56951     and a downloaded image at 0x400000.
56952
56953     Signed-off-by: Scott Wood <scottwood@freescale.com>
56954
56955 commit 002275a3ed8b114885f6702d6d544d0780dfe689
56956 Author: Michal Simek <Monstr@seznam.cz>
56957 Date:   Thu Aug 16 08:54:10 2007 +0200
56958
56959     Bios emulator - fix microblaze toolchain problem
56960
56961     microblaze CPU have problem with bios_emulator code.
56962     Microblaze toolchain doesn't support PRAGMA PACK.
56963
56964     Signed-off-by: Michal Simek <monstr@monstr.eu>
56965
56966 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
56967 Author: Wolfgang Denk <wd@denx.de>
56968 Date:   Thu Aug 16 11:51:04 2007 +0200
56969
56970     Minor Coding Style fix; Update CHANGELOG file.
56971
56972     Signed-off-by: Wolfgang Denk <wd@denx.de>
56973
56974 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
56975 Author: Stefan Roese <sr@denx.de>
56976 Date:   Thu Aug 16 11:21:49 2007 +0200
56977
56978     ppc4xx: Remove #warning in esd auto_update.c
56979
56980     Signed-off-by: Stefan Roese <sr@denx.de>
56981
56982 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
56983 Author: Stefan Roese <sr@denx.de>
56984 Date:   Fri Jun 22 17:32:28 2007 +0200
56985
56986     ppc7xx: Update CPCI750 board
56987
56988     This small CPCI750 update extends the board specific command
56989     "show_config" to display the Marvell strapping registers and
56990     extends the PCI IDE controller.
56991
56992     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
56993     Signed-off-by: Stefan Roese <sr@denx.de>
56994
56995 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
56996 Author: Michal Simek <monstr@monstr.eu>
56997 Date:   Thu Aug 16 10:46:28 2007 +0200
56998
56999     [FIX] Changes for bios_emulator code for others architecture
57000
57001 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
57002 Author: Michal Simek <monstr@monstr.eu>
57003 Date:   Thu Aug 16 10:45:09 2007 +0200
57004
57005     [FIX] Remove unused include file
57006
57007 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
57008 Author: Stefan Roese <sr@denx.de>
57009 Date:   Thu Aug 16 10:18:33 2007 +0200
57010
57011     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
57012
57013     Signed-off-by: Stefan Roese <sr@denx.de>
57014
57015 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
57016 Author: Stefan Roese <sr@denx.de>
57017 Date:   Thu Aug 16 09:54:51 2007 +0200
57018
57019     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
57020
57021     Signed-off-by: Stefan Roese <sr@denx.de>
57022
57023 commit 02ba7022f62bb75908296c58c63866e1d294b69a
57024 Author: Stefan Roese <sr@denx.de>
57025 Date:   Thu Aug 16 09:52:29 2007 +0200
57026
57027     ppc4xx: Update Sequoia/Rainier bootstrap command
57028
57029     As suggested by David Mitchell, here an update for the Sequoia/Rainier
57030     bootstrap command.
57031
57032     Signed-off-by: Stefan Roese <sr@denx.de>
57033
57034 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
57035 Author: Kim Phillips <kim.phillips@freescale.com>
57036 Date:   Wed Aug 15 22:30:39 2007 -0500
57037
57038     mpc83xx: enable libfdt by default on freescale boards
57039
57040     this enables libfdt code by default for the
57041     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
57042     mpc8349itx and gp boards.
57043
57044     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57045
57046 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
57047 Author: Kim Phillips <kim.phillips@freescale.com>
57048 Date:   Wed Aug 15 22:30:33 2007 -0500
57049
57050     mpc83xx: migrate remaining freescale boards to libfdt
57051
57052     this adds libfdt support code for the freescale
57053     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
57054     and gp boards.
57055
57056     Boards remain compatible with OF_FLAT_TREE.
57057
57058     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57059
57060 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
57061 Author: Kim Phillips <kim.phillips@freescale.com>
57062 Date:   Wed Aug 15 22:30:26 2007 -0500
57063
57064     mpc83xx: move common /memory node update mechanism to cpu.c
57065
57066     also adds common prototypes to include/common.h.
57067
57068     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57069
57070 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
57071 Author: Kim Phillips <kim.phillips@freescale.com>
57072 Date:   Wed Aug 15 22:30:19 2007 -0500
57073
57074     mpc83xx: remaining 8360 libfdt fixes
57075
57076     PCI clocks and QE frequencies weren't being updated, and the core clock
57077     was being updated incorrectly.  This patch also adds a /memory node if
57078     it doesn't already exist prior to update.
57079
57080     plus some cosmetic trimming to single line comments.
57081
57082     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57083
57084 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
57085 Author: Kim Phillips <kim.phillips@freescale.com>
57086 Date:   Wed Aug 15 22:30:12 2007 -0500
57087
57088     mpc83xx: fix UEC2->1 typo in libfdt setup code
57089
57090     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57091
57092 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
57093 Author: Kim Phillips <kim.phillips@freescale.com>
57094 Date:   Wed Aug 15 22:30:05 2007 -0500
57095
57096     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
57097
57098     and reorder the existing 83xx maintainers alpha.
57099
57100     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57101
57102 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
57103 Author: Michal Simek <monstr@monstr.eu>
57104 Date:   Wed Aug 15 21:15:05 2007 +0200
57105
57106     [FIX] Resolve problem with warnings
57107     microblaze toolchain don't support PRAGMA PACK.
57108
57109 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
57110 Author: Michal Simek <monstr@monstr.eu>
57111 Date:   Wed Aug 15 21:05:07 2007 +0200
57112
57113     [FIX] Correction command setting for Microblaze boards
57114
57115 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
57116 Author: Michal Simek <monstr@monstr.eu>
57117 Date:   Wed Aug 15 21:03:41 2007 +0200
57118
57119     [FIX] Correction command definition
57120
57121 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
57122 Author: Jon Loeliger <jdl@freescale.com>
57123 Date:   Wed Aug 15 11:55:35 2007 -0500
57124
57125     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
57126
57127     Remove a leftover in net/tftp.c while we're at it.
57128
57129     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57130
57131 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
57132 Author: Jon Loeliger <jdl@freescale.com>
57133 Date:   Wed Aug 15 12:20:40 2007 -0500
57134
57135     Move the MPC8641HPCN board under board/freescale.
57136
57137     Minor path corrections needed to ensure buildability.
57138
57139     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57140
57141 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
57142 Author: Jon Loeliger <jdl@freescale.com>
57143 Date:   Wed Aug 15 11:46:22 2007 -0500
57144
57145     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
57146
57147     Remove a leftover in net/tftp.c while we're at it.
57148
57149     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57150
57151 commit 210f463c71917b7a4495c2103c228b9c179ae64d
57152 Author: Jerry Van Baren <gvb.uboot@gmail.com>
57153 Date:   Wed Aug 15 11:13:15 2007 -0400
57154
57155     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
57156
57157     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
57158     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
57159     when it should have gone inside of the conditional.  As a result, it
57160     broke non-LIBFDT board builds.
57161
57162     Also added a missing "not." to the comment.
57163
57164     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57165
57166 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
57167 Author: Niklaus Giger <niklaus.giger@netstal.com>
57168 Date:   Wed Aug 15 12:14:23 2007 +0200
57169
57170     PPC4xx:HCU4/5-Board fix compile warning
57171
57172     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57173
57174 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
57175 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57176 Date:   Tue Aug 14 14:06:45 2007 -0500
57177
57178     Fix malloc size error in ahci_init_one.
57179
57180     Typically this causes scsi init to corrupt the
57181     devlist and break the coninfo command.
57182     Fix a compiler size warning.
57183
57184     Signed-off-by: Jason Jin <jason.jin@freescale.com>
57185     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57186     Acked-by: Andy Fleming <afleming@freescale.com>
57187
57188 commit b361acd64fd2525c081b9b288b0804efe209c0e9
57189 Author: ksi@koi8.net <ksi@koi8.net>
57190 Date:   Tue Aug 14 10:02:16 2007 -0700
57191
57192     TI DaVinci - fix unsupported %hhx format
57193
57194     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
57195
57196 commit f01dbb5424a81453c81190dd30e945891466f621
57197 Author: Wolfgang Denk <wd@denx.de>
57198 Date:   Tue Aug 14 18:42:36 2007 +0200
57199
57200     Coding style cleanup. Update CHANGELOG.
57201
57202     Signed-off-by: Wolfgang Denk <wd@denx.de>
57203
57204 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
57205 Author: Andy Fleming <afleming@freescale.com>
57206 Date:   Tue Aug 14 10:32:59 2007 -0500
57207
57208     Fix initrd/dtb interaction
57209
57210     The original code would wrongly relocate the blob to be right before
57211     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
57212     if it is defined.  So we make two changes:
57213
57214     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
57215
57216     2) If the blob is being relocated, relocate it before kbd, not initrd
57217
57218     Signed-off-by: Andy Fleming <afleming@freescale.com>
57219
57220 commit e54b970173769307a116bd34028b6d0c2eea2a4e
57221 Author: Peter Pearse <peter.pearse@arm.com>
57222 Date:   Tue Aug 14 15:40:00 2007 +0100
57223
57224     Supply spi interface in at45.c
57225
57226 commit 4ce846ec59f36b85d6644a769690ad3feb667575
57227 Author: Stefan Roese <sr@denx.de>
57228 Date:   Tue Aug 14 15:12:01 2007 +0200
57229
57230     POST: Fix merge problem
57231
57232     Signed-off-by: Stefan Roese <sr@denx.de>
57233
57234 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
57235 Author: Stefan Roese <sr@denx.de>
57236 Date:   Tue Aug 14 15:03:17 2007 +0200
57237
57238     Coding style cleanup
57239
57240     Signed-off-by: Stefan Roese <sr@denx.de>
57241
57242 commit 779e975117a75e91fcebe226a63104dbfb924ab1
57243 Author: Stefan Roese <sr@denx.de>
57244 Date:   Tue Aug 14 14:44:41 2007 +0200
57245
57246     ppc4xx: Add initial Zeus (PPC405EP) board support
57247
57248     Signed-off-by: Stefan Roese <sr@denx.de>
57249
57250 commit c5a172a5fd636c12467429e3f7910e53773979c6
57251 Author: Stefan Roese <sr@denx.de>
57252 Date:   Tue Aug 14 14:41:55 2007 +0200
57253
57254     POST: Add option for external ethernet loopback test
57255
57256     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
57257     is not done using an internal loopback connection, but by assuming
57258     that an external loopback connector is plugged into the board.
57259
57260     Signed-off-by: Stefan Roese <sr@denx.de>
57261
57262 commit eb2b4010ae426245172988804ee8d9193fb41038
57263 Author: Stefan Roese <sr@denx.de>
57264 Date:   Tue Aug 14 14:39:44 2007 +0200
57265
57266     POST: Add ppc405 support to cache and UART POST
57267
57268     Signed-off-by: Stefan Roese <sr@denx.de>
57269
57270 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
57271 Author: Peter Pearse <peter.pearse@arm.com>
57272 Date:   Tue Aug 14 10:46:32 2007 +0100
57273
57274     Replace lost end of at45.c.
57275
57276 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
57277 Author: Peter Pearse <peter.pearse@arm.com>
57278 Date:   Tue Aug 14 10:30:06 2007 +0100
57279
57280     Update Makefiles for merged and split at45.c.
57281
57282 commit 3454cece2db57cb9eb7087995f7e73066a163f71
57283 Author: Peter Pearse <peter.pearse@arm.com>
57284 Date:   Tue Aug 14 10:21:06 2007 +0100
57285
57286     Delete the merged files.
57287
57288 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
57289 Author: Peter Pearse <peter.pearse@arm.com>
57290 Date:   Tue Aug 14 10:14:05 2007 +0100
57291
57292     Add the files.
57293
57294 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
57295 Author: Peter Pearse <peter.pearse@arm.com>
57296 Date:   Tue Aug 14 10:10:52 2007 +0100
57297
57298     Add MACH_TYPE records for several AT91 boards.
57299     Merge to two at45.c files into a common file, split to at45.c and spi.c
57300     Fix spelling error in DM9161 PHY Support.
57301     Initialize at91rm9200 board (and set LED).
57302     Add PIO control for at91rm9200dk LEDs and Mux.
57303     Change dataflash partition boundaries to be compatible with Linux 2.6.
57304
57305     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
57306     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
57307
57308 commit 4ef35e53c693556c54b0c22d6f873de87bade253
57309 Author: Wolfgang Denk <wd@denx.de>
57310 Date:   Tue Aug 14 09:54:46 2007 +0200
57311
57312     Coding style cleanup, update CHANGELOG
57313
57314     Signed-off-by: Wolfgang Denk <wd@denx.de>
57315
57316 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
57317 Author: Wolfgang Denk <wd@denx.de>
57318 Date:   Tue Aug 14 09:47:27 2007 +0200
57319
57320     Coding style cleanup; rebuild CHANGELOG
57321
57322 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
57323 Author: Randy Vinson <rvinson@linuxbox.(none)>
57324 Date:   Tue Feb 27 19:42:22 2007 -0700
57325
57326     85xxCDS: Add make targets for legacy systems.
57327
57328     The PCI ID select values on the Arcadia main board differ depending
57329     on the version of the hardware. The standard configuration supports
57330     Rev 3.1. The legacy target supports Rev 2.x.
57331
57332     Signed-off-by Randy Vinson <rvinson@mvista.com>
57333
57334 commit e41094c7e38177c755fbd9b182018069614f080d
57335 Author: Andy Fleming <afleming@freescale.com>
57336 Date:   Tue Aug 14 01:50:09 2007 -0500
57337
57338     85xxCDS: Enable the VIA PCI-to-ISA bridge.
57339
57340     Author: Randy Vinson <rvinson@linuxbox.(none)>
57341
57342     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
57343     Arcadia main board.
57344
57345     Signed-off-by: Randy Vinson <rvinson@mvista.com>
57346     Signed-off-by: York Sun <yorksun@freescale.com>
57347
57348 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
57349 Author: Andy Fleming <afleming@freescale.com>
57350 Date:   Tue Aug 14 00:14:25 2007 -0500
57351
57352     Add support for UEC to 8568
57353
57354     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57355     Signed-off-by: Andy Fleming <afleming@freescale.com>
57356
57357 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
57358 Author: Haiying Wang <Haiying.Wang@freescale.com>
57359 Date:   Tue Jun 19 14:18:34 2007 -0400
57360
57361     Add PCI support for MPC8568MDS board
57362
57363     This patch is against u-boot-mpc85xx.git of www.denx.com
57364
57365     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57366     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
57367
57368 commit d111d6382c99fdea08c2312eeeae8786945e189a
57369 Author: Haiying Wang <Haiying.Wang@freescale.com>
57370 Date:   Tue Jun 19 14:18:32 2007 -0400
57371
57372     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
57373
57374     This patch is against u-boot-mpc85xx.git of www.denx.com
57375
57376     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
57377     both MPC8548CDS board and MPC8568MDS board, especially for supporting
57378     533MHz DDR2.
57379
57380     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
57381     DDR2 on all current board versions especially ver 1.92 or later to bring
57382     up.
57383
57384     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57385
57386 commit 3db0bef59eab1155801618cef5c481e97553b597
57387 Author: Kumar Gala <galak@kernel.crashing.org>
57388 Date:   Tue Aug 7 18:07:27 2007 -0500
57389
57390     Use an absolute address when jumping out of 4k boot page
57391
57392     On e500 when we leave the 4k boot page we should use an absolute address since
57393     we don't know where the board code may want us to be really running at.
57394
57395     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57396
57397 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
57398 Author: Andy Fleming <afleming@freescale.com>
57399 Date:   Mon Aug 13 14:49:59 2007 -0500
57400
57401     MPC85xx BA bits not set for 3-bit bank address DIMM
57402
57403     The current implementation does not set the number of bank address bits
57404     (BA) in the processor. The default assumes 2 logical bank bits. This
57405     works fine for a DIMM that uses devices with 4 internal banks (SPD
57406     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
57407     devices with 8 internal banks (SPD byte17 = 0x8).
57408
57409     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
57410
57411 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
57412 Author: Andy Fleming <afleming@freescale.com>
57413 Date:   Mon Aug 13 14:38:06 2007 -0500
57414
57415     Fix minor 85xx warnings
57416
57417     Some patches had inserted warnings into the build:
57418     * mpc8560ads declared data without using it
57419     * cpu_init declared ecm and immap without using it in all CONFIGs
57420     * MPC8548CDS.h had its default filenames changed so that they contained
57421       "\m" in the paths.  Made the defaults not Windows-specific (or
57422       anything-specific)
57423
57424     Signed-off-by: Andy Fleming <afleming@freescale.com>
57425
57426 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
57427 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57428 Date:   Fri Jul 27 01:50:52 2007 -0500
57429
57430     8548cds PCIE support.
57431
57432     Make the early L1 cache stack region guarded to prevent speculative
57433     fetches outside the locked range.
57434
57435     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
57436     init.S whitespace cleanup.
57437
57438     Allow TEXT_BASE value to be specified on command line.  This allows it
57439     to be set to 0xfffc0000 which cuts the uboot binary in half.
57440
57441     Clear and enable lbc and ecm errors.
57442
57443     Update last_busno in device-tree for pci and pcie.
57444
57445     Remove load of obsolete cpu/mpc85xx/pci.0
57446
57447     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57448     Acked-by: Andy Fleming <afleming@freescale.com>
57449
57450 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
57451 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57452 Date:   Fri Jul 27 01:50:51 2007 -0500
57453
57454     8544ds PCIE support
57455
57456     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
57457
57458     Enable LBC and ECM errors and clear error registers.
57459
57460     Add tftpflash env var to get uboot from tftp server and flash it.
57461
57462     Add pci/pcie convenience env vars to display register space:
57463       "run pcie3regs" to see all pcie3 ccsr registers
57464       "run pcie3cfg" to see all cfg registers
57465     Whitespace cleanup and MPC8544DS.h
57466
57467     Enable CONFIG_INTERRUPTS.
57468
57469     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57470     Acked-by: Andy Fleming <afleming@freescale.com>
57471
57472 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
57473 Author: Andy Fleming <afleming@freescale.com>
57474 Date:   Tue Aug 14 01:34:21 2007 -0500
57475
57476     85xx start.S cleanup and exception support
57477
57478     From: Ed Swarthout <Ed.Swarthout@freescale.com>
57479
57480     Support external interrupts from platform to eliminate system hangs.
57481     Define CONFIG_INTERRUPTS board configure option to enable.
57482     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
57483
57484     Remove extra cpu initialization redundant with hardware initialization.
57485     Whitespace cleanup.
57486
57487     Define and use _START_OFFSET consistent with other processors using
57488     ppc_asm.tmpl
57489
57490     Move additional code from .text to boot page to make room for
57491     exception vectors at start of image.
57492
57493     Handle Machine Check, External and Critical exceptions.
57494
57495     Fix e500 machine check error determination in traps.c
57496
57497     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
57498
57499     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57500     Acked-by: Andy Fleming <afleming@freescale.com>
57501
57502 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
57503 Author: Andy Fleming <afleming@freescale.com>
57504 Date:   Tue Aug 14 01:33:18 2007 -0500
57505
57506     Add MPC8544DS README
57507
57508     Signed-off-by: Andy Fleming <afleming@freescale.com>
57509
57510 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
57511 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57512 Date:   Fri Jul 27 01:50:48 2007 -0500
57513
57514     85xx allow debugger to configure ddr.
57515
57516     Only check for mpc8548 rev 1 when compiled for 8548.
57517
57518     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57519     Acked-by: Andy Fleming <afleming@freescale.com>
57520
57521 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
57522 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57523 Date:   Fri Jul 27 01:50:47 2007 -0500
57524
57525     mpc85xx L2 cache reporting and SRAM relocation option.
57526
57527     Allow debugger to override flash cs0/cs1 settings to enable alternate
57528     boot regions
57529
57530     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57531     Acked-by: Andy Fleming <afleming@freescale.com>
57532
57533 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
57534 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
57535 Date:   Fri Jul 27 01:50:46 2007 -0500
57536
57537     e500 needs ppc_asm.tmp MCK_EXCEPTION
57538
57539     Always define MCK_EXCEPTION macro - so e500 can use it too.
57540
57541     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
57542     Acked-by: Andy Fleming <afleming@freescale.com>
57543
57544 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
57545 Author: David Updegraff <dave@cray.com>
57546 Date:   Mon Jun 11 10:41:07 2007 -0500
57547
57548     multicast tftp: RFC2090
57549
57550     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
57551     on Realtek RTL8139 and Freescale TSEC.
57552
57553     Signed-off-by: David Updegraff <dave@cray.com>
57554     Signed-off-by: Ben Warren <bwarren@qstreams.com>
57555
57556 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
57557 Author: Wilson Callan <wcallan@savantav.com>
57558 Date:   Sat Jul 28 10:56:13 2007 -0400
57559
57560     New CONFIG_BOOTP_SERVERIP option
57561
57562     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
57563     from the bootp server
57564
57565     Signed-off-by: Wilson Callan <wcallan@savantav.com>
57566     Signed-off-by: Ben Warren <bwarren@qstreams.com>
57567
57568 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
57569 Author: Mike Rapoport <mike@compulab.co.il>
57570 Date:   Sun Aug 12 08:48:27 2007 +0300
57571
57572     Add ability to take MAC address from the environment to DM9000 driver
57573
57574     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
57575     Signed-off-by: Ben Warren <bwarren@qstreams.com>
57576
57577 commit be5d72d10d47609326226225181e301fb9a33b58
57578 Author: Wolfgang Denk <wd@denx.de>
57579 Date:   Mon Aug 13 21:57:53 2007 +0200
57580
57581     Minor coding style cleanup. Update CHANGELOG.
57582
57583     Signed-off-by: Wolfgang Denk <wd@denx.de>
57584
57585 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
57586 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57587 Date:   Sat Aug 11 06:54:58 2007 -0500
57588
57589     Modify SBC8641D to use new Freescale PCI routines
57590
57591     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
57592     adapter.
57593
57594     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57595     Signde-off-by: Jon Loeliger <jdl@freescale.com>
57596
57597 commit a08458303e7f9db67f296980036d3292c35cb45c
57598 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
57599 Date:   Fri Jun 29 18:38:51 2007 +0200
57600
57601     atmel_mci: Fix data timeout value
57602
57603     Calculate the data timeout based on values from the CSD instead of
57604     just using a hardcoded DTOR value. This is a backport of a similar fix
57605     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
57606     instead of down.
57607
57608     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57609
57610 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
57611 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
57612 Date:   Mon Aug 13 17:22:31 2007 +0200
57613
57614     AVR32: Include <div64.h> instead of <asm/div64.h>
57615
57616     include/asm-avr32/div64.h was recently moved to include/div64.h, but
57617     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
57618     the patch was merged perhaps?)
57619
57620     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
57621     compiles again.
57622
57623     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57624
57625 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
57626 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
57627 Date:   Wed Jun 27 13:34:26 2007 +0200
57628
57629     atmel_mci: Use 512 byte blocksize if possible
57630
57631     Instead of always using the largest blocksize the card supports, check
57632     if it can support smaller block sizes and use 512 bytes if possible.
57633     Most cards do support this, and other parts of u-boot seem to have
57634     trouble with block sizes different from 512 bytes.
57635
57636     Also enable underrun/overrun protection.
57637
57638     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
57639     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
57640
57641 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
57642 Author: Stefan Roese <sr@denx.de>
57643 Date:   Mon Aug 13 09:05:33 2007 +0200
57644
57645     ppc4xx: Fix problem in PLL clock calculation
57646
57647     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
57648     and fixes a bug in the PLL clock calculation.
57649
57650     Signed-off-by: Stefan Roese <sr@denx.de>
57651
57652 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
57653 Author: Wolfgang Denk <wd@denx.de>
57654 Date:   Sun Aug 12 21:34:50 2007 +0200
57655
57656     Update CHANGELOG
57657
57658 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
57659 Author: Wolfgang Denk <wd@denx.de>
57660 Date:   Sun Aug 12 21:34:34 2007 +0200
57661
57662     Minor alignment of output, 2nd try.
57663     Also update CHANGELOG
57664
57665     Signed-off-by: Wolfgang Denk <wd@denx.de>
57666
57667 commit 6b309f22a724fad8418e811751a0741b893419cf
57668 Author: Wolfgang Denk <wd@denx.de>
57669 Date:   Sun Aug 12 20:35:49 2007 +0200
57670
57671     Minor alignment of output
57672
57673     Signed-off-by: Wolfgang Denk <wd@denx.de>
57674
57675 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
57676 Author: Wolfgang Denk <wd@denx.de>
57677 Date:   Sun Aug 12 18:28:18 2007 +0200
57678
57679     Cleanup output on ADS5121 board
57680
57681     Signed-off-by: Wolfgang Denk
57682
57683 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
57684 Author: Wolfgang Denk <wd@denx.de>
57685 Date:   Sun Aug 12 15:11:38 2007 +0200
57686
57687     Adapt board configuration and fix kernel crash on MCC200 board.
57688
57689     The update procedure was modified to turn off the USB subsystem
57690     before exit for MCC200 and TRAB. This is necessary as otherwise the
57691     USB controller continues to write periodically to system memory!
57692
57693     MCC200-specific notes:
57694     - the patch disables the magic key check for MCC200
57695     - the patch contains the configuration changes made
57696       for the new revision of the board.
57697
57698     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
57699     Signed-off-by: Wolfgang Denk <wd@denx.de>
57700
57701 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
57702 Author: Wolfgang Denk <wd@denx.de>
57703 Date:   Sun Aug 12 14:47:54 2007 +0200
57704
57705     Adjust default configuration of ADS5121 board.
57706
57707     Signed-off-by: Wolfgang Denk <wd@denx.de>
57708
57709 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
57710 Author: Wolfgang Denk <wd@denx.de>
57711 Date:   Sun Aug 12 14:27:39 2007 +0200
57712
57713     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
57714
57715     Signed-off-by: Wolfgang Denk <wd@denx.de>
57716
57717 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
57718 Author: Gerald Van Baren <vanbaren@cideas.com>
57719 Date:   Tue Aug 7 21:14:22 2007 -0400
57720
57721     Improve error print messages.
57722
57723     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57724
57725 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
57726 Author: Kim Phillips <kim.phillips@freescale.com>
57727 Date:   Tue Jul 17 13:57:04 2007 -0500
57728
57729     fdt: allow for builds that don't want env and bd_t nodes
57730
57731     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
57732     area.
57733
57734     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57735
57736 commit 91148bf7aeba142d6f348805db7625db7da64d6f
57737 Author: Kim Phillips <kim.phillips@freescale.com>
57738 Date:   Tue Jul 17 13:56:53 2007 -0500
57739
57740     fdt: do board setup based on fdt address specified on bootm line
57741
57742     The last fdt patch to bootm did board setup based on the address
57743     specified by a prior fdt address command invocation.  The bootm
57744     code, as its call to fdt_chosen does, should use the fdt specified
57745     by the user on the bootm command.  Note this restores full
57746     functionality for the 8360's existing default boot environment
57747     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
57748     before booting a kernel).
57749
57750     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57751
57752 commit e125a2ffc209dd34794e326c7175658253beadf3
57753 Author: Gerald Van Baren <vanbaren@cideas.com>
57754 Date:   Tue Jul 10 20:40:39 2007 -0400
57755
57756     Call ft_board_setup() from the bootm command.
57757
57758     In the patch titled "Create new fdt boardsetup command..." I removed the
57759     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
57760     to add a direct call back into cmd_bootm.c
57761
57762     This fixes the oversight by adding the direct call to the bootm command.
57763
57764     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57765
57766 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
57767 Author: Gerald Van Baren <vanbaren@cideas.com>
57768 Date:   Mon Jun 25 23:25:28 2007 -0400
57769
57770     Create new fdt boardsetup command, fix bug parsing [] form of set values.
57771
57772     Previously ft_board_setup() was called by fdt_chosen() which was not
57773     really correctly structured.  This splits ft_board_setup() out by creating
57774     a new fdt boardsetup command.
57775
57776     Fix a bug when parsing fdt set command values which have the square
57777     bracket form [00 11 22 33] - the length was updated incorrectly in when
57778     parsing that form.
57779
57780     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57781
57782 commit 6f35ded9e85493595e0eb66a82b502a95326d049
57783 Author: Gerald Van Baren <vanbaren@cideas.com>
57784 Date:   Mon Jun 25 20:55:58 2007 -0400
57785
57786     Tighten up the error messages.
57787
57788     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57789
57790 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
57791 Author: Gerald Van Baren <vanbaren@cideas.com>
57792 Date:   Mon Jun 25 19:52:23 2007 -0400
57793
57794     Asthetic improvements: error messages and line lengths.
57795
57796     Tighten up the error messages, split overlength lines.
57797
57798     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57799
57800 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
57801 Author: Gerald Van Baren <vanbaren@cideas.com>
57802 Date:   Fri May 25 22:08:57 2007 -0400
57803
57804     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
57805
57806     The fdt_chosen() function was adding/seting some properties ad-hoc
57807       improperly and duplicated (poorly) what was done in ft_board_setup()
57808
57809     Clean up long lines (setting properties, printing errors).
57810
57811     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57812
57813 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
57814 Author: Gerald Van Baren <vanbaren@cideas.com>
57815 Date:   Mon May 21 23:27:16 2007 -0400
57816
57817     For fdt_find_node_by_path(), handle the root path properly.
57818
57819     Also removes the special case root path detection in cmd_fdt.c since it
57820     is no longer necessary.
57821
57822     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57823
57824 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
57825 Author: Gerald Van Baren <vanbaren@cideas.com>
57826 Date:   Thu May 17 23:54:36 2007 -0400
57827
57828     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
57829
57830     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
57831     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
57832
57833 commit 1a861169bc3758f9de3aead62b058736c6891246
57834 Author: Gerald Van Baren <vanbaren@cideas.com>
57835 Date:   Wed Jun 6 22:47:58 2007 -0400
57836
57837     Replace fdt_node_offset() with fdt_find_node_by_path().
57838
57839     The new name matches more closely the kernel's name, which is also
57840     a much better description.
57841
57842     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
57843     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
57844
57845 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
57846 Author: Gerald Van Baren <vanbaren@cideas.com>
57847 Date:   Wed May 16 22:39:59 2007 -0400
57848
57849     Fix cmd_fdt line lengths, refactor code.
57850
57851     Break lines that were greater than 80 characters in length.
57852     Move the fdt print and property parsing code to separate static functions
57853       to reduce coding clutter in the fdt_cmd handling body.
57854
57855     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57856
57857 commit 25114033ab21788810c48ba4df103b649da1223b
57858 Author: Gerald Van Baren <vanbaren@cideas.com>
57859 Date:   Sat May 12 09:47:25 2007 -0400
57860
57861     FDT command improvements.
57862
57863     Fix "fdt set" so that it will create a non-existing property.
57864     Add "fdt mknode" to create nodes.
57865
57866     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57867
57868 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
57869 Author: Gerald Van Baren <vanbaren@cideas.com>
57870 Date:   Sat May 12 09:45:46 2007 -0400
57871
57872     Reorganize and fix problems (returns) in the bootm command.
57873
57874     Do *NOT* return after the "point of no return" has been passed.
57875       If something goes wrong, the board must be reset after that point.
57876     Move the "Transferring control to Linux" debug message back to where it
57877       belongs: just before transferring control to linux.
57878
57879     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57880
57881 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
57882 Author: Gerald Van Baren <vanbaren@cideas.com>
57883 Date:   Tue May 8 21:27:35 2007 -0400
57884
57885     Fix bugs in the CONFIG_OF_LIBFDT
57886
57887     Stupid coding mistakes (identified by Timur Tabi, thanks).
57888
57889     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57890
57891 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
57892 Author: Gerald Van Baren <vanbaren@cideas.com>
57893 Date:   Wed Apr 25 22:47:15 2007 -0400
57894
57895     Improve fdt move length handling.
57896
57897     Make the length parameter optional: if not specified, do the move using
57898     the current size unchanged.
57899
57900     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57901
57902 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
57903 Author: Gerald Van Baren <vanbaren@cideas.com>
57904 Date:   Wed Apr 25 22:23:36 2007 -0400
57905
57906     Minor code clean up.
57907
57908     Declare the variable fdt properly as extern.
57909     Call the "set_fn" function pointer the "short way" without the full
57910       dereferencing syntax.
57911
57912     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57913
57914 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
57915 Author: Gerald Van Baren <vanbaren@cideas.com>
57916 Date:   Wed Apr 25 21:24:27 2007 -0400
57917
57918     Improve error messages, more informative.
57919
57920     Print more than the raw libfdt error message strings.  This is especially
57921     useful for cluing in the user when the bootm command aborts due to
57922     blob problems.
57923
57924     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57925
57926 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
57927 Author: Gerald Van Baren <vanbaren@cideas.com>
57928 Date:   Fri Apr 20 22:46:53 2007 -0400
57929
57930     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
57931
57932     This is the way u-boot reduces configured-out code.  At Wolfgang
57933     Grandegger and Wolfgang Denk's request, make libfdt conform.
57934
57935     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57936
57937 commit 923efd286411ed052d9e074f59f8986d6081061c
57938 Author: Bruce Adler <bruce.adler@ccpu.com>
57939 Date:   Fri Aug 10 14:54:47 2007 -0700
57940
57941     add image size and descriptors for Spartan 3E FPGA chips
57942
57943     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
57944
57945     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
57946
57947 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
57948 Author: Kim Phillips <kim.phillips@freescale.com>
57949 Date:   Fri Aug 10 15:34:48 2007 -0500
57950
57951     make MAKEALL more immune to merge conflicts
57952
57953     ..by placing board entries one per line, as suggested by jdl.
57954
57955     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57956
57957 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
57958 Author: Kim Phillips <kim.phillips@freescale.com>
57959 Date:   Fri Aug 10 13:28:25 2007 -0500
57960
57961     README: Remove outdated cpu type, board type, and NAME_config lists
57962
57963     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57964
57965 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
57966 Author: Dave Liu <r63238@freescale.com>
57967 Date:   Fri Aug 10 15:48:59 2007 +0800
57968
57969     mpc83xx: Suppress the warning 'burstlen'
57970
57971     suppress the warning 'burstlen' of spd_sdram.
57972
57973     Signed-off-by: Dave Liu <daveliu@freescale.com>
57974
57975 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
57976 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57977 Date:   Thu Aug 9 15:11:03 2007 -0500
57978
57979     Add support for SBC8641D. Config files.
57980
57981     Add support for Wind River's SBC8641D reference board.
57982
57983     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57984     Acked-by: Wolfgang Denk <wd@denx.de>
57985     Acked-by: Jon Loeliger <jdl@freescale.com>
57986
57987 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
57988 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
57989 Date:   Thu Aug 9 15:10:53 2007 -0500
57990
57991     Add support for SBC8641D.  Board files.
57992
57993     Add support for Wind River's SBC8641D reference board.
57994
57995     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
57996     Acked-by: Wolfgang Denk <wd@denx.de>
57997     Acked-by: Jon Loeliger <jdl@freescale.com>
57998
57999 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
58000 Author: Stefan Roese <sr@denx.de>
58001 Date:   Fri Aug 10 20:34:58 2007 +0200
58002
58003     Conding style cleanup
58004
58005     Signed-off-by: Stefan Roese <sr@denx.de>
58006
58007 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
58008 Author: Sergey Kubushyn <ksi@koi8.net>
58009 Date:   Fri Aug 10 20:26:18 2007 +0200
58010
58011     [ARM] TI DaVinci support, hopefully final
58012
58013     Add support for the following DaVinci boards:
58014     - DV_EVM
58015     - SCHMOOGIE
58016     - SONATA
58017
58018     Changes:
58019
58020     - Split into separate board directories
58021     - Removed changes to MTD_DEBUG (or whatever it's called)
58022     - New CONFIG_CMD party line followed
58023     - Some cosmetic fixes, cleanup etc.
58024     - Patches against the latest U-Boot tree as of now.
58025     - Fixed CONFIG_CMD_NET in net files.
58026     - Fixed CONFIG_CMD_EEPROM for schmoogie.
58027     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
58028        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
58029        but it at least compiles.
58030
58031     Here is an excerpt from session log on SCHMOOGIE...
58032
58033     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
58034
58035     DRAM:  128 MB
58036     NAND:  128 MiB
58037     In:    serial
58038     Out:   serial
58039     Err:   serial
58040     ARM Clock : 297MHz
58041     DDR Clock : 162MHz
58042     ETH PHY   : DP83848 @ 0x01
58043     U-Boot > iprobe
58044     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
58045     U-Boot > ping 192.168.253.10
58046     host 192.168.253.10 is alive
58047     U-Boot >
58048
58049     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
58050     Acked-by: Dirk Behme <dirk.behme@gmail.com>
58051     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
58052     Acked-by: Stefan Roese <sr@denx.de>
58053
58054 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
58055 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58056 Date:   Fri Jul 27 01:50:45 2007 -0500
58057
58058     fsl_pci_init cleanup.
58059
58060     Do not enable normal errors created during probe (master abort, perr,
58061     and pcie Invalid Configuration access).
58062
58063     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
58064
58065     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58066     Acked-by: Andy Fleming <afleming@freescale.com>
58067
58068 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
58069 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58070 Date:   Fri Jul 27 01:50:44 2007 -0500
58071
58072     pciauto_setup_device bars_num fix
58073
58074     Passing bars_num=0 to pciauto_setup_device should assign no bars.
58075
58076     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58077     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58078     Acked-by: Andy Fleming <afleming@freescale.com>
58079
58080 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
58081 Author: Jon Loeliger <jdl@freescale.com>
58082 Date:   Mon Aug 6 17:39:44 2007 -0500
58083
58084     8641hpcn: Do correct sized pointer math.
58085
58086     When I rebased Ed's patch and cleaned up a few compilation
58087     problems, I apparently rebased my brain on crack first.
58088     Fix that by doing (char *) sized pointer math as needed.
58089
58090     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58091
58092 commit cfc7a7f5bb3273c9951173c788001d45118f141f
58093 Author: Jon Loeliger <jdl@freescale.com>
58094 Date:   Thu Aug 2 14:42:20 2007 -0500
58095
58096     cpu/86xx fixes.
58097
58098     Remove rev 1 fixes.
58099     Always set PICGCR_MODE.
58100     Enable machine check and provide board config option
58101     to set and handle SoC error interrupts.
58102
58103     Include MSSSR0 in error message.
58104
58105     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
58106
58107     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58108     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58109
58110 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
58111 Author: Stefan Roese <sr@denx.de>
58112 Date:   Fri Aug 10 10:42:25 2007 +0200
58113
58114     Coding style cleanup
58115
58116     Signed-off-by: Stefan Roese <sr@denx.de>
58117
58118 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
58119 Author: Dirk Behme <dirk.behme@googlemail.com>
58120 Date:   Thu Aug 2 17:42:08 2007 +0200
58121
58122     Make use of generic 64bit division in nand_util.c
58123
58124     Use generic 64bit division in nand_util.c. This makes nand_util.c
58125     independent of any toolchain 64bit division.
58126
58127     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
58128
58129 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
58130 Author: Dirk Behme <dirk.behme@googlemail.com>
58131 Date:   Thu Aug 2 17:41:14 2007 +0200
58132
58133     Move 64bit division from avr32 to generic lib
58134
58135     Move the 64bit division from lib_avr32 to lib_generic. With this, all
58136     boards can do_div/__div64_32 if needed, not only avr one. Code is put
58137     to lib_generic, so no larger memory footprint if not used. No code
58138     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
58139
58140     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
58141
58142 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
58143 Author: Niklaus Giger <niklausgiger@gmx.ch>
58144 Date:   Fri Jul 27 11:31:22 2007 +0200
58145
58146     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
58147
58148     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58149
58150 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
58151 Author: Niklaus Giger <niklausgiger@gmx.ch>
58152 Date:   Fri Jul 27 11:30:33 2007 +0200
58153
58154     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
58155
58156     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58157
58158 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
58159 Author: Niklaus Giger <niklausgiger@gmx.ch>
58160 Date:   Fri Jul 27 11:38:26 2007 +0200
58161
58162     Add PPC4xx-HCU4 and HCU5 boards: common files
58163
58164     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58165
58166 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
58167 Author: Niklaus Giger <niklausgiger@gmx.ch>
58168 Date:   Fri Jul 27 11:28:44 2007 +0200
58169
58170     Add PPC4xx-HCU4 and HCU5 boards: make related
58171
58172     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58173
58174 commit 137fdd9f474ecb853efdace5200576308c67f18d
58175 Author: Niklaus Giger <niklausgiger@gmx.ch>
58176 Date:   Fri Jul 27 11:28:03 2007 +0200
58177
58178     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
58179
58180     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58181
58182 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
58183 Author: Niklaus Giger <niklausgiger@gmx.ch>
58184 Date:   Fri Jul 27 11:27:15 2007 +0200
58185
58186     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
58187
58188     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58189
58190 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
58191 Author: Niklaus Giger <niklausgiger@gmx.ch>
58192 Date:   Fri Jul 27 11:25:31 2007 +0200
58193
58194     Add PPC4xx-HCU4 and HCU5 boards: READMEs
58195
58196     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58197
58198 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
58199 Author: Niklaus Giger <niklausgiger@gmx.ch>
58200 Date:   Fri Jul 27 11:37:40 2007 +0200
58201
58202     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
58203
58204     This series of patches adds support for 2 boards from Netstal Maschinen.
58205
58206     The HCU4 has a PPC405Gpr and
58207     the HCU5 has a PPC440EPX.
58208
58209     The HCU4 has a somehow complicated flash setup, as the booteprom is
58210     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
58211     elegant solution.
58212
58213     The HCU5 has only a booteprom as the whole code will be downloaded from a
58214     different board which has HD, CD-ROM, etc and where all code is stored.
58215
58216     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
58217     Thanks them a lot.
58218
58219     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58220
58221 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
58222 Author: Stefan Roese <sr@denx.de>
58223 Date:   Fri Aug 10 08:42:55 2007 +0200
58224
58225     ppc4xx: Update lwmon5 POST configuration
58226
58227     Signed-off-by: Stefan Roese <sr@denx.de>
58228
58229 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
58230 Author: Yuri Tikhonov <yur@emcraft.com>
58231 Date:   Fri Aug 10 08:25:22 2007 +0200
58232
58233     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
58234
58235     The patch adds support for UART POST on ppc44x-based boards with no
58236     external serial clocks installed.
58237
58238     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58239     Acked-by: Stefan Roese <sr@denx.de>
58240
58241 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
58242 Author: Kim Phillips <kim.phillips@freescale.com>
58243 Date:   Mon Aug 6 18:18:34 2007 -0500
58244
58245     mpc83xx: fix ITX[GP] O=builddir builds
58246
58247     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
58248
58249     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
58250     "BUILD_DIR=<some dir> ./MAKEALL ..."
58251
58252     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58253
58254 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
58255 Author: Dave Liu <r63238@freescale.com>
58256 Date:   Wed Aug 1 15:00:59 2007 +0800
58257
58258     mpc83xx: Correct the README for DDR ECC
58259
58260     Update the README for DDR ECC, change the name
58261     to README.mpc83xx.ddrecc.
58262
58263     Signed-off-by: Dave Liu <daveliu@freescale.com>
58264     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58265
58266 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
58267 Author: Dave Liu <r63238@freescale.com>
58268 Date:   Wed Aug 1 15:00:15 2007 +0800
58269
58270     mpc83xx: Consolidate the ECC support of 83xx
58271
58272     Remove the duplicated source code of ecc command on the <board>.c,
58273     for reused, move these code to cpu/mpc83xx directory.
58274
58275     Signed-off-by: Dave Liu <daveliu@freescale.com>
58276     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58277
58278 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
58279 Author: Dave Liu <r63238@freescale.com>
58280 Date:   Sat Aug 4 13:37:39 2007 +0800
58281
58282     mpc83xx: Correct the burst length for DDR2 with 32 bits
58283
58284     The burst length should be 4 for DDR2 with 32 bits bus
58285
58286     Signed-off-by: Dave Liu <daveliu@freescale.com>
58287
58288 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
58289 Author: Kim Phillips <kim.phillips@freescale.com>
58290 Date:   Wed Jul 25 19:25:33 2007 -0500
58291
58292     mpc83xx: add support for the MPC8323E RDB
58293
58294     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
58295     five 10/100 ethernet ports connected via an ICPlus IP175C
58296     switch, one PCI slot, and serial.  Features not supported
58297     in this patch are SD card interface, 2 USB ports, and the
58298     two phone ports.
58299
58300     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58301     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58302
58303 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
58304 Author: Kim Phillips <kim.phillips@freescale.com>
58305 Date:   Wed Jul 25 19:25:28 2007 -0500
58306
58307     mpc83xx: fixup generic pci for libfdt
58308
58309     add libfdt support to the generic 83xx pci code
58310
58311     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58312
58313 commit f57ac7a7b37109245b69db80839ebee26179966a
58314 Author: Kim Phillips <kim.phillips@freescale.com>
58315 Date:   Wed Jul 25 19:25:22 2007 -0500
58316
58317     mpc83xx: fix 8360 and cpu functions to update fdt being passed
58318
58319     ..and not the global fdt. Rename local fdt vars to blob so as not to
58320     be confused with the global var with the same three-letter name.
58321
58322     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58323
58324 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
58325 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58326 Date:   Wed Jul 4 21:34:24 2007 -0400
58327
58328     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
58329
58330     Several node strings were not correct (trailing slashes and properties
58331       in the strings)
58332     Added setting of the timebase-frequency.
58333     Improved error messages and use debug() instead of printf().
58334
58335     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58336     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58337
58338 commit 26d02c9bbac1751c5e19294f000100b48d43a920
58339 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58340 Date:   Wed Jul 4 21:27:30 2007 -0400
58341
58342     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
58343
58344     The new name matches more closely the kernel's name, which is also
58345     a much better description.
58346
58347     These are the mpc83xx changes made necessary by the function name change.
58348
58349     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
58350     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
58351     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58352
58353 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
58354 Author: Dave Liu <daveliu@freescale.com>
58355 Date:   Mon Jun 25 10:41:56 2007 +0800
58356
58357     mpc83xx: Add support for the display of reset status
58358
58359     83xx processor family has many reset sources, such as
58360     power on reset, software hard reset, software soft reset,
58361     JTAG, bus monitor, software watchdog, check stop reset,
58362     external hard reset, external software reset.
58363     sometimes, to figure out the fault of system, we need to
58364     know the cause of reset early before the prompt of
58365     u-boot present.
58366
58367     Signed-off-by: Dave Liu <daveliu@freescale.com>
58368     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58369
58370 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
58371 Author: Dave Liu <daveliu@freescale.com>
58372 Date:   Mon Jun 25 10:41:04 2007 +0800
58373
58374     mpc83xx: Fix the align bug of SDMA buffer
58375
58376     According to the latest user manual, the SDMA temporary
58377     buffer base address must be 4KB aligned.
58378
58379     Signed-off-by: Dave Liu <daveliu@freescale.com>
58380     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58381
58382 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
58383 Author: Dave Liu <daveliu@freescale.com>
58384 Date:   Mon Jun 25 13:21:12 2007 +0800
58385
58386     mpc83xx: Revise the MPC8360EMDS readme doc
58387
58388     When the rev2.x silicon mount on the MPC8360EMDS baord,
58389     and if you are using the u-boot version after the commit
58390     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
58391     to make the ethernet interface usable, we have to setup
58392     the jumpers correctly.
58393
58394     Signed-off-by: Dave Liu <daveliu@freescale.com>
58395     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58396
58397 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
58398 Author: Timur Tabi <timur@freescale.com>
58399 Date:   Tue Jul 3 13:46:32 2007 -0500
58400
58401     FSL I2C driver programs the two I2C busses differently
58402
58403     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
58404     The second I2C bus has its slave address programmed incorrectly and is
58405     missing a 5-us delay.
58406
58407     Signed-off-by: Timur Tabi <timur@freescale.com>
58408     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58409
58410 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
58411 Author: Timur Tabi <timur@freescale.com>
58412 Date:   Tue Jul 3 13:04:34 2007 -0500
58413
58414     Update SCCR programming in cpu_init_f() to support all 83xx processors
58415
58416     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
58417     bitfields for all 83xx processors.  The code to update some bitfields was
58418     compiled only on some processors.  Now, the bitfields are programmed as long
58419     as the corresponding CFG_SCCR option is defined in the board header file.
58420     This means that the board header file should not define any CFG_SCCR macros
58421     for bitfields that don't exist on that processor, otherwise the SCCR will be
58422     programmed incorrectly.
58423
58424     Signed-off-by: Timur Tabi <timur@freescale.com>
58425     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58426
58427 commit 9546266999f0b9b51372636614211b88d90f0f25
58428 Author: Martin Krause <martin.krause@tqs.de>
58429 Date:   Fri Jun 22 13:04:22 2007 +0200
58430
58431     TQM834x: cleanup configuraton
58432
58433     Remove irritating #undef DEBUG
58434
58435     Signed-off-by: Martin Krause <martin.krause@tqs.de>
58436     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58437
58438 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
58439 Author: david.saada <David.Saada@ecitele.com>
58440 Date:   Mon Jun 18 09:09:53 2007 -0700
58441
58442     MPC83xx: Fix makefile to generate config.h file in the build directory
58443
58444     MPC83xx: Fix the Makefile config sections to generate the include/config.h
58445     file in the build directory instead of the source directory.
58446
58447     Signed-off-by: David Saada <david.saada@ecitele.com>
58448     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58449
58450 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
58451 Author: Lee Nipper <Lee.Nipper@freescale.com>
58452 Date:   Thu Jun 14 20:07:33 2007 -0500
58453
58454     mpc83xx: Add support for 8360 silicon revision 2.1
58455
58456     This change adds 8360 silicon revision 2.1 support to u-boot.
58457
58458     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
58459     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58460
58461 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
58462 Author: Kumar Gala <galak@kernel.crashing.org>
58463 Date:   Wed Aug 8 04:14:28 2007 -0500
58464
58465     Treat ppc64 host as ppc
58466
58467     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58468
58469 commit 0dc4279b08ff82472bec2e2c90858602459febe8
58470 Author: Jason Jin <Jason.jin@freescale.com>
58471 Date:   Wed Aug 8 09:01:46 2007 +0800
58472
58473     Minor fix for bios emulator makefile
58474
58475     Add $(obj) to LIB avoiding objects be built in the source dir
58476
58477     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58478
58479 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
58480 Author: Jason Jin <Jason.jin@freescale.com>
58481 Date:   Wed Aug 8 08:33:11 2007 +0800
58482
58483     Add CONFIG_BIOSEMU define to guard all the bios emulator code
58484
58485     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58486
58487     This patch fix the compile issue on the board that did not enable the bios emulator
58488
58489 commit ed8106433522f2ea8933e9808346860d061d7731
58490 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
58491 Date:   Tue Jul 31 12:27:25 2007 -0500
58492
58493     tsec: fix multiple PHY support
58494
58495     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
58496     broke multiple PHY support in tsec.c.  This fixes it.
58497
58498     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
58499     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58500
58501 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
58502 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
58503 Date:   Thu Aug 9 09:08:18 2007 -0500
58504
58505     tsec: Allow Ten Bit Interface address to be configurable
58506
58507     Allow the address of the Ten Bit Interface (TBI) to be changed in the
58508     event of a conflict with another device.
58509
58510     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
58511
58512 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
58513 Author: Stefan Roese <sr@denx.de>
58514 Date:   Wed Aug 8 09:54:26 2007 +0200
58515
58516     Coding style cleanup
58517
58518     Signed-off-by: Stefan Roese <sr@denx.de>
58519
58520 commit a41de1f0d373e09c782dea558385a06247111ba5
58521 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58522 Date:   Sun Aug 5 05:15:18 2007 -0500
58523
58524     Port enabled for I2C signals and chipselects port configuration.
58525
58526     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58527
58528 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
58529 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58530 Date:   Sun Aug 5 04:31:18 2007 -0500
58531
58532     Added NAND support
58533
58534     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58535
58536 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
58537 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58538 Date:   Sun Aug 5 04:11:20 2007 -0500
58539
58540     Added I2C support
58541
58542     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58543
58544 commit 99c03c175d2689093176facf17c58ce2cb320001
58545 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58546 Date:   Sun Aug 5 03:58:52 2007 -0500
58547
58548     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
58549
58550     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58551
58552 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
58553 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58554 Date:   Sun Aug 5 03:55:21 2007 -0500
58555
58556     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
58557
58558     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58559
58560 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
58561 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58562 Date:   Sun Aug 5 03:43:30 2007 -0500
58563
58564     Moved sync() from board file to include/asm-m68k/io.h
58565
58566     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58567
58568 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
58569 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58570 Date:   Sun Aug 5 03:30:44 2007 -0500
58571
58572     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
58573
58574     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58575
58576 commit 9998bd37ead85e93953559720710d3b0685c81e6
58577 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58578 Date:   Sun Aug 5 03:19:10 2007 -0500
58579
58580     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
58581
58582     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58583
58584 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
58585 Author: Jason Jin <Jason.jin@freescale.com>
58586 Date:   Tue Aug 7 16:17:06 2007 +0800
58587
58588     Add CONFIG_BIOSEMU define to guard all the bios emulator code
58589
58590     This patch fix the compile issue on the board that did not enable the bios emulator
58591
58592 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
58593 Author: Wolfgang Denk <wd@denx.de>
58594 Date:   Tue Aug 7 16:02:13 2007 +0200
58595
58596     Fix missing brace error in fs/fat/fat.c
58597     [pointed out by Roderik Wildenburg]
58598
58599     Signed-off-by: Wolfgang Denk <wd@denx.de>
58600
58601 commit 706714d97a0d08d59eda4de2268c39f504688329
58602 Author: Michal Simek <monstr@monstr.eu>
58603 Date:   Mon Aug 6 23:41:53 2007 +0200
58604
58605     [FIX] remove cute code
58606
58607 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
58608 Author: Michal Simek <monstr@monstr.eu>
58609 Date:   Mon Aug 6 23:35:26 2007 +0200
58610
58611     [FIX] Fix romfs code
58612
58613 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
58614 Author: Michal Simek <monstr@monstr.eu>
58615 Date:   Mon Aug 6 23:31:49 2007 +0200
58616
58617     [FIX] Coding style cleanup - Wolfgang's suggestions
58618
58619 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
58620 Author: Wolfgang Denk <wd@denx.de>
58621 Date:   Mon Aug 6 23:21:05 2007 +0200
58622
58623     Fixed typo in README (pointed out by Martin Jost).
58624
58625     Signed-off-by: Wolfgang Denk <wd@denx.de>
58626
58627 commit 537223afa61f64480df31ce440a9cb386df4a814
58628 Author: Stefan Roese <sr@denx.de>
58629 Date:   Mon Aug 6 21:10:17 2007 +0200
58630
58631     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
58632
58633     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
58634     here an updated Bamboo README.
58635
58636     Signed-off-by: Stefan Roese <sr@denx.de>
58637
58638 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
58639 Author: Wolfgang Denk <wd@denx.de>
58640 Date:   Mon Aug 6 02:17:36 2007 +0200
58641
58642     Coding style cleanup. Update CHANGELOG.
58643
58644     Signed-off-by: Wolfgang Denk <wd@denx.de>
58645
58646 commit 221838cc7eb178370ff62aa05920a582e12ac322
58647 Author: Jason Jin <Jason.jin@freescale.com>
58648 Date:   Tue Jul 10 09:03:22 2007 +0800
58649
58650     Remove the bios emulator from MAI board.
58651
58652     The bios emulator in the MAI board can not pass compile
58653     and have a lot of crap in it. remove it and will have a
58654     clean and small bios emulator in the drivers directory
58655     which can be uesed for every board.
58656
58657     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58658
58659 commit 5618332409bb96f4448d1712899369fc80c0b489
58660 Author: Jason Jin <Jason.jin@freescale.com>
58661 Date:   Fri Jul 13 12:14:59 2007 +0800
58662
58663     Fix some compile issues for MAI board.
58664
58665     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58666
58667 commit 0f460a1ee148b648ee242c3157650287d4296260
58668 Author: Jason Jin <Jason.jin@freescale.com>
58669 Date:   Fri Jul 13 12:14:58 2007 +0800
58670
58671     Configurations for ATI video card BIOS emulator
58672
58673     This patch add definition of the BIOS emulator and the ATI framebuffer
58674     driver for MPC8641HPCN board.
58675
58676     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58677     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58678
58679 commit ece92f85053b8df613edcf05b26a416cbc3d629c
58680 Author: Jason Jin <Jason.jin@freescale.com>
58681 Date:   Fri Jul 6 08:34:56 2007 +0800
58682
58683     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
58684     ATI video card BIOS. and can be used for x86 code emulation by some
58685     modifications.
58686
58687     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58688
58689 commit 5072188acabde3178fac7f5a597150e6e74fd40c
58690 Author: Jason Jin <Jason.jin@freescale.com>
58691 Date:   Fri Jul 6 08:33:33 2007 +0800
58692
58693     This is a framebuffer driver for ATI video card, can work for PCI9200,
58694     X300, X700, X800 ATI video cards.
58695
58696     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58697     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
58698
58699 commit 5728be389e65fd47f34b33c2596271eb4db751ae
58700 Author: Wolfgang Denk <wd@denx.de>
58701 Date:   Mon Aug 6 01:01:49 2007 +0200
58702
58703     Coding style cleanup. Update CHANGELOG.
58704
58705     Signed-off-by: Wolfgang Denk <wd@denx.de>
58706
58707 commit 8092fef4c29b395958bb649647da7e3775731517
58708 Author: Martin Krause <Martin.Krause@tqs.de>
58709 Date:   Tue Dec 12 14:26:01 2006 +0100
58710
58711     Add functions to list of exported functions
58712
58713     Additionally export the following fuctions (to make trab_config build again):
58714     - simple_strtol()
58715     - strcmp()
58716
58717     Also bump the ABI version to reflect this change
58718
58719     Signed-off-by: Martin Krause <martin.krause@tqs.de>
58720
58721 commit 63cec5814fab5d2b1c86982327433807a5ac0249
58722 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
58723 Date:   Thu Aug 2 14:09:49 2007 -0500
58724
58725     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
58726
58727     All of the PCI/PCI-Express driver and initialization code that
58728     was in the MPC8641HPCN port has now been moved into the common
58729     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
58730     utilized by the 85xx ports as well.
58731
58732     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
58733
58734     Also enable the second PCI-Express controller on 8641
58735     by getting its BATS and CFG_ setup right.
58736
58737     Fixed a u16 vendor compiler warning in AHCI driver too.
58738
58739     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
58740     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58741     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58742
58743 commit a274ca4f6d68830e7c916f897561cff8c4101c38
58744 Author: Michal Simek <monstr@monstr.eu>
58745 Date:   Sun Aug 5 22:33:05 2007 +0200
58746
58747     [FIX] Coding style cleanup
58748
58749 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
58750 Author: Michal Simek <monstr@monstr.eu>
58751 Date:   Sun Aug 5 16:13:31 2007 +0200
58752
58753     [FIX] Xilinx Uartlite driver
58754     Because PPC405 can use UARTLITE serial interface and
58755     Microblaze can use Uart16550 serial interface not only Uartlite.
58756
58757 commit 98889edd50aadf862071eb5664747ad0d568a20e
58758 Author: Michal Simek <monstr@monstr.eu>
58759 Date:   Sun Aug 5 15:54:53 2007 +0200
58760
58761     [FIX] Change configuration for XUPV2P Microblaze board
58762
58763 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
58764 Author: Michal Simek <monstr@monstr.eu>
58765 Date:   Sun Aug 5 15:53:50 2007 +0200
58766
58767     [PATCH] Added support for Xilinx Emac community driver
58768
58769 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
58770 Author: Bartlomiej Sieka <tur@semihalf.com>
58771 Date:   Fri Aug 3 12:08:16 2007 +0200
58772
58773     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
58774
58775     Add the ability for modules from the Schindler cm5200 family to use a
58776     single U-Boot image:
58777     - rename cm1_qp1 to cm5200
58778     - add run-time module detection
58779     - parametrize SDRAM configuration according to the module we are running on
58780
58781     Few minor, board-specific fixes included in this patch:
58782     - better MAC address handling
58783     - updated default environment ('update' command uses +{filesize} now)
58784     - improved error messages in the auto-update code
58785     - allow booting U-Boot from RAM (CFG_RAMBOOT)
58786
58787     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58788     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
58789     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58790
58791 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
58792 Author: Andy Fleming <afleming@freescale.com>
58793 Date:   Fri Aug 3 04:05:25 2007 -0500
58794
58795     Add Marvell 1149 PHY support to the TSEC
58796
58797 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
58798 Author: Wolfgang Denk <wd@denx.de>
58799 Date:   Thu Aug 2 21:27:46 2007 +0200
58800
58801     Coding style cleanup, update CHANGELOG
58802
58803     Signed-off-by: Wolfgang Denk <wd@denx.de>
58804
58805 commit 63e22764d2f8653f68888c667eb65b3996b52680
58806 Author: Wolfgang Denk <wd@denx.de>
58807 Date:   Thu Aug 2 10:11:18 2007 +0200
58808
58809     Minor cleanup of <board>_nand build rules.
58810
58811 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
58812 Author: Stefan Roese <sr@denx.de>
58813 Date:   Thu Aug 2 08:33:56 2007 +0200
58814
58815     ppc4xx: Code cleanup
58816
58817     Signed-off-by: Stefan Roese <sr@denx.de>
58818
58819 commit c92409812206ac67a7fa7aae298539a9c3804a46
58820 Author: Grzegorz Bernacki <gjb@semihalf.com>
58821 Date:   Tue Jul 31 18:51:48 2007 +0200
58822
58823     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
58824
58825     During config transactions on the PCIe bus an attempt to scan for a
58826     non-existent device can lead to a machine check exception with certain
58827     peripheral devices. In order to avoid crashing in such scenarios the
58828     instrumented versions of the config cycle read routines are introduced, so
58829     the exceptions fixups framework can gracefully recover.
58830
58831     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58832     Acked-by: Rafal Jaworowski <raj@semihalf.com>
58833
58834 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
58835 Author: Rafal Jaworowski <raj@semihalf.com>
58836 Date:   Tue Jul 31 18:19:54 2007 +0200
58837
58838     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
58839
58840     This brings back separate settings for PCIe bus numbers depending on chip
58841     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
58842     commit. 440SPe rev. A does NOT work properly with the same settings as for
58843     the rev. B (no devices are seen on the bus during enumeration).
58844
58845     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58846
58847 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
58848 Author: Wolfgang Denk <wd@denx.de>
58849 Date:   Thu Aug 2 00:48:45 2007 +0200
58850
58851     Fix build errors and warnings / code cleanup.
58852
58853     Signed-off-by: Wolfgang Denk <wd@denx.de>
58854
58855 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
58856 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
58857 Date:   Tue Jul 31 10:24:56 2007 +0200
58858
58859     ppc4xx: Update AMCC Bamboo 440EP support
58860
58861     Changed storage type of cfg_simulate_spd_eeprom to const
58862     Changed storage type of gpio_tab to stack storage
58863     (Cannot access global data declarations in .bss until afer code relocation)
58864
58865     Improved SDRAM tests to catch problems where data is not uniquely addressable
58866     (e.g. incorrectly programmed SDRAM row or columns)
58867
58868     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
58869     Fixed AM29LV320DT (OpCode Flash) sector map
58870
58871     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
58872     Signed-off-by: Stefan Roese <sr@denx.de>
58873
58874 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
58875 Author: Stefan Roese <sr@denx.de>
58876 Date:   Tue Jul 31 08:37:01 2007 +0200
58877
58878     ppc4xx: Update 440EPx lwmon5 board support
58879
58880     - Clear ECC status regs after ECC POST test
58881     - Set dcbz for ECC generation with caches enabled as default
58882     - Code cleanup
58883
58884     Signed-off-by: Stefan Roese <sr@denx.de>
58885
58886 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
58887 Author: Stefan Roese <sr@denx.de>
58888 Date:   Mon Jul 30 11:04:57 2007 +0200
58889
58890     ppc4xx: Only print ECC related info when the error bis are set
58891
58892     Signed-off-by: Stefan Roese <sr@denx.de>
58893
58894 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
58895 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58896 Date:   Fri Jul 27 16:44:31 2007 +0200
58897
58898     new FPGA image for PLU405 board
58899
58900     new FPGA image for PLU405 board with improved CompactFlash timing
58901
58902     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58903
58904 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
58905 Author: Rafal Jaworowski <raj@semihalf.com>
58906 Date:   Fri Jul 27 14:43:59 2007 +0200
58907
58908     [ADS5121] Support for the ADS5121 board
58909
58910     The following MPC5121e subsystems are supported:
58911
58912     - low-level CPU init
58913     - NOR Boot Flash (common CFI driver)
58914     - DDR SDRAM
58915     - FEC
58916     - I2C
58917     - Watchdog
58918
58919     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58920     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58921     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
58922
58923 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
58924 Author: Rafal Jaworowski <raj@semihalf.com>
58925 Date:   Fri Jul 27 14:22:04 2007 +0200
58926
58927     [PPC] Remove unused MSR_USER definition
58928
58929     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
58930
58931 commit d4024bb72dd81695ec099b2199eda0d27c623e62
58932 Author: John Otken <john@softadvances.com>
58933 Date:   Thu Jul 26 17:49:11 2007 +0200
58934
58935     ppc4xx: Add support for AMCC 405EP Taihu board
58936
58937     Signed-off-by: John Otken <john@softadvances.com>
58938
58939 commit b66091de6c7390620312c2501db23d8391e7cabb
58940 Author: Anatolij Gustschin <agust@denx.de>
58941 Date:   Thu Jul 26 15:08:01 2007 +0200
58942
58943     ppc4xx: lwmon5: Update Lime initialization
58944
58945     Change Lime SDRAM initialization to now support 100MHz and
58946     133MHz (if enabled). Also the framebuffer is initialized to
58947     display a blue rectangle with a white border.
58948
58949     Signed-off-by: Anatolij Gustschin <agust@denx.de>
58950     Signed-off-by: Stefan Roese <sr@denx.de>
58951
58952 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
58953 Author: Stefan Roese <sr@denx.de>
58954 Date:   Tue Jul 24 09:52:52 2007 +0200
58955
58956     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
58957
58958     The used Intel NOR FLASH chips have internally two dies, and are now
58959     treated as two seperate chips.
58960
58961     Signed-off-by: Stefan Roese <sr@denx.de>
58962
58963 commit aedf5bde179ecfbd0a96130d18996a96518b785f
58964 Author: Stefan Roese <sr@denx.de>
58965 Date:   Tue Jul 24 07:20:09 2007 +0200
58966
58967     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
58968
58969     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
58970     interrupt controller.
58971
58972     Signed-off-by: Stefan Roese <sr@denx.de>
58973
58974 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
58975 Author: Stefan Roese <sr@denx.de>
58976 Date:   Fri Jul 20 15:03:44 2007 +0200
58977
58978     ppc4xx: Fix bug with default GPIO output value
58979
58980     As spotted by Matthias Fuchs, the default output values for all GPIO1
58981     outputs were not setup correctly. This patch fixes this issue.
58982
58983     Signed-off-by: Stefan Roese <sr@denx.de>
58984
58985 commit 531e3e8b831f357056448fa573137d5fb37000fd
58986 Author: Pavel Kolesnikov <concord@emcraft.com>
58987 Date:   Fri Jul 20 15:03:03 2007 +0200
58988
58989     POST: Add ECC POST for the lwmon5 board
58990
58991     This patch adds ECC Post test for the Lwmon5 board based
58992     on PPC440EPx to U-Boot.
58993
58994     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
58995     Acked-by: Yuri Tikhonov <yur@emcraft.com>
58996     Acked-by: Stefan Roese <sr@denx.de>
58997
58998 commit cc3023b9f95d7ac959a764471a65001062aecf41
58999 Author: Rafal Jaworowski <raj@semihalf.com>
59000 Date:   Thu Jul 19 17:12:28 2007 +0200
59001
59002     Fix breakage of 8xx boards from recent commit.
59003
59004     This patch fixes the negative consequences for 8xx of the recent
59005     "ppc4xx: Clean up 440 exceptions handling" commit.
59006
59007     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
59008
59009 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
59010 Author: Stefan Roese <sr@denx.de>
59011 Date:   Mon Jul 16 13:11:12 2007 +0200
59012
59013     Coding style cleanup
59014
59015     Signed-off-by: Stefan Roese <sr@denx.de>
59016
59017 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
59018 Author: Stefan Roese <sr@denx.de>
59019 Date:   Mon Jul 16 10:02:12 2007 +0200
59020
59021     ppc4xx: Code cleanup
59022
59023     Signed-off-by: Stefan Roese <sr@denx.de>
59024
59025 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
59026 Author: Stefan Roese <sr@denx.de>
59027 Date:   Mon Jul 16 10:01:38 2007 +0200
59028
59029     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
59030
59031     Signed-off-by: Stefan Roese <sr@denx.de>
59032
59033 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
59034 Author: Stefan Roese <sr@denx.de>
59035 Date:   Mon Jul 16 10:00:43 2007 +0200
59036
59037     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
59038
59039     The new boardspecific DDR2 controller configuration is used for the Yucca
59040     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
59041
59042     Signed-off-by: Stefan Roese <sr@denx.de>
59043
59044 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
59045 Author: Stefan Roese <sr@denx.de>
59046 Date:   Mon Jul 16 09:57:00 2007 +0200
59047
59048     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
59049
59050     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
59051     support non default, boardspecific DDR(2) controller configuration.
59052
59053     Signed-off-by: Stefan Roese <sr@denx.de>
59054
59055 commit 5743a9207a370b90f09b20ebd61167c806b937f3
59056 Author: Stefan Roese <sr@denx.de>
59057 Date:   Mon Jul 16 08:53:51 2007 +0200
59058
59059     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
59060
59061     The new function remove_tlb() can be used to remove the TLB's used to
59062     map a specific memory region. This is especially useful for the DDR(2)
59063     setup routines which configure the SDRAM area temporarily as a cached
59064     area (for speedup on auto-calibration and ECC generation) and later
59065     need this area uncached for normal usage.
59066
59067     Signed-off-by: Stefan Roese <sr@denx.de>
59068
59069 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
59070 Author: Michal Simek <monstr@monstr.eu>
59071 Date:   Mon Jul 16 00:31:07 2007 +0200
59072
59073     [PATCH] Support for Xilinx EmacLite controller
59074
59075 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
59076 Author: Wolfgang Denk <wd@denx.de>
59077 Date:   Sat Jul 14 22:51:02 2007 +0200
59078
59079     Update CHANGELOG
59080
59081     Signed-off-by: Wolfgang Denk <wd@denx.de>
59082
59083 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
59084 Author: Michal Simek <monstr@monstr.eu>
59085 Date:   Sat Jul 14 13:11:28 2007 +0200
59086
59087     [FIX] support for simply measuring time
59088
59089 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
59090 Author: Michal Simek <monstr@monstr.eu>
59091 Date:   Sat Jul 14 12:41:23 2007 +0200
59092
59093     [FS] Added support for ROMFS
59094
59095 commit 011595307731a7a67a7445d107c279d031e8ab97
59096 Author: Heiko Schocher <hs@pollux.denx.de>
59097 Date:   Sat Jul 14 01:06:58 2007 +0200
59098
59099     [PCS440EP]  - fix compile error, if BUILD_DIR is used
59100
59101 commit 5a2f1098d81ad58b309e5e558d0492643166a799
59102 Author: Michal Simek <monstr@monstr.eu>
59103 Date:   Sat Jul 14 00:18:48 2007 +0200
59104
59105     [PATCH] Support time without timer
59106
59107 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
59108 Author: Michal Simek <monstr@monstr.eu>
59109 Date:   Fri Jul 13 21:43:55 2007 +0200
59110
59111     [PATCH] Remove problem with disabled BARREL SHIFTER
59112
59113 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
59114 Author: Michal Simek <monstr@monstr.eu>
59115 Date:   Fri Jul 13 21:41:44 2007 +0200
59116
59117     [FIX] correct help for rspr
59118
59119 commit fad63407154f46246ce80d53a9c669a44362ac67
59120 Author: Heiko Schocher <hs@pollux.denx.de>
59121 Date:   Fri Jul 13 09:54:17 2007 +0200
59122
59123     make show_boot_progress () weak.
59124
59125     Signed-off-by: Heiko Schocher <hs@denx.de>
59126
59127 commit 907902472391b6ca1876ec300687562ecaf459b1
59128 Author: Heiko Schocher <hs@pollux.denx.de>
59129 Date:   Fri Jul 13 08:26:05 2007 +0200
59130
59131     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
59132                 - fix compile error, if BUILD_DIR is used
59133
59134     Signed-off-by: Heiko Schocher <hs@denx.de>
59135
59136 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
59137 Author: Stefan Roese <sr@denx.de>
59138 Date:   Thu Jul 12 16:32:08 2007 +0200
59139
59140     ppc4xx: Change receive buffer handling in the 4xx emac driver
59141
59142     This change fixes a bug in the receive buffer handling, that
59143     could lead to problems upon high network traffic (broadcasts...).
59144
59145     Signed-off-by: Stefan Roese <sr@denx.de>
59146
59147 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
59148 Author: Wolfgang Denk <wd@denx.de>
59149 Date:   Thu Jul 12 01:45:34 2007 +0200
59150
59151     Update CHANGELOG, minor coding style cleanup.
59152
59153     Signed-off-by: Wolfgang Denk <wd@denx.de>
59154
59155 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
59156 Author: Andy Fleming <afleming@freescale.com>
59157 Date:   Fri Jun 8 16:41:18 2007 -0500
59158
59159     Remove erroneous errata code from Marvel 88E1111S driver
59160
59161     The Marvel 88E1111S driver for the TSEC was copied from the
59162     88E1101 driver, and included a fix for an erratum which does not
59163     exist on that part.  Now it is removed
59164
59165     Signed-off-by: Andy Fleming <afleming@freescale.com>
59166
59167 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
59168 Author: Andy Fleming <afleming@freescale.com>
59169 Date:   Tue Jun 5 16:38:44 2007 -0500
59170
59171     From: eran liberty <eran.liberty@gmail.com>
59172
59173     adds the reset register to 85xx immap
59174
59175     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
59176     Signed-off-by: Andy Fleming <afleming@freescale.com>
59177
59178 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
59179 Author: Andy Fleming <afleming@freescale.com>
59180 Date:   Thu May 10 17:50:01 2007 -0500
59181
59182     Polished the 85xx ADS config files
59183
59184     Made the boot commands use device trees by default.
59185     Also moved the ramdisk to 1000000 (I think the previous address
59186     was getting overridden during boot).
59187
59188     Signed-off-by: Andy Fleming <afleming@freescale.com>
59189
59190 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
59191 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59192 Date:   Wed May 9 11:03:32 2007 -0500
59193
59194     8544ds: Fix Makefile after moving pixis to board/freescale.
59195
59196     The OBJTREE != SRCTREE build scenario was broken.
59197     This fixes it.
59198
59199     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59200     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59201
59202 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
59203 Author: Andy Fleming <afleming@freescale.com>
59204 Date:   Wed May 9 00:54:20 2007 -0500
59205
59206     tsec: Fix PHY code to match first driver
59207
59208     Jarrold Wen noticed that the generic PHY code always matches
59209     under the current implementation.  Change it so the first match
59210     wins, and *only* unknown PHYs trigger the generic driver
59211
59212     Signed-off-by: Andy Fleming <afleming@freescale.com>
59213
59214 commit ccc091aac61a38cd998d575d92f7232e256d6312
59215 Author: Andy Fleming <afleming@freescale.com>
59216 Date:   Tue May 8 17:27:43 2007 -0500
59217
59218     Add support for CPM device tree configuration to 8560 ADS
59219
59220     * Adds code to modify CPM frequencies
59221     * Cleans up the config file to #define TSEC and (for now) #undef FCC
59222     * Adds the MII command for all 8560 ADS configurations
59223     * Updates config file to provide convenience commands for booting
59224       with a device tree
59225
59226     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
59227     Signed-off-by: Andy Fleming <afleming@freescale.com>
59228
59229 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
59230 Author: Andy Fleming <afleming@freescale.com>
59231 Date:   Tue May 8 17:23:02 2007 -0500
59232
59233     Fix Marvell 88e1145 PHY init code
59234
59235     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
59236     where the reset was being done after the errata code instead of
59237     before.
59238
59239     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
59240     Signed-off-by: Andy Fleming <afleming@freescale.com>
59241
59242 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
59243 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59244 Date:   Wed Jul 11 14:52:16 2007 -0500
59245
59246     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
59247
59248     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59249
59250 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
59251 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59252 Date:   Wed Jul 11 14:52:08 2007 -0500
59253
59254     pciauto setup bridge
59255
59256     The P2P bridge bus numbers programmed into the device are relative to
59257     hose->first_busno.
59258
59259     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59260
59261 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
59262 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59263 Date:   Wed Jul 11 14:52:01 2007 -0500
59264
59265     Support PCIe extended config registers
59266
59267     FSL PCIe block has extended cfg registers in the 100 and 400 range.
59268     For example, to read the LTSSM register: pci display <busn>.0 404 1
59269
59270     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59271
59272 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
59273 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59274 Date:   Wed Jul 11 14:51:48 2007 -0500
59275
59276     Minor improvements to drivers/pci_auto.c
59277
59278     - Make pciauto_{pre,post}scan_setup_bridge non-static
59279     - Added physical address display in debug messages.
59280
59281     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59282
59283 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
59284 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
59285 Date:   Wed Jul 11 14:51:35 2007 -0500
59286
59287     Start pci hose scan from hose->current_busno.
59288
59289     Ensure hose->current_busno is not less than first_busno.  This fixes
59290     broken board code which leaves current_busno=0 when first_busno is
59291     greater than 0 for the cases with multiple controllers.
59292
59293     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
59294
59295 commit 3865b1fb7843a08ad49a6319a36415752276ff48
59296 Author: Stefan Roese <sr@denx.de>
59297 Date:   Wed Jul 11 12:13:53 2007 +0200
59298
59299     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
59300
59301     Signed-off-by: Stefan Roese <sr@denx.de>
59302
59303 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
59304 Author: Bartlomiej Sieka <tur@semihalf.com>
59305 Date:   Wed Jul 11 20:11:07 2007 +0200
59306
59307     CM1.QP1: Support for the Schindler CM1.QP1 board.
59308
59309     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
59310     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59311
59312 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
59313 Author: Heiko Schocher <hs@pollux.denx.de>
59314 Date:   Wed Jul 11 18:39:11 2007 +0200
59315
59316     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
59317                 - now the Flash ST M29W040B is supported (not tested)
59318                 - fix the "led" command
59319                 - fix compile error, if BUILD_DIR is used
59320
59321     Signed-off-by: Heiko Schocher <hs@denx.de>
59322
59323 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
59324 Author: Stefan Roese <sr@denx.de>
59325 Date:   Sun Jul 8 13:44:27 2007 +0200
59326
59327     Fix malloc problem introduced with the relocation fixup for the PPC platform
59328
59329     The relocation fixup didn't handle the malloc pointer initialization
59330     correctly. This patch fixes this problem. Tested successfully on 4xx.
59331     The relocation fixup patches for 4xx will follow soon.
59332
59333     Signed-off-by: Stefan Roese <sr@denx.de>
59334
59335 commit 0dca874db62718e41253659e60f3a1de7eb418ce
59336 Author: TsiChung <tcliew@Goku.(none)>
59337 Date:   Tue Jul 10 15:45:43 2007 -0500
59338
59339     Cache update and added CFG_UNIFY_CACHE
59340
59341     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.
59342
59343     Signed-off-by: TsiChung <tcliew@Goku.(none)>
59344
59345 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
59346 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59347 Date:   Thu Jul 5 23:36:16 2007 -0500
59348
59349     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
59350
59351     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
59352
59353     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59354
59355 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
59356 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59357 Date:   Thu Jul 5 23:31:25 2007 -0500
59358
59359     Update header files
59360
59361     Include immap.h and renamed mcfrtc.h to rtc.h
59362
59363     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59364
59365 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
59366 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59367 Date:   Thu Jul 5 23:29:21 2007 -0500
59368
59369     Add mcffec_initialize()
59370
59371     Added mcffec_initialize() in eth_initialize()
59372
59373     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59374
59375 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
59376 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59377 Date:   Thu Jul 5 23:27:40 2007 -0500
59378
59379     Update header file and clean up
59380
59381     Include immap.h
59382
59383     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59384
59385 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
59386 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59387 Date:   Thu Jul 5 23:23:15 2007 -0500
59388
59389     New uart structure and defines
59390
59391     Seperated from mcfuart.h
59392
59393     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59394
59395 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
59396 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59397 Date:   Thu Jul 5 23:22:31 2007 -0500
59398
59399     New timer structure and defines
59400
59401     Seperated from mcftimer.h
59402
59403     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59404
59405 commit e04acb2eba4782489417240eff76e20e176aec10
59406 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59407 Date:   Thu Jul 5 23:21:09 2007 -0500
59408
59409     Rename mcfrtc to rtc
59410
59411     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
59412
59413     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59414
59415 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
59416 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59417 Date:   Thu Jul 5 23:17:36 2007 -0500
59418
59419     Rename mcfserial.c. Update include header
59420
59421     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
59422
59423     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59424
59425 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
59426 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59427 Date:   Thu Jul 5 23:13:58 2007 -0500
59428
59429     Header file update, clean up and cache handling
59430
59431     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
59432
59433     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59434
59435 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
59436 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59437 Date:   Thu Jul 5 23:10:40 2007 -0500
59438
59439     Create interrupts.c and modify Makefile
59440
59441     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
59442
59443     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59444
59445 commit ddd104f1ed655eda50c06ba636237a83ed943f34
59446 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59447 Date:   Thu Jul 5 23:06:55 2007 -0500
59448
59449     Enable Icache
59450
59451     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59452
59453 commit b9bf3de377b2bae70c983c9b97feae914999e735
59454 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59455 Date:   Thu Jul 5 23:05:31 2007 -0500
59456
59457     Update header file and some clean up
59458
59459     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
59460
59461     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59462
59463 commit 84a015b52ec820a5ae173717d78516de731c89c2
59464 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59465 Date:   Thu Jul 5 23:03:28 2007 -0500
59466
59467     Update header file and enable icache
59468
59469     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
59470
59471     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59472
59473 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
59474 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59475 Date:   Thu Jul 5 23:01:22 2007 -0500
59476
59477     Update header file and removed interrupt_init()
59478
59479     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
59480
59481     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59482
59483 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
59484 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59485 Date:   Thu Jul 5 22:57:46 2007 -0500
59486
59487     Update for flash.o and mii.o
59488
59489     Removed flash.o and added mii.o
59490
59491     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59492
59493 commit c5ded275d839e4ff79f41718d50a835d989f57bc
59494 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59495 Date:   Thu Jul 5 22:56:19 2007 -0500
59496
59497     MII functions calls.
59498
59499     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59500
59501 commit 427c814104560e29bda14955c67703245aaaa5b4
59502 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59503 Date:   Thu Jul 5 22:54:42 2007 -0500
59504
59505     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
59506
59507     The removed MII routines will be placed in mii.c.
59508
59509     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59510
59511 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
59512 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59513 Date:   Thu Jul 5 22:51:05 2007 -0500
59514
59515     Duplicate code
59516
59517     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
59518
59519     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59520
59521 commit 2744354a8437b8f78db178e30660215688bff570
59522 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59523 Date:   Thu Jul 5 22:46:38 2007 -0500
59524
59525     Seperate old structure defines and new structure defines
59526
59527     Removed new uart structure and defines to uart.h
59528
59529     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59530
59531 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
59532 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59533 Date:   Thu Jul 5 22:45:01 2007 -0500
59534
59535     Seperate old structure defines and new structure defines
59536
59537     New timer structure and defines will move to new timer.h
59538
59539     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59540
59541 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
59542 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59543 Date:   Thu Jul 5 22:42:23 2007 -0500
59544
59545     Clean up
59546
59547     Removed whitespace
59548
59549     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59550
59551 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
59552 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59553 Date:   Thu Jul 5 22:41:24 2007 -0500
59554
59555     Clean up
59556
59557     Replaced whitespace with tabs
59558
59559     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59560
59561 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
59562 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59563 Date:   Thu Jul 5 22:39:07 2007 -0500
59564
59565     Create new header file and move peripherals base address from configs file to new header file.
59566
59567     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.
59568
59569     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59570
59571 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
59572 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59573 Date:   Thu Jul 5 22:24:58 2007 -0500
59574
59575     Revert file mode
59576
59577     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
59578
59579     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
59580
59581 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
59582 Author: Jon Loeliger <jdl@freescale.com>
59583 Date:   Tue Jul 10 11:19:50 2007 -0500
59584
59585     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
59586
59587     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59588     Those always evaluated TRUE, and thus were always compiled
59589     even when IDE really wasn't defined/wanted.
59590
59591     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59592
59593 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
59594 Author: Jon Loeliger <jdl@freescale.com>
59595 Date:   Tue Jul 10 11:13:21 2007 -0500
59596
59597     drivers/: Remove lingering references to CFG_CMD_* symbols.
59598
59599     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59600     Those always evaluated TRUE, and thus were always compiled
59601     even when IDE really wasn't defined/wanted.
59602
59603     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59604
59605 commit f40a7f3e3888b42a43674b099e5470022c8c544c
59606 Author: Jon Loeliger <jdl@freescale.com>
59607 Date:   Tue Jul 10 11:07:56 2007 -0500
59608
59609     fs/: Remove lingering references to CFG_CMD_* symbols.
59610
59611     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59612     Those always evaluated TRUE, and thus were always compiled
59613     even when IDE really wasn't defined/wanted.
59614
59615     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59616
59617 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
59618 Author: Jon Loeliger <jdl@freescale.com>
59619 Date:   Tue Jul 10 11:05:02 2007 -0500
59620
59621     net/: Remove lingering references to CFG_CMD_* symbols.
59622
59623     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59624     Those always evaluated TRUE, and thus were always compiled
59625     even when IDE really wasn't defined/wanted.
59626
59627     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59628
59629 commit 902531788376046da212afd1661cffb62f3daa1c
59630 Author: Jon Loeliger <jdl@freescale.com>
59631 Date:   Tue Jul 10 11:02:44 2007 -0500
59632
59633     common/: Remove lingering references to CFG_CMD_* symbols.
59634
59635     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59636     Those always evaluated TRUE, and thus were always compiled
59637     even when IDE really wasn't defined/wanted.
59638
59639     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59640
59641 commit d39b57415838c73fb0a37eca84de3c68ba990586
59642 Author: Jon Loeliger <jdl@freescale.com>
59643 Date:   Tue Jul 10 10:48:22 2007 -0500
59644
59645     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
59646
59647     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59648     Those always evaluated TRUE, and thus were always compiled
59649     even when IDE really wasn't defined/wanted.
59650
59651     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59652
59653 commit 77a318545d57aefa844752465b94c7e09a3f26d0
59654 Author: Jon Loeliger <jdl@freescale.com>
59655 Date:   Tue Jul 10 10:39:10 2007 -0500
59656
59657     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
59658
59659     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
59660     Those always evaluated TRUE, and thus were always compiled
59661     even when IDE really wasn't defined/wanted.
59662
59663     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59664
59665 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
59666 Author: Jon Loeliger <jdl@freescale.com>
59667 Date:   Tue Jul 10 10:27:39 2007 -0500
59668
59669     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
59670
59671     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59672
59673 commit 079a136c3588814784561d6e4856970ee82d6e2a
59674 Author: Jon Loeliger <jdl@freescale.com>
59675 Date:   Tue Jul 10 10:12:10 2007 -0500
59676
59677     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
59678
59679     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59680     used to be included but CONFIG_BOOTP_MASK was not defined.
59681
59682     Remove lingering references to CFG_CMD_* symbols.
59683
59684     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59685
59686 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
59687 Author: Jon Loeliger <jdl@freescale.com>
59688 Date:   Tue Jul 10 09:38:02 2007 -0500
59689
59690     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
59691
59692     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59693     used to be included but CONFIG_BOOTP_MASK was not defined.
59694
59695     Remove lingering references to CFG_CMD_* symbols.
59696
59697     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59698
59699 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
59700 Author: Jon Loeliger <jdl@freescale.com>
59701 Date:   Tue Jul 10 09:29:01 2007 -0500
59702
59703     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
59704
59705     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59706     used to be included but CONFIG_BOOTP_MASK was not defined.
59707
59708     Remove lingering references to CFG_CMD_* symbols.
59709
59710     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59711
59712 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
59713 Author: Jon Loeliger <jdl@freescale.com>
59714 Date:   Tue Jul 10 09:22:23 2007 -0500
59715
59716     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
59717
59718     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59719     used to be included but CONFIG_BOOTP_MASK was not defined.
59720
59721     Remove lingering references to CFG_CMD_* symbols.
59722
59723     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59724
59725 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
59726 Author: Jon Loeliger <jdl@freescale.com>
59727 Date:   Tue Jul 10 09:10:49 2007 -0500
59728
59729     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
59730
59731     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59732     used to be included but CONFIG_BOOTP_MASK was not defined.
59733
59734     Remove lingering references to CFG_CMD_* symbols.
59735
59736     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59737
59738 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
59739 Author: Jon Loeliger <jdl@freescale.com>
59740 Date:   Tue Jul 10 09:02:57 2007 -0500
59741
59742     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
59743
59744     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
59745     used to be included but CONFIG_BOOTP_MASK was not defined.
59746
59747     Remove lingering references to CFG_CMD_* symbols.
59748
59749     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59750
59751 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
59752 Author: Jon Loeliger <jdl@freescale.com>
59753 Date:   Mon Jul 9 22:08:34 2007 -0500
59754
59755     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
59756
59757     All of the choices for CONFIG_BOOTP_ are now documented in
59758     the README file.  You must now individually select exactly
59759     the set that you want using a series of
59760         #define CONFIG_BOOTP_<x>
59761     statements in the board port config files now.
59762
59763     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59764
59765 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
59766 Author: Jon Loeliger <jdl@freescale.com>
59767 Date:   Mon Jul 9 21:57:31 2007 -0500
59768
59769     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59770
59771     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59772
59773 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
59774 Author: Jon Loeliger <jdl@freescale.com>
59775 Date:   Mon Jul 9 21:48:26 2007 -0500
59776
59777     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59778
59779     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59780
59781 commit 37d4bb70586659dedef1658ce1bed071be098aec
59782 Author: Jon Loeliger <jdl@freescale.com>
59783 Date:   Mon Jul 9 21:38:02 2007 -0500
59784
59785     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59786
59787     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59788
59789 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
59790 Author: Jon Loeliger <jdl@freescale.com>
59791 Date:   Mon Jul 9 21:31:24 2007 -0500
59792
59793     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59794
59795     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59796
59797 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
59798 Author: Jon Loeliger <jdl@freescale.com>
59799 Date:   Mon Jul 9 21:24:19 2007 -0500
59800
59801     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59802
59803     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59804
59805 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
59806 Author: Jon Loeliger <jdl@freescale.com>
59807 Date:   Mon Jul 9 21:16:53 2007 -0500
59808
59809     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
59810
59811     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59812
59813 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
59814 Author: Jon Loeliger <jdl@freescale.com>
59815 Date:   Mon Jul 9 19:12:30 2007 -0500
59816
59817     Retire CONFIG_COMMANDS finally.
59818     Strip old CFG_CMD_* symbols out.
59819
59820     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59821
59822 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
59823 Author: Jon Loeliger <jdl@freescale.com>
59824 Date:   Mon Jul 9 19:10:03 2007 -0500
59825
59826     Update README.* to reference new CONFIG_CMD_* names now.
59827
59828     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59829
59830 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
59831 Author: Jon Loeliger <jdl@freescale.com>
59832 Date:   Mon Jul 9 19:06:00 2007 -0500
59833
59834     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
59835
59836     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59837
59838 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
59839 Author: Jon Loeliger <jdl@freescale.com>
59840 Date:   Mon Jul 9 18:57:22 2007 -0500
59841
59842     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
59843
59844     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59845
59846 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
59847 Author: Jon Loeliger <jdl@freescale.com>
59848 Date:   Mon Jul 9 18:45:16 2007 -0500
59849
59850     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
59851
59852     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59853
59854 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
59855 Author: Jon Loeliger <jdl@freescale.com>
59856 Date:   Mon Jul 9 18:38:39 2007 -0500
59857
59858     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
59859
59860     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59861
59862 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
59863 Author: Jon Loeliger <jdl@freescale.com>
59864 Date:   Mon Jul 9 18:31:28 2007 -0500
59865
59866     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
59867
59868     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59869
59870 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
59871 Author: Jon Loeliger <jdl@freescale.com>
59872 Date:   Mon Jul 9 18:24:55 2007 -0500
59873
59874     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
59875
59876     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59877
59878 commit fcec2eb93e126400009729328e797f12bc94f1fd
59879 Author: Jon Loeliger <jdl@freescale.com>
59880 Date:   Mon Jul 9 18:19:09 2007 -0500
59881
59882     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
59883
59884     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59885
59886 commit a593814f2be0c9cdc3133cd550b167b8a988328f
59887 Author: Jon Loeliger <jdl@freescale.com>
59888 Date:   Mon Jul 9 18:10:50 2007 -0500
59889
59890     rtc/: Remove obsolete references to CONFIG_COMMANDS
59891
59892     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59893
59894 commit 67350568f9d46e66c21829f3513b3db0caeb948b
59895 Author: Jon Loeliger <jdl@freescale.com>
59896 Date:   Mon Jul 9 18:05:38 2007 -0500
59897
59898     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
59899
59900     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59901
59902 commit 7def6b34f910f08d7ef0a14646da067719237ca2
59903 Author: Jon Loeliger <jdl@freescale.com>
59904 Date:   Mon Jul 9 18:02:11 2007 -0500
59905
59906     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
59907
59908     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59909
59910 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
59911 Author: Jon Loeliger <jdl@freescale.com>
59912 Date:   Mon Jul 9 17:56:50 2007 -0500
59913
59914     fs/: Remove obsolete references to CONFIG_COMMANDS
59915
59916     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59917
59918 commit c91898bbc505aff3e12a807af88e76da18efb7ee
59919 Author: Jon Loeliger <jdl@freescale.com>
59920 Date:   Mon Jul 9 17:46:09 2007 -0500
59921
59922     tools/: Remove obsolete references to CONFIG_COMMANDS
59923
59924     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59925
59926 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
59927 Author: Jon Loeliger <jdl@freescale.com>
59928 Date:   Mon Jul 9 17:45:14 2007 -0500
59929
59930     net/: Remove obsolete references to CONFIG_COMMANDS
59931
59932     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59933
59934 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
59935 Author: Jon Loeliger <jdl@freescale.com>
59936 Date:   Mon Jul 9 17:39:42 2007 -0500
59937
59938     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
59939
59940     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59941
59942 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
59943 Author: Jon Loeliger <jdl@freescale.com>
59944 Date:   Mon Jul 9 17:30:01 2007 -0500
59945
59946     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
59947
59948     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59949
59950 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
59951 Author: Jon Loeliger <jdl@freescale.com>
59952 Date:   Mon Jul 9 17:22:37 2007 -0500
59953
59954     disk/: Remove obsolete references to CONFIG_COMMANDS
59955
59956     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59957
59958 commit 639221c76c88215bd55af83ad174fc30d1940f8f
59959 Author: Jon Loeliger <jdl@freescale.com>
59960 Date:   Mon Jul 9 17:15:49 2007 -0500
59961
59962     include/: Remove obsolete references to CONFIG_COMMANDS
59963     Mostly removed from comments here.
59964
59965     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59966
59967 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
59968 Author: Wolfgang Denk <wd@denx.de>
59969 Date:   Tue Jul 10 00:01:28 2007 +0200
59970
59971     Coding style cleanup; update CHANGELOG.
59972
59973     Signed-off-by: Wolfgang Denk <wd@denx.de>
59974
59975 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
59976 Author: Stefan Roese <sr@denx.de>
59977 Date:   Mon Jul 9 11:00:24 2007 +0200
59978
59979     Small coding style cleanup
59980
59981     Signed-off-by: Stefan Roese <sr@denx.de>
59982
59983 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
59984 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59985 Date:   Mon Jul 9 10:10:08 2007 +0200
59986
59987     Migrate esd 405EP boards to new NAND subsystem
59988
59989     Remove unused CFG_NAND_LEGACY define
59990
59991     These boards to not have NAND.
59992
59993     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59994
59995 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
59996 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59997 Date:   Mon Jul 9 10:10:06 2007 +0200
59998
59999     Migrate esd 405EP boards to new NAND subsystem
60000
60001     Migrate esd 405EP boards to new NAND subsystem
60002
60003     -cleanup
60004     -use correct io accessors (in/out_be32())
60005
60006     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60007
60008 commit e09f7ab5749c345f924da272bea0521a73af5b11
60009 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60010 Date:   Mon Jul 9 10:10:04 2007 +0200
60011
60012     Migrate esd 405EP boards to new NAND subsystem
60013
60014     This patch prepares the migration from the legacy NAND driver
60015     to U-Boot's new NAND subsystem for esd boards.
60016
60017     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60018
60019 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
60020 Author: Jon Loeliger <jdl@freescale.com>
60021 Date:   Sun Jul 8 18:10:08 2007 -0500
60022
60023     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
60024
60025     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60026
60027 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
60028 Author: Jon Loeliger <jdl@freescale.com>
60029 Date:   Sun Jul 8 18:05:39 2007 -0500
60030
60031     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
60032
60033     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60034
60035 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
60036 Author: Jon Loeliger <jdl@freescale.com>
60037 Date:   Sun Jul 8 18:02:23 2007 -0500
60038
60039     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
60040
60041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60042
60043 commit baa26db4113679b80970ff447d91cc10217742a6
60044 Author: Jon Loeliger <jdl@freescale.com>
60045 Date:   Sun Jul 8 17:51:39 2007 -0500
60046
60047     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
60048
60049     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60050
60051 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
60052 Author: Jon Loeliger <jdl@freescale.com>
60053 Date:   Sun Jul 8 17:02:01 2007 -0500
60054
60055     Clear up confusion over the CMD_POST and POST_DIAG mess.
60056
60057     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
60058     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
60059     Clear this mess up some.
60060
60061     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60062
60063 commit b3631487105a57ab7cbadfc26efbaf9676275018
60064 Author: Jon Loeliger <jdl@freescale.com>
60065 Date:   Sun Jul 8 15:45:08 2007 -0500
60066
60067     Remove references to the old cmd_confdefs.h include file.
60068
60069     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60070
60071 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
60072 Author: Jon Loeliger <jdl@freescale.com>
60073 Date:   Sun Jul 8 15:42:59 2007 -0500
60074
60075     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
60076
60077     Use new CONFIG_CMD_* in lwmon5.h board config file.
60078     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
60079
60080     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60081
60082 commit a5562901661bd428f7e5feb333f796372cb81019
60083 Author: Jon Loeliger <jdl@freescale.com>
60084 Date:   Sun Jul 8 15:31:57 2007 -0500
60085
60086     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
60087
60088     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60089
60090 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
60091 Author: Jon Loeliger <jdl@freescale.com>
60092 Date:   Sun Jul 8 15:02:44 2007 -0500
60093
60094     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
60095
60096     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60097
60098 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
60099 Author: Jon Loeliger <jdl@freescale.com>
60100 Date:   Sun Jul 8 15:12:40 2007 -0500
60101
60102     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
60103
60104     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60105
60106 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
60107 Author: Jon Loeliger <jdl@freescale.com>
60108 Date:   Sun Jul 8 14:55:07 2007 -0500
60109
60110     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
60111
60112     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60113
60114 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
60115 Author: Jon Loeliger <jdl@freescale.com>
60116 Date:   Sun Jul 8 14:49:44 2007 -0500
60117
60118     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
60119
60120     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60121
60122 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
60123 Author: Jon Loeliger <jdl@freescale.com>
60124 Date:   Sun Jul 8 14:21:43 2007 -0500
60125
60126     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
60127
60128     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60129
60130 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
60131 Author: Jon Loeliger <jdl@freescale.com>
60132 Date:   Sun Jul 8 14:14:17 2007 -0500
60133
60134     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
60135
60136     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60137
60138 commit 348f258f24253433e4a2302a0bbceb6740a67246
60139 Author: Jon Loeliger <jdl@freescale.com>
60140 Date:   Sun Jul 8 13:46:18 2007 -0500
60141
60142     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
60143
60144     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60145
60146 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
60147 Author: Jon Loeliger <jdl@freescale.com>
60148 Date:   Sun Jul 8 10:09:35 2007 -0500
60149
60150     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
60151
60152     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60153
60154 commit 60a0876b5106b34220e459c208bbf648073306c0
60155 Author: Jon Loeliger <jdl@freescale.com>
60156 Date:   Sat Jul 7 21:04:26 2007 -0500
60157
60158     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
60159
60160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60161
60162 commit dcaa71562826a2466e894c868d132509dcda8444
60163 Author: Jon Loeliger <jdl@freescale.com>
60164 Date:   Sat Jul 7 20:56:05 2007 -0500
60165
60166     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
60167
60168     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60169
60170 commit 3c3227f3c737502311b25b72084573901cbbf17d
60171 Author: Jon Loeliger <jdl@freescale.com>
60172 Date:   Sat Jul 7 20:40:43 2007 -0500
60173
60174     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
60175
60176     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60177
60178 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
60179 Author: Jon Loeliger <jdl@freescale.com>
60180 Date:   Thu Jul 5 19:52:35 2007 -0500
60181
60182     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
60183
60184     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60185
60186 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
60187 Author: Jon Loeliger <jdl@freescale.com>
60188 Date:   Thu Jul 5 19:32:07 2007 -0500
60189
60190     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
60191
60192     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60193
60194 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
60195 Author: Jon Loeliger <jdl@freescale.com>
60196 Date:   Thu Jul 5 19:13:52 2007 -0500
60197
60198     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
60199
60200     Since ADS860.h includes "board/fads/fads.h" with ramifications
60201     on the CONFIG_COMMAND treatment, it too has to be adjusted to
60202     exclude already configured commands in this same commit.
60203
60204     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60205
60206 commit 10e038932f22ee80ebd53de312531e70e6590a2f
60207 Author: Thomas Knobloch <knobloch@siemens.com>
60208 Date:   Fri Jul 6 14:58:39 2007 +0200
60209
60210     [NAND] Bad block skipping for command nboot
60211
60212     The old implementation of command nboot does not support reading the image from
60213     NAND flash with skipping of bad blocks. The patch implements a new version of
60214     the nboot command: by calling nboot.jffs2 from the u-boot command line the
60215     command will load the image from NAND flash with respect to bad blocks (by using
60216     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
60217     read.jffs2 ...".
60218
60219     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
60220     Signed-off-by: Stefan Roese <sr@denx.de>
60221
60222 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
60223 Author: Stefan Roese <sr@denx.de>
60224 Date:   Fri Jul 6 12:26:51 2007 +0200
60225
60226     ppc4xx: Update lwmon5 default environment
60227
60228     Signed-off-by: Stefan Roese <sr@denx.de>
60229
60230 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
60231 Author: Stefan Roese <sr@denx.de>
60232 Date:   Fri Jul 6 11:48:24 2007 +0200
60233
60234     ppc4xx: Update lwmon5 board
60235
60236     Add unlock=yes environment variable to default variables to unlock
60237     the CFI flash by default.
60238
60239     Signed-off-by: Stefan Roese <sr@denx.de>
60240
60241 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
60242 Author: Stefan Roese <sr@denx.de>
60243 Date:   Fri Jul 6 09:45:47 2007 +0200
60244
60245     Fix problem with get/setdcr commands introduced by cfg patches
60246
60247     Signed-off-by: Stefan Roese <sr@denx.de>
60248
60249 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
60250 Author: Wolfgang Denk <wd@denx.de>
60251 Date:   Fri Jul 6 02:50:19 2007 +0200
60252
60253     Code cleanup and default config update for STC GP3 SSA board.
60254
60255     Signed-off-by: Wolfgang Denk <wd@denx.de>
60256
60257 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
60258 Author: Wolfgang Denk <wd@denx.de>
60259 Date:   Thu Jul 5 17:56:27 2007 +0200
60260
60261     Fixing some typos etc. introduced mainly by cfg patches.
60262
60263     Signed-off-by: Wolfgang Denk <wd@denx.de>
60264
60265 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
60266 Author: Wolfgang Denk <wd@denx.de>
60267 Date:   Thu Jul 5 11:12:16 2007 +0200
60268
60269     Minor coding style cleanup. Update CHANGELOG.
60270
60271 commit dca3b3d6d6396b67e5e84af53452164923c73443
60272 Author: Jon Loeliger <jdl@jdl.com>
60273 Date:   Wed Jul 4 22:33:46 2007 -0500
60274
60275     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
60276
60277     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60278
60279 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
60280 Author: Jon Loeliger <jdl@jdl.com>
60281 Date:   Wed Jul 4 22:33:38 2007 -0500
60282
60283     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
60284
60285     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60286
60287 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
60288 Author: Jon Loeliger <jdl@jdl.com>
60289 Date:   Wed Jul 4 22:33:30 2007 -0500
60290
60291     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
60292
60293     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60294
60295 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
60296 Author: Jon Loeliger <jdl@jdl.com>
60297 Date:   Wed Jul 4 22:33:23 2007 -0500
60298
60299     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
60300
60301     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60302
60303 commit 26a34560d56a9df5bc2ae23525d9229736134757
60304 Author: Jon Loeliger <jdl@jdl.com>
60305 Date:   Wed Jul 4 22:33:17 2007 -0500
60306
60307     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
60308
60309     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60310
60311 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
60312 Author: Jon Loeliger <jdl@jdl.com>
60313 Date:   Wed Jul 4 22:33:13 2007 -0500
60314
60315     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
60316
60317     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60318
60319 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
60320 Author: Jon Loeliger <jdl@jdl.com>
60321 Date:   Wed Jul 4 22:33:07 2007 -0500
60322
60323     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
60324
60325     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60326
60327 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
60328 Author: Jon Loeliger <jdl@jdl.com>
60329 Date:   Wed Jul 4 22:33:01 2007 -0500
60330
60331     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
60332
60333     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60334
60335 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
60336 Author: Jon Loeliger <jdl@jdl.com>
60337 Date:   Wed Jul 4 22:32:57 2007 -0500
60338
60339     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
60340
60341     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60342
60343 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
60344 Author: Jon Loeliger <jdl@jdl.com>
60345 Date:   Wed Jul 4 22:32:51 2007 -0500
60346
60347     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
60348
60349     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60350
60351 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
60352 Author: Jon Loeliger <jdl@jdl.com>
60353 Date:   Wed Jul 4 22:32:32 2007 -0500
60354
60355     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
60356
60357     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60358
60359 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
60360 Author: Jon Loeliger <jdl@jdl.com>
60361 Date:   Wed Jul 4 22:32:25 2007 -0500
60362
60363     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
60364
60365     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60366
60367 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
60368 Author: Jon Loeliger <jdl@jdl.com>
60369 Date:   Wed Jul 4 22:32:19 2007 -0500
60370
60371     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
60372
60373     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60374
60375 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
60376 Author: Jon Loeliger <jdl@jdl.com>
60377 Date:   Wed Jul 4 22:32:10 2007 -0500
60378
60379     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
60380
60381     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60382
60383 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
60384 Author: Jon Loeliger <jdl@jdl.com>
60385 Date:   Wed Jul 4 22:32:03 2007 -0500
60386
60387     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
60388
60389     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60390
60391 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
60392 Author: Jon Loeliger <jdl@jdl.com>
60393 Date:   Wed Jul 4 22:31:56 2007 -0500
60394
60395     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
60396
60397     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60398
60399 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
60400 Author: Jon Loeliger <jdl@jdl.com>
60401 Date:   Wed Jul 4 22:31:49 2007 -0500
60402
60403     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
60404
60405     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60406
60407 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
60408 Author: Jon Loeliger <jdl@jdl.com>
60409 Date:   Wed Jul 4 22:31:42 2007 -0500
60410
60411     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
60412
60413     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60414
60415 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
60416 Author: Jon Loeliger <jdl@jdl.com>
60417 Date:   Wed Jul 4 22:31:35 2007 -0500
60418
60419     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
60420
60421     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60422
60423 commit d794cfefead5fc177cf4f41164e80382e9c9484a
60424 Author: Jon Loeliger <jdl@jdl.com>
60425 Date:   Wed Jul 4 22:31:15 2007 -0500
60426
60427     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
60428
60429     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60430
60431 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
60432 Author: Jon Loeliger <jdl@jdl.com>
60433 Date:   Wed Jul 4 22:31:07 2007 -0500
60434
60435     include/configs: Use new CONFIG_CMD_* in STx board config files.
60436
60437     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60438
60439 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
60440 Author: Jon Loeliger <jdl@jdl.com>
60441 Date:   Wed Jul 4 22:30:58 2007 -0500
60442
60443     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
60444
60445     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60446
60447 commit 2694690e285acaa34922f55f4b5ae030da60c55a
60448 Author: Jon Loeliger <jdl@jdl.com>
60449 Date:   Wed Jul 4 22:30:50 2007 -0500
60450
60451     include/configs: Use new CONFIG_CMD_* in TQM board config files.
60452
60453     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60454
60455 commit 1cc4c458329765b58e584a19821e796b3c10e976
60456 Author: Jon Loeliger <jdl@jdl.com>
60457 Date:   Wed Jul 4 22:30:28 2007 -0500
60458
60459     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
60460
60461     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60462
60463 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
60464 Author: Jon Loeliger <jdl@jdl.com>
60465 Date:   Wed Jul 4 22:30:06 2007 -0500
60466
60467     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
60468
60469     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60470
60471 commit b44896215a09c60fa40cae906f7ed207bbc2c492
60472 Author: Sergei Poselenov <sposelenov@emcraft.com>
60473 Date:   Thu Jul 5 08:17:37 2007 +0200
60474
60475     Merged POST framework with the current TOT.
60476
60477     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
60478
60479 commit b24629fa377214d63bb40d1360e354b6d3e4af56
60480 Author: Jon Loeliger <jdl@jdl.com>
60481 Date:   Wed Jun 13 13:23:15 2007 -0500
60482
60483     mpc86xx: Remove old CFG_CMD_* references.
60484
60485     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60486
60487 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
60488 Author: Jon Loeliger <jdl@jdl.com>
60489 Date:   Wed Jun 13 13:22:54 2007 -0500
60490
60491     Add MPC8568MDS to MAKEALL 85xx target.
60492
60493     It was missing from the original port submission.
60494
60495     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60496
60497 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
60498 Author: Jon Loeliger <jdl@jdl.com>
60499 Date:   Wed Jun 13 13:22:08 2007 -0500
60500
60501     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
60502
60503     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60504
60505 commit 56b304ac2091689506088a9ae67f63fd6300cf16
60506 Author: Jon Loeliger <jdl@jdl.com>
60507 Date:   Wed Jun 13 13:21:37 2007 -0500
60508
60509     Fix #if typo in CONFIG_CMD_* changes.
60510
60511     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60512
60513 commit f780b83316d9af1f61d71cc88b1917b387b9b995
60514 Author: Niklaus Giger <niklausgiger@gmx.ch>
60515 Date:   Wed Jun 27 18:11:38 2007 +0200
60516
60517     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
60518
60519     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
60520
60521 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
60522 Author: Stefan Roese <sr@denx.de>
60523 Date:   Wed Jul 4 10:06:30 2007 +0200
60524
60525     ppc4xx: Update lwmon5 board
60526
60527     - Add optional ECC generation routine to preserve existing
60528       RAM values. This is needed for the Linux log-buffer support
60529     - Add optional DDR2 setup with CL=4
60530     - GPIO50 not used anymore
60531     - Lime register setup added
60532
60533     Signed-off-by: Stefan Roese <sr@denx.de>
60534
60535 commit 6810a34677dbc446334f5e451f1682426dd33b49
60536 Author: Grant Likely <grant.likely@secretlab.ca>
60537 Date:   Tue Jul 3 00:17:28 2007 -0600
60538
60539     Fix Makefile to use $(MKCONFIG) macro for all board ports
60540
60541     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60542
60543 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
60544 Author: Grant Likely <grant.likely@secretlab.ca>
60545 Date:   Tue Jul 3 00:17:28 2007 -0600
60546
60547     Fix Makefile to use $(MKCONFIG) macro for all board ports
60548
60549     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60550
60551 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
60552 Author: Grant Likely <grant.likely@secretlab.ca>
60553 Date:   Tue Jul 3 00:34:49 2007 -0600
60554
60555     Correct fixup relocation for mpc83xx
60556
60557     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60558
60559 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
60560 Author: Grant Likely <grant.likely@secretlab.ca>
60561 Date:   Tue Jul 3 00:34:44 2007 -0600
60562
60563     Correct fixup relocation for mpc8260
60564
60565     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60566
60567 commit f3a52fe05923935db86985daf9438e2f70ac39aa
60568 Author: Grant Likely <grant.likely@secretlab.ca>
60569 Date:   Tue Jul 3 00:34:39 2007 -0600
60570
60571     Correct fixup relocation for mpc824x
60572
60573     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60574
60575 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
60576 Author: Grant Likely <grant.likely@secretlab.ca>
60577 Date:   Tue Jul 3 00:34:34 2007 -0600
60578
60579     Correct fixup relocation for mpc8220
60580
60581     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60582
60583 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
60584 Author: Grant Likely <grant.likely@secretlab.ca>
60585 Date:   Tue Jul 3 00:34:29 2007 -0600
60586
60587     Correct fixup relocation for MPC5xxx
60588
60589     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60590
60591 commit 3649cd99ba815b6601868735765602f00ef3692b
60592 Author: Grant Likely <grant.likely@secretlab.ca>
60593 Date:   Tue Jul 3 00:34:24 2007 -0600
60594
60595     Correct relocation fixup for mpc5xx
60596
60597     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60598
60599 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
60600 Author: Grant Likely <grant.likely@secretlab.ca>
60601 Date:   Tue Jul 3 00:34:19 2007 -0600
60602
60603     Don't set gd->reloc_off if relocation of .fixup works correctly
60604
60605     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60606
60607 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
60608 Author: Grant Likely <grant.likely@secretlab.ca>
60609 Date:   Tue Jul 3 00:34:14 2007 -0600
60610
60611     Remove obsolete mpc83xx linker scripts
60612
60613     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60614
60615 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
60616 Author: Grant Likely <grant.likely@secretlab.ca>
60617 Date:   Tue Jul 3 00:34:09 2007 -0600
60618
60619     Consolidate mpc8260 linker scripts
60620
60621     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60622
60623 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
60624 Author: Grant Likely <grant.likely@secretlab.ca>
60625 Date:   Tue Jul 3 00:34:04 2007 -0600
60626
60627     Remove obsolete mpc824x linker scripts
60628
60629     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60630
60631 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
60632 Author: Grant Likely <grant.likely@secretlab.ca>
60633 Date:   Tue Jul 3 00:33:59 2007 -0600
60634
60635     Remove obsolete mpc824x linker scripts (3 of 4)
60636
60637     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60638
60639 commit a71c084f3ac7fedf144537db2b2da47323068833
60640 Author: Grant Likely <grant.likely@secretlab.ca>
60641 Date:   Tue Jul 3 00:33:53 2007 -0600
60642
60643     Remove obsolete mpc824x linker scripts (2 of 4)
60644
60645     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60646
60647 commit f670a15468d1365241d40022b9408e1004181f5e
60648 Author: Grant Likely <grant.likely@secretlab.ca>
60649 Date:   Tue Jul 3 00:33:48 2007 -0600
60650
60651     Remove obsolete mpc824x linker scripts (1 of 4)
60652
60653     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60654
60655 commit 09555bd45a04c0e54f172528d21bc18896550d28
60656 Author: Grant Likely <grant.likely@secretlab.ca>
60657 Date:   Tue Jul 3 00:33:43 2007 -0600
60658
60659     Remove obsolete mpc8220 linker scripts
60660
60661     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60662
60663 commit 5efb992f046e51225c93d52f80fecbe433abd789
60664 Author: Grant Likely <grant.likely@secretlab.ca>
60665 Date:   Tue Jul 3 00:33:38 2007 -0600
60666
60667     Remove obsolete mpc5xxx linker scripts (3 of 3)
60668
60669     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60670
60671 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
60672 Author: Grant Likely <grant.likely@secretlab.ca>
60673 Date:   Tue Jul 3 00:33:33 2007 -0600
60674
60675     Remove obsolete mpc5xxx linker scripts (2 of 3)
60676
60677     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60678
60679 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
60680 Author: Grant Likely <grant.likely@secretlab.ca>
60681 Date:   Tue Jul 3 00:33:28 2007 -0600
60682
60683     Remove obsolete mpc5xxx linker scripts (1 of 3)
60684
60685     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60686
60687 commit b7d8e05f8675249b5f208aa73babeed384a4519d
60688 Author: Grant Likely <grant.likely@secretlab.ca>
60689 Date:   Tue Jul 3 00:33:23 2007 -0600
60690
60691     Remove obsolete mpc5xx linker scripts
60692
60693     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60694
60695 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
60696 Author: Grant Likely <grant.likely@secretlab.ca>
60697 Date:   Tue Jul 3 00:33:18 2007 -0600
60698
60699     Consolidate mpc83xx linker scripts
60700
60701     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60702
60703 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
60704 Author: Grant Likely <grant.likely@secretlab.ca>
60705 Date:   Tue Jul 3 00:33:13 2007 -0600
60706
60707     Consolidate mpc8260 linker scripts
60708
60709     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60710
60711 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
60712 Author: Grant Likely <grant.likely@secretlab.ca>
60713 Date:   Tue Jul 3 00:33:08 2007 -0600
60714
60715     Consolidate mpc824x linker scripts
60716
60717     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60718
60719 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
60720 Author: Grant Likely <grant.likely@secretlab.ca>
60721 Date:   Tue Jul 3 00:33:03 2007 -0600
60722
60723     Consolidate mpc8220 linker scripts
60724
60725     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60726
60727 commit d181c9a15cd41863fe24840d17848429f27d3c8c
60728 Author: Grant Likely <grant.likely@secretlab.ca>
60729 Date:   Tue Jul 3 00:32:58 2007 -0600
60730
60731     Consolidate mpc5xxx linker scripts
60732
60733     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60734
60735 commit 287ac924adb7291bebe5086652a362a30ab28b13
60736 Author: Grant Likely <grant.likely@secretlab.ca>
60737 Date:   Tue Jul 3 00:32:53 2007 -0600
60738
60739     Consolidate mpc5xx linker scripts
60740
60741     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
60742
60743 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
60744 Author: Wolfgang Denk <wd@denx.de>
60745 Date:   Wed Jul 4 00:43:53 2007 +0200
60746
60747     Fix a few file permission problems.
60748
60749     Signed-off-by: Wolfgang Denk <wd@denx.de>
60750
60751 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
60752 Author: Wolfgang Denk <wd@denx.de>
60753 Date:   Wed Jul 4 00:38:38 2007 +0200
60754
60755     Minor coding style cleanup. Rebuild CHANGELOG file.
60756
60757 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
60758 Author: Jon Loeliger <jdl@jdl.com>
60759 Date:   Mon Jun 11 19:03:44 2007 -0500
60760
60761     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
60762
60763     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60764
60765 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
60766 Author: Jon Loeliger <jdl@jdl.com>
60767 Date:   Mon Jun 11 19:03:39 2007 -0500
60768
60769     README: Rewrite command line config to use CONFIG_CMD_* names.
60770
60771     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60772
60773 commit 72a074cec68e5bad60d63206c050974e08afd804
60774 Author: Jon Loeliger <jdl@jdl.com>
60775 Date:   Mon Jun 11 19:03:34 2007 -0500
60776
60777     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60778
60779     This is a compatibility step that allows both the older form
60780     and the new form to co-exist for a while until the older can
60781     be removed entirely.
60782
60783     All transformations are of the form:
60784     Before:
60785         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60786     After:
60787         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60788
60789     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60790
60791 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
60792 Author: Jon Loeliger <jdl@jdl.com>
60793 Date:   Mon Jun 11 19:03:28 2007 -0500
60794
60795     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60796
60797     This is a compatibility step that allows both the older form
60798     and the new form to co-exist for a while until the older can
60799     be removed entirely.
60800
60801     All transformations are of the form:
60802     Before:
60803         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60804     After:
60805         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60806
60807     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60808
60809 commit 9107ebe0d352420895ab69b715697bdebc8caf50
60810 Author: Jon Loeliger <jdl@jdl.com>
60811 Date:   Mon Jun 11 19:03:23 2007 -0500
60812
60813     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60814
60815     This is a compatibility step that allows both the older form
60816     and the new form to co-exist for a while until the older can
60817     be removed entirely.
60818
60819     All transformations are of the form:
60820     Before:
60821         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60822     After:
60823         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60824
60825     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60826
60827 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
60828 Author: Jon Loeliger <jdl@jdl.com>
60829 Date:   Mon Jun 11 19:03:19 2007 -0500
60830
60831     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60832
60833     This is a compatibility step that allows both the older form
60834     and the new form to co-exist for a while until the older can
60835     be removed entirely.
60836
60837     All transformations are of the form:
60838     Before:
60839         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60840     After:
60841         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60842
60843     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60844
60845 commit 737184114ec9c9e0ab94d6713536126073bd2472
60846 Author: Jon Loeliger <jdl@jdl.com>
60847 Date:   Mon Jun 11 19:03:15 2007 -0500
60848
60849     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60850
60851     This is a compatibility step that allows both the older form
60852     and the new form to co-exist for a while until the older can
60853     be removed entirely.
60854
60855     All transformations are of the form:
60856     Before:
60857         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60858     After:
60859         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60860
60861     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60862
60863 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
60864 Author: Jon Loeliger <jdl@jdl.com>
60865 Date:   Mon Jun 11 19:03:08 2007 -0500
60866
60867     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60868
60869     This is a compatibility step that allows both the older form
60870     and the new form to co-exist for a while until the older can
60871     be removed entirely.
60872
60873     All transformations are of the form:
60874     Before:
60875         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60876     After:
60877         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60878
60879     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60880
60881 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
60882 Author: Jon Loeliger <jdl@jdl.com>
60883 Date:   Mon Jun 11 19:03:03 2007 -0500
60884
60885     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60886
60887     This is a compatibility step that allows both the older form
60888     and the new form to co-exist for a while until the older can
60889     be removed entirely.
60890
60891     All transformations are of the form:
60892     Before:
60893         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60894     After:
60895         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60896
60897     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60898
60899 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
60900 Author: Jon Loeliger <jdl@jdl.com>
60901 Date:   Mon Jun 11 19:02:58 2007 -0500
60902
60903     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60904
60905     This is a compatibility step that allows both the older form
60906     and the new form to co-exist for a while until the older can
60907     be removed entirely.
60908
60909     All transformations are of the form:
60910     Before:
60911         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60912     After:
60913         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60914
60915     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60916
60917 commit 98b79003c21c2578206003256de4e781d6b36ca8
60918 Author: Jon Loeliger <jdl@jdl.com>
60919 Date:   Mon Jun 11 19:02:53 2007 -0500
60920
60921     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60922
60923     This is a compatibility step that allows both the older form
60924     and the new form to co-exist for a while until the older can
60925     be removed entirely.
60926
60927     All transformations are of the form:
60928     Before:
60929         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60930     After:
60931         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60932
60933     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60934
60935 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
60936 Author: Jon Loeliger <jdl@jdl.com>
60937 Date:   Mon Jun 11 19:02:49 2007 -0500
60938
60939     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60940
60941     This is a compatibility step that allows both the older form
60942     and the new form to co-exist for a while until the older can
60943     be removed entirely.
60944
60945     All transformations are of the form:
60946     Before:
60947         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60948     After:
60949         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60950
60951     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60952
60953 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
60954 Author: Jon Loeliger <jdl@jdl.com>
60955 Date:   Mon Jun 11 19:02:34 2007 -0500
60956
60957     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60958
60959     This is a compatibility step that allows both the older form
60960     and the new form to co-exist for a while until the older can
60961     be removed entirely.
60962
60963     All transformations are of the form:
60964     Before:
60965         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60966     After:
60967         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60968
60969     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60970
60971 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
60972 Author: Jon Loeliger <jdl@jdl.com>
60973 Date:   Mon Jun 11 19:02:20 2007 -0500
60974
60975     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60976
60977     This is a compatibility step that allows both the older form
60978     and the new form to co-exist for a while until the older can
60979     be removed entirely.
60980
60981     All transformations are of the form:
60982     Before:
60983         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
60984     After:
60985         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
60986
60987     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60988
60989 commit d5be43de93ff905c465e509d45a3164ef48d26e7
60990 Author: Jon Loeliger <jdl@jdl.com>
60991 Date:   Mon Jun 11 19:02:10 2007 -0500
60992
60993     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
60994
60995     This is a compatibility step that allows both the older form
60996     and the new form to co-exist for a while until the older can
60997     be removed entirely.
60998
60999     All transformations are of the form:
61000     Before:
61001         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
61002     After:
61003         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
61004
61005     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61006
61007 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
61008 Author: Jon Loeliger <jdl@jdl.com>
61009 Date:   Mon Jun 11 19:02:05 2007 -0500
61010
61011     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
61012
61013     This is a compatibility step that allows both the older form
61014     and the new form to co-exist for a while until the older can
61015     be removed entirely.
61016
61017     All transformations are of the form:
61018     Before:
61019         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
61020     After:
61021         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
61022
61023     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61024
61025 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
61026 Author: Jon Loeliger <jdl@jdl.com>
61027 Date:   Mon Jun 11 19:01:54 2007 -0500
61028
61029     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
61030
61031     This is a compatibility step that allows both the older form
61032     and the new form to co-exist for a while until the older can
61033     be removed entirely.
61034
61035     All transformations are of the form:
61036     Before:
61037         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
61038     After:
61039         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
61040
61041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61042
61043 commit a76adc8142c1d956385a109e0b70f9319ede4d66
61044 Author: Jon Loeliger <jdl@jdl.com>
61045 Date:   Mon Jun 11 19:01:43 2007 -0500
61046
61047     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
61048
61049     This is a compatibility step that allows both the older form
61050     and the new form to co-exist for a while until the older can
61051     be removed entirely.
61052
61053     All transformations are of the form:
61054     Before:
61055         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
61056     After:
61057         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
61058
61059     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61060
61061 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
61062 Author: Jon Loeliger <jdl@jdl.com>
61063 Date:   Mon Jun 11 19:01:34 2007 -0500
61064
61065     Introduce initial versions of new Command Config files.
61066
61067     Derive three new files from cmd_confdefs.h:
61068         config_bootp.h - Has BOOTP related config options, not commands
61069         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
61070         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
61071
61072     For now, include "config_bootp.h" for compatability until all
61073     users of it directly include it properly.
61074
61075     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61076
61077 commit 1f2a05898658900dc5717761e27abf2052e67e13
61078 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
61079 Date:   Sat Jun 30 18:50:48 2007 +0200
61080
61081     Fix S-ATA support.
61082
61083     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
61084
61085 commit a5d71e290f3673269be8eefb4ec44f53412f9461
61086 Author: Heiko Schocher <hs@pollux.denx.de>
61087 Date:   Mon Jun 25 19:11:37 2007 +0200
61088
61089     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
61090
61091     Signed-off-by: Heiko Schocher <hs@denx.de>
61092
61093 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
61094 Author: Niklaus Giger <niklaus.giger@nestal.com>
61095 Date:   Mon Jun 25 17:03:13 2007 +0200
61096
61097     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
61098
61099     This patch prints the DDR status registers upon machine check
61100     interrupt on the 440EPx/GRx. This can be useful especially when
61101     ECC support is enabled.
61102
61103     I added some small changes to the original patch from Niklaus to
61104     make it compile clean.
61105
61106     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
61107     Signed-off-by: Stefan Roese <sr@denx.de>
61108
61109 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
61110 Author: Niklaus Giger <niklaus.giger@nestal.com>
61111 Date:   Mon Jun 25 16:50:55 2007 +0200
61112
61113     ppc4xx: Fix O=buildir builds
61114
61115     This patch fixes the problem to assemble cpu/ppc4xx/start.S
61116     experienced last week where building failed having specified
61117     O=../build.sequoia.
61118
61119     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
61120
61121 commit 466fff1a7bb5fe764a06450626f6098219f446b8
61122 Author: Stefan Roese <sr@denx.de>
61123 Date:   Mon Jun 25 15:57:39 2007 +0200
61124
61125     ppc4xx: Add pci_pre_init() for 405 boards
61126
61127     This patch removes the CFG_PCI_PRE_INIT option completely, since
61128     it's not needed anymore with the patch from Matthias Fuchs with
61129     the "weak" pci_pre_init() implementation.
61130
61131     Signed-off-by: Stefan Roese <sr@denx.de>
61132
61133 commit 6f35c53166213c24a5a0e2390ed861136ff73870
61134 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61135 Date:   Sun Jun 24 17:41:21 2007 +0200
61136
61137     ppc4xx: Maintenance patch for esd's CPCI405 derivats
61138
61139     -add pci_pre_init() for pci interrupt fixup code
61140     -disable phy sleep mode via reset_phy() function
61141     -use correct io accessors
61142     -cleanup
61143
61144     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61145
61146 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
61147 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61148 Date:   Sun Jun 24 17:23:41 2007 +0200
61149
61150     ppc4xx: Add pci_pre_init() for 405 boards
61151
61152     This patch adds support for calling a plattform dependant
61153     pci_pre_init() function for 405 boards. This can be used to
61154     move the current pci_405gp_fixup_irq() function into the
61155     board code.
61156
61157     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
61158     A default function with 'weak' attribute is used when
61159     a board specific pci_pre_init() is not implemented.
61160
61161     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
61162
61163 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
61164 Author: Wolfgang Denk <wd@denx.de>
61165 Date:   Fri Jun 22 23:59:00 2007 +0200
61166
61167     Coding stylke cleanup; rebuild CHANGELOG
61168
61169 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
61170 Author: Igor Lisitsin <igor@emcraft.com>
61171 Date:   Wed Apr 18 14:55:19 2007 +0400
61172
61173     Adapt log buffer code to support Linux 2.6
61174
61175     A new environment variable, "logversion", selects the log buffer
61176     behaviour. If it is not set or set to a value other than 2, then the
61177     old, Linux 2.4.4, behaviour is selected.
61178
61179     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
61180     --
61181
61182 commit a11e06965ec91270c51853407ff1261d3c740386
61183 Author: Igor Lisitsin <igor@emcraft.com>
61184 Date:   Wed Mar 28 19:06:19 2007 +0400
61185
61186     Extend POST support for PPC440
61187
61188     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
61189
61190     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
61191     --
61192
61193 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
61194 Author: Heiko Schocher <hs@pollux.denx.de>
61195 Date:   Fri Jun 22 19:11:54 2007 +0200
61196
61197     [PCS440EP]      upgrade the PCS440EP board:
61198                     - Show on the Status LEDs, some States of the board.
61199                     - Get the MAC addresses from the EEProm
61200                     - use PREBOOT
61201                     - use the CF on the board.
61202                     - check the U-Boot image in the Flash with a SHA1
61203                       checksum.
61204                     - use dynamic TLB entries generation for the SDRAM
61205
61206     Signed-off-by: Heiko Schocher <hs@denx.de>
61207
61208 commit 3a1f5c81b0b9557817a789bece839905581c2205
61209 Author: Stefan Roese <sr@denx.de>
61210 Date:   Fri Jun 22 16:58:40 2007 +0200
61211
61212     ppc4xx: Fix problem with extended program_tlb() funtion
61213
61214     The recently extended program_tlb() function had a problem when
61215     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
61216     virtual address was not incremented. This patch fixes this issue
61217     and is tested on Katmai with 512MB SDRAM.
61218
61219     Signed-off-by: Stefan Roese <sr@denx.de>
61220
61221 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
61222 Author: Rafal Jaworowski <raj@semihalf.com>
61223 Date:   Fri Jun 22 14:58:04 2007 +0200
61224
61225     [ppc] Fix build breakage for all non-4xx PowerPC variants.
61226
61227     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
61228     - minor 4xx cleanup
61229
61230 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
61231 Author: Mike Frysinger <vapier@gentoo.org>
61232 Date:   Fri Jun 22 10:34:12 2007 +0200
61233
61234     [patch] add nand_init() prototype to nand.h
61235
61236     since nand_init() is expected to be called by other parts of u-boot, there
61237     should be a prototype for it in nand.h
61238
61239     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61240     Signed-off-by: Stefan Roese <sr@denx.de>
61241
61242 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
61243 Author: Wolfgang Denk <wd@denx.de>
61244 Date:   Wed Jun 20 18:14:24 2007 +0200
61245
61246     Coding style cleanup. Refresh CHANGELOG.
61247
61248 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
61249 Author: Stefan Roese <sr@denx.de>
61250 Date:   Tue Jun 19 17:22:44 2007 +0200
61251
61252     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
61253
61254     This patch adds a board command to configure the I2C bootstrap EEPROM
61255     values. Right now 533 and 667MHz are supported for booting either via NOR
61256     or NAND FLASH. Here the usage:
61257
61258     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
61259     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
61260
61261     Signed-off-by: Stefan Roese <sr@denx.de>
61262
61263 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
61264 Author: Stefan Roese <sr@denx.de>
61265 Date:   Tue Jun 19 16:42:31 2007 +0200
61266
61267     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
61268
61269     The latest changes showed a problem with the location of the NAND-SPL
61270     image in the OCM and the init-data area (incl. cache). This patch
61271     fixes this problem.
61272
61273     Signed-off-by: Stefan Roese <sr@denx.de>
61274
61275 commit 86ba99e34194394052d24c04dc40d1263d29a26f
61276 Author: Stefan Roese <sr@denx.de>
61277 Date:   Tue Jun 19 16:40:58 2007 +0200
61278
61279     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
61280
61281     Signed-off-by: Stefan Roese <sr@denx.de>
61282
61283 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
61284 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61285 Date:   Mon Jun 18 13:50:13 2007 -0500
61286
61287     Added M5329AFEE and M5329BFEE Platforms
61288
61289     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
61290     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
61291     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
61292     rtc/mcfrtc.c
61293
61294     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
61295     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
61296     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
61297     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
61298     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
61299     lib_m68k/time.c, net/eth.c and rtc/Makefile
61300
61301     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61302
61303 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
61304 Author: Michal Simek <monstr@monstr.eu>
61305 Date:   Sun Jun 17 19:04:11 2007 +0200
61306
61307     [fix] email reparation
61308
61309 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
61310 Author: Michal Simek <monstr@monstr.eu>
61311 Date:   Sun Jun 17 19:03:21 2007 +0200
61312
61313     [FIX] fix microblaze file permitission
61314
61315 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
61316 Author: Stefan Roese <sr@denx.de>
61317 Date:   Fri Jun 15 11:33:41 2007 +0200
61318
61319     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
61320
61321     Now CONFIG_440 has to be defined in all PPC440 board config files.
61322
61323     Signed-off-by: Stefan Roese <sr@denx.de>
61324
61325 commit efa35cf12d914d4caba942acd5a6c45f217de302
61326 Author: Grzegorz Bernacki <gjb@semihalf.com>
61327 Date:   Fri Jun 15 11:19:28 2007 +0200
61328
61329     ppc4xx: Clean up 440 exceptions handling
61330
61331     - Introduced dedicated switches for building 440 and 405 images required
61332       for 440-specific machine instructions like 'rfmci' etc.
61333
61334     - Exception vectors moved to the proper location (_start moved away from
61335       the critical exception handler space, which it occupied)
61336
61337     - CriticalInput now serviced (with default handler)
61338
61339     - MachineCheck properly serviced (added a dedicated handler and return
61340       subroutine)
61341
61342     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
61343       unhandled and those not relevant for 4xx were eliminated)
61344
61345     - Eliminated Linux leftovers, removed dead code
61346
61347     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
61348     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
61349     Signed-off-by: Stefan Roese <sr@denx.de>
61350
61351 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
61352 Author: Stefan Roese <sr@denx.de>
61353 Date:   Fri Jun 15 08:18:01 2007 +0200
61354
61355     [ppc4xx] Add initial lwmon5 board support
61356
61357     This patch adds initial support for the Liebherr lwmon5 board euqipped
61358     with an AMCC 440EPx PowerPC.
61359
61360     Signed-off-by: Stefan Roese <sr@denx.de>
61361
61362 commit 85f737376d5ff3d5f0d45a8b657686326d175307
61363 Author: Stefan Roese <sr@denx.de>
61364 Date:   Fri Jun 15 07:39:43 2007 +0200
61365
61366     [ppc4xx] Extend 44x GPIO setup with default output state
61367
61368     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
61369     is extended with the default GPIO output state (level).
61370
61371     Signed-off-by: Stefan Roese <sr@denx.de>
61372
61373 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
61374 Author: Stefan Roese <sr@denx.de>
61375 Date:   Thu Jun 14 11:14:32 2007 +0200
61376
61377     [ppc4xx] Extend program_tlb() with virtual & physical addresses
61378
61379     Now program_tlb() allows to program a TLB (or multiple) with
61380     different virtual and physical addresses. With this change, now one
61381     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
61382     diabled and once with caches enabled.
61383
61384     Signed-off-by: Stefan Roese <sr@denx.de>
61385
61386 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
61387 Author: Detlev Zundel <dzu@denx.de>
61388 Date:   Wed May 23 19:02:41 2007 +0200
61389
61390     Change 'repeatable' attribute of some commands to sensible values.
61391
61392     Most prominently this changes 'erase' to be non-repeatable.
61393
61394     Signed-off-by: Detlev Zundel <dzu@denx.de>
61395
61396 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
61397 Author: Detlev Zundel <dzu@denx.de>
61398 Date:   Wed May 23 18:47:48 2007 +0200
61399
61400     Fix 'run' not to continue after interrupted command
61401
61402     Signed-off-by: Detlev Zundel <dzu@denx.de>
61403
61404 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
61405 Author: Jason Jin <Jason.jin@freescale.com>
61406 Date:   Mon Jun 11 15:14:24 2007 +0200
61407
61408     USB: This patch fix readl in ohci swap reg access.
61409
61410     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
61411
61412 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
61413 Author: Bartlomiej Sieka <tur@semihalf.com>
61414 Date:   Fri Jun 8 14:52:22 2007 +0200
61415
61416     TQM5200: Add Flat Device Tree support, update default env. accordingly.
61417
61418     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
61419     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61420
61421 commit 9045f33c023f698660a2e45d1b2194c0711abebc
61422 Author: Wolfgang Denk <wd@denx.de>
61423 Date:   Fri Jun 8 10:24:58 2007 +0200
61424
61425     Fix config problems on SC3 board; make ide_reset_timeout work.
61426
61427 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
61428 Author: Benoît Monin <bmonin@adeneo.eu>
61429 Date:   Fri Jun 8 09:55:24 2007 +0200
61430
61431     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
61432
61433     Set the correct value in GPIOx_TCR when configuring the gpio
61434     with CFG_440_GPIO_TABLE.
61435
61436     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
61437     Signed-off-by: Stefan Roese <sr@denx.de>
61438
61439 commit f539edc076cfe52bff919dd512ba8d7af0e22092
61440 Author: Vadim Bendebury <vbendeb@google.com>
61441 Date:   Thu May 24 15:52:25 2007 -0700
61442
61443     cosmetic changes to bcm570x driver
61444
61445     This is a cosmetic only changes submission.
61446     It affects files relevant to bcm570x driver.
61447     the commands used to generate this change was
61448
61449     cd drivers
61450     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
61451
61452     The BMW target (the only one using this chip so far) builds cleanly, the
61453     `before and after' generated object files for drivers/bcm570x.c and
61454     drivers/tigon3.o are identical as reported by objdump -d
61455
61456     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
61457     Signed-off-by: Ben Warren <bwarren@qstreams.com>
61458
61459 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
61460 Author: Wolfgang Denk <wd@denx.de>
61461 Date:   Wed Jun 6 16:26:56 2007 +0200
61462
61463     Coding Style cleanup; generate new CHANGELOG file.
61464
61465     Signed-off-by: Wolfgang Denk <wd@denx.de>
61466
61467 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
61468 Author: Markus Klotzbuecher <mk@denx.de>
61469 Date:   Wed Jun 6 11:49:44 2007 +0200
61470
61471     TRAB, USB: update trab board configuration for use of generic ohci driver
61472
61473 commit dace45acd1c1357daa9322099d07c9a9e08b0024
61474 Author: Markus Klotzbuecher <mk@denx.de>
61475 Date:   Wed Jun 6 11:49:43 2007 +0200
61476
61477     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
61478
61479 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
61480 Author: Markus Klotzbuecher <mk@denx.de>
61481 Date:   Wed Jun 6 11:49:43 2007 +0200
61482
61483     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
61484
61485 commit fc43be478f2aa37ce38acd85355038866e4162af
61486 Author: Markus Klotzbuecher <mk@denx.de>
61487 Date:   Wed Jun 6 11:49:35 2007 +0200
61488
61489     USB/OHCI: endianness cleanup in the generic ohci driver
61490
61491 commit c440bfe6d6d92d66478a7e84402b31f48413617b
61492 Author: Stefan Roese <sr@denx.de>
61493 Date:   Wed Jun 6 11:42:13 2007 +0200
61494
61495     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
61496
61497     This patch adds NAND booting support for the AMCC Acadia eval board.
61498
61499     Please make sure to configure jumper J7 to position 2-3 when booting
61500     from NOR, and to position 1-2 when booting for NAND.
61501
61502     I also added a board command to configure the I2C bootstrap EEPROM
61503     values. Right now only 267MHz is support for booting either via NOR
61504     or NAND FLASH. Here the usage:
61505
61506     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
61507     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
61508
61509     Signed-off-by: Stefan Roese <sr@denx.de>
61510
61511 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
61512 Author: Rodolfo Giometti <giometti@linux.it>
61513 Date:   Wed Jun 6 10:08:14 2007 +0200
61514
61515     Files include/linux/byteorder/{big,little}_endian.h define
61516     __BIG_ENDIAN and __LITTLE_ENDIAN.
61517
61518     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
61519
61520 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
61521 Author: Zhang Wei <wei.zhang@freescale.com>
61522 Date:   Wed Jun 6 10:08:14 2007 +0200
61523
61524     Add USB PCI-OHCI, USB keyboard and event poll support to the
61525     MPC8641HPCN board config file.
61526
61527     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
61528
61529 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
61530 Author: Zhang Wei <wei.zhang@freescale.com>
61531 Date:   Wed Jun 6 10:08:14 2007 +0200
61532
61533     USB PCI-OHCI, interrupt pipe and usb event poll support
61534
61535     This patch added USB PCI-OHCI chips support, interrupt pipe support
61536     and usb event poll support. For supporting the USB interrupt pipe, the
61537     globe urb_priv is moved to purb in ed struct. Now, we can process
61538     several urbs at one time. The interrupt pipe support codes are ported
61539     from Linux kernel 2.4.
61540
61541     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
61542
61543 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
61544 Author: Zhang Wei <wei.zhang@freescale.com>
61545 Date:   Wed Jun 6 10:08:13 2007 +0200
61546
61547     USB event poll support
61548
61549     This patch adds USB event poll support, which could be used in usbkbd
61550     and other usb devices driver when the asynchronous interrupt
61551     processing is supported.
61552
61553     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
61554
61555 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
61556 Author: Rodolfo Giometti <giometti@linux.it>
61557 Date:   Wed Jun 6 10:08:12 2007 +0200
61558
61559     ISP116x: delay for crappy USB keys
61560
61561     Using some (very) slow USB keys cause the USB host controller buffers
61562     are not ready to be read by the CPU so we need an extra delay before
61563     reading the USB storage data.
61564
61565     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
61566
61567 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
61568 Author: Markus Klotzbuecher <mk@denx.de>
61569 Date:   Wed Jun 6 10:08:12 2007 +0200
61570
61571     Change duplicate usb_cpu_init_fail to usb_board_init_fail
61572
61573     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
61574     this out.
61575
61576     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
61577
61578 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
61579 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
61580 Date:   Tue Jun 5 12:30:52 2007 -0500
61581
61582     mpc8641 image size cleanup
61583
61584     e600 does not have a bootpg restriction.
61585     Move the version string to beginning of image at fff00000.
61586     Resetvec.S is not needed.
61587     Update flash copy instructions.
61588     Add tftpflash env variable
61589
61590     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
61591     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61592
61593 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
61594 Author: Benoît Monin <bmonin@adeneo.eu>
61595 Date:   Mon Jun 4 08:36:05 2007 +0200
61596
61597     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
61598
61599     The attached patch is mainly cosmetic, allowing u-boot to
61600     display the correct bootstrap option letter according to the
61601     datasheets.
61602
61603     The original patch was extended with 405EZ support by Stefan
61604     Roese.
61605
61606     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
61607     Signed-off-by: Stefan Roese <sr@denx.de>
61608
61609 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
61610 Author: Nikita V. Youshchenko <yoush@debian.org>
61611 Date:   Wed May 23 12:45:19 2007 +0400
61612
61613     fix compilation problem for mpc8349itx CFG_RAMBOOT
61614
61615     Current include/configs/MPC8349ITX.h does contain some support for building
61616     image that will be started from memory (without putting in into flash).
61617     It could be triggered by building with TEXT_BASE set to a low value.
61618
61619     However, this support is incomplete: using of low TEXT_BASE causes
61620     defining configuration macros in inconsistent way, which later leads
61621     to compilation errors. In particular. flash support is being disabled,
61622     but then flash structures get referenced.
61623
61624     This patch fixes this, making it possible to build with low TEXT_BASE.
61625
61626     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
61627
61628     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61629
61630 commit 8a364f0970de49949d635e60accf463c6443ef8c
61631 Author: Nikita V. Youshchenko <yoush@debian.org>
61632 Date:   Wed May 23 12:45:25 2007 +0400
61633
61634     add missing 'console' var to default mpc8349itx config
61635
61636     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61637
61638 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
61639 Author: Stefan Roese <sr@denx.de>
61640 Date:   Fri Jun 1 16:18:17 2007 +0200
61641
61642     ppc4xx: Add missing file for Bamboo NAND booting support
61643
61644     Signed-off-by: Stefan Roese <sr@denx.de>
61645
61646 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
61647 Author: Stefan Roese <sr@denx.de>
61648 Date:   Fri Jun 1 15:58:19 2007 +0200
61649
61650     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
61651
61652     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
61653     suggested by AMCC it is not recommended to dynamically change the EBC
61654     speed after bootup. So we undo this change to be on the safe side.
61655
61656     Signed-off-by: Stefan Roese <sr@denx.de>
61657
61658 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
61659 Author: Stefan Roese <sr@denx.de>
61660 Date:   Fri Jun 1 15:29:04 2007 +0200
61661
61662     ppc4xx: Update Sequoia NAND booting support with ECC
61663
61664     Signed-off-by: Stefan Roese <sr@denx.de>
61665
61666 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
61667 Author: Stefan Roese <sr@denx.de>
61668 Date:   Fri Jun 1 15:27:11 2007 +0200
61669
61670     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
61671
61672     This patch adds NAND booting support for the AMCC Bamboo eval board.
61673     Since the NAND-SPL boot image is limited to 4kbytes, this version
61674     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
61675     supported, since the setup code for I2C DIMM autodetection and
61676     configuration is too big for this NAND bootloader.
61677
61678     Signed-off-by: Stefan Roese <sr@denx.de>
61679
61680 commit 42be56f53c8b107868e6125c8524ae84293e95a7
61681 Author: Stefan Roese <sr@denx.de>
61682 Date:   Fri Jun 1 15:23:04 2007 +0200
61683
61684     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
61685
61686     The U-Boot NAND booting support is now extended to support ECC
61687     upon loading of the NAND U-Boot image.
61688
61689     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
61690
61691     Signed-off-by: Stefan Roese <sr@denx.de>
61692
61693 commit a471db07fbb65a841ffc9f4f112562b945230f98
61694 Author: Stefan Roese <sr@denx.de>
61695 Date:   Fri Jun 1 15:19:29 2007 +0200
61696
61697     ppc4xx: Prepare Bamboo port for NAND booting support
61698
61699     This patch updates the "normal" Bamboo NOR booting port, so
61700     that it is compatible with the coming soon NAND booting
61701     Bamboo port.
61702
61703     It also enables the 2nd NAND flash on the Bamboo.
61704
61705     Signed-off-by: Stefan Roese <sr@denx.de>
61706
61707 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
61708 Author: Stefan Roese <sr@denx.de>
61709 Date:   Fri Jun 1 15:16:58 2007 +0200
61710
61711     ppc4xx: Update in_be32() functions and friends to latest Linux version
61712
61713     Signed-off-by: Stefan Roese <sr@denx.de>
61714
61715 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
61716 Author: Stefan Roese <sr@denx.de>
61717 Date:   Fri Jun 1 15:15:12 2007 +0200
61718
61719     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
61720
61721     This patch adds hardware ECC support to the NDFC driver. It also
61722     changes the register access from using the "simple" in32/out32
61723     functions to the in_be32/out_be32 functions, which make sure
61724     that the access is correctly synced. This is the only recommended
61725     access to SoC registers in the current Linux kernel.
61726
61727     Signed-off-by: Stefan Roese <sr@denx.de>
61728
61729 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
61730 Author: Stefan Roese <sr@denx.de>
61731 Date:   Fri Jun 1 15:12:15 2007 +0200
61732
61733     NAND: Update nand_ecc.c to latest Linux version
61734
61735     This patch updates the nand_ecc code to the latest Linux version.
61736     The main reason for this is the more compact code. This makes
61737     it possible to include the ECC code into the NAND bootloader
61738     image (NAND_SPL) for PPC4xx.
61739
61740     Signed-off-by: Stefan Roese <sr@denx.de>
61741
61742 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
61743 Author: Stefan Roese <sr@denx.de>
61744 Date:   Fri Jun 1 15:09:50 2007 +0200
61745
61746     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
61747
61748     Signed-off-by: Stefan Roese <sr@denx.de>
61749
61750 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
61751 Author: Stefan Roese <sr@denx.de>
61752 Date:   Fri Jun 1 13:45:24 2007 +0200
61753
61754     ppc4xx: Change Luan config file to support ECC
61755
61756     With the updated 44x DDR2 driver the Luan board now supports
61757     ECC generation and checking.
61758
61759     Signed-off-by: Stefan Roese <sr@denx.de>
61760
61761 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
61762 Author: Stefan Roese <sr@denx.de>
61763 Date:   Fri Jun 1 13:45:00 2007 +0200
61764
61765     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
61766
61767     Add config option for 180 degree advance clock control as needed
61768     for the AMCC Luan eval board.
61769
61770     Signed-off-by: Stefan Roese <sr@denx.de>
61771
61772 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
61773 Author: Wolfgang Denk <wd@denx.de>
61774 Date:   Thu May 31 17:20:09 2007 +0200
61775
61776     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
61777
61778     Signed-off-by: Wolfgang Denk <wd@denx.de>
61779
61780 commit 7049288fb1f16f1b317140226cdebd07bd416395
61781 Author: Bartlomiej Sieka <tur@semihalf.com>
61782 Date:   Sun May 27 17:26:46 2007 +0200
61783
61784     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
61785
61786     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61787
61788 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
61789 Author: Bartlomiej Sieka <tur@semihalf.com>
61790 Date:   Sun May 27 17:06:36 2007 +0200
61791
61792     Motion-PRO: Add support for redundant environment.
61793
61794     Enable redundant environment, add a MTD partition for it; also add env.
61795     variable command for passing MTD partitions to the kernel command line.
61796
61797     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61798     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61799
61800 commit a26eabeec31746f06d309103690892805696e344
61801 Author: Bartlomiej Sieka <tur@semihalf.com>
61802 Date:   Sun May 27 17:05:11 2007 +0200
61803
61804     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
61805
61806     Allow passing longer command line to the kernel - useful especially
61807     for passing MTD partition layout.
61808
61809     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61810     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61811
61812 commit 9160b96f71483a116de81c68985e8ee306d36764
61813 Author: Bartlomiej Sieka <tur@semihalf.com>
61814 Date:   Sun May 27 17:04:18 2007 +0200
61815
61816     Fix: Add missing NULL termination in strings expanded by macros parser.
61817
61818     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61819     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61820
61821 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
61822 Author: Bartlomiej Sieka <tur@semihalf.com>
61823 Date:   Sun May 27 17:03:37 2007 +0200
61824
61825     Motion-PRO: Update EEPROM's page write bits and write delay.
61826
61827     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
61828     have a page write capability of two bytes", and "This device offers fast (1ms)
61829     byte write". Add 3ms of extra delay.
61830
61831     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61832     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61833
61834 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
61835 Author: Bartlomiej Sieka <tur@semihalf.com>
61836 Date:   Sun May 27 16:58:45 2007 +0200
61837
61838     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
61839
61840     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
61841     networking does not function. This commit switches PHY to TX mode by clearing
61842     the FX_SEL bit of Mode Control Register. It also reverses commit
61843     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
61844
61845     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
61846     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61847
61848 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
61849 Author: Bartlomiej Sieka <tur@semihalf.com>
61850 Date:   Sun May 27 16:57:15 2007 +0200
61851
61852     Motion-PRO: Add support for the temperature sensor.
61853
61854     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
61855     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61856
61857 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
61858 Author: Bartlomiej Sieka <tur@semihalf.com>
61859 Date:   Sun May 27 16:55:23 2007 +0200
61860
61861     Motion-PRO: Add displaying of CPLD revision information during boot.
61862
61863     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
61864     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61865
61866 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
61867 Author: Bartlomiej Sieka <tur@semihalf.com>
61868 Date:   Sun May 27 16:53:43 2007 +0200
61869
61870     MPC5xxx: Change names of defines related to IPB and PCI clocks.
61871
61872     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
61873     them does not cause PCI or IPB clocks to run at the specified speed.
61874     Instead, they configure divisors used to calculate said clocks. This
61875     patch renames the defines according to their real function.
61876
61877     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
61878     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61879
61880 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
61881 Author: Bartlomiej Sieka <tur@semihalf.com>
61882 Date:   Sun May 27 16:51:48 2007 +0200
61883
61884     Motion-PRO: Add LED support.
61885
61886     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
61887     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61888     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
61889
61890 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
61891 Author: Ulf Samuelsson <ulf@atmel.com>
61892 Date:   Thu May 24 12:12:47 2007 +0200
61893
61894     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
61895
61896     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
61897     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61898     Signed-off-by: Stefan Roese <sr@denx.de>
61899
61900 commit d756894722c888d09a9fa1df8323753772d3dcce
61901 Author: Stefan Roese <sr@denx.de>
61902 Date:   Thu May 24 09:49:00 2007 +0200
61903
61904     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
61905
61906     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
61907     fixes a small bug in the 405EZ OCM initialization. Thanks for
61908     spotting.
61909
61910     Signed-off-by: Stefan Roese <sr@denx.de>
61911
61912 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
61913 Author: Stefan Roese <sr@denx.de>
61914 Date:   Thu May 24 08:22:09 2007 +0200
61915
61916     ppc4xx: Update AMCC Acadia support for board revision 1.1
61917
61918     This patch updates the Acadia (405EZ) support for the new 1.1 board
61919     revision. It also adds support for NAND FLASH via the 4xx NDFC.
61920
61921     Please note that the jumper J7 must be in position 2-3 for this
61922     NAND support. Position 1-2 is for NAND booting only. NAND booting
61923     support will follow later.
61924
61925     Signed-off-by: Stefan Roese <sr@denx.de>
61926
61927 commit 822d55365bb557e084d0e33625a6dedcc866110b
61928 Author: Jon Loeliger <jdl@freescale.com>
61929 Date:   Wed May 23 14:09:46 2007 -0500
61930
61931     Add LIST_86xx MAKEALL target for PowerPC builds.
61932
61933     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61934
61935 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
61936 Author: Stefan Roese <sr@denx.de>
61937 Date:   Tue May 22 12:48:09 2007 +0200
61938
61939     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
61940
61941     Signed-off-by: Stefan Roese <sr@denx.de>
61942
61943 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
61944 Author: Stefan Roese <sr@denx.de>
61945 Date:   Tue May 22 12:46:10 2007 +0200
61946
61947     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
61948
61949     This patch adds support for 405 PPC's to the 4xx NAND driver
61950     ndfc.c. This is in preparation for the new AMCC 405EZ.
61951
61952     Signed-off-by: Stefan Roese <sr@denx.de>
61953
61954 commit 10603d76767426be803dadd4fb688b97eb69481c
61955 Author: Stefan Roese <sr@denx.de>
61956 Date:   Mon May 21 07:41:22 2007 +0200
61957
61958     ppc4xx: Fix problem in 405EZ OCM initialization
61959
61960     As spotted by Bruce Adler this patch fixes an initialization problem
61961     for the 405EZ OCM.
61962
61963     Signed-off-by: Stefan Roese <sr@denx.de>
61964
61965 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
61966 Author: Peter Pearse <peter.pearse@arm.com>
61967 Date:   Fri May 18 16:47:03 2007 +0100
61968
61969     Reduce line lengths to 80 characters max.
61970
61971 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
61972 Author: Peter Pearse <peter.pearse@arm.com>
61973 Date:   Fri May 18 14:34:07 2007 +0100
61974
61975     Makefile permissions
61976
61977 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
61978 Author: Peter Pearse <peter.pearse@arm.com>
61979 Date:   Fri May 18 14:33:11 2007 +0100
61980
61981     Makefile permissions
61982
61983 commit 255a3577c848706441daee0174543efe205a77f8
61984 Author: Kim Phillips <kim.phillips@freescale.com>
61985 Date:   Wed May 16 16:52:19 2007 -0500
61986
61987     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
61988
61989     For all practical u-boot purposes, TSECs don't differ throughout the
61990     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
61991
61992     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
61993
61994 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
61995 Author: Stefano Babic <sbabic@denx.de>
61996 Date:   Wed May 16 14:49:12 2007 +0200
61997
61998     Fix compile problem cause my Microblaze merge
61999
62000     Signed-off-by: Stefano Babic <sbabic@denx.de>
62001
62002 commit ada4697d0230d6da552867777f98a67ec3ba2579
62003 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62004 Date:   Wed May 16 13:23:10 2007 +0200
62005
62006     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
62007
62008     Because the Sequoia board does not boot with an EBC faster than 66MHz,
62009     the clock divider are changed after the initial boot process.
62010
62011     This allows for maximum clocking speeds  to be achieved on newer boards.
62012     Sequoia boards with 666.66 MHz processors require that the EBC divider
62013     be set to 3 in order to start the initial boot process at a slower EBC
62014     speed. After the initial boot process, the divider can be set back to 2,
62015     which will cause the boards to run at 83.333MHz. This is backward
62016     compatible with boards with 533.33 MHz processors, as these boards will
62017     already be set with an EBC divider of 2.
62018
62019     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62020
62021 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
62022 Author: Wolfgang Denk <wd@denx.de>
62023 Date:   Wed May 16 01:16:53 2007 +0200
62024
62025     Minor Coding Style cleanup, update CHANGELOG.
62026
62027     Signed-off-by: Wolfgang Denk <wd@denx.de>
62028
62029 commit d62f64cc23a940eafe712c776b3249e4160753d1
62030 Author: Wolfgang Denk <wd@denx.de>
62031 Date:   Wed May 16 00:13:33 2007 +0200
62032
62033     Coding Style Cleanup, new CHANGELOG
62034
62035 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
62036 Author: Wolfgang Denk <wd@denx.de>
62037 Date:   Tue May 15 23:38:05 2007 +0200
62038
62039     Minor coding style cleanup.
62040
62041 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
62042 Author: mushtaq khan <mushtaq_k@procsys.com>
62043 Date:   Fri Apr 20 14:23:02 2007 +0530
62044
62045     Add driver for S-ATA-controller on Intel processors with South
62046     Bridge, ICH-5, ICH-6 and ICH-7.
62047
62048     Implementation:
62049
62050     1. Code is divided in to two files. All functions, which are
62051        controller specific are kept in "drivers/ata_piix.c" file and
62052        functions, which are not controller specific, are kept in
62053        "common/cmd_sata.c" file.
62054
62055     2. Reading and Writing from the S-ATA drive is done using PIO method.
62056
62057     3. Driver can be configured for 48-bit addressing by defining macro
62058        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
62059        addressing.
62060
62061     4. S-ATA read function is hooked to the File system, commands like
62062        ext2ls and ext2load file can be used. This has been tested.
62063
62064     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
62065        controller and identifies the S-ATA drives connected to it.
62066
62067     6. U-Boot command "sata" is added, which is used to read/write, print
62068        partition table and get info about the drives present. This I have
62069        implemented in same way as "ide" command is implemented in U-Boot.
62070
62071     7. This driver is for S-ATA in native mode.
62072
62073     8. This driver does not support the Native command queuing and
62074        Hot-plugging.
62075
62076     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
62077
62078 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
62079 Author: mushtaq khan <mushtaq_k@procsys.com>
62080 Date:   Mon Apr 30 15:57:22 2007 +0530
62081
62082     Fixes bug clearing the bss section for i386
62083
62084     Hi,
62085     There is a bug in the code of clearing the bss section for processor
62086     i386.(File: cpu/i386/start.S)
62087     In the code, bss_start addr (starting addr of bss section) is put into
62088     the register %eax, but the code which clears the bss section refers to
62089     the addr pointed by %edi.
62090
62091     This patch fixes this bug by putting bss_start into %edi register.
62092
62093     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
62094
62095 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
62096 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
62097 Date:   Mon Apr 30 16:47:28 2007 -0500
62098
62099     Add support for BCM5464 Quad Phy
62100
62101     Added support for Broadcom's BCM5464 Quad Phy
62102
62103     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
62104
62105 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
62106 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62107 Date:   Wed May 9 08:10:57 2007 +0800
62108
62109     Search the exception table with linear algorithm
62110
62111     Search the exception table with linear algorithm instead of
62112     bisecting algorithm.
62113     Because the exception table might be unsorted.
62114
62115     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62116
62117 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
62118 Author: Aubrey.Li <aubrey.adi@gmail.com>
62119 Date:   Mon May 14 11:47:35 2007 +0800
62120
62121     Fix compilation issues on MACOSX
62122
62123     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
62124     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
62125
62126 commit 56fd7162985c412317bbf763a225fba23c64fd31
62127 Author: Stephen Williams <steve@icarus.com>
62128 Date:   Tue May 15 07:55:42 2007 -0700
62129
62130     Fix for compile of JSE target
62131
62132     The attached patch fixes the compile of the JSE board in the
62133     denx git as of 14 may 2007. It is an extremely simple patch,
62134     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
62135
62136      Fix to compile JSE against 20070514 git of u-boot
62137
62138 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
62139 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
62140 Date:   Sun May 13 21:01:03 2007 +0900
62141
62142     sh: MS7750SE support.
62143
62144     This adds support for the Hitachi MS7750SE.
62145
62146     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62147
62148 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
62149 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
62150 Date:   Sun May 13 20:58:00 2007 +0900
62151
62152     sh: First support code of SuperH.
62153
62154     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62155
62156 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
62157 Author: Stefan Roese <sr@denx.de>
62158 Date:   Fri May 11 12:01:49 2007 +0200
62159
62160     ppc4xx: Add mtcpr/mfcpr access macros
62161
62162     Signed-off-by: Stefan Roese <sr@denx.de>
62163
62164 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
62165 Author: Stefan Roese <sr@denx.de>
62166 Date:   Fri May 11 12:01:06 2007 +0200
62167
62168     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
62169
62170     Signed-off-by: Stefan Roese <sr@denx.de>
62171
62172 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
62173 Author: Piotr Kruszynski <ppk@semihalf.com>
62174 Date:   Thu May 10 16:55:52 2007 +0200
62175
62176     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
62177     definition.
62178
62179 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
62180 Author: Peter Pearse <peter.pearse@arm.com>
62181 Date:   Wed May 9 11:42:44 2007 +0100
62182
62183     Add the board directory for SMN42
62184
62185 commit 160131bf965785419626df6c388729fe0b597992
62186 Author: Peter Pearse <peter.pearse@arm.com>
62187 Date:   Wed May 9 11:41:58 2007 +0100
62188
62189     Add the files for the SMN42 board
62190
62191 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
62192 Author: Peter Pearse <peter.pearse@arm.com>
62193 Date:   Wed May 9 11:40:34 2007 +0100
62194
62195     Remove the deleted files for the SMN42 patch
62196
62197 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
62198 Author: Peter Pearse <peter.pearse@arm.com>
62199 Date:   Wed May 9 11:37:56 2007 +0100
62200
62201     New board SMN42 branch
62202
62203 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
62204 Author: Peter Pearse <peter.pearse@arm.com>
62205 Date:   Wed May 9 10:24:38 2007 +0100
62206
62207     Makefile permissions
62208
62209 commit b84289b595731e8851df46e893845cc1322c9b9b
62210 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
62211 Date:   Tue May 8 14:17:07 2007 -0500
62212
62213     8641hpcn: Fix Makefile after moving pixis to board/freescale.
62214
62215     The OBJTREE != SRCTREE build scenario was broken.
62216     This fixes it.
62217
62218     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62219     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62220
62221 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
62222 Author: Michal Simek <monstr@monstr.eu>
62223 Date:   Tue May 8 15:57:43 2007 +0200
62224
62225     add: reading special purpose registers
62226
62227 commit 1a50f164beb065f360fbddb76029607d6b099698
62228 Author: Michal Simek <monstr@monstr.eu>
62229 Date:   Tue May 8 14:52:52 2007 +0200
62230
62231     add: Microblaze V5 exception handling
62232
62233 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
62234 Author: Michal Simek <monstr@monstr.eu>
62235 Date:   Tue May 8 14:39:11 2007 +0200
62236
62237     add: FSL control read and write
62238
62239 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
62240 Author: Piotr Kruszynski <ppk@semihalf.com>
62241 Date:   Tue May 8 13:05:44 2007 +0200
62242
62243     [Motion-PRO] Add support for I2C, EEPROM and RTC.
62244
62245 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
62246 Author: Bartlomiej Sieka <tur@semihalf.com>
62247 Date:   Tue May 8 10:23:56 2007 +0200
62248
62249     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
62250     environment.
62251
62252 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
62253 Author: Bartlomiej Sieka <tur@semihalf.com>
62254 Date:   Tue May 8 09:39:12 2007 +0200
62255
62256     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
62257     eliminates networking problems in Linux (timeouts).
62258
62259 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
62260 Author: Bartlomiej Sieka <tur@semihalf.com>
62261 Date:   Tue May 8 09:21:57 2007 +0200
62262
62263     [Motion-PRO] Enable Flat Device Tree support and modify default environment
62264     to allow booting of FDT-expecting kernels.
62265
62266 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
62267 Author: Michal Simek <monstr@monstr.eu>
62268 Date:   Mon May 7 23:58:31 2007 +0200
62269
62270     new: USE_MSR_INTR support
62271
62272 commit 008861a2f3ef2c062744d733787c7e530a1b8761
62273 Author: Bartlomiej Sieka <tur@semihalf.com>
62274 Date:   Mon May 7 22:36:15 2007 +0200
62275
62276     [MPC5xxx] There are networking problems on the Motion-PRO board with
62277     current PHY initalization code (tftp timeouts all the time). This commit
62278     temporarily disables PHY initalization sequence to make the networking
62279     operational, until a fix is found.
62280
62281 commit abca901869c3760b6c5fecb825db6c1d91a78a93
62282 Author: Wolfgang Denk <wd@denx.de>
62283 Date:   Mon May 7 22:10:36 2007 +0200
62284
62285     Get rid of duplicated file (see include/configs/sbc8560.h instead)
62286
62287     Signed-off-by: Wolfgang Denk <wd@denx.de>
62288
62289 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
62290 Author: Wolfgang Denk <wd@denx.de>
62291 Date:   Mon May 7 22:07:08 2007 +0200
62292
62293     Get rid of duplicated file (see doc/README.SBC8560 instead)
62294
62295     Signed-off-by: Wolfgang Denk <wd@denx.de>
62296
62297 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
62298 Author: Michal Simek <monstr@monstr.eu>
62299 Date:   Mon May 7 19:43:10 2007 +0200
62300
62301     fix: read and write MSR - repair number of parameters
62302
62303 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
62304 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62305 Date:   Mon May 7 19:42:49 2007 +0200
62306
62307     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
62308
62309     A '3' got cut off in the formatting of the last patch to automatically
62310     change the clock speed of the system clock on sequoia board.
62311
62312     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62313     Signed-off-by: Stefan Roese <sr@denx.de>
62314
62315 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
62316 Author: Michal Simek <monstr@monstr.eu>
62317 Date:   Mon May 7 19:33:51 2007 +0200
62318
62319     new: fsl interrupt support
62320     FSL_Has_data is connected to INTC.
62321
62322 commit 792032baa7d625e34c981ab6df521911bd8dc861
62323 Author: Michal Simek <monstr@monstr.eu>
62324 Date:   Mon May 7 19:30:12 2007 +0200
62325
62326     fix: interrupt handler
62327     remove asm code
62328
62329 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
62330 Author: Michal Simek <monstr@monstr.eu>
62331 Date:   Mon May 7 19:25:08 2007 +0200
62332
62333     fix: remove asm code
62334
62335 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
62336 Author: Michal Simek <monstr@monstr.eu>
62337 Date:   Mon May 7 19:12:43 2007 +0200
62338
62339     fix: clean interrupt
62340
62341 commit 42efed6130c8fcf7da881385b5427065d2801757
62342 Author: Michal Simek <monstr@monstr.eu>
62343 Date:   Mon May 7 17:22:25 2007 +0200
62344
62345     fix: interrupt handler for multiple sources
62346
62347 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
62348 Author: Michal Simek <monstr@monstr.eu>
62349 Date:   Mon May 7 17:11:09 2007 +0200
62350
62351     new: add writing to msr register
62352
62353 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
62354 Author: Markus Klotzbuecher <mk@denx.de>
62355 Date:   Mon May 7 16:43:56 2007 +0200
62356
62357     Fix an ancient CHANGELOG conflict
62358
62359 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
62360 Author: Timur Tabi <timur@freescale.com>
62361 Date:   Sat May 5 08:12:30 2007 +0200
62362
62363     5xxx: write MAC address to mac-address and local-mac-address
62364
62365     Some device trees have a mac-address property, some have local-mac-address,
62366     and some have both.  To support all of these device trees, ftp_cpu_setup()
62367     should write the MAC address to mac-address and local-mac-address, if they
62368     exist.
62369
62370     Signed-off-by: Timur Tabi <timur@freescale.com>
62371     Acked-by: Grant Likely <grant.likely@secretlab.ca>
62372
62373 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
62374 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
62375 Date:   Sun Apr 29 14:01:54 2007 +0200
62376
62377     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
62378
62379     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
62380     message. Use PVR to distinguish between the two variants, and print proper CPU
62381     information.
62382
62383     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
62384     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
62385     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62386
62387 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
62388 Author: Ladislav Michl <ladis@linux-mips.org>
62389 Date:   Wed Apr 25 16:01:26 2007 +0200
62390
62391     [PATCH] simplify silent console
62392
62393     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62394     Acked-by: Stefan Roese <sr@denx.de>
62395
62396 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
62397 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62398 Date:   Mon Apr 23 15:30:39 2007 +0200
62399
62400     [PATCH] Avoid assigning PCI resources from zero address
62401
62402     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
62403     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
62404     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
62405     sentence about "0" being considered an invalid address) -- so, use a reasonable
62406     starting value of 0x1000 (that's what the most Linux archs are using).
62407
62408     Alternatively, one might have fixed the calls to pci_set_region() individually
62409     (some code even seems to have taken care of this issue) but that would have
62410     been a lot more work. :-)
62411
62412     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62413     Acked-by: Stefan Roese <sr@denx.de>
62414
62415 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
62416 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62417 Date:   Mon Apr 23 14:00:11 2007 +0200
62418
62419     [patch] setenv(...) can delete environmentalvariables
62420
62421     update setenv() function so that entering a NULL value for the
62422     variable's value will delete the environmental variable
62423
62424     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62425     Acked-by: Stefan Roese <sr@denx.de>
62426
62427 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
62428 Author: Mike Frysinger <vapier@gentoo.org>
62429 Date:   Mon Apr 23 13:54:24 2007 +0200
62430
62431     [patch] use unsigned char in smc91111 driver for mac
62432
62433     the v_mac variable in the smc91111 driver is declared as a signed char ...
62434     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
62435     because when it gets printed out, you get a display like:
62436     0xFFFFFFE0 and that's no good
62437
62438     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62439
62440 commit ffc50f9bb194343c6303517a517708457a5eb6b8
62441 Author: Michal Simek <monstr@monstr.eu>
62442 Date:   Sat May 5 18:54:42 2007 +0200
62443
62444     new: FSL and MSR support #2
62445
62446 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
62447 Author: Michal Simek <monstr@monstr.eu>
62448 Date:   Sat May 5 18:27:16 2007 +0200
62449
62450     new: FSL and MSR support
62451
62452 commit 2f15278c2eb911c668b4fe562130b78cf554d139
62453 Author: Wolfgang Denk <wd@denx.de>
62454 Date:   Sat May 5 18:23:11 2007 +0200
62455
62456     Coding stylke cleanup; update CHANGELOG.
62457
62458     Signed-off-by: Wolfgang Denk <wd@denx.de>
62459
62460 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
62461 Author: Wolfgang Denk <wd@denx.de>
62462 Date:   Sat May 5 18:05:02 2007 +0200
62463
62464     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
62465
62466     Signed-off-by: Wolfgang Denk <wd@denx.de>
62467
62468 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
62469 Author: Wolfgang Denk <wd@denx.de>
62470 Date:   Sat May 5 17:15:50 2007 +0200
62471
62472     Make "file" command happy with some config.mk files; update CHANGELOG
62473
62474 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
62475 Author: Jeffrey Mann <mannj@embeddedplanet.com>
62476 Date:   Sat May 5 08:32:14 2007 +0200
62477
62478     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
62479
62480     The AMCC Secquoia board has been changed in a new revision from using a
62481     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
62482     indicates the difference. This patch reads that bit and uses the correct
62483     clock speed for the board. This code is backward compatable will all
62484     prior boards. All prior boards will be read as 33.000.
62485
62486     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
62487     Signed-off-by: Stefan Roese <sr@denx.de>
62488
62489 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
62490 Author: Stefan Roese <sr@denx.de>
62491 Date:   Sat May 5 08:29:01 2007 +0200
62492
62493     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
62494
62495     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
62496     for the 4k NAND boot image so define bus_frequency to 133MHz here
62497     which is save for the refresh counter setup.
62498
62499     Signed-off-by: Stefan Roese <sr@denx.de>
62500
62501 commit 2f550ab976405300f5b07bf2890800840d0aa05f
62502 Author: Timur Tabi <timur@freescale.com>
62503 Date:   Sat May 5 08:12:30 2007 +0200
62504
62505     5xxx: write MAC address to mac-address and local-mac-address
62506
62507     Some device trees have a mac-address property, some have local-mac-address,
62508     and some have both.  To support all of these device trees, ftp_cpu_setup()
62509     should write the MAC address to mac-address and local-mac-address, if they
62510     exist.
62511
62512     Signed-off-by: Timur Tabi <timur@freescale.com>
62513     Acked-by: Grant Likely <grant.likely@secretlab.ca>
62514
62515 commit a79886590593ba1d667c840caa4940c61639f18f
62516 Author: Thomas Knobloch <knobloch@siemens.com>
62517 Date:   Sat May 5 07:04:42 2007 +0200
62518
62519     NAND: Wrong calculation of page number in nand_block_bad()
62520
62521     In case that there is no memory based bad block table available the
62522     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
62523     nand_block_bad() directly. When parameter 'getchip' is set to zero,
62524     nand_block_bad() will not right shift the offset to calculate the
62525     correct page number.
62526
62527     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
62528     Signed-off-by: Stefan Roese <sr@denx.de>
62529
62530 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
62531 Author: Wolfgang Denk <wd@denx.de>
62532 Date:   Fri May 4 10:02:33 2007 +0200
62533
62534     Fix initrd length corruption in bootm command.
62535
62536     When using FDT Images, the length of an inital ramdisk was
62537     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
62538
62539     Patches by Timur Tabi & Johns Daniel.
62540
62541     Signed-off-by: Wolfgang Denk <wd@denx.de>
62542
62543 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
62544 Author: Kim Phillips <kim.phillips@freescale.com>
62545 Date:   Thu May 3 19:43:52 2007 -0500
62546
62547     mpc83xx: fix trivial error in MAKEALL
62548
62549     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62550
62551 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
62552 Author: Wolfgang Denk <wd@denx.de>
62553 Date:   Thu May 3 16:34:41 2007 +0200
62554
62555     Update board configuration for STX GP3SSA board:
62556
62557     Enable hush shell, environment in flash rather in EEPROM,
62558     more user-friendly default environment, etc.
62559     The simple EEPROM environment can be selected easily in the board
62560     config file.
62561
62562     Signed-off-by: Wolfgang Denk <wd@denx.de>
62563
62564 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
62565 Author: Wolfgang Denk <wd@denx.de>
62566 Date:   Tue Apr 24 14:37:49 2007 +0200
62567
62568     Cleanup STX GP3SSA code; fix build and compile problems.
62569
62570 commit 35171dc04e028ecacc23ad916a66295472555dbf
62571 Author: Dan Malek <dan@embeddedalley.com>
62572 Date:   Fri Jan 5 09:15:34 2007 +0100
62573
62574     Add support for STX GP3SSA (stxssa) Board
62575
62576     Signed-off-by Dan Malek, <dan@embeddedalley.com>
62577
62578 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
62579 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62580 Date:   Wed May 2 13:31:53 2007 +0200
62581
62582     macb: Don't restart autonegotiation if we already have link
62583
62584     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
62585     link is already up.
62586
62587     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62588
62589 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
62590 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62591 Date:   Wed May 2 13:22:38 2007 +0200
62592
62593     macb: Introduce a few barriers when dealing with DMA descriptors
62594
62595     There were a few theoretical possibilities that the compiler might
62596     optimize away DMA descriptor reads and/or writes and thus cause
62597     synchronization problems with the hardware. Insert barriers where
62598     we depend on reads/writes actually hitting memory.
62599
62600     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62601
62602 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
62603 Author: Andy Fleming <afleming@freescale.com>
62604 Date:   Sat Feb 24 01:08:13 2007 -0600
62605
62606     Cleaned up some 85xx PCI bugs
62607
62608     * Cleaned up the CDS PCI Config Tables and added NULL entries to
62609       the end
62610     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
62611     * Fixed 85xx PCI code to assign powar region sizes based on the
62612       config values (rather than hard-coding them)
62613     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
62614
62615     Signed-off-by: Andy Fleming <afleming@freescale.com>
62616
62617 commit 6743105988fc44d5b0d30388c790607835aae7a6
62618 Author: Andy Fleming <afleming@freescale.com>
62619 Date:   Mon Apr 23 02:54:25 2007 -0500
62620
62621     Add support for the 8568 MDS board
62622
62623     This included some changes to common files:
62624     * Add 8568 processor SVR to various places
62625     * Add support for setting the qe bus-frequency value in the dts
62626     * Add the 8568MDS target to the Makefile
62627
62628     Signed-off-by: Andy Fleming <afleming@freescale.com>
62629
62630 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
62631 Author: David Updegraff <dave@cray.com>
62632 Date:   Fri Apr 20 14:34:48 2007 -0500
62633
62634     Add support for treating unknown PHYs as generic PHYs.
62635
62636     When bringing up u-boot on new boards, PHY support sometimes gets
62637     neglected.  Most PHYs don't really need any special support,
62638     though.  By adding a generic entry that always matches if nothing
62639     else does, we can provide support for "unsupported" PHYs for the
62640     tsec.
62641
62642     The generic PHY driver supports most PHYs, including gigabit.
62643
62644     Signed-off-by: David Updegraff <dave@cray.com>
62645     Signed-off-by: Andy Fleming <afleming@freescale.com>
62646
62647 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
62648 Author: James Yang <James.Yang@freescale.com>
62649 Date:   Wed Feb 7 15:28:04 2007 -0600
62650
62651     Conditionalize 8641 Rev1.0 MCM workarounds
62652
62653     Signed-off-by: James Yang <James.Yang@freescale.com>
62654     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62655
62656 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
62657 Author: Timur Tabi <timur@freescale.com>
62658 Date:   Mon Apr 30 13:59:50 2007 -0500
62659
62660     Fix memory initialization on MPC8349E-mITX
62661
62662     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
62663     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
62664     on some ITX boards, notably those with a revision 3.1 CPU.
62665
62666     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
62667     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
62668
62669     Signed-off-by: Timur Tabi <timur@freescale.com>
62670     Acked-by: Michael Benedict <MBenedict@twacs.com>
62671     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62672
62673 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
62674 Author: Kim Phillips <kim.phillips@freescale.com>
62675 Date:   Mon Apr 30 15:26:21 2007 -0500
62676
62677     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
62678
62679     and fix CPU: to align with Board: display text.
62680
62681     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62682
62683 commit c1ab82669d9525998c34e802a12cad662723f22a
62684 Author: James Yang <James.Yang@freescale.com>
62685 Date:   Fri Mar 16 13:02:53 2007 -0500
62686
62687     Rewrote picos_to_clk() to avoid rounding errors.
62688     Clarified that conversion is to DRAM clocks rather than platform clocks.
62689     Made function static to spd_sdram.c.
62690
62691     Signed-off-by: James Yang <James.Yang@freescale.com>
62692     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62693
62694 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
62695 Author: Stefan Roese <sr@denx.de>
62696 Date:   Sun Apr 29 14:13:01 2007 +0200
62697
62698     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
62699
62700     Signed-off-by: Stefan Roese <sr@denx.de>
62701
62702 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
62703 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
62704 Date:   Sun Apr 29 14:01:54 2007 +0200
62705
62706     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
62707
62708     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
62709     message. Use PVR to distinguish between the two variants, and print proper CPU
62710     information.
62711
62712     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
62713     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
62714     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62715
62716 commit 5c5d3242935cf3543af01142627494434834cf98
62717 Author: Kim Phillips <kim.phillips@freescale.com>
62718 Date:   Wed Apr 25 12:34:38 2007 -0500
62719
62720     mpc83xx: minor fixups for 8313rdb introduction
62721
62722 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
62723 Author: Ladislav Michl <ladis@linux-mips.org>
62724 Date:   Wed Apr 25 16:01:26 2007 +0200
62725
62726     [PATCH] simplify silent console
62727
62728     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62729     Acked-by: Stefan Roese <sr@denx.de>
62730
62731 commit 144876a380f5756f57412caf74c1d6dc201dd796
62732 Author: Michal Simek <monstr@monstr.eu>
62733 Date:   Tue Apr 24 23:01:02 2007 +0200
62734
62735     [PATCH] MTD partition support, JFFS2 support
62736
62737 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
62738 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62739 Date:   Tue Apr 24 14:03:45 2007 +0200
62740
62741     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
62742
62743     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62744
62745 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
62746 Author: Andy Fleming <afleming@freescale.com>
62747 Date:   Mon Apr 23 02:37:47 2007 -0500
62748
62749     Reworked 85xx speed detection code
62750
62751     Changed the code to read the registers and calculate the clock
62752     rates, rather than using a "switch" statement.
62753
62754     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
62755
62756     Signed-off-by: Andy Fleming <afleming@freescale.com>
62757
62758 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
62759 Author: Andy Fleming <afleming@freescale.com>
62760 Date:   Mon Apr 23 02:24:28 2007 -0500
62761
62762     Enable 8544 support
62763
62764     * Add support to the Makefile
62765     * Add 8544 configuration support to the tsec driver
62766     * Add 8544 SVR numbers to processor.h
62767
62768     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62769     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62770
62771 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
62772 Author: Andy Fleming <afleming@freescale.com>
62773 Date:   Fri Feb 23 17:12:25 2007 -0600
62774
62775     Support 1G size on 8548
62776
62777     e500v2 and newer cores support 1G page sizes.
62778
62779     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62780     Signed-off-by: Andy Fleming <afleming@freescale.com>
62781
62782 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
62783 Author: Andy Fleming <afleming@freescale.com>
62784 Date:   Fri Feb 23 17:11:16 2007 -0600
62785
62786     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
62787
62788     The other pagesz constants use one letter to specify order of
62789     magnitude.  Also change the one reference to it in mpc8548cds/init.S
62790
62791     Signed-off-by: Andy Fleming <afleming@freescale.com>
62792
62793 commit 1f9a318cea14272edd10d63739e2d326c90f430e
62794 Author: Andy Fleming <afleming@freescale.com>
62795 Date:   Fri Feb 23 16:28:46 2007 -0600
62796
62797     Only set ddrioovcr for 8548 rev1.
62798
62799     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62800     Signed-off-by: Andy Fleming <afleming@freescale.com>
62801
62802 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
62803 Author: Andy Fleming <afleming@freescale.com>
62804 Date:   Sat Feb 24 01:16:45 2007 -0600
62805
62806     Tweak DDR ECC error counter
62807
62808     Enable single-bit error counter when memory was cleared by ddr controller.
62809
62810     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62811     Signed-off-by: Andy Fleming <afleming@freescale.com>
62812
62813 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
62814 Author: Timur Tabi <timur@freescale.com>
62815 Date:   Mon Feb 12 13:34:55 2007 -0600
62816
62817     85xx: write MAC address to mac-address and local-mac-address
62818
62819     Some device trees have a mac-address property, some have local-mac-address,
62820     and some have both.  To support all of these device trees, ftp_cpu_setup()
62821     should write the MAC address to mac-address and local-mac-address, if they
62822     exist.
62823
62824     Signed-off-by: Timur Tabi <timur@freescale.com>
62825
62826 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
62827 Author: Andy Fleming <afleming@freescale.com>
62828 Date:   Mon Apr 23 01:44:44 2007 -0500
62829
62830     Some 85xx cpu cleanups
62831
62832     * Cleaned up the TSR[WIS] clearing
62833     * Cleaned up DMA initialization
62834
62835     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62836     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62837     Acked-by: Andy Fleming <afleming@freescale.com>
62838
62839 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
62840 Author: Andy Fleming <afleming@freescale.com>
62841 Date:   Mon Apr 23 01:32:22 2007 -0500
62842
62843     Add cpu support for the 8544
62844
62845     Recognize new SVR values, and add a few register definitions
62846
62847     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62848     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62849     Acked-by: Andy Fleming <afleming@freescale.com>
62850
62851 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
62852 Author: Jon Loeliger <jdl@freescale.com>
62853 Date:   Wed Apr 11 16:51:02 2007 -0500
62854
62855     Add MPC8544DS basic port board files.
62856
62857     Add board port under new board/freescale directory
62858     structure and reuse existing PIXIS FPGA support there.
62859
62860     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62861     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62862
62863 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
62864 Author: Jon Loeliger <jdl@freescale.com>
62865 Date:   Wed Apr 11 16:50:57 2007 -0500
62866
62867     Add MPC8544DS main configuration file.
62868
62869     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
62870     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62871
62872 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
62873 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62874 Date:   Wed Dec 27 22:07:15 2006 +0300
62875
62876     Fix PCI I/O space mapping on Freescale MPC85x0ADS
62877
62878     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
62879     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
62880     describing the local address window used for the PCI I/O space accesses -- fix
62881     this and carry over the necessary changes into the MPC8560ADS code since the
62882     PCI I/O space mapping was also broken for this board (by the earlier commit
62883     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
62884     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
62885
62886     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
62887
62888      board/mpc8540ads/init.S      |    4 ++--
62889      board/mpc8560ads/init.S      |    4 ++--
62890      include/configs/MPC8540ADS.h |    5 ++---
62891      include/configs/MPC8541CDS.h |    2 +-
62892      include/configs/MPC8548CDS.h |    2 +-
62893      include/configs/MPC8560ADS.h |    8 ++++----
62894      6 files changed, 12 insertions(+), 13 deletions(-)
62895
62896 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
62897 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62898 Date:   Tue Dec 5 16:42:30 2006 +0800
62899
62900     u-boot: Fix e500 v2 core reset bug
62901
62902     The following patch fixes the e500 v2 core reset bug.
62903     For e500 v2 core, a new reset control register is added to reset the
62904     processor.
62905
62906     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62907
62908 commit 63247a5acd58032e6cf33f525bc3923b467bac88
62909 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62910 Date:   Wed Dec 20 11:01:00 2006 +0800
62911
62912     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
62913
62914     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
62915     entry number to control the loop.  This can reduce the potential risk
62916     for the 85xx processor increasing its TLB adn LAW entry number.
62917
62918     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
62919     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62920
62921 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
62922 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62923 Date:   Mon Dec 18 17:01:04 2006 +0800
62924
62925     u-boot: Fix the 85xxcds tsec bug
62926
62927     Fix the 85xxcds tsec bug.
62928     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
62929
62930     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62931
62932 commit 7337b237ffc4aaf1b9467024fe472a880d852598
62933 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62934 Date:   Fri Dec 15 14:43:31 2006 +0800
62935
62936     u-boot: Fix CPU2 errata on MPC8548CDS board
62937
62938     This patch apply workaround of CPU2 errata on MPC8548CDS board.
62939
62940     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
62941
62942 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
62943 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
62944 Date:   Mon Dec 18 16:25:15 2006 +0800
62945
62946     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
62947
62948     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
62949
62950     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
62951
62952 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
62953 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
62954 Date:   Thu Dec 14 14:14:55 2006 +0800
62955
62956     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
62957
62958     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
62959     board.
62960     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62961
62962 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
62963 Author: Scott Wood <scottwood@freescale.com>
62964 Date:   Mon Apr 16 14:54:15 2007 -0500
62965
62966     mpc83xx: Add MPC8313ERDB support.
62967
62968     Signed-off-by: Scott Wood <scottwood@freescale.com>
62969
62970 commit 49ea3b6eafe606285ae4d5c378026153dde53200
62971 Author: Scott Wood <scottwood@freescale.com>
62972 Date:   Mon Apr 16 14:34:21 2007 -0500
62973
62974     mpc83xx: Add generic PCI setup code.
62975
62976     Board code can now request the generic setup code rather than having to
62977     copy-and-paste it for themselves.  Boards should be converted to use this
62978     once they're tested with it.
62979
62980     Signed-off-by: Scott Wood <scottwood@freescale.com>
62981
62982 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
62983 Author: Scott Wood <scottwood@freescale.com>
62984 Date:   Mon Apr 16 14:34:19 2007 -0500
62985
62986     mpc83xx: Add 831x support to speed.c.
62987
62988     Signed-off-by: Scott Wood <scottwood@freescale.com>
62989
62990 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
62991 Author: Scott Wood <scottwood@freescale.com>
62992 Date:   Mon Apr 16 14:34:18 2007 -0500
62993
62994     mpc83xx: Add 831x support to global_data.h
62995
62996     Signed-off-by: Scott Wood <scottwood@freescale.com>
62997
62998 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
62999 Author: Scott Wood <scottwood@freescale.com>
63000 Date:   Mon Apr 16 14:34:16 2007 -0500
63001
63002     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
63003
63004     Rather than misleadingly define PVR_83xx as the specific type of 83xx
63005     being built for, the PVR of each core revision is defined. checkcpu() now
63006     prints the core that it detects, rather than aborting if it doesn't find
63007     what it thinks it wants.
63008
63009     Signed-off-by: Scott Wood <scottwood@freescale.com>
63010
63011 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
63012 Author: Scott Wood <scottwood@freescale.com>
63013 Date:   Mon Apr 16 14:34:15 2007 -0500
63014
63015     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
63016
63017     Signed-off-by: Scott Wood <scottwood@freescale.com>
63018
63019 commit d87c57b201b4572d16f1b642998faa00c9912b16
63020 Author: Scott Wood <scottwood@freescale.com>
63021 Date:   Mon Apr 16 14:31:55 2007 -0500
63022
63023     mpc83xx: Add register definitions for MPC831x.
63024
63025     Signed-off-by: Scott Wood <scottwood@freescale.com>
63026
63027 commit 7fc4c71a143be8666d70803fb25ae60379c95622
63028 Author: Stefan Roese <sr@denx.de>
63029 Date:   Mon Apr 23 15:39:59 2007 +0200
63030
63031     Fix file mode
63032
63033     Signed-off-by: Stefan Roese <sr@denx.de>
63034
63035 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
63036 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
63037 Date:   Mon Apr 23 15:30:39 2007 +0200
63038
63039     [PATCH] Avoid assigning PCI resources from zero address
63040
63041     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
63042     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
63043     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
63044     sentence about "0" being considered an invalid address) -- so, use a reasonable
63045     starting value of 0x1000 (that's what the most Linux archs are using).
63046
63047     Alternatively, one might have fixed the calls to pci_set_region() individually
63048     (some code even seems to have taken care of this issue) but that would have
63049     been a lot more work. :-)
63050
63051     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
63052     Acked-by: Stefan Roese <sr@denx.de>
63053
63054 commit afb903a2eb9436baa9270ccc0c27082d86497d89
63055 Author: Jeffrey Mann <mannj@embeddedplanet.com>
63056 Date:   Mon Apr 23 14:00:11 2007 +0200
63057
63058     [patch] setenv(...) can delete environmentalvariables
63059
63060     update setenv() function so that entering a NULL value for the
63061     variable's value will delete the environmental variable
63062
63063     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
63064     Acked-by: Stefan Roese <sr@denx.de>
63065
63066 commit 36f104e5caa747d568eff26b369565af57c2ffa6
63067 Author: Mike Frysinger <vapier@gentoo.org>
63068 Date:   Mon Apr 23 13:54:24 2007 +0200
63069
63070     [patch] use unsigned char in smc91111 driver for mac
63071
63072     the v_mac variable in the smc91111 driver is declared as a signed char ...
63073     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
63074     because when it gets printed out, you get a display like:
63075     0xFFFFFFE0 and that's no good
63076
63077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
63078
63079 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
63080 Author: Rodolfo Giometti <giometti@enneenne.com>
63081 Date:   Mon Apr 23 13:10:52 2007 +0200
63082
63083     USB: (Another) delay for crappy USB keys.
63084
63085     Some USB keys are slow in giving back an answer when the Root HUB
63086     enables power lines.
63087
63088     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63089
63090 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
63091 Author: Stefan Roese <sr@denx.de>
63092 Date:   Mon Apr 23 12:00:22 2007 +0200
63093
63094     Remove BOARDLIBS usage completely
63095
63096     Signed-off-by: Stefan Roese <sr@denx.de>
63097
63098 commit 32556443840f127170e4baa8bdd5b567039f6c36
63099 Author: Michal Simek <monstr@monstr.eu>
63100 Date:   Sat Apr 21 21:07:22 2007 +0200
63101
63102     [PATCH] SystemACE support for Microblaze
63103
63104 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
63105 Author: Michal Simek <monstr@monstr.eu>
63106 Date:   Sat Apr 21 21:02:40 2007 +0200
63107
63108     16bit read/write little endian
63109
63110 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
63111 Author: Michal Simek <monstr@monstr.eu>
63112 Date:   Sat Apr 21 20:53:31 2007 +0200
63113
63114     Change ML401 parameters - Xilinx BSP
63115
63116 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
63117 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63118 Date:   Wed Feb 28 05:37:29 2007 -0600
63119
63120     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
63121
63122     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63123
63124 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
63125 Author: Zhang Wei <wei.zhang@freescale.com>
63126 Date:   Fri Jan 19 10:42:37 2007 +0800
63127
63128     Enable LAWs for MPC8641 PCI-Ex2.
63129
63130     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63131     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63132
63133 commit bd7851ce1e1f140665b520026abf1042968b1102
63134 Author: Jon Loeliger <jdl@freescale.com>
63135 Date:   Fri Apr 20 14:12:26 2007 -0500
63136
63137     mpc86xx; Write MAC address to mac-address and local-mac-address
63138
63139     Some device trees have a mac-address property, some have local-mac-address,
63140     and some have both.  To support all of these device trees, ftp_cpu_setup()
63141     should write the MAC address to mac-address and local-mac-address, if they
63142     exist.
63143
63144     Signed-off-by: Timur Tabi <timur@freescale.com>
63145     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63146
63147 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
63148 Author: Jon Loeliger <jdl@freescale.com>
63149 Date:   Fri Apr 20 14:11:38 2007 -0500
63150
63151     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
63152
63153     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63154     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63155
63156 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
63157 Author: Wolfgang Denk <wd@denx.de>
63158 Date:   Fri Apr 20 17:43:28 2007 +0200
63159
63160     Cleanup compiler warnings, update CHANGELOG
63161
63162     Signed-off-by: Wolfgang Denk <wd@denx.de>
63163
63164 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
63165 Author: Detlev Zundel <dzu@denx.de>
63166 Date:   Fri Apr 20 12:01:47 2007 +0200
63167
63168     Fix breakage of NC650 board with respect to nand support.
63169
63170     Signed-off-by: Detlev Zundel <dzu@denx.de>
63171
63172 commit 39f23cd90947639ac278a18ff277ec786b5ac167
63173 Author: Domen Puncer <domen.puncer@telargo.com>
63174 Date:   Fri Apr 20 11:13:16 2007 +0200
63175
63176     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
63177
63178     G2 core reference manual says decrementer and time base
63179     are decreasing/increasing once every 4 bus clock cycles.
63180     Lets fix it, so time in Linux won't run twice as fast
63181
63182     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
63183     Acked-by: Grant Likely <grant.likely@secretlab.ca>
63184
63185 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
63186 Author: Gerald Van Baren <vanbaren@cideas.com>
63187 Date:   Thu Apr 19 23:14:39 2007 -0400
63188
63189     Fix serious pointer bug with bootm and reserve map.
63190
63191     What was suppose to be a stack variable was declared as a pointer,
63192       overwriting random memory.
63193     Also moved the libfdt.a requirement into the main Makefile.  That is
63194       The U-Boot Way.
63195
63196 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
63197 Author: Stefan Roese <sr@denx.de>
63198 Date:   Thu Apr 19 09:53:52 2007 +0200
63199
63200     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
63201
63202     Previous versions used full wait states for the chip select #1 which
63203     is connected to the Xilinix SystemACE controller on the AMCC Katmai
63204     evaluation board. This leads to really slow access and therefore low
63205     performance. This patch now sets up the chip select a lot faster
63206     resulting in much better read/write performance of the Linux driver.
63207
63208     Signed-off-by: Stefan Roese <sr@denx.de>
63209
63210 commit 37837828d89084879bee2f2b8c7c68d4695940df
63211 Author: Wolfgang Denk <wd@denx.de>
63212 Date:   Wed Apr 18 17:49:29 2007 +0200
63213
63214     Clenaup, update CHANGELOG
63215
63216     Signed-off-by: Wolfgang Denk <wd@denx.de>
63217
63218 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
63219 Author: Wolfgang Denk <wd@denx.de>
63220 Date:   Wed Apr 18 17:20:58 2007 +0200
63221
63222     Update CHANGELOG
63223
63224     Signed-off-by: Wolfgang Denk <wd@denx.de>
63225
63226 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
63227 Author: Wolfgang Denk <wd@denx.de>
63228 Date:   Wed Apr 18 17:07:26 2007 +0200
63229
63230     Cleanup, update CHANGELOG
63231
63232     Sigend-off-by: Wolfgang Denk <wd@denx.de>
63233
63234 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
63235 Author: Wolfgang Denk <wd@denx.de>
63236 Date:   Wed Apr 18 16:17:46 2007 +0200
63237
63238     Update CHANGELOG
63239
63240 commit ad4eb555671d97f96dc56eab55103b1f86874b01
63241 Author: Wolfgang Denk <wd@denx.de>
63242 Date:   Wed Apr 18 14:30:39 2007 +0200
63243
63244     MCC200 board: remove warning which is obsolete after PSoC firmware changes
63245
63246     Signed-off-by: Wolfgang Denk <wd@denx.de>
63247
63248 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
63249 Author: Domen Puncer <domen.puncer@telargo.com>
63250 Date:   Wed Apr 18 12:11:05 2007 +0200
63251
63252     [PATCH] icecube/lite5200b: document wakeup from low-power support
63253
63254     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
63255
63256 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
63257 Author: Stefan Roese <sr@denx.de>
63258 Date:   Wed Apr 18 12:07:47 2007 +0200
63259
63260     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
63261
63262     Signed-off-by: Stefan Roese <sr@denx.de>
63263
63264 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
63265 Author: Stefan Roese <sr@denx.de>
63266 Date:   Wed Apr 18 12:05:59 2007 +0200
63267
63268     ppc4xx: Add output for bootrom location to 405EZ ports
63269
63270     Now 405EZ ports also show upon bootup from which boot device
63271     they are configured to boot:
63272
63273     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
63274
63275     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
63276            Bootstrap Option E - Boot ROM Location EBC (32 bits)
63277            16 kB I-Cache 16 kB D-Cache
63278     Board: Acadia - AMCC PPC405EZ Evaluation Board
63279
63280     Signed-off-by: Stefan Roese <sr@denx.de>
63281
63282 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
63283 Author: Peter Pearse <peter.pearse@arm.com>
63284 Date:   Tue Apr 17 13:30:33 2007 +0100
63285
63286     Move ppearse to ARM board list
63287     Add Konstantin Kletschke for scb9328.
63288     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
63289
63290 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
63291 Author: Domen Puncer <domen.puncer@telargo.com>
63292 Date:   Mon Apr 16 14:00:13 2007 +0200
63293
63294     [PATCH] icecube/lite5200b: wakeup from low-power support
63295
63296     U-Boot part of Lite5200b low power mode support.
63297     Puts SDRAM out of self-refresh and transfers control to
63298     address saved at physical 0x0.
63299
63300     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
63301     Acked-by: Grant Likely <grant.likely@secretlab.ca>
63302
63303 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
63304 Author: Gerald Van Baren <vanbaren@cideas.com>
63305 Date:   Sun Apr 15 13:54:26 2007 -0400
63306
63307     Fix the ft_cpu_setup() property settings.
63308
63309     Use "setter" functions instead of flags, cleaner and more flexible.
63310     It also fixes the problem noted by Timur Tabi that the ethernet MAC
63311     addresses were all being set incorrectly to the same MAC address.
63312
63313 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
63314 Author: Gerald Van Baren <vanbaren@cideas.com>
63315 Date:   Sat Apr 14 22:51:24 2007 -0400
63316
63317     Improve the bootm command for CONFIG_OF_LIBFDT
63318
63319     In bootm, create the "/chosen" node only if it doesn't already exist
63320       (better matches the previous behavior).
63321     Update for proper reserved memory map handling for initrd.
63322
63323 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
63324 Author: Gerald Van Baren <vanbaren@cideas.com>
63325 Date:   Sat Apr 14 22:46:41 2007 -0400
63326
63327     Add some utilities to manipulate the reserved memory map.
63328
63329 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
63330 Author: Wolfgang Denk <wd@denx.de>
63331 Date:   Sat Apr 14 21:16:54 2007 +0200
63332
63333     Update CHANGELOG
63334
63335 commit 8e6875183cdca91c134408d119d4abcd48ef6856
63336 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63337 Date:   Sun Dec 17 18:56:46 2006 +0100
63338
63339     AVR32: Enable MMC support
63340
63341     Set up the portmux for the MMC interface and enable the MMC driver
63342     along with support for DOS partitions, ext2 and FAT filesystems.
63343
63344     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63345
63346 commit fc26c97bb6df41b4a95662c34054fe912387bf38
63347 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63348 Date:   Fri Jan 20 10:03:53 2006 +0100
63349
63350     Atmel MCI driver
63351
63352     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
63353
63354     The AT91 ARM-based CPUs use basically the same hardware, so it should
63355     be possible to share this driver, but no effort has been made so far.
63356
63357     Hardware documentation can be found in the AT32AP7000 data sheet,
63358     which can be downloaded from
63359
63360     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
63361
63362     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63363
63364 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
63365 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63366 Date:   Sun Dec 17 18:55:37 2006 +0100
63367
63368     AVR32: Add clk and gpio infrastructure for mmci
63369
63370     Implement functions for configuring the mmci pins, as well as
63371     functions for getting the clock rate of the mmci controller.
63372
63373     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63374
63375 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
63376 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63377 Date:   Sun Dec 17 18:53:56 2006 +0100
63378
63379     Enable partition support with MMC
63380
63381     Include implementations of init_part() and get_partition_info() when
63382     CONFIG_MMC is set.
63383
63384     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63385
63386 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
63387 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63388 Date:   Sun Dec 17 17:14:30 2006 +0100
63389
63390     AVR32: Enable networking
63391
63392     Implement MACB initialization for AVR32 and ATSTK1000, and turn
63393     everything on, including the MACB driver.
63394
63395     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63396
63397 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
63398 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63399 Date:   Fri Jan 20 10:03:34 2006 +0100
63400
63401     Atmel MACB ethernet driver
63402
63403     Driver for the Atmel MACB on-chip ethernet controller.
63404
63405     This driver has been tested on the ATSTK1000 board with a AT32AP7000
63406     CPU. It should probably work on AT91SAM926x as well with some minor
63407     modifications.
63408
63409     Hardware documentation can be found in the AT32AP7000 data sheet,
63410     which can be downloaded from
63411
63412     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
63413
63414     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63415
63416 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
63417 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63418 Date:   Sun Dec 17 16:56:14 2006 +0100
63419
63420     AVR32: Add clk and gpio infrastructure for macb0 and macb1
63421
63422     Implement functions for configuring the macb0 and macb1 pins, as
63423     well as functions for getting the clock rate of the various
63424     busses the macb ethernet controllers are connected to.
63425
63426     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63427
63428 commit d5acb95b16a0a74c643524342c3437e765426d05
63429 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63430 Date:   Sun Dec 17 15:39:15 2006 +0100
63431
63432     AVR32: Implement simple DMA memory allocator
63433
63434     Implement dma_alloc_coherent() which returns cache-aligned
63435     uncacheable memory.
63436
63437     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63438
63439 commit 91975b0fea773c9e681fea8cf3349669f27685ee
63440 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63441 Date:   Sun Dec 17 15:46:02 2006 +0100
63442
63443     Import <linux/mii.h> from the Linux kernel
63444
63445     Instead of creating yet another set of MII register definitions
63446     in the macb driver, here's a complete set of definitions for everyone
63447     to use.
63448
63449     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63450
63451 commit 1b804b229556a4d862da93c0ec94e79419364b2c
63452 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63453 Date:   Wed Mar 21 19:47:36 2007 +0100
63454
63455     AVR32: Include more commands for ATSTK1000
63456
63457     Include the imi, imls and jffs commands sets by default on ATSTK1000.
63458     Also define CONFIG_BOOTARGS to something more useful, define
63459     CONFIG_BOOTCOMMAND and enable autoboot by default.
63460
63461     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63462
63463 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
63464 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63465 Date:   Wed Mar 21 19:44:48 2007 +0100
63466
63467     AVR32: Provide a definition of struct stat
63468
63469     Copy the definition of struct stat from the Linux kernel.
63470
63471     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63472
63473 commit 12f099c08167a7a51aeee623bc16dafd0841271c
63474 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63475 Date:   Sun Dec 17 14:46:06 2006 +0100
63476
63477     AVR32: Use initdram() instead of board_init_memories()
63478
63479     Conform to the "standard" interface and use initdram() instead of
63480     board_init_memories() on AVR32. This enables us to get rid of the
63481     sdram_size member of the global_data struct as well.
63482
63483     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63484
63485 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
63486 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63487 Date:   Mon Nov 20 15:53:10 2006 +0100
63488
63489     AVR32: Relocate u-boot to SDRAM
63490
63491     Relocate the u-boot image into SDRAM like everyone else does. This
63492     means that we can handle much larger .data and .bss than we used to.
63493
63494     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63495
63496 commit df548d3c3e2bbc40258713167859ffc2ce99a900
63497 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63498 Date:   Sun Nov 19 18:06:53 2006 +0100
63499
63500     AVR32: Resource management rewrite
63501
63502     Rewrite the resource management code (i.e. I/O memory, clock gating,
63503     gpio) so it doesn't depend on any global state. This is necessary
63504     because this code is heavily used before relocation to RAM, so we
63505     can't write to any global variables.
63506
63507     As an added bonus, this makes u-boot's memory footprint a bit smaller,
63508     although some functionality has been left out; all clocks are enabled
63509     all the time, and there's no checking for gpio line conflicts.
63510
63511     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63512
63513 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
63514 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63515 Date:   Sat Nov 18 18:01:13 2006 +0100
63516
63517     AVR32: Clean up memory-map.h for at32ap7000
63518
63519     Convert spaces to tabs (must have missed this one last time around),
63520     sort the entries by address and group them together by bus
63521     connectivity.
63522
63523     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63524
63525 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
63526 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63527 Date:   Sat Nov 18 17:32:31 2006 +0100
63528
63529     AVR32: Build position-independent u-boot
63530
63531     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
63532     position independent. This will make relocation a lot easier.
63533
63534     -mno-init-got means that gcc shouldn't emit code to load the GOT
63535     address into r6 in every function prologue. We do it once and for
63536     all in the early startup assembly code, so enabling this option
63537     makes u-boot a bit faster and smaller.
63538
63539     The assembly parts have always been position-independent, so no code
63540     changes should be necessary.
63541
63542     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63543
63544 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
63545 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63546 Date:   Sat Nov 18 17:24:31 2006 +0100
63547
63548     AVR32: Use avr32-linux- cross-compilation prefix by default
63549
63550     It doesn't really matter which toolchain you use to compile u-boot,
63551     but the avr32-linux one is probably what most people have installed.
63552
63553     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63554
63555 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
63556 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63557 Date:   Sat Nov 18 17:15:30 2006 +0100
63558
63559     AVR32: Split start_u_boot into board_init_f and board_init_r
63560
63561     Split the avr32 initialization code into a function to run before
63562     relocation, board_init_f and a function to run after relocation,
63563     board_init_r. For now, board_init_f simply calls board_init_r
63564     at the end.
63565
63566     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63567
63568 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
63569 Author: Heiko Schocher <hs@pollux.denx.de>
63570 Date:   Sat Apr 14 05:26:48 2007 +0200
63571
63572     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
63573             clear the Display after reset.
63574
63575     Signed-off-by: Heiko Schocher <hs@denx.de>
63576
63577 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
63578 Author: Denis Peter <d.peter@mpl.ch>
63579 Date:   Fri Apr 13 09:13:33 2007 +0200
63580
63581     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
63582
63583     Fix bug introduced by "Fix get_partition_info() parameter error in all
63584     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
63585     to use diskboot or scsiboot form another device than 0.
63586
63587     Signed-off-by: Denis Peter <d.peter@mpl.ch>
63588
63589 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
63590 Author: Greg Lopp <lopp@pobox.com>
63591 Date:   Fri Apr 13 08:02:24 2007 +0200
63592
63593     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
63594
63595     Signed-of-by: Greg Lopp <lopp@pobox.com>
63596     Acked-by: Grant Likely <grant.likely@secretlab.ca>
63597
63598 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
63599 Author: Xie Xiaobo <r63061@freescale.com>
63600 Date:   Fri Mar 9 19:08:25 2007 +0800
63601
63602     Fix two bugs for MPC83xx DDR2 controller SPD Init
63603
63604     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
63605     the first bug is that the picos_to_clk routine introduces a huge
63606     rounding error in 83xx.
63607     the second bug is that the mode register write recovery field is
63608     tWR-1, not tWR >> 1.
63609
63610 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
63611 Author: Jeffrey Mann <mannj@embeddedplanet.com>
63612 Date:   Thu Apr 12 14:15:59 2007 +0200
63613
63614     ppc4xx: Fix i2c divisor calcularion for PPC4xx
63615
63616     This patch fixes changes the i2c_init(...) function to use the function
63617     get_OPB_freq() rather than calculating the OPB speed by
63618     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
63619     specific per processor. The prior method was not and so was calculating
63620     the wrong speed for some PPC4xx processors.
63621
63622     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
63623     Signed-off-by: Stefan Roese <sr@denx.de>
63624
63625 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
63626 Author: Wolfgang Denk <wd@denx.de>
63627 Date:   Wed Apr 11 17:25:01 2007 +0200
63628
63629     Update CHANGELOG
63630
63631     Signed-off-by: Wolfgang Denk <wd@denx.de>
63632
63633 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
63634 Author: Wolfgang Denk <wd@denx.de>
63635 Date:   Wed Apr 11 17:22:55 2007 +0200
63636
63637     Update for SC3 board
63638
63639     * Make IDE timeout configurable through ide_reset_timeout variable.
63640     * Use Newline as "password" string
63641     * Use just a single partition in NAND flash
63642
63643 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
63644 Author: Haiying Wang <haiying.wang@freescale.com>
63645 Date:   Mon Jan 22 12:37:30 2007 -0600
63646
63647     Add PIXIS FPGA support for MPC8641HPCN board.
63648
63649     Move the 8641HPCN's PIXIS code to the new directory
63650     board/freescale/common/ as it will be shared by
63651     future boards not in the same processor family.
63652
63653     Write a "pixis_reset" command that utilizes the FPGA
63654     reset sequencer to support alternate soft-reset options
63655     such as using the "alternate" flash bank, enabling
63656     the watch dog, or choosing different CPU frequencies.
63657
63658     Add documentation for the pixis_reset to README.mpc8641hpcn.
63659
63660     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
63661     Signed-off-by: Jon Loeliger <jdl@freescale.com>
63662
63663 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
63664 Author: Gerald Van Baren <vanbaren@cideas.com>
63665 Date:   Fri Apr 6 14:19:43 2007 -0400
63666
63667     Moved fdt command support code to fdt_support.c
63668
63669     ...in preparation for improving the bootm command's handling of fdt blobs.
63670     Also cleaned up some coding sloppiness.
63671
63672 commit 6679f9299534e488a171a9bb8f9bb891de247aab
63673 Author: Gerald Van Baren <vanbaren@cideas.com>
63674 Date:   Fri Apr 6 14:17:14 2007 -0400
63675
63676     libfdt: Make fdt_check_header() public
63677
63678     Changed _fdt_check_header() to fdt_check_header() and made it part of
63679     the interface - it is a useful routine.
63680
63681     Also did some asthetics cleanup to the include files (headers).
63682
63683 commit c0707ce65677650b5ceab0500ee50ae5168afef2
63684 Author: Aubrey Li <aubrey.adi@gmail.com>
63685 Date:   Thu Apr 5 18:34:06 2007 +0800
63686
63687     [Blackfin][PATCH] Kill off a bunch of common local prototypes
63688
63689 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
63690 Author: Aubrey Li <aubrey.adi@gmail.com>
63691 Date:   Thu Apr 5 18:33:04 2007 +0800
63692
63693     [Blackfin][PATCH] Fix dynamic CPLB generation issue
63694
63695 commit 0445e3a264251d75b1be45ef713c70726a2952f0
63696 Author: Aubrey Li <aubrey.adi@gmail.com>
63697 Date:   Thu Apr 5 18:31:47 2007 +0800
63698
63699     [Blackfin][PATCH] minior cleanup
63700
63701 commit 155fd766573981090e638b493d5857562151862e
63702 Author: Aubrey Li <aubrey.adi@gmail.com>
63703 Date:   Thu Apr 5 18:31:18 2007 +0800
63704
63705     [Blackfin][PATCH] Fix copyright and update license
63706
63707 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
63708 Author: Aubrey Li <aubrey.adi@gmail.com>
63709 Date:   Thu Apr 5 18:30:25 2007 +0800
63710
63711     [Blackfin][PATCH] Add BF537 EMAC driver initialization
63712
63713 commit 889256e8604e0c68db1d866d720894dffede9df6
63714 Author: Aubrey Li <aubrey.adi@gmail.com>
63715 Date:   Thu Apr 5 18:29:55 2007 +0800
63716
63717     [Blackfin][PATCH] call real the system synchronize instruction
63718
63719 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
63720 Author: Aubrey Li <aubrey.adi@gmail.com>
63721 Date:   Thu Apr 5 18:29:17 2007 +0800
63722
63723     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
63724
63725 commit dfeeab2cd680df047e68e723b246adf6f33bb556
63726 Author: Aubrey Li <aubrey.adi@gmail.com>
63727 Date:   Thu Apr 5 18:28:34 2007 +0800
63728
63729     [Blackfin][PATCH]: fix flash unaligned copy issue
63730
63731 commit 443feb740584e406efa203af909fe2926608e8d5
63732 Author: Igor Marnat <marny@rambler.ru>
63733 Date:   Wed Mar 21 09:55:01 2007 +0300
63734
63735     Update usage of 'nc' in README.NetConsole
63736
63737     Added information about usage of NetConsole on systems where the -l and -p
63738     switches are mutually exclusive.
63739
63740     Signed-off-by: Igor Marnat <marny@rambler.ru>
63741     Signed-off-by: Ben Warren <bwarren@qstreams.com>
63742
63743 commit 31c98a88228021b314c89ebb8104fb6473da4471
63744 Author: Wolfgang Denk <wd@denx.de>
63745 Date:   Wed Apr 4 02:09:30 2007 +0200
63746
63747     Minor coding style cleanup.
63748
63749 commit 94abd7c0583ebe01e799b25f451201deeaab550d
63750 Author: Wolfgang Denk <wd@denx.de>
63751 Date:   Wed Apr 4 01:49:15 2007 +0200
63752
63753     Minor cleanup.
63754
63755 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
63756 Author: Rodolfo Giometti <giometti@enneenne.com>
63757 Date:   Tue Apr 3 14:27:18 2007 +0200
63758
63759     Support for the Philips ISP116x HCD (Host Controller Driver)
63760
63761     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
63762
63763 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
63764 Author: Markus Klotzbuecher <mk@denx.de>
63765 Date:   Tue Apr 3 14:27:08 2007 +0200
63766
63767     USB: cleanup monahans usb support. Remove dead code.
63768
63769     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63770
63771 commit a65c5768e5537530bd1780af3d3fddc3113a163c
63772 Author: Stefan Roese <sr@denx.de>
63773 Date:   Mon Apr 2 10:09:30 2007 +0200
63774
63775     ppc4xx: Change SysACE address on Katmai
63776
63777     With this new base address of the Xilinx SystemACE controller
63778     the Linux driver will be easier to adapt, since it can now be
63779     mapped via the "normal" ioremap() call.
63780
63781     Signed-off-by: Stefan Roese <sr@denx.de>
63782
63783 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
63784 Author: Gerald Van Baren <vanbaren@cideas.com>
63785 Date:   Sat Mar 31 14:30:53 2007 -0400
63786
63787     Fix some minor whitespace violations.
63788
63789 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
63790 Author: Gerald Van Baren <vanbaren@cideas.com>
63791 Date:   Sat Mar 31 12:23:51 2007 -0400
63792
63793     Add a flattened device tree (fdt) command (2 of 2)
63794
63795     Modifications to the existing code to support the new fdt command.
63796
63797 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
63798 Author: Gerald Van Baren <vanbaren@cideas.com>
63799 Date:   Sat Mar 31 12:22:10 2007 -0400
63800
63801     Add a flattened device tree (fdt) command (1 of 2)
63802
63803     The fdt command uses David Gibson's libfdt library to manipulate as well
63804     as print the flattened device tree.  This patch is the new command,
63805     the second part is the modifications to the existing code.
63806
63807 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
63808 Author: Gerald Van Baren <vanbaren@cideas.com>
63809 Date:   Sat Mar 31 12:13:43 2007 -0400
63810
63811     libfdt: Enhanced and published fdt_next_tag()
63812
63813     Enhanced the formerly private function _fdt_next_tag() to allow stepping
63814       through the tree, used to produce a human-readable dump, and made
63815       it part of the published interface.
63816     Also added some comments.
63817
63818 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
63819 Author: Gerald Van Baren <vanbaren@cideas.com>
63820 Date:   Sat Mar 31 12:05:39 2007 -0400
63821
63822     libfdt: Customizations for use by u-boot.
63823
63824     Changes to David Gibson's original source to fit into u-boot's
63825     environment.  No functionality changes.
63826
63827 commit 35748177c64a4a83a00057e93bb33e40278a2a96
63828 Author: Gerald Van Baren <vanbaren@cideas.com>
63829 Date:   Sat Mar 31 12:00:56 2007 -0400
63830
63831     libfdt: Import libfdt source (2 of 2)
63832
63833     This adds the applicable libfdt source files (unmodified) and a README
63834     to explain where the source came from.
63835
63836 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
63837 Author: Gerald Van Baren <vanbaren@cideas.com>
63838 Date:   Sat Mar 31 11:59:59 2007 -0400
63839
63840     libfdt: Import libfdt source (1 of 2)
63841
63842     This adds the applicable libfdt source files (unmodified) and a README
63843     to explain where the source came from.
63844
63845 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
63846 Author: Stefan Roese <sr@denx.de>
63847 Date:   Sat Mar 31 13:16:23 2007 +0200
63848
63849     ppc4xx: Update Katmai bootstrap command
63850
63851     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
63852     is selected.
63853
63854     Signed-off-by: Stefan Roese <sr@denx.de>
63855
63856 commit cabee756a6532986729477c3cc1ea16ef8517ad2
63857 Author: Stefan Roese <sr@denx.de>
63858 Date:   Sat Mar 31 13:15:06 2007 +0200
63859
63860     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
63861
63862     Additional RAM information is now printed upon powerup, like
63863     DDR2 frequency and CAS latency.
63864
63865     Signed-off-by: Stefan Roese <sr@denx.de>
63866
63867 commit 60723803431ac75cad085690789e433d5ab9174e
63868 Author: Stefan Roese <sr@denx.de>
63869 Date:   Sat Mar 31 08:48:36 2007 +0200
63870
63871     ppc4xx: Change Yucca config file to support ECC
63872
63873     With the updated 44x DDR2 driver the Yucca board now supports
63874     ECC generation and checking.
63875
63876     Signed-off-by: Stefan Roese <sr@denx.de>
63877
63878 commit 490e5730c674b20d708b783a2c5ffd7208f83873
63879 Author: Stefan Roese <sr@denx.de>
63880 Date:   Sat Mar 31 08:47:34 2007 +0200
63881
63882     ppc4xx: Fix "bootstrap" command for Katmai board
63883
63884     The board specific "bootstrap" command is now fixed and can
63885     be used for the AMCC Katmai board to configure different
63886     CPU/PLB/OPB frequencies.
63887
63888     Signed-off-by: Stefan Roese <sr@denx.de>
63889
63890 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
63891 Author: Stefan Roese <sr@denx.de>
63892 Date:   Sat Mar 31 08:46:08 2007 +0200
63893
63894     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
63895
63896     Fix a bug in the auto calibration routine. This driver now runs
63897     more reliable with the tested modules. It's also tested with
63898     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
63899
63900     Signed-off-by: Stefan Roese <sr@denx.de>
63901
63902 commit 342cd097be1e7affe82f42ab3da220959a699e64
63903 Author: Michal Simek <monstr@monstr.eu>
63904 Date:   Fri Mar 30 22:52:09 2007 +0200
63905
63906     [PATCH] Clean include dependence
63907
63908 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
63909 Author: Michal Simek <monstr@monstr.eu>
63910 Date:   Fri Mar 30 22:42:45 2007 +0200
63911
63912     [CLEAN] Remove inefficient Suzaku code
63913
63914 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
63915 Author: Stefan Roese <sr@denx.de>
63916 Date:   Wed Mar 28 15:03:16 2007 +0200
63917
63918     Merge some AMCC make targets to keep the top-level Makefile smaller
63919
63920     Signed-off-by: Stefan Roese <sr@denx.de>
63921
63922 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
63923 Author: Stefan Roese <sr@denx.de>
63924 Date:   Wed Mar 28 14:52:12 2007 +0200
63925
63926     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
63927
63928     The "old" i2c commands (iprobe, imd...) are now compiled in again,
63929     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
63930     config option.
63931
63932     Signed-off-by: Stefan Roese <sr@denx.de>
63933
63934 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
63935 Author: Michal Simek <monstr@monstr.eu>
63936 Date:   Tue Mar 27 00:32:16 2007 +0200
63937
63938     PATCH: Resolve GPL license problem
63939
63940 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
63941 Author: Rodolfo Giometti <giometti@enneenne.com>
63942 Date:   Mon Mar 26 12:03:36 2007 +0200
63943
63944     PXA: pxa27x USB OHCI support
63945
63946     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63947
63948 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
63949 Author: Markus Klotzbuecher <mk@denx.de>
63950 Date:   Mon Mar 26 11:21:05 2007 +0200
63951
63952     USB: remove the S3C24X0_merge #define, which was introduced while
63953     merging OHCI drivers.
63954
63955     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63956
63957 commit 1798049522f594013aea29457d46794298c6ae15
63958 Author: Michal Simek <root@monstr.eu>
63959 Date:   Mon Mar 26 01:39:07 2007 +0200
63960
63961     Support for XUPV2P board
63962     Reset support
63963     BSP autoconfig support
63964
63965 commit 0d974d5297349504a2ddfa09314be573b5df320a
63966 Author: Stefan Roese <sr@denx.de>
63967 Date:   Sat Mar 24 15:57:09 2007 +0100
63968
63969     [PATCH] Add 4xx GPIO functions
63970
63971     This patch adds some 4xx GPIO functions. It also moves some of the
63972     common code and defines into a common 4xx GPIO header file.
63973
63974     Signed-off-by: Stefan Roese <sr@denx.de>
63975
63976 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
63977 Author: Stefan Roese <sr@denx.de>
63978 Date:   Sat Mar 24 15:55:58 2007 +0100
63979
63980     [PATCH] Small Sequoia cleanup
63981
63982     Signed-off-by: Stefan Roese <sr@denx.de>
63983
63984 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
63985 Author: Stefan Roese <sr@denx.de>
63986 Date:   Sat Mar 24 15:45:34 2007 +0100
63987
63988     [PATCH] Clean up 40EZ/Acadia support
63989
63990     This patch cleans up all the open issue of the preliminary
63991     Acadia support.
63992
63993     Signed-off-by: Stefan Roese <sr@denx.de>
63994
63995 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
63996 Author: Jon Loeliger <jdl@freescale.com>
63997 Date:   Tue Dec 12 11:02:20 2006 -0600
63998
63999     Fix 8641HPCN problem with ld version 2.16
64000
64001     (Dot outside sections problem).
64002
64003     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
64004
64005     Signed-off-by: Jon Loeliger <jdl@freescale.com>
64006
64007 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
64008 Author: Haiying Wang <haiying.wang@freescale.com>
64009 Date:   Thu Dec 7 10:35:55 2006 -0600
64010
64011     Set Rev 2.x 86xx PIC in mixed mode.
64012
64013     Prevent false interrupt from hanging Linux as MSR[EE] is set
64014     to enable interrupts by changing the PIC out of the default
64015     pass through mode into mixed mode.
64016
64017     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
64018     Signed-off-by: Jon Loeliger <jdl@freescale.com>
64019
64020 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
64021 Author: Jason Jin <jason.jin@freescale.com>
64022 Date:   Thu Dec 7 10:32:35 2006 -0600
64023
64024     Add flash cmd function to 8641HPCN ramboot
64025
64026     Also fixes some commmand for 8641 HPCN ramboot case.
64027
64028     Signed-off-by: Jason Jin <jason.jin@freescale.com>
64029     Signed-off-by: Jon Loeliger <jdl@freescale.com>
64030
64031 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
64032 Author: Ed Swarthout <ed.swarthout@freescale.com>
64033 Date:   Thu Dec 7 10:34:14 2006 -0600
64034
64035     Add support for 8641 Rev 2 silicon.
64036
64037     Without this patch, I am unable to get to the prompt on rev 2 silicon.
64038     Only set ddrioovcr for rev1.
64039
64040     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
64041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
64042
64043 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
64044 Author: Wolfgang Denk <wd@denx.de>
64045 Date:   Thu Mar 22 00:13:12 2007 +0100
64046
64047     Code cleanup / re-insert previous Copyright entries.
64048
64049     Signed-off-by: Wolfgang Denk <wd@denx.de>
64050
64051 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
64052 Author: Wolfgang Denk <wd@denx.de>
64053 Date:   Wed Mar 21 23:26:15 2007 +0100
64054
64055     Code cleanup. Update CHANGELOG
64056
64057 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
64058 Author: Stefan Roese <sr@denx.de>
64059 Date:   Wed Mar 21 14:54:29 2007 +0100
64060
64061     ppc4xx: Fix file mode of include/configs/acadia.h
64062
64063     Signed-off-by: Stefan Roese <sr@denx.de>
64064
64065 commit d5f4614c9350d9333e575100fb250aab774d0258
64066 Author: Markus Klotzbuecher <mk@denx.de>
64067 Date:   Wed Mar 21 14:41:46 2007 +0100
64068
64069     SPC1920: fix small clock routing bug
64070
64071     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
64072
64073 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
64074 Author: Stefan Roese <sr@denx.de>
64075 Date:   Wed Mar 21 13:39:57 2007 +0100
64076
64077     [PATCH] Add AMCC Acadia (405EZ) eval board support
64078
64079     This patch adds support for the new AMCC Acadia eval board.
64080
64081     Please note that this Acadia/405EZ support is still in a beta stage.
64082     Still lot's of cleanup needed but we need a preliminary release now.
64083
64084     Signed-off-by: Stefan Roese <sr@denx.de>
64085
64086 commit e01bd218b00af73499331a1a701625a852cd286f
64087 Author: Stefan Roese <sr@denx.de>
64088 Date:   Wed Mar 21 13:38:59 2007 +0100
64089
64090     [PATCH] Add AMCC PPC405EZ support
64091
64092     This patch adds support for the new AMCC 405EZ PPC. It is in
64093     preparation for the AMCC Acadia board support.
64094
64095     Please note that this Acadia/405EZ support is still in a beta stage.
64096     Still lot's of cleanup needed but we need a preliminary release now.
64097
64098     Signed-off-by: Stefan Roese <sr@denx.de>
64099
64100 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
64101 Author: Heiko Schocher <hs@pollux.denx.de>
64102 Date:   Wed Mar 21 08:45:17 2007 +0100
64103
64104     [PATCH] TQM8272: dont change the bits given from the HRCW
64105                      for the SIUMCR and BCR Register.
64106                      Fix the calculation for the EEprom Size
64107
64108     Signed-off-by: Heiko Schocher <hs@denx.de>
64109
64110 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
64111 Author: Aubrey Li <aubrey.adi@gmail.com>
64112 Date:   Tue Mar 20 18:16:24 2007 +0800
64113
64114     [Blackfin][PATCH] Add BF561 EZKIT board support
64115
64116 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
64117 Author: Aubrey Li <aubrey.adi@gmail.com>
64118 Date:   Mon Mar 19 22:55:58 2007 +0800
64119
64120     [Blackfin][PATCH] minor cleanup
64121
64122 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
64123 Author: Wolfgang Denk <wd@denx.de>
64124 Date:   Mon Mar 19 13:10:08 2007 +0100
64125
64126     Remove obsoleted POST files.
64127
64128     Signed-off-by: Wolfgang Denk <wd@denx.de>
64129
64130 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
64131 Author: Aubrey Li <aubrey.adi@gmail.com>
64132 Date:   Mon Mar 19 01:26:11 2007 +0800
64133
64134     [PATCH] Add flash chip M29W320ET/B support
64135
64136 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
64137 Author: Aubrey Li <aubrey.adi@gmail.com>
64138 Date:   Mon Mar 19 01:24:52 2007 +0800
64139
64140     [Blackfin][PATCH] Add BF537 stamp board support
64141
64142 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
64143 Author: Stefan Roese <sr@denx.de>
64144 Date:   Fri Mar 16 21:11:42 2007 +0100
64145
64146     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
64147
64148     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
64149     DDR memory are dynamically programmed matching the total size
64150     of the equipped memory (DIMM modules).
64151
64152     Signed-off-by: Stefan Roese <sr@denx.de>
64153
64154 commit 76d1466f918b881cda2d259254761e73885093c2
64155 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64156 Date:   Tue Mar 13 13:38:05 2007 +0100
64157
64158     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
64159             boards in terms of unification.
64160
64161     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64162
64163 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
64164 Author: Wolfgang Denk <wd@denx.de>
64165 Date:   Tue Mar 13 16:05:55 2007 +0100
64166
64167     Make SC3 board build with 'make O='; use 'addcons' consistently
64168     (SC3 and Jupiter used to use 'addcon' instead).
64169
64170     Signed-off-by: Wolfgang Denk wd@denx.de
64171
64172 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
64173 Author: Heiko Schocher <hs@pollux.denx.de>
64174 Date:   Tue Mar 13 09:40:59 2007 +0100
64175
64176     [PATCH] update board config for jupiter Board:
64177             added Hush Shell,
64178                   CONFIG_CMDLINE_EDITING,
64179                   CFG_ENV_ADDR_REDUND activated
64180
64181     Signed-off-by: Heiko Schocher <hs@denx.de>
64182
64183 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
64184 Author: Aubrey Li <aubrey.adi@gmail.com>
64185 Date:   Mon Mar 12 12:11:55 2007 +0800
64186
64187     [Blackfin][PATCH] minor cleanup
64188
64189 commit bfa5754a58477ac917d21527cd0f079d87cf188e
64190 Author: Aubrey Li <aubrey.adi@gmail.com>
64191 Date:   Mon Mar 12 01:42:06 2007 +0800
64192
64193     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
64194
64195 commit 8440bb14581a294375c34b91b42512f9753d1130
64196 Author: Aubrey Li <aubrey.adi@gmail.com>
64197 Date:   Mon Mar 12 00:25:14 2007 +0800
64198
64199     [Blackfin][PATCH] code cleanup
64200
64201 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
64202 Author: Michal Simek <monstr@monstr.eu>
64203 Date:   Sun Mar 11 13:48:24 2007 +0100
64204
64205     [Microblaze][PATCH] part 2
64206     timer support
64207     interrupt controller support
64208     flash support
64209     ethernet support
64210     cache support
64211     board information support
64212     env support
64213     booting image support
64214
64215     adding support for Xilinx ML401
64216
64217 commit 76316a318de91f6184e7c22a10e02d275ade2441
64218 Author: Michal Simek <monstr@monstr.eu>
64219 Date:   Sun Mar 11 13:42:58 2007 +0100
64220
64221     [Microblaze][PATCH]
64222     timer support
64223     interrupt controller support
64224     flash support
64225     ethernet support
64226     cache support
64227     board information support
64228     env support
64229     booting image support
64230
64231     adding support for Xilinx ML401
64232
64233 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
64234 Author: Aubrey Li <aubrey.adi@gmail.com>
64235 Date:   Sat Mar 10 23:49:29 2007 +0800
64236
64237     [Blackfin][PATCH] code cleanup
64238
64239 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
64240 Author: Aubrey.Li <aubrey.adi@gmail.com>
64241 Date:   Fri Mar 9 13:40:56 2007 +0800
64242
64243     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
64244
64245 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
64246 Author: Aubrey.Li <aubrey.adi@gmail.com>
64247 Date:   Fri Mar 9 13:38:44 2007 +0800
64248
64249     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
64250
64251 commit 992423ab43c2bcf6b704853bd00af77450915e20
64252 Author: Stefan Roese <sr@denx.de>
64253 Date:   Thu Mar 8 23:00:08 2007 +0100
64254
64255     ppc4xx: Fix file mode of sequoia.c
64256
64257     Signed-off-by: Stefan Roese <sr@denx.de>
64258
64259 commit eb92f613556800f7483666db09d9a237ad911d4a
64260 Author: Wolfgang Denk <wd@pollux.denx.de>
64261 Date:   Thu Mar 8 22:52:51 2007 +0100
64262
64263     Minor cleanup.
64264
64265 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
64266 Author: John Otken john@softadvances.com <john@softadvances.com>
64267 Date:   Thu Mar 8 09:39:48 2007 -0600
64268
64269     ppc4xx: Clear Sequoia/Rainier security engine reset bits
64270
64271     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
64272
64273 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
64274 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64275 Date:   Thu Mar 8 16:26:52 2007 +0100
64276
64277     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
64278
64279     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64280
64281 commit d9fc703246840c4b268debf48c334ba55c597dc0
64282 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64283 Date:   Thu Mar 8 16:25:47 2007 +0100
64284
64285     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
64286
64287     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64288
64289 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
64290 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64291 Date:   Thu Mar 8 16:23:11 2007 +0100
64292
64293     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
64294
64295     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64296
64297 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
64298 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64299 Date:   Thu Mar 8 16:20:32 2007 +0100
64300
64301     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
64302
64303     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64304
64305 commit f9fc6a5852a6335840882fa2111925010eea1abe
64306 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64307 Date:   Wed Mar 7 15:32:01 2007 +0100
64308
64309     fixed ethernet phy configuration for plu405 board
64310
64311     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64312
64313 commit 769104c9356594deb2092e204a39c05b33202d6c
64314 Author: Wolfgang Denk <wd@pollux.denx.de>
64315 Date:   Thu Mar 8 21:49:27 2007 +0100
64316
64317     Minor cleanup
64318
64319 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
64320 Author: Stefan Roese <sr@denx.de>
64321 Date:   Thu Mar 8 10:13:16 2007 +0100
64322
64323     [PATCH] Update AMCC Luan 440SP eval board support
64324
64325     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
64326     inititializition. This includes DDR auto calibration and support
64327     for different DIMM modules, instead of the fixed setup used in
64328     the earlier version.
64329
64330     This patch also enables the cache in FLASH for the startup
64331     phase of U-Boot (while running from FLASH). After relocating to
64332     SDRAM the cache is disabled again. This will speed up the boot
64333     process, especially the SDRAM setup, since there are some loops
64334     for memory testing (auto calibration).
64335
64336     Signed-off-by: Stefan Roese <sr@denx.de>
64337
64338 commit 2f5df47351910a2936c7741cf111855829200943
64339 Author: Stefan Roese <sr@denx.de>
64340 Date:   Thu Mar 8 10:10:18 2007 +0100
64341
64342     [PATCH] Update AMCC Yucca 440SPe eval board support
64343
64344     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
64345     inititializition. This includes DDR auto calibration and support
64346     for different DIMM modules, instead of the fixed setup used in
64347     the earlier version.
64348
64349     Signed-off-by: Stefan Roese <sr@denx.de>
64350
64351 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
64352 Author: Stefan Roese <sr@denx.de>
64353 Date:   Thu Mar 8 10:07:18 2007 +0100
64354
64355     ppc4xx: Small AMCC Katmai 440SPe update
64356
64357     Signed-off-by: Stefan Roese <sr@denx.de>
64358
64359 commit df294497479b1dca6dd86318b2a912f72fede0df
64360 Author: Stefan Roese <sr@denx.de>
64361 Date:   Thu Mar 8 10:06:09 2007 +0100
64362
64363     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
64364
64365     Signed-off-by: Stefan Roese <sr@denx.de>
64366
64367 commit 83853178bd36bca6f0f8f1331476620c84a587fc
64368 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
64369 Date:   Wed Mar 7 12:14:50 2007 -0600
64370
64371     net - Support ping reply when processing net-loop
64372
64373     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
64374
64375     This permits the ping command to test the phy interface when the phy
64376     is put in loopback mode (typically by setting register 0 bit 14).
64377
64378     It also allows the port to respond to an external ping when u-boot is
64379     processing some other net command (such as tftp).  This is useful when
64380     tftp appears to hang.
64381
64382     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64383     Signed-off-by: Ben Warren <bwarren@qstreams.com>
64384
64385 commit fa1aef15bcd47736687be1af544506e90fba545d
64386 Author: Stefan Roese <sr@denx.de>
64387 Date:   Wed Mar 7 16:43:00 2007 +0100
64388
64389     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
64390
64391     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
64392     DDR memory are dynamically programmed matching the total size
64393     of the equipped memory (DIMM modules).
64394
64395     Signed-off-by: Stefan Roese <sr@denx.de>
64396
64397 commit e2ebe696818939e2b974628be9c921ea3fe9de13
64398 Author: Stefan Roese <sr@denx.de>
64399 Date:   Wed Mar 7 16:39:36 2007 +0100
64400
64401     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
64402
64403     This patch fixes a problem that occurs when 2 DIMM's are
64404     used. This problem was first spotted and fixed by Gerald Jackson
64405     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
64406     problem in a little more clever way.
64407
64408     This patch also adds the nice functionality to dynamically
64409     create the TLB entries for the SDRAM (tlb.c). So we should
64410     never run into such problems with wrong (too short) TLB
64411     initialization again on these platforms.
64412
64413     As this feature is new to the "old" 44x SPD DDR driver, it
64414     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
64415
64416     Signed-off-by: Stefan Roese <sr@denx.de>
64417
64418 commit 39218433983417b9df087976a79e3f80dd5e83d6
64419 Author: Wolfgang Denk <wd@denx.de>
64420 Date:   Wed Mar 7 16:33:44 2007 +0100
64421
64422     UC101: fix compiler warnings
64423
64424 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
64425 Author: Wolfgang Denk <wd@pollux.denx.de>
64426 Date:   Wed Mar 7 16:19:46 2007 +0100
64427
64428     HMI1001: fix build error, cleanup compiler warnings.
64429
64430 commit ad5bb451ade552c44bef9119d907929ebc2c126f
64431 Author: Wolfgang Denk <wd@pollux.denx.de>
64432 Date:   Tue Mar 6 18:08:43 2007 +0100
64433
64434     Restructure POST directory to support of other CPUs, boards, etc.
64435
64436 commit a5284efd125967675b2e9c6ef7b95832268ad360
64437 Author: Wolfgang Denk <wd@pollux.denx.de>
64438 Date:   Tue Mar 6 18:01:47 2007 +0100
64439
64440     Fix HOSTARCH handling.
64441     Patch by Mike Frysinger, Mar 05 2007
64442
64443 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
64444 Author: Stefan Roese <sr@denx.de>
64445 Date:   Tue Mar 6 07:47:04 2007 +0100
64446
64447     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
64448
64449     As provided by the AMCC applications team, this patch optimizes the
64450     DDR2 setup for 166MHz bus speed. The values provided are also save
64451     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
64452     setup has to be adjusted as done in this patch.
64453
64454     For this the NAND booting version had to include the "speed.c" file
64455     from the cpu/ppc4xx directory. With this addition the NAND SPL image
64456     will just fit into the 4kbytes of program space. gcc version 4.x as
64457     provided with ELDK 4.x is needed to generate this optimized code.
64458
64459     Signed-off-by: Stefan Roese <sr@denx.de>
64460
64461 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
64462 Author: Wolfgang Denk <wd@pollux.denx.de>
64463 Date:   Sun Mar 4 01:36:05 2007 +0100
64464
64465     Some code cleanup.
64466
64467 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
64468 Author: Kim Phillips <kim.phillips@freescale.com>
64469 Date:   Wed Feb 28 00:02:04 2007 -0600
64470
64471     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
64472
64473     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
64474
64475 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
64476 Author: Kumar Gala <galak@kernel.crashing.org>
64477 Date:   Tue Feb 27 23:51:42 2007 -0600
64478
64479     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
64480
64481     The config value for:
64482     * CFG_ACR_PIPE_DEP
64483     * CFG_ACR_RPTCNT
64484     * CFG_SPCR_TSEC1EP
64485     * CFG_SPCR_TSEC2EP
64486     * CFG_SCCR_TSEC1CM
64487     * CFG_SCCR_TSEC2CM
64488
64489     Were not being used when setting the appropriate register
64490
64491     Added:
64492     * CFG_SCCR_USBMPHCM
64493     * CFG_SCCR_USBDRCM
64494     * CFG_SCCR_PCICM
64495     * CFG_SCCR_ENCCM
64496
64497     To allow full config of the SCCR.
64498
64499     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
64500     that were just bogus.
64501
64502     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64503
64504 commit d51b3cf371cd441030460ef19d36b2924c361b1a
64505 Author: Kim Phillips <kim.phillips@freescale.com>
64506 Date:   Thu Feb 22 20:06:57 2007 -0600
64507
64508     mpc83xx: update [local-]mac-address properties on UEC based devices
64509
64510     8360 and 832x weren't updating their [local-]mac-address
64511     properties. This patch fixes that.
64512
64513     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64514
64515 commit 61f4f912acbe60776c5e00df1ec94094ce672957
64516 Author: Timur Tabi <timur@freescale.com>
64517 Date:   Tue Feb 13 10:41:42 2007 -0600
64518
64519     mpc83xx: write MAC address to mac-address and local-mac-address
64520
64521     Some device trees have a mac-address property, some have local-mac-address,
64522     and some have both.  To support all of these device trees, this patch
64523     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
64524     This function already updates local-mac-address.
64525
64526     Signed-off-by: Timur Tabi <timur@freescale.com>
64527
64528 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
64529 Author: Kim Phillips <kim.phillips@freescale.com>
64530 Date:   Tue Feb 27 18:41:08 2007 -0600
64531
64532     mpc83xx: add command line editing by default
64533
64534 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
64535 Author: Kim Phillips <kim.phillips@freescale.com>
64536 Date:   Wed Feb 14 19:50:53 2007 -0600
64537
64538     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
64539
64540     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
64541     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
64542
64543     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
64544
64545     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64546     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
64547
64548 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
64549 Author: Xie Xiaobo <r63061@freescale.com>
64550 Date:   Wed Feb 14 18:27:17 2007 +0800
64551
64552     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
64553
64554     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
64555     it pass DDR/DDR2 compliance tests.
64556
64557     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
64558
64559 commit b110f40bd180c6b560276589beedf753e97c46ce
64560 Author: Xie Xiaobo <r63061@freescale.com>
64561 Date:   Wed Feb 14 18:27:06 2007 +0800
64562
64563     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
64564
64565     MPC8360E rev2.0 have new spridr,and PVR value,
64566     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
64567
64568     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
64569
64570 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
64571 Author: Xie Xiaobo <r63061@freescale.com>
64572 Date:   Wed Feb 14 18:26:44 2007 +0800
64573
64574     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
64575
64576     MPC8349E rev3.1 have new spridr,and PVR value,
64577     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
64578
64579     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
64580
64581 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
64582 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
64583 Date:   Wed Jan 31 11:04:19 2007 +0100
64584
64585     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
64586
64587     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
64588     which is used to se if an slave will ACK after receiving its address.
64589
64590     Correct i2c probing to use this method as the old method could upset
64591     a slave as it wrote a data byte to it.
64592
64593     Add a small delay in i2c_init() to let the controller
64594     shutdown any ongoing I2C activity.
64595
64596     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
64597
64598 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
64599 Author: Timur Tabi <timur@freescale.com>
64600 Date:   Wed Jan 31 15:54:29 2007 -0600
64601
64602     mpc83xx: Add support for the MPC8349E-mITX-GP
64603
64604     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
64605     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
64606     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
64607
64608     Signed-off-by: Timur Tabi <timur@freescale.com>
64609
64610 commit fab16807adad350f618024350c6950165c247c72
64611 Author: Timur Tabi <timur@freescale.com>
64612 Date:   Wed Jan 31 15:54:20 2007 -0600
64613
64614     mpc83xx: Delete sdram_init() for MPC8349E-mITX
64615
64616     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
64617     never does anything.  This patch deletes it.
64618
64619     Signed-off-by: Timur Tabi <timur@freescale.com>
64620
64621 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
64622 Author: Dave Liu <daveliu@freescale.com>
64623 Date:   Fri Jan 19 10:43:26 2007 +0800
64624
64625     mpc83xx: Fix the LAW1/3 bug
64626
64627     The patch solves the alignment problem of the local bus access windows to
64628     render accessible the memory bank and PHY registers of UPC 1 (starting at
64629     0xf801 0000). What we actually did was to adjust the sizes of the bus
64630     access windows so that the base address alignment requirement would be met.
64631
64632     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
64633     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
64634     Signed-off-by: Dave Liu <daveliu@freescale.com>
64635
64636 commit 97c4b397dce236a7318b304667bf89e59d08b17c
64637 Author: Kim Phillips <kim.phillips@freescale.com>
64638 Date:   Tue Jan 30 16:15:31 2007 -0600
64639
64640     mpc83xx: don't hang if watchdog configured on 8360, 832x
64641
64642     don't hang if watchdog configured on 8360, 832x
64643
64644     The watchdog programming model is the same across all 83xx devices;
64645     make the code reflect that.
64646
64647 commit b70047478570e371ce7223be342ce98afea0f7d6
64648 Author: Kim Phillips <kim.phillips@freescale.com>
64649 Date:   Tue Jan 30 16:15:21 2007 -0600
64650
64651     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
64652
64653     protect memcpy to bad address if a local-mac-address is missing from dt
64654
64655 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
64656 Author: Kim Phillips <kim.phillips@freescale.com>
64657 Date:   Tue Jan 30 16:15:04 2007 -0600
64658
64659     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
64660
64661     make 8360 default environment fdt be 8360 (not 8349)
64662
64663 commit a28899c910024a0226331df07207b1038c300c93
64664 Author: Emilian Medve <Emilian.Medve@freescale.com>
64665 Date:   Tue Jan 30 16:14:50 2007 -0600
64666
64667     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
64668
64669     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
64670     be used for busy-waiting since it strips the 'volatile' property from
64671     the bd variable. gcc3 was working by pure luck.
64672
64673     This is a follow on patch to "Fix the UEC driver bug of QE"
64674
64675 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
64676 Author: Kumar Gala <galak@kernel.crashing.org>
64677 Date:   Tue Jan 30 14:08:30 2007 -0600
64678
64679     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
64680
64681     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
64682     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
64683     CONFIG_MPC834X so they are more generic.
64684
64685     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64686
64687 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
64688 Author: Kim Phillips <kim.phillips@freescale.com>
64689 Date:   Thu Jan 25 13:40:55 2007 -0600
64690
64691     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
64692
64693 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
64694 Author: Kim Phillips <kim.phillips@freescale.com>
64695 Date:   Wed Jan 24 17:18:37 2007 -0600
64696
64697     mpc83xx: sort Makefile targets
64698
64699     reordered targets alphabetically
64700
64701 commit 91e25769771c1164ed63ffca0add49f934ae3343
64702 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
64703 Date:   Tue Jan 16 11:38:14 2007 -0500
64704
64705     mpc83xx: U-Boot support for Wind River SBC8349
64706
64707     I've redone the SBC8349 support to match git-current, which
64708     incorporates all the MPC834x updates from Freescale since the 1.1.6
64709     release,  including the DDR changes.
64710
64711     I've kept all the SBC8349 files as parallel as possible to the
64712     MPC8349EMDS ones for ease of maintenance and to allow for easy
64713     inspection of what was changed to support this board.  Hence the SBC8349
64714     U-Boot has FDT support and everything else that the MPC8349EMDS has.
64715
64716     Fortunately the Freescale updates added support for boards using CS0,
64717     but I had to change spd_sdram.c to allow for board specific settings for
64718     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
64719     default if the board doesn't specify a value.)
64720
64721     Hopefully this should be mergeable as-is and require no whitespace
64722     cleanups or similar, but if something doesn't measure up then let me
64723     know and I'll fix it.
64724
64725     Thanks,
64726     Paul.
64727
64728 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
64729 Author: Sam Song <samsongshu@yahoo.com.cn>
64730 Date:   Thu Dec 14 19:03:21 2006 +0800
64731
64732     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
64733
64734     A redundant semicolon existed in mpc8349itx.c
64735     should be removed.
64736
64737     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
64738
64739 commit f35f358241c549be3f75cfe2eaa642914275b7ba
64740 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
64741 Date:   Wed Dec 6 21:23:55 2006 -0500
64742
64743     mpc83xx: Put the version (and magic) after the HRCW.
64744
64745     Put the version (and magic) after the HRCW.  This puts it in a fixed
64746     location in flash, not at the start of flash but as close as we can get.
64747
64748     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
64749
64750 commit 48aecd969171a6e99a55fae04933857787f9a5bd
64751 Author: Dave Liu <r63238@freescale.com>
64752 Date:   Thu Dec 7 21:14:51 2006 +0800
64753
64754     mpc83xx: Add the MPC832XEMDS board readme
64755
64756     Add the MPC832XEMDS board readme
64757
64758     Signed-off-by: Dave Liu <daveliu@freescale.com>
64759
64760 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
64761 Author: Dave Liu <r63238@freescale.com>
64762 Date:   Thu Dec 7 21:13:15 2006 +0800
64763
64764     mpc83xx: Add support for the MPC832XEMDS board
64765
64766     This patch supports DUART, ETH3/4 and PCI etc.
64767
64768     Signed-off-by: Dave Liu <daveliu@freescale.com>
64769
64770 commit e080313c32322e15ab5a18eb896a252858c57284
64771 Author: Dave Liu <r63238@freescale.com>
64772 Date:   Thu Dec 7 21:11:58 2006 +0800
64773
64774     mpc83xx: streamline the 83xx immr head file
64775
64776     For better format and style, I streamlined the 83xx head files,
64777     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
64778     duplicated macro definition appear in the both files; 2) the structure
64779     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
64780     macro definition put inside the each structure. So, I cleaned up the
64781     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
64782     moved the macro definition to mpc83xx.h, Just like MPC8260.
64783
64784     CHANGELOG
64785
64786     *streamline the 83xx immr head file
64787
64788     Signed-off-by: Dave Liu <daveliu@freescale.com>
64789
64790 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
64791 Author: Dave Liu <r63238@freescale.com>
64792 Date:   Wed Dec 6 11:38:17 2006 +0800
64793
64794     mpc83xx: Fix the UEC driver bug of QE
64795
64796     The patch prevents the GCC tool chain from striping useful code for
64797     optimization. It will make UEC ethernet driver workable, Otherwise the
64798     UEC will fail in tx when you are using gcc4.x. but the driver can work
64799     when using gcc3.4.3.
64800
64801     CHANGELOG
64802
64803     *Prevent the GCC from striping code for optimization, Otherwise the UEC
64804     will tx failed when you are using gcc4.x.
64805
64806     Signed-off-by: Dave Liu <daveliu@freescale.com>
64807
64808 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
64809 Author: Stefan Roese <sr@denx.de>
64810 Date:   Thu Mar 1 21:11:36 2007 +0100
64811
64812     [PATCH] Update AMCC Katmai 440SPe eval board support
64813
64814     This patch updates the recently added Katmai board support. The biggest
64815     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
64816     driver.
64817
64818     Please note, that still some problems are left with some memory
64819     configurations. See the driver for more details.
64820
64821     Signed-off-by: Stefan Roese <sr@denx.de>
64822
64823 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
64824 Author: Stefan Roese <sr@denx.de>
64825 Date:   Thu Mar 1 07:03:25 2007 +0100
64826
64827     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
64828
64829     Signed-off-by: Stefan Roese <sr@denx.de>
64830
64831 commit ccbc7036648e465697ca298ba51e0e76dda352a0
64832 Author: Wolfgang Denk <wd@pollux.denx.de>
64833 Date:   Wed Feb 28 01:28:53 2007 +0100
64834
64835     SC3: fix typo in default environment
64836
64837 commit e344568b1b46af85ec32d815586f91bc115d6223
64838 Author: Sergei Poselenov <sposelenov@emcraft.com>
64839 Date:   Tue Feb 27 20:15:30 2007 +0300
64840
64841     MCC200: Fixes for update procedure
64842
64843     - fix logic error in image type handling
64844     - make sure file system images (cramfs etc.) get stored in flash
64845       with image header stripped so they can be mounted through MTD
64846
64847 commit 743571145b37182757d4e688a77860b36ee77573
64848 Author: Wolfgang Denk <wd@pollux.denx.de>
64849 Date:   Tue Feb 27 14:26:04 2007 +0100
64850
64851     Minor code cleanup.
64852
64853 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
64854 Author: Sergei Poselenov <sposelenov@emcraft.com>
64855 Date:   Tue Feb 27 12:40:16 2007 +0300
64856
64857     MCC200 update - add LCD Progress Indicator
64858
64859 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
64860 Author: Stefan Roese <sr@denx.de>
64861 Date:   Thu Feb 22 07:43:34 2007 +0100
64862
64863     [PATCH] get_dev() now unconditionally uses manual relocation
64864
64865     Since the relocation fix is not included yet and we're not sure how
64866     it will be added, this patch removes code that required relocation
64867     to be fixed for now.
64868
64869     Signed-off-by: Stefan Roese <sr@denx.de>
64870
64871 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
64872 Author: Stefan Roese <sr@denx.de>
64873 Date:   Thu Feb 22 07:40:23 2007 +0100
64874
64875     [PATCH] Change systemace driver to select 8 & 16bit mode
64876
64877     As suggested by Grant Likely this patch enables the Xilinx SystemACE
64878     driver to select 8 or 16bit mode upon startup.
64879
64880     Signed-off-by: Stefan Roese <sr@denx.de>
64881
64882 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
64883 Author: Haiying Wang <Haiying.Wang@freescale.com>
64884 Date:   Wed Feb 21 16:52:31 2007 +0100
64885
64886     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
64887
64888     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
64889     is fully finished. The sync() is defined in each CPU's io.h file. For
64890     those CPUs which do not need sync for now, a dummy sync() is defined in
64891     their io.h as well.
64892
64893     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
64894
64895 commit da04995c7dc6772013a9a0dc5c767f190c402478
64896 Author: Stefan Roese <sr@denx.de>
64897 Date:   Wed Feb 21 13:44:34 2007 +0100
64898
64899     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
64900
64901     Signed-off-by: Stefan Roese <sr@denx.de>
64902
64903 commit 751bb57107d78978ae08e697c3deba816f5be091
64904 Author: Stefan Roese <sr@denx.de>
64905 Date:   Tue Feb 20 13:21:57 2007 +0100
64906
64907     [PATCH] Fix relocation problem with "new" get_dev() function
64908
64909     This patch enables the "new" get_dev() function for block devices
64910     introduced by Grant Likely to be used on systems that still suffer
64911     from the relocation problems (manual relocation neede because of
64912     problems with linker script).
64913
64914     Hopefully we can resolve this relocation issue soon for all platform
64915     so we don't need this additional code anymore.
64916
64917     Signed-off-by: Stefan Roese <sr@denx.de>
64918
64919 commit d93e2212f962668b3dce091ff5edc33f2347fe37
64920 Author: Stefan Roese <sr@denx.de>
64921 Date:   Tue Feb 20 13:17:42 2007 +0100
64922
64923     [PATCH] Update SystemACE driver for 16bit access
64924
64925     This patch removes some problems when the Xilinx SystemACE driver
64926     is used with 16bit access on an big endian platform (like the
64927     AMCC Katmai).
64928
64929     Signed-off-by: Stefan Roese <sr@denx.de>
64930
64931 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
64932 Author: Stefan Roese <sr@denx.de>
64933 Date:   Tue Feb 20 13:15:40 2007 +0100
64934
64935     [PATCH] Clean up Katmai (440SPe) linker script
64936
64937     Signed-off-by: Stefan Roese <sr@denx.de>
64938
64939 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
64940 Author: Stefan Roese <sr@denx.de>
64941 Date:   Tue Feb 20 10:57:08 2007 +0100
64942
64943     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
64944
64945     Signed-off-by: Stefan Roese <sr@denx.de>
64946
64947 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
64948 Author: Stefan Roese <sr@denx.de>
64949 Date:   Tue Feb 20 10:51:26 2007 +0100
64950
64951     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
64952
64953     This patch switches to the desired I2C bus when the date/dtt
64954     commands are called. This can be configured using the
64955     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
64956
64957     Signed-off-by: Stefan Roese <sr@denx.de>
64958
64959 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
64960 Author: Stefan Roese <sr@denx.de>
64961 Date:   Tue Feb 20 10:43:34 2007 +0100
64962
64963     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
64964
64965     This patch adds support for the DDR2 controller used on the
64966     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
64967     board and works fine with the following DIMM modules:
64968
64969     - Corsair CM2X512-5400C4 (512MByte per DIMM)
64970     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
64971     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
64972
64973     This patch also adds the nice functionality to dynamically
64974     create the TLB entries for the SDRAM (tlb.c). So we should
64975     never run into such problems with wrong (too short) TLB
64976     initialization again on these platforms.
64977
64978     Signed-off-by: Stefan Roese <sr@denx.de>
64979
64980 commit 36d830c9830379045f5daa9f542ac1c990c70068
64981 Author: Stefan Roese <sr@denx.de>
64982 Date:   Tue Feb 20 10:35:42 2007 +0100
64983
64984     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
64985
64986     Since the existing 4xx SPD SDRAM initialization routines for the
64987     405 SDRAM controller and the 440 DDR controller don't have much in
64988     common this patch splits both drivers into different files.
64989
64990     This is in preparation for the 440 DDR2 controller support (440SP/e).
64991
64992     Signed-off-by: Stefan Roese <sr@denx.de>
64993
64994 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
64995 Author: Stefan Roese <sr@denx.de>
64996 Date:   Tue Feb 20 10:27:08 2007 +0100
64997
64998     [PATCH] PPC4xx: Add support for multiple I2C busses
64999
65000     This patch adds support for multiple I2C busses on the PPC4xx
65001     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
65002     to make use of this feature.
65003
65004     It also merges the 405 and 440 i2c header files into one common
65005     file 4xx_i2c.h.
65006
65007     Also the 4xx i2c reset procedure is reworked since I experienced
65008     some problems with the first access on the 440SPe Katmai board.
65009
65010     Signed-off-by: Stefan Roese <sr@denx.de>
65011
65012 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
65013 Author: Grant Likely <grant.likely@secretlab.ca>
65014 Date:   Tue Feb 20 09:05:45 2007 +0100
65015
65016     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
65017
65018     Block device read/write is anonymous data; there is no need to use a
65019     typed pointer.  void * is fine.  Also add a hook for block_read functions
65020
65021     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65022
65023 commit 53758fa20e935cc87eeb0519ed365df753a6f289
65024 Author: Grant Likely <grant.likely@secretlab.ca>
65025 Date:   Tue Feb 20 09:05:38 2007 +0100
65026
65027     [PATCH 8_9] Add block_write hook to block_dev_desc_t
65028
65029     Preparation for future patches which support block device writing
65030
65031     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65032
65033 commit f4852ebe6ca946a509667eb68be42026f837be76
65034 Author: Grant Likely <grant.likely@secretlab.ca>
65035 Date:   Tue Feb 20 09:05:31 2007 +0100
65036
65037     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
65038
65039     Register read/write does not need to be wrapped in a full function.  The
65040     patch replaces them with macros.
65041
65042     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65043
65044 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
65045 Author: Grant Likely <grant.likely@secretlab.ca>
65046 Date:   Tue Feb 20 09:05:23 2007 +0100
65047
65048     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
65049
65050     The code in this file is not a command; it is a device driver.  Put it in
65051     the correct place.  There are zero functional changes in this patch, it
65052     only moves the file.
65053
65054     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65055
65056 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
65057 Author: Grant Likely <grant.likely@secretlab.ca>
65058 Date:   Tue Feb 20 09:05:16 2007 +0100
65059
65060     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
65061
65062     This patch is in preparation of additional changes to the sysace driver.
65063     May as well take this opportunity to fixup the inconsistent whitespace since
65064     this file is about to undergo major changes anyway.
65065
65066     There are zero functional changes in this patch.  It only cleans up the
65067     the whitespace.
65068
65069     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65070
65071 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
65072 Author: Grant Likely <grant.likely@secretlab.ca>
65073 Date:   Tue Feb 20 09:05:07 2007 +0100
65074
65075     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
65076
65077     isprint is already defined in ctype.c
65078
65079     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65080
65081 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
65082 Author: Grant Likely <grant.likely@secretlab.ca>
65083 Date:   Tue Feb 20 09:05:00 2007 +0100
65084
65085     [PATCH 3_9] Move buffer print code from md command to common function
65086
65087     Printing a buffer is a darn useful thing.  Move the buffer print code
65088     into print_buffer() in lib_generic/
65089
65090     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65091
65092 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
65093 Author: Grant Likely <grant.likely@secretlab.ca>
65094 Date:   Tue Feb 20 09:04:52 2007 +0100
65095
65096     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
65097
65098     Change the xilinx device drivers and board code to include config.h
65099     instead of xparameters.h directly.  config.h always includes the
65100     correct xparameters file.  This change reduces the posibility of
65101     including the wrong file when adding a new xilinx board port
65102
65103     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65104
65105 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
65106 Author: Grant Likely <grant.likely@secretlab.ca>
65107 Date:   Tue Feb 20 09:04:34 2007 +0100
65108
65109     [PATCH 1_4] Merge common get_dev() routines for block devices
65110
65111     Each of the filesystem drivers duplicate the get_dev routine.  This change
65112     merges them into a single function in part.c
65113
65114     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65115
65116 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
65117 Author: Wolfgang Denk <wd@pollux.denx.de>
65118 Date:   Mon Feb 19 23:09:51 2007 +0100
65119
65120     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
65121     as root file system images.
65122
65123 commit 489c696ae7211218961d159e43e722d74c36fcbc
65124 Author: Sergei Poselenov <sposelenov@emcraft.com>
65125 Date:   Wed Feb 14 14:30:28 2007 +0300
65126
65127     MCC200: Extensions to Software Update Mechanism
65128
65129     Update / extend Software Update Mechanism for MCC200 board:
65130
65131     - Add support for rootfs image added. The environment variables
65132       "rootfs_st" and "rootfs_nd" can be used to override the default
65133       values of the image start and end.
65134     - Remove excessive key check code.
65135     - Code cleanup.
65136
65137 commit 4be23a12f23f1372634edc3215137b09768b7949
65138 Author: Stefan Roese <sr@denx.de>
65139 Date:   Mon Feb 19 08:23:15 2007 +0100
65140
65141     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
65142
65143     As spotted by Matthias Fuchs, the READY input should not be
65144     enabled for the NOR FLASH on the Sequoia board.
65145
65146     Signed-off-by: Stefan Roese <sr@denx.de>
65147
65148 commit 2605e90bf676d48123afe5719a846d2b52b24aac
65149 Author: Heiko Schocher <hs@pollux.denx.de>
65150 Date:   Fri Feb 16 07:57:42 2007 +0100
65151
65152     [PATCH] Added support for the jupiter board.
65153
65154     Signed-off-by: Heiko Schocher <hs@denx.de>
65155
65156 commit 497d012e5be0194e1084073d0081eb1a844796b2
65157 Author: Gary Jennejohn <garyj@pollux.denx.de>
65158 Date:   Mon Feb 12 13:11:50 2007 +0100
65159
65160     LPC2292: patch from Siemens.
65161
65162 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
65163 Author: Stefan Roese <sr@denx.de>
65164 Date:   Sat Feb 10 08:49:31 2007 +0100
65165
65166     [PATCH] Add missing p3mx.h file to repository (ups)
65167
65168     Signed-off-by: Stefan Roese <sr@denx.de>
65169
65170 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
65171 Author: Bartlomiej Sieka <tur@semihalf.com>
65172 Date:   Fri Feb 9 10:45:42 2007 +0100
65173
65174     [Motion-PRO] Preliminary support for the Motion-PRO board.
65175
65176 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
65177 Author: Stefan Roese <sr@denx.de>
65178 Date:   Wed Feb 7 16:51:08 2007 +0100
65179
65180     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
65181
65182     Some boards that can have more than 768MBytes of SDRAM need to
65183     set "initrd_high", so that the initrd can be accessed by the
65184     Linux kernel.
65185
65186     Signed-off-by: Stefan Roese <sr@denx.de>
65187
65188 commit 7372ca68227930d03cffa548310524cad5b96733
65189 Author: Stefan Roese <sr@denx.de>
65190 Date:   Fri Feb 2 12:44:22 2007 +0100
65191
65192     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
65193
65194     Previously the strapping DCR/SDR was read to determine if the internal PCI
65195     arbiter is enabled or not. This strapping bit can be overridden, so now
65196     the current status is read from the correct DCR/SDR register.
65197
65198     Signed-off-by: Stefan Roese <sr@denx.de>
65199
65200 commit 2aa54f651a42d198673318f07a20c89a43e4d197
65201 Author: Stefan Roese <sr@denx.de>
65202 Date:   Fri Feb 2 12:42:08 2007 +0100
65203
65204     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
65205
65206     Signed-off-by: Stefan Roese <sr@denx.de>
65207
65208 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
65209 Author: Stefan Roese <sr@denx.de>
65210 Date:   Thu Feb 1 13:22:41 2007 +0100
65211
65212     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
65213
65214     When PCI PNP is enabled the pci pnp configuration routine is called
65215     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
65216     problems with some PCI cards. For now disable the PCI PNP configuration.
65217
65218     Signed-off-by: Stefan Roese <sr@denx.de>
65219
65220 commit 2902fadade3be7659467e8d074048c6b7068f5c0
65221 Author: Stefan Roese <sr@denx.de>
65222 Date:   Wed Jan 31 16:56:10 2007 +0100
65223
65224     [PATCH] Update 440EPx/440GRx cpu detection
65225
65226     Signed-off-by: Stefan Roese <sr@denx.de>
65227
65228 commit d5ea287b02a6945c3977410e364a879dd1a555c8
65229 Author: Stefan Roese <sr@denx.de>
65230 Date:   Wed Jan 31 16:38:04 2007 +0100
65231
65232     [PATCH] Update esd cpci5200 files
65233
65234     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
65235
65236 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
65237 Author: Stefan Roese <sr@denx.de>
65238 Date:   Wed Jan 31 16:37:34 2007 +0100
65239
65240     [PATCH] Add support for esd mecp5200 board
65241
65242     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
65243
65244 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
65245 Author: Stefan Roese <sr@denx.de>
65246 Date:   Wed Jan 31 12:38:50 2007 +0100
65247
65248     [PATCH] Remove unneccessary yellowstone board config file
65249
65250     Signed-off-by: Stefan Roese <sr@denx.de>
65251
65252 commit e802594b6fa1b166308820c276b96dc0d7cc731c
65253 Author: Stefan Roese <sr@denx.de>
65254 Date:   Tue Jan 30 17:06:10 2007 +0100
65255
65256     [PATCH] Update Sequoia (440EPx) config file
65257
65258     The config file now handles the 2nd target, the Rainier (440GRx)
65259     evaluation board better. Additionally the PPC input clock was
65260     adjusted to match the correct value of 33.0 MHz.
65261
65262     Signed-off-by: Stefan Roese <sr@denx.de>
65263
65264 commit 700200c67e73b83751418abe7815840dca8fd6cb
65265 Author: Stefan Roese <sr@denx.de>
65266 Date:   Tue Jan 30 17:04:19 2007 +0100
65267
65268     [PATCH] Merge Yosemite & Yellowstone board ports
65269
65270     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
65271     share one config file and all board specific files. This way we
65272     don't have to maintain two different sets of files for nearly
65273     identical boards.
65274
65275     Signed-off-by: Stefan Roese <sr@denx.de>
65276
65277 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
65278 Author: Stefan Roese <sr@denx.de>
65279 Date:   Tue Jan 30 15:01:49 2007 +0100
65280
65281     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
65282
65283     SCPU doesn't use redundant environment in flash.
65284
65285     Signed-off-by: Stefan Roese <sr@denx.de>
65286
65287 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
65288 Author: Stefan Roese <sr@denx.de>
65289 Date:   Tue Jan 30 12:51:07 2007 +0100
65290
65291     [PATCH] alpr: Update alpr board config file
65292
65293     Signed-off-by: Stefan Roese <sr@denx.de>
65294
65295 commit f8db84f132b1e335f20f96138a1f09ed97b08664
65296 Author: Wolfgang Denk <wd@pollux.denx.de>
65297 Date:   Tue Jan 30 00:50:40 2007 +0100
65298
65299     LPC2292 SODIMM port coding style cleanup.
65300
65301 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
65302 Author: Gary Jennejohn <garyj@pollux.denx.de>
65303 Date:   Wed Jan 24 12:16:56 2007 +0100
65304
65305     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
65306
65307 commit 2daf046ba627f85f44195815778140039636244e
65308 Author: Bartlomiej Sieka <tur@semihalf.com>
65309 Date:   Tue Jan 23 17:22:06 2007 +0100
65310
65311     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
65312
65313 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
65314 Author: Bartlomiej Sieka <tur@semihalf.com>
65315 Date:   Tue Jan 23 14:21:14 2007 +0100
65316
65317     [iDMR] Flash driver on initialisation write-protects some sectors,
65318     currently sectors 0-3. Sector 3 does not need to be protected, though
65319     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
65320     fixes this, i.e., only sectors 0-2 are protected.
65321
65322 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
65323 Author: Bartlomiej Sieka <tur@semihalf.com>
65324 Date:   Tue Jan 23 14:11:22 2007 +0100
65325
65326     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
65327     "mii device" results in "Unexpected exception"). Fixing this properly
65328     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
65329     this commit disables MII commads for now.
65330
65331 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
65332 Author: Bartlomiej Sieka <tur@semihalf.com>
65333 Date:   Tue Jan 23 13:25:22 2007 +0100
65334
65335     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
65336     Identification Register (CIR).
65337
65338 commit fdef388758506765d4d6a7155c8f1584c63ff581
65339 Author: roy zang <tie-fei.zang@freescale.com>
65340 Date:   Mon Jan 22 13:19:21 2007 +0800
65341
65342     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
65343     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
65344     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
65345     mpc7448hpc2 board.
65346
65347 commit a4012396645533aef218354eeba754dff0deace8
65348 Author: Wolfgang Denk <wd@pollux.denx.de>
65349 Date:   Fri Jan 19 23:08:39 2007 +0100
65350
65351     Minor code cleanup.
65352
65353 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
65354 Author: Heiko Schocher <hs@pollux.denx.de>
65355 Date:   Fri Jan 19 19:57:10 2007 +0100
65356
65357     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
65358
65359     Signed-off-by: Heiko Schocher <hs@denx.de>
65360
65361 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
65362 Author: Heiko Schocher <hs@pollux.denx.de>
65363 Date:   Fri Jan 19 18:05:26 2007 +0100
65364
65365     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
65366                  if you must swap the bytes between reading/writing.
65367                  (Needed for the SC3 board)
65368
65369     Signed-off-by: Heiko Schocher <hs@denx.de>
65370
65371 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
65372 Author: Stefan Roese <sr@denx.de>
65373 Date:   Thu Jan 18 16:05:47 2007 +0100
65374
65375     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
65376
65377     Signed-off-by: Stefan Roese <sr@denx.de>
65378
65379 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
65380 Author: Stefan Roese <sr@denx.de>
65381 Date:   Thu Jan 18 11:54:52 2007 +0100
65382
65383     [PATCH] Update Prodrive P3Mx support
65384
65385     Signed-off-by: Stefan Roese <sr@denx.de>
65386
65387 commit 34167a36c29ee946b727465db5c014746a08e978
65388 Author: Stefan Roese <sr@denx.de>
65389 Date:   Thu Jan 18 11:48:10 2007 +0100
65390
65391     [PATCH] Add missing Taishan config file
65392
65393     Signed-off-by: Stefan Roese <sr@denx.de>
65394
65395 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
65396 Author: Heiko Schocher <hs@pollux.denx.de>
65397 Date:   Thu Jan 18 11:28:51 2007 +0100
65398
65399     [PATCH] Fix: Compilerwarnings for SC3 board.
65400                  The EBC Configuration Register is now by CFG_EBC_CFG definable
65401                  Added JFFS2 support for the SC3 board.
65402
65403     Signed-off-by: Heiko Schocher <hs@denx.de>
65404
65405 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
65406 Author: Stefan Roese <sr@denx.de>
65407 Date:   Thu Jan 18 10:25:34 2007 +0100
65408
65409     [PATCH] Add support for AMCC Taishan PPC440GX eval board
65410
65411     Signed-off-by: Stefan Roese <sr@denx.de>
65412
65413 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
65414 Author: Wolfgang Denk <wd@pollux.denx.de>
65415 Date:   Tue Jan 16 18:30:50 2007 +0100
65416
65417     Raname solidcard3 into sc3; add redundant env for sc3
65418
65419 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
65420 Author: Wolfgang Denk <wd@pollux.denx.de>
65421 Date:   Tue Jan 16 12:46:35 2007 +0100
65422
65423     Update default environment for Solidcard3
65424
65425 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
65426 Author: Stefan Roese <sr@denx.de>
65427 Date:   Mon Jan 15 09:46:29 2007 +0100
65428
65429     [PATCH] Fix 440SPe rev B detection from previous patch
65430
65431     Signed-off-by: Stefan Roese <sr@denx.de>
65432
65433 commit a443d31410c571ee8f970da819a44d698fdd6b1f
65434 Author: Heiko Schocher <hs@pollux.denx.de>
65435 Date:   Sun Jan 14 13:35:31 2007 +0100
65436
65437         [FIX] correct I2C Writes for the LM81 Sensor.
65438
65439         Signed-off-by: Heiko Schocher <hs@denx.de>
65440
65441 commit 0bba5452835f19a61204edcda3a58112fd8e2208
65442 Author: Wolfgang Denk <wd@pollux.denx.de>
65443 Date:   Sat Jan 13 11:17:10 2007 +0100
65444
65445     Undo commit 3033ebb2: reset command does not take any arguments
65446
65447     Haiying Wang's modification to the reset command was broken, undo it.
65448
65449     Signed-off-by: Wolfgang Denk <wd@denx.de>
65450
65451 commit 95981778cff0038fd9941044d6a3eda810e33258
65452 Author: Stefan Roese <sr@denx.de>
65453 Date:   Sat Jan 13 08:01:03 2007 +0100
65454
65455     [PATCH] Update 440SP(e) cpu revisions
65456
65457     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
65458
65459     Signed-off-by: Stefan Roese <sr@denx.de>
65460
65461 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
65462 Author: Stefan Roese <sr@denx.de>
65463 Date:   Sat Jan 13 07:59:56 2007 +0100
65464
65465     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
65466
65467     Now the board revision and the current PCI bus speed are printed after
65468     the board message.
65469
65470     Also the EBC initialising is now done via defines in the board config
65471     file.
65472
65473     Signed-off-by: Stefan Roese <sr@denx.de>
65474
65475 commit 36adff362c2c0141ff8a810d42a7e478f779130f
65476 Author: Stefan Roese <sr@denx.de>
65477 Date:   Sat Jan 13 07:59:19 2007 +0100
65478
65479     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
65480
65481     Now the board revision and the current PCI bus speed are printed after
65482     the board message.
65483
65484     Also the EBC initialising is now done via defines in the board config
65485     file.
65486
65487     Signed-off-by: Stefan Roese <sr@denx.de>
65488
65489 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
65490 Author: Stefan Roese <sr@denx.de>
65491 Date:   Sat Jan 13 07:57:51 2007 +0100
65492
65493     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
65494
65495     Now the board revision and the current PCI bus speed are printed after
65496     the board message.
65497
65498     Signed-off-by: Stefan Roese <sr@denx.de>
65499
65500 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
65501 Author: Heiko Schocher <hs@pollux.denx.de>
65502 Date:   Thu Jan 11 15:44:44 2007 +0100
65503
65504         Added support for the SOLIDCARD III board from Eurodesign
65505
65506         Signed-off-by: Heiko Schocher <hs@denx.de>
65507
65508 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
65509 Author: Reinhard Thies <Reinhard.Thies@web.de>
65510 Date:   Wed Jan 10 14:41:14 2007 +0100
65511
65512     Adjusted default environment for cam5200 board.
65513
65514 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
65515 Author: Wolfgang Denk <wd@pollux.denx.de>
65516 Date:   Wed Jan 10 15:35:52 2007 +0100
65517
65518     Update CHANGELOG
65519
65520 commit 787fa15860a57833e50bd30555079a9cd4e519b8
65521 Author: Wolfgang Denk <wd@pollux.denx.de>
65522 Date:   Wed Jan 10 01:28:39 2007 +0100
65523
65524     Fix auto_update for MCC200 board.
65525
65526     The invocation of do_auto_update() is moved to the end of the
65527     misc_init_r() function, after the flash mappings have been
65528     initialized. Please find attached a patch that implements that
65529     change.
65530
65531     Also correct the decoding of the keypad status. With this update, the
65532     key that will trigger the update is Column 2, Row 2.
65533
65534 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
65535 Author: Marian Balakowicz <m8@semihalf.com>
65536 Date:   Wed Jan 10 00:26:15 2007 +0100
65537
65538     CAM5200 flash driver modifications:
65539     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
65540     - add second build target 'cam5200_niosflash' which still uses custom driver
65541
65542 commit 67fea022fa957f59653b5238c7496f80a6b70432
65543 Author: Markus Klotzbuecher <mk@denx.de>
65544 Date:   Tue Jan 9 16:02:48 2007 +0100
65545
65546     SPC1920: cleanup memory contoller setup
65547
65548 commit 8fc2102faa23593c80381437c09f7745a14deb40
65549 Author: Markus Klotzbuecher <mk@denx.de>
65550 Date:   Tue Jan 9 14:57:14 2007 +0100
65551
65552     Fix the cpu speed setup to work with all boards.
65553
65554 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
65555 Author: Markus Klotzbuecher <mk@denx.de>
65556 Date:   Tue Jan 9 14:57:13 2007 +0100
65557
65558     SPC1920: add support for the FM18L08 Ramtron FRAM
65559
65560 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
65561 Author: Markus Klotzbuecher <mk@denx.de>
65562 Date:   Tue Jan 9 14:57:13 2007 +0100
65563
65564     SPC1920: update the HPI register addresses to work with the second
65565     generation of hardware
65566
65567 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
65568 Author: Markus Klotzbuecher <mk@creamnet.de>
65569 Date:   Tue Jan 9 14:57:13 2007 +0100
65570
65571     Miscellanious spc1920 related cleanups
65572
65573 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
65574 Author: Markus Klotzbuecher <mk@denx.de>
65575 Date:   Tue Jan 9 14:57:12 2007 +0100
65576
65577     SPC1920 GO/NOGO led should be set to color red in U-Boot
65578
65579 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
65580 Author: Markus Klotzbuecher <mk@creamnet.de>
65581 Date:   Tue Jan 9 14:57:12 2007 +0100
65582
65583     Add support for the DS3231 RTC
65584
65585 commit 8139567b60d678584b05f0718a681f2047c5e14f
65586 Author: Markus Klotzbuecher <mk@creamnet.de>
65587 Date:   Tue Jan 9 14:57:11 2007 +0100
65588
65589     SMC1 uses external CLK4 instead of BRG on spc1920
65590
65591 commit d8d9de1a02fbd880b613d607143d1f57342affc7
65592 Author: Markus Klotzbuecher <mk@creamnet.de>
65593 Date:   Tue Jan 9 14:57:10 2007 +0100
65594
65595     Update the SPC1920 CMB PLD driver
65596
65597 commit 3f34f869162750e5e999fd140f884f5de952bcfe
65598 Author: Markus Klotzbuecher <mk@creamnet.de>
65599 Date:   Tue Jan 9 14:57:10 2007 +0100
65600
65601     Add / enable I2C support on the spc1920 board
65602
65603 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
65604 Author: Markus Klotzbuecher <mk@creamnet.de>
65605 Date:   Tue Jan 9 14:57:10 2007 +0100
65606
65607     Add support for the tms320671x host port interface (HPI)
65608
65609 commit f4eb54529bb3664c3a562e488b460fe075f79d67
65610 Author: Wolfgang Denk <wd@pollux.denx.de>
65611 Date:   Sun Jan 7 00:13:11 2007 +0100
65612
65613     Prepare for release 1.2.0
65614
65615 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
65616 Author: Stefan Roese <sr@denx.de>
65617 Date:   Sat Jan 6 15:58:09 2007 +0100
65618
65619     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
65620
65621     This patch fixes a problem with an incorrect setup for the refresh
65622     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
65623
65624     Signed-off-by: Stefan Roese <sr@denx.de>
65625
65626 commit f16c1da9577f06c5fc08651a4065537407de4635
65627 Author: Stefan Roese <sr@denx.de>
65628 Date:   Sat Jan 6 15:56:13 2007 +0100
65629
65630     [PATCH] Update ALPR board files
65631
65632     This update brings the ALPR board support to the newest version.
65633     It also fixes a problem with the NAND driver.
65634
65635     Signed-off-by: Stefan Roese <sr@denx.de>
65636
65637 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
65638 Author: Stefan Roese <sr@denx.de>
65639 Date:   Fri Jan 5 11:46:05 2007 +0100
65640
65641     [PATCH] nand: Fix problem with oobsize calculation
65642
65643     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
65644
65645     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
65646     returns a 0x15. In the code fragment below bits [1:0] determine the
65647     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
65648     next field is also ANDed with 0x3. However this is a one bit field
65649     as defined in the Hynix and Samsung parts in the 4th ID byte that
65650     determins the oobsize, not a two bit field. It works on Samsung as
65651     bits[3:2] are 01. However for the Hynix there is a 11 in these two
65652     bits, so the oob size gets messed up.
65653
65654     I checked the correct linux code and the suggested fix from Brian is
65655     also available in the linux nand mtd driver.
65656
65657     Signed-off-by: Stefan Roese <sr@denx.de>
65658
65659 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
65660 Author: Stefan Roese <sr@denx.de>
65661 Date:   Fri Jan 5 10:40:36 2007 +0100
65662
65663     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
65664
65665     This fix will make the MAL burst disabling patch for the Linux
65666     EMAC driver obsolete.
65667
65668     Signed-off-by: Stefan Roese <sr@denx.de>
65669
65670 commit 023889838282b6237b401664f22dd22dfba2c066
65671 Author: Stefan Roese <sr@denx.de>
65672 Date:   Fri Jan 5 10:38:05 2007 +0100
65673
65674     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
65675
65676     This code will optimize the DDR2 controller setup on a board specific
65677     basis.
65678
65679     Note: This code doesn't work right now on the NAND booting image for the
65680     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
65681
65682     Signed-off-by: Stefan Roese <sr@denx.de>
65683
65684 commit cce4acbb68398634b8d011ed7bb0d12269c84230
65685 Author: Bartlomiej Sieka <tur@semihalf.com>
65686 Date:   Thu Dec 28 19:08:21 2006 +0100
65687
65688     Few V38B changes:
65689       - fix a typo in V38B config file
65690       - move watchdog initialisation earlier in the boot process
65691       - add "wdt=off" to default kernel command line (disables kernel watchdog)
65692
65693 commit 92eb729bad876725aeea908d2addba0800620840
65694 Author: Wolfgang Denk <wd@pollux.denx.de>
65695 Date:   Wed Dec 27 01:26:13 2006 +0100
65696
65697     Fix bug in adaption of Stefano Babic's CFI driver patch.
65698
65699 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
65700 Author: Wolfgang Denk <wd@pollux.denx.de>
65701 Date:   Sun Dec 24 01:42:57 2006 +0100
65702
65703     Minor code cleanup.
65704
65705 commit d784fdb05900ada3686d5778783e1fb328e9fb66
65706 Author: Stefano Babic <sbabic@denx.de>
65707 Date:   Tue Dec 12 00:22:42 2006 +0100
65708
65709     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
65710
65711 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
65712 Author: Stefan Roese <sr@denx.de>
65713 Date:   Fri Dec 22 14:29:40 2006 +0100
65714
65715     [PATCH] Fix sequoia flash autodetection (finally correct)
65716
65717     Now 32MByte and 64MByte FLASH is know to work and other
65718     configurations should work too.
65719
65720     Signed-off-by: Stefan Roese <sr@denx.de>
65721
65722 commit 82e5236a8b719543643fd26d5827938ab2b94818
65723 Author: Wolfgang Denk <wd@pollux.denx.de>
65724 Date:   Fri Dec 22 10:30:26 2006 +0100
65725
65726     Minor code cleanup; update CHANGELOG.
65727
65728 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
65729 Author: Heiko Schocher <hs@pollux.denx.de>
65730 Date:   Thu Dec 21 17:17:02 2006 +0100
65731
65732     Added support for the TQM8272 board from TQ
65733
65734     Signed-off-by: Heiko Schocher <hs@denx.de>
65735
65736 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
65737 Author: Heiko Schocher <hs@pollux.denx.de>
65738 Date:   Thu Dec 21 16:14:48 2006 +0100
65739
65740     [PATCH] Add support for the UC101 board from MAN.
65741
65742     Signed-off-by: Heiko Schocher <hs@denx.de>
65743
65744 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
65745 Author: Bartlomiej Sieka <tur@semihalf.com>
65746 Date:   Wed Dec 20 00:29:43 2006 +0100
65747
65748     Fix to make the baudrate changes immediate for the MCF52x2 family.
65749
65750 commit daa6e418bcc0c717752e8de939c213c790286096
65751 Author: Bartlomiej Sieka <tur@semihalf.com>
65752 Date:   Wed Dec 20 00:27:32 2006 +0100
65753
65754     Preliminary support for the iDMR board (ColdFire).
65755
65756 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
65757 Author: Andrei Safronov <safronov@pollux.denx.de>
65758 Date:   Fri Dec 8 16:23:08 2006 +0100
65759
65760     automatic update mechanism
65761
65762 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
65763 Author: roy zang <tie-fei.zang@freescale.com>
65764 Date:   Mon Dec 4 17:56:59 2006 +0800
65765
65766     Slight code clean up.
65767     Add comments, delete duplicate define and remove spaces.
65768     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65769
65770 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
65771 Author: roy zang <tie-fei.zang@freescale.com>
65772 Date:   Mon Dec 4 17:54:21 2006 +0800
65773
65774     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
65775     multiplier table can not refect the real PLL clock behavior of these
65776     processors. Please refer to the hardware specification for detailed
65777     information of the corresponding processors.
65778     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65779
65780 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
65781 Author: roy zang <tie-fei.zang@freescale.com>
65782 Date:   Mon Dec 4 14:46:23 2006 +0800
65783
65784     Remove the static MAC address, ip address, server ip, netmask and
65785     gateway ip for network setting.
65786     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65787
65788 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
65789 Author: roy zang <tie-fei.zang@freescale.com>
65790 Date:   Mon Dec 4 14:33:08 2006 +0800
65791
65792     Remove the duplicate memory test code for mpc744ihpc2 board.
65793     If a memory test is needed, please use the functions in
65794     post/memory.c or memtest command.
65795     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65796
65797 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
65798 Author: roy zang <tie-fei.zang@freescale.com>
65799 Date:   Fri Dec 1 19:01:25 2006 +0800
65800
65801     Fix the exception occuring in RAM table search issue.
65802     The original search_one_table() function code can only processes the search
65803     for the exception occurring in FLASH/ROM, because the exception and fixup
65804     table usually locate in FLASH. If the exception address is also in
65805     FLASH, it will be OK.
65806     If the exception occurs in RAM, after the u-boot relocation, a
65807     relocation offset should be added.
65808
65809     clean up the code in cpu/74xx_7xx/cpu.c
65810
65811     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
65812
65813 commit ee311214e0d216f904feea269599d0934bf71f23
65814 Author: roy zang <tie-fei.zang@freescale.com>
65815 Date:   Fri Dec 1 11:47:36 2006 +0800
65816
65817     Clean up the code according to codestyle:
65818     (1) remove some C++ comments.
65819     (2) remove trailing white space.
65820     (3) remove trailing empty line.
65821     (4) Indentation by table.
65822     (5) remove {} in one line condition.
65823     (6) add space before '(' in function call.
65824     Remove some weird printf () output.
65825     Add necessary comments.
65826     Modified Makefile to support building in a separate directory.
65827
65828 commit dd520bf314c7add4183c5191692180f576f96b60
65829 Author: Wolfgang Denk <wd@pollux.denx.de>
65830 Date:   Thu Nov 30 18:02:20 2006 +0100
65831
65832     Code cleanup.
65833
65834 commit 8d9a8610b8256331132227e9e6585c6bd5742787
65835 Author: Wolfgang Denk <wd@pollux.denx.de>
65836 Date:   Thu Nov 30 01:54:07 2006 +0100
65837
65838     Code cleanup. Update CHANGELOG.
65839
65840 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
65841 Author: Grant Likely <grant.likely@secretlab.ca>
65842 Date:   Wed Nov 29 16:23:42 2006 +0100
65843
65844     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
65845
65846     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
65847     not the XLB frequency.
65848
65849     This patch depends on the previous patches for MPC52xx device tree support
65850
65851     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65852     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
65853
65854 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
65855 Author: Stefan Roese <sr@denx.de>
65856 Date:   Wed Nov 29 15:42:37 2006 +0100
65857
65858     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
65859
65860     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
65861     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
65862     quite similar and share the same board directory "prodrive/p3mx"
65863     and the same config file "p3mx.h".
65864
65865     Signed-off-by: Stefan Roese <sr@denx.de>
65866
65867 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
65868 Author: Stefan Roese <sr@denx.de>
65869 Date:   Wed Nov 29 12:53:15 2006 +0100
65870
65871     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
65872
65873     In the bootvx command the load address was only read from the env
65874     variable "loadaddr" and not optionally passed as paramter as described
65875     in the help. This is fixed with this patch. The behaviour is now the
65876     same as in the bootelf command.
65877
65878     Signed-off-by: Stefan Roese <sr@denx.de>
65879
65880 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
65881 Author: Stefan Roese <sr@denx.de>
65882 Date:   Wed Nov 29 12:03:57 2006 +0100
65883
65884     [PATCH] include/ppc440.h minor error affecting interrupts
65885
65886     Fixed include/ppc440.c for UIC address Bug
65887
65888     Corrects bug affecting the addresses for the universal interrupt
65889     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
65890
65891     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
65892     Signed-off-by: Stefan Roese <sr@denx.de>
65893
65894 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
65895 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65896 Date:   Tue Nov 28 16:17:27 2006 -0600
65897
65898     Make fsl-i2c not conflict with SOFT I2C
65899
65900     Signed-off-by: Timur Tabi <timur@freescale.com>
65901
65902 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
65903 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
65904 Date:   Tue Nov 28 16:17:18 2006 -0600
65905
65906     Fix I2C master address initialization.
65907
65908     Signed-off-by: Timur Tabi <timur@freescale.com>
65909
65910 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
65911 Author: Kim Phillips <kim.phillips@freescale.com>
65912 Date:   Tue Nov 28 23:31:19 2006 -0600
65913
65914     Assign maintainers for mpc8349emds and mpc8360emds
65915
65916     Dave for mpc8360emds, and me for mpc8349emds.
65917
65918 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
65919 Author: Kim Phillips <kim.phillips@freescale.com>
65920 Date:   Tue Nov 28 23:28:33 2006 -0600
65921
65922     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
65923
65924     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
65925     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
65926
65927 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
65928 Author: Timur Tabi <timur@freescale.com>
65929 Date:   Tue Nov 28 12:09:35 2006 -0600
65930
65931     mpc83xx: Miscellaneous code style fixes
65932
65933     Implement various code style fixes and similar changes.
65934
65935     Signed-off-by: Timur Tabi <timur@freescale.com>
65936
65937 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
65938 Author: Stefan Roese <sr@denx.de>
65939 Date:   Tue Nov 28 17:55:49 2006 +0100
65940
65941     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
65942
65943     This patch adds the code and configuration necessary to boot with an
65944     arch/powerpc Linux kernel.
65945
65946     Signed-off-by: Grant Likely <grant.likely@gmail.com>
65947     Acked-by: Jon Loeliger <jdl@freescale.com>
65948
65949 commit e732faec95a83cb468b4850ae807c8301dde8f6a
65950 Author: Stefan Roese <sr@denx.de>
65951 Date:   Tue Nov 28 16:09:24 2006 +0100
65952
65953     [PATCH] PPC4xx: 440SP Rev. C detection added
65954
65955     Signed-off-by: Stefan Roese <sr@denx.de>
65956
65957 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
65958 Author: Stefan Roese <sr@denx.de>
65959 Date:   Tue Nov 28 11:04:45 2006 +0100
65960
65961     [PATCH] nand: Fix patch merge problem
65962
65963     Signed-off-by: Stefan Roese <sr@denx.de>
65964
65965 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
65966 Author: Stefan Roese <sr@denx.de>
65967 Date:   Tue Nov 28 11:04:45 2006 +0100
65968
65969     [PATCH] nand: Fix patch merge problem
65970
65971     Signed-off-by: Stefan Roese <sr@denx.de>
65972
65973 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
65974 Author: Wolfgang Denk <wd@pollux.denx.de>
65975 Date:   Mon Nov 27 22:53:53 2006 +0100
65976
65977     Update CHANGELOG
65978
65979 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
65980 Author: Stefan Roese <sr@denx.de>
65981 Date:   Mon Nov 27 17:43:25 2006 +0100
65982
65983     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
65984
65985     Patch below corrects the setting of the zmiifer register, it was
65986     overwritting the register rather than ORing the settings.
65987
65988     Signed-off-by: Neil Wilson <NWilson@airspan.com>
65989     Signed-off-by: Stefan Roese <sr@denx.de>
65990
65991 commit d1a72545296800b7e219f93104ad5836f0003d66
65992 Author: Stefan Roese <sr@denx.de>
65993 Date:   Mon Nov 27 17:34:10 2006 +0100
65994
65995     [PATCH] Select NAND embedded environment from board configuration
65996
65997     The current NAND Bootloader setup forces the environment
65998     variables to be in line with the bootloader. This change
65999     enables the configuration to be made in the board include
66000     file instead so that it can be individually enabled.
66001
66002     Signed-off-by: Nick Spence <nick.spence@freescale.com>
66003     Signed-off-by: Stefan Roese <sr@denx.de>
66004
66005 commit 15784862857c3c2214498defcfed84ff137fb81e
66006 Author: Stefan Roese <sr@denx.de>
66007 Date:   Mon Nov 27 17:22:19 2006 +0100
66008
66009     [PATCH] nand_wait() timeout fixes
66010
66011     Two fixes for the nand_wait() function in
66012     drivers/nand/nand_base.c:
66013
66014     1. Use correct timeouts. The original timeouts in Linux
66015     source are 400ms and 20ms not 40s and 20s
66016
66017     2. Return correct error value in case of timeout. 0 is
66018     interpreted as OK.
66019
66020     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
66021     Signed-off-by: Stefan Roese <sr@denx.de>
66022
66023 commit da5553b095bf04f4f109ad7e565dae3aba47b230
66024 Author: Stefan Roese <sr@denx.de>
66025 Date:   Mon Nov 27 17:04:06 2006 +0100
66026
66027     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
66028
66029     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
66030     arguments to bootm.  It removes the getenv("disable_of") test that used
66031     to be used for this purpose.
66032
66033     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
66034     Acked-by: Jon Loeliger <jdl@freescale.com>
66035
66036 commit a9398e018593782c5fa7d0741955fc1256b34c1e
66037 Author: Wolfgang Denk <wd@pollux.denx.de>
66038 Date:   Mon Nov 27 15:32:42 2006 +0100
66039
66040     Minor code cleanup. Update CHANGELOG.
66041
66042 commit 1729b92cde575476684bffe819d0b7791b57bff2
66043 Author: Stefan Roese <sr@denx.de>
66044 Date:   Mon Nov 27 14:52:04 2006 +0100
66045
66046     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
66047
66048     Signed-off-by: Stefan Roese <sr@denx.de>
66049
66050 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
66051 Author: Stefan Roese <sr@denx.de>
66052 Date:   Mon Nov 27 14:49:51 2006 +0100
66053
66054     [PATCH] alpr: remove unused board specific flash driver
66055
66056     Signed-off-by: Stefan Roese <sr@denx.de>
66057
66058 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
66059 Author: Stefan Roese <sr@denx.de>
66060 Date:   Mon Nov 27 14:48:41 2006 +0100
66061
66062     [PATCH] 4xx: Fix problem with board specific reset code
66063
66064     Signed-off-by: Stefan Roese <sr@denx.de>
66065
66066 commit ec0c2ec725aec9524a177a77ce75559e644a931a
66067 Author: Stefan Roese <sr@denx.de>
66068 Date:   Mon Nov 27 14:46:06 2006 +0100
66069
66070     [PATCH] Remove testing 4xx enet PHY setup
66071
66072     Signed-off-by: Stefan Roese <sr@denx.de>
66073
66074 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
66075 Author: Stefan Roese <sr@denx.de>
66076 Date:   Mon Nov 27 14:12:17 2006 +0100
66077
66078     [PATCH] Update Prodrive ALPR board support (440GX)
66079
66080     Signed-off-by: Stefan Roese <sr@denx.de>
66081
66082 commit 58b485776698c3d71ec5a215e392123b4c15afa3
66083 Author: Markus Klotzbuecher <mk@denx.de>
66084 Date:   Mon Nov 27 11:51:21 2006 +0100
66085
66086     Add a small README with information on the generic ohci driver.
66087
66088 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
66089 Author: Markus Klotzbuecher <mk@denx.de>
66090 Date:   Mon Nov 27 11:46:46 2006 +0100
66091
66092     Fix some endianness issues related to the generic ohci driver
66093
66094 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
66095 Author: Markus Klotzbuecher <mk@denx.de>
66096 Date:   Mon Nov 27 11:44:58 2006 +0100
66097
66098     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
66099     to choose between the old and the generic OHCI drivers.
66100
66101 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
66102 Author: Markus Klotzbuecher <mk@denx.de>
66103 Date:   Mon Nov 27 11:43:09 2006 +0100
66104
66105     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
66106     and adapted board configs TQM5200 and yosemite accordingly. This commit
66107     also makes the maximum number of root hub ports configurable
66108     (CFG_USB_OHCI_MAX_ROOT_PORTS).
66109
66110 commit 78d620ebb5871d252270dedfad60c6568993b780
66111 Author: Wolfgang Denk <wd@atlas.denx.de>
66112 Date:   Thu Nov 23 22:58:58 2006 +0100
66113
66114     Updates for TQM5200 modules:
66115     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
66116     - simplify "udate" definitions
66117
66118 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
66119 Author: Stefan Roese <sr@denx.de>
66120 Date:   Wed Nov 22 13:20:50 2006 +0100
66121
66122     [PATCH] PPC4xx start.S: Fix for processor errata
66123
66124     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
66125     errata 1.12: 440_33 by moving patch up in code.
66126
66127     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
66128     Signed-off-by: Stefan Roese <sr@denx.de>
66129
66130 commit 4ef6251403f637841000e0fef9e832aa01339822
66131 Author: Stefan Roese <sr@denx.de>
66132 Date:   Mon Nov 20 20:39:52 2006 +0100
66133
66134     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
66135
66136     Signed-off-by: Stefan Roese <sr@denx.de>
66137
66138 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
66139 Author: Wolfgang Denk <wd@pollux.denx.de>
66140 Date:   Mon Nov 20 10:28:30 2006 +0100
66141
66142     Update CHANGELOG
66143
66144 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
66145 Author: Stefan Roese <sr@denx.de>
66146 Date:   Mon Nov 13 13:55:24 2006 +0100
66147
66148     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
66149
66150        * Adds support for AMD command set Top Boot flash geometry reversal
66151        * Adds support for reading JEDEC Manufacturer ID and Device ID
66152        * Adds support for displaying command set, manufacturer id and
66153          device ids (flinfo)
66154        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
66155        * Removes outdated change history (refer to git log instead)
66156
66157     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
66158     Signed-off-by: Stefan Roese <sr@denx.de>
66159
66160 commit b21b511d4c50408f4853f46f06b601272196223f
66161 Author: Wolfgang Denk <wd@pollux.denx.de>
66162 Date:   Sun Nov 12 21:13:23 2006 +0100
66163
66164     Update CHANGELOG
66165
66166 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
66167 Author: Bartlomiej Sieka <tur@semihalf.com>
66168 Date:   Sat Nov 11 22:48:22 2006 +0100
66169
66170     Disable the watchdog in the default config for the V38B board.
66171
66172 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
66173 Author: Bartlomiej Sieka <tur@semihalf.com>
66174 Date:   Sat Nov 11 22:43:00 2006 +0100
66175
66176     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
66177     group is enabled for USB earlier (in cpu_init_f() instead of
66178     usb_lowlevel_init()).
66179
66180 commit 91650b3e4de688038d4f71279c44858e3e2c6870
66181 Author: Wolfgang Denk <wd@pollux.denx.de>
66182 Date:   Mon Nov 6 17:06:36 2006 +0100
66183
66184     Sequential accesses to non-existent memory must be synchronized,
66185     at least on G2 cores.
66186
66187     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
66188
66189 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
66190 Author: Timur Tabi <timur@freescale.com>
66191 Date:   Fri Nov 3 19:15:00 2006 -0600
66192
66193     mpc83xx: Update 83xx to use fsl_i2c.c
66194
66195     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
66196     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
66197     Added multiple I2C bus support to fsl_i2c.c.
66198
66199     Signed-off-by: Timur Tabi <timur@freescale.com>
66200
66201 commit d239d74b1c937984bc519083a8e7de373a390f06
66202 Author: Timur Tabi <timur@freescale.com>
66203 Date:   Fri Nov 3 12:00:28 2006 -0600
66204
66205     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
66206
66207     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
66208     tree matches the other 8xxx trees.
66209
66210     Signed-off-by: Timur Tabi <timur@freescale.com>
66211
66212 commit f7fb2e703ec9688541416962724adff70a7322cb
66213 Author: Kim Phillips <kim.phillips@freescale.com>
66214 Date:   Thu Nov 2 19:47:11 2006 -0600
66215
66216     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
66217
66218 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
66219 Author: Dave Liu <daveliu@freescale.com>
66220 Date:   Thu Nov 2 18:05:50 2006 -0600
66221
66222     mpc83xx: Fix the incorrect dcbz operation
66223
66224     The 834x rev1.x silicon has one CPU5 errata.
66225
66226     The issue is when the data cache locked with
66227     HID0[DLOCK], the dcbz instruction looks like no-op inst.
66228
66229     The right behavior of the data cache is when the data cache
66230     Locked with HID0[DLOCK], the dcbz instruction allocates
66231     new tags in cache.
66232
66233     The 834x rev3.0 and later and 8360 have not this bug inside.
66234
66235     So, when 834x rev3.0/8360 are working with ECC, the dcbz
66236     instruction will corrupt the stack in cache, the processor will
66237     checkstop reset.
66238
66239     However, the 834x rev1.x can work with ECC with these code,
66240     because the sillicon has this cache bug. The dcbz will not
66241     corrupt the stack in cache.
66242     Really, it is the fault code running on fault sillicon.
66243
66244     This patch fix the incorrect dcbz operation. Instead of
66245     CPU FP writing to initialise the ECC.
66246
66247     CHANGELOG:
66248     * Fix the incorrect dcbz operation instead of CPU FP
66249     writing to initialise the ECC memory. Otherwise, it
66250     will corrupt the stack in cache, The processor will checkstop
66251     reset.
66252
66253     Signed-off-by: Dave Liu <daveliu@freescale.com>
66254
66255 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
66256 Author: Kim Phillips <kim.phillips@freescale.com>
66257 Date:   Wed Nov 1 00:10:40 2006 -0600
66258
66259     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
66260
66261     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
66262     STDOUT_PATH configuration bits to mpc8349emds,
66263     mpc8349itx, and mpc8360emds board code.
66264
66265     redo environment to use bootm with the fdtaddr
66266     for booting ARCH=powerpc kernels by default,
66267     and provide default fdtaddr values.
66268
66269 commit 48041365b3420589ad464ebc7752e0053538b729
66270 Author: Kim Phillips <kim.phillips@freescale.com>
66271 Date:   Wed Nov 1 00:07:25 2006 -0600
66272
66273     mpc83xx: change ft code to modify local-mac-address property
66274
66275     Update 83xx OF code to update local-mac-address properties
66276     for ethernet instead of the obsolete 'address' property.
66277
66278 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
66279 Author: Timur Tabi <timur@freescale.com>
66280 Date:   Tue Oct 31 21:23:16 2006 -0600
66281
66282     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
66283
66284     This patch also adds an improved I2C set_speed(), which handles all clock
66285     frequencies.
66286
66287     Signed-off-by: Timur Tabi <timur@freescale.com>
66288
66289 commit ac4b5622ce050b5ee1e154b98df630d778661632
66290 Author: Dave Liu <daveliu@freescale.com>
66291 Date:   Tue Oct 31 19:54:59 2006 -0600
66292
66293     mpc83xx: add the README.mpc8360emds
66294
66295     add doc/README.mpc8360emds to accompany the new board support
66296
66297 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
66298 Author: Dave Liu <daveliu@freescale.com>
66299 Date:   Fri Nov 3 12:11:15 2006 -0600
66300
66301     mpc83xx: add QE ethernet support
66302
66303     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
66304
66305 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
66306 Author: Dave Liu <daveliu@freescale.com>
66307 Date:   Fri Nov 3 19:33:44 2006 -0600
66308
66309     mpc83xx: Add MPC8360EMDS basic board support
66310
66311     Add support for the Freescale MPC8360EMDS board.
66312     Includes DDR, DUART, Local Bus, PCI.
66313
66314 commit 23892e49352de74f7fac36ff90bb1be143d195e3
66315 Author: Dave Liu <daveliu@freescale.com>
66316 Date:   Tue Oct 31 19:30:40 2006 -0600
66317
66318     mpc83xx: add the QUICC Engine (QE) immap file
66319
66320     common QE immap file.  Also required for 8360.
66321
66322 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
66323 Author: Dave Liu <daveliu@freescale.com>
66324 Date:   Tue Oct 31 19:25:38 2006 -0600
66325
66326     mpc83xx: Add 8360 specifics to 83xx immap
66327
66328     Mainly add QE device dependencies, with appropriate 8360 protection.
66329     Lindent also run.
66330
66331 commit 988833324a7fda482c8ac3ca23eb539f8232e404
66332 Author: Timur Tabi <timur@freescale.com>
66333 Date:   Tue Oct 31 19:14:41 2006 -0600
66334
66335     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
66336
66337     PREREQUISITE PATCHES:
66338
66339     * This patch can only be applied after the following patches have been applied:
66340
66341       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
66342       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
66343
66344     CHANGELOG:
66345
66346     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
66347       the clock for the 2nd USB board (Linux kernel will hang otherwise),
66348       and fix the CONFIG_BOOTARGS macro.
66349
66350     Signed-off-by: Timur Tabi <timur@freescale.com>
66351
66352 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
66353 Author: Timur Tabi <timur@freescale.com>
66354 Date:   Tue Oct 31 18:44:42 2006 -0600
66355
66356     mpc83xx: Add support for the MPC8349E-mITX
66357
66358     PREREQUISITE PATCHES:
66359
66360     * This patch can only be applied after the following patches have been applied:
66361
66362       1) DNX#2006090742000024 "Add support for multiple I2C buses"
66363       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
66364       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
66365       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
66366       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
66367
66368     CHANGELOG:
66369
66370     * Add support for the Freescale MPC8349E-mITX reference design platform.
66371       The second TSEC (Vitesse 7385 switch) is not supported at this time.
66372
66373     Signed-off-by: Timur Tabi <timur@freescale.com>
66374
66375 commit 183da6d9b446cc12123455844ad1187e2375626f
66376 Author: Ben Warren <bwarren@qstreams.com>
66377 Date:   Tue Sep 12 10:15:53 2006 -0400
66378
66379     Additional MPC8349 support for multibus i2c
66380
66381     Hello,
66382
66383     Here is a patch for a file that was accidentally left out of a previous
66384     attempt.
66385
66386     It accompanies the patch with ticket DNX#2006090742000024
66387
66388     CHANGELOG:
66389             Change PCI initialization to use new multi-bus I2C API.
66390
66391     regards,
66392     Ben
66393
66394 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
66395 Author: Ben Warren <bwarren@qstreams.com>
66396 Date:   Thu Sep 7 16:51:04 2006 -0400
66397
66398     Multi-bus I2C implementation of MPC834x
66399
66400     Hello,
66401
66402     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
66403     family and the MPC8349EMDS board in particular.
66404     This patch requires Patch 1 (Add support for multiple I2C buses).
66405     Testing was performed on a 533MHz board.
66406
66407     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
66408
66409     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66410
66411     CHANGELOG:
66412             Implemented driver-level code to support two I2C buses on the
66413     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
66414     are 50kHz, 100kHz and 400kHz on each bus.
66415
66416     regards,
66417     Ben
66418
66419 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
66420 Author: Ben Warren <bwarren@qstreams.com>
66421 Date:   Thu Sep 7 16:50:54 2006 -0400
66422
66423     Add support for multiple I2C buses
66424
66425     Hello,
66426
66427     Attached is a patch providing support for multiple I2C buses at the
66428     command level.  The second part of the patch includes an implementation
66429     for the MPC834x CPU and MPC8349EMDS board.
66430
66431     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
66432
66433     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66434
66435     Overview:
66436
66437     1. Include new 'i2c' command (based on USB implementation) using
66438     CONFIG_I2C_CMD_TREE.
66439
66440     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
66441     the commands to change bus number and speed are only available under the
66442     new 'i2c' command mentioned in the first bullet.
66443
66444     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
66445     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
66446     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
66447
66448     CHANGELOG:
66449             Added new 'i2c' master command for all I2C interaction.  This is
66450     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
66451     setting I2C bus speed as well as changing the active bus if the board
66452     has more than one (conditionally compiled with
66453     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
66454     Updated README.
66455
66456     regards,
66457     Ben
66458
66459 commit bed85caf872714ebf53013967a695c9d63acfc68
66460 Author: Timur Tabi <timur@freescale.com>
66461 Date:   Tue Oct 31 18:13:36 2006 -0600
66462
66463     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
66464
66465     CHANGELOG:
66466
66467     * Errata DDR6, which affects all current MPC 834x processors, lists changes
66468       required to maintain compatibility with various types of DDR memory.  This
66469       patch implements those changes.
66470
66471     Signed-off-by: Timur Tabi <timur@freescale.com>
66472
66473 commit afd6e470f639883002c7c59d562690a5cb0f4865
66474 Author: Timur Tabi <timur@freescale.com>
66475 Date:   Wed Oct 25 18:45:23 2006 -0500
66476
66477     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
66478
66479 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
66480 Author: Timur Tabi <timur@freescale.com>
66481 Date:   Tue Aug 22 17:07:00 2006 -0500
66482
66483     mpc83xx: Add support for variable flash memory sizes on 83xx systems
66484
66485     CHANGELOG:
66486
66487     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
66488        window registers, instead of using a hard-coded value of 8MB.
66489
66490     Signed-off-by: Timur Tabi <timur@freescale.com>
66491
66492 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
66493 Author: Tanya Jiang <tanya.jiang@freescale.com>
66494 Date:   Thu Aug 3 18:38:13 2006 +0800
66495
66496     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
66497
66498     Unified TQM834x variable names with 83xx and consolidated macro
66499     in preparation for the 8360 and other upcoming 83xx devices.
66500
66501     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
66502
66503 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
66504 Author: Dave Liu <daveliu@freescale.com>
66505 Date:   Wed Oct 25 14:41:21 2006 -0500
66506
66507     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
66508
66509     Incorporated the common unified variable names and the changes in preparation
66510     for releasing mpc8360 patches.
66511
66512     Signed-off-by: Dave Liu <daveliu@freescale.com>
66513
66514 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
66515 Author: Tanya Jiang <tanya.jiang@freescale.com>
66516 Date:   Thu Aug 3 18:36:02 2006 +0800
66517
66518     mpc83xx: Fix missing build for mpc8349emds pci.c
66519
66520     Make pci build for mpc8349emds
66521
66522     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
66523
66524 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
66525 Author: Tanya Jiang <tanya.jiang@freescale.com>
66526 Date:   Thu Aug 3 18:39:49 2006 +0800
66527
66528     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
66529
66530     Removed unused file resetvec.S for mpc83xx cpu
66531
66532     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
66533
66534 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
66535 Author: Nick Spence <Nick.Spence@freescale.com>
66536 Date:   Sat Sep 30 00:32:59 2006 -0700
66537
66538     NAND Flash verify across block boundaries
66539
66540     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
66541     defined
66542     and the write crosses a block boundary. The pointer to the verification
66543     buffer (bufstart) is not being updated to reflect the starting of the
66544     new
66545     block so the verification of the second block fails.
66546
66547     CHANGELOG:
66548
66549     * Fix NAND FLASH page verification across block boundaries
66550
66551 commit f484dc791a3932537213c43c654cc1295c64b84c
66552 Author: Nick Spence <nick.spence@freescale.com>
66553 Date:   Thu Sep 7 07:39:46 2006 -0700
66554
66555     Added RGMII support to the TSECs and Marvell 881111 Phy
66556
66557     Added a phy initialization to adjust the RGMII RX and TX timing
66558     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
66559
66560     Signed-off-by: Nick Spence <nick.spence@freescale.com>
66561
66562 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
66563 Author: roy zang <tie-fei.zang@freescale.com>
66564 Date:   Fri Nov 3 13:10:00 2006 +0800
66565
66566     Remove some unused CFG define.
66567     undef CFG_DRAM_TEST
66568
66569 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
66570 Author: roy zang <tie-fei.zang@freescale.com>
66571 Date:   Fri Nov 3 13:07:36 2006 +0800
66572
66573     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
66574     Both work. 0xFF000000 seems more reasonable.
66575
66576 commit c59200443072353044aa4bf737a5a60f9a9af231
66577 Author: Wolfgang Denk <wd@pollux.denx.de>
66578 Date:   Thu Nov 2 15:15:01 2006 +0100
66579
66580     Release U-Boot 1.1.6
66581
66582 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
66583 Author: roy zang <tie-fei.zang@freescale.com>
66584 Date:   Thu Nov 2 19:14:48 2006 +0800
66585
66586     This patch comes from Yuli's posted patch on 8/8/2006
66587     titled "CFI Driver Little-Endian write Issue".
66588
66589     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
66590
66591     If that patch applied, please discard this one.
66592     Until now , I do not see his patch is applied. So please apply this one.
66593
66594     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
66595     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66596
66597 commit b825f158e449e1e9cf74c08e572955e122394c96
66598 Author: roy zang <tie-fei.zang@freescale.com>
66599 Date:   Thu Nov 2 19:12:31 2006 +0800
66600
66601     Tsi108 on chip i2c support.
66602
66603     The i2c  Interface provides a master-only, serial interface that can be
66604     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
66605     device reset.
66606
66607     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66608     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66609
66610 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
66611 Author: roy zang <tie-fei.zang@freescale.com>
66612 Date:   Thu Nov 2 19:11:06 2006 +0800
66613
66614     Tsi108 on chip pci controller support.
66615
66616     If there is no pci card, the tsi108/109 pci configure read will
66617     cause a machine check exception to the processor. PCI error should
66618     also be cleared after the read.
66619
66620     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66621     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66622
66623 commit d1927cee977126e547ceeba23e4f978f377cfb8f
66624 Author: roy zang <tie-fei.zang@freescale.com>
66625 Date:   Thu Nov 2 19:08:55 2006 +0800
66626
66627     Tundra tsi108 on chip Ethernet controller support.
66628
66629     The following is a brief description of the Ethernet controller:
66630     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
66631     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
66632     to manage the two physical connection devices (PHYs).  Each Ethernet port
66633     has its own statistics monitor that tracks and reports key interface
66634     statistics.  Each port supports a 256-entry hash table for address
66635     filtering.  In addition, each port is bridged to the Switch Fabric
66636     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
66637
66638     Each Ethernet port also has a pair of internal Ethernet DMA channels to
66639     support the transmit and receive data flows.  The Ethernet DMA channels
66640     use descriptors set up in memory, the memory map of the device, and
66641     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
66642     handles arbitration for the Switch Fabric.  The Controller also
66643     has a register businterface for register accesses and status monitor
66644     control.
66645
66646     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
66647     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
66648     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
66649     data flows to and from the Ethernet Controller through the Switch Fabric.
66650
66651     Each Ethernet port uses its transmit and receive DMA channels to manage
66652     data flows through buffer descriptors that are predefined by the
66653     system (the descriptors can exist anywhere in the system memory map).
66654     These descriptors are data structures that point to buffers filled
66655     with data ready to transmit over Ethernet, or they point to empty
66656     buffers ready to receive data from Ethernet.
66657
66658     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66659     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66660
66661 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
66662 Author: roy zang <tie-fei.zang@freescale.com>
66663 Date:   Thu Nov 2 19:01:33 2006 +0800
66664
66665     Tundra tsi108 header file.
66666
66667     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
66668     PowerPC processors that offers numerous system interconnect options for
66669     embedded application designers. The Tsi108 can interconnect 60x or
66670     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
66671     and Flash. Provided the macro define for tsi108 chip.
66672
66673     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66674     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66675
66676 commit 87c4db09699c6b89176b31004afcb83eb1585d47
66677 Author: roy zang <tie-fei.zang@freescale.com>
66678 Date:   Thu Nov 2 18:59:15 2006 +0800
66679
66680     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
66681     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
66682
66683     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66684     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66685
66686 commit 27801b8ab11c61b577e45742a515bb3b23b80241
66687 Author: roy zang <tie-fei.zang@freescale.com>
66688 Date:   Thu Nov 2 18:57:21 2006 +0800
66689
66690     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
66691     Make ,config.mk and link file for the mpc7448hpc2 board.
66692
66693     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66694     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66695
66696 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
66697 Author: roy zang <tie-fei.zang@freescale.com>
66698 Date:   Thu Nov 2 18:55:04 2006 +0800
66699
66700     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
66701     The mpc7448hpc2 board support header file.
66702
66703     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66704     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66705
66706 commit 625bb5ddb50b243f931262ca8c46956409471917
66707 Author: roy zang <tie-fei.zang@freescale.com>
66708 Date:   Thu Nov 2 18:52:21 2006 +0800
66709
66710     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
66711     The mpc7448hpc2 board support low level assemble language init code.
66712
66713     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66714     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66715
66716 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
66717 Author: roy zang <tie-fei.zang@freescale.com>
66718 Date:   Thu Nov 2 18:49:51 2006 +0800
66719
66720     General code modification for mpc7448hpc2 board support.
66721     1. Add 7447A and 7448 processor support.
66722     2. Add the following flags.
66723
66724     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
66725     (such as by switch on board), this flag should be set.
66726
66727     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
66728     relocates to RAM, this flag should be set.
66729
66730     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
66731     system hang in exception, this flag should be set.
66732
66733     There is a design issue for tsi108/109 pci configure  read. When pci scan
66734     the slots, if there is no pci card, the tsi108/9 will cause a machine
66735     check exception for mpc7448 processor.
66736
66737     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
66738     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66739
66740 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
66741 Author: roy zang <tie-fei.zang@freescale.com>
66742 Date:   Thu Nov 2 18:34:47 2006 +0800
66743
66744     Add README file for mpc7448hpc2 board.
66745     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
66746
66747 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
66748 Author: Bartlomiej Sieka <tur@semihalf.com>
66749 Date:   Wed Nov 1 02:04:38 2006 +0100
66750
66751     Finish up support for MarelV38B board
66752      - add watchdog support
66753      - enable GPIO_WKUP_7 pin for input
66754      - code cleanup
66755
66756 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
66757 Author: Bartlomiej Sieka <tur@semihalf.com>
66758 Date:   Wed Nov 1 01:45:46 2006 +0100
66759
66760     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
66761           * remove warnings when compiling ethaddr.c
66762           * adjust linker script (fixes a crash resulting from incorrect
66763           definition of __u_boot_cmd_start)
66764     - Some MarelV38B code cleanup.
66765
66766 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
66767 Author: Bartlomiej Sieka <tur@semihalf.com>
66768 Date:   Wed Nov 1 01:38:16 2006 +0100
66769
66770     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
66771       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
66772       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
66773       MPC5XXX_WU_GPIO_DATA_O for affected boards.
66774
66775     - Add defintions for some MPC5XXX GPIO pins.
66776
66777 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
66778 Author: Bartlomiej Sieka <tur@semihalf.com>
66779 Date:   Wed Nov 1 01:34:29 2006 +0100
66780
66781     Changed MarelV38B board make target to lowercase. Config file cleanup.
66782
66783 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
66784 Author: Wolfgang Denk <wd@pollux.denx.de>
66785 Date:   Sun Oct 29 01:03:51 2006 +0200
66786
66787     Automatically adjust ARFLAGS so "make -s" is really silent.
66788
66789 commit fae684e89844856383bdf101440889557df3e6b1
66790 Author: Stefan Roese <sr@denx.de>
66791 Date:   Sat Oct 28 16:45:00 2006 +0200
66792
66793     [PATCH] omap925.c: Remove unused functions
66794
66795     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66796     Signed-off-by: Stefan Roese <sr@denx.de>
66797
66798 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
66799 Author: Stefan Roese <sr@denx.de>
66800 Date:   Sat Oct 28 17:12:58 2006 +0200
66801
66802     [PATCH] Add some missing machtypes for netstar & voiceblue boards
66803
66804     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
66805     numbers in code.
66806
66807     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66808     Signed-off-by: Stefan Roese <sr@denx.de>
66809
66810 commit 856f054410cef52d868feb330168b2a4c4091328
66811 Author: Stefan Roese <sr@denx.de>
66812 Date:   Sat Oct 28 15:55:52 2006 +0200
66813
66814     [PATCH] NAND: Partition name support added to NAND subsystem
66815
66816     chpart, nboot and NAND subsystem related commands now accept also partition
66817     name to specify offset.
66818
66819     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
66820     Signed-off-by: Stefan Roese <sr@denx.de>
66821
66822 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
66823 Author: Wolfgang Denk <wd@pollux.denx.de>
66824 Date:   Sat Oct 28 02:29:44 2006 +0200
66825
66826     Update CHANGELOG.
66827
66828 commit 2751a95abd1b96911081c357e96a12fa97b40dee
66829 Author: Wolfgang Denk <wd@pollux.denx.de>
66830 Date:   Sat Oct 28 02:29:14 2006 +0200
66831
66832     Enable commandline editing and hush shell on all TQM boards.
66833
66834 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
66835 Author: Wolfgang Denk <wd@pollux.denx.de>
66836 Date:   Sat Oct 28 02:28:02 2006 +0200
66837
66838     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
66839
66840 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
66841 Author: Wolfgang Denk <wd@denx.de>
66842 Date:   Sat Oct 28 01:14:32 2006 +0200
66843
66844     Check for illegal character '=' in environment variable names.
66845
66846     Make sure the string passed as variable name does not contain a '='
66847     character. This not only prevents the common error or typing
66848     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
66849     also closes a backdoor which allowed to delete write-protected
66850     environment variables, for example by using "setenv ethaddr=".
66851
66852 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
66853 Author: Wolfgang Denk <wd@pollux.denx.de>
66854 Date:   Sat Oct 28 00:38:39 2006 +0200
66855
66856     Minor code cleanup.
66857
66858 commit e11887a77d81077416a2d1c5e0354916fee8c034
66859 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66860 Date:   Thu Oct 26 17:55:31 2006 +0200
66861
66862     Don't pass any debug options directly to the assembler
66863
66864     When passing the -g option to gcc, gcc automatically selects a
66865     suitable --g<format> option to pass on to the assembler.
66866     Thus, there's no point in forcing a specific debug option on the
66867     assembler using the -Wa mechanism.
66868
66869     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66870
66871 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
66872 Author: Jon Loeliger <jdl@freescale.com>
66873 Date:   Fri Oct 27 07:47:22 2006 -0500
66874
66875     MPC86xx: Cleaned up unused and conditionally used local variables.
66876
66877     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66878
66879 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
66880 Author: Wolfgang Denk <wd@pollux.denx.de>
66881 Date:   Fri Oct 27 11:55:21 2006 +0200
66882
66883     Fix "ar" flags in some Makefiles to allow for silent "make -s"
66884
66885 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
66886 Author: Ben Warren <bwarren@qstreams.com>
66887 Date:   Thu Oct 26 14:38:25 2006 -0400
66888
66889     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
66890     to a TSEC (e.g. a switch is connected via RMII) or
66891     if the PHY is defective/incorrectly configured.
66892
66893     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66894
66895 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
66896 Author: Ben Warren <bwarren@qstreams.com>
66897 Date:   Thu Oct 26 14:38:25 2006 -0400
66898
66899     Fix TSEC driver: avoid crashes if PHY is not attached
66900     to a TSEC (e.g. a switch is connected via RMII) or
66901     if the PHY is defective/incorrectly configured.
66902
66903     Signed-off-by: Ben Warren <bwarren@qstreams.com>
66904
66905 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
66906 Author: Wolfgang Denk <wd@pollux.denx.de>
66907 Date:   Thu Oct 26 16:24:31 2006 +0200
66908
66909     Code cleanup.
66910
66911 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
66912 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66913 Date:   Wed Oct 25 15:48:59 2006 +0200
66914
66915     Finish up support for the ATSTK1000/ATSTK1002 boards
66916
66917     Add atstk1002_config target to Makefile and move the AVR32 section
66918     down below Blackfin so that it doesn't end up in the middle of
66919     MIPS.
66920
66921     Drop the autogenerated linker script thing for now. Will have to
66922     revisit how to handle chips with different flash and RAM layout
66923     later.
66924
66925     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66926
66927 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
66928 Author: Kumar Gala <galak@kernel.crashing.org>
66929 Date:   Tue Oct 24 23:47:37 2006 -0500
66930
66931     Added support for Multi-Image files that contain a device tree
66932
66933     If a Multi-Image file contains a third image we try to use it as a
66934     device tree.  The device tree image is assumed to be uncompressed in the
66935     image file.  We automatically allocate space for the device tree in memory
66936     and provide an 8k pad to allow more than a reasonable amount of growth.
66937
66938     Additionally, a device tree that was contained in flash will now automatically
66939     get copied to system memory as part of boot.  Previously an error was
66940     reported if one tried to boot a device tree that was in flash.
66941
66942     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66943
66944 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
66945 Author: Wolfgang Denk <wd@denx.de>
66946 Date:   Tue Oct 24 21:35:55 2006 +0200
66947
66948     Switch to automatically generated CHANGELOG file.
66949     (use "make CHANGELOG" to update it from time to time)
66950
66951 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
66952 Author: Stefan Roese <sr@denx.de>
66953 Date:   Tue Oct 24 18:06:48 2006 +0200
66954
66955     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
66956     Patch by Stefan Roese, 24 Oct 2006
66957
66958 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
66959 Author: Wolfgang Denk <wd@pollux.denx.de>
66960 Date:   Tue Oct 24 17:24:55 2006 +0200
66961
66962     Merge with /home/wd/git/u-boot/master
66963
66964 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
66965 Author: Wolfgang Denk <wd@pollux.denx.de>
66966 Date:   Tue Oct 24 15:32:57 2006 +0200
66967
66968     Code cleanup
66969
66970 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
66971 Author: Wolfgang Denk <wd@pollux.denx.de>
66972 Date:   Tue Oct 24 14:51:36 2006 +0200
66973
66974     Move atstk1000 files into vendor specific directory.
66975     Patch by Haavard Skinnemoen, 12 Sep 2006
66976
66977 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
66978 Author: Wolfgang Denk <wd@pollux.denx.de>
66979 Date:   Tue Oct 24 14:42:37 2006 +0200
66980
66981     Add ATSTK1000 and ATSTK1002 board support
66982     Patch by Haavard Skinnemoen, 06 Sep 2006
66983
66984     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
66985     daughterboard.
66986
66987     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
66988     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
66989     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
66990     CompactFlash cards. For more information, please see this page:
66991
66992     http://www.atmel.com/dyn/products/tools.asp?family_id=682
66993
66994     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
66995     AT32AP7000 chip.
66996
66997     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66998
66999 commit f93ae788c3640fcde5db383471d45548ff4060d0
67000 Author: Wolfgang Denk <wd@pollux.denx.de>
67001 Date:   Tue Oct 24 14:31:24 2006 +0200
67002
67003     Add common serial driver for Atmel AT32 and AT91 chips
67004     Patch by Haavard Skinnemoen, 06 Sep 2006
67005
67006     This is a first attempt at creating a common serial driver for Atmel
67007     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
67008     be possible to support AT91RM9200 and other ARM-based chips with some
67009     minor modifications.
67010
67011     There's nothing fundamentally AVR32-specific in this driver, but it
67012     does use some features which are currently only defined for the
67013     AT32AP CPU port:
67014       * pm_get_clock_freq: Obtain the clock frequency of a given domain
67015       * gd->console_uart: A "struct device" containing information about
67016         register mappings, gpio resources and clocks associated with the
67017         UART device.
67018
67019     For more information about these features, please see the "AT32AP
67020     CPU" patch.
67021
67022 commit 72a087e04705c26cad982879ebd06b5281bf825a
67023 Author: Wolfgang Denk <wd@pollux.denx.de>
67024 Date:   Tue Oct 24 14:27:35 2006 +0200
67025
67026     Add AT32AP CPU and AT32AP7000 SoC support
67027     Patch by Haavard Skinnemoen, 06 Sep 2006
67028
67029     This patch adds support for the AT32AP CPU family and the AT32AP7000
67030     chip, which is the first chip implementing the AVR32 architecture.
67031
67032     The AT32AP CPU core is a high-performance implementation featuring a
67033     7-stage pipeline, separate instruction- and data caches, and a MMU.
67034     For more information, please see the "AVR32 AP Technical Reference":
67035
67036     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
67037
67038     In addition to this, the AT32AP7000 chip comes with a large set of
67039     integrated peripherals, many of which are shared with the AT91 series
67040     of ARM-based microcontrollers from Atmel. Full data sheet is
67041     available here:
67042
67043     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
67044
67045     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67046
67047 commit 7b64fef33c66be648826c0ff9758298ef13d0604
67048 Author: Wolfgang Denk <wd@pollux.denx.de>
67049 Date:   Tue Oct 24 14:21:16 2006 +0200
67050
67051     Add AVR32 architecture support
67052     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
67053
67054     This patch adds common infrastructure code for the Atmel AVR32
67055     architecture. See doc/README.AVR32 for details.
67056
67057     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67058
67059 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
67060 Author: Wolfgang Denk <wd@pollux.denx.de>
67061 Date:   Tue Oct 24 13:57:33 2006 +0200
67062
67063     Use -g instead of -gstabs in AFLAGS_DEBUG
67064     Patch by Haavard Skinnemoen, 30 Aug 2006
67065
67066     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
67067     matter what the target's preferred debugging format is. This patch
67068     simply replaces -gstabs with -g, so that the default debugging format
67069     for the architecture is used.
67070
67071 commit 965829872169c2996023840d98e1d85ad148d629
67072 Author: Wolfgang Denk <wd@pollux.denx.de>
67073 Date:   Tue Oct 24 13:55:18 2006 +0200
67074
67075     Fix/workaround broken dependency handling with make 3.81
67076     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
67077
67078 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
67079 Author: Marian Balakowicz <m8@semihalf.com>
67080 Date:   Mon Oct 23 22:17:05 2006 +0200
67081
67082     Fix sequoia separate object direcory building problems.
67083
67084 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
67085 Author: Jon Loeliger <jdl@freescale.com>
67086 Date:   Fri Oct 20 17:16:35 2006 -0500
67087
67088     Use generic I2C register block on 85xx and 86xx.
67089
67090     Replace private IMMAP I2C structures with generic reg block
67091     and allow 86xx to have multiple I2C device busses.
67092
67093     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67094
67095 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
67096 Author: Jon Loeliger <jdl@freescale.com>
67097 Date:   Fri Oct 20 15:54:34 2006 -0500
67098
67099     Fix compilation warnings on a few 85xx boards.
67100
67101     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67102
67103 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
67104 Author: Jon Loeliger <jdl@freescale.com>
67105 Date:   Fri Oct 20 15:50:15 2006 -0500
67106
67107     Converted all 85xx boards to use a common FSL I2C driver.
67108     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
67109     And removed hard i2c path from a few u-boot.lds scipts too.
67110     Minor whitespace cleanups along the way.
67111
67112     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67113
67114 commit 4d45f69e362b05892c9e92a7907e5820995612aa
67115 Author: Jon Loeliger <jdl@freescale.com>
67116 Date:   Thu Oct 19 12:02:24 2006 -0500
67117
67118     Rewrite a series of goto statements as a sequences of
67119     conditional expressions instead.
67120
67121     Use consistent return code 0/-1 for good/bad indicators.
67122
67123     Include one fewer file if the driver isn't used at all.
67124
67125     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67126
67127 commit 7237c033b02fe295880435f1eb80819a0c987532
67128 Author: Jon Loeliger <jdl@freescale.com>
67129 Date:   Thu Oct 19 11:02:16 2006 -0500
67130
67131     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
67132
67133     in an effort to begin to unify the umpteen FSL I2C drivers that
67134     are all otherwise very similar.
67135
67136     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67137
67138 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
67139 Author: Jon Loeliger <jdl@freescale.com>
67140 Date:   Thu Oct 19 11:33:52 2006 -0500
67141
67142     * Fix a bunch of compiler warnings for gcc 4.0
67143
67144     Signed-off-by: Matthew McClintock <msm@freescale.com>
67145
67146 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
67147 Author: Stefan Roese <sr@denx.de>
67148 Date:   Tue Oct 17 06:14:31 2006 +0200
67149
67150     Add monitor functions for indirect access to PPC440 DCR's
67151     Patch by Leonid Baryudin, 12 Oct 2006
67152
67153 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
67154 Author: Jon Loeliger <jdl@freescale.com>
67155 Date:   Fri Oct 13 16:47:53 2006 -0500
67156
67157     Fixed leading whitespace issues.
67158     Removed spurious LAWAR thing.
67159
67160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67161
67162 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
67163 Author: Jon Loeliger <jdl@freescale.com>
67164 Date:   Thu Oct 12 10:42:36 2006 -0500
67165
67166     Remove unneeded include files and local variable.
67167
67168     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67169
67170 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
67171 Author: Grant Likely <grant.likely@secretlab.ca>
67172 Date:   Tue Oct 10 00:23:32 2006 -0600
67173
67174     Fix possible uninitialized variable compiler warning.
67175
67176     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
67177     do_bootm_linux() may be uninitialized.  There is no possibility in the
67178     current code that len will get used uninitialized, but this fix follows
67179     the existing convention of setting both len and data to zero at the same
67180     time.
67181
67182     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
67183
67184 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
67185 Author: Matthew McClintock <msm@freescale.com>
67186 Date:   Wed Oct 11 15:13:01 2006 -0500
67187
67188     * Fix a bunch of compiler warnings for gcc 4.0
67189
67190     Signed-off-by: Matthew McClintock <msm@freescale.com>
67191
67192 commit bf651baa365e5447246aad6a633ccd667cf24a39
67193 Author: Jon Loeliger <jdl@freescale.com>
67194 Date:   Wed Oct 11 10:10:43 2006 -0500
67195
67196     Move "ar" flags to config.mk to allow for silent "make -s"
67197
67198 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
67199 Author: Jon Loeliger <jdl@freescale.com>
67200 Date:   Tue Oct 10 17:19:03 2006 -0500
67201
67202     Coding style changes to remove local varible blocks
67203     and reformat a bit nicer.
67204
67205 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
67206 Author: Jon Loeliger <jdl@freescale.com>
67207 Date:   Tue Oct 10 17:16:04 2006 -0500
67208
67209     Fix whitespace issues.
67210
67211 commit 7b382b7125f2397cce63253df62f183e3dfa2770
67212 Author: Jon Loeliger <jdl@freescale.com>
67213 Date:   Tue Oct 10 17:14:45 2006 -0500
67214
67215     Fix whitespace issues.
67216
67217 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
67218 Author: Jon Loeliger <jdl@freescale.com>
67219 Date:   Tue Oct 10 17:06:53 2006 -0500
67220
67221     Fix whitespace issues.
67222
67223 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
67224 Author: Jon Loeliger <jdl@freescale.com>
67225 Date:   Tue Oct 10 17:03:43 2006 -0500
67226
67227     Ran lindent and cleaned up whitespace issues.
67228     Format for 80-columns too.
67229
67230 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
67231 Author: Jon Loeliger <jdl@freescale.com>
67232 Date:   Tue Oct 10 17:02:22 2006 -0500
67233
67234     Fix whitespace and 80-col issues.
67235
67236 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
67237 Author: Stefan Roese <sr@denx.de>
67238 Date:   Sat Oct 7 11:36:51 2006 +0200
67239
67240     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
67241     Patch by Stefan Roese, 07 Oct 2006
67242
67243 commit 5bc528fa4da751d472397b308137238a6465afd2
67244 Author: Stefan Roese <sr@denx.de>
67245 Date:   Sat Oct 7 11:35:25 2006 +0200
67246
67247     Update ALPR code (NAND support working now)
67248     Patch by Stefan Roese, 07 Oct 2006
67249
67250 commit 77d5034847d328753b80c46b83f960a14a26f40e
67251 Author: Stefan Roese <sr@denx.de>
67252 Date:   Sat Oct 7 11:33:03 2006 +0200
67253
67254     Remove compile warnings in fpga code
67255     Patch by Stefan Roese, 07 Oct 2006
67256
67257 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
67258 Author: Stefan Roese <sr@denx.de>
67259 Date:   Sat Oct 7 11:30:52 2006 +0200
67260
67261     Add CONFIG_BOARD_RESET to configure board specific reset function
67262     Patch by Stefan Roese, 07 Oct 2006
67263
67264 commit f55df18187e7a45cb73fec4370d12135e6691ae1
67265 Author: John Traill <john.traill@freescale.com>
67266 Date:   Fri Sep 29 08:23:12 2006 +0100
67267
67268     Fix missing tCycle/modfreq calculation.
67269
67270     Signed-off-by: John Traill <john.traill@freescale.com>
67271
67272 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
67273 Author: Andy Fleming <afleming@freescale.com>
67274 Date:   Wed Sep 13 10:33:35 2006 -0500
67275
67276     Updated config headers to add default FDT-based booting
67277
67278 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
67279 Author: Andy Fleming <afleming@freescale.com>
67280 Date:   Wed Sep 13 10:34:18 2006 -0500
67281
67282     Add support for eTSEC 3 & 4 on 8548 CDS
67283
67284     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
67285       This will only work on rev 1.3 boards (but doesn't break older boards)
67286     * Cleaned up some comments to reflect the expanded role of tsec
67287       in other systems
67288
67289 commit 084d648b109c8984f83674043c1a7fa3885ef801
67290 Author: Andy Fleming <afleming@freescale.com>
67291 Date:   Wed Sep 13 10:33:56 2006 -0500
67292
67293     Added code to support 2.6.18 PCI changes in u-boot
67294
67295     * Added code to swizzle the IRQ map for the PCI
67296
67297 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
67298 Author: Jon Loeliger <jdl@freescale.com>
67299 Date:   Tue Sep 19 09:34:10 2006 -0500
67300
67301     Modified makefile for new build mechanism.
67302
67303     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67304
67305 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
67306 Author: Jon Loeliger <jdl@freescale.com>
67307 Date:   Thu Sep 14 08:40:36 2006 -0500
67308
67309     Handle 86xx SVR values according to the new Reference Manual.
67310     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
67311     by the byte in bits 16-23 instead.
67312     Thanks to Jason Jin for noticing.
67313
67314     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67315
67316 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
67317 Author: Zhang Wei <wei.zhang@freescale.com>
67318 Date:   Mon Aug 28 14:25:31 2006 +0800
67319
67320     Fixed an OF-tree off-by-one bug when adding a new property name.
67321     This bug will cause the kernel booting to pause a long time.
67322
67323     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67324     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
67325
67326 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
67327 Author: Jon Loeliger <jdl@freescale.com>
67328 Date:   Tue Aug 29 11:05:09 2006 -0500
67329
67330     Remove trailing empty lines.
67331
67332 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
67333 Author: Jon Loeliger <jdl@freescale.com>
67334 Date:   Tue Aug 29 09:48:49 2006 -0500
67335
67336     Remove bogus msync and use volatile asm.
67337
67338 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
67339 Author: Jon Loeliger <jdl@freescale.com>
67340 Date:   Tue Aug 29 08:17:14 2006 -0500
67341
67342     Add myself as maintainer for MPC8641HPCN.
67343
67344 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
67345 Author: Zhang Wei <wei.zhang@freescale.com>
67346 Date:   Mon Aug 28 14:25:31 2006 +0800
67347
67348     Fixed an OF-tree off-by-one bug when adding a new property name.
67349     This bug will cause the kernel booting to pause a long time.
67350
67351     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67352
67353 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
67354 Author: Haiying Wang <haiying.wang@freescale.com>
67355 Date:   Fri Aug 25 14:38:34 2006 -0400
67356
67357     Change ramdiskaddr and dtbaddr
67358     Remove PEX fluff commands.
67359
67360     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
67361     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67362
67363 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
67364 Author: Matthew McClintock <msm@freescale.com>
67365 Date:   Wed Aug 23 13:32:45 2006 -0500
67366
67367     * Another small fix for booting with disable_of
67368
67369     Signed-off-by: Matthew McClintock <msm@freescale.com>
67370
67371 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
67372 Author: Jon Loeliger <jdl@freescale.com>
67373 Date:   Wed Aug 23 11:04:43 2006 -0500
67374
67375     Cleanup and lindent new AHCI driver.
67376
67377 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
67378 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
67379 Date:   Wed Aug 23 19:15:12 2006 +0800
67380
67381     Add AHCI define and sata support for MPC8641HPCN board.
67382
67383     Signed-off-by:Jason Jin<jason.jin@freescale.com>
67384
67385 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
67386 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
67387 Date:   Wed Aug 23 19:10:44 2006 +0800
67388
67389     Add AHCI support to u-boot
67390
67391     Add AHCI support in u-boot, enable the sata disk controllers which
67392     following the AHCI protocol.
67393
67394     Signed-off-by:Jason Jin<jason.jin@freescale.com>
67395
67396 commit d8ea2acf5f137cae99417df4f573d036ee384668
67397 Author: Zhang Wei <wei.zhang@freescale.com>
67398 Date:   Wed Aug 23 17:54:32 2006 +0800
67399
67400     Add dtb boot-up parameter to default boot commands.
67401
67402     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67403
67404 commit b93775c2036b99baa390ea425c4771895bbc63c4
67405 Author: Jon Loeliger <jdl@freescale.com>
67406 Date:   Tue Aug 22 18:26:08 2006 -0500
67407
67408     Cleanup even more poorly introduced whitespace.
67409
67410 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
67411 Author: Jon Loeliger <jdl@freescale.com>
67412 Date:   Tue Aug 22 18:07:00 2006 -0500
67413
67414     Cleanup more poorly introduced whitespace.
67415
67416 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
67417 Author: Jon Loeliger <jdl@freescale.com>
67418 Date:   Tue Aug 22 17:54:05 2006 -0500
67419
67420     Cleanup poorly introduced whitespace.
67421
67422 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
67423 Author: Jon Loeliger <jdl@freescale.com>
67424 Date:   Tue Aug 22 12:25:27 2006 -0500
67425
67426     General indent and whitespace cleanups.
67427
67428 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
67429 Author: Jon Loeliger <jdl@freescale.com>
67430 Date:   Tue Aug 22 12:06:18 2006 -0500
67431
67432     General indent and whitespace cleanups.
67433
67434 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
67435 Author: Jon Loeliger <jdl@freescale.com>
67436 Date:   Tue Aug 22 10:42:21 2006 -0500
67437
67438     Cleanup compiler warnings.
67439
67440 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
67441 Author: Matthew McClintock <msm@freescale.com>
67442 Date:   Tue Aug 22 09:31:59 2006 -0500
67443
67444     Fix disable_of booting
67445
67446     Signed-off-by: Matthew McClintock <msm@freescale.com>
67447
67448 commit 87a449c8ac396420cb24260f717ea9e6faa82047
67449 Author: Matthew McClintock <msm@freescale.com>
67450 Date:   Tue Aug 22 09:23:55 2006 -0500
67451
67452     Support for FDT in uImage format, error when using FDT from flash
67453
67454     Signed-off-by: Matthew McClintock <msm@freescale.com>
67455
67456 commit 75c299c38369d01addd5e054b8a16217b70f4a86
67457 Author: Haiying Wang <haiying.wang@freescale.com>
67458 Date:   Tue Aug 15 15:12:55 2006 -0400
67459
67460     Unlock cache before kernel starts up for MPC86xx
67461
67462 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
67463 Author: Haiying Wang <haiying.wang@freescale.com>
67464 Date:   Tue Aug 15 15:13:15 2006 -0400
67465
67466     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
67467
67468 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
67469 Author: Haiying Wang <haiying.wang@freescale.com>
67470 Date:   Tue Aug 15 15:12:55 2006 -0400
67471
67472     Unlock cache before kernel starts up for MPC86xx
67473
67474 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
67475 Author: Haiying Wang <haiying.wang@freescale.com>
67476 Date:   Tue Aug 15 15:13:15 2006 -0400
67477
67478     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
67479
67480 commit 86c8e17f25e972a7e272950a0735fad84e082b88
67481 Author: Matthew McClintock <msm@freescale.com>
67482 Date:   Wed Aug 16 13:59:47 2006 -0500
67483
67484     * Fix disable_of booting
67485
67486     Signed-off-by: Matthew McClintock <msm@freescale.com>
67487
67488 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
67489 Author: Matthew McClintock <msm@freescale.com>
67490 Date:   Wed Aug 16 10:54:09 2006 -0500
67491
67492     * Support for FDT in uImage format, error when using FDT from flash
67493
67494     Signed-off-by: Matthew McClintock <msm@freescale.com>
67495
67496 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
67497 Author: Stefan Roese <sr@denx.de>
67498 Date:   Tue Aug 15 14:22:35 2006 +0200
67499
67500     Add initial support for the ALPR board from Prodrive
67501     NAND needs some additional testing
67502     Patch by Heiko Schocher, 15 Aug 2006
67503
67504 commit f0ff4692ff3372dec55074a8eb444943ab095abb
67505 Author: Stefan Roese <sr@denx.de>
67506 Date:   Tue Aug 15 14:15:51 2006 +0200
67507
67508     Add FPGA Altera Cyclone 2 support
67509     Patch by Heiko Schocher, 15 Aug 2006
67510
67511 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
67512 Author: Jon Loeliger <jdl@freescale.com>
67513 Date:   Mon Aug 14 15:33:38 2006 -0500
67514
67515     Fix BAT0 to actually be cacheable, non-guarded as documented.
67516
67517     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67518
67519 commit 40bc83559db5745681909fd7382ae509567e116d
67520 Author: Jon Loeliger <jdl@freescale.com>
67521 Date:   Wed Aug 9 15:32:16 2006 -0500
67522
67523     Removed MPC8641HPCN DTS source file from build.
67524     It is no longer linked into U-Boot; its sources are
67525     now located in the kernel tree.
67526
67527     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67528
67529 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
67530 Author: Matthew McClintock <msm@freescale.com>
67531 Date:   Wed Jun 28 10:47:03 2006 -0500
67532
67533     * Switched default PCI speed for 8540 ADS back to 33MHz
67534
67535     * Added comments and a printf to warn that PCI-X won't
67536       work at 33MHz
67537       Patch by Andy Fleming 17-Mar-2006
67538
67539     Signed-off-by: Andy Fleming <afleming@freescale.com>
67540
67541 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
67542 Author: Matthew McClintock <msm@freescale.com>
67543 Date:   Wed Jun 28 10:46:35 2006 -0500
67544
67545     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
67546
67547     Signed-off-by: Andy Fleming <afleming@freescale.com>
67548
67549 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
67550 Author: Matthew McClintock <msm@freescale.com>
67551 Date:   Wed Jun 28 10:46:13 2006 -0500
67552
67553     * Added VIA configuration table
67554
67555     * Added support for PCI2 on CDS
67556       Patch by Andy Fleming 17-Mar-2006
67557
67558     Signed-off-by: Andy Fleming <afleming@freescale.com>
67559
67560 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
67561 Author: Matthew McClintock <msm@freescale.com>
67562 Date:   Wed Jun 28 10:45:41 2006 -0500
67563
67564     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
67565
67566     Signed-off-by: Andy Fleming <afleming@freescale.com>
67567
67568 commit 97074ed9655309b64231bc2cee69fe85399f8055
67569 Author: Matthew McClintock <msm@freescale.com>
67570 Date:   Wed Jun 28 10:45:17 2006 -0500
67571
67572     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
67573
67574     Signed-off-by: Andy Fleming <afleming@freescale.com>
67575
67576 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
67577 Author: Matthew McClintock <msm@freescale.com>
67578 Date:   Wed Jun 28 10:44:49 2006 -0500
67579
67580     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
67581
67582     Signed-off-by: Andy Fleming <afleming@freescale.com>
67583
67584 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
67585 Author: Matthew McClintock <msm@freescale.com>
67586 Date:   Wed Jun 28 10:44:23 2006 -0500
67587
67588     * 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
67589
67590     Signed-off-by: Andy Fleming <afleming@freescale.com>
67591
67592 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
67593 Author: Matthew McClintock <msm@freescale.com>
67594 Date:   Wed Jun 28 10:43:36 2006 -0500
67595
67596     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
67597
67598     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67599
67600 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
67601 Author: Matthew McClintock <msm@freescale.com>
67602 Date:   Wed Jun 28 10:43:00 2006 -0500
67603
67604     * 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
67605
67606 commit 5498d90312aad9f6bdbf047986027c35b03cd163
67607 Author: Matthew McClintock <msm@freescale.com>
67608 Date:   Wed Jun 28 10:42:24 2006 -0500
67609
67610     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
67611
67612 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
67613 Author: Matthew McClintock <msm@freescale.com>
67614 Date:   Wed Jun 28 10:41:37 2006 -0500
67615
67616     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
67617
67618 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
67619 Author: John Traill <john.traill@freescale.com>
67620 Date:   Wed Aug 9 14:33:50 2006 +0100
67621
67622     Add Rapidio support for the MPC8641HPCN
67623
67624     Signed-off-by: John Traill <john.traill@freescale.com>
67625
67626 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
67627 Author: John Traill <john.traill@freescale.com>
67628 Date:   Tue Aug 8 11:32:43 2006 +0100
67629
67630     Fix caslat calculation
67631
67632     Signed-off-by: John Traill <john.traill@freescale.com>
67633
67634 commit 709d3073e74153278e7904a70819bbef7df50e1a
67635 Author: Jon Loeliger <jdl@freescale.com>
67636 Date:   Thu Aug 3 16:17:56 2006 -0500
67637
67638     Convert to mac-address in ethernet nodes.
67639
67640 commit 71748af833ca1017edf1415be376366ff2937d17
67641 Author: Haiying Wang <haiying.wang@freescale.com>
67642 Date:   Fri Jul 28 12:41:35 2006 -0400
67643
67644     Correct the irq value of DUART2
67645
67646 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
67647 Author: Haiying Wang <haiying.wang@freescale.com>
67648 Date:   Fri Jul 28 12:41:41 2006 -0400
67649
67650     Change the space size of PEX IO in README
67651
67652 commit 239db37c94f7a92941c4465feceb867c609241c5
67653 Author: Haiying Wang <haiying.wang@freescale.com>
67654 Date:   Fri Jul 28 12:41:18 2006 -0400
67655
67656     Move get_board_sys_clk to board directory
67657
67658 commit 492900b985439fbce1a118afde1e35def870db03
67659 Author: John Traill <john.traill@freescale.com>
67660 Date:   Fri Jul 28 09:03:54 2006 +0100
67661
67662     Fix 8641HPCN pollution
67663
67664 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
67665 Author: John Traill <john.traill@freescale.com>
67666 Date:   Fri Jul 28 08:16:06 2006 +0100
67667
67668     Fix 8641HPCN timebase
67669
67670 commit c86360b830f1eecd7a72208575dde4f57879faea
67671 Author: Zhang Wei <wei.zhang@freescale.com>
67672 Date:   Fri Jul 28 00:01:34 2006 +0800
67673
67674     Fixed OF device tree of mpc86xxhpcn board.
67675
67676     The changes works in with kernel irq mapping rework.
67677
67678     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67679
67680 commit bea3f28d285942bf3f7ab339ce85178ded544225
67681 Author: Haiying Wang <haiying.wang@freescale.com>
67682 Date:   Wed Jul 12 10:48:05 2006 -0400
67683
67684     Add support for reading and writing mac addresses to or from ID EEPROM.
67685
67686     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
67687     With attached patch, we can use command "mac/mac read/mac save/"
67688     to read and write EEPROM under u-boot prompt.
67689
67690     U-boot will calculate the checksum of EEPROM while bootup,
67691     if it is right, then u-boot will check whether the mac address
67692     of eTSEC0/1/2/3 is availalbe (non-zero).
67693
67694     If there is mac address availabe in EEPROM, u-boot will use it,
67695     otherewise, u-boot will use the mac address defined in
67696     MPC8641HPCN.h. This matches the requirement to set unique mac address
67697     for each TSEC port.
67698
67699     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
67700     Signed-off-by: York Sun <yorksun@freescale.com>
67701
67702 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
67703 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
67704 Date:   Thu Jul 13 10:35:10 2006 -0500
67705
67706     Fixed initrd issue by define big RAM
67707
67708     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
67709
67710 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
67711 Author: Jason Jin <Jason.jin@freescale.com>
67712 Date:   Fri Jul 7 10:01:45 2006 -0500
67713
67714     We made a u-boot patch to fix the hang up issue
67715     when booting filesystem from ramdisk.
67716
67717     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
67718
67719 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
67720 Author: Matthew McClintock <msm@freescale.com>
67721 Date:   Wed Jun 28 10:47:03 2006 -0500
67722
67723     * Switched default PCI speed for 8540 ADS back to 33MHz
67724     * Added comments and a printf to warn that PCI-X won't
67725       work at 33MHz
67726       Patch by Andy Fleming 17-Mar-2006
67727
67728     Signed-off-by: Andy Fleming <afleming@freescale.com>
67729
67730 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
67731 Author: Matthew McClintock <msm@freescale.com>
67732 Date:   Wed Jun 28 10:46:35 2006 -0500
67733
67734     * Fixed a bug where 8555 PCI code used the old variable and
67735       function names
67736       Patch by Andy Fleming 17-Mar-2006
67737
67738     Signed-off-by: Andy Fleming <afleming@freescale.com>
67739
67740 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
67741 Author: Matthew McClintock <msm@freescale.com>
67742 Date:   Wed Jun 28 10:46:13 2006 -0500
67743
67744     * Added VIA configuration table
67745     * Added support for PCI2 on CDS
67746       Patch by Andy Fleming 17-Mar-2006
67747
67748     Signed-off-by: Andy Fleming <afleming@freescale.com>
67749
67750 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
67751 Author: Matthew McClintock <msm@freescale.com>
67752 Date:   Wed Jun 28 10:45:41 2006 -0500
67753
67754     * Fixed PCI memory definitions
67755       Patch by Andy Fleming 17-Mar-2006
67756
67757     Signed-off-by: Andy Fleming <afleming@freescale.com>
67758
67759 commit 087454609e47295443af793a282cddcd91a5f49c
67760 Author: Matthew McClintock <msm@freescale.com>
67761 Date:   Wed Jun 28 10:45:17 2006 -0500
67762
67763     * Added support for initializing second PCI bus on 85xx
67764       Patch by Andy Fleming 17-Mar-2006
67765
67766     Signed-off-by: Andy Fleming <afleming@freescale.com>
67767
67768 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
67769 Author: Matthew McClintock <msm@freescale.com>
67770 Date:   Wed Jun 28 10:44:49 2006 -0500
67771
67772     * Added PCI-X #defines for PCI-X initialization
67773       Patch by Andy Fleming on 17-Mar-2006
67774
67775     Signed-off-by: Andy Fleming <afleming@freescale.com>
67776
67777 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
67778 Author: Matthew McClintock <msm@freescale.com>
67779 Date:   Wed Jun 28 10:44:23 2006 -0500
67780
67781     * Made sure the code which disables prefetch for PCI devices
67782       sets the size of the prefetch region to 0
67783       Patch by Andy Fleming on 17-Mar-2006
67784
67785     Signed-off-by: Andy Fleming <afleming@freescale.com>
67786
67787 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
67788 Author: Matthew McClintock <msm@freescale.com>
67789 Date:   Wed Jun 28 10:43:36 2006 -0500
67790
67791     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
67792       Patch by Jon Loeliger 17-Jan-2006
67793
67794     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67795
67796 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
67797 Author: Matthew McClintock <msm@freescale.com>
67798 Date:   Wed Jun 28 10:43:00 2006 -0500
67799
67800     * Removed the oftree.dts for stxxtx in light of the changes
67801       to the flat device tree handling code
67802       Patch by Matthew McClintock 26-June-2006
67803
67804 commit 1b380ec225665e73959677f3893dc658c5925e05
67805 Author: Matthew McClintock <msm@freescale.com>
67806 Date:   Wed Jun 28 10:42:24 2006 -0500
67807
67808     * Patch to modify ft_build.c to update flat device trees in place
67809       Patch by Matthew McClintock 26-June-2006
67810
67811 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
67812 Author: Matthew McClintock <msm@freescale.com>
67813 Date:   Wed Jun 28 10:41:37 2006 -0500
67814
67815     * Modify bootm command to support booting with flat device trees
67816       Patch by Matthew McClintock 26-June-2006
67817
67818 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
67819 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
67820 Date:   Wed Jun 28 08:43:56 2006 -0500
67821
67822     Change Id to symbolic name for RTL8139
67823
67824     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67825
67826 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
67827 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67828 Date:   Tue Jun 27 18:12:10 2006 +0800
67829
67830     Fix RTL8139 in big endian
67831
67832     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
67833     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
67834
67835 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
67836 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67837 Date:   Tue Jun 27 18:12:23 2006 +0800
67838
67839     Fix Tsec bug when no link
67840
67841      When tftp a non-exist file from the tftp server, u-boot will check
67842      the link of all eth port. The original file will return wrong link
67843      state on the no link ports.
67844
67845     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
67846
67847 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
67848 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67849 Date:   Tue Jun 27 18:12:02 2006 +0800
67850
67851     Fix bug for io_bar size during pci scan
67852
67853     During the pci scan process, Some devices return bar_reponse with the
67854     highest bytes 0, such as the pci bridge in uli1575 return bar_response
67855     with 0xffffff, So the bar_size should be manually set under 64K.
67856
67857     Signed-off-by: Jason Jin <jason.jin@freescale.com>
67858
67859 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
67860 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
67861 Date:   Tue Jun 27 18:11:54 2006 +0800
67862
67863     Enable PCIE1 for MPC8641HPCN board
67864
67865     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67866
67867 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
67868 Author: Wolfgang Denk <wd@pollux.denx.de>
67869 Date:   Mon Jun 26 11:06:00 2006 +0200
67870
67871     More code cleanup
67872
67873 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
67874 Author: Jon Loeliger <jdl@freescale.com>
67875 Date:   Thu Jun 22 08:51:46 2006 -0500
67876
67877     Fix bug in 8641hpcn reset command with no args.
67878
67879     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
67880     Acked-by: Jon Loeliger <jdl@freescale.com>
67881
67882 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
67883 Author: Zhang Wei <wei.zhang@freescale.com>
67884 Date:   Tue Jun 20 17:47:15 2006 +0800
67885
67886     Reworked IRQ mapping in OF-tree.
67887
67888 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
67889 Author: Jon Loeliger <jdl@freescale.com>
67890 Date:   Thu Jun 15 21:33:37 2006 -0500
67891
67892     Do not enable address translation on secondary CPUs.
67893     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
67894
67895     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67896
67897 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
67898 Author: Wolfgang Denk <wd@pollux.denx.de>
67899 Date:   Wed Jun 14 18:14:56 2006 +0200
67900
67901     Code cleanup
67902
67903 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
67904 Author: Wolfgang Denk <wd@pollux.denx.de>
67905 Date:   Wed Jun 14 17:45:53 2006 +0200
67906
67907     Various USB related patches
67908     - Add support for mpc8xx USB device.
67909     - Add support for Common Device Class - Abstract Control Model USB console.
67910     - Add support for flow control in USB slave devices.
67911     - Add support for switching between gserial and cdc_acm using environment.
67912     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
67913     - Update usbcore slightly to ease host enumeration.
67914     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
67915     - Add AdderUSB_config as a defconfig to enable usage of the USB console
67916       by default with the Adder87x U-Boot port.
67917     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
67918
67919 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
67920 Author: Jon Loeliger <jdl@jdl.com>
67921 Date:   Wed Jun 7 10:53:55 2006 -0500
67922
67923     Fix a get_board_sys_clk() use-before-def warning.
67924
67925     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67926
67927 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
67928 Author: Jon Loeliger <jdl@jdl.com>
67929 Date:   Wed Jun 7 10:52:49 2006 -0500
67930
67931     Allow DTC path to be passed in.
67932
67933     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67934
67935 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
67936 Author: Haiying Wang <haiying.wang@freescale.com>
67937 Date:   Tue Jun 6 16:54:29 2006 -0400
67938
67939     Modify the IRQ of DUART2
67940
67941 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
67942 Author: Jon Loeliger <jdl@jdl.com>
67943 Date:   Wed May 31 13:55:35 2006 -0500
67944
67945     Review cleanups.
67946
67947     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67948
67949 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
67950 Author: Jon Loeliger <jdl@jdl.com>
67951 Date:   Wed May 31 12:44:44 2006 -0500
67952
67953     White space cleanup.
67954     Some 80-column cleanups.
67955     Convert printf() to puts() where possible.
67956     Use #include "spd_sdram.h" as needed.
67957     Enhanced reset command usage message a bit.
67958
67959     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67960
67961 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
67962 Author: Jon Loeliger <jdl@jdl.com>
67963 Date:   Wed May 31 11:39:34 2006 -0500
67964
67965     Removed unneeded local_bus_init() from 8641HPCN board.
67966
67967     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67968
67969 commit 4d3d729c16c392d2982d3266b659d333c927697d
67970 Author: Jon Loeliger <jdl@jdl.com>
67971 Date:   Wed May 31 11:24:28 2006 -0500
67972
67973     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
67974
67975     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67976
67977 commit b2a941de060350ad15878d8219825f4950e9bb8e
67978 Author: Jon Loeliger <jdl@jdl.com>
67979 Date:   Wed May 31 10:07:28 2006 -0500
67980
67981     Remove dead debug code.
67982
67983     Signed-off-by: Jon Loeliger <jdl@jdl.com>
67984
67985 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
67986 Author: Jon Loeliger <jdl@freescale.com>
67987 Date:   Tue May 30 17:47:00 2006 -0500
67988
67989     Move mpc86xx PIXIS code to board directory
67990
67991     First cut at moving the PIXIS platform code out of
67992     the 86xx cpu directory and into board/mpc8641hpcn
67993     where it belongs.
67994
67995     Signed-off-by: Jon Loeliger <jdl@freescale.com>
67996
67997 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
67998 Author: Markus Klotzbuecher <mk@denx.de>
67999 Date:   Tue May 30 16:56:14 2006 +0200
68000
68001     Support generic OHCI support for the s3c24x0 cpu.
68002
68003 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
68004 Author: Haiying Wang <Haiying.Wang@freescale.com>
68005 Date:   Tue May 30 09:10:32 2006 -0500
68006
68007     Improve "reset" command's interaction with watchdog.
68008
68009         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
68010         "reset altbank wd" will reset another bank WITH watch dog enabled
68011         "diswd" will disable watch dog after u-boot boots up successfully
68012
68013     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
68014
68015 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
68016 Author: Haiying Wang <Haiying.Wang@freescale.com>
68017 Date:   Tue May 30 08:51:19 2006 -0500
68018
68019     Fix two SDRAM setup bugs.
68020
68021         Fix ECC setup bug.
68022         Enable 1T/2T based on number of DIMMs present.
68023
68024     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
68025
68026 commit d11fec5015334deb2010e36ce00bb118cc5429a5
68027 Author: Haiying Wang <Haiying.Wang@freescale.com>
68028 Date:   Fri May 26 10:24:48 2006 -0500
68029
68030     Add first draft of the MPC8641HPCN doc/README.
68031
68032     Signed-off-by: Jon Loeliger <jdl@jdl.com>
68033
68034 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
68035 Author: Haiying Wang <Haiying.Wang@freescale.com>
68036 Date:   Fri May 26 10:13:04 2006 -0500
68037
68038     Added pci@8000 block.
68039     Updated ethernet interrupt mappings (moved up 48).
68040     Cleaned up a few comments.
68041
68042     Signed-off-by: Jon Loeliger <jdl@jdl.com>
68043
68044 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
68045 Author: Haiying Wang <Haiying.Wang@freescale.com>
68046 Date:   Fri May 26 10:01:16 2006 -0500
68047
68048     Allow args on reset command.
68049
68050     Signed-off-by: Jon Loeliger <jdl@jdl.com>
68051
68052 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
68053 Author: Markus Klotzbuecher <mk@denx.de>
68054 Date:   Tue May 23 13:38:35 2006 +0200
68055
68056     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
68057     fixes to the latter.
68058
68059 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
68060 Author: Markus Klotzbuecher <mk@denx.de>
68061 Date:   Tue May 23 10:33:11 2006 +0200
68062
68063     More cleanup for the delta board and the generic usb_ohci driver. Added
68064     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
68065     initialization and cleanup hooks respectively.
68066
68067 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
68068 Author: Markus Klotzbuecher <mk@denx.de>
68069 Date:   Mon May 22 16:33:54 2006 +0200
68070
68071     This patch adds USB storage support for the delta board. This is the first
68072     board to make use of a generic OHCI driver, that calls hooks for board
68073     dependant initialization.
68074
68075 commit 14e37081ff3cac7ebe6e93836523429853b6b292
68076 Author: Jon Loeliger <jdl@jdl.com>
68077 Date:   Fri May 19 13:28:39 2006 -0500
68078
68079     Change arbitration to round-robin for SMP linux.
68080
68081 commit 9a655876e5995be80f49054e2509500e871e4d3a
68082 Author: Jon Loeliger <jdl@jdl.com>
68083 Date:   Fri May 19 13:26:34 2006 -0500
68084
68085     Enable dual DDR controllers and interleaving.
68086
68087 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
68088 Author: Jon Loeliger <jdl@jdl.com>
68089 Date:   Fri May 19 13:22:44 2006 -0500
68090
68091     Update 86xx address map and LAWBARs.
68092
68093 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
68094 Author: Jon Loeliger <jdl@jdl.com>
68095 Date:   Fri May 19 13:14:15 2006 -0500
68096
68097     Remove L2 Cache invalidate polling.
68098
68099 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
68100 Author: Jon Loeliger <jdl@jdl.com>
68101 Date:   Fri May 19 12:33:09 2006 -0500
68102
68103     Enable 2nd CPU and I2C.
68104
68105 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
68106 Author: Jon Loeliger <jdl@freescale.com>
68107 Date:   Mon May 15 07:26:56 2006 -0500
68108
68109     Update interrupt mapping.
68110
68111 commit 6cfea33477b04b63ed47386ed1629529484c33ba
68112 Author: Haiying Wang <Haiying.Wang@freescale.com>
68113 Date:   Wed May 10 09:38:06 2006 -0500
68114
68115     Remove unneeded INIT_RAM_LOCK cache twiddling.
68116     Correctly tracks r29 as global data pointer now.
68117
68118     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
68119
68120 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
68121 Author: Jon Loeliger <jdl@freescale.com>
68122 Date:   Wed May 10 09:33:07 2006 -0500
68123
68124     Remove unnecessary flash.c file.
68125
68126 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
68127 Author: Jon Loeliger <jdl@freescale.com>
68128 Date:   Tue May 9 08:23:49 2006 -0500
68129
68130     Get MPC8641HPCN flash images working.
68131
68132         Enable the CFI driver.
68133         Remove bogus LAWBAR7 cruft.
68134         Use correct TEXT_BASE, Fixup load script.
68135         Enable SPD EEPROM during DDR setup.
68136         Use generic RFC 1918 IP addresses by default.
68137
68138 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
68139 Author: Jon Loeliger <jdl@freescale.com>
68140 Date:   Thu Apr 27 10:15:16 2006 -0500
68141
68142     Cleanup whitespaces and style issues.
68143     Removed //-style comments.
68144     Use 80-column lines.
68145     Remove trailing whitespace.
68146     Remove dead code and debug cruft.
68147
68148 commit a2320a6bf8113a09544c42d160d10ac69d049a03
68149 Author: Jon Loeliger <jdl@freescale.com>
68150 Date:   Thu Apr 27 08:22:39 2006 -0500
68151
68152     Revert bad PCI prefetch limit change.
68153
68154 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
68155 Author: Jon Loeliger <jdl@freescale.com>
68156 Date:   Wed Apr 26 17:58:56 2006 -0500
68157
68158     Initial support for MPC8641 HPCN board.