]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
Minor Coding Style fix; update CHANGELOG.
[karo-tx-uboot.git] / CHANGELOG
1 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
2 Author: Wolfgang Denk <wd@denx.de>
3 Date:   Fri May 15 09:27:58 2009 +0200
4
5     IDE: bail out of dev_print() for unknown device types
6
7     Commit 574b319512 introduced a subtle bug by mixing a list of tests
8     for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
9     then mostly did not work because "dev_desc->type" cannot take any
10     "IF_*" type values. A later fix in commit 8ec6e332ea changed the
11     switch() into testing "dev_desc->if_type", but at this point the
12     initial test for unknown device types was completely lost, which
13     resulted in output like that for IDE ports without device attached:
14
15       Device 1: Model:  Firm:  Ser#:
16                 Type: # 1F #
17                 Capacity: not available
18
19     This patch re-introduces the missing test for unknown device types.
20
21     Signed-off-by: Wolfgang Denk <wd@denx.de>
22     Cc: Stefan Roese <sr@denx.de>
23     Cc: Detlev Zundel <dzu@denx.de>
24     Tested-by: Stefan Roese <sr@denx.de>
25
26 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
27 Author: Stefan Roese <sr@denx.de>
28 Date:   Thu May 14 07:25:13 2009 +0200
29
30     74xx_7xx: Fix rounding problem in CPU frequency calculation
31
32     This patch fixes a problem in the CPU frequency calculation. Without it
33     a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
34
35     Signed-off-by: Stefan Roese <sr@denx.de>
36
37 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
38 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39 Date:   Wed May 13 22:24:12 2009 +0200
40
41     console.h: remove unused prototype 'console_realloc'
42
43     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44
45 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
46 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47 Date:   Wed May 13 22:16:31 2009 +0200
48
49     api: remove un-needed ifdef CONFIG_API already handle by the Makefile
50
51     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52
53 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
54 Author: Detlev Zundel <dzu@denx.de>
55 Date:   Wed May 13 10:54:10 2009 +0200
56
57     Fix e-mail address of Gary Jennejohn.
58
59     Signed-off-by: Detlev Zundel <dzu@denx.de>
60
61 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
62 Author: Emil Medve <Emilian.Medve@Freescale.com>
63 Date:   Tue May 12 13:48:32 2009 -0500
64
65     Remove inline qualifier from show_boot_progress()
66
67     The 'inline' is conflicting with the semantic of 'weak' attribute and with the
68     way the show_boot_progress() function is used.
69
70     Also gcc 4.4 is complaining about it:
71
72     main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
73
74     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
75
76 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
77 Author: Wolfgang Denk <wd@denx.de>
78 Date:   Tue May 12 15:17:35 2009 +0200
79
80     MPC8260: fixup device tree by property instead of path
81
82     cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
83     clock frequencies in the device tree, using a CPU path
84     "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
85
86     However, this does not work when one board config file (here:
87     MPC8260ADS.h) is intended to be used for several diffrent CPUs and
88     therefor contains a generic definition like "cpu@0", as the device
89     trees that will then be loaded will contain specific names like
90     "PowerPC,8272@0".
91
92     We switch to using do_fixup_by_prop_u32() instead, so we can search
93     for device_type="cpu", as it is done in other architectures, too.
94
95     Signed-off-by: Wolfgang Denk <wd@denx.de>
96     Cc: Heiko Schocher <hs@denx.de>
97     Acked-by: Heiko Schocher <hs@denx.de>
98     Tested-by: Heiko Schocher <hs@denx.de>
99
100 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
101 Author: Rohit Hagargundgi <h.rohit@samsung.com>
102 Date:   Mon Mar 9 19:45:46 2009 +0530
103
104     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
105
106     Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
107     CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
108     and is used by OneNAND ipl when reading U-Boot image.
109
110     Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
111     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
112
113 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
114 Author: Ben Warren <biggerbadderben@gmail.com>
115 Date:   Tue Apr 28 17:04:51 2009 -0700
116
117     Schedule removal of non-CONFIG_NET_MULTI net driver API
118
119     This will make CONFIG_NET_MULTI the only net driver configuration and
120     we'll be able to remove this option.
121
122     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
123
124 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
125 Author: Detlev Zundel <dzu@denx.de>
126 Date:   Tue May 5 16:04:06 2009 +0200
127
128     powerpc/inka4x0: Remove left-over ide reset code.
129
130     The pin which was used in preliminary versions of the board for ide
131     reset is really connected to the rtc clock.
132
133     Signed-off-by: Detlev Zundel <dzu@denx.de>
134
135 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
136 Author: Marco Stornelli <marco.stornelli@gmail.com>
137 Date:   Tue Apr 28 19:04:02 2009 +0200
138
139     Add imls utility command
140
141     This patch adds, under tools folder, a new command called imls. Its
142     goal is the same of UBoot's imls but it can be used as Linux shell
143     command. It reads from raw mtd partition and prints the list of the
144     stored images.
145
146     Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
147
148 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
149 Author: Heiko Schocher <hs@denx.de>
150 Date:   Tue Apr 28 08:36:11 2009 +0200
151
152     netloop: updates for NetLoop
153
154     Fix some issues introduced from commit:
155     2f70c49e5b9813635ad73666aa30f304c7fdeda9
156     suggested by Mike Frysinger.
157
158     - added some comment for the env_id variable in common_cmd_nvedit.c
159     - moved some variables in fn scope instead of file scope
160     - NetInitLoop now static void
161
162     Signed-off-by: Heiko Schocher <hs@denx.de>
163     Acked-by: Ben Warren <biggerbadderben@gmail.com>
164
165 commit 3c1d89545de11822f8b5afb5646a57757620bd95
166 Author: Heiko Schocher <hs@denx.de>
167 Date:   Tue Apr 28 07:48:39 2009 +0200
168
169     82xx, ids8247: added ids8247 board to MAKEALL script
170
171     Signed-off-by: Heiko Schocher <hs@denx.de>
172
173 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
174 Author: Detlev Zundel <dzu@denx.de>
175 Date:   Thu May 7 13:08:55 2009 +0200
176
177     arm/imx31_phycore: Fix bi_arch_number
178
179     Signed-off-by: Detlev Zundel <dzu@denx.de>
180     Cc: Sascha Hauer <s.hauer@pengutronix.de>
181
182 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
183 Author: Sascha Hauer <s.hauer@pengutronix.de>
184 Date:   Fri May 15 10:21:33 2009 +0200
185
186     remove myself as phycore/litekit Maintainer
187
188     I never acked a patch that adds me as phycore i.MX31 maintainer nor was
189     it me who pushed the patches, so remove myself from the maintainer list
190     so that other people do not longer wait for my ack.
191
192     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
193
194 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
195 Author: Sergey Lapin <slapin@ossfans.org>
196 Date:   Tue May 12 12:25:14 2009 +0400
197
198     AFEB9260 network fix
199
200     AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
201     Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
202     not 0.
203
204     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
205
206 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
207 Author: Graf Yang <graf.yang@analog.com>
208 Date:   Tue May 5 02:26:27 2009 -0400
209
210     Blackfin: bf518f-ezbrd: reset ethernet PHY during init
211
212     We don't know what state the ethernet PHY is in when starting up, so make
213     sure we set it to a sane state.  This fixes troubles seen when Linux boots
214     up, configures the PHY is a non-default state, and then the system reboots
215     into U-Boot which previously expected a reset state only.
216
217     Signed-off-by: Graf Yang <graf.yang@analog.com>
218     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
219
220 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
221 Author: Mike Frysinger <vapier@gentoo.org>
222 Date:   Tue May 5 01:35:41 2009 -0400
223
224     Blackfin: bf527-ezkit: fix SPI flash env params
225
226     The BF527-EZKIT settings for storing the environment in SPI flash wasn't
227     using the correct sector settings for the SPI flash part that is actually
228     on the board.
229
230     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
231
232 commit f58bf804a14324c6c9186a7a664fa23281780e8b
233 Author: Mike Frysinger <vapier@gentoo.org>
234 Date:   Fri Apr 24 23:54:19 2009 -0400
235
236     Blackfin: avoid get_sclk() with early serial debug
237
238     When the clock functions were changed to use cached values (and thereby
239     avoiding expensive math functions), early serial debug broke because the
240     baud programming is called before external memory is available.
241
242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
243
244 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
245 Author: Mike Frysinger <vapier@gentoo.org>
246 Date:   Fri Apr 24 23:39:41 2009 -0400
247
248     Blackfin: fix booting with older bootroms (no EVT1)
249
250     When dropping jump block support, the assumption was that all bootroms
251     supported entry point redirection via the EVT1 register.  Unfortunately,
252     this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
253     and older and BF561).  No one really noticed earlier because these parts
254     usually are booted by bypassing the bootrom entirely, and older BF533
255     parts are not supported at all (too many anomalies).
256
257     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
258
259 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
260 Author: Mike Frysinger <vapier@gentoo.org>
261 Date:   Fri Apr 24 23:22:48 2009 -0400
262
263     Blackfin: recurse with early serial initcode
264
265     Make sure we recurse through serial_putc() rather than bang on the UART
266     transmit register directly to avoid hardware overflows when using \n.
267
268     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
269
270 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
271 Author: Wolfgang Denk <wd@denx.de>
272 Date:   Fri May 1 21:59:12 2009 +0200
273
274     Prepare v2009.06-rc1
275
276     Update CHANGELOG.
277
278     Signed-off-by: Wolfgang Denk <wd@denx.de>
279
280 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
281 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
282 Date:   Fri May 1 15:38:06 2009 +0200
283
284     at91: remove lowlevel_init.S
285
286     lowlevel_init.S is not used any more so remove it.
287     As consequence, we also don't have to generate u-boot.lds
288     but can use a static version as before.
289
290     This also fixes the out-of-tree build problem introduced
291     with commit f0a2c7b4 "at91: add support for the PM9263 board"
292
293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
294     Signed-off-by: Wolfgang Denk <wd@denx.de>
295
296 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
297 Author: Wolfgang Denk <wd@denx.de>
298 Date:   Fri May 1 00:16:11 2009 +0200
299
300     Update CHANGELOG; minor coding style cleanup.
301
302     Signed-off-by: Wolfgang Denk <wd@denx.de>
303
304 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
305 Author: Manikandan Pillai <mani.pillai@ti.com>
306 Date:   Tue Apr 21 17:29:05 2009 +0200
307
308     OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
309
310     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
311     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
312
313 commit ac9140037a84629c5583066ff1a177396c47d89d
314 Author: Dirk Behme <dirk.behme@googlemail.com>
315 Date:   Fri Apr 17 14:27:56 2009 +0200
316
317     OMAP3: Beagle: Set pinmux conditionally for Rev C boards
318
319     The Beagle Rev C boards pull UART2 from an alternate set of balls.
320
321     Signed-off-by: Steve Sakoman <steve@sakoman.com>
322     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
323
324 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
325 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
326 Date:   Mon Apr 27 18:33:33 2009 +0200
327
328     ubifs: BUG: Blocks commpressed with zlib
329
330     Blocks compressed with zlib dont have the full gzip header.
331
332     Without this patch, block compressed with zlib cannot be readed!
333
334     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
335
336 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
337 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
338 Date:   Mon Apr 27 18:33:32 2009 +0200
339
340     lib_generic: gunzip: New function zunzip
341
342     Separate gunzip in
343
344     gunzip: Find the end of the header and call zunzip.
345     zunzip: Inflate gunzip block without header.
346
347     UBI fs blocks can be compresed in lzo, zlib or no-compression. The
348     current implementation of u-boot supported all the compressions but
349     there was a bug in the implementation of the zlib blocks.
350
351     UBIFS's Zlib blocks do not have header but they were compressed using
352     gunzip, a function used to decompress gunzip files/sectors with a
353     header.
354
355     This patch adds a new function zunzip that uncompress a zlib block with
356     no header.
357
358     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
359
360 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
361 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
362 Date:   Thu Apr 23 15:37:16 2009 +0200
363
364     at91: fixed plla calc when no USB support is active
365
366     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
367     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
368
369 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
370 Author: Ladislav Michl <ladis@linux-mips.org>
371 Date:   Wed Apr 22 01:12:04 2009 +0200
372
373     arm925t: Fix CONFIG_SYS_HZ to 1000
374
375     Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
376     get_timer.
377
378     Changes since original version:
379     * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
380       improve timer resolution.
381
382     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
383
384 commit 42bf4b2248146abdc592bde0009c6ea42067f437
385 Author: Dirk Behme <dirk.behme@googlemail.com>
386 Date:   Tue Apr 14 20:15:17 2009 +0200
387
388     OMAP3: Remove legacy NAND defines
389
390     Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
391
392     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
393
394 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
395 Author: Sanjeev Premi <premi@ti.com>
396 Date:   Mon Apr 27 21:27:54 2009 +0530
397
398     OMAP3: Print correct silicon revision
399
400     The function display_board_info() displays incorrect
401     silicon revision - based on the return value from
402     function get_cpu_rev().
403
404     This patch fixes the problem.
405
406     Signed-off-by: Sanjeev Premi <premi@ti.com>
407
408 commit 90006e9b33bcdbf241b0295d186e3634137907a9
409 Author: Sanjeev Premi <premi@ti.com>
410 Date:   Mon Apr 27 21:27:44 2009 +0530
411
412     OMAP3: Remove unused board-types
413
414     The board-types defined in struct omap3_sysinfo seem to be
415     unused. The function display_board_info() is passed
416     board type as an argument; which is ignored.
417
418     This patch removes all uses of board-type, related definitions
419     and functions.
420
421     Signed-off-by: Sanjeev Premi <premi@ti.com>
422
423 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
424 Author: Sanjeev Premi <premi@ti.com>
425 Date:   Mon Apr 27 21:27:27 2009 +0530
426
427     OMAP3: Use functions print_cpuinfo() and checkboard()
428
429     Use the functions print_cpuinfo() and checkboard() to
430     display the cpu and board specific information.
431
432     These functions reuse content from the existing function
433     display_board_info() - which has been removed.
434
435     Also, updated the existig OMAP3 configurations to
436     define:
437      - CONFIG_DISPLAY_CPUINFO
438      - CONFIG_DISPLAY_BOARDINFO
439
440     Signed-off-by: Sanjeev Premi <premi@ti.com>
441
442 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
443 Author: Stefan Roese <sr@denx.de>
444 Date:   Wed Mar 18 11:17:37 2009 +0100
445
446     MTD: Change cfi-mtd to accept non-uniform sector sizes
447
448     With this patch non-uniform NOR FLASH chips (chips with multiple erase
449     regions) can be exported via the cfi-mtd layer and therefor used by UBI.
450     We select the largest sector size as erasesize. The cfi driver will make
451     sure that the smaller sectors are handled correctly.
452
453     Signed-off-by: Stefan Roese <sr@denx.de>
454
455 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
456 Author: Anatolij Gustschin <agust@denx.de>
457 Date:   Thu Apr 23 12:35:22 2009 +0200
458
459     video: fix bug in cfb_console.c code
460
461     Fix bug in drawing long version/info strings:
462     U-Boot version string like
463     "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
464     is long and doesn't wrap around correctly while drawing
465     beside the logo. Such long strings partially overwrite
466     the logo. This patch is an attempt to fix it.
467
468     Signed-off-by: Anatolij Gustschin <agust@denx.de>
469
470 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
471 Author: Wolfgang Denk <wd@denx.de>
472 Date:   Tue Apr 28 08:50:31 2009 +0200
473
474     cmd_ext2.c: fix compile warnings
475
476     Get rid of these warnings:
477
478     cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
479     cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
480
481     Signed-off-by: Wolfgang Denk <wd@denx.de>
482
483 commit 28afe0160f87ff74574150d703055a965f91422a
484 Author: Heiko Schocher <hs@denx.de>
485 Date:   Mon Apr 27 10:48:20 2009 +0200
486
487     ids8247: Remove legacy NAND defines
488
489     because legacy NAND support is deprecated converting to current
490     NAND interface. !This just compile, because I have no more the
491     hardware to test it.
492
493     Signed-off-by: Heiko Schocher <hs@denx.de>
494
495 commit dbd33614404b65aa441c5620c3dbd560c4460c09
496 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
497 Date:   Mon Apr 27 09:13:31 2009 +0200
498
499     ubifs: BUG realpath string must be ended with NULL
500
501     If the memory used to copy the link_make is "dirty" the string wont
502     be ended with NULL, throwing out multiple memory bugs.
503
504     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
505     Acked-by: Stefan Roese <sr@denx.de>
506
507 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
508 Author: Peter Tyser <ptyser@xes-inc.com>
509 Date:   Fri Apr 24 15:59:56 2009 -0500
510
511     bmp_logo: Check return value of fread()
512
513     Add basic error handling to fread() function calls.  This prevents
514     compililation warnings such as:
515
516     bmp_logo.c: In function â€˜main’:
517     bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
518     attribute warn_unused_result
519     ...
520
521     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
522
523 commit eea8be86d1c2b570660d1f6c553845e13164231a
524 Author: Peter Tyser <ptyser@xes-inc.com>
525 Date:   Fri Apr 24 15:59:46 2009 -0500
526
527     ncb: Check return value of write()
528
529     This prevents the compilation warning:
530
531     ncb.c: In function 'main':
532     ncb.c:32: warning: ignoring return value of â€˜write’, declared with
533     attribute warn_unused_result
534
535     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
536
537 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
538 Author: Stefan Roese <sr@denx.de>
539 Date:   Fri Apr 24 15:59:35 2009 +0200
540
541     mtd: nand/onenand: Register mtd device upon device scanning
542
543     With this patch the NAND and OneNAND devices are registered in the MTD
544     subsystem and can then be referenced by the mtdcore code (e.g.
545     get_mtd_device_nm()). This is needed for the new "ubi part" command
546     syntax without the flash type parameter (nor|nand|onenand).
547
548     Signed-off-by: Stefan Roese <sr@denx.de>
549
550 commit 10bb62d85a0850dbad1fdd34123378686373f166
551 Author: Stefan Roese <sr@denx.de>
552 Date:   Fri Apr 24 15:58:33 2009 +0200
553
554     mtd: nand: Include linux/mtd/partitions.h in nand_base.h
555
556     This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
557     defined:
558
559     nand_base.c: In function 'nand_release':
560     nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
561
562     Signed-off-by: Stefan Roese <sr@denx.de>
563
564 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
565 Author: Stefan Roese <sr@denx.de>
566 Date:   Fri Apr 24 20:24:19 2009 +0200
567
568     ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
569
570     This patch removes the now unnecessary flash type parameter from the
571     "ubi part" command. Currently the user has to define the type of flash
572     he will be using UBI on. Example:
573
574     => ubi part nor partition1
575
576     With this patch this type parameter is not needed anymore. The user can
577     now select the partition directly without the flash type paramter.
578     Example:
579
580     => ubi part partition1
581
582     This breaks backward compatibility right now because of the change in the
583     command syntax. But UBI support is still quite fresh and the advantage of
584     this new command is syntax big enough for this change. Additionally the
585     code is much cleaner now.
586
587     Signed-off-by: Stefan Roese <sr@denx.de>
588     CC: Kyungmin Park <kyungmin.park@samsung.com>
589
590 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
591 Author: Detlev Zundel <dzu@denx.de>
592 Date:   Thu Apr 23 13:14:20 2009 +0200
593
594     mips/vcth: Use generic 16550 uart driver
595
596     As the common code also handles baudrate switching, which the board
597     specific vct.c driver did not support, this is one of the rare
598     occassions where deleting code actually adds a feature :)
599
600     Signed-off-by: Detlev Zundel <dzu@denx.de>
601     Acked-by: Stefan Roese <sr@denx.de>
602     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
603
604 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
605 Author: Ladislav Michl <ladis@linux-mips.org>
606 Date:   Tue Apr 21 02:26:31 2009 +0200
607
608     Separate mtdparts command from jffs2
609
610     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
611     > Currently the mtdparts commands are included in the jffs2 command support.
612     > This doesn't make sense anymore since other commands (e.g. UBI) use this
613     > infrastructure as well now. This patch separates the mtdparts commands from
614     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
615     > support is needed.
616
617     One more leftover... Let nboot command know about partitions even if JFFS2
618     support is not enabled.
619
620     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
621     Acked-by: Stefan Roese <sr@denx.de>
622
623 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
624 Author: Peter Tyser <ptyser@xes-inc.com>
625 Date:   Mon Apr 20 11:22:13 2009 -0500
626
627     cmd_ide: Remove unused AmigaOneG3SE code
628
629     The output_data_short() and input_data_short() functions for the
630     AmigaOneG3SE are unused and result in compiler warnings.
631
632     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
633
634 commit c93c102ace00764a56dbdf78bac134a23906721e
635 Author: Peter Tyser <ptyser@xes-inc.com>
636 Date:   Mon Apr 20 11:21:40 2009 -0500
637
638     AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
639
640     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
641
642 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
643 Author: Peter Tyser <ptyser@xes-inc.com>
644 Date:   Mon Apr 20 11:09:05 2009 -0500
645
646     Replace __asm references with __asm__
647
648     __asm__ follows gcc's documented syntax and is generally more common
649     than __asm.  This change is only asthetic and should not affect
650     functionality.
651
652     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
653
654 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
655 Author: Peter Tyser <ptyser@xes-inc.com>
656 Date:   Mon Apr 20 11:08:46 2009 -0500
657
658     Replace __attribute references with __attribute__
659
660     __attribute__ follows gcc's documented syntax and is generally more
661     common than __attribute.  This change is only asthetic and should not
662     affect functionality.
663
664     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
665
666 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
667 Author: David Brownell <dbrownell@users.sourceforge.net>
668 Date:   Thu Apr 16 19:55:48 2009 -0700
669
670     mtdpart command: align output columns
671
672     Make the headers in the "mtdparts" command output line up
673     with their columns ... strike the extra TAB character.
674
675     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
676
677 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
678 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
679 Date:   Thu Apr 16 10:51:03 2009 +0900
680
681     Remove sa1100.h
682
683     sa1100.h is not used anywhere, then remove it.
684
685     $ find . -name '*.h' -empty -print
686     ./include/sa1100.h
687     $ git grep 'sa1100.h' .
688     $
689
690     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
691     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
692
693 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
694 Author: Stefan Roese <sr@denx.de>
695 Date:   Tue Apr 14 17:51:21 2009 +0200
696
697     UBIFS: Remove tnc_commit.c which is not used in the read-only version
698
699     I missed removing this file while implementing the UBIFS support. It's
700     not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
701     for spotting.
702
703     Signed-off-by: Stefan Roese <sr@denx.de>
704
705 commit 6356daff70867822bdb23cea49f98e65421a25b8
706 Author: Adrian Hunter <adrian.hunter@nokia.com>
707 Date:   Tue Apr 14 17:50:38 2009 +0200
708
709     UBIFS: fix recovery bug
710
711     UBIFS did not recovery in a situation in which it could
712     have. The relevant function assumed there could not be
713     more nodes in an eraseblock after a corrupted node, but
714     in fact the last (NAND) page written might contain anything.
715     The correct approach is to check for empty space (0xFF bytes)
716     from then on.
717
718     Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
719     Signed-off-by: Stefan Roese <sr@denx.de>
720
721 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
722 Author: Gao Guanhua <B22826@freescale.com>
723 Date:   Tue Apr 14 14:37:35 2009 +0800
724
725     fs: Fix the wrong type of var
726
727     The filelen should be signed type, not unsigned type.
728     otherwise, The condition as below never take.
729         if (filelen < 0)
730
731     Signed-off-by: Gao Guanhua <B22826@freescale.com>
732     Signed-off-by: Dave Liu <daveliu@freescale.com>
733
734 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
735 Author: Wolfgang Denk <wd@denx.de>
736 Date:   Tue Apr 28 00:29:34 2009 +0200
737
738     Update CHANGELOG
739
740     Signed-off-by: Wolfgang Denk <wd@denx.de>
741
742 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
743 Author: David Brownell <dbrownell@users.sourceforge.net>
744 Date:   Thu Apr 16 23:15:15 2009 -0700
745
746     dm9000 EEPROM reading bugfix
747
748     Make the U-Boot dm9000 driver read addresses from EEPROM just
749     like Linux does ... read six bytes, instead of reading twelve
750     bytes and then discarding every other one.
751
752     Using the right Ethernet address is a big win.
753
754     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
755     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
756     Acked-by: Ben Warren <biggerbadderben@gmail.com>
757
758 commit d4c02e6f5d49880123e7f584b88f857ffd874381
759 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
760 Date:   Wed Feb 25 14:27:24 2009 +0900
761
762     rtl8169: fix cache coherency problem
763
764     Fix the problem that cannot access actual data when CPU data cache enabled.
765
766     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
767     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
768     Acked-by: Ben Warren <biggerbadderben@gmail.com>
769
770 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
771 Author: Dirk Behme <dirk.behme@googlemail.com>
772 Date:   Tue Apr 21 17:30:51 2009 +0200
773
774     OMAP3: Fix changed mmc init command
775
776     In recent U-Boot mmcinit changed to mmc init.
777
778     Signed-off-by: Steve Sakoman <steve@sakoman.com>
779     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
780
781 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
782 Author: Wolfgang Denk <wd@denx.de>
783 Date:   Sun Apr 26 20:39:26 2009 +0200
784
785     lib_arm/board.c: remove misleading "test-only" comment.
786
787     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
788     had been marked as "test-only", which is plain wrong considering
789     current usage.  Delete this misleading comment.
790
791     Signed-off-by: Wolfgang Denk <wd@denx.de>
792
793 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
794 Author: David Brownell <dbrownell@users.sourceforge.net>
795 Date:   Sun Apr 12 15:40:16 2009 -0700
796
797     minor DaVinci clock cleanup
798
799     Minor cleanup to clock-related defines for DaVinci DM6446 boards:
800
801      - CONFIG_SYS_CLK_FREQ is unused; remove it.
802
803      - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
804
805     On DM6446 both of those peripheral clocks actually come from the
806     same source, the primary oscillator.  Having them use the same
807     symbol avoids bugs in the clone'n'modify development cycle.
808
809     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
810
811 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
812 Author: Minkyu Kang <mk7.kang@samsung.com>
813 Date:   Mon Apr 6 19:59:29 2009 +0900
814
815     s3c64xx: remove unnecessary definition
816
817     CONFIG_S3C6400 is must defined at config header file
818     That definition is unnecessary at this file
819
820     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
821
822 commit 14b9308d511b53042ef478936e367a67282df66a
823 Author: Heiko Schocher <hs@denx.de>
824 Date:   Fri Apr 24 06:50:45 2009 +0200
825
826     83xx: searching "muram-data" by compatible property
827
828     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
829     in the muram-data node, the reg entry needs to be updated.
830     This is done in fdt_fixup_muram(), but we should use
831     the compatible "fsl,qe-muram-data" for searching the
832     node instead of searching the muram-data node with
833     an absolute path.
834
835     Signed-off-by: Heiko Schocher <hs@denx.de>
836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
837
838 commit 8e15088794807944b221c11609d36789efc7f767
839 Author: Anatolij Gustschin <agust@denx.de>
840 Date:   Thu Apr 23 21:29:34 2009 +0200
841
842     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
843
844     The size of U-Boot binary for MPC8360ERDK increased
845     (> 2 flash sectors now), so 'saveenv' will partially
846     overwrite U-Boot in flash and will brick the board.
847     This patch moves environment offset to fourth flash
848     sector and also fixes CONFIG_SYS_MONITOR_LEN.
849
850     Signed-off-by: Anatolij Gustschin <agust@denx.de>
851     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
852
853 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
854 Author: Michael Zaidman <michael.zaidman@gmail.com>
855 Date:   Sat Apr 4 01:43:00 2009 +0300
856
857     NetLoop initialization bug
858
859     The patch fixes the bug of partial initialization of global network
860     parameters.
861
862     Upon u-boot's start up the first ping command causes a failure of the
863     consequent TFTP command. It happens in the recently added mechanism of
864     the NetLoop initialization where initialization of global network
865     parameters is separated in the NetInitLoop routine which is called per
866     env_id change. Thus, ping request will initialize the network parameters
867     necessary for ping operation only, afterwards the env_changed_id will be
868     set to the env_id that will prevent all following initialization requests
869     from other protocols.
870     The problem is that the initialized by ping subset of network parameters
871     is not sufficient for other protocols and particularly for TFTP which
872     requires the NetServerIp also.
873
874     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
875     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
876
877 commit b11f664f52c2855990107c18f242223377183575
878 Author: Timur Tabi <timur@freescale.com>
879 Date:   Thu Apr 9 10:27:05 2009 -0500
880
881     net: fix ULI 526x macro usage in netdev.h
882
883     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
884     is used everywhere else, so that's the correct macro name.  Without this fix,
885     Ethernet will not work on the Freescale MPC8610 HPCD.
886
887     Signed-off-by: Timur Tabi <timur@freescale.com>
888     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
889
890 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
891 Author: David Brownell <dbrownell@users.sourceforge.net>
892 Date:   Sun Apr 12 15:38:06 2009 -0700
893
894     fix DaVinci NS16550_REG_SIZE regression
895
896     Update the DaVinci DM6446 boards to use the new convention
897     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
898     from the original 4 bytes, but these chips are little-endian.
899
900     (Resolves a regression added recently by the include/ns16550.h
901     patch to "Unify structure declaration for registers".  The code
902     previously worked just fine because the registers were accessed
903     as host-endian words, not as bytes.)
904
905     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
906
907 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
908 Author: Mike Frysinger <vapier@gentoo.org>
909 Date:   Sun Apr 12 22:29:20 2009 -0400
910
911     cmd_nand: drop duplicate NULL ptr check
912
913     The first if statement checks for NULL ptrs, so there is no need to check
914     it again in later else cases (such as .oob).
915
916     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
917     CC: Scott Wood <scottwood@freescale.com>
918
919 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
920 Author: David Brownell <dbrownell@users.sourceforge.net>
921 Date:   Mon Apr 13 08:03:38 2009 -0700
922
923     CMD_UBI != MTD_PARTITIONS
924
925     Fix dependency goofage:  it should certainly be possible to have the
926     partition support without bringing in UBI commands.
927
928     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
929     Acked-by: Stefan Roese <sr@denx.de>
930
931 commit 6ebff365eb63093ca35b687316002535c6a18820
932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
933 Date:   Thu Apr 16 21:30:48 2009 +0200
934
935     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
936
937     The timer has been rewrote with a precision at ~0,18%
938
939     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
940     Tested-by: Sergey Lapin <slapin@ossfans.org>
941     Tested-by: Eric BENARD <ebenard@free.fr>
942
943 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
944 Author: Ilko Iliev <iliev@ronetix.at>
945 Date:   Thu Apr 16 21:30:48 2009 +0200
946
947     at91: add support for the PM9263 board of Ronetix GmbH
948
949     The PM9263 board is based on the AT91SAM9263-EK board.
950
951     Here is the page on Ronetix website:
952     http://www.ronetix.at/starter_kit_9263.html
953
954     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
955     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
956
957 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
959 Date:   Thu Apr 16 21:30:44 2009 +0200
960
961     at91sam9/at91cap: improve clock framework
962
963     calculate dynamically the clock rate and pllb setting for usb
964
965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
966
967 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
968 Author: Stefan Roese <sr@denx.de>
969 Date:   Wed Apr 15 14:08:48 2009 +0200
970
971     ppc4xx: Disable POST memory test on NAND-booting Kilauea
972
973     Don't run the memory POST on the NAND-booting version. It will
974     overwrite part of the U-Boot image which is already loaded from NAND
975     to SDRAM. We were just lucky that it booted at all with this SDRAM
976     test enabled.
977
978     Signed-off-by: Stefan Roese <sr@denx.de>
979
980 commit 9a929170be89b27bce677504da27e88600c06c49
981 Author: Stefan Roese <sr@denx.de>
982 Date:   Wed Apr 15 14:06:26 2009 +0200
983
984     ppc4xx: Disable POST memory test on NAND-booting Sequoia
985
986     Don't run the memory POST on the NAND-booting version. It will
987     overwrite part of the U-Boot image which is already loaded from NAND
988     to SDRAM. We were just lucky that it booted at all with this SDRAM
989     test enabled.
990
991     Signed-off-by: Stefan Roese <sr@denx.de>
992
993 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
994 Author: Stefan Roese <sr@denx.de>
995 Date:   Wed Apr 15 11:32:53 2009 +0200
996
997     ppc4xx: Remove unused code for Sequoia NAND booting version
998
999     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
1000     used at all. This patch changes it's define to the currently used value of
1001     133333333 and removes the unnecessary code.
1002
1003     Signed-off-by: Stefan Roese <sr@denx.de>
1004
1005 commit cf9409885cbe01405bad76790e99f8adf3351f4d
1006 Author: Stefan Roese <sr@denx.de>
1007 Date:   Wed Apr 15 10:50:48 2009 +0200
1008
1009     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
1010
1011     This additional text in the bootup log helps to see if the board is
1012     configured for NAND-booting. Especially helpful for boards that can
1013     boot from NOR and NAND (e.g. most of the AMCC eval boards).
1014
1015     Signed-off-by: Stefan Roese <sr@denx.de>
1016
1017 commit 5132106a27b8fb302677852b26ffd319b40d17e2
1018 Author: Stefan Roese <sr@denx.de>
1019 Date:   Wed Apr 8 10:36:22 2009 +0200
1020
1021     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
1022
1023     Currently the NOR & NAND support in Linux only works for the "standard"
1024     Sequoia, the version booting for NOR flash. The NAND-booting version
1025     has the chip-selects swapped. Here the chip-select mappings:
1026
1027     "Standard" NOR-booting version:
1028     CS0 NOR
1029     CS3 NAND
1030
1031     NAND-booting version:
1032     CS0 NAND
1033     CS3 NOR
1034
1035     With this path the dtb gets fixed-up, so that the correct chip-select
1036     numbers are patched in the dtb enabling correct NOR & NAND support
1037     in Linux on the NAND-booting Sequoia version.
1038
1039     Signed-off-by: Stefan Roese <sr@denx.de>
1040
1041 commit aad4eca4ba8d597747199d8af723426681557dda
1042 Author: Mike Frysinger <vapier@gentoo.org>
1043 Date:   Sat Apr 4 09:10:27 2009 -0400
1044
1045     Blackfin: audit UART for all known anomalies
1046
1047     There is no code change here, just new comments, but this keeps me from
1048     having to do another audit from scratch in the future.
1049
1050     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1051
1052 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
1053 Author: Mike Frysinger <vapier@gentoo.org>
1054 Date:   Sat Apr 4 08:40:13 2009 -0400
1055
1056     Blackfin: add check for anomaly 05000362
1057
1058     DESCRIPTION:
1059     The column address width settings for banks 2 and 3 are misconnected in
1060     the SDRAM controller.  Accesses to bank 2 will result in an error if the
1061     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
1062     that of bank 2.
1063
1064     WORKAROUND:
1065     If using bank 2, make sure that banks 2 and 3 have the same column address
1066     width settings in the EBIU_SDBCTL register.  This must be the case
1067     regardless of whether or not bank 3 is enabled.
1068
1069     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1070
1071 commit c2e07449f546fb375289cdac1a608fdc20357873
1072 Author: Mike Frysinger <vapier@gentoo.org>
1073 Date:   Sat Apr 4 08:29:55 2009 -0400
1074
1075     Blackfin: add comment about anomaly 05000430 avoidance
1076
1077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1078
1079 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
1080 Author: Mike Frysinger <vapier@gentoo.org>
1081 Date:   Sat Apr 4 08:10:22 2009 -0400
1082
1083     Blackfin: add workaround for anomaly 05000242
1084
1085     DESCRIPTION:
1086     If the DF bit is set prior to a hardware reset, the PLL will continue to
1087     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
1088     cleared in the PLL_CTL register.
1089
1090     WORKAROUND:
1091     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
1092     2 after reset.
1093
1094     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1095
1096 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
1097 Author: Mike Frysinger <vapier@gentoo.org>
1098 Date:   Sat Apr 4 08:09:24 2009 -0400
1099
1100     Blackfin: add workaround for anomaly 05000171
1101
1102     DESCRIPTION:
1103     The Boot ROM is executed at power up/reset and changes the value of the
1104     SICA_IWR registers from their default reset value of 0xFFFF, but does not
1105     restore them.
1106
1107     WORKAROUND:
1108     User code should not rely on the default value of these registers.  Set
1109     the desired values explicitly.
1110
1111     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1112
1113 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
1114 Author: Mike Frysinger <vapier@gentoo.org>
1115 Date:   Sat Apr 4 08:22:36 2009 -0400
1116
1117     Blackfin: update anomaly sheets
1118
1119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1120
1121 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
1122 Author: Graf Yang <graf.yang@analog.com>
1123 Date:   Sat Apr 4 07:45:57 2009 -0400
1124
1125     Blackfin: nand: flush peripheral before polling it
1126
1127     We need to make sure the data written to the nand flash controller makes
1128     it there before we start polling its status register.  Otherwise, we may
1129     get stale data and return before the controller is actually ready.
1130
1131     Signed-off-by: Graf Yang <graf.yang@analog.com>
1132     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1133     Acked-by: Scott Wood <scottwood@freescale.com>
1134
1135 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
1136 Author: Remy Bohmer <linux@bohmer.net>
1137 Date:   Sun Apr 5 11:43:28 2009 +0200
1138
1139     Support for PXA27X UDC.
1140
1141         This Patch adds Support for PXA27X UDC.
1142         (Rebased to drivers/usb reorganisation)
1143
1144     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
1145     Signed-off-by: Remy Bohmer <linux@bohmer.net>
1146
1147 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
1148 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1149 Date:   Fri Apr 3 12:46:58 2009 +0200
1150
1151     drivers/usb: regorganisation
1152
1153     move to linux usb driver organisation
1154
1155     as following
1156
1157     drivers/usb/gadget
1158     drivers/usb/host
1159     drivers/usb/musb
1160
1161     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1162     Signed-off-by: Remy Bohmer <linux@bohmer.net>
1163
1164 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
1165 Author: Todor I Mollov <tmollov@ucsd.edu>
1166 Date:   Sat Apr 4 06:53:06 2009 -0400
1167
1168     Blackfin: spi: make cs deassert function deterministic
1169
1170     Blackfin SPI driver was not driving the SPI chip-select high before
1171     putting the chip-select signals into tri-state mode.  This is probably
1172     something that slipped by unnoticed in most designs.  If the signals are
1173     put directly into a tri-state mode, then the board is relying on the
1174     pull-up resistors to pull up the chip-select before the next transaction.
1175     Most of the time this is fine, except when you have two transactions that
1176     follow each other very closely, such as the flash erase and read status
1177     register commands.  In this case I was seeing a 500ns separation between
1178     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
1179     timing spec about half the time and resulted in intermittent errors.  (A
1180     stronger pull up would fix this, but our design is targeted for low power
1181     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
1182     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
1183     chip-selects high before putting them into tri-state.  For me, this
1184     resulted in a rise time of 5ns instead of the previous rise time of about
1185     1us, and fully satisfied the timing spec of the chip.
1186
1187     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
1188     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1189
1190 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
1191 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1192 Date:   Sat Dec 13 21:08:05 2008 +0100
1193
1194     integratorap: fix PCI support
1195
1196     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1197
1198 commit 1c397508c836dfcb01fb2471c71de0727051f117
1199 Author: Dirk Behme <dirk.behme@googlemail.com>
1200 Date:   Mon Mar 30 21:15:23 2009 +0200
1201
1202     OMAP3: Update Overo pin mux for new expansion board
1203
1204     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
1205     switches. This patch changes the pinmux configuration for those pins.
1206     They were previously set up for unused MMC3_DAT4-7.
1207
1208     Signed-off-by: Steve Sakoman <steve@sakoman.com>
1209     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
1210
1211 commit ab298231518675b3784aea88ee9b978438f99e63
1212 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1213 Date:   Sun Apr 5 13:08:03 2009 +0200
1214
1215     arm: unify reset command
1216
1217     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1218
1219 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
1220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1221 Date:   Sun Apr 5 13:06:31 2009 +0200
1222
1223     arm: clean cache management
1224
1225     unify arm cache management except for non standard cache as ARM7TDMI
1226
1227     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1228
1229 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
1230 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1231 Date:   Sun Apr 5 13:02:43 2009 +0200
1232
1233     arm: update co-processor 15 access
1234
1235     import system.h from linux
1236
1237     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1238
1239 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
1240 Author: Guennadi Liakhovetski <lg@denx.de>
1241 Date:   Sun Apr 5 00:42:02 2009 +0200
1242
1243     ARM: add the imx31_phycore_eet target to MAINTAINERS
1244
1245     imx31_phycore_eet is a variant of the imx31_phycore board with a few
1246     extensions, which justifies a separate entry in the MAINTAINERS list,
1247     whereas normally all entries sharing a single configuration file and a
1248     board/ directory have only one entry in MAINTAINERS.
1249
1250     Reported-by: Wolfgang Denk <wd@denx.de>
1251     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1252
1253 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
1254 Author: Guennadi Liakhovetski <lg@denx.de>
1255 Date:   Sun Apr 5 00:37:07 2009 +0200
1256
1257     ARM: fix out-of-tree build of imx31_phycore_eet
1258
1259     Fix out-of-tree build of the imx31_phycore_eet target.
1260
1261     Reported-by: Wolfgang Denk <wd@denx.de>
1262     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1263
1264 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
1265 Author: Jon Smirl <jonsmirl@gmail.com>
1266 Date:   Sat Apr 4 17:44:51 2009 -0400
1267
1268     mpc5200: reduce delays in i2c
1269
1270     The previous code waited 1000us before checking i2c
1271     status. Measurement shows i2c is usually ready in
1272     under 50us. Change the polling interval to 15us,
1273     loop 6,667 times to keep the polling timeout constant
1274     at 100ms.
1275
1276 commit 36003268968949110ef145d9f2eaf8439c96d25b
1277 Author: Sanjeev Premi <premi@ti.com>
1278 Date:   Fri Apr 3 14:00:07 2009 +0530
1279
1280     OMAP: Fix compile issue
1281
1282     Fixes this compile error:
1283     board.c: In function 'do_switch_ecc':
1284     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
1285     make[1]: *** [board.o] Error 1
1286     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
1287     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
1288
1289     This is due to the fact that current command uses long
1290     help for the usage print even if the CONFIG_SYS_LONGHELP
1291     is not enabled. (Thanks Jean-Christophe for explanation).
1292
1293     Signed-off-by: Sanjeev Premi <premi@ti.com>
1294
1295 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
1296 Author: Minkyu Kang <mk7.kang@samsung.com>
1297 Date:   Fri Apr 3 09:56:16 2009 +0900
1298
1299     s3c64xx: fix the wrong gpio offset
1300
1301     This patch fix the wrong gpio offset
1302
1303     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
1304
1305 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
1306 Author: Kyungmin Park <kmpark@infradead.org>
1307 Date:   Wed Nov 26 10:18:13 2008 +0900
1308
1309     Move machine specific code to board at s3c64xx (v2)
1310
1311     Move machine specific code to smdk6400.
1312     Some board use OneNAND instead of NAND.
1313
1314     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
1315     So it's better to use macro instead of hard-coded value.
1316
1317     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1318
1319 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
1320 Author: Tom Rix <Tom.Rix@windriver.com>
1321 Date:   Wed Apr 1 22:02:19 2009 -0500
1322
1323     ZOOM1 Remove legacy NAND defines
1324
1325     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1326
1327 commit 5891151707ee5902fe62d554c247f42865815757
1328 Author: Tom Rix <Tom.Rix@windriver.com>
1329 Date:   Wed Apr 1 22:02:20 2009 -0500
1330
1331     OMAP3 Fix multiline formatting in board init files.
1332
1333     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1334
1335 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
1336 Author: Wolfgang Denk <wd@denx.de>
1337 Date:   Sun Apr 5 00:27:57 2009 +0200
1338
1339     Update CHANGELOG, coding style cleanup.
1340
1341 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
1342 Author: Wolfgang Denk <wd@denx.de>
1343 Date:   Sun Apr 5 00:18:44 2009 +0200
1344
1345     One more fix for building env_embedded.o
1346
1347     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
1348     commit afcbce07, we also need to do the same for
1349     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
1350
1351     Signed-off-by: Wolfgang Denk <wd@denx.de>
1352
1353 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
1354 Author: Scott Wood <scottwood@freescale.com>
1355 Date:   Thu Apr 2 16:15:10 2009 -0500
1356
1357     common/image.c: Relocate strings in tables.
1358
1359     Without this, u-boot can crash or print garbage if the original link
1360     address no longer points to a valid string.
1361
1362     Signed-off-by: Scott Wood <scottwood@freescale.com>
1363
1364 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
1365 Author: Scott Wood <scottwood@freescale.com>
1366 Date:   Thu Apr 2 16:10:36 2009 -0500
1367
1368     mpc8260: Fill in brg's clock-frequency in device tree.
1369
1370     Signed-off-by: Scott Wood <scottwood@freescale.com>
1371
1372 commit c73ed274a211699739d83c2cef92853dc6716e15
1373 Author: Scott Wood <scottwood@freescale.com>
1374 Date:   Thu Apr 2 18:20:43 2009 -0500
1375
1376     MPC8260ADS: Add nfsboot/ramboot to default environment.
1377
1378     This brings it in line with other Freescale boards.
1379
1380     Signed-off-by: Scott Wood <scottwood@freescale.com>
1381
1382 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
1383 Author: Andreas Huber <andreas.huber@keymile.com>
1384 Date:   Thu Apr 2 17:15:34 2009 +0200
1385
1386     UBI/cfi-mtd: Fix mtd name for multiple chips
1387
1388     On platforms with multiple NOR chips, currently only the first one
1389     can be selected using the "ubi part" command. This patch fixes this
1390     problem by using different names for the NOR "mtd devices".
1391
1392     It also changes the name of the NOR MTD device from "cfi-mtd" to
1393     "norX" (X indexing the device numer) to better match the mtdparts
1394     defaults.
1395
1396     Signed-off-by: Stefan Roese <sr@denx.de>
1397     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
1398
1399 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
1400 Author: Peter Korsgaard <jacmet@sunsite.dk>
1401 Date:   Tue Mar 31 17:52:16 2009 +0200
1402
1403     tools/setlocalversion: use git svn instead of git-svn
1404
1405     Use the new "git <subcmd>" syntax instead of the deprecated
1406     "git-<subcmd>".
1407
1408     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
1409
1410 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
1411 Author: Mingkai Hu <Mingkai.hu@freescale.com>
1412 Date:   Tue Mar 31 14:09:40 2009 +0800
1413
1414     eSPI: add the eSPI register support
1415
1416     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
1417
1418 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
1419 Author: Minkyu Kang <mk7.kang@samsung.com>
1420 Date:   Mon Mar 30 14:55:51 2009 +0900
1421
1422     cmd_mmc: add support for device command for selecting mmc device
1423
1424     This patch improves device command for selecting mmc device
1425
1426     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
1427
1428 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
1429 Author: Alan Carvalho de Assis <acassis@gmail.com>
1430 Date:   Sat Mar 28 19:50:16 2009 -0300
1431
1432     Small fix to m5282evb
1433
1434     This is just a small fix to get u-boot on m5282evb.
1435
1436     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
1437
1438 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
1439 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
1440 Date:   Fri Mar 27 10:21:14 2009 +0100
1441
1442     UBIFS: add R/O compatibility
1443
1444     Now UBIFS is supported by u-boot. If we ever decide to change the
1445     media format, then people will have to upgrade their u-boots to
1446     mount new format images. However, very often it is possible to
1447     preserve R/O forward-compatibility, even though the write
1448     forward-compatibility is not preserved.
1449
1450     This patch introduces a new super-block field which stores the
1451     R/O compatibility version.
1452
1453     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
1454     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
1455     Signed-off-by: Stefan Roese <sr@denx.de>
1456
1457 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
1458 Author: Mike Frysinger <vapier@gentoo.org>
1459 Date:   Mon Mar 23 22:27:34 2009 -0400
1460
1461     more command usage cleanup
1462
1463     Fix up a few dangling commands like in "Command usage cleanup" commit.
1464
1465     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1466
1467 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
1468 Author: Ladislav Michl <ladis@linux-mips.org>
1469 Date:   Mon Mar 23 12:06:07 2009 +0100
1470
1471     Separate mtdparts command from jffs2
1472
1473     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
1474     > Currently the mtdparts commands are included in the jffs2 command support.
1475     > This doesn't make sense anymore since other commands (e.g. UBI) use this
1476     > infrastructure as well now. This patch separates the mtdparts commands from
1477     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
1478     > support is needed.
1479
1480     ... and to make it useful for NAND chips as well, we should also remove now
1481     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
1482     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
1483     but that can be fixed later (tm).
1484
1485     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
1486
1487 commit b196ca75503ce307c535b87bf47d51f05e7530df
1488 Author: Mike Frysinger <vapier@gentoo.org>
1489 Date:   Sun Mar 22 22:18:01 2009 -0400
1490
1491     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
1492
1493     Rather than sticking Blackfin-specific stuff into the eeprom example, use
1494     an indirect macro so that any board can override it with their own magic
1495     sauce in their board config file.
1496
1497     Also fix some spurious semi-colons in defines while I'm at it ...
1498
1499     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1500     CC: Ben Warren <biggerbadderben@gmail.com>
1501
1502 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
1503 Author: Sascha Hauer <s.hauer@pengutronix.de>
1504 Date:   Sat Mar 21 09:38:46 2009 -0400
1505
1506     mpc52xx phy: initialize only when needed
1507
1508     Do not initialize phy on startup, instead initialize it
1509     when we actually need it.
1510
1511     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
1512
1513 commit 03bab0091948196b9558248684c04f60943ca4b5
1514 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1515 Date:   Mon Mar 30 16:51:40 2009 +0200
1516
1517     at91sam9263ek: enable hush and auto complete support
1518
1519     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1520     Acked-by: Stelian Pop <stelian@popies.net>
1521
1522 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
1523 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1524 Date:   Fri Mar 27 23:26:44 2009 +0100
1525
1526     at91: move dataflash spi driver to drivers/spi
1527
1528     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1529
1530 commit 2b7178afce59f71e95da657273f4132012098c1f
1531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1532 Date:   Fri Mar 27 23:26:44 2009 +0100
1533
1534     at91: move usb driver to drivers/usb
1535
1536     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1537
1538 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
1539 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1540 Date:   Fri Mar 27 23:26:43 2009 +0100
1541
1542     at91rm9200: Reset update
1543
1544     Update the rm9200 reset sequence to try executing a board-specific reset
1545     function and move specific board reset to board.
1546
1547     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1548
1549 commit 3524049cd053746298e4cfab2449882e75c146fc
1550 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1551 Date:   Fri Mar 27 23:26:43 2009 +0100
1552
1553     at91rm9200: move serial shutdown code to serial drivers
1554
1555     introduce serial_exit for this purpose. Use it only when the rm9200
1556     serial driver is active
1557
1558     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1559
1560 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
1561 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1562 Date:   Fri Mar 27 23:26:43 2009 +0100
1563
1564     at91rm9200: move serial driver to drivers/serial
1565
1566     add CONFIG_AT91RM9200_USART to activate the driver
1567
1568     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1569
1570 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
1571 Author: Ulf Samuelsson <ulf@atmel.com>
1572 Date:   Fri Mar 27 23:26:43 2009 +0100
1573
1574     Add support for the AT91RM9200EK Board.
1575
1576     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
1577     ARM9-based 32-bit RISC microcontroller and enables real-time code development
1578     and evaluation.
1579
1580     Here is the chip page on Atmel website:
1581     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
1582
1583     with
1584         - NOR (cfi driver)
1585         - DataFlash
1586         - USB OHCI
1587         - Net
1588         - I2C (hard)
1589
1590     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
1591     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1592
1593 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
1594 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1595 Date:   Fri Mar 27 23:26:42 2009 +0100
1596
1597     add dataflash mmc mux missing support
1598
1599     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1600
1601 commit 2a325ce3c705ab2d82760afc541c511328472df8
1602 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1603 Date:   Fri Mar 27 23:26:42 2009 +0100
1604
1605     at91rm9200dk: Move conditional compilation to Makefile
1606
1607     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1608
1609 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
1610 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1611 Date:   Fri Mar 27 23:26:42 2009 +0100
1612
1613     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
1614
1615     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1616
1617 commit 843a2654bce74192de2b5a43474fdc27a572ab40
1618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1619 Date:   Fri Mar 27 23:26:42 2009 +0100
1620
1621     at91sam9: add watchdog support
1622
1623     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
1624     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1625
1626 commit a47492ac60657dd9d59c713aa049319ea6eabd52
1627 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1628 Date:   Fri Mar 27 13:14:52 2009 +0100
1629
1630     at91sam9/at91cap: spi init add hardware chip select support
1631
1632     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1633
1634 commit 66932ac3929c7a145a6ef6574a96fd7535154951
1635 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1636 Date:   Sat Apr 4 19:15:40 2009 +0200
1637
1638     netstar: fix crc32.c dependancy location
1639
1640     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1641
1642 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
1643 Author: Scott Wood <scottwood@freescale.com>
1644 Date:   Fri Apr 3 15:24:40 2009 -0500
1645
1646     MPC8260ADS: Define CONFIG_HAS_ETH0.
1647
1648     This is required so that the MAC address will be updated in the device tree.
1649
1650     Signed-off-by: Scott Wood <scottwood@freescale.com>
1651
1652 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
1653 Author: Scott Wood <scottwood@freescale.com>
1654 Date:   Fri Apr 3 15:26:45 2009 -0500
1655
1656     PQ2FADS: Enable PCI.
1657
1658     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
1659
1660     Signed-off-by: Scott Wood <scottwood@freescale.com>
1661
1662 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
1663 Author: Wolfgang Denk <wd@denx.de>
1664 Date:   Sat Apr 4 16:57:50 2009 +0200
1665
1666     Fix quoting bug introduced by commit 74de7aef
1667
1668     Signed-off-by: Wolfgang Denk <wd@denx.de>
1669
1670 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
1671 Author: Wolfgang Denk <wd@denx.de>
1672 Date:   Sat Apr 4 16:14:51 2009 +0200
1673
1674     Fix implicit declaration of function 'htons'
1675
1676     Include <netinet/in.h> instead of <linux/in.h> to get htons()
1677     prototpye.
1678
1679     Signed-off-by: Wolfgang Denk <wd@denx.de>
1680
1681 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
1682 Author: Kumar Gala <galak@kernel.crashing.org>
1683 Date:   Sat Apr 4 10:21:02 2009 -0500
1684
1685     fsl_law: Fix bug in calculation of LAW sizing
1686
1687     In set_ddr_laws() when we determined how much of the size requested
1688     to be mapped was covered by the the first LAW we needed to recalculate
1689     the size based on what was actually mapped.
1690
1691     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1692
1693 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
1694 Author: Kumar Gala <galak@kernel.crashing.org>
1695 Date:   Thu Apr 2 13:57:05 2009 -0500
1696
1697     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
1698
1699     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1700
1701 commit c8514622e2713d9c47919acfe23fce386782afe7
1702 Author: Kumar Gala <galak@kernel.crashing.org>
1703 Date:   Thu Apr 2 13:22:48 2009 -0500
1704
1705     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
1706
1707     Rename the pci header for FSL HW so we can move some prototypes
1708     in there and stop doing explicit externs
1709
1710     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1711
1712 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
1713 Author: Wolfgang Denk <wd@denx.de>
1714 Date:   Sat Apr 4 16:10:40 2009 +0200
1715
1716     Fix building of env_embedded.o
1717
1718     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
1719     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
1720     building for many boards.
1721
1722     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
1723     set.
1724
1725     Signed-off-by: Wolfgang Denk <wd@denx.de>
1726
1727 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
1728 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1729 Date:   Sat Apr 4 12:49:11 2009 +0200
1730
1731     rename include/zlib.h to include/u-boot/zlib.h
1732
1733     Some systems have zlib.h installed in /usr/include/. This isn't the
1734     desired file for u-boot code - we want the one in include/zlib.h.
1735     This rename will avoid the conflict.
1736
1737     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1738     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1739
1740 commit ae644c178f097874a92a6d934f364985fc7e075a
1741 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1742 Date:   Sat Apr 4 12:46:31 2009 +0200
1743
1744     tools/Makefile: fix image.c dependancy location
1745
1746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1747     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1748
1749 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
1750 Author: Mike Frysinger <vapier@gentoo.org>
1751 Date:   Sat Apr 4 07:42:25 2009 -0400
1752
1753     tools: add ncb to gitignore
1754
1755     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1756
1757 commit 453c0d7558215cbc8636d94af172886d84e0dbba
1758 Author: Detlev Zundel <dzu@denx.de>
1759 Date:   Fri Apr 3 16:45:46 2009 +0200
1760
1761     include/ns16550.h: Unify structure declaration for registers
1762
1763     Instead of special casing the different access patterns, use common
1764     code with light macros sprinkled in to accomodate for the different
1765     layouts of the register structure.
1766
1767     Note that this also changes the types of the registers for the
1768     "positively packed (>1)" cases.  As the registers truly are unsigned
1769     chars, this is surely the Right Thing, but it is a semantic change.
1770     Note that for this case depending on the endianness on the bus, we may
1771     see a change of behaviour.
1772
1773     Signed-off-by: Detlev Zundel <dzu@denx.de>
1774
1775 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
1776 Author: Peter Tyser <ptyser@xes-inc.com>
1777 Date:   Fri Mar 13 18:54:52 2009 -0500
1778
1779     Delete now unused tools/Makefile.win32
1780
1781     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1782
1783 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
1784 Author: Peter Tyser <ptyser@xes-inc.com>
1785 Date:   Fri Mar 13 18:54:51 2009 -0500
1786
1787     Add support for building native win32 tools
1788
1789     Add support for compiling the host tools in the tools directory using
1790     the MinGW toolchain.  This produces executables which can be used on
1791     standard Windows computers without requiring cygwin.
1792
1793     One must specify the MinGW compiler and strip utilities as if they
1794     were the host toolchain in order to build win32 executables, eg:
1795
1796     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
1797
1798     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1799
1800 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
1801 Author: Peter Tyser <ptyser@xes-inc.com>
1802 Date:   Fri Mar 13 18:54:50 2009 -0500
1803
1804     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
1805
1806     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1807
1808 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
1809 Author: Peter Tyser <ptyser@xes-inc.com>
1810 Date:   Fri Mar 13 18:54:49 2009 -0500
1811
1812     tools/Makefile: Create generic build rules
1813
1814     Create a few generic build rules to replace the current method which has
1815     1 build target for each file
1816
1817     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1818
1819 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
1820 Author: Peter Tyser <ptyser@xes-inc.com>
1821 Date:   Fri Mar 13 18:54:48 2009 -0500
1822
1823     tools/Makefile: Use auto-generated object file dependencies
1824
1825     Files in the SRCS variable have their dependencies automatically
1826     generated so remove duplicate explicit dependencies
1827
1828     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1829
1830 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
1831 Author: Peter Tyser <ptyser@xes-inc.com>
1832 Date:   Fri Mar 13 18:54:47 2009 -0500
1833
1834     tools/Makefile: Remove symlinks for remaining source files
1835
1836     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1837
1838 commit eed073315b6447eceadf7468a4c2b757442c7c6f
1839 Author: Peter Tyser <ptyser@xes-inc.com>
1840 Date:   Fri Mar 13 18:54:46 2009 -0500
1841
1842     tools/Makefile: Dynamically generate libfdt object dependencies
1843
1844     Add the libfdt files to the SRCS variable so that they have their
1845     dependencies automatically generated
1846
1847     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1848
1849 commit c0170175393b94560fa7a5da6dd31377df5f4a72
1850 Author: Peter Tyser <ptyser@xes-inc.com>
1851 Date:   Fri Mar 13 18:54:45 2009 -0500
1852
1853     tools/Makefile: Remove symlinks for fdt targets
1854
1855     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1856
1857 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
1858 Author: Peter Tyser <ptyser@xes-inc.com>
1859 Date:   Fri Mar 13 18:54:44 2009 -0500
1860
1861     tools/Makefile: Add libfdt/ to the include search path
1862
1863     This change makes the process of symlinking libfdt_internal.h
1864     unnecessary
1865
1866     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1867
1868 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
1869 Author: Peter Tyser <ptyser@xes-inc.com>
1870 Date:   Fri Mar 13 18:54:43 2009 -0500
1871
1872     tools: Remove unecessary symlinking of zlib.h
1873
1874     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
1875     was previously necessary to give U-Boot's version of zlib.h precedence
1876     over the host computer's version of zlib.h.
1877
1878     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1879
1880 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
1881 Author: Peter Tyser <ptyser@xes-inc.com>
1882 Date:   Fri Mar 13 18:54:42 2009 -0500
1883
1884     tools/Makefile: Add tools/ to the include search path
1885
1886     This change makes the process of symlinking mkimage.h and fdt_host.h
1887     unnecessary
1888
1889     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1890
1891 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
1892 Author: Peter Tyser <ptyser@xes-inc.com>
1893 Date:   Fri Mar 13 18:54:41 2009 -0500
1894
1895     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
1896
1897     Also conditionally add ncb.o to OBJ_FILES list
1898
1899     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1900
1901 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
1902 Author: Peter Tyser <ptyser@xes-inc.com>
1903 Date:   Fri Mar 13 18:54:40 2009 -0500
1904
1905     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
1906
1907     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1908
1909 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
1910 Author: Peter Tyser <ptyser@xes-inc.com>
1911 Date:   Fri Mar 13 18:54:39 2009 -0500
1912
1913     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
1914
1915     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1916
1917 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
1918 Author: Peter Tyser <ptyser@xes-inc.com>
1919 Date:   Fri Mar 13 18:54:38 2009 -0500
1920
1921     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
1922
1923     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1924
1925 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
1926 Author: Peter Tyser <ptyser@xes-inc.com>
1927 Date:   Fri Mar 13 18:54:37 2009 -0500
1928
1929     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
1930
1931     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1932
1933 commit eeba8617908e33f7e7db3b1588c04ca65b856793
1934 Author: Peter Tyser <ptyser@xes-inc.com>
1935 Date:   Fri Mar 13 18:54:36 2009 -0500
1936
1937     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
1938
1939     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1940
1941 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
1942 Author: Peter Tyser <ptyser@xes-inc.com>
1943 Date:   Fri Mar 13 18:54:35 2009 -0500
1944
1945     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
1946
1947     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1948
1949 commit ee3584a5970230ee96aae19505ad3226734ee4ff
1950 Author: Peter Tyser <ptyser@xes-inc.com>
1951 Date:   Fri Mar 13 18:54:34 2009 -0500
1952
1953     tools/Makefile: Split variable declarations into multiple lines
1954
1955     Split variable declarations into multiple lines and use the standard
1956     VAR-y convention.  Also move object and binary variable declarations to
1957     after config.mk has been included to allow for these lists to utilize
1958     the CONFIG_XXX variables.
1959
1960     These changes lay the groundwork for conditional compilation of files
1961     in the tools directory.
1962
1963     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1964
1965 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
1966 Author: Peter Tyser <ptyser@xes-inc.com>
1967 Date:   Fri Mar 13 18:54:33 2009 -0500
1968
1969     tools/Makefile: Remove inappropriate double-tabs
1970
1971     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1972
1973 commit 652f4ba076689fd0acd447561a777b1c440a4b57
1974 Author: Peter Tyser <ptyser@xes-inc.com>
1975 Date:   Fri Mar 13 18:54:32 2009 -0500
1976
1977     tools/Makefile: Remove HOSTARCH HOSTOS defines
1978
1979     The values of HOSTARCH and HOSTOS which are exported from the top-level
1980     Makefile should be used
1981
1982     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1983
1984 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
1985 Author: Peter Tyser <ptyser@xes-inc.com>
1986 Date:   Fri Mar 13 18:54:31 2009 -0500
1987
1988     gen_eth_addr: Use POSIX rand() and srand()
1989
1990     Replace random()/srandom() use with rand()/srand() to support
1991     compilation with the mingw toolchain.  The rand()/srand() functions are
1992     generally more common and are functionally equivalent to the original
1993     random()/srandom() calls.
1994
1995     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1996
1997 commit 24d2ae5e9debe4b75151a55251031a14477fa875
1998 Author: Peter Tyser <ptyser@xes-inc.com>
1999 Date:   Fri Mar 13 18:54:28 2009 -0500
2000
2001     elf.h: Use stdint.h to provide standard typedefs for WIN32
2002
2003     The original code provided an incomplete set of typedefs for WIN32
2004     compiles and replicated the standard typedefs that are already
2005     provided by stdint.h
2006
2007     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2008
2009 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
2010 Author: Peter Tyser <ptyser@xes-inc.com>
2011 Date:   Fri Mar 13 18:54:27 2009 -0500
2012
2013     common/Makefile: Conditionally compile env_embedded.o
2014
2015     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2016
2017 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
2018 Author: Peter Tyser <ptyser@xes-inc.com>
2019 Date:   Fri Mar 13 18:54:26 2009 -0500
2020
2021     Makefile: Add removal of *.exe files to clean target
2022
2023     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2024
2025 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
2026 Author: Peter Tyser <ptyser@xes-inc.com>
2027 Date:   Fri Mar 13 18:54:25 2009 -0500
2028
2029     Makefile: Make autoconf.mk a dependency of the depend target
2030
2031     The original code did not generate autoconf.mk until after some targets
2032     dependencies had already been calculated, for example the directories in
2033     the SUBDIRS variable
2034
2035     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2036
2037 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
2038 Author: unsik Kim <donari75@gmail.com>
2039 Date:   Wed Feb 25 11:31:24 2009 +0900
2040
2041     mflash: Initial mflash support
2042
2043     Mflash is fusion memory device mainly targeted consumer eletronic and
2044     mobile phone.
2045     Internally, it have nand flash and other hardware logics and supports
2046     some different operation (ATA, IO, XIP) modes.
2047
2048     IO mode is custom mode for the host that doesn't have IDE interface.
2049     (Many mobile targeted SoC doesn't have IDE bus)
2050
2051     This driver support mflash IO mode.
2052
2053     Followings are brief descriptions about IO mode.
2054
2055     1. IO mode based on ATA protocol and uses some custom command. (read
2056        confirm, write confirm)
2057     2. IO mode uses SRAM bus interface.
2058
2059     Signed-off-by: unsik Kim <donari75@gmail.com>
2060
2061 commit 200779e3e2a9aeda7030b171a8c39d7797019917
2062 Author: Detlev Zundel <dzu@denx.de>
2063 Date:   Fri Apr 3 11:53:01 2009 +0200
2064
2065     Rename common ns16550 constants with UART_ prefix to prevent conflicts
2066
2067     Fix problems introduced in commit
2068     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
2069     diagnosis functions for inka4x0] which redefined MSR_RI which is
2070     already used on PowerPC systems.
2071
2072     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
2073     be needed for other redundant occurrences though.
2074
2075     Signed-off-by: Detlev Zundel <dzu@denx.de>
2076
2077 commit 99067b08f4a0ce20ff337a35211239f334d8f451
2078 Author: Scott Wood <scottwood@freescale.com>
2079 Date:   Wed Apr 1 15:33:24 2009 -0500
2080
2081     Noisily disable the legacy NAND subsystem.
2082
2083     Legacy NAND is marked for feature removal after April 2009 (i.e. this
2084     upcoming release).  There are still several boards that reference it
2085     (though many do so only for disk-on-chip support which has been silently
2086     disabled for a while now).  These boards will now fail to build
2087     with #error, though the code is still there if the user removes #error.
2088
2089     The plan is to remove the code outright in the next release, along with
2090     any board code that refers to it (such as board/esd/common/auto_update.c).
2091
2092     Also, remove the legacy NAND API description from README.nand.
2093
2094     Signed-off-by: Scott Wood <scottwood@freescale.com>
2095
2096 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
2097 Author: apgmoorthy <moorthy.apg@samsung.com>
2098 Date:   Fri Mar 27 14:45:23 2009 +0530
2099
2100     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
2101
2102     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
2103     However, u-boot image for apollon board is 195KB making the board
2104     unbootable with OneNAND.
2105
2106     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
2107     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
2108
2109     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
2110     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
2111     Signed-off-by: Scott Wood <scottwood@freescale.com>
2112
2113 commit 74de7aefd79690bae8cf5a5120f5962d444be089
2114 Author: Wolfgang Denk <wd@denx.de>
2115 Date:   Wed Apr 1 23:34:12 2009 +0200
2116
2117     Add "source" command; prepare removal of "autoscr" command
2118
2119     According to the doc/feature-removal-schedule.txt, the "autoscr"
2120     command will be replaced by the "source" command in approximately 6
2121     months from now.
2122
2123     This patch prepares this change and starts a 6 month transition
2124     period as follows:
2125
2126     - The new "source" command has been added, which implements exactly
2127       the same functionlaity as the old "autoscr" command before
2128     - The old "autoscr" command name is kept as an alias for compatibility
2129     - Command sequences, script files atc. have been adapted to use the
2130       new "source" command
2131     - Related environment variables ("autoscript", "autoscript_uname")
2132       have *not* been adapted yet; these will be renamed resp. removed in
2133       a separate patch when the support for the "autoscr" command get's
2134       finally dropped.
2135
2136     Signed-off-by: Wolfgang Denk <wd@denx.de>
2137
2138 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
2139 Author: Wolfgang Denk <wd@denx.de>
2140 Date:   Thu Apr 2 17:31:09 2009 +0200
2141
2142     Add "GPL cleanup" task to feature-removal-schedule.txt
2143
2144     Announce removal of all non-GPL or GPL-incompatible files
2145     after August 2009.
2146
2147     Signed-off-by: Wolfgang Denk <wd@denx.de>
2148
2149 commit d9596ffbdc79cea285010b67dd20a4618303f624
2150 Author: Mike Frysinger <vapier@gentoo.org>
2151 Date:   Thu Apr 2 12:51:28 2009 -0400
2152
2153     sf: stmicro: dont send 4 bytes when reading status register
2154
2155     I can't find anywhere in the datasheet that says the status register needs
2156     3 dummy bytes sent to it before being able to read back the first real
2157     result.  Tests on a Blackfin board show that after writing the opcode, the
2158     status register starts coming back immediately.  So only write out the
2159     read status register opcode before polling the result.
2160
2161     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2162     CC: Jason McMullan <mcmullan@netapp.com>
2163     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2164
2165 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
2166 Author: Mike Frysinger <vapier@gentoo.org>
2167 Date:   Thu Apr 2 08:11:31 2009 -0400
2168
2169     sf: set common timeouts in seconds, not milliseconds
2170
2171     Since timeouts are only hit when there is a problem in the system, we
2172     don't want to prematurely timeout on a functioning setup.  Thus having
2173     low timeouts (in milliseconds) doesn't gain us anything in the production
2174     case, but rather increases likely hood of causing problems where none
2175     otherwise exist.
2176
2177     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2178     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2179
2180 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
2181 Author: Mike Frysinger <vapier@gentoo.org>
2182 Date:   Thu Apr 2 06:51:49 2009 -0400
2183
2184     sf: stmicro: use common page timeout define
2185
2186     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2187     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2188
2189 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
2190 Author: Mike Frysinger <vapier@gentoo.org>
2191 Date:   Sat Mar 28 06:41:09 2009 -0400
2192
2193     sf: always read 5 bytes for the idcode
2194
2195     Some SPI flash drivers like to have extended id information available
2196     (like the spansion flash), so rather than making it re-issue the ID cmd
2197     to get at the last 2 bytes, have the common code read 5 bytes rather than
2198     just 3.  This also matches the Linux behavior where it always reads 5 id
2199     bytes from all flashes.
2200
2201     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2202     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2203     CC: Mingkai Hu <Mingkai.hu@freescale.com>
2204
2205 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
2206 Author: Mike Frysinger <vapier@gentoo.org>
2207 Date:   Fri Mar 27 16:34:21 2009 -0400
2208
2209     sf: stmicro: drop redundant id read
2210
2211     The common SPI flash code reads the idcode and passes it down to the SPI
2212     flash driver, so there is no need to read it again ourselves.
2213
2214     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2215     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2216     CC: Jason McMullan <mcmullan@netapp.com>
2217     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2218
2219 commit 1c5874374e091b4bb62917c519861f7682fe066e
2220 Author: Mike Frysinger <vapier@gentoo.org>
2221 Date:   Fri Mar 27 19:27:58 2009 -0400
2222
2223     sf: add driver for SST flashes
2224
2225     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2226     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2227
2228 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
2229 Author: Mike Frysinger <vapier@gentoo.org>
2230 Date:   Mon Mar 23 23:03:58 2009 -0400
2231
2232     sf: drop DEBUG defines
2233
2234     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2235     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2236
2237 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
2238 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2239 Date:   Sun Jan 4 07:44:07 2009 +0100
2240
2241     mtd: add some at45 spi flash support
2242
2243      - AT45DB321D
2244      - AT45DB161D
2245      - AT45DB081D
2246      - AT45DB041D
2247      - AT45DB021D
2248      - AT45DB011D
2249
2250     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2251     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2252
2253 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
2254 Author: Mingkai Hu <Mingkai.hu@freescale.com>
2255 Date:   Tue Mar 31 14:09:41 2009 +0800
2256
2257     mtd: SPI Flash: Support the Spansion Flash
2258
2259     Add MTD SPI Flash support for S25FL008A, S25FL016A,
2260     S25FL032A, S25FL064A, S25FL128P.
2261
2262     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
2263     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2264
2265 commit 40587701924aa0afc86b3840421b4cc6de42c748
2266 Author: Mike Frysinger <vapier@gentoo.org>
2267 Date:   Mon Mar 30 20:56:45 2009 -0400
2268
2269     Blackfin: force all boards to HZ of 1000
2270
2271     Since the Blackfin timer code requires HZ to be 1000, barf on any board
2272     that tries to use a different value.
2273
2274     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2275
2276 commit f4032d2eec9d71a59c6c724671e577f67a76839b
2277 Author: Mike Frysinger <vapier@gentoo.org>
2278 Date:   Fri Mar 27 21:07:45 2009 -0400
2279
2280     Blackfin: bf533-stamp: drop old spi flash driver
2281
2282     Now that the common SPI flash code supports all the flashes, we can stop
2283     using the old driver.
2284
2285     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2286
2287 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
2288 Author: Mike Frysinger <vapier@gentoo.org>
2289 Date:   Thu Mar 26 15:42:12 2009 -0400
2290
2291     Blackfin: add BF538/BF539 SPI portmux handling
2292
2293     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2294
2295 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
2296 Author: Mike Frysinger <vapier@gentoo.org>
2297 Date:   Mon Mar 23 22:36:10 2009 -0400
2298
2299     Blackfin: do not delay on output bytes
2300
2301     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2302
2303 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
2304 Author: Mike Frysinger <vapier@gentoo.org>
2305 Date:   Mon Mar 23 22:17:27 2009 -0400
2306
2307     Blackfin: drop newline from OTP help
2308
2309     Looks like I accidentally added a newline to the OTP help when merging and
2310     older change.
2311
2312     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2313
2314 commit d3c38d96b991d641a33f7748130dae008563cdc9
2315 Author: Mike Frysinger <vapier@gentoo.org>
2316 Date:   Sun Mar 22 23:43:31 2009 -0400
2317
2318     Blackfin: convert bfin_sdh to legacy mmc
2319
2320     The Blackfin SDH controller is still using the legacy framework, so update
2321     the driver to use the renamed functions.
2322
2323     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2324
2325 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
2326 Author: Mike Frysinger <vapier@gentoo.org>
2327 Date:   Sun Feb 22 16:30:38 2009 -0500
2328
2329     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
2330
2331     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2332
2333 commit ad9073211ca9e62162a39851e082b8d07a662fb6
2334 Author: Mike Frysinger <vapier@gentoo.org>
2335 Date:   Fri Feb 13 17:10:58 2009 -0500
2336
2337     Blackfin: fix crash when booting from external memory
2338
2339     When testing a u-boot binary that hasn't been booted from the bootrom, we
2340     have to make sure the bootstruct structure has sane storage space.  If we
2341     don't, the initcode will crash when it tries to dereference an invalid
2342     pointer.
2343
2344     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2345
2346 commit 84a9dda324c3faa56be14449d7519b993d9397a9
2347 Author: Mike Frysinger <vapier@gentoo.org>
2348 Date:   Sun Oct 12 21:32:52 2008 -0400
2349
2350     Blackfin: bf518f-ezbrd: new board port
2351
2352     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2353
2354 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
2355 Author: Mike Frysinger <vapier@gentoo.org>
2356 Date:   Sun Oct 12 21:30:48 2008 -0400
2357
2358     Blackfin: bf526-ezbrd: new board port
2359
2360     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2361
2362 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
2363 Author: Mike Frysinger <vapier@gentoo.org>
2364 Date:   Sun Oct 12 21:25:33 2008 -0400
2365
2366     Blackfin: bf538f-ezkit: new board port
2367
2368     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2369
2370 commit d9a5d113b93583c984711127ab8503e136ed1e4a
2371 Author: Mike Frysinger <vapier@gentoo.org>
2372 Date:   Sun Oct 12 20:59:12 2008 -0400
2373
2374     Blackfin: bf527-ezkit: new board port
2375
2376     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2377
2378 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
2379 Author: Mike Frysinger <vapier@gentoo.org>
2380 Date:   Sun Oct 12 05:05:42 2008 -0400
2381
2382     Blackfin: bf548-ezkit: new board port
2383
2384     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2385
2386 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
2387 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
2388 Date:   Tue Mar 3 14:23:59 2009 +0100
2389
2390     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
2391
2392     Allow the inclusion of libfdt.h in C++ source.
2393
2394     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
2395     Acked-by: David Gibson <david@gibson.dropbear.id.au>
2396
2397 commit 13d93f38e86818739317b0206d597265cf9e675e
2398 Author: Emil Medve <Emilian.Medve@Freescale.com>
2399 Date:   Mon Feb 23 10:43:36 2009 -0600
2400
2401     Fix a possible overflow case detected by gcc 4.3.2
2402
2403     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
2404     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
2405
2406     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
2407
2408 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
2409 Author: David Gibson <david@gibson.dropbear.id.au>
2410 Date:   Fri Feb 6 14:03:24 2009 +1100
2411
2412     libfdt: Rework/cleanup fdt_next_tag()
2413
2414     Currently, callers of fdt_next_tag() must usually follow the call with
2415     some sort of call to fdt_offset_ptr() to verify that the blob isn't
2416     truncated in the middle of the tag data they're going to process.
2417     This is a bit silly, since fdt_next_tag() generally has to call
2418     fdt_offset_ptr() on at least some of the data following the tag for
2419     its own operation.
2420
2421     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
2422     verify the data between its starting offset and the offset it returns
2423     in nextoffset.  This simplifies fdt_get_property() which no longer has
2424     to verify itself that the property data is all present.
2425
2426     At the same time, I neaten and clarify the error handling for
2427     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
2428     a tag value in some circumstances - which almost none of the callers
2429     checked for.  Also, fdt_next_tag() could return FDT_END either because
2430     it encountered an FDT_END tag, or because it reached the end of the
2431     structure block - no way was provided to tell between these cases.
2432
2433     With this patch, fdt_next_tag() always returns FDT_END with a negative
2434     value in nextoffset for an error.  This means the several places which
2435     loop looking for FDT_END will still work correctly - they only need to
2436     check for errors at the end.  The errors which fdt_next_tag() can
2437     report are:
2438         - -FDT_ERR_TRUNCATED if it reached the end of the structure
2439            block instead of finding a tag.
2440
2441         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
2442                tag data couldn't be verified with fdt_offset_ptr().
2443
2444     This patch also updates the callers of fdt_next_tag(), where
2445     appropriate, to make use of the new error reporting.
2446
2447     Finally, the prototype for the long gone _fdt_next_tag() is removed
2448     from libfdt_internal.h.
2449
2450     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2451
2452 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
2453 Author: David Gibson <david@gibson.dropbear.id.au>
2454 Date:   Fri Feb 6 14:01:56 2009 +1100
2455
2456     libfdt: Rework fdt_next_node()
2457
2458     Currently fdt_next_node() will find the next node in the blob
2459     regardless of whether it is above, below or at the same level in the
2460     tree as the starting node - the depth parameter is updated to indicate
2461     which is the case.  When a depth parameter is supplied, this patch
2462     makes it instead terminate immediately when it finds the END_NODE tag
2463     for a node at depth 0.  In this case it returns the offset immediately
2464     past the END_NODE tag.
2465
2466     This has a couple of advantages.  First, this slightly simplifies
2467     fdt_subnode_offset(), which no longer needs to explicitly check that
2468     fdt_next_node()'s iteration hasn't left the starting node.  Second,
2469     this allows fdt_next_node() to be used to implement
2470     _fdt_node_end_offset() considerably simplifying the latter function.
2471
2472     The other users of fdt_next_node() either don't need to iterate out of
2473     the starting node, or don't pass a depth parameter at all.  Any
2474     callers that really need to iterate out of the starting node, but keep
2475     tracking depth can do so by biasing the initial depth value.
2476
2477     This is a semantic change, but I think it's very unlikely to break any
2478     existing library users.
2479
2480     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2481
2482 commit c123098035be8bae3859bbfbd06861f197c07631
2483 Author: Scott Wood <scottwood@freescale.com>
2484 Date:   Tue Mar 31 17:49:36 2009 -0500
2485
2486     mpc83xx: Set guarded bit on BAT that covers the end of the address space
2487
2488     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
2489     address space; however, not all of this space is covered by a device.  In
2490     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
2491     at the far end of the address space.
2492
2493     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
2494     some circumstances, this leads to the CPU speculatively loading from
2495     0xfffffff8 if p is NULL.  This leads to a machine check.
2496
2497     Signed-off-by: Scott Wood <scottwood@freescale.com>
2498
2499     continuation to the remaining mpc83xx boards that suffer from the same problem.
2500
2501     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2502
2503 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
2504 Author: Kim Phillips <kim.phillips@freescale.com>
2505 Date:   Mon Mar 30 14:28:05 2009 -0500
2506
2507     rtc: remove broken rtc_read and rtc_write declarations
2508
2509     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
2510     EPSON)" introduces the following build error on boards configuring e.g,
2511     the ds1374 rtc:
2512
2513     Configuring for MPC837XEMDS board...
2514     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
2515     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
2516     ds1374.c:104: error: conflicting types for 'rtc_write'
2517     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
2518
2519     this reverts the erroneous chunk.
2520
2521     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2522     Acked-by: Detlev Zundel <dzu@denx.de>
2523     CC: Detlev Zundel <dzu@denx.de>
2524     CC: Andreas Pfefferle <ap@denx.de>
2525
2526 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
2527 Author: Kumar Gala <galak@kernel.crashing.org>
2528 Date:   Tue Mar 31 17:58:13 2009 -0500
2529
2530     85xx/86xx: Ensure MP boot page is not used
2531
2532     We had a bug on 86xx in which the boot page used to bring up secondary
2533     cores was being overwritten and used for the malloc region in u-boot.
2534
2535     We need to reserve the region of memory that the boot page is going to
2536     be put at so nothing uses it.
2537
2538     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2539     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
2540
2541 commit c840d26c752141b94bbc24ac748ddd45752a955a
2542 Author: Kumar Gala <galak@kernel.crashing.org>
2543 Date:   Tue Mar 31 23:11:05 2009 -0500
2544
2545     85xx: Introduce determine_mp_bootpg() helper.
2546
2547     Match determine_mp_bootpg() that was added for 86xx.  We need this to
2548     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
2549     make sure to reserve the region of memory used for the MP bootpg() so
2550     other u-boot code doesn't use it.
2551
2552     Also added a comment about how cpu_reset() is dealing w/an errata on
2553     early 85xx MP HW.
2554
2555     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2556
2557 commit 7649a590b53ee548f41428bf20780f74ce9fc099
2558 Author: Kumar Gala <galak@kernel.crashing.org>
2559 Date:   Tue Mar 31 23:02:38 2009 -0500
2560
2561     86xx: Cleanup MP support
2562
2563     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
2564     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
2565       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
2566       to reserve the region of memory used for the MP bootpg() so other
2567       u-boot code doesn't use it.
2568     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
2569       allow cmd_mp.c to build and work. In the future we should look at
2570       implementing all these functions. This could be common w/85xx if we
2571       use spin tables on 86xx.
2572
2573     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2574
2575 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
2576 Author: Becky Bruce <beckyb@kernel.crashing.org>
2577 Date:   Tue Mar 31 18:38:37 2009 -0500
2578
2579     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
2580
2581     We're missing the board_lmb_reserve definitions that allow
2582     cpu_mp_lmb_reserve to be called; this means that Linux
2583     is free to reallocate reserved pages.  Linux currently boots
2584     because we're getting lucky - the page we've reserved is
2585     high enough in memory that it isn't allocated by Linux
2586     while we still need it to be in existence.
2587
2588     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
2589     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2590
2591 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
2592 Author: Ladislav Michl <ladis@linux-mips.org>
2593 Date:   Tue Mar 31 13:43:10 2009 +0200
2594
2595     NetStar: fix NAND
2596
2597     Fix NAND support broken during new NAND code merge. Move those few lines of
2598     code to board/netstar/netstar.c
2599
2600     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2601
2602 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
2603 Author: Jens Scharsig <esw@bus-elektronik.de>
2604 Date:   Tue Mar 31 08:18:29 2009 +0200
2605
2606     soft_i2c.c compiler/linker error
2607
2608     This patch fix the compiler/linker errors
2609
2610     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
2611     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
2612
2613     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
2614     uesd/undef (wrong define order)
2615
2616     and
2617
2618     removes additional empty lines
2619
2620     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
2621
2622 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
2623 Author: Haiying Wang <Haiying.Wang@freescale.com>
2624 Date:   Fri Mar 27 17:02:45 2009 -0400
2625
2626     MPC85xx: Add MPC8569MDS board support
2627
2628     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
2629     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
2630
2631     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2632     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
2633     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2634
2635 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
2636 Author: Haiying Wang <Haiying.Wang@freescale.com>
2637 Date:   Fri Mar 27 17:02:44 2009 -0400
2638
2639     MPC85xx: Add MPC8569 CPU support
2640
2641     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
2642     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
2643     then invalidate it after LBCR bit 13 is set.
2644
2645     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2646     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2647
2648 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
2649 Author: Haiying Wang <Haiying.Wang@freescale.com>
2650 Date:   Thu Mar 26 17:01:49 2009 -0400
2651
2652     MPC85xx: Load and enable QE microcode patch in IRAM
2653
2654     For the silicon which doesn't have ROM support in QE, it always needs to load
2655     a pre-built ucode binary to IRAM so that QE can work.
2656
2657     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2658     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
2659
2660 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
2661 Author: Kumar Gala <galak@kernel.crashing.org>
2662 Date:   Thu Mar 19 09:16:10 2009 -0500
2663
2664     85xx: Add support for additional e500mc features
2665
2666     * Enable backside L2
2667     * e500mc no longer has timebase enable in HID (moved to CCSR register)
2668
2669     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2670
2671 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
2672 Author: Dave Liu <daveliu@freescale.com>
2673 Date:   Sat Mar 14 12:48:30 2009 +0800
2674
2675     fsl-ddr: add the DDR3 SPD infrastructure
2676
2677     - support mirrored DIMMs, not support register DIMMs
2678     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
2679     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
2680
2681     Signed-off-by: Dave Liu <daveliu@freescale.com>
2682     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
2683
2684 commit 6a8197836702991468cead5ead073f589e2623ad
2685 Author: Dave Liu <daveliu@freescale.com>
2686 Date:   Sat Mar 14 12:48:19 2009 +0800
2687
2688     fsl-ddr: Fix two bugs in the ddr infrastructure
2689
2690     1. wr_lat
2691        UM said the total write latency for DDR2 is equal to
2692        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
2693        so, the WR_LAT = CL - 1;
2694     2. rd_to_pre
2695        we missed to add the ADD_LAT for DDR2 case.
2696
2697     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2698     Signed-off-by: Dave Liu <daveliu@freescale.com>
2699
2700 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
2701 Author: Kumar Gala <galak@kernel.crashing.org>
2702 Date:   Thu Mar 26 01:34:39 2009 -0500
2703
2704     83xx: Use common LSDMR defines from asm/fsl_lbc.h
2705
2706     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2707     Acked-by: Kim Phillips <kim.phillips@freescale.com>
2708
2709 commit b0fe93eda69721aef1fdef576164b668fad83bbd
2710 Author: Kumar Gala <galak@kernel.crashing.org>
2711 Date:   Thu Mar 26 01:34:38 2009 -0500
2712
2713     85xx: Use common LSDMR defines from asm/fsl_lbc.h
2714
2715     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2716
2717 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
2718 Author: Kumar Gala <galak@kernel.crashing.org>
2719 Date:   Thu Mar 26 01:34:37 2009 -0500
2720
2721     Add LSDMR (SDRAM Mode Register) definition on localbus
2722
2723     The masks for various bit defines of LSDMR are common and thus we can
2724     define them in one place rather than replicating them in each config.h
2725
2726     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2727
2728 commit 89c00fb15859213788f0ad089934c376fb356099
2729 Author: Ladislav Michl <ladis@linux-mips.org>
2730 Date:   Mon Mar 30 18:58:41 2009 +0200
2731
2732     OMAP: use {read,write}l to access timer registers
2733
2734     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2735
2736 commit 81472d893fa565c9d300928a40e504a689bde131
2737 Author: Ladislav Michl <ladis@linux-mips.org>
2738 Date:   Mon Mar 30 18:58:41 2009 +0200
2739
2740     OMAP: rename timer divisor
2741
2742     Divisor field is called PTV not PVT.
2743
2744     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2745     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2746
2747 commit fe672d60b2a8c9e803596ba4533fa1776015551d
2748 Author: Ladislav Michl <ladis@linux-mips.org>
2749 Date:   Mon Mar 30 18:58:40 2009 +0200
2750
2751     OMAP: reindent timer code
2752
2753     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2754
2755 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
2756 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2757 Date:   Mon Mar 30 18:58:40 2009 +0200
2758
2759     s3c2410: move nand driver to drivers/mtd/nand
2760
2761     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2762
2763 commit d3b635774194404bcd424f6b376419bce22076ad
2764 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2765 Date:   Mon Mar 30 18:58:40 2009 +0200
2766
2767     s3c24x0: move i2c driver to drivers/i2c
2768
2769     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2770
2771 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
2772 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2773 Date:   Mon Mar 30 18:58:39 2009 +0200
2774
2775     s3c24x0: move serial driver to drivers/serial
2776
2777     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2778
2779 commit 942ba9969b9efa25f816c238861ecb339c54ed73
2780 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2781 Date:   Mon Mar 30 18:58:39 2009 +0200
2782
2783     davinci: move i2c driver to drivers/i2c
2784
2785     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2786
2787 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
2788 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2789 Date:   Mon Mar 30 18:58:39 2009 +0200
2790
2791     davinci: move nand driver to drivers/mtd/nand
2792
2793     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2794
2795 commit d3e55d0774a180c1837bd7ddec464015e883bd86
2796 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2797 Date:   Mon Mar 30 18:58:38 2009 +0200
2798
2799     imx: move serial driver to drivers/serial
2800
2801     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2802
2803 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
2804 Author: Detlev Zundel <dzu@denx.de>
2805 Date:   Mon Mar 30 00:31:36 2009 +0200
2806
2807     inka4x0: Use proper accessor macros for memory mapped registers.
2808
2809     Signed-off-by: Detlev Zundel <dzu@denx.de>
2810
2811 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
2812 Author: Detlev Zundel <dzu@denx.de>
2813 Date:   Mon Mar 30 00:31:35 2009 +0200
2814
2815     inka4x0: Add hardware diagnosis and RTC in configuration.
2816
2817     This patch adds the board specific communication routines needed by
2818     the external 4543 RTC.
2819
2820     Signed-off-by: Detlev Zundel <dzu@denx.de>
2821     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2822
2823 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
2824 Author: Detlev Zundel <dzu@denx.de>
2825 Date:   Mon Mar 30 00:31:34 2009 +0200
2826
2827     inka4x0: Add hardware diagnosis functions for inka4x0
2828
2829     This patch adds advanced diagnosis functions for the inka4x0 board.
2830
2831     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2832     Signed-off-by: Detlev Zundel <dzu@denx.de>
2833
2834 commit 04e11cf383ff6231535fd981023bb1306b2133d4
2835 Author: Detlev Zundel <dzu@denx.de>
2836 Date:   Mon Mar 30 00:31:33 2009 +0200
2837
2838     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
2839
2840     Signed-off-by: Detlev Zundel <dzu@denx.de>
2841     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2842
2843 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
2844 Author: Detlev Zundel <dzu@denx.de>
2845 Date:   Mon Mar 30 00:31:32 2009 +0200
2846
2847     drivers/twserial: Add protocol driver for "three wire serial" interface.
2848
2849     This pretty unintelligent interface is used on some RTC chips.
2850
2851     Signed-off-by: Detlev Zundel <dzu@denx.de>
2852
2853 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
2854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2855 Date:   Sun Mar 29 23:01:42 2009 +0200
2856
2857     arm720t/clps7111: move serial driver to drivers/serial
2858
2859     add CONFIG_CLPS7111_SERIAL to activate the driver
2860
2861     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2862
2863 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
2864 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2865 Date:   Sun Mar 29 23:01:42 2009 +0200
2866
2867     lpc2292: move serial driver to drivers/serial
2868
2869     add CONFIG_LPC2292_SERIAL to activate the driver
2870
2871     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2872
2873 commit 176a600d0ecdaccbac483d2ba992d0119f853119
2874 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2875 Date:   Sun Mar 29 23:01:42 2009 +0200
2876
2877     ks8695: move serial driver to drivers/serial
2878
2879     add CONFIG_KS8695_SERIAL to activate the driver
2880
2881     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2882
2883 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
2884 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2885 Date:   Sun Mar 29 23:01:42 2009 +0200
2886
2887     s3c64xx: move usb driver to drivers/usb
2888
2889     add CONFIG_USB_S3C64XX to activate the driver
2890
2891     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2892
2893 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
2894 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2895 Date:   Sun Mar 29 23:01:41 2009 +0200
2896
2897     imx31: move serial driver to drivers/serial
2898
2899     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2900
2901 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
2902 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2903 Date:   Sun Mar 29 23:01:41 2009 +0200
2904
2905     netarm: move serial driver to drivers/serial
2906
2907     add CONFIG_NETARM_SERIAL to activate the driver
2908
2909     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2910
2911 commit 412ab705888742add435dd6ffc2e8bda14962235
2912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2913 Date:   Sun Mar 29 23:01:41 2009 +0200
2914
2915     sa1100: move serial driver to drivers/serial
2916
2917     add CONFIG_SA1100_SERIAL to activate the driver
2918
2919     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2920
2921 commit b2368754a9202225fd072e159fb78da7d2cdb623
2922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2923 Date:   Sun Mar 29 23:01:41 2009 +0200
2924
2925     s3c44b0: extract cache from cpu.c
2926
2927     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2928
2929 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
2930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2931 Date:   Sun Mar 29 23:01:41 2009 +0200
2932
2933     s3c44b0: move serial driver to drivers/serial
2934
2935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2936
2937 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
2938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2939 Date:   Sun Mar 29 23:01:40 2009 +0200
2940
2941     s3c44b0: move rtc driver to drivers/rtc
2942
2943     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2944
2945 commit 50f601cca8985615f9e3de4c34887448ade8a64b
2946 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2947 Date:   Sun Mar 29 23:01:40 2009 +0200
2948
2949     s3c44b0: move i2c driver to drivers/i2c
2950
2951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2952
2953 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
2954 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2955 Date:   Sun Mar 29 23:01:36 2009 +0200
2956
2957     s3c4510b: move specific code to soc directory
2958
2959     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2960
2961 commit 04531f3c11c693dc54924f82c41979d960309c9d
2962 Author: Ladislav Michl <ladis@linux-mips.org>
2963 Date:   Wed Mar 25 23:43:58 2009 +0100
2964
2965     NetStar: add RTC support
2966
2967     Add RTC support.
2968
2969     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2970
2971 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
2972 Author: Ladislav Michl <ladis@linux-mips.org>
2973 Date:   Wed Mar 25 23:43:50 2009 +0100
2974
2975     NetStar: use generic flash driver
2976
2977     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2978
2979 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
2980 Author: Ladislav Michl <ladis@linux-mips.org>
2981 Date:   Mon Mar 16 23:31:20 2009 +0100
2982
2983     NetStar: update crcit utility
2984
2985     Make crc32 function to match its prototype. Use more meaningful identifiers.
2986
2987     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2988
2989 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
2990 Author: Ladislav Michl <ladis@linux-mips.org>
2991 Date:   Mon Mar 23 17:46:27 2009 +0100
2992
2993     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
2994
2995     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2996
2997 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
2998 Author: Wolfgang Denk <wd@denx.de>
2999 Date:   Sun Mar 29 00:58:16 2009 +0100
3000
3001     VCMA9: fix compile errors
3002
3003     Fix these:
3004     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
3005     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
3006
3007     Signed-off-by: Wolfgang Denk <wd@denx.de>
3008
3009 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
3010 Author: Wolfgang Denk <wd@denx.de>
3011 Date:   Sun Mar 29 00:54:21 2009 +0100
3012
3013     ARM: fix warning: 'print_eth' defined but not used
3014
3015     This warning got issued for all ARM systems that don't have
3016     CONFIG_CMD_NET enabled.
3017
3018     Signed-off-by: Wolfgang Denk <wd@denx.de>
3019
3020 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
3021 Author: Ladislav Michl <ladis@linux-mips.org>
3022 Date:   Mon Mar 23 18:16:34 2009 +0100
3023
3024     cs8900 compile fix
3025
3026     cs8900.c: In function 'eth_init':
3027     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
3028     cs8900.c:165: error: invalid operands to binary <<
3029     cs8900.c:166: error: invalid operands to binary <<
3030     cs8900.c:167: error: invalid operands to binary <<
3031
3032     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
3033     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3034
3035 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
3036 Author: Wolfgang Denk <wd@denx.de>
3037 Date:   Sat Mar 28 20:16:16 2009 +0100
3038
3039     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
3040
3041     ...and some other compile warnings.
3042
3043     Signed-off-by: Wolfgang Denk <wd@denx.de>
3044
3045 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
3046 Author: Wolfgang Denk <wd@denx.de>
3047 Date:   Sat Mar 28 16:17:29 2009 +0100
3048
3049     mpc8xx/ether.c: fix warning: unused variable 'bd'
3050
3051     Also minor coding style cleanup.
3052
3053     Signed-off-by: Wolfgang Denk <wd@denx.de>
3054
3055 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
3056 Author: Detlev Zundel <dzu@denx.de>
3057 Date:   Wed Mar 25 17:27:52 2009 +0100
3058
3059     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
3060
3061     Other commands implementing subcommands can reuse this code nicely.
3062
3063     Signed-off-by: Detlev Zundel <dzu@denx.de>
3064     Signed-off-by: Andreas Pfefferle <ap@denx.de>
3065
3066 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
3067 Author: Detlev Zundel <dzu@denx.de>
3068 Date:   Tue Mar 24 18:02:33 2009 +0100
3069
3070     mpc5xxx: Add structure definition for several more register blocks.
3071
3072     Signed-off-by: Detlev Zundel <dzu@denx.de>
3073
3074 commit 739b0e594677a0676577bc95db4495a5563fc7f8
3075 Author: Detlev Zundel <dzu@denx.de>
3076 Date:   Fri Mar 27 15:03:55 2009 +0100
3077
3078     MAINTAINERS: Add entry for 'inka4x0' board.
3079
3080     Signed-off-by: Detlev Zundel <dzu@denx.de>
3081
3082 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
3083 Author: Detlev Zundel <dzu@denx.de>
3084 Date:   Fri Mar 27 15:03:54 2009 +0100
3085
3086     MAINTAINERS: Keep list sorted.
3087
3088     Signed-off-by: Detlev Zundel <dzu@denx.de>
3089
3090 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
3091 Author: Mike Frysinger <vapier@gentoo.org>
3092 Date:   Thu Mar 26 11:17:41 2009 -0400
3093
3094     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
3095
3096     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
3097
3098     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3099     CC: Ben Warren <biggerbadderben@gmail.com>
3100
3101 commit 76756e41cde0a617e781a604cc47dfaef63697cd
3102 Author: Heiko Schocher <hs@denx.de>
3103 Date:   Thu Mar 26 07:33:59 2009 +0100
3104
3105     ppc: cleanup compiler errors/warnings
3106
3107     Current u-boot top of tree builds with warnings/errors for
3108     the following boards:
3109
3110     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
3111     RPXClassic debris PN62
3112
3113     following patch solves this.
3114
3115     Signed-off-by: Heiko Schocher <hs@denx.de>
3116     Acked-by: Mike Frysinger <vapier@gentoo.org>
3117
3118 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
3119 Author: Stefan Roese <sr@denx.de>
3120 Date:   Thu Mar 26 16:14:13 2009 +0100
3121
3122     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
3123
3124     This patch fixes a bug in the Sequoia TLB init code to reconfigure
3125     the correct TLB (boot space) after running from RAM. This bug was
3126     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
3127     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
3128     TLB in the Sequoia init.S file.
3129
3130     Signed-off-by: Stefan Roese <sr@denx.de>
3131
3132 commit e2b66fe453a3679f807b37fc5923d89214302764
3133 Author: Wolfgang Denk <wd@denx.de>
3134 Date:   Thu Mar 26 10:00:57 2009 +0100
3135
3136     ads5121: enable instruction cache
3137
3138     Enabling the instruction cache significantly accelerates U-Boot
3139     operations like CRC checking, image uncompression, etc.
3140
3141     Kudos to Andrea Scian for pointing out.
3142
3143     Signed-off-by: Wolfgang Denk <wd@denx.de>
3144
3145 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
3146 Author: Jon Smirl <jonsmirl@gmail.com>
3147 Date:   Sun Mar 22 22:55:45 2009 -0400
3148
3149     mpc5200: suppress printf until console initialized
3150
3151     On boards which have the environment in eeprom, i2c_init() is called
3152     before the console and RAM are initialized.
3153     Suppress printfs until the console is initialized.
3154
3155     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
3156     Acked-by: Heiko Schocher <hs@denx.de>
3157
3158 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
3159 Author: Guennadi Liakhovetski <lg@denx.de>
3160 Date:   Wed Mar 25 11:36:50 2009 +0100
3161
3162     ARM: Add the imx31_phycore_eet board to MAKEALL
3163
3164     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3165
3166 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
3167 Author: Nishanth Menon <nm@ti.com>
3168 Date:   Wed Mar 25 22:13:56 2009 +0100
3169
3170     OMAP3:Beagle: Enable mtdparts
3171
3172     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
3173     provides a flexible way to create and maintain u-boot mtd
3174     partitions. This allows commands such as "nand erase fs"
3175     to work and the user no longer needs to decode the absolute
3176     nand offsets. This patch enables this function for beagleboard
3177
3178     Signed-off-by: Nishanth Menon <nm@ti.com>
3179     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3180
3181 commit 4de1a5daab079ddc8ce1274144700203d692105c
3182 Author: Mike Frysinger <vapier@gentoo.org>
3183 Date:   Sun Feb 22 16:26:35 2009 -0500
3184
3185     Blackfin: bf537-stamp: split post code out into dedicated post.c
3186
3187     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3188
3189 commit 5e8f245743ed14c89e495ba2c027703db9813160
3190 Author: Mike Frysinger <vapier@gentoo.org>
3191 Date:   Sat Oct 11 22:51:56 2008 -0400
3192
3193     Blackfin: add support for S25FL128 parts
3194
3195     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3196
3197 commit bf1e028bf3eab1d702fa0627cade4460688f3913
3198 Author: Mike Frysinger <vapier@gentoo.org>
3199 Date:   Sat Oct 11 22:51:23 2008 -0400
3200
3201     Blackfin: overhaul SPI flash handling to speed things up
3202
3203     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3204
3205 commit efcc08cededa2168b96f12a22a5872340880d334
3206 Author: Mike Frysinger <vapier@gentoo.org>
3207 Date:   Sat Oct 11 22:51:05 2008 -0400
3208
3209     Blackfin: add support for SST SPI flashes
3210
3211     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3212
3213 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
3214 Author: Mike Frysinger <vapier@gentoo.org>
3215 Date:   Sat Oct 11 22:50:10 2008 -0400
3216
3217     Blackfin: add hack for crappy m25p80
3218
3219     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3220
3221 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
3222 Author: Mike Frysinger <vapier@gentoo.org>
3223 Date:   Wed Jan 21 20:47:12 2009 -0500
3224
3225     Blackfin: bf537-stamp: increase monitor size
3226
3227     The new jffs2 code pushed the code size just over the limit, so increase
3228     the limit a bit more.
3229
3230     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3231
3232 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
3233 Author: Mike Frysinger <vapier@gentoo.org>
3234 Date:   Mon Dec 8 16:16:11 2008 -0500
3235
3236     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
3237
3238     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
3239     increase the speed of SCLK to 125MHz rather than 100MHz.
3240
3241     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3242
3243 commit 751e54c3b77311b720b794813cce20546f288ada
3244 Author: Mike Frysinger <vapier@gentoo.org>
3245 Date:   Sat Oct 11 22:44:14 2008 -0400
3246
3247     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
3248
3249     Use the common net eth functions to setup the env/global data with the MAC
3250     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
3251
3252     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3253
3254 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
3255 Author: Mike Frysinger <vapier@gentoo.org>
3256 Date:   Tue Dec 9 13:47:39 2008 -0500
3257
3258     Blackfin: add clkin_hz= to default kernel command line for ADI boards
3259
3260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3261
3262 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
3263 Author: Mike Frysinger <vapier@gentoo.org>
3264 Date:   Sun Oct 12 23:49:13 2008 -0400
3265
3266     Blackfin: bf533-stamp: bump up default clocks
3267
3268     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
3269     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
3270
3271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3272
3273 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
3274 Author: Mike Frysinger <vapier@gentoo.org>
3275 Date:   Sat Oct 11 22:40:22 2008 -0400
3276
3277     Blackfin: bf533-stamp: rewrite startup LED notifications
3278
3279     Again, don't clobber pins that we aren't actually using, and use the common
3280     LED framework rather than our own hob-job-but-not-really-working.
3281
3282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3283
3284 commit cf6f469e2730fc8ab3523808b828be000d6eee77
3285 Author: Mike Frysinger <vapier@gentoo.org>
3286 Date:   Sun Jun 1 09:09:48 2008 -0400
3287
3288     Blackfin: unify common ADI board settings
3289
3290     Rather than duplicate the same ADI settings in every ADI board, create a
3291     common ADI config header and have all ADI boards start using that.  This
3292     will also make merging the ~10 boards I have to forward port a lot easier.
3293
3294     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3295
3296 commit 196c74311f394c6eb08bd9ab07a35671299b9851
3297 Author: Kyungmin Park <kmpark@infradead.org>
3298 Date:   Tue Mar 3 09:05:53 2009 +0900
3299
3300     Reduce OneNAND IPL common code
3301
3302     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
3303     bootloader, but it's common code used about 300~400 bytes. So board
3304     specific codes, such as lowlevel_init, can't has enough code. It make
3305     a difficult to implement OneNAND IPL.
3306
3307     his patch make this common code as small as possible. and give
3308     lowlevel_init can have more codes.
3309
3310     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3311     Signed-off-by: Scott Wood <scottwood@freescale.com>
3312
3313 commit 16f2f5a351004129e79e79816697a367fd9e5446
3314 Author: Wolfgang Grandegger <wg@grandegger.com>
3315 Date:   Wed Feb 11 18:38:24 2009 +0100
3316
3317     Add multi-chip NAND support for the TQM8548 modules
3318
3319     This patches configures the NAND UPM-FSL driver with multi-chip
3320     support for the Micron MT29F8G08FAB NAND flash memory on the
3321     TQM8548 modules.
3322
3323     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
3324     Signed-off-by: Scott Wood <scottwood@freescale.com>
3325
3326 commit 33846df28fa1f4cf96a96c18142d48d813caa892
3327 Author: Wolfgang Grandegger <wg@grandegger.com>
3328 Date:   Wed Feb 11 18:38:23 2009 +0100
3329
3330     Add wait flags to support board/chip specific delays
3331
3332     The NAND flash on the TQM8548_BE modules requires a short delay after
3333     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
3334     requires a further short delay after writing out a buffer. Normally the
3335     R/B pin should be checked, but it's not connected on the TQM8548_BE.
3336     The corresponding Linux FSL UPM driver uses similar delay points at the
3337     same locations. To manage these extra delays in a more general way, I
3338     introduced the "wait_flags" field allowing the board-specific driver to
3339     specify various types of extra delay.
3340
3341     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
3342     Signed-off-by: Scott Wood <scottwood@freescale.com>
3343
3344 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
3345 Author: Wolfgang Grandegger <wg@grandegger.com>
3346 Date:   Wed Feb 11 18:38:22 2009 +0100
3347
3348     Add support for TQM-specific chip select logic to FSL-UPM
3349
3350     For the NAND chips on the TQM8548 modules, a special chip-select logic is
3351     used. It uses dedicated address lines to be set via UPM machine address
3352     register (mar). This patch adds such support to the FSL-UPM driver.
3353
3354     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
3355     Signed-off-by: Scott Wood <scottwood@freescale.com>
3356
3357 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
3358 Author: Wolfgang Grandegger <wg@grandegger.com>
3359 Date:   Wed Feb 11 18:38:21 2009 +0100
3360
3361     Add multi chip support to the FSL-UPM driver
3362
3363     This patch adds support for multi-chip NAND devices to the FSL-UPM
3364     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
3365     called with the argument "chip_nr" to allow testing the proper chip
3366     select line. The NAND support of the MPC8360ERDK is updated as well.
3367     No other boards are currently using the FSL UPM driver.
3368
3369     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
3370     Signed-off-by: Scott Wood <scottwood@freescale.com>
3371
3372 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
3373 Author: Wolfgang Grandegger <wg@grandegger.com>
3374 Date:   Wed Feb 11 18:38:20 2009 +0100
3375
3376     Enable multi chip support in the NAND layer
3377
3378     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
3379     Multi-chips devices are displayed as shown:
3380
3381       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
3382
3383     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
3384     Signed-off-by: Scott Wood <scottwood@freescale.com>
3385
3386 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
3387 Author: Mike Frysinger <vapier@gentoo.org>
3388 Date:   Sat Oct 11 21:58:33 2008 -0400
3389
3390     Blackfin: put memory into self-refresh before/after programming clocks
3391
3392     When initializing the core clocks, stick external memory into self-refresh.
3393     This gains us a few cool things:
3394      - support suspend-to-RAM with Linux
3395      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
3396      - make sure settings are stable before flashing new version
3397      - finally fully unify initialize startup code path between LDR/non-LDR
3398
3399     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3400
3401 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
3402 Author: Mike Frysinger <vapier@gentoo.org>
3403 Date:   Sat Oct 11 21:56:08 2008 -0400
3404
3405     Blackfin: do not program voltage regulator on parts that do not have one
3406
3407     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
3408     regulator, so do not attempt to program the memory as if it does.
3409
3410     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3411
3412 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
3413 Author: Mike Frysinger <vapier@gentoo.org>
3414 Date:   Sun Jun 1 01:28:24 2008 -0400
3415
3416     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
3417
3418     If the board config does not specify an explicit EBIU_SDBCTL value, set it
3419     up with sane values based on other configuration options.
3420
3421     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3422
3423 commit 3986e981f565c08f10c7e526af8cb518d741c349
3424 Author: Mike Frysinger <vapier@gentoo.org>
3425 Date:   Sat Dec 6 18:06:58 2008 -0500
3426
3427     Blackfin: handle reboot anomaly 432
3428
3429     Workaround anomaly 432:
3430     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
3431     register before executing the PLL programming sequence.  Therefore, any
3432     interrupt enabled in the SIC_IWR1 register prior to the call to
3433     bfrom_SysControl() can prematurely terminate the idle sequence required
3434     for the PLL to relock properly. SIC_IWR0 is properly handled.
3435
3436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3437
3438 commit 7e1d212b6da492c6ea32c62af92e185284f41291
3439 Author: Mike Frysinger <vapier@gentoo.org>
3440 Date:   Sat Oct 18 04:04:49 2008 -0400
3441
3442     Blackfin: kill off LDR jump block
3443
3444     The Boot ROM uses EVT1 as the entry point so set that rather than having
3445     to use a tiny jump block in the default EVT1 location.
3446
3447     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3448
3449 commit a75fa148d60b1975403441e45565621bba50d2d9
3450 Author: Mike Frysinger <vapier@gentoo.org>
3451 Date:   Tue Jan 6 10:00:48 2009 -0500
3452
3453     Blackfin: simplify symbol_lookup() a bit
3454
3455     No need to skip a byte as the symbol table handles this.
3456
3457     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3458
3459 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
3460 Author: Mike Frysinger <vapier@gentoo.org>
3461 Date:   Sat Feb 7 05:43:21 2009 -0500
3462
3463     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
3464
3465     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3466
3467 commit 58130f8920151d9e8942bbdf3388f2defb47e415
3468 Author: Mike Frysinger <vapier@gentoo.org>
3469 Date:   Sat Feb 7 05:41:17 2009 -0500
3470
3471     Blackfin: drop SPORT_TX read helper macros
3472
3473     The SPORT_TX registers cannot be read (the hardware will trigger an error),
3474     so drop the read helper macros.
3475
3476     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3477
3478 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
3479 Author: Mike Frysinger <vapier@gentoo.org>
3480 Date:   Sat Feb 7 05:25:35 2009 -0500
3481
3482     Blackfin: unify duplicate CPU port definitions
3483
3484     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3485
3486 commit 744fd240d181b0b05b1436e1b655c9a62526c752
3487 Author: Mike Frysinger <vapier@gentoo.org>
3488 Date:   Fri Feb 6 00:59:50 2009 -0500
3489
3490     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
3491
3492     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
3493     are no longer used/needed.
3494
3495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3496
3497 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
3498 Author: Mike Frysinger <vapier@gentoo.org>
3499 Date:   Mon Oct 6 04:01:26 2008 -0400
3500
3501     Blackfin: print out Flash: before checking it
3502
3503     If there is some problem in the flash init/checking code, it's nicer to see
3504     the message "Flash:" before crashing.  This way the source of the problem
3505     is a bit more straightforward.
3506
3507     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3508
3509 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
3510 Author: Mike Frysinger <vapier@gentoo.org>
3511 Date:   Thu Aug 7 15:33:09 2008 -0400
3512
3513     Blackfin: safely flush data caches when in writeback mode
3514
3515     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3516
3517 commit c06f2b13022703611bc3e512bd34f9014a46f448
3518 Author: Mike Frysinger <vapier@gentoo.org>
3519 Date:   Thu Aug 7 13:21:48 2008 -0400
3520
3521     Blackfin: update lockbox api according to latest documentation
3522
3523     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3524
3525 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
3526 Author: Mike Frysinger <vapier@gentoo.org>
3527 Date:   Sat Oct 11 21:49:06 2008 -0400
3528
3529     Blackfin: mark bfin_reset static
3530
3531     The function is only used locally, so mark it static.
3532
3533     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3534
3535 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
3536 Author: Sonic Zhang <Sonic.Zhang@analog.com>
3537 Date:   Fri Mar 20 19:28:20 2009 -0400
3538
3539     Blackfin: spi: there is no PORTJ_FER MMR on BF537
3540
3541     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
3542     then there is no PORTJ_FER register for us to worry about.
3543
3544     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
3545     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3546
3547 commit e82b762f293debc53c5afa90f37264f6b07520f9
3548 Author: Mike Frysinger <vapier@gentoo.org>
3549 Date:   Tue Mar 17 13:58:23 2009 -0400
3550
3551     Blackfin: fix jtag console tstc
3552
3553     The jtag tstc operation was checking the hardware to see if data is
3554     available from it (which is fine for the jtag getc operation), but the
3555     higher layers need to know whether any data is available.  Since we have
3556     to read up to 4 bytes at a time from the hardware, the higher layers need
3557     to know they can consume the cached bytes as well.
3558
3559     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3560
3561 commit bc683f58b1f1d8d20546fe019483967a51a49df1
3562 Author: Mike Frysinger <vapier@gentoo.org>
3563 Date:   Sun Feb 22 16:23:41 2009 -0500
3564
3565     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
3566
3567     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3568
3569 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
3570 Author: Mike Frysinger <vapier@gentoo.org>
3571 Date:   Sun Feb 22 16:02:27 2009 -0500
3572
3573     Blackfin: unify net-related init code
3574
3575     Unify all of the net-related init code in the common Blackfin board init
3576     code to clean up the ifdef mess a bit.
3577
3578     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3579
3580 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
3581 Author: Mike Frysinger <vapier@gentoo.org>
3582 Date:   Wed Feb 18 12:51:48 2009 -0500
3583
3584     Blackfin: fix SWRST/SYSCR register sizes
3585
3586     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3587
3588 commit a9d6777d39154978b9ef9c682b2627a3480b194c
3589 Author: Mike Frysinger <vapier@gentoo.org>
3590 Date:   Wed Feb 18 12:51:31 2009 -0500
3591
3592     Blackfin: update anomaly lists
3593
3594     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3595
3596 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
3597 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3598 Date:   Thu Mar 19 18:31:38 2009 +0100
3599
3600     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
3601
3602     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3603     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3604
3605 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
3606 Author: Eric Schumann <E.Schumann@phytec.de>
3607 Date:   Sat Mar 21 09:59:34 2009 -0400
3608
3609     Make flash protection work, when the environment is in EEPROM
3610
3611     On the pcm030 the environment is located in the onboard EEPROM. But we want
3612     to handle flash sector protection in a safe manner. So we must read the
3613     unlock environment variable from EEPROM instead from flash.
3614
3615     This patch is required as long the evironment is saved into the EEPROM.
3616
3617     Stefan: Additional change as suggested by Wolfgang, use bigger char array
3618     (instead of 4).
3619
3620     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
3621     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
3622     Acked-by: Wolfgang Denk <wd@denx.de>
3623     Signed-off-by: Stefan Roese <sr@denx.de>
3624
3625 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
3626 Author: Jon Smirl <jonsmirl@gmail.com>
3627 Date:   Sat Mar 21 11:17:56 2009 -0400
3628
3629     Add define for mpc5200 CDM_CLK_ENA
3630
3631     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
3632
3633 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
3634 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
3635 Date:   Sun Mar 22 14:48:16 2009 +0100
3636
3637     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
3638
3639     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
3640
3641     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
3642     It is essentially the same, with a few minor differences.
3643
3644     Here is the chip page on Atmel website:
3645     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
3646
3647     Signed-off-by: Justin Waters <justin.waters@timesys.com>
3648     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
3649     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3650
3651 commit 118d168035cc93f586da4812c89cb153eb9f4243
3652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3653 Date:   Sun Mar 22 14:28:14 2009 +0100
3654
3655     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
3656
3657     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3658
3659 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
3660 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3661 Date:   Sun Mar 22 14:28:13 2009 +0100
3662
3663     cmc_pu2: fix misc_init_r prototype
3664
3665     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3666
3667 commit 53158aea995221706b42c7bad9f717b31ae20414
3668 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3669 Date:   Sun Jan 11 03:32:01 2009 +0100
3670
3671     at91sam9xeek: fix soc name
3672
3673     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3674
3675 commit 74c076d6c33d6d42ab065541a38383587879e7b7
3676 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3677 Date:   Sun Mar 22 10:22:34 2009 +0100
3678
3679     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
3680
3681     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3682
3683 commit 163966087d62680547f188a93c61d01c8155254e
3684 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3685 Date:   Sat Mar 21 21:08:01 2009 +0100
3686
3687     atmel/at91/boards: compile dataflash partition only when dataflash is
3688
3689     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3690
3691 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
3692 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3693 Date:   Sat Mar 21 21:08:00 2009 +0100
3694
3695     at91sam9/at91cap: move common macb initialisation to cpu
3696
3697     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3698
3699 commit f3f91f886bc8927fd692ac411b7423a87ffec532
3700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3701 Date:   Sat Mar 21 21:08:00 2009 +0100
3702
3703     at91sam9/at91cap: move common usb host initialisation to cpu
3704
3705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3706
3707 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
3708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3709 Date:   Sat Mar 21 21:08:00 2009 +0100
3710
3711     at91sam9/at91cap: move common led management to cpu
3712
3713     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3714
3715 commit 7ebafb7ec1a0285af8380623c009576f92583b98
3716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3717 Date:   Sat Mar 21 21:07:59 2009 +0100
3718
3719     at91sam9/at91cap: move common spi initialisation to cpu
3720
3721     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3722
3723 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
3724 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3725 Date:   Sat Mar 21 21:07:59 2009 +0100
3726
3727     at91sam9/at91cap: move common serial initialisation to cpu
3728
3729     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3730
3731 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
3732 Author: Wolfgang Denk <wd@denx.de>
3733 Date:   Sat Mar 21 22:04:41 2009 +0100
3734
3735     Prepare 2009.03
3736
3737     Update CHANGELOG
3738
3739     Signed-off-by: Wolfgang Denk <wd@denx.de>
3740
3741 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
3742 Author: Vivek Kutal <vivek.kutal@azingo.com>
3743 Date:   Mon Feb 23 21:35:11 2009 +0530
3744
3745     Replaced endpoint numbers with appropriate macros in usbtty.c.
3746
3747     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
3748     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3749
3750 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
3751 Author: Michael Lawnick <ml.lawnick@gmx.de>
3752 Date:   Thu Mar 19 10:06:41 2009 +0100
3753
3754     UBIFS: Missing offset relocation for compressor 'none'
3755
3756     On systems where U-Boot is linked to another address than it really lays
3757     (e.g. backup image), calls via function pointers must be fixed with a
3758     '+= gd->reloc_off'.
3759     This was not done for none_compr in ubifs_compressors_init() what leads
3760     to system crash on ubifsmount command.
3761
3762     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
3763     Acked-by: Stefan Roese <sr@denx.de>
3764
3765 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
3766 Author: Stefan Roese <sr@denx.de>
3767 Date:   Thu Mar 19 15:35:50 2009 +0100
3768
3769     UBIFS: Add UBIFS commands
3770
3771     This patchset adds these UBIFS related commands:
3772
3773     - ubifsmount
3774       Mount an UBIFS volume
3775
3776     - ubifsls
3777       List a directory of the mounted UBIFS volume
3778
3779     - ubifsload
3780       Load a file from the mounted UBIFS volume to memory
3781
3782     Signed-off-by: Stefan Roese <sr@denx.de>
3783
3784 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
3785 Author: Stefan Roese <sr@denx.de>
3786 Date:   Thu Mar 19 15:35:05 2009 +0100
3787
3788     UBIFS: Implement read-only UBIFS support in U-Boot
3789
3790     The U-Boot UBIFS implementation is largely a direct copy from the current
3791     Linux version (2.6.29-rc6). As already done in the UBI version we have an
3792     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
3793     ...). This makes it possible to use the original Linux code with very
3794     little changes. And by this we can better update to later Linux versions.
3795
3796     I removed some of the Linux features that are not used in the U-Boot
3797     version (e.g. garbage-collection, write support).
3798
3799     Signed-off-by: Stefan Roese <sr@denx.de>
3800     CC: Artem Bityutskiy <dedekind@infradead.org>
3801     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
3802
3803 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
3804 Author: Stefan Roese <sr@denx.de>
3805 Date:   Thu Mar 19 15:34:56 2009 +0100
3806
3807     Add LZO decompressor support
3808
3809     This patch adds LZO decompression support to U-Boot. It is needed for
3810     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
3811     decompressor. Since we only support read-only in UBIFS, only the
3812     decompressor is needed.
3813
3814     All this is copied with minor changes from the current Linux kernel
3815     version (2.6.28-rc8).
3816
3817     This patch only implements this LZO decompressor support for PPC.
3818     Other platforms using UBIFS will have to add the required
3819     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
3820     from the Linux source tree as I have done it for PPC in this patch.
3821
3822     Signed-off-by: Stefan Roese <sr@denx.de>
3823
3824 commit 68d7d65100e84df00bca971c114092731b441090
3825 Author: Stefan Roese <sr@denx.de>
3826 Date:   Thu Mar 19 13:30:36 2009 +0100
3827
3828     Separate mtdparts command from jffs2
3829
3830     Currently the mtdparts commands are included in the jffs2 command support.
3831     This doesn't make sense anymore since other commands (e.g. UBI) use this
3832     infrastructure as well now. This patch separates the mtdparts commands from
3833     the jffs2 commands making it possible to only select mtdparts when no JFFS2
3834     support is needed.
3835
3836     Signed-off-by: Stefan Roese <sr@denx.de>
3837     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3838
3839 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
3840 Author: Stefan Roese <sr@denx.de>
3841 Date:   Wed Feb 25 12:11:15 2009 +0100
3842
3843     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
3844
3845     Signed-off-by: Stefan Roese <sr@denx.de>
3846
3847 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
3848 Author: Grzegorz Bernacki <gjb@semihalf.com>
3849 Date:   Tue Mar 17 10:06:40 2009 +0100
3850
3851     Add support for the digsy MTC board.
3852
3853     This is the InterControl custom device based on the MPC5200B chip.
3854
3855     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
3856
3857 commit ff7dc067369e30066744f096995aef7d97574d15
3858 Author: Stefan Roese <sr@denx.de>
3859 Date:   Mon Feb 23 16:52:36 2009 +0100
3860
3861     powerpc: Fix compilation warning in board.c
3862
3863     Fix this warning:
3864
3865     board.c: In function 'board_init_r':
3866     board.c:653: warning: unused variable 'i'
3867     board.c:651: warning: unused variable 'e'
3868
3869     Signed-off-by: Stefan Roese <sr@denx.de>
3870
3871 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
3872 Author: Stefan Roese <sr@denx.de>
3873 Date:   Mon Feb 23 16:42:51 2009 +0100
3874
3875     ppc4xx: Don't write the MAC address into the internal SoC registers
3876
3877     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
3878     addresses into the SoC registers instead.
3879
3880     Signed-off-by: Stefan Roese <sr@denx.de>
3881
3882 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
3883 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3884 Date:   Fri Feb 20 10:19:19 2009 +0100
3885
3886     ppc4xx: Use correct io accessors for esd 405/440 boards
3887
3888     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
3889     macros. Also volatile pointer references are replaced by the
3890     new accessors.
3891
3892     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3893     Signed-off-by: Stefan Roese <sr@denx.de>
3894
3895 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
3896 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3897 Date:   Fri Feb 20 10:19:18 2009 +0100
3898
3899     ppc4xx: Use correct io accessors for esd 405 boards
3900
3901     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
3902     macros. Also volatile pointer references are replaced by the
3903     new accessors.
3904
3905     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3906     Signed-off-by: Stefan Roese <sr@denx.de>
3907
3908 commit a59205d1519375d027f97a545ad642ab20fce6f8
3909 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3910 Date:   Fri Feb 20 10:19:17 2009 +0100
3911
3912     ppc4xx: Cleanup linker scripts of esd 4xx boards
3913
3914     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3915     Signed-off-by: Stefan Roese <sr@denx.de>
3916
3917 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
3918 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3919 Date:   Fri Feb 20 10:19:16 2009 +0100
3920
3921     ppc4xx: Update TEXT_BASE for DASA_SIM boards
3922
3923     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
3924
3925     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3926     Signed-off-by: Stefan Roese <sr@denx.de>
3927
3928 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
3929 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3930 Date:   Fri Feb 20 10:19:15 2009 +0100
3931
3932     ppc4xx: DU405 maintenance fix
3933
3934     -strip unused features
3935     -fix resetting phy
3936
3937     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3938     Signed-off-by: Stefan Roese <sr@denx.de>
3939
3940 commit 75511b47ac2647be48218dbb93af05b21f404f67
3941 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3942 Date:   Fri Feb 20 10:19:14 2009 +0100
3943
3944     ppc4xx: Abort autoboot only by space key on CPCI405 boards
3945
3946     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3947     Signed-off-by: Stefan Roese <sr@denx.de>
3948
3949 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
3950 Author: Graeme Russ <graeme.russ@gmail.com>
3951 Date:   Tue Feb 24 21:14:56 2009 +1100
3952
3953     Add basic relocation to i386 port
3954
3955     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
3956
3957 commit 8c63d47651f77d9fb887cad433370b866eb0a193
3958 Author: Graeme Russ <graeme.russ@gmail.com>
3959 Date:   Tue Feb 24 21:14:45 2009 +1100
3960
3961     Implement SC520 timers
3962
3963     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3964
3965 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
3966 Author: Graeme Russ <graeme.russ@gmail.com>
3967 Date:   Tue Feb 24 21:14:32 2009 +1100
3968
3969     Factor out SC520 sub-features
3970
3971     Moved sub-features of the SC520 code which is currently selectively compiled
3972     using #ifdef out of sc520.c into individual files selectively compiled via
3973     the makefile
3974
3975     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3976
3977 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
3978 Author: Graeme Russ <graeme.russ@gmail.com>
3979 Date:   Tue Feb 24 21:13:40 2009 +1100
3980
3981     Rewrite i386 interrupt handling
3982
3983     Rewrite interrupt handling functionality for the i386 port. Separated
3984     functionality into separate CPU and Architecture components.
3985
3986     It appears as if the i386 interrupt handler functionality was intended
3987     to allow multiple handlers to be installed for a given interrupt.
3988     Unfortunately, this functionality was not fully implemented and also
3989     had the problem that irq_free_handler() does not allow the passing
3990     of the handler function pointer and therefore could never be used to
3991     free specific handlers that had been installed for a given IRQ.
3992
3993     There were also various issues with array bounds not being fully
3994     tested.
3995
3996     I had two objectives in mind for the new implementation:
3997
3998     1) Keep the implementation as similar as possible to existing
3999        implementations. To that end, I have used the leon2/3
4000        implementations as the reference
4001
4002     2) Seperate CPU and Architecture specific elements. All specific i386
4003        interrupt functionality is now in cpu/i386/ with the high level
4004        API and architecture specific code in lib_i386. Functionality
4005        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
4006        been further split out into an individual file to allow for the
4007        implementation of the PIC architecture of the SC520 CPU (supports
4008        more IRQs)
4009
4010     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
4011
4012 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
4013 Author: Graeme Russ <graeme.russ@gmail.com>
4014 Date:   Tue Feb 24 21:12:35 2009 +1100
4015
4016     Move ali512x.h
4017
4018     Moved ali512x.h from include/asm-i386/ic/ to /include
4019
4020     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
4021
4022 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
4023 Author: Graeme Russ <graeme.russ@gmail.com>
4024 Date:   Tue Feb 24 21:12:20 2009 +1100
4025
4026     Rename SC520 Configuration Options
4027
4028     Options are now all uniformly CONFIG_SYS_SC520_<option>
4029
4030     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
4031
4032 commit f62fb99941c625605aa16a0097b396a5c16d2c88
4033 Author: Trent Piepho <xyzzy@speakeasy.org>
4034 Date:   Wed Feb 18 15:22:05 2009 -0800
4035
4036     Fix all linker script to handle all rodata sections
4037
4038     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
4039     which needs to be added the the linker script.  Instead of just adding this
4040     one section, we use a wildcard ".rodata*" to get all rodata linker section
4041     gcc has now and might add in the future.
4042
4043     However, '*(.rodata*)' by itself will result in sub-optimal section
4044     ordering.  The sections will be sorted by object file, which causes extra
4045     padding between the unaligned rodata.str.1.1 of one object file and the
4046     aligned rodata of the next object file.  This is easy to fix by using the
4047     SORT_BY_ALIGNMENT command.
4048
4049     This patch has not be tested one most of the boards modified.  Some boards
4050     have a linker script that looks something like this:
4051
4052     *(.text)
4053     . = ALIGN(16);
4054     *(.rodata)
4055     *(.rodata.str1.4)
4056     *(.eh_frame)
4057
4058     I change this to:
4059
4060     *(.text)
4061     . = ALIGN(16);
4062     *(.eh_frame)
4063     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
4064
4065     This means the start of rodata will no longer be 16 bytes aligned.
4066     However, the boundary between text and rodata/eh_frame is still aligned to
4067     16 bytes, which is what I think the real purpose of the ALIGN call is.
4068
4069     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
4070
4071 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
4072 Author: Mike Frysinger <vapier@gentoo.org>
4073 Date:   Wed Feb 11 18:26:08 2009 -0500
4074
4075     remove bi_enet*addr from global data for all arches
4076
4077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4078     CC: Ben Warren <biggerbadderben@gmail.com>
4079     CC: Daniel Hellstrom <daniel@gaisler.com>
4080     CC: Michal Simek <monstr@seznam.cz>
4081     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4082     CC: Scott McNutt <smcnutt@psyent.com>
4083     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4084
4085 commit eb85aa594c1b57a1e3be9689b65171a137a36432
4086 Author: Mike Frysinger <vapier@gentoo.org>
4087 Date:   Wed Feb 11 20:07:19 2009 -0500
4088
4089     ppc: mark global bi_enet*addr as legacy
4090
4091     The environment is the canonical storage location of the mac address, so
4092     we're killing off the global data location and moving everything to
4093     querying the env directly.
4094
4095     In the ppc case, these things are part of the legacy ABI, so keep them
4096     around but mark them as legacy so no new code will touch them.
4097
4098     Also stop calling load_sernum_ethaddr() since all boards now implement
4099     this as a stub.
4100
4101     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4102     CC: Ben Warren <biggerbadderben@gmail.com>
4103
4104 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
4105 Author: Mike Frysinger <vapier@gentoo.org>
4106 Date:   Wed Feb 11 20:09:52 2009 -0500
4107
4108     boards: get mac address from env and move load_sernum_ethaddr() to board init
4109
4110     The environment is the canonical storage location of the mac address, so
4111     we're killing off the global data location and moving everything to
4112     querying the env directly.
4113
4114     Rather than have common ppc code call a board-specific function like
4115     load_sernum_ethaddr(), have each board call it in its own board-specific
4116     misc_init_r() function.
4117
4118     The boards that get converted here are:
4119         - kup4k/kup4x
4120         - pcs440ep
4121         - tqm8xx
4122
4123     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4124     CC: Ben Warren <biggerbadderben@gmail.com>
4125     CC: Stefan Roese <sr@denx.de>
4126
4127 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
4128 Author: Mike Frysinger <vapier@gentoo.org>
4129 Date:   Wed Feb 11 19:55:01 2009 -0500
4130
4131     cmc_pu2: get mac address from environment
4132
4133     The environment is the canonical storage location of the mac address, so
4134     we're killing off the global data location and moving everything to
4135     querying the env directly.
4136
4137     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
4138     handle this board specially in common ARM code.
4139
4140     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4141     CC: Ben Warren <biggerbadderben@gmail.com>
4142
4143 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
4144 Author: Mike Frysinger <vapier@gentoo.org>
4145 Date:   Mon Feb 16 18:03:14 2009 -0500
4146
4147     boards: move board_get_enetaddr() into board-specific init
4148
4149     The environment is the canonical storage location of the mac address, so
4150     we're killing off the global data location and moving everything to
4151     querying the env directly.
4152
4153     Rather than have the common ppc code have board-specific hooks, move the
4154     board_get_enetaddr() function into the board-specific init functions.
4155
4156     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4157     CC: Ben Warren <biggerbadderben@gmail.com>
4158
4159 commit f11e6ff5b1859d9213f0d501b3309e065f487543
4160 Author: Mike Frysinger <vapier@gentoo.org>
4161 Date:   Wed Feb 11 19:39:55 2009 -0500
4162
4163     arm: get mac address from environment
4164
4165     The environment is the canonical storage location of the mac address, so
4166     we're killing off the global data location and moving everything to
4167     querying the env directly.
4168
4169     Some warts are remaining and should be killed off (by moving the func to
4170     the appropriate board init code):
4171         - davinci_eth_set_mac_addr
4172         - cs8900_get_enetaddr
4173         - smc_set_mac_addr
4174
4175     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4176     CC: Ben Warren <biggerbadderben@gmail.com>
4177
4178 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
4179 Author: Mike Frysinger <vapier@gentoo.org>
4180 Date:   Wed Feb 11 19:36:20 2009 -0500
4181
4182     nx823: get mac address from environment
4183
4184     The environment is the canonical storage location of the mac address, so
4185     we're killing off the global data location and moving everything to
4186     querying the env directly.
4187
4188     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
4189     into misc_init_r() as is the env setup.  This lets us kill off the former
4190     function in the process.
4191
4192     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4193     CC: Ben Warren <biggerbadderben@gmail.com>
4194
4195 commit 19b5b533ccd522abeb501d510750693c35e20456
4196 Author: Mike Frysinger <vapier@gentoo.org>
4197 Date:   Wed Feb 11 18:27:18 2009 -0500
4198
4199     lib_*/board.c: do not initialize bi_enet*addr in global data
4200
4201     Since everyone is using the environment for mac address storage, there is
4202     no point in seeding the global data.
4203
4204     The arches that are converted here:
4205         i386
4206         m68k
4207         microblaze
4208         mips
4209         nios
4210         nios2
4211         sh
4212         sparc
4213
4214     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4215     CC: Ben Warren <biggerbadderben@gmail.com>
4216     CC: Daniel Hellstrom <daniel@gaisler.com>
4217     CC: Michal Simek <monstr@seznam.cz>
4218     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4219     CC: Scott McNutt <smcnutt@psyent.com>
4220     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4221
4222 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
4223 Author: Mike Frysinger <vapier@gentoo.org>
4224 Date:   Wed Feb 11 19:19:54 2009 -0500
4225
4226     npe: get mac address from environment
4227
4228     The environment is the canonical storage location of the mac address, so
4229     we're killing off the global data location and moving everything to
4230     querying the env directly.
4231
4232     The resulting code can also be simplified even further.
4233
4234     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4235     CC: Stefan Roese <sr@denx.de>
4236     CC: Ben Warren <biggerbadderben@gmail.com>
4237
4238 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
4239 Author: Mike Frysinger <vapier@gentoo.org>
4240 Date:   Wed Feb 11 19:18:41 2009 -0500
4241
4242     cpu/: get mac address from environment
4243
4244     The environment is the canonical storage location of the mac address, so
4245     we're killing off the global data location and moving everything to
4246     querying the env directly.
4247
4248     The cpus that get converted here:
4249         at91rm9200
4250         mpc512x
4251         mpc5xxx
4252         mpc8260
4253         mpc8xx
4254         ppc4xx
4255
4256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4257     CC: Ben Warren <biggerbadderben@gmail.com>
4258     CC: John Rigby <jrigby@freescale.com>
4259     CC: Stefan Roese <sr@denx.de>
4260
4261 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
4262 Author: Mike Frysinger <vapier@gentoo.org>
4263 Date:   Wed Feb 11 19:09:54 2009 -0500
4264
4265     lan91c96/smc91111/smc911x: get mac address from environment
4266
4267     The environment is the canonical storage location of the mac address, so
4268     we're killing off the global data location and moving everything to
4269     querying the env directly.
4270
4271     Also, do not bother checking the EEPROM if the env is setup.  This
4272     simplifies the code greatly.
4273
4274     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4275     Signed-off-by: Wolfgang Dnek <wd@denx.de>
4276     CC: Ben Warren <biggerbadderben@gmail.com>
4277     CC: Rolf Offermanns <rof@sysgo.de>
4278     CC: Erik Stahlman <erik@vt.edu>
4279     CC: Daris A Nevil <dnevil@snmc.com>
4280     CC: Sascha Hauer <s.hauer@pengutronix.de>
4281
4282 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
4283 Author: Mike Frysinger <vapier@gentoo.org>
4284 Date:   Wed Feb 11 19:14:09 2009 -0500
4285
4286     sh_eth: get mac address from environment
4287
4288     The environment is the canonical storage location of the mac address, so
4289     we're killing off the global data location and moving everything to
4290     querying the env directly.
4291
4292     The sh_eth driver can also be simplified a bit by using enetaddr member of
4293     the eth_device structure.
4294
4295     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4296     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4297     CC: Carlos Munoz <carlos@kenati.com>
4298     CC: Ben Warren <biggerbadderben@gmail.com>
4299
4300 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
4301 Author: Mike Frysinger <vapier@gentoo.org>
4302 Date:   Wed Feb 11 19:06:09 2009 -0500
4303
4304     cs8900: get mac address from environment
4305
4306     The environment is the canonical storage location of the mac address, so
4307     we're killing off the global data location and moving everything to
4308     querying the env directly.
4309
4310     The cs8900 driver also changes slightly in that the hardware is not
4311     consulted if the mac address in the env is sane.
4312
4313     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4314     CC: Marius Groeger <mgroeger@sysgo.de>
4315     CC: Ben Warren <biggerbadderben@gmail.com>
4316
4317 commit c4b8762f11d337e6a9d90c227b2871d65d372469
4318 Author: Mike Frysinger <vapier@gentoo.org>
4319 Date:   Wed Feb 11 19:04:25 2009 -0500
4320
4321     bcm570x: get mac address from environment
4322
4323     The environment is the canonical storage location of the mac address, so
4324     we're killing off the global data location and moving everything to
4325     querying the env directly.
4326
4327     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
4328     no need to pass the NodeAddress as a second parameter.  So drop the second
4329     argument to the LM_SetMacAddress() function (and update the tigon3 driver
4330     accordingly).
4331
4332     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4333     CC: Ben Warren <biggerbadderben@gmail.com>
4334
4335 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
4336 Author: Mike Frysinger <vapier@gentoo.org>
4337 Date:   Wed Feb 11 19:01:26 2009 -0500
4338
4339     drivers/net/: get mac address from environment
4340
4341     The environment is the canonical storage location of the mac address, so
4342     we're killing off the global data location and moving everything to
4343     querying the env directly.
4344
4345     The drivers that get converted here:
4346         3c589
4347         4xx_enet
4348         dc2114x
4349         dm9000x
4350         enc28j60
4351         fsl_mcdmafec
4352         ks8695eth
4353         mcffec
4354         rtl8019
4355         rtl8169
4356         s3c4510b_eth
4357         xilinx_emac
4358         xilinx_emaclite
4359
4360     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4361     CC: Ben Warren <biggerbadderben@gmail.com>
4362     CC: Rolf Offermanns <rof@sysgo.de>
4363     CC: Stefan Roese <sr@denx.de>
4364     CC: Sascha Hauer <saschahauer@web.de>
4365     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4366     CC: Greg Ungerer <greg.ungerer@opengear.com>
4367     CC: Xue Ligong <lgxue@hotmail.com>
4368     CC: Masami Komiya <mkomiya@sonare.it>
4369     CC: Curt Brune <curt@cucy.com>
4370     CC: Michal SIMEK <monstr@monstr.eu>
4371
4372 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
4373 Author: Mike Frysinger <vapier@gentoo.org>
4374 Date:   Wed Feb 11 18:38:38 2009 -0500
4375
4376     boards: get mac address from environment
4377
4378     The boards that get converted here to use the environment for the mac
4379     address rather than global data:
4380         debris
4381         mgcoge
4382         mgsuvd
4383         muas3001
4384         netstal
4385         pn62
4386         sixnet
4387         vcma9
4388         xilinx (the ones that use xilinx_enet)
4389
4390     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4391     CC: Ben Warren <biggerbadderben@gmail.com>
4392     CC: Sangmoon Kim <dogoil@etinsys.com>
4393     CC: Heiko Schocher <hs@denx.de>
4394     CC: David Mueller <d.mueller@elsoft.ch>
4395     CC: Niklaus Giger <niklaus.giger@netstal.com>
4396     CC: Wolfgang Grandegger <wg@denx.de>
4397     CC: Dave Ellis <DGE@sixnetio.com>
4398     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
4399
4400 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
4401 Author: Mike Frysinger <vapier@gentoo.org>
4402 Date:   Wed Feb 11 18:36:45 2009 -0500
4403
4404     AmigaOneG3SE/enet: get mac address from environment
4405
4406     Always use the MAC address that is stored in the environment first before
4407     falling back to the ROM.  This also cuts out any comparison steps: if the
4408     mac in the env is sane, the ROM is never consulted.
4409
4410     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4411     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
4412     CC: Ben Warren <biggerbadderben@gmail.com>
4413
4414 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
4415 Author: Mike Frysinger <vapier@gentoo.org>
4416 Date:   Wed Feb 11 18:52:38 2009 -0500
4417
4418     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
4419
4420     Since the ethernet layer handles updating of device addresses itself from
4421     the environment, there is no point in calling eth_set_enetaddr().
4422
4423     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4424     CC: Ben Warren <biggerbadderben@gmail.com>
4425
4426 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
4427 Author: Mike Frysinger <vapier@gentoo.org>
4428 Date:   Wed Feb 11 18:54:07 2009 -0500
4429
4430     lynxkdi: get mac address from environment
4431
4432     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4433     CC: Ben Warren <biggerbadderben@gmail.com>
4434
4435 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
4436 Author: Mike Frysinger <vapier@gentoo.org>
4437 Date:   Wed Feb 11 18:51:43 2009 -0500
4438
4439     bootvx: get mac address from environment
4440
4441     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4442     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
4443     CC: Ben Warren <biggerbadderben@gmail.com>
4444
4445 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
4446 Author: Mike Frysinger <vapier@gentoo.org>
4447 Date:   Wed Feb 11 18:50:10 2009 -0500
4448
4449     bdinfo: get mac address from environment
4450
4451     Add a new print_eth() function to automate the eth*addr env var acquisition
4452     and display.  Affects all arches.
4453
4454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4455     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4456     CC: Scott McNutt <smcnutt@psyent.com>
4457     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4458     CC: Michal Simek <monstr@seznam.cz>
4459     CC: Daniel Hellstrom <daniel@gaisler.com>
4460     CC: Ben Warren <biggerbadderben@gmail.com>
4461
4462 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
4463 Author: Mike Frysinger <vapier@gentoo.org>
4464 Date:   Wed Feb 11 18:23:48 2009 -0500
4465
4466     net: get mac address from environment and use eth util funcs
4467
4468     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4469     CC: Ben Warren <biggerbadderben@gmail.com>
4470
4471 commit 500b6c51e4c41f4562cb48344af98deb7e342731
4472 Author: Mike Frysinger <vapier@gentoo.org>
4473 Date:   Mon Oct 13 15:06:25 2008 -0400
4474
4475     Blackfin: bfin_mac: force boards to setup the MAC themselves
4476
4477     Since the on-chip MAC does not have an eeprom or similar interface, force
4478     all Blackfin boards that use this driver to setup the board data with a
4479     proper MAC.
4480
4481     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4482     CC: Ben Warren <biggerbadderben@gmail.com>
4483
4484 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
4485 Author: Mike Frysinger <vapier@gentoo.org>
4486 Date:   Wed Feb 11 14:12:34 2009 -0500
4487
4488     doc/README.enetaddr: document proper MAC usage
4489
4490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4491     CC: Ben Warren <biggerbadderben@gmail.com>
4492
4493 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
4494 Author: Mike Frysinger <vapier@gentoo.org>
4495 Date:   Thu Jan 29 19:43:44 2009 -0500
4496
4497     net: new utility functions for working with enetaddr's
4498
4499     Declare new utility functions for converting between the environment
4500     variables (eth*addr) and the binary MAC address representation.  This way
4501     we can unify all the random places that already do this kind of thing.
4502
4503     The functions in question:
4504         eth_parse_enetaddr - "..." -> {...}
4505         eth_getenv_enetaddr - env -> {...}
4506         eth_setenv_enetaddr - {...} -> env
4507
4508     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4509     CC: Ben Warren <biggerbadderben@gmail.com>
4510
4511 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
4512 Author: Mike Frysinger <vapier@gentoo.org>
4513 Date:   Tue Feb 17 00:00:53 2009 -0500
4514
4515     convert print_IPaddr() to %pI4
4516
4517     Now that our printf functions support the %pI4 modifier like the kernel,
4518     let's drop the inflexible print_IPaddr() function and covert over to the
4519     %pI4 modifier.
4520
4521     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4522     CC: Ben Warren <biggerbadderben@gmail.com>
4523
4524 commit 6c6166f52983dac775e3852f9d0f49d033f27108
4525 Author: Mike Frysinger <vapier@gentoo.org>
4526 Date:   Mon Feb 16 23:21:36 2009 -0500
4527
4528     vsprintf: pull updates from Linux kernel
4529
4530     This brings in support for the %p modifier which allows us to easily print
4531     out things like ip addresses, mac addresses, and pointers.
4532
4533     It also converts the rarely used 'q' length modifier to the common 'L'
4534     modifier when dealing with quad types.
4535
4536     While this new code is a bit larger (~1k .text), most of it should be made
4537     up by converting the existing ip/mac address code to use format modifiers.
4538
4539     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4540
4541 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
4542 Author: Jon Smirl <jonsmirl@gmail.com>
4543 Date:   Thu Mar 19 23:04:18 2009 -0400
4544
4545     .gitignore for generated files in api_examples directory
4546
4547     Add .gitignore for generated files in api_examples directory
4548
4549     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
4550     Signed-off-by: Wolfgang Denk <wd@denx.de>
4551
4552 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
4553 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4554 Date:   Wed Mar 18 12:27:04 2009 +0900
4555
4556     net: sh_eth: Remove sh_eth_reset() from halt function
4557
4558     sh_eth_reset is function to reset Ether IP.
4559     The MAC address is stored in IP, but it is initialized by this function.
4560     OS (e.g. Linux Kernel) can not use this device when initialized.
4561     This revises this problem.
4562
4563     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4564
4565 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
4566 Author: Anatolij Gustschin <agust@denx.de>
4567 Date:   Fri Mar 20 12:45:50 2009 +0100
4568
4569     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
4570
4571     PCI outbound address map configuration doesn't match the
4572     PCI memory address range covered by appropriate TLB entry
4573     configuration for canyonlands causing machine check
4574     exceptions while accessing PCI memory regions. This patch
4575     provides a fix for this issue.
4576
4577     Kazuaki Ichinohe observed and reported this issue while
4578     testing display output with PCI ATI video card on canyonlands.
4579
4580     Signed-off-by: Anatolij Gustschin <agust@denx.de>
4581     Signed-off-by: Stefan Roese <sr@denx.de>
4582
4583 commit 7a88601a34132548c3c591ea87ab3468b51121b0
4584 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4585 Date:   Fri Mar 6 10:09:37 2009 -0500
4586
4587     CFI: geometry reversal for STMicro M29W320DT
4588
4589     Follow up to the flash_fixup_stm to fix geometry reversal
4590     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
4591
4592     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4593     Signed-off-by: Stefan Roese <sr@denx.de>
4594
4595 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
4596 Author: Mike Frysinger <vapier@gentoo.org>
4597 Date:   Wed Feb 25 17:29:40 2009 -0500
4598
4599     smc911x_eeprom: update register API
4600
4601     The smc911x driver changed the naming convention for its register funcs,
4602     so update the eeprom code accordingly.
4603
4604     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4605     CC: Ben Warren <biggerbadderben@gmail.com>
4606
4607 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
4608 Author: Grzegorz Bernacki <gjb@semihalf.com>
4609 Date:   Tue Mar 17 10:06:39 2009 +0100
4610
4611     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
4612
4613     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
4614     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
4615     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
4616     Total5200 and will be used by digsy MTC and other boards with
4617     ATA CS on I2C pins.
4618
4619     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
4620
4621 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
4622 Author: Heiko Schocher <hs@denx.de>
4623 Date:   Thu Mar 12 07:37:34 2009 +0100
4624
4625     8xx: add support for new keymile kmsupx4 board.
4626
4627     This patch adds support for the kmsupx4 board from Keymile,
4628     based on a Freescale MPC852T CPU
4629
4630     - serial console on SMC1
4631     - 32 MB SDRAM
4632     - 32 MB NOR Flash
4633     - Ethernet over SCC3
4634     - I2C Bitbang
4635
4636     Signed-off-by: Heiko Schocher <hs@denx.de>
4637
4638 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
4639 Author: Heiko Schocher <hs@denx.de>
4640 Date:   Thu Mar 12 07:37:28 2009 +0100
4641
4642     8xx, mgsuvd: rename board to a more generic name
4643
4644     renaming the "mgsuvd" board port into "km8xx", because
4645     there come more similar boards from keymile.
4646     Compiling the mgsuvd board with "make mgsuvd_config"
4647     remains.
4648
4649     Signed-off-by: Heiko Schocher <hs@denx.de>
4650
4651 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
4652 Author: Heiko Schocher <hs@denx.de>
4653 Date:   Thu Mar 12 07:37:23 2009 +0100
4654
4655     8xx, mgsuvd: Coding Style cleanup config file
4656
4657     Signed-off-by: Heiko Schocher <hs@denx.de>
4658
4659 commit 364123db6730d32330f818b65360d2cd27396667
4660 Author: Heiko Schocher <hs@denx.de>
4661 Date:   Thu Mar 12 07:37:18 2009 +0100
4662
4663     powerpc: common updates for keymile boards
4664
4665     - added to keymile-common.h:
4666       - bootcount support
4667       - COMMAND HISTORY
4668       - CONFIG_AUTO_COMPLETE
4669       - CONFIG_SYS_FLASH_PROTECTION
4670       - JFFS2 support
4671       - CONFIG_VERSION_VARIABLE
4672     - extracted common I2C settings for all boards
4673     - common default environment settings summarized
4674
4675     Signed-off-by: Heiko Schocher <hs@denx.de>
4676
4677 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
4678 Author: Heiko Schocher <hs@denx.de>
4679 Date:   Thu Mar 12 07:37:15 2009 +0100
4680
4681     8xx, icache: enabling ICache not before running from RAM
4682
4683     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
4684     is not enabled before code runs from RAM.
4685
4686     Signed-off-by: Heiko Schocher <hs@denx.de>
4687
4688 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
4689 Author: Heiko Schocher <hs@denx.de>
4690 Date:   Thu Mar 12 07:37:11 2009 +0100
4691
4692     82xx, mgcoge: fix environment sector size
4693
4694     Size of one environment sector is 0x20000.
4695
4696     Signed-off-by: Heiko Schocher <hs@denx.de>
4697
4698 commit 27057d416c7cc9eb1860953da8836352c07f13e9
4699 Author: Ladislav Michl <ladis@linux-mips.org>
4700 Date:   Mon Mar 16 23:27:31 2009 +0100
4701
4702     NetStar: config reindentation
4703
4704     Fix indentation broken by symbol renames. "Sort" driver related definitons.
4705
4706     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
4707
4708 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
4709 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4710 Date:   Tue Mar 17 11:21:43 2009 +0000
4711
4712     ColdFire: Fix incorrect definition
4713
4714     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4715
4716 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
4717 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4718 Date:   Mon Mar 2 19:16:45 2009 +0000
4719
4720     ColdFire: Fix M5329EVB and M5373EVB nand issue
4721
4722     The Nand flash was unable to read and write properly
4723     due to Nand Chip Select (nCE) setup was in reverse
4724     order. Also, increase the Nand time out value to 60.
4725
4726     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4727
4728 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
4729 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4730 Date:   Tue Jan 27 15:19:35 2009 +0000
4731
4732     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
4733
4734     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
4735     ColdFire compiler.
4736
4737     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4738
4739 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
4740 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4741 Date:   Tue Jan 27 12:57:47 2009 +0000
4742
4743     ColdFire: Provide gzip image size V2 & V3 platforms
4744
4745     Default gzip bootm size is 8MB. Some platforms require
4746     more than 8MB
4747
4748     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4749
4750 commit c3a9e6374210679a81f611c1bcf968988bc20e41
4751 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4752 Date:   Wed Feb 18 11:49:31 2009 +0000
4753
4754     ColdFire: Fix M54451 serial boot dram setup
4755
4756     The serial boot dram extended/standard mode register was not
4757     setup and was using default DRAM setup causing the U-boot was
4758     unstable to boot up in serial mode.
4759
4760     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4761
4762 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
4763 Author: arun c <arun.edarath@gmail.com>
4764 Date:   Thu Dec 4 15:57:15 2008 +0530
4765
4766     Coldfire: XL Bus minor fixes
4767
4768     According to coldfire manual data timeout > address time out
4769     also use correct macro to program XARB_CFG
4770
4771     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
4772
4773 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
4774 Author: Scott Wood <scottwood@freescale.com>
4775 Date:   Tue Mar 17 12:06:04 2009 -0500
4776
4777     NAND: Have nboot accept .e and .i as legacy no-ops.
4778
4779     This was intended to happen before, but a trivial bug prevented it.
4780
4781     Signed-off-by: Scott Wood <scottwood@freescale.com>
4782
4783 commit 0987505540918b2464b73069af3a5b766dbd3ceb
4784 Author: Ladislav Michl <ladis@linux-mips.org>
4785 Date:   Fri Mar 13 14:38:19 2009 +0100
4786
4787     NAND: Make nboot skip bad blocks
4788
4789     nboot command currently does not skip bad blocks and gives read error when
4790     loading image stored over bad block. With patch applied, nboot works as
4791     expected:
4792
4793     Device 0 bad blocks:
4794       00780000
4795       014a0000
4796       02000000
4797       02cc0000
4798       04aa0000
4799
4800     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
4801        Image Name:   Linux-2.6.22-omap1
4802        Created:      2008-11-20  23:44:32 UTC
4803        Image Type:   ARM Linux Kernel Image (uncompressed)
4804        Data Size:    1052520 Bytes =  1 MB
4805        Load Address: 10008000
4806        Entry Point:  10008000
4807     Skipping bad block 0x02cc0000
4808     Automatic boot of image at addr 0x10400000 ...
4809     ...
4810
4811     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
4812     Signed-off-by: Scott Wood <scottwood@freescale.com>
4813
4814 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
4815 Author: Stefan Roese <sr@denx.de>
4816 Date:   Thu Mar 12 07:27:25 2009 +0100
4817
4818     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
4819
4820     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
4821     the DDR2 configuration to only use one CS (rank). As this code is most
4822     likely copied from the original Sequoia version, this error was copied
4823     as well.
4824
4825     This patch also removes some dead code.
4826
4827     Signed-off-by: Stefan Roese <sr@denx.de>
4828
4829 commit 9199b9cc8f56aca26504b48cf702176208f46e54
4830 Author: Stefan Roese <sr@denx.de>
4831 Date:   Thu Mar 12 07:24:40 2009 +0100
4832
4833     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
4834
4835     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
4836     the DDR2 configuration to only use one CS (rank). As this code is most
4837     likely copied from the original Sequoia version, this error was copied
4838     as well.
4839
4840     Signed-off-by: Stefan Roese <sr@denx.de>
4841
4842 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
4843 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
4844 Date:   Wed Mar 11 10:54:46 2009 +0200
4845
4846     Fix AMCC Sequoia board DDR memory configuration
4847
4848     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
4849     specifies that BankSel#1 is not connected, while bootloader memory
4850     configuration is (board/amcc/sequoia/sdram.c):
4851            mtsdram(DDR0_10, 0x00000300);
4852     i.e. both Chip Selects used - not correct.
4853
4854     If we change to correct value here:
4855            mtsdram(DDR0_10, 0x00000100);
4856     memory is accessible OK also.
4857
4858     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
4859     Signed-off-by: Stefan Roese <sr@denx.de>
4860
4861 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
4862 Author: Wolfgang Denk <wd@denx.de>
4863 Date:   Sun Mar 15 22:40:09 2009 +0100
4864
4865     Prepare 2009.03-rc2
4866
4867     Update CHANEGLOG, fix minor coding style issue.
4868
4869     Signed-off-by: Wolfgang Denk <wd@denx.de>
4870
4871 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
4872 Author: Jerry Van Baren <gvb.uboot@gmail.com>
4873 Date:   Fri Mar 13 11:40:10 2009 -0400
4874
4875     mpc83xx: Add bank configuration to FSL spd_sdram.c
4876
4877     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
4878     bank SDRAMs.
4879
4880     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4881     Acked-by: Dave Liu <daveliu@freescale.com>
4882     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4883
4884 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
4885 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4886 Date:   Fri Mar 13 08:58:14 2009 +0100
4887
4888     mpc83xx: correctly set encryption and I2C bus 0 clock
4889
4890     This patch makes sure the correct mask is applied when setting
4891     the encryption and I2C bus 0 clock in SCCR.
4892     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
4893     won't function.
4894
4895     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4896     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4897
4898 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
4899 Author: Dirk Behme <dirk.behme@googlemail.com>
4900 Date:   Thu Mar 12 19:30:50 2009 +0100
4901
4902     OMAP3: Add support for OMAP3 die ID
4903
4904     Read and store OMAP3 die ID in U-Boot environment.
4905
4906     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4907
4908 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
4909 Author: Jon Smirl <jonsmirl@gmail.com>
4910 Date:   Wed Mar 11 15:08:56 2009 -0400
4911
4912     MPC5200 FEC MII speed register
4913
4914     Set a non-zero speed in the MII register so that MII commands will work.
4915
4916     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
4917
4918 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
4919 Author: Yusuke.Goda <goda.yusuke@renesas.com>
4920 Date:   Fri Mar 13 16:08:18 2009 +0900
4921
4922     sh: ap325rxa: Change the wait cycle in the area 5
4923
4924     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
4925     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4926
4927 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
4928 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4929 Date:   Wed Feb 25 16:04:26 2009 +0900
4930
4931     sh: Fix cannot work rtl8139 on r2dplus
4932
4933     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
4934     registration.
4935
4936     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4937     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4938
4939 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
4940 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4941 Date:   Fri Feb 27 18:35:41 2009 +0900
4942
4943     sh: Add netdev header fixing of warning/build
4944
4945     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4946     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4947
4948 commit ada9318252f51c2626e9837c623f9812b0308dea
4949 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4950 Date:   Tue Mar 3 15:11:17 2009 +0900
4951
4952     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
4953
4954     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
4955     for this mode. This command changes PMB for using 512MB system memory.
4956
4957     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4959
4960 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
4961 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4962 Date:   Wed Feb 25 14:26:42 2009 +0900
4963
4964     sh: Add some register value configurable to PCI of SH7780
4965
4966     Some register value was hardcoded for System memory size 128MB and
4967     memory offset 0x08000000. This patch fixed the problem.
4968
4969     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4970     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4971
4972 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
4973 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4974 Date:   Wed Feb 25 14:26:52 2009 +0900
4975
4976     sh: Add system memory registration to PCI for SH4
4977
4978     It is necessary for some pci device driver.
4979
4980     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4981     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4982
4983 commit b3061b40db691245a7bb9a55354b4edacbf3902d
4984 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4985 Date:   Wed Feb 25 14:26:55 2009 +0900
4986
4987     sh: Add value for PCI system memory registration of sh7785lcr
4988
4989     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4990     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4991
4992 commit 6d84ae3956a6cd7aebd86f661130752594e60124
4993 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4994 Date:   Tue Mar 3 15:11:08 2009 +0900
4995
4996     sh: Add macros for SH-4A 32-Bit Address Extended Mode
4997
4998     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4999     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5000
5001 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
5002 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5003 Date:   Tue Feb 3 13:35:05 2009 +0900
5004
5005     sh: use write{8,16,32} in ms7720se lowlevel_init
5006
5007     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5008     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5009
5010 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
5011 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
5012 Date:   Mon Mar 9 18:07:53 2009 -0500
5013
5014     tsec: report when there is no vendor specific PHY support
5015
5016     Commit af1c2b84 added a generic phy support, with an ID of zero
5017     and a 32 bit mask; meaning that it will match on any PHY ID.
5018
5019     The problem is that there is a test that checked if a matching
5020     PHY was found, and if not, it printed the non-matching ID.
5021     But since there will always be a match (on the generic PHY,
5022     worst case), this test will never trip.
5023
5024     In the case of a misconfigured PHY address, or of a PHY that
5025     isn't explicitly supported outside of the generic support,
5026     you will never see the ID of 0xffffffff, or the ID of the
5027     real (but unsupported) chip.  It will silently fall through
5028     onto the generic support.
5029
5030     This change makes that test useful again, and ensures that
5031     the selection of generic PHY support doesn't happen without
5032     some sort of notice.  It also makes it explicitly clear that
5033     the generic PHY must be last in the PHY table.
5034
5035     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
5036     Acked-by: Andy Fleming <afleming@freescale.com>
5037
5038 commit c279dfc10186ceba78d3862036f158750e86599a
5039 Author: Wolfgang Denk <wd@denx.de>
5040 Date:   Mon Mar 9 10:53:05 2009 +0100
5041
5042     SIMPC8313 board: fix out of tree building.
5043
5044     Fix typo in makefile which broke out of tree builds.
5045
5046     Also use expolicit "rm" instead of "ln -sf" which is known to be
5047     unreliable.
5048
5049     Signed-off-by: Wolfgang Denk <wd@denx.de>
5050     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5051
5052 commit 49b5aff491bd574935ecaf8545152066a25eff3d
5053 Author: ksi@koi8.net <ksi@koi8.net>
5054 Date:   Mon Feb 23 10:53:13 2009 -0800
5055
5056     Add eTSEC 1/2 IO override control (corrected)
5057
5058     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
5059
5060     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
5061
5062 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
5063 Author: Andy Fleming <afleming@freescale.com>
5064 Date:   Fri Mar 6 19:05:52 2009 -0600
5065
5066     fsl: Remove unnecessary debug printfs
5067
5068     These were left in accidentally, and are not really useful unless the
5069     code is as broken as it was when it was being developed.
5070
5071     Signed-off-by: Andy Fleming <afleming@freescale.com>
5072
5073 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
5074 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
5075 Date:   Tue Feb 24 02:37:59 2009 -0600
5076
5077     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
5078
5079     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
5080     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
5081
5082     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5083
5084 commit a922fdb87af25c25c032424908dcf60fbf3250ea
5085 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5086 Date:   Tue Feb 24 06:13:10 2009 +0100
5087
5088     PXA: timer use do_div and simplify it
5089
5090     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5091
5092 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
5093 Author: Wolfgang Denk <wd@denx.de>
5094 Date:   Mon Mar 9 10:51:39 2009 +0100
5095
5096     SIMPC8313 board: fix out of tree building.
5097
5098     Fix typo in makefile which broke out of tree builds.
5099
5100     Also use expolicit "rm" instead of "ln -sf" which is known to be
5101     unreliable.
5102
5103     Signed-off-by: Wolfgang Denk <wd@denx.de>
5104
5105 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
5106 Author: Heiko Schocher <hs@denx.de>
5107 Date:   Tue Feb 24 11:30:51 2009 +0100
5108
5109     8360, kmeter1: added bootcount feature.
5110
5111     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
5112
5113     The bootcounter uses 8 bytes from the muram,
5114     because no other memory was found on this
5115     CPU for the bootcount feature. So we must
5116     correct the muram size in DTS before booting
5117     Linux.
5118
5119     This feature is actual only implemented for
5120     MPC8360, because not all 83xx CPU have qe,
5121     and therefore no muram, which this feature
5122     uses.
5123
5124     Signed-off-by: Heiko Schocher <hs@denx.de>
5125     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5126
5127 commit 1e7ed2565031e01abc18c713030a0a9829c07684
5128 Author: Heiko Schocher <hs@denx.de>
5129 Date:   Tue Feb 24 11:30:48 2009 +0100
5130
5131     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
5132
5133     old code implemented the QE_ENET10 errata only for Silicon
5134     Revision 2.0. New code reads now the Silicon Revision
5135     register and sets dependend on the Silicon Revision the
5136     values as advised in the QE_ENET10 errata.
5137
5138     Signed-off-by: Heiko Schocher <hs@denx.de>
5139     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5140
5141 commit 605f78e34a3f0103693b891f2573edd352e7d495
5142 Author: Heiko Schocher <hs@denx.de>
5143 Date:   Tue Feb 24 11:30:44 2009 +0100
5144
5145     83xx, kmeter1: updates for 2009.03
5146
5147     - HRCW update
5148       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
5149       HRCWH_LALE_EARLY added
5150     - DDR-SDRAM settings modified. This solves sporadically
5151       problems with this memory.
5152     - CS1 now 128 MB window size
5153     - CS3 now 512 MB window size
5154     - PRAM activated
5155     - MTDPARTS_DEFAULT defined
5156     - CONFIG_HOSTNAME added
5157     - MONITOR_LEN now 384 KB
5158
5159     Signed-off-by: Heiko Schocher <hs@denx.de>
5160     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5161
5162 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
5163 Author: Heiko Schocher <hs@denx.de>
5164 Date:   Tue Feb 24 11:30:40 2009 +0100
5165
5166     83xx, kmeter1: autodetect size of DDR II RAM
5167
5168     it is possible that some board variants have different DDR II
5169     RAM sizes. So we autodetect the size of the assembled RAM.
5170
5171     Signed-off-by: Heiko Schocher <hs@denx.de>
5172     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5173
5174 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
5175 Author: Heiko Schocher <hs@denx.de>
5176 Date:   Tue Feb 24 11:30:37 2009 +0100
5177
5178     83xx, i2c: add mux support for fsl_i2c
5179
5180     This patch adds I2C mux support for the fsl_i2c driver. This
5181     allows you to add "new" i2c busses, which are reached over
5182     i2c muxes. For more infos, please look in the README and
5183     search for CONFIG_I2C_MUX.
5184
5185     Signed-off-by: Heiko Schocher <hs@denx.de>
5186     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5187
5188 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
5189 Author: Heiko Schocher <hs@denx.de>
5190 Date:   Tue Feb 24 11:30:34 2009 +0100
5191
5192     83xx, kmeter1: add I2C, dtt, eeprom support
5193
5194     This patch adds I2C support for the Keymile kmeter1 board.
5195     It uses the First I2C Controller from the CPU, for
5196     accessing 4 temperature sensors, an eeprom with IVM data
5197     and the booteeprom over a pca9547 mux.
5198
5199     Signed-off-by: Heiko Schocher <hs@denx.de>
5200     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5201
5202 commit db1d72afd77287bc8577210f3f71ab249dcf146f
5203 Author: Heiko Schocher <hs@denx.de>
5204 Date:   Tue Feb 24 11:30:30 2009 +0100
5205
5206     i2c, dtt: move dtt_init () to board_init_r ()
5207
5208     In case where a board not uses CONFIG_POST, it is not
5209     necessary to init the DTTs when running from flash.
5210
5211     Signed-off-by: Heiko Schocher <hs@denx.de>
5212     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5213
5214 commit 5b0055547f0246908b79cc300170d87380b69e18
5215 Author: Dave Liu <daveliu@freescale.com>
5216 Date:   Wed Feb 25 12:31:32 2009 +0800
5217
5218     83xx: Fix some bugs in spd sdram code
5219
5220     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
5221       tRTP according to DDR2 JEDEC spec.
5222     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
5223     3. add the support of DDR2-533,667,800 DIMMs
5224     4. cpo
5225     5. make the AL to min to gain better performance.
5226
5227     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
5228     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
5229
5230     items 1, 2 and 5:
5231     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5232
5233     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5234     Signed-off-by: Dave Liu <daveliu@freescale.com>
5235     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5236
5237 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
5238 Author: Valeriy Glushkov <gvv@lstec.com>
5239 Date:   Wed Feb 4 18:27:49 2009 +0200
5240
5241     MPC8349ITX: several config issues fixed
5242
5243     The previous version rebooted forever with DDR bigger than 256MB.
5244     Access the DS1339 RTC chip is on I2C1 bus.
5245     Allow DHCP.
5246
5247     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
5248     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5249
5250 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
5251 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5252 Date:   Thu Feb 19 18:20:39 2009 +0300
5253
5254     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
5255
5256     The SerDes initialization should be finished before negating the reset
5257     signal according to the reference manual. This isn't an issue on real
5258     hardware, but we'd better stick to the specifications anyway.
5259
5260     Suggested-by: Liu Dave <DaveLiu@freescale.com>
5261     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5262     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5263
5264 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
5265 Author: Heiko Schocher <hs@denx.de>
5266 Date:   Wed Feb 25 12:28:32 2009 +0100
5267
5268     i2c, dtt: move dtt_init () to board_init_r ()
5269
5270     it is not necessary to init the DTTs so early,
5271     so move this init to board_init_r ().
5272
5273     Signed-off-by: Heiko Schocher <hs@denx.de>
5274
5275 commit 00cc5595a7caac8066b408774383a956c2e26797
5276 Author: Anatolij Gustschin <agust@denx.de>
5277 Date:   Wed Feb 25 20:28:13 2009 +0100
5278
5279     lcd: Fix compilation warning in common/lcd.c
5280
5281     Fix following warning while compilation for mcc200 board:
5282
5283     lcd.c: In function 'lcd_display_bitmap':
5284     lcd.c:625: warning: unused variable 'cmap'
5285
5286     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5287
5288 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
5289 Author: Graeme Russ <graeme.russ@gmail.com>
5290 Date:   Tue Feb 24 21:11:24 2009 +1100
5291
5292     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
5293
5294     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
5295
5296     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
5297
5298 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
5299 Author: Mike Frysinger <vapier@gentoo.org>
5300 Date:   Mon Feb 23 10:29:47 2009 -0500
5301
5302     smc911x: split out useful defines/functions into local header
5303
5304     The smc911x driver has a lot of useful defines/functions which can be used
5305     by pieces of code (such as example eeprom programmers).  Rather than
5306     forcing each place to duplicate these defines/functions, split them out
5307     of the smdc911x driver into a local header.
5308
5309     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5310     Acked-by: Ben Warren <biggerbadderben@gmail.com>
5311     CC: Sascha Hauer <s.hauer@pengutronix.de>
5312     CC: Guennadi Liakhovetski <lg@denx.de>
5313     CC: Magnus Lilja <lilja.magnus@gmail.com>
5314     CC: Ben Warren <biggerbadderben@gmail.com>
5315
5316 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
5317 Author: Guennadi Liakhovetski <lg@denx.de>
5318 Date:   Tue Feb 24 10:44:02 2009 +0100
5319
5320     ARM: add an "eet" variant of the imx31_phycore board
5321
5322     The "eet" variant of the imx31_phycore board has an OLED display, using a
5323     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
5324     chip-select for it. With this configuration you can display 256 colour BMP
5325     images in 16-bit RGB (RGB565) LCD mode.
5326
5327     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5328     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5329
5330 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
5331 Author: Guennadi Liakhovetski <lg@denx.de>
5332 Date:   Fri Feb 6 10:37:57 2009 +0100
5333
5334     video: add an i.MX31 framebuffer driver
5335
5336     Add a driver for the Synchronous Display Controller and the Display
5337     Interface on i.MX31, using IPU for DMA channel setup. So far only
5338     displaying of bitmaps is supported, no text output.
5339
5340     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5341     Acked-by: Anatolij Gustschin <agust@denx.de>
5342
5343 commit b245e65ee3c4cce3ccf008a21f4528239655876c
5344 Author: Guennadi Liakhovetski <lg@denx.de>
5345 Date:   Fri Feb 6 10:37:53 2009 +0100
5346
5347     LCD: support 8bpp BMPs on 16bpp displays
5348
5349     This patch also simplifies some ifdefs in lcd.c, introduces a generic
5350     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
5351     over to.
5352
5353     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5354     Acked-by: Anatolij Gustschin <agust@denx.de>
5355
5356 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
5357 Author: Mark Jackson <mpfj@mimc.co.uk>
5358 Date:   Fri Feb 6 10:37:49 2009 +0100
5359
5360     Add 16bpp BMP support
5361
5362     This patch adds 16bpp BMP support to the common lcd code.
5363
5364     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
5365
5366     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
5367     this to other platforms should be a simple task !!
5368
5369     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5370     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5371     Acked-by: Anatolij Gustschin <agust@denx.de>
5372
5373 commit 689551c5ff1b394b88412f3df22144e79468d3a9
5374 Author: Guennadi Liakhovetski <lg@denx.de>
5375 Date:   Fri Feb 6 10:37:41 2009 +0100
5376
5377     A driver for the S6E63D6 SPI display controller from Samsung
5378
5379     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
5380     It only provides access to controller's registers so the client can freely
5381     configure it.
5382
5383     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5384     Acked-by: Anatolij Gustschin <agust@denx.de>
5385
5386 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
5387 Author: Guennadi Liakhovetski <lg@denx.de>
5388 Date:   Fri Feb 13 09:26:40 2009 +0100
5389
5390     i.MX31: support GPIO as a chip-select in the mxc_spi driver
5391
5392     Some SPI devices have special requirements on chip-select handling.
5393     With this patch we can use a GPIO as a chip-select and strictly follow
5394     the SPI_XFER_BEGIN and SPI_XFER_END flags.
5395
5396     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5397     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5398
5399 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
5400 Author: Guennadi Liakhovetski <lg@denx.de>
5401 Date:   Sat Feb 7 01:18:07 2009 +0100
5402
5403     i.MX31: add a simple gpio driver
5404
5405     This is a minimal driver, so far only managing output. It will
5406     be used by the mxc_spi.c driver.
5407
5408     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5409     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5410
5411 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
5412 Author: Guennadi Liakhovetski <lg@denx.de>
5413 Date:   Sat Feb 7 00:09:12 2009 +0100
5414
5415     i.MX31: fix SPI driver for shorter than 32 bit
5416
5417     Fix setting the SPI Control register, 8 and 16-bit transfers
5418     and a wrong pointer in the free routine in the mxc_spi driver.
5419
5420     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5421     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5422
5423 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
5424 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5425 Date:   Thu Feb 19 18:20:52 2009 +0300
5426
5427     mpc83xx: MPC837XERDB: Add PCIe support
5428
5429     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
5430     slots. Let's support them.
5431
5432     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5433     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5434
5435 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
5436 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5437 Date:   Thu Feb 19 18:20:50 2009 +0300
5438
5439     mpc83xx: PCI: Fix hard-coded first_busno value
5440
5441     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
5442     erroneously re-use PCI0's first_busno for PCI1 hoses.
5443
5444     NOTE: The patch is untested. All MPC83xx FSL boards I have have
5445     PCI1 in miniPCI form, for which I don't have any cards handy.
5446
5447     But looking in cpu/mpc85xx/pci.c:
5448     ...
5449     #ifdef CONFIG_MPC85XX_PCI2
5450             hose = &pci_hose[1];
5451
5452             hose->first_busno = pci_hose[0].last_busno + 1;
5453
5454     And considering that we do the same for MPC83xx PCI-E support,
5455     I think this patch is correct.
5456
5457     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5458     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5459
5460 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
5461 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5462 Date:   Thu Feb 19 18:20:46 2009 +0300
5463
5464     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
5465
5466     This patch fixes copy-paste issue: pci_hose[0]'s first and last
5467     busnos were used to fixup pci1's nodes.
5468
5469     We don't see this bug triggering only because Linux reenumerate
5470     buses anyway.
5471
5472     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5473     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5474
5475 commit b24a99f6666ac278ec9f9c1334518af828833d19
5476 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5477 Date:   Thu Feb 19 18:20:44 2009 +0300
5478
5479     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
5480
5481     This patch fixes an issue in config space read accessors: we should
5482     fill-in the value even if we fail (e.g. skipping devices), otherwise
5483     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
5484
5485     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5486     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5487
5488 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
5489 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5490 Date:   Thu Feb 19 18:20:42 2009 +0300
5491
5492     mpc83xx: PCIe: Don't start bus enumeration at 0
5493
5494     Currently we assign first_busno = 0 for the first PCIe hose, but this
5495     scheme won't work if we have ordinary PCI hose already registered (its
5496     first_busno value is 0 too).
5497
5498     The old code worked fine only because we have PCI disabled on
5499     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
5500     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
5501     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
5502     triggers.
5503
5504     So, to fix the issue, we should use pci_last_busno() + 1 for the
5505     first_busno (i.e. last available busno).
5506
5507     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
5508     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5509     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5510
5511 commit cc2a8c7751ddbae3116660064f446888538b93e9
5512 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5513 Date:   Thu Feb 19 18:20:41 2009 +0300
5514
5515     PCI: Add pci_last_busno() helper
5516
5517     This is just a handy routine that reports last PCI busno: we walk
5518     down all the hoses and return last hose's last_busno.
5519
5520     Will be used by PCI/PCIe initialization code.
5521
5522     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5523     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5524
5525 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
5526 Author: Becky Bruce <beckyb@kernel.crashing.org>
5527 Date:   Mon Feb 23 13:56:51 2009 -0600
5528
5529     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
5530
5531     Currently, we get 256MB as the default, but since all the 86xx
5532     board configs define a 2G BAT mapping for RAM, raise default
5533     to 2G.
5534
5535     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5536     Acked-by: Jon Loeliger <jdl@freescale.com>
5537
5538 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
5539 Author: Becky Bruce <beckyb@kernel.crashing.org>
5540 Date:   Thu Feb 12 10:43:32 2009 -0600
5541
5542     mpc8641hpcn: Indicate 36-bit addr map in boot messages
5543
5544     If 36-bit addressing is enabled, print a message on the console
5545     when we boot.
5546
5547     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5548
5549 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
5550 Author: Mark Jackson <mpfj-list@mimc.co.uk>
5551 Date:   Fri Feb 13 15:48:18 2009 +0000
5552
5553     Setup extra MIMC200 chip selects
5554
5555     Added code to setup the extra Flash and FRAM chip selects as used on the
5556     MIMC200 board.
5557
5558     V2 moves the init code from the common "cpu.c" file into the board specific
5559     setup file.
5560
5561     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5562     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5563
5564 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
5565 Author: Mark Jackson <mpfj@mimc.co.uk>
5566 Date:   Mon Nov 24 12:10:56 2008 +0000
5567
5568     MIMC200: tidy GCLK init code
5569
5570     Change the MIMC200 startup code to use the built-in (rather than
5571     hard-coded) funtions for setting up gclk outputs.
5572
5573     We'll also move the code to the new, more-appropriate
5574     board_postclk_init() routine.
5575
5576     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5577     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5578
5579 commit b423f94063bf04e92047ff85c7e53441eb3b712b
5580 Author: Olav Morken <olavmrk@gmail.com>
5581 Date:   Fri Jan 23 12:56:32 2009 +0100
5582
5583     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
5584
5585     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
5586     workaround, two NOPs can be inserted.
5587
5588     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
5589     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
5590     Signed-off-by: Olav Morken <olavmrk@gmail.com>
5591     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5592
5593 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
5594 Author: Gunnar Rangoy <gunnar@rangoy.com>
5595 Date:   Fri Jan 23 12:56:29 2009 +0100
5596
5597     AVR32: Make GPIO implmentation cpu dependent
5598
5599     There are some differences in the implementation of GPIO in the
5600     at32uc chip compared to the ap700x series.
5601
5602     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
5603     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
5604     Signed-off-by: Olav Morken <olavmrk@gmail.com>
5605     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5606
5607 commit a38de083d2979db3680f0d0978c509a172c8fa00
5608 Author: Olav Morken <olavmrk@gmail.com>
5609 Date:   Fri Jan 23 12:56:28 2009 +0100
5610
5611     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
5612
5613     The AVR32A architecture (which AT32UC3A-series is based on) has a
5614     different memory layout than the AVR32B-architecture. This patch moves
5615     addrspace.h to an arch-dependent directory in preparation for
5616     AT32UC3A-support. It also moves some address-space manipulation
5617     functions from io.h to addrspace.h.
5618
5619     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
5620     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
5621     Signed-off-by: Olav Morken <olavmrk@gmail.com>
5622     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5623
5624 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
5625 Author: Olav Morken <olavmrk@gmail.com>
5626 Date:   Fri Jan 23 12:56:27 2009 +0100
5627
5628     AVR32: Make cacheflush cpu-dependent
5629
5630     The AT32UC3A series of processors doesn't contain any cache, and issuing
5631     cache control instructions on those will cause an exception. This commit
5632     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
5633
5634     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
5635     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
5636     Signed-off-by: Olav Morken <olavmrk@gmail.com>
5637     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5638
5639 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
5640 Author: Heiko Schocher <hs@denx.de>
5641 Date:   Tue Feb 10 09:38:52 2009 +0100
5642
5643     netloop: speed up NetLoop
5644
5645     NetLoop polls every cycle with getenv some environment variables.
5646     This is horribly slow, especially when the environment is big.
5647
5648     This patch reads only the environment variables in NetLoop,
5649     when they were changed.
5650
5651     Also moved the init part of the NetLoop function in a seperate
5652     function.
5653
5654     Signed-off-by: Heiko Schocher <hs@denx.de>
5655     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5656
5657 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
5658 Author: Mike Frysinger <vapier@gentoo.org>
5659 Date:   Mon Dec 22 02:56:07 2008 -0500
5660
5661     smc911x_eeprom: new example app for managing newer SMC parts
5662
5663     A forward port of the last version to work with the newer smc911x driver.
5664     I only have a board with a LAN9218 part on it, so that is the only one
5665     I've tested.  But there isn't anything in this that would make it terribly
5666     chip specific afaik.
5667
5668     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5669     CC: Sascha Hauer <s.hauer@pengutronix.de>
5670     CC: Guennadi Liakhovetski <lg@denx.de>
5671     CC: Magnus Lilja <lilja.magnus@gmail.com>
5672     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5673
5674 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
5675 Author: Pieter Henning <phenning@vastech.co.za>
5676 Date:   Sun Feb 22 23:17:15 2009 -0800
5677
5678     Added Vitesse VSC8211 definitions to TSEC driver
5679
5680     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
5681     the phy_info list in tsec.c
5682
5683     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
5684     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5685
5686 commit 32688e572ff96715b41420e9a7f280db6c399b65
5687 Author: Wolfgang Denk <wd@denx.de>
5688 Date:   Mon Feb 23 00:22:21 2009 +0100
5689
5690     Update CHANGELOG;  Prepare 2009.03-rc1
5691
5692     Signed-off-by: Wolfgang Denk <wd@denx.de>
5693
5694 commit 80b827c2b78329c6503b271e43d9eb693d644710
5695 Author: Wolfgang Denk <wd@denx.de>
5696 Date:   Sun Feb 22 23:45:40 2009 +0100
5697
5698     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
5699
5700     The file was generated from building versatile_defconfig.
5701
5702     Signed-off-by: Wolfgang Denk <wd@denx.de>
5703
5704 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
5705 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
5706 Date:   Sun Feb 22 14:24:11 2009 +0900
5707
5708     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
5709
5710     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
5711     like this:
5712
5713     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
5714     Configuring for dbau1x00 board...
5715     au1x00_eth.c: In function 'au1x00_send':
5716     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5717     au1x00_eth.c: In function 'au1x00_recv':
5718     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5719     au1x00_eth.c: In function 'au1x00_init':
5720     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5721     au1x00_eth.c: In function 'au1x00_recv':
5722     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5723     au1x00_eth.c: In function 'au1x00_init':
5724     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5725     au1x00_eth.c: In function 'au1x00_send':
5726     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
5727
5728     We're passing a volatile pointer to a function which is expecting a non-
5729     volatile pointer.  That's potentially dangerous, so gcc warns about it.
5730     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
5731
5732     To fix this, we add a volatile attribute to the argument in question.
5733     The virt_to_phys function in Linux kernel also does the same thing.
5734
5735     Signed-off-by: Stefan Roese <sr@denx.de>
5736     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
5737
5738 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
5739 Author: Dirk Behme <dirk.behme@googlemail.com>
5740 Date:   Fri Feb 20 17:51:28 2009 +0100
5741
5742     OMAP3: Clean up MMC code
5743
5744     Clean up OMAP3 MMC code:
5745
5746     * Convert register access to struct & readx/writex style
5747     * Replace hardcode values by macros
5748     * Remove macro defined twice
5749
5750     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5751
5752 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
5753 Author: Dirk Behme <dirk.behme@googlemail.com>
5754 Date:   Thu Feb 12 18:55:43 2009 +0100
5755
5756     OMAP3: Pandora: Update pin mux
5757
5758     Clock pin must have input enabled for MMC3 to work.
5759     Also enable pull-ups for cmd/data lines to be consistent
5760     with remaining MMC host pin setup.
5761
5762     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
5763
5764 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
5765 Author: Dirk Behme <dirk.behme@googlemail.com>
5766 Date:   Thu Feb 12 18:55:42 2009 +0100
5767
5768     OMAP3: Add OMAP3 auto detection
5769
5770     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
5771     and removes hardcoded values.
5772
5773     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
5774     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5775
5776 commit f956fd0338f4990793a10f767929ba4963665261
5777 Author: Dirk Behme <dirk.behme@googlemail.com>
5778 Date:   Thu Feb 12 18:55:41 2009 +0100
5779
5780     OMAP3: Beagle: Add board revision detection
5781
5782     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
5783     which might need different software handling. For this, GPIO pin 171 (GPIO
5784     module 6, offset 11) can be used to check for board revision. If this pin
5785     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
5786
5787     To handle board differences you can call function beagle_get_revision().
5788     E.g.:
5789
5790     if (beagle_get_revision()) {
5791
5792     /* do special revision C stuff here */
5793
5794     }
5795
5796     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5797
5798 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
5799 Author: Dirk Behme <dirk.behme@googlemail.com>
5800 Date:   Thu Feb 12 18:55:40 2009 +0100
5801
5802     OMAP3: Overo: Clean up pin mux and GPIO configuration
5803
5804     * Make Overo GPIO114 an input for touchscreen PENDOWN
5805     * Make Overo GPIO144-147 readable
5806     * Make Overo EHCI pinmux match beagle rev c setup
5807     * Adjust pinmux for SMSC911X network chip support
5808     * Remove unnecessary GPIO setup
5809     * Fix merge error in Makefile
5810
5811     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
5812     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5813
5814 commit 2579019b8248e5f166e60e37065766efc8a49dbc
5815 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5816 Date:   Sun Feb 22 17:08:41 2009 +0100
5817
5818     nmdk8815: fix onenand support
5819
5820     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5821
5822 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
5823 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5824 Date:   Sun Feb 22 17:56:50 2009 +0100
5825
5826     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
5827
5828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5829
5830 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
5831 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5832 Date:   Sun Feb 22 17:49:43 2009 +0100
5833
5834     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
5835
5836     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5837
5838 commit 4f5728987f4f9f7845688482aa2b7f2127768165
5839 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5840 Date:   Sun Feb 22 15:49:28 2009 +0100
5841
5842     arm: add uart dcc support
5843
5844     Serial driver via the EmbeddedICE macrocell's DCC channel using
5845     co-processor 14.
5846
5847     It does include a timeout to ensure that the system does not
5848     totally freeze when there is nothing connected to read.
5849
5850     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5851
5852 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
5853 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5854 Date:   Fri Nov 21 14:35:56 2008 -0500
5855
5856     ARM DaVinci: Add common peripherals and modules enable functions.
5857
5858     Taken all the duplicated code for enabling common modules and apply
5859     software workarounds from the board specific code into common
5860     functions. Also added comments explaining the workarounds
5861     (from TI errata documents) and replaced some numerical bit numbers
5862     with more meaningful defines.
5863
5864     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5865
5866 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
5867 Author: Alessandro Rubini <rubini@unipv.it>
5868 Date:   Mon Feb 9 15:53:33 2009 +0100
5869
5870     Enable Ethernet for Nomadik 8815 Evaluation Kit
5871
5872     This trivially enables Ethernet support in the debug board
5873     by setting up the proper chip select.
5874
5875     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5876     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5877
5878 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
5879 Author: Alessandro Rubini <rubini@unipv.it>
5880 Date:   Mon Feb 9 15:53:31 2009 +0100
5881
5882     Nand driver for Nomadik SoC
5883
5884     This driver implements the ECC algorithm described in
5885     the CPU data sheet and uses the OOB layout chosen in
5886     already-released development systems (shipped with a custom-made
5887     u-boot 1.3.1).
5888
5889     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5890     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5891
5892 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
5893 Author: Alessandro Rubini <rubini@unipv.it>
5894 Date:   Mon Feb 9 15:53:31 2009 +0100
5895
5896     Added nomadik.h header
5897
5898     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5899     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5900
5901 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
5902 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5903 Date:   Wed Oct 29 20:05:18 2008 +0900
5904
5905     r8a66597-hcd: fix cannot use external hub
5906
5907     Fix the problem that cannot use external hub, because this driver
5908     did not control correctly a DEVADDx register.
5909
5910     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5911     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5912
5913 commit e1ffaee728190e76a4596a3579d94e730143585f
5914 Author: Mike Frysinger <vapier@gentoo.org>
5915 Date:   Thu Feb 19 01:20:27 2009 -0500
5916
5917     Blackfin: disable syscontrol code for now
5918
5919     Looks like the initcode updates fell out of order during my merges.  The
5920     patch that really fixes up this code is part of power-on overhaul and so
5921     is too large for merging at this point.  Instead, we can disable the code
5922     as no currently in-tree board depends on it.  The next merge window will
5923     fix things up properly.
5924
5925     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5926
5927 commit 1b228d68f54832edd867ef98520f760f68192ab7
5928 Author: Mike Frysinger <vapier@gentoo.org>
5929 Date:   Thu Feb 19 01:19:49 2009 -0500
5930
5931     Blackfin: bf537-stamp: fix I2C board defines
5932
5933     The previous merge for cleaning up the I2C driver incorrectly reverted the
5934     CFG_xxx rename for some of the I2C defines.
5935
5936     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5937     Signed-off-by: Heiko Schocher <hs@denx.de>
5938
5939 commit 09fee8e8677a6265e89144ccc163bf00e321769e
5940 Author: Wolfgang Denk <wd@denx.de>
5941 Date:   Sun Feb 22 01:19:52 2009 +0100
5942
5943     Coding Style cleanup; update CHANGELOG
5944
5945     Signed-off-by: Wolfgang Denk <wd@denx.de>
5946
5947 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
5948 Author: Wolfgang Denk <wd@denx.de>
5949 Date:   Sun Feb 22 01:17:47 2009 +0100
5950
5951     Makefile: fix cleanup
5952
5953     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
5954     to adapt the cleanup rules in the Makefile
5955
5956     Signed-off-by: Wolfgang Denk <wd@denx.de>
5957
5958 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
5959 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5960 Date:   Fri Feb 20 13:01:56 2009 -0500
5961
5962     Cleanup the comment for m68k linux boot argument passing.
5963
5964     This patch clarifies the way m68k passes linux boot argument.
5965     The one gotcha here is that the assembly instruction that
5966     the compiler uses to jump to the kernel is 'jsr' which pushes the
5967     program counter for the instruction after the jsr into the stack pointer.
5968
5969     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5970     Signed-off-by: Wolfgang Denk <wd@denx.de>
5971
5972 commit 4d41650eec959668280a612467bd95c7b8398513
5973 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
5974 Date:   Tue Feb 10 16:44:45 2009 +0000
5975
5976     sh: Fix rsk7203 in tree build
5977
5978     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
5979
5980 commit fca0cecff73db99d99ad094cca7980472b8a11b5
5981 Author: Minkyu Kang <mk7.kang@samsung.com>
5982 Date:   Wed Feb 18 09:05:52 2009 +0900
5983
5984     bootm: Reduce the unnecessary memmove
5985
5986     Although load address and image start address are same address,
5987     bootm command always does memmove.
5988     That is unnecessary memmove and can be taken few milliseconds
5989     (about 500 msec to 1000 msec).
5990     If skip this memmove, we can reduce the boot time.
5991
5992     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5993
5994 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
5995 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5996 Date:   Sun Feb 15 22:29:15 2009 +0100
5997
5998     fpga: Fix Spartan III FPGA booting
5999
6000     This patch does some minor fixing of the Xilinx Spartan III
6001     FPGA boot code:
6002
6003     - Fixed call order of post configuration callback and
6004       success message printing (result of copy-paste?)
6005     - remove obsolete comment
6006     - minor coding style cleanup
6007
6008     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6009
6010 commit 3818b677641038d27b2663fbd6771ad38c932f86
6011 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6012 Date:   Sun Feb 15 22:28:36 2009 +0100
6013
6014     fpga: Fix Spartan II FPGA booting
6015
6016     This patch does some minor fixing of the Xilinx Spartan II
6017     FPGA boot code:
6018
6019     - Fixed call order of post configuration callback and
6020       success message printing (result of copy-paste?)
6021     - relocate post configuration callback only when it
6022       is implemented
6023     - remove obsolete comment
6024     - minor coding style cleanup
6025
6026     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6027
6028 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
6029 Author: Mike Frysinger <vapier@gentoo.org>
6030 Date:   Wed Feb 11 20:26:52 2009 -0500
6031
6032     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
6033
6034     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6035
6036 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
6037 Author: Derek Ou <dou@siconix.com>
6038 Date:   Tue Feb 3 16:00:07 2009 -0700
6039
6040     lcd_putc bug fix for tab.
6041
6042     Signed-off-by: Derek Ou <dou@siconix.com>
6043
6044 commit 35c9e14d8096e519fe76c953a43d52a09617345c
6045 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
6046 Date:   Mon Feb 2 09:46:21 2009 +0900
6047
6048     MIPS: cpu/mips/Makefile: Add a missing START line
6049
6050     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
6051     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
6052     line.  This patch puts it back.
6053
6054     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
6055
6056 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
6057 Author: Wolfgang Denk <wd@denx.de>
6058 Date:   Sat Feb 21 21:51:21 2009 +0100
6059
6060     Enable ext2 support for TQM8xxL/M based boards
6061
6062     Signed-off-by: Wolfgang Denk <wd@denx.de>
6063
6064 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
6065 Author: Tom Rix <Tom.Rix@windriver.com>
6066 Date:   Fri Feb 20 03:47:50 2009 +0100
6067
6068     ARM:PXA Use new definitions in mmc.h
6069
6070     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6071     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6072
6073 commit 682beeac34dc9ab18fab58b26973d2e29d113717
6074 Author: Andy Fleming <afleming@freescale.com>
6075 Date:   Fri Feb 20 03:47:50 2009 +0100
6076
6077     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
6078
6079     These names are being taken over by the new MMC framework.  Hopefuly
6080     the PXA can be easily ported, and these functions will go away entirely.
6081
6082     Signed-off-by: Andy Fleming <afleming@freescale.com>
6083     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6084
6085 commit b03d92e5584935886ff91d5aa0755dc8888b7187
6086 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6087 Date:   Fri Feb 20 03:47:50 2009 +0100
6088
6089     pxa: move mmc drivers to drivers/mmc
6090
6091     introduce new macro CONFIG_PXA_MMC to activate it
6092
6093     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6094
6095 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
6096 Author: Tom Rix <Tom.Rix@windriver.com>
6097 Date:   Thu Feb 19 19:27:22 2009 -0600
6098
6099     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
6100
6101     These structures are defined in the common mmc.h
6102
6103     This was compile checked on cerf250.
6104
6105 commit 94a3312920b6f9b5da27309549fb73650718c10a
6106 Author: Micha Kalfon <smichak.uv@gmail.com>
6107 Date:   Wed Feb 11 19:50:11 2009 +0200
6108
6109     pxa: fixing get_timer to return time in miliseconds.
6110
6111     Fixing the get_timer function to return time in miliseconds instead of
6112     ticks. Also fixed PXA boards to use the conventional value of 1000 for
6113     CONFIG_SYS_HZ.
6114
6115     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
6116
6117 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
6118 Author: Tom Rix <Tom.Rix@windriver.com>
6119 Date:   Thu Feb 19 16:45:43 2009 -0600
6120
6121     ARM:OMAP3 Change mmc_init to mmc_legacy_init
6122
6123     omap3_mmc.c was changed to define mmc_legacy_init.
6124     Remove unused functions.
6125
6126     Compile tested on all arm
6127     Runtime tested on Zoom1.
6128
6129     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6130
6131 commit 9e80bb21629988063574f88ca0d28baadff4d963
6132 Author: Heiko Schocher <hs@denx.de>
6133 Date:   Thu Feb 19 17:23:58 2009 +0100
6134
6135     82xx, mgcoge: updates for 2009.03
6136
6137     - activate CS4 for accessing the FPGA
6138     - activate Rx buf len > 1 on SMC
6139     - pram activated
6140     - MTDPARTS_DEFAULT defined
6141     - update the size of the flashes in the DTS
6142       before booting Linux
6143     - MONITOR_LEN updated to 384k
6144     - added CONFIG_HOSTNAME
6145     - added CONFIG_ENV_BUFFER_PRINT
6146     - Environment size reduced to 16k
6147
6148     Signed-off-by: Heiko Schocher <hs@denx.de>
6149
6150 commit df909554e2401f307925e1bd45d576e4176d9de9
6151 Author: Heiko Schocher <hs@denx.de>
6152 Date:   Thu Feb 19 17:24:01 2009 +0100
6153
6154     8xx, mgsuvd: updates for 2009.03
6155
6156     - activate Rx buf len > 1 on SMC
6157     - pram activated
6158     - MTDPARTS_DEFAULT defined
6159     - update the size of the flash in the DTS
6160       before booting Linux
6161     - MONITOR_LEN updated to 384k
6162     - added CONFIG_HOSTNAME
6163     - added CONFIG_ENV_BUFFER_PRINT
6164     - Environment size reduced to 16k
6165
6166     Signed-off-by: Heiko Schocher <hs@denx.de>
6167
6168 commit 3511b4e208e12be85b532866f1c660aa2e021557
6169 Author: Dirk Behme <dirk.behme@googlemail.com>
6170 Date:   Wed Feb 18 19:59:39 2009 +0100
6171
6172     MMC: Don't use new framework code if not enabled
6173
6174     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
6175     isn't enabled.
6176
6177     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6178
6179 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
6180 Author: Wolfgang Denk <wd@denx.de>
6181 Date:   Thu Feb 19 13:53:29 2009 +0100
6182
6183     TQM8xxL: make some room in low memory for future needs
6184
6185     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
6186     small boot sectors in the flash. This patch makes some room in the
6187     first sector to prepare for a size increase of lib_generic/vsprintf.o
6188     by a future patch.
6189
6190     Signed-off-by: Wolfgang Denk <wd@denx.de>
6191
6192 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
6193 Author: Kim Phillips <kim.phillips@freescale.com>
6194 Date:   Wed Feb 18 18:06:18 2009 -0600
6195
6196     README: remove duplicate entry
6197
6198     it's been around since the original commit (2ad6b513) that added two
6199     identical entries.
6200
6201     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6202
6203 commit 1bba30efe1717bea13026e15c7c7d906419fac69
6204 Author: Wolfgang Denk <wd@denx.de>
6205 Date:   Thu Feb 19 00:41:08 2009 +0100
6206
6207     Coding style cleanup, update CHANGELOG
6208
6209     Signed-off-by: Wolfgang Denk <wd@denx.de>
6210
6211 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
6212 Author: Kim Phillips <kim.phillips@freescale.com>
6213 Date:   Wed Feb 18 17:43:59 2009 -0600
6214
6215     sata_sil3114: fix compiler warning
6216
6217     judging from other printfs in the same file, it seems ata should be
6218     postpended with the interface number, not the address of the global
6219     port variable.  Fixes this for current u-boot-mpc83xx tree:
6220
6221     Configuring for MPC8349ITX board...
6222     sata_sil3114.c: In function 'sata_bus_softreset':
6223     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
6224     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
6225
6226     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6227
6228 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
6229 Author: Ron Madrid <ron_madrid@sbcglobal.net>
6230 Date:   Wed Feb 18 14:30:44 2009 -0800
6231
6232     Create configuration option for restricted ns16550 functions
6233
6234     This patch will create a configuration option for a minimum configuration for
6235     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
6236     configuration option to the SIMPC8313.h config file in order to fix the NAND
6237     bootstrap build error.  This option will exclude all functions with exception of
6238     NS16550_putc and NS16550_init.  This will be used primarily to save space and
6239     remove unused code from builds in which space is limited.
6240
6241     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
6242
6243 commit 7b0bc0219db8981613259473cf19699ac259b4fb
6244 Author: Kim Phillips <kim.phillips@freescale.com>
6245 Date:   Wed Feb 18 16:14:29 2009 -0600
6246
6247     mkconfig: include board config.h before asm/config.h
6248
6249     swapping the include order suppresses warnings for board configs
6250     that define their own CONFIG_MAX_MEM_MAPPED:
6251
6252     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
6253                     from /home/r1aaha/git/u-boot/include/common.h:35,
6254                     from simpc8313.c:26:
6255     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
6256     "CONFIG_MAX_MEM_MAPPED" redefined
6257     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
6258                     from /home/r1aaha/git/u-boot/include/common.h:35,
6259                     from simpc8313.c:26:
6260     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
6261     the location of the previous definition
6262
6263     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6264
6265 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
6266 Author: Wolfgang Denk <wd@denx.de>
6267 Date:   Wed Feb 18 21:35:38 2009 +0100
6268
6269     Fix build errors after making flash_get_info() non-static
6270
6271     Fix for these build problems:
6272     error: static declaration of 'flash_get_info' follows non-static declaration
6273
6274     Signed-off-by: Wolfgang Denk <wd@denx.de>
6275
6276 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
6277 Author: Stefan Roese <sr@denx.de>
6278 Date:   Wed Feb 18 13:18:00 2009 +0100
6279
6280     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
6281
6282     This patch fixes a problem recently seen on some 4xx platforms. For
6283     example on Kilauea PCIe slot #0.
6284
6285     Signed-off-by: Stefan Roese <sr@denx.de>
6286
6287 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
6288 Author: Stefan Roese <sr@denx.de>
6289 Date:   Wed Feb 18 14:05:37 2009 +0100
6290
6291     ppc4xx: Some more PMC405 coding-style cleanup
6292
6293     Signed-off-by: Stefan Roese <sr@denx.de>
6294
6295 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
6296 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6297 Date:   Sun Feb 15 22:27:47 2009 +0100
6298
6299     ppc4xx: Update PMC405 board support
6300
6301     This patch prepares the good old PMC405 board support for
6302     upcoming PMC405V2 patches.
6303
6304     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6305     Signed-off-by: Stefan Roese <sr@denx.de>
6306
6307 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
6308 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6309 Date:   Sun Feb 15 22:26:54 2009 +0100
6310
6311     ppc4xx: Cleanup PMC405 board support
6312
6313     This patch fixes coding style for PMC405 board support.
6314     Also some unneeded features/code is removed.
6315
6316     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6317     Signed-off-by: Stefan Roese <sr@denx.de>
6318
6319 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
6320 Author: Ilya Yanok <yanok@emcraft.com>
6321 Date:   Thu Feb 5 04:08:20 2009 +0100
6322
6323     qong: changes to Dave/DENX Qong configuration
6324
6325     1. Changes to the default environment:
6326       - "bootcmd" defined as "run flash_self"
6327       - "saveenv" command removed from "update"
6328       - "uboot" changed to "u-boot" (also in "load")
6329       - "addmtd" variable defined (and added to all boot commands)
6330     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
6331     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
6332     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
6333     with truncated "bootargs" environment variable.
6334
6335     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6336
6337 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
6338 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6339 Date:   Sun Feb 1 17:07:52 2009 +0100
6340
6341     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
6342
6343     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6344
6345 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
6346 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6347 Date:   Sun Feb 1 17:07:51 2009 +0100
6348
6349     common/console: coding style cleanup
6350
6351     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6352
6353 commit daaf74f176b548dfd34a9990231f4189201d57ba
6354 Author: Mike Frysinger <vapier@gentoo.org>
6355 Date:   Thu Jan 29 20:02:23 2009 -0500
6356
6357     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
6358
6359     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
6360     into the Makefile so we avoid pointless compiling of the file.
6361
6362     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6363
6364 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
6365 Author: Mike Frysinger <vapier@gentoo.org>
6366 Date:   Thu Jan 29 20:02:07 2009 -0500
6367
6368     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
6369
6370     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
6371     avoid pointless compiles.
6372
6373     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6374
6375 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
6376 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
6377 Date:   Thu Jan 29 10:35:40 2009 +0200
6378
6379     include/image.h: Ease grepping of image_* functions
6380
6381     Because the functions have been defined using macros, grepping for
6382     their definitions is not possible. This patch adds the real function
6383     names in comments.
6384
6385     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
6386     Acked-by: Mike Frysinger <vapier@gentoo.org>
6387
6388 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
6389 Author: Mike Frysinger <vapier@gentoo.org>
6390 Date:   Wed Jan 28 19:08:14 2009 -0500
6391
6392     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
6393
6394     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
6395     rather than a generic "env" command, or anything else related to the
6396     environment.  So, let's make sure the define is named accordingly.
6397
6398     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6399
6400 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
6401 Author: Valeriy Glushkov <gvv@lstec.com>
6402 Date:   Fri Jan 23 20:02:17 2009 +0200
6403
6404     disable imls command if no flash is defined
6405
6406     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
6407
6408     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
6409
6410 commit 923aa48126259c13de95131203f1d28bfa5cb889
6411 Author: Rafal Jaworowski <raj@semihalf.com>
6412 Date:   Fri Jan 23 13:27:18 2009 +0100
6413
6414     API: Improve glue mid-layer of the API demo application.
6415
6416     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
6417     read, which allows for better control and error handling (this introduces
6418     additional error code API_ESYSC returned by the glue mid-layer).
6419
6420     - Clean up definitions naming and usage.
6421
6422     - Other minor cosmetics.
6423
6424     Note these changes do not touch the API proper, so the interface between
6425     U-Boot and standalone applications remains unchanged.
6426
6427     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
6428
6429 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
6430 Author: Rafal Jaworowski <raj@semihalf.com>
6431 Date:   Fri Jan 23 13:27:17 2009 +0100
6432
6433     API: Only output test data when reading was successful.
6434
6435     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6436
6437 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
6438 Author: Rafal Jaworowski <raj@semihalf.com>
6439 Date:   Fri Jan 23 13:27:16 2009 +0100
6440
6441     API: Provide syscall entry point for the ARM architecture.
6442
6443     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6444     Acked-by: Rafal Jaworowski <raj@semihalf.com>
6445
6446 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
6447 Author: Rafal Jaworowski <raj@semihalf.com>
6448 Date:   Fri Jan 23 13:27:15 2009 +0100
6449
6450     API: Use stack pointer as API signature search hint in the glue layer.
6451
6452     De-hardcode range in RAM we search for the API signature. Instead use the stack
6453     pointer as a hint to narrow down the range in which the signature could reside
6454     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
6455     from stack area). Adjust PowerPC code in API demo to the new scheme.
6456
6457     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6458     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
6459
6460 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
6461 Author: Wolfgang Denk <wd@denx.de>
6462 Date:   Tue Feb 17 10:26:38 2009 +0100
6463
6464     TQM8260: fix locations of kernel and ramdisk images in flash
6465
6466     After introducing redundant environment the kernel images was
6467     overlapping with environment.
6468
6469     Signed-off-by: Wolfgang Denk <wd@denx.de>
6470
6471 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
6472 Author: Heiko Schocher <hs@denx.de>
6473 Date:   Wed Feb 11 19:26:15 2009 +0100
6474
6475     83xx: add missing TIMING_CFG1_CASLAT_* defines
6476
6477     Signed-off-by: Heiko Schocher <hs@denx.de>
6478     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6479
6480 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
6481 Author: Valeriy Glushkov <gvv@lstec.com>
6482 Date:   Thu Feb 5 14:35:21 2009 +0200
6483
6484     mpc8349itx: allow SATA boot from the onboard SIL1334
6485
6486     This patch allows using of SATA devices connected
6487     to the onboard PCI SIL1334 SATA controller.
6488
6489     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
6490     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6491
6492 commit e1ac387f4645499746856adc1aeaa9787da2eca6
6493 Author: Andy Fleming <afleming@freescale.com>
6494 Date:   Thu Oct 30 16:50:14 2008 -0500
6495
6496     83xx: Add eSDHC support on 8379 EMDS board
6497
6498     Signed-off-by: Andy Fleming <afleming@freescale.com>
6499
6500 commit 80522dc8369a89938369fbcee572e662373bc9a3
6501 Author: Andy Fleming <afleming@freescale.com>
6502 Date:   Thu Oct 30 16:51:33 2008 -0500
6503
6504     85xx: Add eSDHC support for 8536 DS
6505
6506     Signed-off-by: Andy Fleming <afleming@freescale.com>
6507
6508 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
6509 Author: Andy Fleming <afleming@freescale.com>
6510 Date:   Thu Oct 30 16:47:16 2008 -0500
6511
6512     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
6513
6514     This uses the new MMC framework
6515
6516     Some contributions by Dave Liu <daveliu@freescale.com>
6517
6518     Signed-off-by: Andy Fleming <afleming@freescale.com>
6519
6520 commit 272cc70b211e945e4413122aa73868f6ada732a5
6521 Author: Andy Fleming <afleming@freescale.com>
6522 Date:   Thu Oct 30 16:41:01 2008 -0500
6523
6524     Add MMC Framework
6525
6526     Here's a new framework (based roughly off the linux one) for managing
6527     MMC controllers.  It handles all of the standard SD/MMC transactions,
6528     leaving the host drivers to implement only what is necessary to
6529     deal with their specific hardware.
6530
6531     This also hooks the infrastructure into the PowerPC board code
6532     (similar to how the ethernet infrastructure now hooks in)
6533
6534     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
6535
6536     Signed-off-by: Andy Fleming <afleming@freescale.com>
6537
6538 commit 1de97f9856f697380cc504126ab92561ed238803
6539 Author: Andy Fleming <afleming@freescale.com>
6540 Date:   Thu Oct 30 16:31:39 2008 -0500
6541
6542     Eliminated arch-specific mmc header requirement
6543
6544     The current MMC infrastructure relies on the existence of an
6545     arch-specific header file.  This isn't necessary, and a couple
6546     drivers were forced to implement dummy files to meet this requirement.
6547     Instead, we move the stuff in those header files into a more appropriate
6548     place, and eliminate the stubs and the #include of asm/arch/mmc.h
6549
6550     Signed-off-by: Andy Fleming <afleming@freescale.com>
6551
6552 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
6553 Author: Andy Fleming <afleming@freescale.com>
6554 Date:   Thu Oct 30 16:21:00 2008 -0500
6555
6556     Convert mmc_init to mmc_legacy_init
6557
6558     This is to get it out of the way of incoming MMC framework
6559
6560     Signed-off-by: Andy Fleming <afleming@freescale.com>
6561
6562 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
6563 Author: Andy Fleming <afleming@freescale.com>
6564 Date:   Thu Oct 30 16:19:25 2008 -0500
6565
6566     Eliminate support for using MMC as memory
6567
6568     MMC cards are not memory, so we stop treating them that way.
6569
6570     Signed-off-by: Andy Fleming <afleming@freescale.com>
6571
6572 commit e1be0d25ecf494ae81245ca438738ba839d6329b
6573 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
6574 Date:   Sun Jan 4 08:46:38 2009 +0530
6575
6576     32bit BUg fix for DDR2 on 8572
6577
6578     This errata fix is required for 32 bit DDR2 controller on 8572.
6579     May  also be required for P10XX20XX platforms
6580
6581     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
6582
6583 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
6584 Author: Andy Fleming <afleming@freescale.com>
6585 Date:   Mon Feb 16 09:40:20 2009 -0600
6586
6587     TQM85xx: Fix a couple warnings in TQM8548 build
6588
6589     The ecm variable in sdram.c was being declared for all 8548, but only
6590     used by specific 8548 boards, so we make that variable require those
6591     specific boards, too
6592
6593     The nand code was using an index "i" into a table, and then re-using "i"
6594     to set addresses for each upm.  However, then it relied on the old value
6595     of i still being there to enable things.  Changed the second "i" to "j"
6596
6597     Signed-off-by: Andy Fleming <afleming@freescale.com>
6598
6599 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
6600 Author: Wolfgang Grandegger <wg@grandegger.com>
6601 Date:   Wed Feb 11 18:38:26 2009 +0100
6602
6603     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
6604
6605     This patch adds the workaround for erratum DDR20 according to MPC8548
6606     Device Errata document, Rev. 1: "CKE signal may not function correctly
6607     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
6608     processor version 2.1 and the work-around must be removed.
6609
6610     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6611
6612 commit 080408fdc71706adcb883d22125637c54f6010b1
6613 Author: Wolfgang Grandegger <wg@grandegger.com>
6614 Date:   Wed Feb 11 18:38:25 2009 +0100
6615
6616     MPC85xx: TQM8548: use cache for AG and BE variants
6617
6618     This patch makes accesses to the system memory cachable by removing the
6619     caching-inhibited and guarded flags from the relevant TLB entries for
6620     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
6621     are configured similarly.
6622
6623     This results in a big averall performace improvement. TFTP downloads,
6624     NAND Flash accesses, kernel boots, etc. are much faster.
6625
6626     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6627
6628 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
6629 Author: Wolfgang Grandegger <wg@grandegger.com>
6630 Date:   Wed Feb 11 18:38:24 2009 +0100
6631
6632     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
6633
6634     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
6635     module.
6636
6637     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
6638     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6639
6640 commit 88b0e88d186479349e5a2b771e82775109e10fb4
6641 Author: Wolfgang Grandegger <wg@grandegger.com>
6642 Date:   Wed Feb 11 18:38:23 2009 +0100
6643
6644     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
6645
6646     According to new TQM8548 timing specification:
6647     Refresh Recovery: 34 -> 53 clocks
6648     CKE pulse width:  1 -> 3 cycles
6649     Window for four activities: 13 -> 14 cycles
6650
6651     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
6652     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6653
6654 commit a865bcdac89278cac4dfc07dec8299403110499d
6655 Author: Wolfgang Grandegger <wg@grandegger.com>
6656 Date:   Wed Feb 11 18:38:22 2009 +0100
6657
6658     MPC85xx: TQM8548: add support for the TQM8548_AG module
6659
6660     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
6661     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
6662     with "$ make TQM8548_AG_config".
6663
6664     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6665
6666 commit ad7ee5d43b0db94079d56521dabca25674f28747
6667 Author: Wolfgang Grandegger <wg@grandegger.com>
6668 Date:   Wed Feb 11 18:38:21 2009 +0100
6669
6670     MPC85xx: TQM8548: add support for the TQM8548_BE module
6671
6672     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
6673     interface. With NAND support, the image is significantly larger and
6674     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
6675     module with "$ make TQM8548_BE_config".
6676
6677     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6678
6679 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
6680 Author: Wolfgang Grandegger <wg@grandegger.com>
6681 Date:   Wed Feb 11 18:38:20 2009 +0100
6682
6683     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
6684
6685     The TQM8548_AG module does not have the standard PCI/PCI-X interface
6686     connected but just the PCI Express interface . So far it was not
6687     possible to disable it without disabling the complete PCI interface
6688     (CONFIG_PCI) including PCI Express.
6689
6690     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6691
6692 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
6693 Author: Wolfgang Grandegger <wg@grandegger.com>
6694 Date:   Wed Feb 11 18:38:19 2009 +0100
6695
6696     MPC85xx: TQM85xx: fix flash protection for boot loader
6697
6698     As the reset vector is located at 0xfffffffc, all flash sectors from the
6699     beginning of the U-Boot binary to 0xffffffff must be protected. On the
6700     TQM8548-AG having small sectors at the end of the flash it happened that
6701     the last two sector were not protected and an "erase all" left an
6702     un-bootable system behind:
6703
6704     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
6705       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
6706       Erase timeout: 8192 ms, write timeout: 1 ms
6707
6708       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
6709       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
6710
6711     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
6712     board BSPs as well.
6713
6714     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
6715
6716 commit a1c8a719262151f97119e76166043ee3da3f97b2
6717 Author: Peter Tyser <ptyser@xes-inc.com>
6718 Date:   Fri Feb 6 14:30:40 2009 -0600
6719
6720     86xx: Update CPU info output on bootup
6721
6722     - Update style of 86xx CPU information on boot to more closely
6723       match 85xx boards
6724     - Fix detection of 8641/8641D
6725     - Use strmhz() to display frequencies
6726     - Display L1 information
6727     - Display L2 cache size
6728     - Fixed CPU/SVR version output
6729
6730     == Before ==
6731     Freescale PowerPC
6732     CPU:
6733         Core: E600 Core 0, Version: 0.2, (0x80040202)
6734         System: Unknown, Version: 2.1, (0x80900121)
6735         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
6736         L2: Enabled
6737     Board: X-ES XPedite5170 3U VPX SBC
6738
6739     == After ==
6740     CPU:   8641D, Version: 2.1, (0x80900121)
6741     Core:  E600 Core 0, Version: 2.2, (0x80040202)
6742     Clock Configuration:
6743            CPU:1066.667 MHz, MPX:533.333 MHz
6744            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
6745     L1:    D-cache 32 KB enabled
6746            I-cache 32 KB enabled
6747     L2:    512 KB enabled
6748     Board: X-ES XPedite5170 3U VPX SBC
6749
6750     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6751
6752 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
6753 Author: Peter Tyser <ptyser@xes-inc.com>
6754 Date:   Thu Feb 5 11:25:24 2009 -0600
6755
6756     86xx: Update Global Utilities structure
6757
6758     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6759
6760 commit 4ef630df773e45806d701bf5d25c328778bb4cde
6761 Author: Peter Tyser <ptyser@xes-inc.com>
6762 Date:   Thu Feb 5 11:25:25 2009 -0600
6763
6764     86xx: Reset update
6765
6766     Update the 86xx reset sequence to try executing a board-specific reset
6767     function.  If the board-specific reset is not implemented or does not
6768     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
6769     reset procedure than the previous method and allows all board
6770     peripherals to be reset if needed.
6771
6772     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6773
6774 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
6775 Author: Kumar Gala <galak@kernel.crashing.org>
6776 Date:   Tue Feb 10 23:53:40 2009 -0600
6777
6778     fsl-ddr: Allow system to boot if we have more than 4G of memory
6779
6780     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
6781     an error and hang.  Instead of doing that since DDR is mapped in the
6782     lowest priority LAWs we setup the DDR controller and the max amount
6783     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
6784
6785     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6786     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
6787
6788 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
6789 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6790 Date:   Wed Jan 21 17:17:33 2009 -0600
6791
6792     mpc85xx: Add support for the P2020
6793
6794     Added various p2020 processor specific details:
6795     * SVR for p2020, p2020E
6796     * immap updates for LAWs and DDR on p2020
6797     * LAW defines related to p2020
6798
6799     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6800     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
6801     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6802
6803 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
6804 Author: Kumar Gala <galak@kernel.crashing.org>
6805 Date:   Tue Feb 10 17:36:15 2009 -0600
6806
6807     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
6808
6809     Added some info that is printed out when we boot to distiquish if we
6810     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
6811     different address maps.
6812
6813     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6814
6815 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
6816 Author: Andy Fleming <afleming@freescale.com>
6817 Date:   Fri Dec 5 20:10:22 2008 -0600
6818
6819     Fixup SGMII PHY ids in the device tree
6820
6821     The device tree's PHY addresses need to be fixed up if we're using the
6822     SGMII Riser Card.
6823
6824     The 8572, 8536, and 8544 DS boards were modified to call this function.
6825
6826     Code idea taken from Liu Yu <yu.liu@freescale.com>
6827
6828     Signed-off-by: Andy Fleming <afleming@freescale.com>
6829
6830 commit 5dc0cf68f8f101042997d75188081d8526d705ea
6831 Author: Andy Fleming <afleming@freescale.com>
6832 Date:   Wed Feb 11 15:10:31 2009 -0600
6833
6834     Make some minor whitespace changes to eliminate line-wrapping
6835
6836     Signed-off-by: Andy Fleming <afleming@freescale.com>
6837
6838 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
6839 Author: Andy Fleming <afleming@freescale.com>
6840 Date:   Wed Feb 11 15:07:24 2009 -0600
6841
6842     Add eth_get_dev_by_index
6843
6844     This allows code to iterate through the ethernet devices
6845
6846     Signed-off-by: Andy Fleming <afleming@freescale.com>
6847
6848 commit b67305120aaf268a6140125346678166d14f1f47
6849 Author: Kumar Gala <galak@kernel.crashing.org>
6850 Date:   Mon Feb 9 22:03:04 2009 -0600
6851
6852     85xx: Fix bug in device tree setup in 36-bit physical confg
6853
6854     In the 36-bit physical config for MPC8572DS when need the start address
6855     of memory and it size to be kept in phys_*_t instead of a ulong since
6856     we support >4G of memory in the config and ulong cant represent that.
6857     Otherwise we end up seeing the memory node in the device tree reporting
6858     back we have memory starting @ 0 and of size 0.
6859
6860     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6861
6862 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
6863 Author: Kumar Gala <galak@kernel.crashing.org>
6864 Date:   Mon Feb 9 22:03:05 2009 -0600
6865
6866     85xx: Fix address map for 36-bit config of MPC8572DS
6867
6868     When we introduced the 36-bit config of the MPC8572DS board we had the
6869     wrong PCI MEM bus address map.  Additionally, the change to the address
6870     map exposes a small issue in our dummy read on the ULI bus.  We need
6871     to use the new mapping functions to handle that read properly in the
6872     36-bit config.
6873
6874     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6875
6876 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
6877 Author: Kumar Gala <galak@kernel.crashing.org>
6878 Date:   Fri Feb 6 09:56:35 2009 -0600
6879
6880     85xx: Fix how we map DDR memory
6881
6882     Previously we only allowed power-of-two memory sizes and didnt
6883     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
6884     and should properly handle any size that we can make in the TLBs
6885     we have available to us
6886
6887     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6888
6889 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
6890 Author: Kumar Gala <galak@kernel.crashing.org>
6891 Date:   Fri Feb 6 09:56:34 2009 -0600
6892
6893     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
6894
6895     If we only have one controller we can completely ignore how
6896     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
6897     and think we have twice as much memory.
6898
6899     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6900
6901 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
6902 Author: Kumar Gala <galak@kernel.crashing.org>
6903 Date:   Wed Feb 4 09:35:57 2009 -0600
6904
6905     85xx: Format cpu freq printing to handle 8 cores
6906
6907     Only print 4 cpu freq per line.  This way when we have 8 cores its a
6908     bit more readable.
6909
6910     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6911
6912 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
6913 Author: Abraham, Thomas <t-abraham@ti.com>
6914 Date:   Tue Oct 28 16:51:31 2008 +0530
6915
6916     USB: Remove LUN number from CDB
6917
6918     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.
6919
6920     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
6921     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6922
6923 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
6924 Author: Atin Malaviya <atin.malaviya@gmail.com>
6925 Date:   Tue Feb 3 15:17:10 2009 -0500
6926
6927     Added usbtty_configured() check. Fixed attribute(packed) warnings.
6928
6929     V3: Fixed line-wrap problem due to user error in mail!
6930
6931     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
6932     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
6933     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
6934
6935     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
6936     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6937
6938 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
6939 Author: Guennadi Liakhovetski <lg@denx.de>
6940 Date:   Fri Feb 13 09:23:36 2009 +0100
6941
6942     i.MX31: Start the I2C clock on driver initialisation
6943
6944     i.MX31 powers on with most clocks running, so, after a power on this explicit
6945     clock start up is not required. However, as Linux boots it disables most clocks
6946     to save power. This includes the I2C clock. If we then soft reboot from Linux
6947     the I2C clock stays off. This breaks the phycore, which has its environment in
6948     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
6949     initialisation routine.
6950
6951     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6952     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6953
6954 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
6955 Author: Mike Frysinger <vapier@gentoo.org>
6956 Date:   Wed Feb 11 20:36:14 2009 -0500
6957
6958     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
6959
6960     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
6961     common code are no longer needed.
6962
6963     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6964
6965 commit c2d9befa0b4695b89476fb5d259742c09afe243f
6966 Author: Heiko Schocher <hs@denx.de>
6967 Date:   Thu Feb 12 08:08:54 2009 +0100
6968
6969     82xx, mgcoge: fix compile error
6970
6971     With actual u-boot compiling the mgcoge port fails, because
6972     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
6973     necessary to define CONFIG_NET_MULTI.
6974
6975     Seems to me the mgcoge port is the only actual existing 8260
6976     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
6977     to be fixed.
6978
6979     Signed-off-by: Heiko Schocher <hs@denx.de>
6980
6981 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
6982 Author: Dirk Eibach <eibach@gdsys.de>
6983 Date:   Mon Feb 9 08:18:34 2009 +0100
6984
6985     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
6986
6987     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
6988     Signed-off-by: Stefan Roese <sr@denx.de>
6989
6990 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
6991 Author: Carolyn Smith <carolyn.smith@tektronix.com>
6992 Date:   Thu Feb 12 06:13:44 2009 +0100
6993
6994     ppc4xx: Fix initialization of the SDRAM_CODT register
6995
6996     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
6997     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
6998     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
6999
7000     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
7001     Signed-off-by: Stefan Roese <sr@denx.de>
7002
7003 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
7004 Author: Stefan Roese <sr@denx.de>
7005 Date:   Wed Feb 11 09:29:33 2009 +0100
7006
7007     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
7008
7009     Some AMCC eval boards do have a board_eth_init() function calling
7010     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
7011     with the new eth_init rework.
7012
7013     Signed-off-by: Stefan Roese <sr@denx.de>
7014
7015 commit c645012aefebb301e6907d148c6c8efacac049d4
7016 Author: Adam Graham <agraham@amcc.com>
7017 Date:   Mon Feb 9 13:18:12 2009 -0800
7018
7019     ppc4xx: Autocalibration can set RDCC to over aggressive value.
7020
7021     The criteria of the AMCC SDRAM Controller DDR autocalibration
7022     U-Boot code is to pick the largest passing write/read/compare
7023     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
7024     Cycle Select value.
7025
7026     On some Kilauea boards the DDR autocalibration algorithm can
7027     find a large passing write/read/compare window with a small
7028     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
7029     value "T1 Sample".
7030
7031     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
7032     "T1 Sample" proves to be to aggressive when later on U-Boot
7033     relocates into DDR memory and executes.
7034
7035     The memory traces on the Kilauea board are short so on some
7036     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
7037     value of "T1 Sample" shows up as a potentially valid value for
7038     the DDR autocalibratiion algorithm.
7039
7040     The fix is to define a weak default function which provides
7041     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
7042     to accept for DDR autocalibration.  The default will be the
7043     "T2 Sample" value.  A board developer who has a well defined
7044     board and chooses to be more aggressive can always provide
7045     their own board specific string function with the more
7046     aggressive "T1 Sample" value or stick with the default
7047     minimum SDRAM_RDCC.[RDSS] value of "T2".
7048
7049     Also put in a autocalibration loop fix for case where current
7050     write/read/compare passing window size is the same as a prior
7051     window size, then in this case choose the write/read/compare
7052     result that has the associated smallest RDCC T-Sample value.
7053
7054     Signed-off-by: Adam Graham <agraham@amcc.com>
7055     Signed-off-by: Stefan Roese <sr@denx.de>
7056
7057 commit 2ede879fcb67470524847bb4fc8972651bb46184
7058 Author: Stefan Roese <sr@denx.de>
7059 Date:   Wed Feb 11 09:37:12 2009 +0100
7060
7061     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
7062
7063     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
7064     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
7065
7066     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
7067     boards right now.
7068
7069     Signed-off-by: Stefan Roese <sr@denx.de>
7070
7071 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
7072 Author: Wolfgang Denk <wd@denx.de>
7073 Date:   Thu Feb 12 00:08:39 2009 +0100
7074
7075     Coding style cleanup; update CHANGELOG
7076
7077     Signed-off-by: Wolfgang Denk <wd@denx.de>
7078
7079 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
7080 Author: Peter Tyser <ptyser@xes-inc.com>
7081 Date:   Fri Jan 30 16:36:40 2009 -0600
7082
7083     Add feature-removal-schedule.txt
7084
7085     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7086
7087 commit 255d28e1642e8fc32a6753226be1a96b481ce111
7088 Author: Heiko Schocher <hs@denx.de>
7089 Date:   Tue Feb 10 09:32:38 2009 +0100
7090
7091     8xx serial, smc: Coding-Style cleanup serial SMC driver
7092
7093     Signed-off-by: Heiko Schocher <hs@denx.de>
7094
7095 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
7096 Author: Heiko Schocher <hs@denx.de>
7097 Date:   Tue Feb 10 09:31:47 2009 +0100
7098
7099     8xx serial, smc: add configurable SMC Rx buffer len
7100
7101     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
7102     With this option it is possible to allow the receive
7103     buffer for the SMC on 8xx to be greater then 1. In case
7104     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
7105     old version.
7106
7107     When defining CONFIG_SYS_SMC_RXBUFLEN also
7108     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
7109     idle timeout for the SMC.
7110
7111     Signed-off-by: Heiko Schocher <hs@denx.de>
7112
7113 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
7114 Author: Mike Frysinger <vapier@gentoo.org>
7115 Date:   Thu Feb 5 21:04:36 2009 -0500
7116
7117     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
7118
7119     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
7120     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
7121     code in the process.
7122
7123     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7124
7125 commit ab76e9848a1f4db64d14233741d739a3b3360c93
7126 Author: Mike Frysinger <vapier@gentoo.org>
7127 Date:   Thu Feb 5 21:04:50 2009 -0500
7128
7129     bzip2: move ifdef handling to Makefile COBJS-$(...)
7130
7131     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7132
7133 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
7134 Author: Jerry Van Baren <gvb.uboot@gmail.com>
7135 Date:   Thu Feb 5 22:18:02 2009 -0500
7136
7137     Fix whitespace damage: double space changed to a tab
7138
7139     At some point an intentional double space at the end of the sentence
7140     got changed into a tab in the GPL header line:
7141      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7142
7143     This patch fixes the damage.
7144
7145     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
7146
7147 commit 4f975678de995b55749d5e84590c268972a7c835
7148 Author: Heiko Schocher <hs@denx.de>
7149 Date:   Tue Feb 10 09:53:29 2009 +0100
7150
7151     cfi: make flash_get_info() non static
7152
7153     If on your board is more than one flash, you must know
7154     the size of every single flash, for example, for updating
7155     the DTS before booting Linux. So make this function
7156     flash_get_info() extern, and you can have all info
7157     about your flashes.
7158
7159     Signed-off-by: Heiko Schocher <hs@denx.de>
7160     Signed-off-by: Stefan Roese <sr@denx.de>
7161
7162 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
7163 Author: Ben Warren <biggerbadderben@gmail.com>
7164 Date:   Thu Feb 5 23:58:25 2009 -0800
7165
7166     net: removed board-specific CONFIGs from MPC5xxx FEC driver
7167
7168     Added new CONFIG options for the three type of MAC-PHY interconnect and
7169     applied them all relevant board config files
7170
7171     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7172
7173 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
7174 Author: Mike Frysinger <vapier@gentoo.org>
7175 Date:   Thu Feb 5 21:04:47 2009 -0500
7176
7177     net/sntp.c: move ifdef into Makefile COBJS-$(...)
7178
7179     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7180     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7181
7182 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
7183 Author: Andy Fleming <afleming@freescale.com>
7184 Date:   Tue Feb 3 18:26:41 2009 -0600
7185
7186     tsec: Fix a bug in soft-resetting
7187
7188     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
7189     clock cycles, so it's been mostly working.  But we had no guarantee, and at
7190     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
7191     enforces a 2 microsecond gap between assertion and deassertion.
7192
7193     Signed-off-by: Andy Fleming <afleming@freescale.com>
7194     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7195
7196 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
7197 Author: Simon Munton <simon@nidoran.m5data.com>
7198 Date:   Mon Feb 2 09:44:08 2009 +0000
7199
7200     Fix 100Mbs ethernet operation on sh7763 based boards
7201
7202     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
7203     used in the GECMR register. Following diff fixes the problem
7204
7205     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
7206     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7207
7208 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
7209 Author: ksi@koi8.net <ksi@koi8.net>
7210 Date:   Fri Feb 6 16:27:55 2009 -0800
7211
7212     Fix MPC8260 with ethernet on SCC
7213
7214     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
7215     typo or something...
7216
7217     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
7218     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7219
7220 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
7221 Author: Heiko Schocher <hs@denx.de>
7222 Date:   Fri Jan 30 12:56:15 2009 +0100
7223
7224     82xx serial, smc: Coding-Style cleanup serial SMC driver
7225
7226     Signed-off-by: Heiko Schocher <hs@denx.de>
7227
7228 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
7229 Author: Heiko Schocher <hs@denx.de>
7230 Date:   Fri Jan 30 12:55:38 2009 +0100
7231
7232     82xx serial, smc: add configurable SMC Rx buffer len
7233
7234     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
7235     With this option it is possible to allow the receive
7236     buffer for the SMC on 82xx to be greater then 1. In case
7237     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
7238     old version.
7239
7240     When defining CONFIG_SYS_SMC_RXBUFLEN also
7241     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
7242     idle timeout for the SMC.
7243
7244     Signed-off-by: Heiko Schocher <hs@denx.de>
7245
7246 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
7247 Author: Kumar Gala <galak@kernel.crashing.org>
7248 Date:   Fri Feb 6 08:08:06 2009 -0600
7249
7250     ppc: Fix roll over bug in flush_cache()
7251
7252     If we call flush_cache(0xfffff000, 0x1000) it would never
7253     terminate the loop since end = 0xffffffff and we'd roll over
7254     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
7255
7256     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7257
7258 commit 87c9063963561d3d01064be34d0c30855a56587b
7259 Author: Kumar Gala <galak@kernel.crashing.org>
7260 Date:   Thu Feb 5 20:40:58 2009 -0600
7261
7262     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
7263
7264     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
7265     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
7266
7267     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7268     Acked-by: Stefan Roese <sr@denx.de>
7269
7270 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
7271 Author: Kumar Gala <galak@kernel.crashing.org>
7272 Date:   Thu Feb 5 20:40:57 2009 -0600
7273
7274     Add an architecture specific config.h for common defines
7275
7276     We have common defines that we duplicate in various ways.  Having an
7277     arch specific config.h gives us a common location for those defines.
7278
7279     Eventually we should be able to replace this when we have proper
7280     Kconfig support.
7281
7282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7283
7284 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
7285 Author: Becky Bruce <beckyb@kernel.crashing.org>
7286 Date:   Tue Feb 3 18:10:56 2009 -0600
7287
7288     mpc8641hpcn: Change PCI MEM pci bus address
7289
7290     Now that the rest of u-boot can support it, change the PCI bus
7291     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
7292     and use the same bus address for both PCI1 and PCI2.  This will
7293     maximize the amount of PCI address space left over to map RAM
7294     on systems with large amounts of memory.
7295
7296     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7297
7298 commit 1785dbeed43599eed1d8875673c96912cd770141
7299 Author: Becky Bruce <beckyb@kernel.crashing.org>
7300 Date:   Tue Feb 3 18:10:55 2009 -0600
7301
7302     drivers/block/ahci: Fix pci mapping bug
7303
7304     The code assumes that the pci bus address and the virtual
7305     address used to access a region are the same, but they might
7306     not be.  Fix this assumption.
7307
7308     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7309
7310 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
7311 Author: Becky Bruce <beckyb@kernel.crashing.org>
7312 Date:   Tue Feb 3 18:10:54 2009 -0600
7313
7314     MPC8641HPCN: Enable CONFIG_ADDR_MAP
7315
7316     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7317
7318 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
7319 Author: Becky Bruce <beckyb@kernel.crashing.org>
7320 Date:   Tue Feb 3 18:10:53 2009 -0600
7321
7322     mpc8641hpcn: Clean up PCI mapping concepts
7323
7324     Clean up PCI mapping concepts in the 8641 config - rename _BASE
7325     to _BUS, as it's actually a PCI bus address, separate virtual
7326     and physical addresses into _VIRT and _PHYS, and use each
7327     appopriately.
7328
7329     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7330
7331 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
7332 Author: Becky Bruce <beckyb@kernel.crashing.org>
7333 Date:   Tue Feb 3 18:10:52 2009 -0600
7334
7335     mpc86xx: Add support to populate addr map based on BATs
7336
7337     If CONFIG_ADDR_MAP is enabled, update the address map
7338     whenever we write a bat.
7339
7340     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7341
7342 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
7343 Author: Becky Bruce <beckyb@kernel.crashing.org>
7344 Date:   Tue Feb 3 18:10:51 2009 -0600
7345
7346     powerpc: Move duplicated BAT defines to mmu.h
7347
7348     The BAT fields are architected; there's no need for these to be in
7349     cpu-specific files.  Drop the duplication and move these to
7350     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
7351     used by the alaska board, and switch to using the BATU_BL_xxx defines
7352     used by all the other boards.  The BL_ defines previously in use
7353     had to be shifted into the proper position for use, which was inefficient.
7354
7355     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7356
7357 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
7358 Author: Becky Bruce <beckyb@kernel.crashing.org>
7359 Date:   Tue Feb 3 18:10:50 2009 -0600
7360
7361     drivers/pci: Create pci_map_bar function
7362
7363     It is no longer always true that the pci bus address can be
7364     used as the virtual address for pci accesses.  pci_map_bar()
7365     is created to return the virtual address for a pci region.
7366
7367     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7368
7369 commit 2ecca3401775b125c3b9ff65766befb23989414b
7370 Author: Becky Bruce <beckyb@kernel.crashing.org>
7371 Date:   Tue Feb 3 18:10:49 2009 -0600
7372
7373     mpc8641hpcn: Set up outbound pci windows before inbound
7374
7375     Because the inbound pci windows are mapped generously, set up
7376     the more specific outbound windows first.  This way, when we
7377     search the pci regions for something, we will hit on the more
7378     specific region.  This can actually be a problem on systems
7379     with large amounts of RAM.
7380
7381     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7382
7383 commit b81b773ead0687114dc8a800f99ea6e504447739
7384 Author: Becky Bruce <beckyb@kernel.crashing.org>
7385 Date:   Mon Feb 2 16:34:52 2009 -0600
7386
7387     mpc8641hpcn: Use physical address in flash banks defintion
7388
7389     If the VA and PA of the flash aren't the same, the banks list
7390     should be initialized to hold the physical address.  Correct this.
7391
7392     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7393
7394 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
7395 Author: Ilya Yanok <yanok@emcraft.com>
7396 Date:   Tue Feb 10 00:22:31 2009 +0100
7397
7398     qong: support for Dave/DENX QongEVB-LITE board
7399
7400     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
7401
7402     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7403     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7404
7405 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
7406 Author: Ilya Yanok <yanok@emcraft.com>
7407 Date:   Mon Feb 9 18:45:28 2009 +0100
7408
7409     dnet: driver for Dave DNET ethernet controller
7410
7411     Driver for Dave DNET ethernet controller (used on Dave/DENX
7412     QongEVB-LITE board).
7413
7414     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7415     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7416
7417 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
7418 Author: Kumar Gala <galak@kernel.crashing.org>
7419 Date:   Fri Feb 6 09:49:32 2009 -0600
7420
7421     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
7422
7423     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
7424     we should give preference to memory regions that aren't system memory.
7425
7426     Its possible that we have over mapped system memory in the regions and
7427     we want to avoid depending on the order of the regions.
7428
7429     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7430
7431 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
7432 Author: Kumar Gala <galak@kernel.crashing.org>
7433 Date:   Fri Feb 6 09:49:31 2009 -0600
7434
7435     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
7436
7437     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
7438     can be confusing when reading the code.
7439
7440     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
7441     for system memory mapping purposes.
7442
7443     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7444
7445 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
7446 Author: Ilya Yanok <yanok@emcraft.com>
7447 Date:   Sun Feb 8 00:59:43 2009 +0300
7448
7449     mx31: add GPIO registers definitions
7450
7451     Added definitions for i.MX31 processor GPIO registers.
7452
7453     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7454
7455 commit 8da601280a8acbc3385784780ed35130e53812f1
7456 Author: Peter Tyser <ptyser@xes-inc.com>
7457 Date:   Wed Feb 4 13:47:22 2009 -0600
7458
7459     NAND: Add timeout for reset command
7460
7461     Without the timeout present an infinite loop can occur if the
7462     NAND device is broken or not present.
7463
7464     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7465     Signed-off-by: Scott Wood <scottwood@freescale.com>
7466
7467 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
7468 Author: Peter Tyser <ptyser@xes-inc.com>
7469 Date:   Wed Feb 4 13:39:40 2009 -0600
7470
7471     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
7472
7473     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
7474     for disabling the "No NAND device found!!!" warning when
7475     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
7476     for silencing the warning.
7477
7478     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7479     Signed-off-by: Scott Wood <scottwood@freescale.com>
7480
7481 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
7482 Author: Valeriy Glushkov <gvv@lstec.com>
7483 Date:   Mon Jan 19 16:32:59 2009 +0200
7484
7485     NAND: Fixed invalid pointers to static relocated chip names
7486
7487     Dear Wolfgang,
7488
7489     You are right, the patch was ugly.
7490     The new one seems to be better.
7491
7492     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
7493     Signed-off-by: Scott Wood <scottwood@freescale.com>
7494
7495 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
7496 Author: Nishanth Menon <nm@ti.com>
7497 Date:   Mon Feb 2 18:20:12 2009 -0600
7498
7499     ARM:OMAP3:Zoom1: Add nand unlock option
7500
7501     Enable NAND_UNLOCK option for unlocking nand for
7502     erase/write operations
7503
7504     Signed-off-by: Nishanth Menon <nm@ti.com>
7505
7506 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
7507 Author: derek@siconix.com <derek@siconix.com>
7508 Date:   Mon Jan 26 14:08:17 2009 -0700
7509
7510     env_nand: fix env memory release
7511
7512     This fixes a bug that tmp environment memory not being released.
7513
7514     Signed-off-by: Derek Ou <dou@siconix.com>
7515     Signed-off-by: Scott Wood <scottwood@freescale.com>
7516
7517 commit 05fd88776419df59e7f37bac063a209409dd801d
7518 Author: Guennadi Liakhovetski <lg@denx.de>
7519 Date:   Fri Feb 6 10:37:45 2009 +0100
7520
7521     ARM: remove unused variable
7522
7523     The "size" variable in start_armboot() in lib_arm/board.c is only really
7524     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
7525     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
7526
7527     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
7528
7529 commit 6989e4f546d960a407dd5425f800dff9751c8132
7530 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7531 Date:   Thu Feb 5 09:33:50 2009 -0500
7532
7533     Coldfire: M527x: Add missing GPIO register address defines
7534
7535     Add missing GPIO registers address definition for Coldfire M5271.
7536
7537     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7538
7539 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
7540 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7541 Date:   Fri Jan 23 14:42:58 2009 -0500
7542
7543     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
7544
7545     Modified mii_init to support boards with PHYs that are not set to
7546     autonegotiate, but still want to use u-boot's mii commands to probe
7547     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
7548
7549     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7550
7551 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
7552 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7553 Date:   Fri Jan 23 11:44:30 2009 -0500
7554
7555     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
7556
7557     Applied the patch for baudrate divider value truncation for
7558     serial_init to serial_setbrg as well.
7559
7560     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7561
7562 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
7563 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7564 Date:   Fri Jan 23 14:07:05 2009 -0500
7565
7566     Coldfire: M5271EVB: Board header update (dependencies)
7567
7568     Cleanup for M5271EVB:
7569     Added clarification on the use of CONFIG_SYS_CLOCK.
7570     Modified to use u-boot's HUSH parser.
7571     Cleanup on environment settings.
7572     Removed compiler warning by defining CONFIG_SYS_CS0_*
7573
7574     Dependencies:
7575     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
7576     This depends on a patch to include/asm-m68k/m5271.h
7577     that defines the multiplier and divider ratios.
7578
7579     Removed the definition of CONFIG_SYS_FECI2C.
7580     This depends on a patch that removes the use of it in
7581     cpu/mcf52x2/cpu_init.c
7582
7583     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7584
7585 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
7586 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7587 Date:   Thu Jan 29 14:36:06 2009 -0500
7588
7589     Coldfire: M5271: Allow board header file to specify clock multiplier
7590
7591     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
7592
7593     Allow the board header file to set their own multiplier and divider.
7594     Added the #define for the multiplier and divider to the cpu header file.
7595
7596     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7597
7598 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
7599 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7600 Date:   Fri Jan 23 10:47:13 2009 -0500
7601
7602     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
7603
7604     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
7605     Use read-modify-write to activate the FEC pins without disabling I2C.
7606
7607     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7608
7609 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
7610 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7611 Date:   Fri Jan 23 09:45:34 2009 -0500
7612
7613     Coldfire: cmd_bdinfo cleanup
7614
7615     CONFIG_M68K bdinfo cleanup:
7616
7617     Fixed compiler warning about baudrate printing.
7618     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
7619
7620     Added printing of "cpufreq"
7621
7622     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7623
7624 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
7625 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7626 Date:   Fri Jan 23 09:27:00 2009 -0500
7627
7628     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
7629
7630     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
7631     was causing the bus clock (not CPU clock) to be declared twice as
7632     fast as it actually is. This causes UARTS to operate at half the
7633     specified baudrate.
7634
7635     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
7636
7637 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
7638 Author: Dirk Eibach <eibach@gdsys.de>
7639 Date:   Tue Feb 3 15:15:21 2009 +0100
7640
7641     ppc4xx: Make PCIE support selectable
7642
7643     On some platforms PCIE support is not required, but would be included
7644     because the cpu supports it. To reduce fooprint it is now configurable
7645     via CONFIG_PCI_DISABLE_PCIE.
7646
7647     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
7648     Signed-off-by: Stefan Roese <sr@denx.de>
7649
7650 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
7651 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7652 Date:   Tue Feb 3 22:13:16 2009 +0100
7653
7654     ppc4xx: Only fixup opb attached UARTs
7655
7656     This patch updates the fdt UART clock fixup code to
7657     only touch CPU internal UARTs on 4xx systems.
7658     Only these UARTs are definitely clocked by gd->uart_clk.
7659
7660     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7661     Signed-off-by: Stefan Roese <sr@denx.de>
7662
7663 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
7664 Author: Mike Frysinger <vapier@gentoo.org>
7665 Date:   Tue Jan 13 11:00:29 2009 -0500
7666
7667     Blackfin: move default boot SPI CS to common code
7668
7669     Move the default SPI CS that we boot from into common code so that it can
7670     be used in other SPI drivers and environment settings.
7671
7672     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7673
7674 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
7675 Author: Mike Frysinger <vapier@gentoo.org>
7676 Date:   Wed Dec 10 12:33:54 2008 -0500
7677
7678     Blackfin: dynamically update UART speed when initializing
7679
7680     Previously, booting over the UART required the baud rate to be known ahead
7681     of time.  Using a bit of tricky simple math, we can calculate the new board
7682     rate based on the old divisors.
7683
7684     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7685     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7686
7687 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
7688 Author: Mike Frysinger <vapier@gentoo.org>
7689 Date:   Tue Dec 9 17:21:08 2008 -0500
7690
7691     Blackfin: add support for fast SPI reads with Boot ROM
7692
7693     Newer Blackfin boot roms support using the fast SPI read command rather than
7694     just the slow one.  If the functionality is available, then use it.
7695
7696     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7697
7698 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
7699 Author: Mike Frysinger <vapier@gentoo.org>
7700 Date:   Sat Oct 11 21:46:52 2008 -0400
7701
7702     Blackfin: check for reserved settings in DDR MMRs
7703
7704     Some bits of the DDR MMRs should not be set.  If they do, bad things may
7705     happen (like random failures or hardware destruction).
7706
7707     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7708
7709 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
7710 Author: Mike Frysinger <vapier@gentoo.org>
7711 Date:   Sat Oct 11 21:54:00 2008 -0400
7712
7713     Blackfin: set default voltage levels for BF538/BF539 parts
7714
7715     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7716
7717 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
7718 Author: Mike Frysinger <vapier@gentoo.org>
7719 Date:   Sun Jun 1 01:29:57 2008 -0400
7720
7721     Blackfin: use on-chip syscontrol() rom function when available
7722
7723     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
7724     to be used to properly program the memory and voltage settings as it will
7725     include (possibly critical) factory tested bias values.
7726
7727     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7728
7729 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
7730 Author: Stefan Roese <sr@denx.de>
7731 Date:   Thu Feb 5 11:44:52 2009 +0100
7732
7733     cfi_flash: Fix typo in cfi_flash.c
7734
7735     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
7736     introduced a small typo and compilation warning for systems with CFI
7737     legacy support (e.g. hcu4). This patch fixes it.
7738
7739     Signed-off-by: Stefan Roese <sr@denx.de>
7740
7741 commit 28745db969b72693754991c838f68a7fb4a8b1ab
7742 Author: Stefan Roese <sr@denx.de>
7743 Date:   Thu Jan 29 11:21:38 2009 +0100
7744
7745     jedec_flash: Only use manufacturer defines from common flash.h
7746
7747     This patch removes the double defined manufacturer defines from
7748     jedec_flash.c. Since the common defines in flash.h are 32bit
7749     we now need the (16) cast. This patch also removes the compilation
7750     warning (e.g. seen on hcu5):
7751
7752     ./MAKEALL hcu5
7753     Configuring for hcu5 board...
7754     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
7755
7756     Signed-off-by: Stefan Roese <sr@denx.de>
7757
7758 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
7759 Author: Stefan Roese <sr@denx.de>
7760 Date:   Thu Feb 5 11:25:57 2009 +0100
7761
7762     cfi_flash: Silence compilation warning
7763
7764     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
7765     introduced a small compilation warning. This patch fixes it.
7766
7767     Signed-off-by: Stefan Roese <sr@denx.de>
7768
7769 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
7770 Author: Becky Bruce <beckyb@kernel.crashing.org>
7771 Date:   Mon Feb 2 16:34:51 2009 -0600
7772
7773     flash/cfi_flash: Use virtual sector start address, not phys
7774
7775     include/flash.h was commented to say that the address in
7776     flash_info->start was a physical address.  However, from u-boot's
7777     point of view, and looking at most flash code, it makes more
7778     sense for this to be a virtual address.  So I corrected the
7779     comment to indicate that this was a virtual address.
7780
7781     The only flash driver that was actually treating the address
7782     as physical was the mtd/cfi_flash driver.  However, this code
7783     was using it inconsistently as it actually directly dereferenced
7784     the "start" element, while it used map_physmem to get a
7785     virtual address in other places.  I changed this driver so
7786     that the code which initializes the info->start field calls
7787     map_physmem to get a virtual address, eliminating the need for
7788     further map_physmem calls.  The code is now consistent.
7789
7790     The *only* place a physical address should be used is when defining the
7791     flash banks list that is used to initialize the flash_info struct,
7792     usually found in the board config file.
7793
7794     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7795     Signed-off-by: Stefan Roese <sr@denx.de>
7796
7797 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
7798 Author: Wolfgang Denk <wd@denx.de>
7799 Date:   Wed Feb 4 09:42:20 2009 +0100
7800
7801     Fix compiler warning
7802
7803     (shows up only when DEBUG is enabled)
7804
7805     Signed-off-by: Wolfgang Denk <wd@denx.de>
7806
7807 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
7808 Author: Mike Frysinger <vapier@gentoo.org>
7809 Date:   Mon Oct 6 03:45:55 2008 -0400
7810
7811     Blackfin: update anomaly lists
7812
7813     Update the anomaly lists to match latest anomaly sheets.
7814
7815     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7816
7817 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
7818 Author: Ralph Kondziella <rk@argos-messtechnik.de>
7819 Date:   Mon Jan 26 12:34:36 2009 -0700
7820
7821     ADS5121 Add PATA support
7822
7823     Original patch from Ralph Kondziella
7824     plus clean up by Wolfgang Denk
7825     plus changes by John Rigby
7826         use ips clock not lpc
7827         port forward to current u-boot release
7828
7829     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
7830     Signed-off-by: Wolfgang Denk <wd@denx.de>
7831     Signed-off-by: John Rigby <jrigby@freescale.com>
7832
7833 commit abfbd0ae4967df18102345db4f4b529a13da107b
7834 Author: Martha Marx <mmarx@silicontkx.com>
7835 Date:   Mon Jan 26 10:45:07 2009 -0700
7836
7837     ADS5121 Add IC Ident Module (IIM) support
7838
7839     IIM (IC Identification Module) is the fusebox for the mpc5121.
7840     Use #define CONFIG_IIM to turn on the clock for this module
7841     use #define CONFIG_CMD_FUSE to add fusebox commands.
7842     Fusebox commands include the ability to read
7843     the status, read the register cache, override the register cache,
7844     program the fuses and sense them.
7845
7846     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
7847     Signed-off-by: John Rigby <jrigby@freescale.com>
7848
7849 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
7850 Author: John Rigby <jrigby@freescale.com>
7851 Date:   Fri Jan 23 10:33:15 2009 -0700
7852
7853     ADS5121 Fix rev2 silicon pci iopad config
7854
7855     Reset config is not correct
7856
7857     Signed-off-by: John Rigby <jrigby@freescale.com>
7858
7859 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
7860 Author: John Rigby <jrigby@freescale.com>
7861 Date:   Wed Nov 19 13:57:34 2008 -0700
7862
7863     ADS5121 DIU Add diu_bmp_addr env
7864
7865     Add support for using a bmp other than
7866     FSL_Logo_BMP for the DIU splash screen.
7867
7868     Can now set the env var "diu_bmp_addr" to
7869     the address of a BMP in flash to use instead
7870     of the default FSL_Logo_BMP.
7871
7872     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
7873     Signed-off-by: John Rigby <jrigby@freescale.com>
7874
7875 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
7876 Author: John Rigby <jrigby@freescale.com>
7877 Date:   Thu Oct 30 16:39:35 2008 -0600
7878
7879     ADS5121 DIU Make inclusion of FSL logo optional
7880
7881     Make inclusion of FSL logo optional and
7882     turn it off by default.
7883
7884     Signed-off-by: John Rigby <jrigby@freescale.com>
7885
7886 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
7887 Author: Remy Bohmer <linux@bohmer.net>
7888 Date:   Sun Feb 1 12:27:53 2009 +0100
7889
7890     Compile warning fix in onenand_uboot.h
7891
7892     Regression since merge window after 2009.01
7893
7894     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7895
7896 commit a270d1e7295c3d829f42c0480117941dfc1c6477
7897 Author: Stefan Roese <sr@denx.de>
7898 Date:   Thu Jan 29 06:33:55 2009 +0100
7899
7900     USB: Add EHCI support for VCT EHCI controller (really with driver now)
7901
7902     Somehow I missed the real driver part in my last patch version. This patch
7903     now adds the driver.
7904
7905     Signed-off-by: Stefan Roese <sr@denx.de>
7906     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7907
7908 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
7909 Author: Cliff Cai <cliff.cai@analog.com>
7910 Date:   Sat Nov 29 18:22:38 2008 -0500
7911
7912     Blackfin: add driver for on-chip MMC/SD controller
7913
7914     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
7915
7916     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
7917     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7918
7919 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
7920 Author: Mike Frysinger <vapier@gentoo.org>
7921 Date:   Sat Oct 11 22:47:34 2008 -0400
7922
7923     Blackfin: add port muxing for BF51x SPI
7924
7925     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7926
7927 commit fc68f9f85959664d528daea2aef5ef54974331ce
7928 Author: Mike Frysinger <vapier@gentoo.org>
7929 Date:   Tue Jan 6 06:16:19 2009 -0500
7930
7931     Blackfin: output booting source when booting
7932
7933     Knowing the booting source of the part is useful, especially when the part
7934     can switch dynamically between sources.
7935
7936     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7937
7938 commit 8df3ce0f49c37947800ac7c84e751499882619fc
7939 Author: Mike Frysinger <vapier@gentoo.org>
7940 Date:   Thu Dec 11 06:30:46 2008 -0500
7941
7942     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
7943
7944     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
7945     the Blackfin on-chip bootrom to boot out of SPI flash.
7946
7947     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7948
7949 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
7950 Author: Mike Frysinger <vapier@gentoo.org>
7951 Date:   Thu Dec 11 04:06:26 2008 -0500
7952
7953     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
7954
7955     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7956
7957 commit e5eb93e77391bcc308697116c544ea1340aaae8a
7958 Author: Mike Frysinger <vapier@gentoo.org>
7959 Date:   Sat Dec 6 02:54:52 2008 -0500
7960
7961     Blackfin: add port I bits
7962
7963     Some people need to access port I, so make sure the pins are defined.
7964
7965     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7966
7967 commit 8a6b272596d43de0db4943eac7af58c3534c4026
7968 Author: Sonic Zhang <Sonic.Zhang@analog.com>
7969 Date:   Wed Nov 26 22:16:45 2008 -0500
7970
7971     Blackfin: add driver for on-chip ATAPI controller
7972
7973     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
7974
7975     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
7976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7977
7978 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
7979 Author: Mike Frysinger <vapier@gentoo.org>
7980 Date:   Wed Nov 26 21:43:06 2008 -0500
7981
7982     Blackfin: add driver for on-chip NAND controller
7983
7984     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
7985
7986     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7987
7988 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
7989 Author: Mike Frysinger <vapier@gentoo.org>
7990 Date:   Wed Nov 12 07:18:15 2008 -0500
7991
7992     Blackfin: build with -mno-fdpic
7993
7994     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
7995     up u-boot, including ones that output FDPIC ELF by default.
7996
7997     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7998
7999 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
8000 Author: Mike Frysinger <vapier@gentoo.org>
8001 Date:   Tue Nov 11 05:43:57 2008 -0500
8002
8003     Blackfin: fix up EBIU defines
8004
8005     The EBIU defines for EBSZ 256/512 were incorrect.
8006
8007     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8008
8009 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
8010 Author: Mike Frysinger <vapier@gentoo.org>
8011 Date:   Wed Nov 5 12:45:24 2008 -0500
8012
8013     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
8014
8015     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
8016     as usable with the source/destination addresses and the count size.
8017
8018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8019
8020 commit b93c68648426f906d63b98117496b6415f505f39
8021 Author: Mike Frysinger <vapier@gentoo.org>
8022 Date:   Wed Nov 5 08:50:23 2008 -0500
8023
8024     Blackfin: only flag L1 instruction for DMA memcpy
8025
8026     The performance difference from doing an 8 bit DMA memcpy vs an optimized
8027     core memcpy can be pretty big when you add in the overhead of setting up the
8028     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
8029     actually require it.
8030
8031     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8032
8033 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
8034 Author: Mike Frysinger <vapier@gentoo.org>
8035 Date:   Wed Nov 5 07:20:37 2008 -0500
8036
8037     Blackfin: dma_memcpy(): fix random failures
8038
8039     We have to make sure the DMA channel is actually disabled in hardware before
8040     attempting to reprogram it.  Otherwise the new settings are ignored and we
8041     end up with random hangs/failures.
8042
8043     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8044
8045 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
8046 Author: Mike Frysinger <vapier@gentoo.org>
8047 Date:   Tue Nov 4 00:04:03 2008 -0500
8048
8049     Blackfin: rewrite cache handling functions
8050
8051     Take the cache flush functions from the kernel as they use hardware loops in
8052     order to get optimal performance.
8053
8054     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8055
8056 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
8057 Author: Mike Frysinger <vapier@gentoo.org>
8058 Date:   Mon Nov 3 22:30:05 2008 -0500
8059
8060     Blackfin: setup bi_enetaddr for single nets
8061
8062     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
8063     based on $ethaddr, so set it up.
8064
8065     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8066
8067 commit 40599239e7875b39e2a5c12e6545992041c72c52
8068 Author: Mike Frysinger <vapier@gentoo.org>
8069 Date:   Fri Oct 24 22:48:47 2008 -0400
8070
8071     Blackfin: cache core/system clock values
8072
8073     Calculating the clocks requires a bit of calls to gcc math functions, so
8074     cache the values after the first run since they'll most likely never
8075     change once U-Boot is up and running.
8076
8077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8078
8079 commit 6957a6209b02f6b69607fc47425f13731cc477f1
8080 Author: Mike Frysinger <vapier@gentoo.org>
8081 Date:   Fri Oct 24 18:18:16 2008 -0400
8082
8083     Blackfin: enable --gc-sections
8084
8085     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
8086     and linking with --gc-sections.
8087
8088     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8089
8090 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
8091 Author: Mike Frysinger <vapier@gentoo.org>
8092 Date:   Mon Oct 20 21:08:54 2008 -0400
8093
8094     Blackfin: dont check baud if it wont actually get used
8095
8096     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8097
8098 commit 400f5778f375bc99c73c8488c555def261ccfab7
8099 Author: Mike Frysinger <vapier@gentoo.org>
8100 Date:   Tue Oct 14 07:54:09 2008 -0400
8101
8102     Blackfin: add driver for on-chip SPI controller
8103
8104     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
8105
8106     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8107
8108 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
8109 Author: Mike Frysinger <vapier@gentoo.org>
8110 Date:   Sat Oct 18 05:33:51 2008 -0400
8111
8112     Blackfin: only build post code when CONFIG_POST
8113
8114     Save some time by using CONFIG_POST in the Makefile rather than C files.
8115
8116     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8117
8118 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
8119 Author: Mike Frysinger <vapier@gentoo.org>
8120 Date:   Thu Jan 8 11:57:57 2009 -0500
8121
8122     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
8123
8124     Redo how pointers are managed to get rid of ugly casts and strict pointer
8125     aliasing issues that are highlighted by gcc 4.3.
8126
8127     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8128     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8129
8130 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
8131 Author: Mike Frysinger <vapier@gentoo.org>
8132 Date:   Tue Dec 9 17:46:21 2008 -0500
8133
8134     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
8135
8136     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
8137     does exactly the same thing as common "CONFIG_RMII".
8138
8139     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8140     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8141
8142 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
8143 Author: Mike Frysinger <vapier@gentoo.org>
8144 Date:   Wed Nov 5 06:36:15 2008 -0500
8145
8146     Blackfin: bfin_mac: use common debug()
8147
8148     Rather then defining our own DEBUGF(), just use the common debug().
8149
8150     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8151     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8152
8153 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
8154 Author: Mike Frysinger <vapier@gentoo.org>
8155 Date:   Mon Oct 20 13:59:51 2008 -0400
8156
8157     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
8158
8159     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
8160     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
8161
8162     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8163     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8164
8165 commit ac45af4e63ea925f4accc98453aab1a1166c196d
8166 Author: Mike Frysinger <vapier@gentoo.org>
8167 Date:   Tue Oct 14 04:52:00 2008 -0400
8168
8169     Blackfin: bfin_mac: cleanup MII/PHY functions
8170
8171     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
8172     existing common linux/miiphy.h code and hook into the `mii` command.
8173
8174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8175     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8176
8177 commit 6b310a05f0d10c751f22468040932139f71c71d3
8178 Author: Mike Frysinger <vapier@gentoo.org>
8179 Date:   Tue Oct 14 00:31:30 2008 -0400
8180
8181     Blackfin: bfin_mac: set MDCDIV based on SCLK
8182
8183     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
8184     use the real algorithm so it gets set correctly regardless of SCLK.
8185
8186     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8187     Acked-by: Ben Warren <biggerbadderben@gmail.com>
8188
8189 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
8190 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8191 Date:   Sat Jan 31 09:10:48 2009 +0100
8192
8193     ixp: move serial to drivers/serial
8194
8195     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8196
8197 commit f90c8022f448bc5e93090e4b714368e52e912f0f
8198 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8199 Date:   Sat Jan 31 09:04:58 2009 +0100
8200
8201     ixp: move pci init in arm/board instead of cpu
8202
8203     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8204
8205 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
8206 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8207 Date:   Sat Jan 31 08:56:49 2009 +0100
8208
8209     ixp: move pci drivers to drivers/pci
8210
8211     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8212
8213 commit 012d5bab09a534e4800b02f50cf508e6837202ea
8214 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8215 Date:   Sat Jan 31 08:53:44 2009 +0100
8216
8217     ixp: Move conditional compilation to Makefile
8218
8219     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8220
8221 commit f693f501d67434df1f815fd1824a71973ae08207
8222 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8223 Date:   Sat Jan 31 08:53:44 2009 +0100
8224
8225     ixp: add missing os define
8226
8227     need by arm-elf toolchains and no impact on the arm-linux one
8228
8229     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8230
8231 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
8232 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8233 Date:   Sat Jan 31 09:53:39 2009 +0100
8234
8235     ixp: remove the option to include the Microcode
8236
8237     instead the board will have to load it from flash or ram
8238     which will be specified by npe_ucode env var
8239
8240     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8241
8242 commit 1b017baf2071d8daf643bce87250db898c606c66
8243 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8244 Date:   Fri Jan 30 09:45:23 2009 +0100
8245
8246     ixp/npe: Move conditional compilation to Makefile
8247
8248     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8249
8250 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
8251 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8252 Date:   Wed Jan 28 21:58:04 2009 +0100
8253
8254     SX1: add hardware V2 support
8255
8256     In the V2 the 2 flash has been replace by one 32MB flash
8257
8258     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8259
8260 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
8261 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8262 Date:   Wed Jan 28 21:58:03 2009 +0100
8263
8264     SX1: Fix second flash mapping
8265
8266     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8267
8268 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
8269 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8270 Date:   Wed Jan 28 21:58:03 2009 +0100
8271
8272     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
8273
8274     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8275
8276 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
8277 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8278 Date:   Wed Jan 28 21:57:59 2009 +0100
8279
8280     move Samsung's board to board/samsung
8281
8282     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8283
8284 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
8285 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8286 Date:   Thu Jan 29 12:07:21 2009 +0100
8287
8288     move ARM Ltd. to vendor dir
8289
8290     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8291
8292 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
8293 Author: Larry Johnson <lrj@acm.org>
8294 Date:   Wed Jan 28 15:30:37 2009 -0500
8295
8296     ppc4xx: Clean up configuration file for Korat board
8297
8298     This patch updates the default environmental variables for the
8299     Korat PPC 440EPx board, and makes additional minor fixes.
8300
8301     Signed-off-by: Larry Johnson <lrj@acm.org>
8302     Signed-off-by: Stefan Roese <sr@denx.de>
8303
8304 commit f20405e31680efc36293c59b4963db57c9d93df4
8305 Author: Larry Johnson <lrj@acm.org>
8306 Date:   Wed Jan 28 15:30:02 2009 -0500
8307
8308     ppc4xx: Add variable "korat_usbcf" for Korat board
8309
8310     The new environment variable "korat_usbcf" selects the USB
8311     port used by the Korat board's CompactFlash controller.
8312
8313     Signed-off-by: Larry Johnson <lrj@acm.org>
8314     Signed-off-by: Stefan Roese <sr@denx.de>
8315
8316 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
8317 Author: Gunnar Rangoy <gunnar@rangoy.com>
8318 Date:   Fri Jan 23 12:56:31 2009 +0100
8319
8320     AVR32: macb - Search for PHY id
8321
8322     This patch adds support for searching through available PHY-addresses in
8323     the macb-driver. This is needed for the ATEVK1100 evaluation board,
8324     where the PHY-address will be initialized to either 1 or 7.
8325
8326     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
8327     enabled tells the driver to search for the PHY address.
8328
8329     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
8330     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
8331     Signed-off-by: Olav Morken <olavmrk@gmail.com>
8332     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8333
8334 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
8335 Author: Olav Morken <olavmrk@gmail.com>
8336 Date:   Fri Jan 23 12:56:26 2009 +0100
8337
8338     Fix IP alignment problem
8339
8340     This patch removes volatile from:
8341     volatile IP_t *ip = (IP_t *)xip;
8342
8343     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
8344     using volatile, which causes an exception since xip isn't aligned on a word
8345     boundary.
8346
8347     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
8348     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
8349     Signed-off-by: Olav Morken <olavmrk@gmail.com>
8350     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8351
8352 commit 12a8b9db12f82a189ff143a58731007f5469da61
8353 Author: Ron Madrid <ron_madrid@sbcglobal.net>
8354 Date:   Wed Jan 28 16:17:21 2009 -0800
8355
8356     Marvell 88E1118 interrupt fix
8357
8358     This patch adjusts the LED control so that interrupt lines are not reading LEDs
8359     and effectively causing indefinite interrupts to the controller.
8360
8361     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
8362     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8363
8364 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
8365 Author: Stefan Roese <sr@denx.de>
8366 Date:   Wed Jan 21 17:14:26 2009 +0100
8367
8368     net: smc911x.c: Add LAN9211 to chip_ids[] array
8369
8370     Signed-off-by: Stefan Roese <sr@denx.de>
8371     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8372
8373 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
8374 Author: Mike Frysinger <vapier@gentoo.org>
8375 Date:   Tue Jan 27 16:53:39 2009 -0500
8376
8377     Move is_valid_ether_addr() to include/net.h
8378
8379     Import the is_valid_ether_addr() function from the Linux kernel.
8380
8381     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8382     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8383
8384 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
8385 Author: Michal Simek <monstr@monstr.eu>
8386 Date:   Mon Jan 5 12:25:13 2009 +0100
8387
8388     net: Sort Makefile labels
8389
8390     Signed-off-by: Michal Simek <monstr@monstr.eu>
8391     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8392
8393 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
8394 Author: Wolfgang Denk <wd@denx.de>
8395 Date:   Wed Jan 28 23:06:42 2009 +0100
8396
8397     85xx: Fix compile breakage with sbc8540 and sbc8560
8398
8399     This fixes an error which raises just a warning:
8400     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
8401
8402     Signed-off-by: Wolfgang Denk <wd@denx.de>
8403
8404 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
8405 Author: Mike Frysinger <vapier@gentoo.org>
8406 Date:   Wed Jan 28 13:48:55 2009 -0500
8407
8408     SPD823TS: do not define CONFIG_CMD_ENV
8409
8410     Since the SPD823TS board does not actually have any writable flash to save
8411     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
8412     disabled.
8413
8414     This fixes the build error:
8415     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
8416     common/cmd_nvedit.c:557: undefined reference to `saveenv'
8417     make: *** [u-boot] Error 1
8418
8419     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8420
8421 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
8422 Author: Dirk Behme <dirk.behme@googlemail.com>
8423 Date:   Wed Jan 28 21:40:16 2009 +0100
8424
8425     OMAP3: Add Zoom1 board support
8426
8427     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
8428     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
8429
8430     Signed-off-by: Nishanth Menon <nm@ti.com>
8431     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
8432
8433 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
8434 Author: Dirk Behme <dirk.behme@googlemail.com>
8435 Date:   Wed Jan 28 21:39:58 2009 +0100
8436
8437     OMAP3: Add Pandora support
8438
8439     Add Pandora support.
8440
8441     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
8442     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8443     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
8444
8445 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
8446 Author: Dirk Behme <dirk.behme@googlemail.com>
8447 Date:   Wed Jan 28 21:39:58 2009 +0100
8448
8449     OMAP3: Add EVM board
8450
8451     Add EVM board support.
8452
8453     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
8454     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8455     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
8456
8457 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
8458 Author: Dirk Behme <dirk.behme@googlemail.com>
8459 Date:   Wed Jan 28 21:39:57 2009 +0100
8460
8461     OMAP3: Add Overo board
8462
8463     Add Overo board support.
8464
8465     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
8466     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8467     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
8468
8469 commit f904cdbb68167c647887f19929ad295dbaac8862
8470 Author: Dirk Behme <dirk.behme@googlemail.com>
8471 Date:   Tue Jan 27 18:19:12 2009 +0100
8472
8473     OMAP3: Add common power code, README, and BeagleBoard
8474
8475     Add BeagleBoard support, common power code and README.
8476
8477     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
8478     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8479
8480 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
8481 Author: Kumar Gala <galak@kernel.crashing.org>
8482 Date:   Wed Jan 28 08:31:10 2009 -0600
8483
8484     85xx: Fix compile breakage with MPC8540EVAL
8485
8486     Configuring for MPC8540EVAL board...
8487     mpc8540eval.c: In function 'checkboard':
8488     mpc8540eval.c:53: error: invalid operands to binary /
8489     make[1]: *** [mpc8540eval.o] Error 1
8490
8491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8492
8493 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
8494 Author: Bryan Wu <bryan.wu@analog.com>
8495 Date:   Sun Jan 18 23:04:27 2009 -0500
8496
8497     usb_scan_devices: fix output with no devices
8498
8499     We should check the return of usb_new_device() so that if no USB device is
8500     found, we print out the right message rather than always saying "new usb
8501     device found".
8502
8503     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
8504     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8505     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8506
8507 commit f1c1f540243438246aefb703fdcf16957e3a72e1
8508 Author: Stefan Roese <sr@denx.de>
8509 Date:   Thu Jan 22 10:11:21 2009 +0100
8510
8511     USB: Add high-speed (480Mb/s) to all USB related outputs
8512
8513     With this patch the USB related connection speed output ("usb tree" command and
8514     debug output) is now high-speed enabled.
8515
8516     This patch also fixes a compilation warning when debugging is enabled.
8517
8518     Signed-off-by: Stefan Roese <sr@denx.de>
8519     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8520
8521 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
8522 Author: Stefan Roese <sr@denx.de>
8523 Date:   Wed Jan 21 17:12:19 2009 +0100
8524
8525     USB: Add dcache support to the EHCI driver
8526
8527     This patch adds routines to handle (flush/invalidate) the dcache for the
8528     QH and qTD structures and data buffers. This is needed on platforms using
8529     this EHCI support with dcache enabled (like the MIPS VCT board port).
8530
8531     Signed-off-by: Stefan Roese <sr@denx.de>
8532     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8533
8534 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
8535 Author: Stefan Roese <sr@denx.de>
8536 Date:   Wed Jan 21 17:12:28 2009 +0100
8537
8538     USB: Add EHCI support for VCT EHCI controller
8539
8540     Signed-off-by: Stefan Roese <sr@denx.de>
8541     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8542
8543 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
8544 Author: Stefan Roese <sr@denx.de>
8545 Date:   Wed Jan 21 17:12:10 2009 +0100
8546
8547     USB: Add config option to call ehci_hcd_init() again after EHCI reset
8548
8549     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
8550     to call ehci_hcd_init() again after ehci_reset() is executed. This
8551     is needed for the upcoming VCT EHCI support which needs to re-init
8552     the hcd part again after the EHCI CMD_RESET is executed.
8553
8554     Signed-off-by: Stefan Roese <sr@denx.de>
8555     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8556
8557 commit 597eb28bd9691266b7b804364cda577cdb51d106
8558 Author: Stefan Roese <sr@denx.de>
8559 Date:   Wed Jan 21 17:12:01 2009 +0100
8560
8561     USB: Fix speed detection on EHCI cntr with root hub transaction translators
8562
8563     This patch fixes an issue that the speed of USB devices was not detected
8564     correctly on some EHCI controllers. This will be used on the upcoming VCT
8565     EHCI support.
8566
8567     Signed-off-by: Stefan Roese <sr@denx.de>
8568     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8569
8570 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
8571 Author: Thomas Abraham <t-abraham@ti.com>
8572 Date:   Sun Jan 4 09:41:20 2009 +0530
8573
8574     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
8575
8576     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
8577     configuration file.
8578
8579     Signed-off-by: Ravi Babu <ravibabu@ti.com>
8580     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
8581     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8582     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
8583     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8584
8585 commit 538ef967715322f64ee08efa2296d9682111b014
8586 Author: Thomas Abraham <t-abraham@ti.com>
8587 Date:   Sun Jan 4 09:41:16 2009 +0530
8588
8589     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
8590
8591     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
8592     controller hook up to USB core layer.
8593
8594     Signed-off-by: Ravi Babu <ravibabu@ti.com>
8595     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
8596     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8597     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
8598     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8599
8600 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
8601 Author: Thomas Abraham <t-abraham@ti.com>
8602 Date:   Sun Jan 4 09:41:13 2009 +0530
8603
8604     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
8605
8606     Adding DM6446 (TI DaVinci) platform specific USB functionality for
8607     USB Phy and VBUS initialization.
8608
8609     Signed-off-by: Ravi Babu <ravibabu@ti.com>
8610     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
8611     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8612     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
8613     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8614
8615 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
8616 Author: Thomas Abraham <t-abraham@ti.com>
8617 Date:   Sun Jan 4 09:41:09 2009 +0530
8618
8619     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
8620
8621     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
8622     platform.
8623
8624     Signed-off-by: Ravi Babu <ravibabu@ti.com>
8625     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
8626     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8627     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
8628     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8629
8630 commit a142896934c755e679ba87e227a8e449f39b0012
8631 Author: Thomas Abraham <t-abraham@ti.com>
8632 Date:   Sun Jan 4 09:41:03 2009 +0530
8633
8634     usb : musb : Adding host controller driver for Mentor USB controller
8635
8636     Adding Mentor USB core functionality and Mentor USB Host controller
8637     functionality for Mentor USB OTG controller (musbhdrc).
8638
8639     Signed-off-by: Ravi Babu <ravibabu@ti.com>
8640     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
8641     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8642     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
8643     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8644
8645 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
8646 Author: Mike Frysinger <vapier@gentoo.org>
8647 Date:   Thu Jan 1 18:27:27 2009 -0500
8648
8649     usb.h: use standard __LITTLE_ENDIAN from Linux headers
8650
8651     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
8652     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
8653     already setting up.
8654
8655     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8656     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8657
8658 commit 7b6e31eb17e3ff76238a60803fc531517d516223
8659 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8660 Date:   Wed Dec 31 10:33:56 2008 +0100
8661
8662     USB ehci ixp4xx support
8663
8664     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
8665
8666     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8667     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8668
8669 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
8670 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8671 Date:   Wed Dec 31 10:33:22 2008 +0100
8672
8673     USB ehci remove infinite loop and use handshake function
8674
8675     USB ehci code cleanup. Use handshake instead of infinite while loop
8676     to check the STD_ASS status
8677
8678     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8679     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8680
8681 commit 8fea2914ac974029b65926ef8247d908f84d202d
8682 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8683 Date:   Wed Dec 31 10:32:41 2008 +0100
8684
8685     Add initial support for USB ehci pci
8686
8687     Add USB ehci pci support. This patch doesn't include any
8688     pci_ids and it is not tested on real hardware.
8689
8690     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8691     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8692
8693 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
8694 Author: Bryan Wu <Bryan.Wu@analog.com>
8695 Date:   Thu Jan 1 19:48:07 2009 -0500
8696
8697     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
8698
8699     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
8700     does not like to be reset, so check for it.
8701
8702     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
8703     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8704     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8705
8706 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
8707 Author: Thomas Abraham <t-abraham@ti.com>
8708 Date:   Sun Jan 4 12:15:35 2009 +0530
8709
8710     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
8711
8712     This patch populates the 'priv' field of the USB keyboard device_t
8713     structure. The 'priv' field is populated with the address of the
8714     'struct usb_device' structure that represents the USB device.
8715
8716     The 'priv' field can then be used in the 'usb_event_poll' function to
8717     determine the USB device that requires to be polled. An
8718     example of its usage in 'usb_event_poll' function is as below.
8719
8720         device_t *dev;
8721         struct usb_device *usb_kbd_dev;
8722
8723         <snip>
8724
8725         dev = device_get_by_name("usbkbd");
8726         usb_kbd_dev = (struct usb_device *)dev->priv;
8727         iface = &usb_kbd_dev->config.if_desc[0];
8728
8729     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
8730     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8731
8732 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
8733 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8734 Date:   Thu Dec 18 10:05:37 2008 +0100
8735
8736     USB change speed
8737
8738     USB changes the speed according to the port status
8739
8740     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8741     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8742
8743 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
8744 Author: Remy Böhmer <linux@bohmer.net>
8745 Date:   Sat Dec 13 22:51:58 2008 +0100
8746
8747     EHCI fix code and ixp4xx test.
8748     USB ehci configuration parameter:
8749
8750     #define CONFIG_CMD_USB          1
8751     #define CONFIG_USB_STORAGE      1
8752     #define CONFIG_USB_EHCI
8753     #define CONFIG_USB_EHCI_IXP4XX      1
8754     #define CONFIG_EHCI_IS_TDI  1
8755     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
8756     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
8757     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
8758     #define CONFIG_LEGACY_USB_INIT_SEQ      1
8759
8760     2 USB Device(s) found
8761            scanning bus for storage devices... 0 Storage Device(s) found
8762     => usb tree
8763
8764     Device Tree:
8765       1  Hub (1.5MBit/s, 0mA)
8766       |  u-boot EHCI Host Controller
8767       |
8768       |+-2  Mass Storage (12MBit/s, 100mA)
8769            Sony Storage Media 0C07040930296
8770
8771     =>
8772
8773     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8774     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8775
8776 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
8777 Author: michael <michael@panicking.retis>
8778 Date:   Thu Dec 11 13:43:55 2008 +0100
8779
8780     [PATCH] This patch add varius fix to the ehci.
8781     - fix ehci_readl, ehci_writel
8782     - introduce new define in ehci.h
8783     - introduce the handshake function for waiting on a register
8784     - fix usb_ehci_fsl with the new HC_LENGTH macro
8785
8786     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8787     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8788
8789 commit db63299b1dd2894ade542278210bccd046de6435
8790 Author: michael <michael@panicking.retis>
8791 Date:   Wed Dec 10 17:55:19 2008 +0100
8792
8793     [PATCH] Fix EHCI usb. I start to test on a
8794     IXP465 board and I find some errors in the code. This
8795     patch fix:
8796     - descriptor initizialization (config, interface and endpoint
8797       must be one next-to the other when the USB_DT_CONFIG message
8798       is send.
8799     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
8800       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
8801     - Introduce the linux version of the usb_config_descriptor and
8802       usb_interface descriptor. This descriptor does't contains
8803       u-boot extension.
8804
8805     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8806     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8807
8808 commit 6b92487dcf9afe83a3570153d66940fdb293be76
8809 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8810 Date:   Fri Nov 28 13:22:09 2008 +0100
8811
8812     USB ehci freescale support
8813
8814     Add USB ehci freescale support
8815
8816     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8817     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8818
8819 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
8820 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8821 Date:   Fri Nov 28 13:20:46 2008 +0100
8822
8823     USB ehci core support
8824
8825     Add USB ehci core support
8826
8827     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8828     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8829
8830 commit 3e126484df7868e341545cce740b24b62b0cd3b7
8831 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8832 Date:   Fri Nov 28 13:19:19 2008 +0100
8833
8834     Prepare USB layer for ehci
8835
8836     Prepare USB layer for ehci support
8837
8838     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8839     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8840
8841 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
8842 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8843 Date:   Wed Dec 10 15:52:06 2008 +0100
8844
8845     USB storage cleanup patch
8846
8847     Cleanup usb storage
8848
8849     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8850     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8851
8852 commit fe033ad6d0883063fe857237abb9436fab03208c
8853 Author: Mike Frysinger <vapier@gentoo.org>
8854 Date:   Sun Oct 12 06:02:55 2008 -0400
8855
8856     Blackfin: fixup misc warnings such as printf's and missing casts
8857
8858     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8859
8860 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
8861 Author: Mike Frysinger <vapier@gentoo.org>
8862 Date:   Sun Oct 12 22:09:26 2008 -0400
8863
8864     Blackfin: convert old boards to use COBJS-y Makefile style
8865
8866     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8867
8868 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
8869 Author: Mike Frysinger <vapier@gentoo.org>
8870 Date:   Sat Oct 11 22:38:37 2008 -0400
8871
8872     Blackfin: bf533-stamp: rewrite resource swap logic
8873
8874     The old swap function tended to clobber unrelated pins and screw up masks.
8875     Rewrite the thing from scratch so it only uses the resources it needs.
8876
8877     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8878
8879 commit 29d4ea0a9073c82469184331010136f52edf8db6
8880 Author: Mike Frysinger <vapier@gentoo.org>
8881 Date:   Sat Oct 11 22:08:42 2008 -0400
8882
8883     Blackfin: bootldr: implement BF53x/BF56x LDR loader
8884
8885     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
8886     arbitrary memory locations, so implement a basic one in software.
8887
8888     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8889
8890 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
8891 Author: Mike Frysinger <vapier@gentoo.org>
8892 Date:   Sat Oct 11 22:05:42 2008 -0400
8893
8894     Blackfin: implement real write support for OTP
8895
8896     Now that real documentation has been released for the OTP interface and
8897     the on-chip ROM wrt writing/timings, implement support for reading/writing
8898     as well as dumping/locking.
8899
8900     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8901
8902 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
8903 Author: Mike Frysinger <vapier@gentoo.org>
8904 Date:   Sat Oct 11 22:04:05 2008 -0400
8905
8906     Blackfin: update on-chip ROM API
8907
8908     This brings the API for the on-chip ROM in line with the toolchain and
8909     hardware documentation.
8910
8911     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8912
8913 commit 7633903bff432ec7b27905dce7396958553f2be6
8914 Author: Mike Frysinger <vapier@gentoo.org>
8915 Date:   Sat Oct 11 21:52:17 2008 -0400
8916
8917     Blackfin: allow serial console to be disabled
8918
8919     Some devices have no UART device pulled out, so allow people to disable the
8920     driver completely in favor of other methods (like JTAG-console).
8921
8922     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8923
8924 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
8925 Author: Mike Frysinger <vapier@gentoo.org>
8926 Date:   Sat Oct 11 21:51:20 2008 -0400
8927
8928     Blackfin: support console-over-JTAG
8929
8930     The Blackfin JTAG has the ability to pass data via a back-channel without
8931     halting the processor.  Utilize that channel to emulate a console.
8932
8933     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8934
8935 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
8936 Author: Mike Frysinger <vapier@gentoo.org>
8937 Date:   Sat Oct 11 21:49:06 2008 -0400
8938
8939     Blackfin: handle new anomalies with reset
8940
8941     Workaround fun new anomalies related to software reset of the processor.
8942
8943     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8944
8945 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
8946 Author: Mike Frysinger <vapier@gentoo.org>
8947 Date:   Sat Oct 11 21:44:00 2008 -0400
8948
8949     Blackfin: pass RETX to Linux
8950
8951     Make sure we save the value of RETX at power on and then pass it on to the
8952     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
8953
8954     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8955
8956 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
8957 Author: Mike Frysinger <vapier@gentoo.org>
8958 Date:   Sat Oct 11 21:40:26 2008 -0400
8959
8960     Blackfin: clarify relocation comment during init
8961
8962     People often ask questions about the init process and when things go
8963     from flash to relocated base, so clarify the comments a bit.
8964
8965     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8966
8967 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
8968 Author: Mike Frysinger <vapier@gentoo.org>
8969 Date:   Sat Oct 11 21:23:41 2008 -0400
8970
8971     Blackfin: just set SP register directly during init
8972
8973     No need to set the SP register indirectly to the configured value when it
8974     can be set directly.
8975
8976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8977
8978 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
8979 Author: Mike Frysinger <vapier@gentoo.org>
8980 Date:   Sat Oct 11 21:15:53 2008 -0400
8981
8982     Blackfin: add portmuxing for UARTs on the BF51x
8983
8984     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8985
8986 commit 4f6a313240c531042f16909a3a170ab047b95779
8987 Author: Mike Frysinger <vapier@gentoo.org>
8988 Date:   Sun Jun 1 01:26:29 2008 -0400
8989
8990     Blackfin: respect CONFIG_CLKIN_HALF
8991
8992     As pointed out by Ivan Koryakovskiy, the initialization code was not
8993     actually respecting the CONFIG_CLKIN_HALF option when configuring the
8994     PLL_CTL register.
8995
8996     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8997
8998 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
8999 Author: Mike Frysinger <vapier@gentoo.org>
9000 Date:   Sun Jun 1 01:21:34 2008 -0400
9001
9002     Blackfin: use common memcpy routine during init
9003
9004     Rather than using a local custom memcpy function, just call the existing
9005     optimized Blackfin version.
9006
9007     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9008
9009 commit 362c943347364e9373af4c5530778491ab56ec2e
9010 Author: Mike Frysinger <vapier@gentoo.org>
9011 Date:   Wed Apr 9 02:27:06 2008 -0400
9012
9013     Blackfin: set default boot SPI CS for BF538/BF539
9014
9015     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
9016     Blackfin parts.
9017
9018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9019
9020 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
9021 Author: Mike Frysinger <vapier@gentoo.org>
9022 Date:   Wed Apr 9 02:20:59 2008 -0400
9023
9024     Blackfin: punt unused BF533-STAMP definitions
9025
9026     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9027
9028 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
9029 Author: Mike Frysinger <vapier@gentoo.org>
9030 Date:   Fri Apr 18 20:44:11 2008 -0400
9031
9032     Blackfin: resurrect BF533-STAMP video splash driver
9033
9034     This video driver used to live in the Blackfin cpu directory, but it was
9035     lost during the unification process.  This brings it back.
9036
9037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9038
9039 commit a750d038f2548d846ea1e046d873dc932d041319
9040 Author: Mike Frysinger <vapier@gentoo.org>
9041 Date:   Wed Apr 9 02:31:29 2008 -0400
9042
9043     Blackfin: tighten up post memory coding style
9044
9045     No functional changes here; just cleanup code style a bit.
9046
9047     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9048
9049 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
9050 Author: Mike Frysinger <vapier@gentoo.org>
9051 Date:   Wed Apr 9 02:29:18 2008 -0400
9052
9053     Blackfin: bf537-stamp nand: fix more style errors in previous commit
9054
9055     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9056
9057 commit 41f3325ae9add641036d7cb362e884b698e53f07
9058 Author: Mike Frysinger <vapier@gentoo.org>
9059 Date:   Sat Oct 11 20:31:17 2008 -0400
9060
9061     Blackfin: drop dead/wrong debug code in initdram()
9062
9063     The DEBUG code in initdram() is quite old and was never really useful, so
9064     just drop it altogether.  Common Blackfin debug code does a better job.
9065
9066     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9067
9068 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
9069 Author: Mike Frysinger <vapier@gentoo.org>
9070 Date:   Sat Oct 11 20:30:28 2008 -0400
9071
9072     Blackfin: bf533-ezkit: shuffle flash defines a little
9073
9074     Some of the flash defines weren't in the correct location and caused build
9075     problems in some configurations, so let's move types and defines to better
9076     local locations.
9077
9078     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9079
9080 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
9081 Author: Mike Frysinger <vapier@gentoo.org>
9082 Date:   Mon Oct 6 04:16:47 2008 -0400
9083
9084     Blackfin: overhaul i2c driver
9085
9086     The current Blackfin i2c driver does not work properly with certain devices
9087     due to it breaking up transfers incorrectly.  This is a rewrite of the
9088     driver and relocates it to the newer place in the source tree.
9089
9090     Also remove duplicated I2C speed defines in Blackfin board configs and
9091     disable I2C slave address usage since it isn't implemented.
9092
9093     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9094
9095 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
9096 Author: Mike Frysinger <vapier@gentoo.org>
9097 Date:   Mon Oct 6 04:00:07 2008 -0400
9098
9099     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
9100
9101     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
9102     128kB when setting up the default flash protection region for U-Boot
9103     itself.
9104
9105     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9106
9107 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
9108 Author: Mike Frysinger <vapier@gentoo.org>
9109 Date:   Mon Oct 6 03:57:39 2008 -0400
9110
9111     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
9112
9113     When setting up the global data, rather than relying on sizeof(), use the
9114     common CONFIG_SYS_GBL_DATA_SIZE define.
9115
9116     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9117
9118 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
9119 Author: Mike Frysinger <vapier@gentoo.org>
9120 Date:   Mon Oct 6 03:52:24 2008 -0400
9121
9122     Blackfin: implement general support for CONFIG_STATUS_LED
9123
9124     Here are the Blackfin-specific and board-independent pieces for status leds.
9125
9126     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9127
9128 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
9129 Author: Mike Frysinger <vapier@gentoo.org>
9130 Date:   Mon Oct 6 03:49:32 2008 -0400
9131
9132     Blackfin: do not init i2c in Blackfin board init
9133
9134     The common code takes care of calling i2c_init() when needed, so no point
9135     in us doing it as well.
9136
9137     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9138
9139 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
9140 Author: Mike Frysinger <vapier@gentoo.org>
9141 Date:   Mon Oct 6 03:42:20 2008 -0400
9142
9143     Blackfin: bfin_mac: update port muxing
9144
9145     Adds support more Blackfin parts and fixes broken muxing for older ones.
9146
9147     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9148
9149 commit 05b75e48832fc4afeecf8e76d704349557dffa35
9150 Author: Mike Frysinger <vapier@gentoo.org>
9151 Date:   Mon Oct 6 03:35:44 2008 -0400
9152
9153     Blackfin: fix dcache handling when doing dma memcpy's
9154
9155     Our dcache invalidate function doesn't just invalidate, it also flushes.
9156     So rename the function accordingly and fix the dma_memcpy() function so it
9157     doesn't inadvertently corrupt the data destination.
9158
9159     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9160
9161 commit 68e5632494168095d75f120af70043b68afd2476
9162 Author: Mike Frysinger <vapier@gentoo.org>
9163 Date:   Thu Aug 7 18:56:56 2008 -0400
9164
9165     Blackfin: dont generate ldrs with --force
9166
9167     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9168
9169 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
9170 Author: Mike Frysinger <vapier@gentoo.org>
9171 Date:   Thu Aug 7 18:55:30 2008 -0400
9172
9173     Blackfin: pass --bmode/--initcode when creating ldr
9174
9175     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9176
9177 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
9178 Author: Mike Frysinger <vapier@gentoo.org>
9179 Date:   Thu Aug 7 18:39:27 2008 -0400
9180
9181     Blackfin: minimize time cache is turned off when replacing cplb entries
9182
9183     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9184
9185 commit 21d631360430cf0ae9099612273cd4de28911ba9
9186 Author: Mike Frysinger <vapier@gentoo.org>
9187 Date:   Thu Aug 7 15:31:13 2008 -0400
9188
9189     Blackfin: split cache handling out of dma_memcpy()
9190
9191     Creating a new dma_memcpy() function that skips all cache checks allows us
9192     to use the function in very early init where the cache is not yet setup.
9193
9194     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9195
9196 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
9197 Author: Mike Frysinger <vapier@gentoo.org>
9198 Date:   Thu Aug 7 15:30:49 2008 -0400
9199
9200     Blackfin: abort dma_memcpy() for L1 scratchpad
9201
9202     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9203
9204 commit 81b799add709177e838466461f7b9989488b0fd5
9205 Author: Mike Frysinger <vapier@gentoo.org>
9206 Date:   Thu Aug 7 15:27:52 2008 -0400
9207
9208     Blackfin: rename bootm.c to boot.c
9209
9210     The boot file contains functions for more than just "bootm", so rename it
9211     accordingly.
9212
9213     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9214
9215 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
9216 Author: Mike Frysinger <vapier@gentoo.org>
9217 Date:   Thu Aug 7 13:22:37 2008 -0400
9218
9219     Blackfin: set more sane default board config values
9220
9221     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9222
9223 commit 36cd52a00794fb15ffab05d640acca92d7482993
9224 Author: Mike Frysinger <vapier@gentoo.org>
9225 Date:   Thu Aug 7 15:24:59 2008 -0400
9226
9227     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
9228
9229     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9230
9231 commit c8054bc12e00669bd7588f2b30fef48aa94babac
9232 Author: Mike Frysinger <vapier@gentoo.org>
9233 Date:   Thu Aug 7 13:21:27 2008 -0400
9234
9235     Blackfin: add bit defines for DDR parts
9236
9237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9238
9239 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
9240 Author: Mike Frysinger <vapier@gentoo.org>
9241 Date:   Thu Aug 7 13:21:11 2008 -0400
9242
9243     Blackfin: add defines to describe active bootrom behavior
9244
9245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9246
9247 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
9248 Author: Kim Phillips <kim.phillips@freescale.com>
9249 Date:   Tue Jan 27 16:03:53 2009 -0600
9250
9251     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
9252
9253     extend commit c70564e6b1bd08f3230182392238907f3531a87e
9254     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
9255     to the simpc8313 build and fix this:
9256
9257     ...Large Page NAND...Configuring for SIMPC8313 board...
9258     nand_boot_fsl_elbc.o: In function `nand_boot':
9259     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
9260     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
9261     make: *** [nand_spl] Error 2
9262
9263     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9264
9265 commit 54a7cc4912feefa45be961cc47cc159563725d2f
9266 Author: Wolfgang Denk <wd@denx.de>
9267 Date:   Wed Jan 28 09:25:31 2009 +0100
9268
9269     mpc8536ds.c: include sata.h to for needed function prototypes
9270
9271     Signed-off-by: Wolfgang Denk <wd@denx.de>
9272
9273 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
9274 Author: Peter Tyser <ptyser@xes-inc.com>
9275 Date:   Tue Jan 27 18:03:12 2009 -0600
9276
9277     Command usage cleanup
9278
9279     Remove command name from all command "usage" fields and update
9280     common/command.c to display "name - usage" instead of
9281     just "usage". Also remove newlines from command usage fields.
9282
9283     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9284
9285 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
9286 Author: Peter Tyser <ptyser@xes-inc.com>
9287 Date:   Tue Jan 27 18:03:11 2009 -0600
9288
9289     amcc: Clean up command usage output
9290
9291     Update taihu and taishan commands to use cmd_usage() function
9292     to display usage messages.
9293
9294     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9295
9296 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
9297 Author: Peter Tyser <ptyser@xes-inc.com>
9298 Date:   Tue Jan 27 18:03:10 2009 -0600
9299
9300     Standardize command usage messages with cmd_usage()
9301
9302     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9303
9304 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
9305 Author: Peter Tyser <ptyser@xes-inc.com>
9306 Date:   Tue Jan 27 18:03:09 2009 -0600
9307
9308     pcs440ep: Clean up led command definition
9309
9310     The pcs440ep's led command usage formatting is non-standard.  It
9311     was made standard in preparation for larger command usage updates.
9312
9313     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9314
9315 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
9316 Author: Peter Tyser <ptyser@xes-inc.com>
9317 Date:   Tue Jan 27 18:03:08 2009 -0600
9318
9319     Clean up diufb command definitions
9320
9321     The diufb command usage formatting is non-standard.  It was
9322     made standard in preparation for larger command usage updates.
9323
9324     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9325
9326 commit 6450a8485836fc80615ae6de6a864c33369b44f5
9327 Author: Wolfgang Denk <wd@denx.de>
9328 Date:   Wed Jan 28 00:29:26 2009 +0100
9329
9330     Update CHANGELOG, tiny coding style cleanup.
9331
9332     Signed-off-by: Wolfgang Denk <wd@denx.de>
9333
9334 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
9335 Author: Mike Frysinger <vapier@gentoo.org>
9336 Date:   Tue Jan 27 16:12:21 2009 -0500
9337
9338     SATA: do not auto-initialize during boot
9339
9340     Rather than have the board code initialize SATA automatically during boot,
9341     make the user manually run "sata init".  This brings the SATA subsystem in
9342     line with common U-Boot policy.
9343
9344     Rather than having a dedicated weak function "is_sata_supported", people
9345     can override sata_initialize() to do their weird board stuff.  Then they
9346     can call the actual __sata_initialize().
9347
9348     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9349
9350 commit 50970839712dda35399e2fa83fe818df9354d618
9351 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
9352 Date:   Mon Jan 26 08:45:14 2009 -0500
9353
9354     part_efi: Fix partition size calculation due to inclusive ending LBA.
9355
9356     The ending LBA is inclusive. Hence, the partition size should be
9357     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
9358
9359     This is confirmed against the results from the parted tool.
9360     (e.g. use parted /dev/sda -s unit S print) and observe the size.
9361
9362     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
9363
9364 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
9365 Author: Tomasz Figa <tomasz.figa@gmail.com>
9366 Date:   Tue Dec 30 18:35:57 2008 +0100
9367
9368     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
9369
9370     This patch fixes a bug (?) introduced after inclusion of the new
9371     JFFS2 code.
9372
9373     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
9374     fill in part->sector_size (keeping it as 0), but a correct value is
9375     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
9376     to be in the same place of the memory, what obviously means
9377     impossibility to use the JFFS2 partition.
9378
9379     This problem is fixed in this patch by including sector size
9380     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
9381
9382     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
9383
9384 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
9385 Author: Mike Frysinger <vapier@gentoo.org>
9386 Date:   Tue Dec 30 02:59:25 2008 -0500
9387
9388     saveenv: standardize enablement
9389
9390     Rather than special casing each environment type for enabling the saveenv
9391     command, have them all behave the same.  This avoids bitrot as new env
9392     sources are added/removed.
9393
9394     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9395
9396 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
9397 Author: Andrew Dyer <adyer@righthandtech.com>
9398 Date:   Mon Dec 29 17:36:01 2008 -0600
9399
9400     soft_i2c.c add option for repeated start in i2c_read()
9401
9402     This patch adds a #define to optionally change the behaviour of
9403     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
9404     stop-start between sending the device address pointer write and
9405     reading back the data.  The current behaviour is retained as the
9406     default.
9407
9408     While most devices will work either way, I have a smart battery(*)
9409     that requires repeated start, and someone at some point found a
9410     device that required a stop-start.
9411
9412     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
9413
9414     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
9415
9416 commit 3429071700963ca2f944c51d695a7481af0cee33
9417 Author: Wolfgang Denk <wd@denx.de>
9418 Date:   Tue Jan 27 22:07:14 2009 +0100
9419
9420     {delta,zylonite}/lowlevel_init.S: fix typo
9421
9422     Commit 9d803d8c mistakenly changed some constants
9423     from 0x300 into 300 - this patch fixes it.
9424
9425     Pointed out by Tom Evans <tom@ceos.com.au>, see
9426     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
9427     details.
9428
9429     Signed-off-by: Wolfgang Denk <wd@denx.de>
9430
9431 commit 1bc434373013af241835c14011ac3f291dccbf53
9432 Author: Stefan Althoefer <stefan.althoefer@web.de>
9433 Date:   Sat Dec 20 19:40:41 2008 +0100
9434
9435     drivers/net/e1000.c: missing terminator for supported devices
9436
9437     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
9438
9439 commit 65f7d41031a70b1649b35020995c505edca91533
9440 Author: Wolfgang Denk <wd@denx.de>
9441 Date:   Tue Jan 27 21:36:28 2009 +0100
9442
9443     fat.c: fix warning: array subscript is above array bounds
9444
9445     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
9446
9447     Signed-off-by: Wolfgang Denk <wd@denx.de>
9448
9449 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
9450 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9451 Date:   Fri Jan 2 15:11:41 2009 +0100
9452
9453     Fix gunzip in case of insufficient output buffer
9454
9455     U-Boot's gunzip() function does not handle the return code
9456     of zlib's inflate() function correctly. gunzip() is implemented
9457     to uncompress all input data in one run. So the correct return
9458     code for the good case is Z_STREAM_END. In case of insufficient
9459     output buffer memory inflate returns Z_OK. For gunzip() this
9460     is an error.
9461
9462     It also makes sense to me to call inflateEnd() also in case
9463     of an error.
9464
9465     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9466
9467 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
9468 Author: Stefan Roese <sr@denx.de>
9469 Date:   Wed Jan 21 17:25:01 2009 +0100
9470
9471     MIPS: Add VCT board series support (Part 3/3)
9472
9473     Signed-off-by: Stefan Roese <sr@denx.de>
9474
9475 commit ae691e5719c48f1d2826cb72722497d1d162765b
9476 Author: Stefan Roese <sr@denx.de>
9477 Date:   Wed Jan 21 17:24:49 2009 +0100
9478
9479     MIPS: Add VCT board series support (Part 2/3)
9480
9481     Signed-off-by: Stefan Roese <sr@denx.de>
9482
9483 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
9484 Author: Stefan Roese <sr@denx.de>
9485 Date:   Wed Jan 21 17:24:39 2009 +0100
9486
9487     MIPS: Add VCT board series support (Part 1/3)
9488
9489     Signed-off-by: Stefan Roese <sr@denx.de>
9490
9491 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
9492 Author: Stefan Roese <sr@denx.de>
9493 Date:   Wed Jan 21 17:20:20 2009 +0100
9494
9495     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
9496
9497     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
9498     Those functions are needed for the upcoming dcache support for the USB
9499     EHCI driver. I chose this API because those cache handling functions are
9500     already present in the PPC architecture.
9501
9502     Signed-off-by: Stefan Roese <sr@denx.de>
9503     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9504
9505 commit de832a99414ff06a4b2cdc9f5280b387da039834
9506 Author: Stefan Roese <sr@denx.de>
9507 Date:   Mon Jan 26 10:05:20 2009 +0100
9508
9509     nand_spl: Fix compile problem with board_nand_init() prototype
9510
9511     This patch removes the now obsolete and additionally wrongly defined
9512     board_nand_init() prototype from nand_spl/nand_boot.c.
9513
9514     Signed-off-by: Stefan Roese <sr@denx.de>
9515     Signed-off-by: Scott Wood <scottwood@freescale.com>
9516
9517 commit e8eac437189430d8e04a5d254ed92c58bc534a79
9518 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
9519 Date:   Wed Jan 14 08:44:26 2009 -0500
9520
9521     CFI: Add geometry reversal for STMicro M29W320ET
9522
9523     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
9524
9525     Modeled after flash_fixup_amd, this patch handles the geometry reversal
9526     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
9527     Since I cannot test all STM's chips, the detection is implemented as
9528     narrow as possible for now.
9529
9530     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
9531     Signed-off-by: Stefan Roese <sr@denx.de>
9532
9533 commit 0f8e851e897b535959a0781171910cd97f33c30c
9534 Author: Jens Gehrlein <sew_s@tqs.de>
9535 Date:   Tue Dec 16 17:25:55 2008 +0100
9536
9537     CFI: increase performance of function find_sector()
9538
9539     Tested on TQM5200S-BD with Samsung K8P2815UQB
9540
9541     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
9542     Signed-off-by: Stefan Roese <sr@denx.de>
9543
9544 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
9545 Author: Jens Gehrlein <sew_s@tqs.de>
9546 Date:   Tue Dec 16 17:25:54 2008 +0100
9547
9548     CFI: avoid redundant function call in single word programming mode
9549
9550     The function find_sector() doesn't need to be called twice in
9551     the case of AMD command set.
9552     Tested on TQM5200S-BD with Samsung K8P2815UQB.
9553
9554     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
9555     Signed-off-by: Stefan Roese <sr@denx.de>
9556
9557 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
9558 Author: Stefan Roese <sr@denx.de>
9559 Date:   Mon Jan 26 10:15:23 2009 +0100
9560
9561     ppc4xx: Remove compilation warning in gdppc440etc.c
9562
9563     Signed-off-by: Stefan Roese <sr@denx.de>
9564
9565 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
9566 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9567 Date:   Fri Jan 2 12:19:47 2009 +0100
9568
9569     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
9570
9571     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
9572     Either they define or undef it. Because it's not used in any source
9573     files this patch removes any references to it.
9574
9575     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9576     Signed-off-by: Stefan Roese <sr@denx.de>
9577
9578 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
9579 Author: Dirk Eibach <eibach@gdsys.de>
9580 Date:   Tue Dec 9 13:12:40 2008 +0100
9581
9582     ppc4xx: Add GDsys PowerPC 440 ETX board support.
9583
9584     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
9585     Based on the AMCC Yosemite board support by Stefan Roese.
9586
9587     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9588     Signed-off-by: Stefan Roese <sr@denx.de>
9589
9590 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
9591 Author: Dirk Eibach <eibach@gdsys.de>
9592 Date:   Tue Dec 9 11:00:07 2008 +0100
9593
9594     ppc4xx: Improve DDR autodetect
9595
9596     Added support for a second memory bank to DDR autodetection for 440
9597     platforms.
9598     Made hardcoded values configurable.
9599
9600     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9601     Signed-off-by: Stefan Roese <sr@denx.de>
9602
9603 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
9604 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9605 Date:   Fri Nov 21 12:06:26 2008 +0900
9606
9607     sh: sh7763rdp: Update sh7763rdp config
9608
9609     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
9610
9611     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9612     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9613
9614 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
9615 Author: Gary Jennejohn <garyj@denx.de>
9616 Date:   Thu Nov 20 12:28:38 2008 +0100
9617
9618     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
9619
9620     This change is needed for mgcoge because it uses two ethernet drivers.
9621
9622     Add a check for the presence of the PIGGY board on mgcoge.  Without this
9623     board networking cannot work and the initialization must be aborted.
9624
9625     Only allocate rtx once to prevent DPRAM exhaustion.
9626
9627     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
9628     soon) in eth.c.
9629
9630     Signed-off-by: Gary Jennejohn <garyj@denx.de>
9631     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9632
9633 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
9634 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9635 Date:   Fri Nov 21 12:04:18 2008 +0900
9636
9637     sh: sh_eth: Change new network API
9638
9639     sh_eth used old network API. This patch changed new API.
9640
9641     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9642     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9643
9644 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
9645 Author: Stefan Roese <sr@denx.de>
9646 Date:   Wed Nov 12 13:31:02 2008 +0100
9647
9648     net: smc911x: Make register read/write functions weak
9649
9650     This patch changes the reg_read/_write to smc911x_reg_read/_write
9651     and defines then as weak so that they can be overridden by board
9652     specific version.
9653
9654     This will be used by the upcoming VCTH board support.
9655
9656     Signed-off-by: Stefan Roese <sr@denx.de>
9657     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9658
9659 commit 8b69b563039989885969d24465c56f8ac4c07c4c
9660 Author: Heiko Schocher <hs@denx.de>
9661 Date:   Thu Nov 20 09:57:14 2008 +0100
9662
9663     powerpc: net: support for the SMSC LAN8700 PHY
9664
9665     Signed-off-by: Heiko Schocher <hs@denx.de>
9666     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9667
9668 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
9669 Author: Alessandro Rubini <rubini@unipv.it>
9670 Date:   Sat Jan 24 18:10:37 2009 +0100
9671
9672     Initial support for Nomadik 8815 development board
9673
9674     The NMDK8815 board is distributed by ST Microelectornics.
9675     Other (proprietary) code must be run to unlock the CPU before
9676     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
9677
9678     This is the initial port, with basic infrastructure and
9679     a working serial port.
9680
9681     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
9682     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
9683     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9684
9685 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
9686 Author: Dirk Behme <dirk.behme@googlemail.com>
9687 Date:   Sun Dec 14 09:47:18 2008 +0100
9688
9689     OMAP3: Add I2C support
9690
9691     Add I2C support.
9692
9693     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9694
9695 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
9696 Author: Dirk Behme <dirk.behme@googlemail.com>
9697 Date:   Sun Dec 14 09:47:17 2008 +0100
9698
9699     OMAP3: Add MMC support
9700
9701     Add MMC support.
9702
9703     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9704
9705 commit 12201a13547ec22ddcdae278e74465e54a3be60c
9706 Author: Dirk Behme <dirk.behme@googlemail.com>
9707 Date:   Sun Dec 14 09:47:16 2008 +0100
9708
9709     OMAP3: Add NAND support
9710
9711     Add NAND support.
9712
9713     Signed-off-by: Nishanth Menon <nm@ti.com>
9714     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
9715     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9716
9717 commit 91eee546737ae21d930af479530997174c342b13
9718 Author: Dirk Behme <dirk.behme@googlemail.com>
9719 Date:   Sun Dec 14 09:47:15 2008 +0100
9720
9721     OMAP3: Add common board, interrupt and system info
9722
9723     Add common board, interrupt and system info code.
9724
9725     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9726
9727 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
9728 Author: Dirk Behme <dirk.behme@googlemail.com>
9729 Date:   Sun Dec 14 09:47:14 2008 +0100
9730
9731     OMAP3: Add common clock, memory and low level code
9732
9733     Add common clock, memory and low level code
9734
9735     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9736
9737 commit 0b02b184003e6a5023e05d5f31de54db279b1431
9738 Author: Dirk Behme <dirk.behme@googlemail.com>
9739 Date:   Sun Dec 14 09:47:13 2008 +0100
9740
9741     OMAP3: Add common cpu and start code
9742
9743     Add common cpu and start code.
9744
9745     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9746
9747 commit a8b6450546cd507d331b8fde384791d84bde5651
9748 Author: Dirk Behme <dirk.behme@googlemail.com>
9749 Date:   Sun Dec 14 09:47:12 2008 +0100
9750
9751     OMAP3: Add OMAP3, memory and function prototype headers
9752
9753     Add OMAP3, memory and function prototype header files for OMAP3.
9754
9755     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9756
9757 commit 2c803210a464abbac35752ca1c737514360b4c32
9758 Author: Dirk Behme <dirk.behme@googlemail.com>
9759 Date:   Sun Dec 14 09:47:11 2008 +0100
9760
9761     OMAP3: Add pin mux, clock and cpu headers
9762
9763     Add pin mux, clock and cpu header files for OMAP3.
9764
9765     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9766
9767 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
9768 Author: Maxim Artamonov <scn1874@yandex.ru>
9769 Date:   Wed Dec 3 05:38:17 2008 +0300
9770
9771     bugfix for i.mx31 CCM_UPCTL reg
9772
9773     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
9774
9775 commit 24113a44ed5cd3257a0237c3961e121812fca6db
9776 Author: Mike Frysinger <vapier@gentoo.org>
9777 Date:   Tue Dec 30 03:15:38 2008 -0500
9778
9779     easylogo: add optional gzip support
9780
9781     Some images can be quite large, so add an option to compress the
9782     image data with gzip in the U-Boot image. Then at runtime, the
9783     board can decompress it with the normal zlib functions.
9784
9785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9786
9787 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
9788 Author: Bryan Wu <bryan.wu@analog.com>
9789 Date:   Fri Jan 2 20:47:45 2009 -0500
9790
9791     fat: fix unaligned errors
9792
9793     A couple of buffers in the fat code are declared as an array of bytes.
9794     But it is then cast up to a structure with 16bit and 32bit members.
9795     Since GCC assumes structure alignment here, we have to force the
9796     buffers to be aligned according to the structure usage.
9797
9798     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
9799     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9800
9801 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
9802 Author: Brad Bozarth <bflinux@yumbrad.com>
9803 Date:   Thu Jan 1 22:45:47 2009 -0500
9804
9805     spi flash: fix crash due to spi flash miscommunication
9806
9807     Higher spi flash layers expect to be given back a pointer that was
9808     malloced so that it can free the result, but the lower layers return
9809     a pointer that is in the middle of the malloced memory. Reorder the
9810     members of the lower spi structures so that things work out.
9811
9812     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
9813     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9814     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9815
9816 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
9817 Author: Yuri Tikhonov <yur@emcraft.com>
9818 Date:   Sat Dec 20 14:54:21 2008 +0300
9819
9820     FPU POST: fix warnings when building with 2.18 binutils
9821
9822     When compile u-boot with the 2.18 binutils the following
9823     warning messages for each object file in post/lib_ppc/fpu/ is
9824     produced at the linking stage:
9825
9826     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
9827     ...
9828
9829     This is because of the fact that, in general, the soft-float and
9830     hard-float ABIs are incompatible; the 2.18 binutils do checking
9831     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
9832     produce the worning like above if these are not compatible.
9833
9834     The incompatibility of ABIs is concerned only the float values:
9835     e.g. the soft-float ABI assumes the float argument passing in the
9836     pair of rX registers, and the hard-float ABI assumes passing of
9837     the float argument in the fX register. When we don't pass the float
9838     arguments between the functions compiled with different floatness,
9839     then such an application will work correctly.
9840     This is the case for the FPU POST: u-boot (compiled with soft-float)
9841     doesn't pass to (and doesn't get from) the FPU POST functions any
9842     floats; there are no functions exported from the post/lib_ppc/fpu/
9843     objects which would work with float parameters/returns too. So, we
9844     can reassure the linker not to worry about the difference in ABI
9845     attributes of linking files just by setting the 'soft-float'
9846     attribute for the objects in post/lib_ppc/fpu. And this patch does
9847     this.
9848
9849     Also, to avoid passing both soft- and hard-float options in CFLAGS
9850     when compiling the files from post/lib_ppc/fpu (which is OK, but
9851     looks rather dirty) this patch removes the soft-float string from
9852     CFLAGS in post/lib_ppc/fpu/Makefile.
9853
9854     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
9855
9856 commit a7c9310457e85b4598abe5b304108edf11332e2f
9857 Author: Peter Tyser <ptyser@xes-inc.com>
9858 Date:   Wed Dec 17 16:36:22 2008 -0600
9859
9860     Add support for Maxim's DS4510 I2C device
9861
9862     Initial support for the DS4510, a CPU supervisor with
9863     integrated EEPROM, SRAM, and 4 programmable non-volatile
9864     GPIO pins. The CONFIG_DS4510 define enables support
9865     for the device while the CONFIG_CMD_DS4510 define
9866     enables the ds4510 command. The additional
9867     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
9868     CONFIG_DS4510_RST defines add additional sub-commands
9869     to the ds4510 command when defined.
9870
9871     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9872
9873 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
9874 Author: Dirk Eibach <eibach@gdsys.de>
9875 Date:   Tue Dec 16 14:51:56 2008 +0100
9876
9877     common: Iteration limit for memory test.
9878
9879     The iteration limit is passed to mtest as a fourth parameter:
9880     [start [end [pattern [iterations]]]]
9881     If no fourth parameter is supplied, there is no iteration limit and the
9882     test will loop forever.
9883
9884     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9885
9886 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
9887 Author: Stefan Roese <sr@denx.de>
9888 Date:   Mon Dec 15 15:40:12 2008 +0100
9889
9890     serial: Rename driver vcth to vct to support other board variants
9891
9892     Moved driver vcth.c to vct.c to better reflect the VCT board series.
9893     This driver is now used by the VCT platforms:
9894
9895     vct_premium
9896     vct_platinum
9897     vct_platinumsvc
9898
9899     Signed-off-by: Stefan Roese <sr@denx.de>
9900
9901 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
9902 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9903 Date:   Fri Dec 12 00:45:27 2008 +0900
9904
9905     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
9906
9907     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9908
9909 commit c3284b030b1cd492b4f46c576aea01bef258599d
9910 Author: Peter Korsgaard <jacmet@sunsite.dk>
9911 Date:   Wed Dec 10 16:24:16 2008 +0100
9912
9913     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
9914
9915     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
9916     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
9917     !CONFIG_AUTOBOOT_KEYED case.
9918
9919     Do this by reversing the loop so we do at least one iteration before
9920     checking for timeout.
9921
9922     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9923
9924 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
9925 Author: Niklaus Giger <niklaus.giger@netstal.com>
9926 Date:   Mon Dec 8 17:24:08 2008 +0100
9927
9928     Added legacy flash ST Micro M29W040B
9929
9930 commit 626d07348e5f9f302f4ea182161a89f7362a0488
9931 Author: Graeme Russ <graeme.russ@gmail.com>
9932 Date:   Mon Dec 8 20:04:51 2008 +1100
9933
9934     Fixed off-by-one errors in lib_m68k/interrupts.c
9935
9936     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9937
9938 commit a5989c42ae5e295f274a795c426c47819bbdbfda
9939 Author: Graeme Russ <graeme.russ@gmail.com>
9940 Date:   Sun Dec 7 10:29:05 2008 +1100
9941
9942     Removed all references to CONFIG_SYS_RESET_GENERIC
9943
9944     Generic i386 reset - #define made redundant by weak function
9945
9946     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9947
9948 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
9949 Author: Graeme Russ <graeme.russ@gmail.com>
9950 Date:   Sun Dec 7 10:29:04 2008 +1100
9951
9952     Remove #ifdef CONFIG_SC520 in source code
9953
9954     CONFIG_SC520 is now used for conditional compile
9955
9956     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9957
9958 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
9959 Author: Graeme Russ <graeme.russ@gmail.com>
9960 Date:   Sun Dec 7 10:29:03 2008 +1100
9961
9962     Added MMCR reset functionality
9963
9964     Reset function specific to AMD SC520 microcontroller - Is more of a
9965     'hard reset' that the triple fault.
9966
9967     Requires CONFIG_SYS_RESET_SC520 to be defined in config
9968
9969     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
9970     but ld requires that a object file in a library arhive MUST contain
9971     at least one function which does not override a weak function (and is
9972     called from outside the object file) in order for that object file to
9973     be extracted from the archive. This would be the only function on the
9974     new file, and hence, will never get linked in.
9975
9976     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9977
9978 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
9979 Author: Graeme Russ <graeme.russ@gmail.com>
9980 Date:   Sun Dec 7 10:29:02 2008 +1100
9981
9982     Moved generic (triple fault) reset code
9983
9984     Moved from interrupts.c to cpu.c and made into a weak function to
9985     allow vendor specific override
9986
9987     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
9988     added to the vendor specific code without the need to remember to
9989     #undef usage of the generic method and if you forget to include your
9990     custom reset method, you will always get the default.
9991
9992     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9993
9994 commit 9933d609020c297788f53f334c8465fa7a99b10c
9995 Author: Graeme Russ <graeme.russ@gmail.com>
9996 Date:   Sun Dec 7 10:29:01 2008 +1100
9997
9998     Moved definition of set_vector() to new header file
9999
10000     This allows for future tidy ups and functionality that will require
10001     set_vector ()
10002
10003     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
10004
10005 commit 407976185e0dda2c90e89027121a1071b9c77bfb
10006 Author: Graeme Russ <graeme.russ@gmail.com>
10007 Date:   Sun Dec 7 10:29:00 2008 +1100
10008
10009     Moved sc520 specific code into new cpu/i386/sc520 folder
10010
10011     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
10012     Signed-off-by: Wolfgang Denk <wd@denx.de>
10013
10014 commit 85ffbbd51914925a542d8528be7f072e5ab02157
10015 Author: Graeme Russ <graeme.russ@gmail.com>
10016 Date:   Sun Dec 7 10:28:58 2008 +1100
10017
10018     Renamed cpu/i386/reset.S to resetvec.S
10019
10020     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
10021     for CPU reset functions
10022
10023     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
10024
10025 commit a3f4c123f569474e80ea012b8db0de46afdb6443
10026 Author: Wolfgang Denk <wd@denx.de>
10027 Date:   Sat Jan 24 01:01:49 2009 +0100
10028
10029     Makefile: keep lists sorted.
10030
10031     Signed-off-by: Wolfgang Denk <wd@denx.de>
10032
10033 commit c620c01e96814558470698ed5cab1bf2f504d1b5
10034 Author: Graeme Russ <graeme.russ@gmail.com>
10035 Date:   Sun Dec 7 10:28:57 2008 +1100
10036
10037     Added initial eNET board support
10038
10039     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
10040
10041 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
10042 Author: Gary Jennejohn <garyj@denx.de>
10043 Date:   Thu Nov 20 11:37:26 2008 +0100
10044
10045     POWERPC 82xx: add the SCC as an HDLC controller
10046
10047     Right now this is only used by keymile.
10048
10049     Signed-off-by: Gary Jennejohn <garyj@denx.de>
10050
10051 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
10052 Author: Heiko Schocher <hs@denx.de>
10053 Date:   Thu Nov 20 09:59:09 2008 +0100
10054
10055     powerpc, keymile boards: extract identical config options
10056
10057     This patch extracts the identical config options for the
10058     keymile boards mgcoge, mgsuvd and kmeter1 in a new
10059     common config file keymile-common.h.
10060
10061     Signed-off-by: Heiko Schocher <hs@denx.de>
10062
10063 commit 210c8c00aad3328145204adab434bb7d70b06b75
10064 Author: Heiko Schocher <hs@denx.de>
10065 Date:   Fri Nov 21 08:29:40 2008 +0100
10066
10067     powerpc: keymile: Add a check for the PIGGY debug board
10068
10069     Check the presence of the PIGGY on the keymile boards mgcoge,
10070     mgsuvd and kmeter1. If the PIGGY is not present, dont register
10071     this Ethernet device.
10072
10073     Signed-off-by: Heiko Schocher <hs@denx.de>
10074     Acked-by: Ben Warren <biggerbadderben@gmail.com>
10075
10076 commit de0443614af4d16675ab436665aeb11ddc9f7214
10077 Author: Heiko Schocher <hs@denx.de>
10078 Date:   Thu Nov 20 09:57:47 2008 +0100
10079
10080     powerpc: 83xx: add support for the kmeter1 board
10081
10082     This patch adds support for the kmeter1 board from Keymile,
10083     based on a Freescale MPC8360 CPU.
10084
10085     - serial console on UART 1
10086     - 256 MB DDR2 RAM
10087     - 64 MB NOR Flash
10088     - Ethernet RMII Mode over UCC4
10089     - PHY SMSC LAN8700
10090
10091     Signed-off-by: Heiko Schocher <hs@denx.de>
10092
10093 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
10094 Author: Sergei Poselenov <sposelenov@emcraft.com>
10095 Date:   Tue Nov 4 13:51:18 2008 +0100
10096
10097     Add a do_div() wrapper macro, lldiv().
10098
10099     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
10100     the dividend and returns the result of division, so it is useful
10101     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
10102
10103     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10104
10105 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
10106 Author: Kumar Gala <galak@kernel.crashing.org>
10107 Date:   Fri Jan 23 14:22:14 2009 -0600
10108
10109     85xx: Add a 36-bit physical configuration for MPC8572DS
10110
10111     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
10112     to allow for larger memory sizes.
10113
10114     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10115
10116 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
10117 Author: Kumar Gala <galak@kernel.crashing.org>
10118 Date:   Fri Jan 23 14:22:13 2009 -0600
10119
10120     85xx: Handle eLBC difference w/36-bit physical
10121
10122     The eLBC only handles 32-bit physical address in systems with 36-bit
10123     physical.  The previos generation of LBC handled 34-bit physical
10124     address in 36-bit systems.  Added a new CONFIG option to convey
10125     the difference between the LBC and eLBC.
10126
10127     Also added defines for XAM bits used in LBC for the extended 34-bit
10128     support.
10129
10130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10131
10132 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
10133 Author: Kumar Gala <galak@kernel.crashing.org>
10134 Date:   Fri Jan 23 14:22:12 2009 -0600
10135
10136     85xx: Use BR_ADDR macro for NAND chipselects
10137
10138     Use the new BR_ADDR macro to properly setup the address field of the
10139     localbus chipselects used by NAND.
10140
10141     This allows us to deal with 36-bit phys on these boards in the future.
10142
10143     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10144
10145 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
10146 Author: Haiying Wang <Haiying.Wang@freescale.com>
10147 Date:   Thu Jan 15 11:58:35 2009 -0500
10148
10149     Add secondary CPUs processor frequency for e500 core
10150
10151     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
10152     and prints each CPU's frequency separately. It also fixes up each CPU's
10153     frequency in "clock-frequency" of fdt blob.
10154
10155     Signed-off-by: James Yang <James.Yang@freescale.com>
10156     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10157
10158 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
10159 Author: Dave Liu <daveliu@freescale.com>
10160 Date:   Fri Nov 21 16:31:53 2008 +0800
10161
10162     85xx: enable the auto self refresh for wake up ARP
10163
10164     The wake up ARP feature need use the memory to process
10165     wake up packet, we enable auto self refresh to support it.
10166
10167     Signed-off-by: Dave Liu <daveliu@freescale.com>
10168     Acked-by: Andy Fleming <afleming@freescale.com>
10169
10170 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
10171 Author: Dave Liu <daveliu@freescale.com>
10172 Date:   Fri Nov 21 16:31:43 2008 +0800
10173
10174     fsl-ddr: use the 1T timing as default configuration
10175
10176     For light loaded system, we use the 1T timing to gain better
10177     memory performance, but for some heavily loaded system,
10178     you have to add the 2T timing options to board files.
10179
10180     Signed-off-by: Dave Liu <daveliu@freescale.com>
10181     Acked-by: Andy Fleming <afleming@freescale.com>
10182
10183 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
10184 Author: Dave Liu <daveliu@freescale.com>
10185 Date:   Fri Nov 21 16:31:35 2008 +0800
10186
10187     fsl-ddr: make the self refresh idle threshold configurable
10188
10189     Some 85xx processors have the advanced power management feature,
10190     such as wake up ARP, that needs enable the automatic self refresh.
10191
10192     If the DDR controller pass the SR_IT (self refresh idle threshold)
10193     idle cycles, it will automatically enter self refresh. However,
10194     anytime one transaction is issued to the DDR controller, it will
10195     reset the counter and exit self refresh state.
10196
10197     Signed-off-by: Dave Liu <daveliu@freescale.com>
10198     Acked-by: Andy Fleming <afleming@freescale.com>
10199
10200 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
10201 Author: Dave Liu <daveliu@freescale.com>
10202 Date:   Fri Nov 21 16:31:29 2008 +0800
10203
10204     fsl-ddr: clean up the ddr code for DDR3 controller
10205
10206     - The DDR3 controller is expanding the bits for timing config
10207     - Add the DDR3 32-bit bus mode support
10208
10209     Signed-off-by: Dave Liu <daveliu@freescale.com>
10210     Acked-by: Andy Fleming <afleming@freescale.com>
10211
10212 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
10213 Author: Dave Liu <daveliu@freescale.com>
10214 Date:   Fri Nov 21 16:31:22 2008 +0800
10215
10216     fsl-ddr: update the bit mask for DDR3 controller
10217
10218     According to the latest 8572 UM, the DDR3 controller
10219     is expanding the bit mask, and we use the extend ACTTOPRE
10220     mode when tRAS more than 19 MCLK.
10221
10222     Signed-off-by: Dave Liu <daveliu@freescale.com>
10223
10224 commit aca5f018a8386b85469482ed9867e3e29a2437d0
10225 Author: Kumar Gala <galak@kernel.crashing.org>
10226 Date:   Tue Dec 2 16:08:40 2008 -0600
10227
10228     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
10229
10230     Introduce a new define to seperate out the virtual address that PCI
10231     IO space is at from the physical address.  In most situations these are
10232     mapped 1:1.  However any code accessing the bus should use VIRT.
10233
10234     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10235     Acked-by: Andy Fleming <afleming@freescale.com>
10236
10237 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
10238 Author: Kumar Gala <galak@kernel.crashing.org>
10239 Date:   Tue Dec 2 16:08:39 2008 -0600
10240
10241     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
10242
10243     Introduce a new define to seperate out the virtual address that PCI
10244     memory is at from the physical address.  In most situations these are
10245     mapped 1:1.  However any code accessing the bus should use VIRT.
10246
10247     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10248     Acked-by: Andy Fleming <afleming@freescale.com>
10249
10250 commit a6e04c344ad1eefd47a75484441b385da815b8df
10251 Author: Kumar Gala <galak@kernel.crashing.org>
10252 Date:   Tue Dec 2 16:08:38 2008 -0600
10253
10254     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
10255
10256     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
10257     of TLBs.  This is what we should have always been using from the start.
10258
10259     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10260     Acked-by: Andy Fleming <afleming@freescale.com>
10261
10262 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
10263 Author: Kumar Gala <galak@kernel.crashing.org>
10264 Date:   Tue Dec 2 16:08:37 2008 -0600
10265
10266     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
10267
10268     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
10269     of _IO_BASE so we are more explicit.
10270
10271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10272
10273 commit 10795f42cb94e71bcb262b615084f69dd886399a
10274 Author: Kumar Gala <galak@kernel.crashing.org>
10275 Date:   Tue Dec 2 16:08:36 2008 -0600
10276
10277     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
10278
10279     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
10280     of _MEM_BASE so we are more explicit.
10281
10282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10283     Acked-by: Andy Fleming <afleming@freescale.com>
10284
10285 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
10286 Author: Kumar Gala <galak@kernel.crashing.org>
10287 Date:   Tue Dec 2 14:19:34 2008 -0600
10288
10289     85xx: separate FLASH BASE virtual from physical address
10290
10291     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
10292     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
10293
10294     This allows us to deal with 36-bit phys on these boards in the future.
10295
10296     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10297     Acked-by: Andy Fleming <afleming@freescale.com>
10298
10299 commit 52b565f5ad23b682489055b187767d8bf1c2e444
10300 Author: Kumar Gala <galak@kernel.crashing.org>
10301 Date:   Tue Dec 2 14:19:33 2008 -0600
10302
10303     85xx: separate PIXIS virtual from physical address
10304
10305     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
10306     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
10307
10308     This allows us to deal with 36-bit phys on these boards in the future.
10309
10310     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10311     Acked-by: Andy Fleming <afleming@freescale.com>
10312
10313 commit 30837e5b21d5a742983581ab9ee3fac085311d19
10314 Author: Haiying Wang <Haiying.Wang@freescale.com>
10315 Date:   Tue Nov 11 08:52:09 2008 -0500
10316
10317     Add README file for MPC8572DS board
10318
10319     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10320     Acked-by: Andy Fleming <afleming@freescale.com>
10321
10322 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
10323 Author: Mike Frysinger <vapier@gentoo.org>
10324 Date:   Mon Oct 20 16:15:04 2008 -0400
10325
10326     Blackfin: use common strmhz() in system output
10327
10328     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10329
10330 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
10331 Author: Ron Madrid <ron_madrid@sbcglobal.net>
10332 Date:   Thu Jan 22 15:05:24 2009 -0800
10333
10334     mpc83xx: New board support for SIMPC8313
10335
10336     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
10337     board boots from NAND devices and is configureable for either large or small
10338     page devices.  The board supports non-soldered DDR2, one ethernet port, a
10339     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
10340     to the eLBC providing glue logic to a TMS320C67xx DSP.
10341
10342     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
10343     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10344
10345 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
10346 Author: Mike Frysinger <vapier@gentoo.org>
10347 Date:   Sun Jan 18 19:46:06 2009 -0500
10348
10349     nand: fixup printf modifiers to match types used
10350
10351     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10352     Signed-off-by: Scott Wood <scottwood@freescale.com>
10353
10354 commit 389e6620e2271096df3316917528003627db4021
10355 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
10356 Date:   Tue Jan 20 16:57:55 2009 +0100
10357
10358     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
10359
10360     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
10361     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
10362     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
10363     tested before ".jffs2s" and only the first two characters are compared.
10364
10365     Correction:
10366     Test for ".jffs2s" first and compare the first 7 characters.
10367
10368     Signed-off-by: Scott Wood <scottwood@freescale.com>
10369
10370 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
10371 Author: Wolfgang Grandegger <wg@grandegger.com>
10372 Date:   Fri Jan 16 18:55:54 2009 +0100
10373
10374     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
10375
10376     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
10377     changes the default from 8 to 1 for the legacy and the new MTD
10378     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
10379     in the board config files because none of the boards use multi
10380     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
10381     define
10382
10383      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
10384
10385     but that's bogus and did not work anyhow.
10386
10387     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10388     Signed-off-by: Scott Wood <scottwood@freescale.com>
10389
10390 commit c70564e6b1bd08f3230182392238907f3531a87e
10391 Author: Dave Liu <daveliu@freescale.com>
10392 Date:   Tue Dec 2 11:48:51 2008 +0800
10393
10394     NAND: Fix cache and memory inconsistency issue
10395
10396     We load the secondary stage u-boot image from NAND to
10397     system memory by nand_load, but we did not flush d-cache
10398     to memory, nor invalidate i-cache before we jump to RAM.
10399     When the system has cache enabled and the TLB/page attribute
10400     of system memory is cacheable, it will cause issues.
10401
10402     - 83xx family is using the d-cache lock, so all of d-cache
10403       access is cache-inhibited. so you can't see the issue.
10404     - 85xx family is using d-cache, i-cache enable, partial
10405       cache lock. you will see the issue.
10406
10407     This patch fixes the cache issue.
10408
10409     Signed-off-by: Dave Liu <daveliu@freescale.com>
10410     Signed-off-by: Scott Wood <scottwood@freescale.com>
10411
10412 commit 50657c273278f74378e1ac39b41d612b92fdffa0
10413 Author: Nishanth Menon <menon.nishanth@gmail.com>
10414 Date:   Sat Dec 13 09:43:06 2008 -0600
10415
10416     NAND: Enable nand lock, unlock feature
10417
10418     Enable nand lock, unlock and status of lock feature.
10419     Not every device and platform requires this, hence,
10420     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
10421
10422     Nand unlock and status operate on block boundary instead
10423     of page boundary. Details in:
10424     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
10425
10426     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
10427     Includes preliminary suggestions from Scott Wood
10428
10429     Signed-off-by: Nishanth Menon <nm@ti.com>
10430     Signed-off-by: Scott Wood <scottwood@freescale.com>
10431
10432 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
10433 Author: Mike Frysinger <vapier@gentoo.org>
10434 Date:   Sat Dec 6 02:40:55 2008 -0500
10435
10436     NAND: move board_nand_init to nand.h
10437
10438     Rather than putting the function prototype for board_nand_init() in the one
10439     place where it gets called, put it into nand.h so that every place that also
10440     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
10441     such as using the wrong return value (void rather than int) when defining
10442     the function.
10443
10444     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10445     Signed-off-by: Scott Wood <scottwood@freescale.com>
10446
10447 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
10448 Author: Stefan Roese <sr@denx.de>
10449 Date:   Tue Dec 2 11:06:47 2008 +0100
10450
10451     OneNAND: Additional sync with 2.6.27
10452
10453     - Add subpage write support
10454     - Add onenand_oob_64/32 ecclayout
10455
10456     This has been missing and without it UBI has some incompatibilies issues
10457     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
10458     placed differently (2048 instead of 512) without this fix.
10459
10460     Signed-off-by: Stefan Roese <sr@denx.de>
10461     Signed-off-by: Scott Wood <scottwood@freescale.com>
10462
10463 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
10464 Author: Kyungmin Park <kmpark@infradead.org>
10465 Date:   Thu Nov 13 15:14:33 2008 +0900
10466
10467     Add markbad function
10468
10469     Add missing markbad function
10470     If not, it's hang when it entered the mtd->mark_bad().
10471
10472     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10473
10474 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
10475 Author: Stefan Roese <sr@denx.de>
10476 Date:   Wed Nov 12 13:47:24 2008 +0100
10477
10478     OneNAND: Bad block aware read/write command support
10479
10480     Update OneNAND command to support bad block awareness.
10481     Also change the OneNAND command style to better match the
10482     NAND version.
10483
10484     Signed-off-by: Stefan Roese <sr@denx.de>
10485     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
10486
10487 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
10488 Author: Stefan Roese <sr@denx.de>
10489 Date:   Tue Nov 11 10:29:09 2008 +0100
10490
10491     OneNAND: Save version_id in onenand_chip struct
10492
10493     The version (ver_id) was not stored in the onenand_chip structure and
10494     because of this the continuous locking scheme could be enabled on some
10495     chips.
10496
10497     Signed-off-by: Stefan Roese <sr@denx.de>
10498
10499 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
10500 Author: Stefan Roese <sr@denx.de>
10501 Date:   Tue Nov 11 10:28:53 2008 +0100
10502
10503     OneNAND: Fix compiler warnings
10504
10505     Signed-off-by: Stefan Roese <sr@denx.de>
10506
10507 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
10508 Author: Dave Liu <daveliu@freescale.com>
10509 Date:   Tue Nov 4 14:55:06 2008 +0800
10510
10511     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
10512
10513     Signed-off-by: Dave Liu <daveliu@freescale.com>
10514
10515 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
10516 Author: Kyungmin Park <kmpark@infradead.org>
10517 Date:   Tue Nov 4 09:24:07 2008 +0900
10518
10519     Sync with 2.6.27
10520
10521     Sync with OneNAND kernel codes
10522
10523     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10524
10525 commit e7f325be9edeb84bb457301776bbac1f7257dafc
10526 Author: Michal Simek <monstr@monstr.eu>
10527 Date:   Mon Jan 5 13:35:31 2009 +0100
10528
10529     microblaze: Use cache functions (especially cache status)
10530     in systems which are configured without flash
10531
10532 commit e9b737deb2c30125362d20e24170617476026e94
10533 Author: Michal Simek <monstr@monstr.eu>
10534 Date:   Mon Jan 5 13:29:32 2009 +0100
10535
10536     microblaze: Add cache flush
10537
10538 commit b4f8dda35bfad447b4106828232705b2e878d168
10539 Author: Michal Simek <monstr@monstr.eu>
10540 Date:   Mon Jan 5 13:28:40 2009 +0100
10541
10542     microblaze: Add bootup messages to board.c
10543
10544 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
10545 Author: Michal Simek <monstr@monstr.eu>
10546 Date:   Fri Dec 19 13:25:55 2008 +0100
10547
10548     microblaze: Change microblaze-generic config file
10549
10550     Signed-off-by: Michal Simek <monstr@monstr.eu>
10551
10552 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
10553 Author: Michal Simek <monstr@monstr.eu>
10554 Date:   Fri Dec 19 13:14:05 2008 +0100
10555
10556     microblaze: Rename ml401 to microblaze-generic
10557
10558     Signed-off-by: Michal Simek <monstr@monstr.eu>
10559
10560 commit 6677876181cc8772bca8a372479a500d160f3993
10561 Author: Scott Wood <scottwood@freescale.com>
10562 Date:   Tue Jan 20 11:56:11 2009 -0600
10563
10564     83xx: Use the proper sequence for updating IMMR.
10565
10566     This ensures that subsequent accesses properly hit the new window.
10567
10568     The dcbi during the NAND loop was accidentally working around this;
10569     it's no longer necessary, as the cache is not enabled.
10570
10571     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
10572     Signed-off-by: Scott Wood <scottwood@freescale.com>
10573     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10574
10575 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
10576 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10577 Date:   Thu Jan 8 04:26:19 2009 +0300
10578
10579     mpc83xx: Add PCI-E support for MPC837XEMDS boards
10580
10581     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
10582     provides two PCI-E (x2) ports. Though, only one port can be used in x2
10583     mode. Two ports can function simultaneously in x1 mode.
10584
10585     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
10586
10587     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10588     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10589
10590 commit 8f11e34b31a7be124a3239653f33af9510502045
10591 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10592 Date:   Thu Jan 8 04:26:17 2009 +0300
10593
10594     mpc83xx: Add PCI-E support for MPC8315ERDB boards
10595
10596     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
10597     support them.
10598
10599     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10600     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10601
10602 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
10603 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10604 Date:   Thu Jan 8 04:26:12 2009 +0300
10605
10606     mpc83xx: Add support for MPC83xx PCI-E controllers
10607
10608     This patch adds support for MPC83xx PCI-E controllers in Root Complex
10609     mode.
10610
10611     The patch is based on Tony Li and Dave Liu work[1].
10612
10613     Though unlike the original patch, by default we don't register PCI-E
10614     buses for use in U-Boot, we only configure the controllers for future
10615     use in other OSes (Linux). This is done because we don't have enough
10616     of spare BATs to map all the PCI-E regions.
10617
10618     To actually use PCI-E in U-Boot, users should explicitly define
10619     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
10620     only then U-Boot will able to access PCI-E, but at the cost of disabled
10621     address translation.
10622
10623     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
10624
10625     Signed-off-by: Tony Li <tony.li@freescale.com>
10626     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10627     Acked-by: Dave Liu <daveliu@freescale.com>
10628     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10629
10630 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
10631 Author: Ira Snyder <iws@ovro.caltech.edu>
10632 Date:   Mon Jan 12 13:33:17 2009 -0800
10633
10634     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
10635
10636     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
10637     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
10638     "Clocking in PCI Agent Mode".
10639
10640     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
10641     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10642
10643 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
10644 Author: Ira Snyder <iws@ovro.caltech.edu>
10645 Date:   Mon Jan 12 13:32:26 2009 -0800
10646
10647     83xx: PCI agent mode fixes for multi-board systems
10648
10649     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
10650     the boards will lock up the PCI bus by scanning against each other.
10651
10652     The boards lock against each other by trying to access the PCI bus before
10653     clearing their configuration lock bit. Both boards end up in a loop,
10654     sending and receiving "Target Not Ready" messages forever.
10655
10656     When running in PCI agent mode, the scanning now takes place after the
10657     boards have cleared their configuration lock bit.
10658
10659     Also, add a missing declaration to the mpc83xx.h header file, fixing a
10660     build warning.
10661
10662     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
10663     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10664
10665 commit 455a46915b82896cc2070eb326d075555c2bc580
10666 Author: Ron Madrid <ron_madrid@sbcglobal.net>
10667 Date:   Fri Dec 12 13:12:45 2008 -0800
10668
10669     mpc83xx: Size optimization of start.S
10670
10671     Currently there are in excess of 100 bytes located at the beginning of the image
10672     built by start.S that are not being utilized.  This patch moves a few functions
10673     into this part of the image.  This will create a greater number of *available*
10674     bytes that can be used by board specific code in NAND builds and will decrease
10675     the size of the assembled code in other builds.
10676
10677     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
10678     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10679
10680 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
10681 Author: Wolfgang Denk <wd@denx.de>
10682 Date:   Wed Jan 21 23:08:12 2009 +0100
10683
10684     Prepare v2009.01
10685
10686     Signed-off-by: Wolfgang Denk <wd@denx.de>
10687
10688 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
10689 Author: Wolfgang Denk <wd@denx.de>
10690 Date:   Sun Jan 18 21:37:48 2009 +0100
10691
10692     Prepare 2009.01-rc3
10693
10694     Update CHANGELOG
10695
10696     Signed-off-by: Wolfgang Denk <wd@denx.de>
10697
10698 commit 4cda437898f7873752f0201757cd33f12196ce87
10699 Author: Mike Frysinger <vapier@gentoo.org>
10700 Date:   Sat Jan 17 13:32:42 2009 -0500
10701
10702     build system: treat all Darwin's alike
10703
10704     The x86 based version of Darwin behaves the same quirky way as the powerpc
10705     Darwin, so only check HOSTOS when setting up Darwin workarounds.
10706
10707     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10708
10709 commit c088a108c75db565e07292fd668dfa5491e85bc2
10710 Author: Peter Korsgaard <jacmet@sunsite.dk>
10711 Date:   Wed Jan 14 13:52:24 2009 +0100
10712
10713     fdt_resize(): fix actualsize calculations with unaligned blobs
10714
10715     The code in fdt_resize() to extend the fdt size to end on a page boundary
10716     is wrong for fdt's not located at an address aligned on a page boundary.
10717     What's even worse, the code would make actualsize shrink rather than grow
10718     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
10719     causing fdt_add_mem_rsv to fail.
10720
10721     Fix it by aligning end address (blob + size) to a page boundary instead.
10722     For aligned fdt's this is equivalent to what we had before.
10723
10724     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
10725
10726 commit fadad1573fb16c90025f08a2861d6047d093cba7
10727 Author: Mike Frysinger <vapier@gentoo.org>
10728 Date:   Fri Jan 9 04:38:17 2009 -0500
10729
10730     ncb: use socklen_t
10731
10732     The recvfrom() function takes a socklen_t, not an int.
10733
10734     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10735
10736 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
10737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10738 Date:   Sun Jan 11 16:35:16 2009 +0100
10739
10740     sh: serial: use readx/writex accessors
10741
10742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10743     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10744
10745 commit 9e1fa628bdb64745811cdd26c4f953846c076180
10746 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10747 Date:   Sun Jan 11 16:35:15 2009 +0100
10748
10749     sh: serial: coding style cleanup
10750
10751     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10752     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10753
10754 commit c9935c992575922b7ef13eec0656ed8665d324e3
10755 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10756 Date:   Sun Jan 11 17:48:56 2009 +0900
10757
10758     sh: Fix compile error on lowlevel_init file
10759
10760     lowlevel_init of SH was corrected to use the write/readXX macro.
10761     However, there was a problem that was not able to be compiled partially.
10762     This patch corrected this.
10763
10764     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10765
10766 commit a5b04d00bfeb940c62232972ce644d50b45797f9
10767 Author: Kieran Bingham <kieranbingham@gmail.com>
10768 Date:   Tue Dec 30 01:16:03 2008 +0000
10769
10770     sh: Fix up rsk7203 target for out of tree build
10771
10772     Fix up rsk7203 target to build successfully using out-of-tree build.
10773
10774     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
10775     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10776
10777 commit f7e78f3b74aae9caca2997bad865a72338326c0a
10778 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10779 Date:   Sat Dec 20 19:29:49 2008 +0100
10780
10781     sh: use write{8,16,32} in all lowlevel_init
10782
10783     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10784     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10785
10786 commit e4430779623af500de1cee7892c379f07ef59813
10787 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10788 Date:   Sat Dec 20 19:29:48 2008 +0100
10789
10790     sh: lowlevel_init coding style cleanup
10791
10792     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10793     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10794
10795 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
10796 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10797 Date:   Sat Dec 20 15:27:45 2008 +0100
10798
10799     sh: update sh2/sh2a timer coding style
10800
10801     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10802     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10803
10804 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
10805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10806 Date:   Sat Dec 20 15:25:22 2008 +0100
10807
10808     sh: update sh timer coding style
10809
10810     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10811     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10812
10813 commit 0e3ece33801e377be67ffa29f083421ad820f28b
10814 Author: Wolfgang Denk <wd@denx.de>
10815 Date:   Wed Jan 14 23:26:05 2009 +0100
10816
10817     Prepare 2009.01-rc2
10818
10819     Update CHANGELOG.
10820
10821     Signed-off-by: Wolfgang Denk <wd@denx.de>
10822
10823 commit e92c9a860e44c14513c8909ce4299e253a775eeb
10824 Author: Wolfgang Denk <wd@denx.de>
10825 Date:   Wed Jan 14 22:35:30 2009 +0100
10826
10827     cpu/mpc824x/Makefile: fix warning with parallel builds
10828
10829     Parallel builds would occasionally issue this build warning:
10830
10831         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
10832
10833     Use "ln -sf" as quick work around for the issue.
10834
10835     Signed-off-by: Wolfgang Denk <wd@denx.de>
10836
10837 commit 3ba605d4beec649438539e7df97b5fedb26592fb
10838 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10839 Date:   Fri Jan 2 12:18:49 2009 +0100
10840
10841     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
10842
10843     This patch adds esd's loadpci BSP command to CPCI4052 and
10844     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
10845
10846     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10847     Signed-off-by: Stefan Roese <sr@denx.de>
10848
10849 commit 600fe46fb3dab7f07604f9009904f31584415114
10850 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10851 Date:   Fri Jan 2 12:18:12 2009 +0100
10852
10853     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
10854
10855     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10856     Signed-off-by: Stefan Roese <sr@denx.de>
10857
10858 commit f6a1f490d224c600a09137e58d1026d150b8e679
10859 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10860 Date:   Fri Jan 2 12:17:36 2009 +0100
10861
10862     ppc4xx: Cleanup CPCI405 board code
10863
10864     This patch cleans up CPCI405 board support:
10865     - wrap long lines
10866     - unification of spaces in function calls
10867     - remove dead code
10868
10869     Use correct io accessors on peripherals.
10870
10871     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10872     Signed-off-by: Stefan Roese <sr@denx.de>
10873
10874 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
10875 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10876 Date:   Fri Jan 2 12:16:35 2009 +0100
10877
10878     ppc4xx: Enable auto RS485 mode on PLU405 boards
10879
10880     This patch turns on the auto RS485 mode in the 2nd external
10881     uart on PLU405 boards. This is a special mode of the used
10882     Exar XR16C2850 uart. Because these boards only have a 485 physical
10883     layer connected it's a good idea to turn it on by default.
10884
10885     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10886     Signed-off-by: Stefan Roese <sr@denx.de>
10887
10888 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
10889 Author: Haiying Wang <Haiying.Wang@freescale.com>
10890 Date:   Tue Jan 13 16:29:28 2009 -0500
10891
10892     Some changes of TLB entry setting for MPC8572DS
10893
10894     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
10895     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
10896     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
10897
10898     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
10899
10900     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10901
10902 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
10903 Author: Haiying Wang <Haiying.Wang@freescale.com>
10904 Date:   Tue Jan 13 16:29:22 2009 -0500
10905
10906     Change DDR tlb start entry to CONFIG param for 85xx
10907
10908     So that we can locate the DDR tlb start entry to the value other than 8. By
10909     default, it is still 8.
10910
10911     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10912
10913 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
10914 Author: Roy Zang <tie-fei.zang@freescale.com>
10915 Date:   Fri Jan 9 16:02:35 2009 +0800
10916
10917     Change PCIE1&2 deciide logic on MPC8544DS board more readable
10918
10919     The IO port selection for MPC8544DS board:
10920      Port                       cfg_io_ports
10921      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
10922      PCIE2              0x4, 0x5, 0x6, 0x7
10923      PCIE3              0x6, 0x7
10924      This patch changes the PCIE12 and PCIE2 logic more readable.
10925     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10926
10927 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
10928 Author: Roy Zang <tie-fei.zang@freescale.com>
10929 Date:   Fri Jan 9 16:01:52 2009 +0800
10930
10931     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
10932
10933     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
10934     PCIE1 bit.
10935     On MPC8572DS board, PCIE refers to PCIE1.
10936     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10937
10938 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
10939 Author: Roy Zang <tie-fei.zang@freescale.com>
10940 Date:   Fri Jan 9 16:00:55 2009 +0800
10941
10942     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
10943
10944     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
10945      This patch fixes this issue.
10946      For MPC8572
10947      Port                       cfg_io_ports
10948      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
10949      PCIE2              0x3, 0x7
10950      PCIE3              0x7
10951
10952     For MPC8544
10953     Port                        cfg_io_ports
10954     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
10955     PCIE2               0x4, 0x5, 0x6, 0x7
10956     PCIE3               0x6, 0x7
10957     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10958
10959 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
10960 Author: Becky Bruce <beckyb@kernel.crashing.org>
10961 Date:   Wed Dec 3 22:36:44 2008 -0600
10962
10963     mpc8610hpcd: Fix PCI mapping concepts
10964
10965     Rename _BASE to _BUS, as it's actually a PCI bus address,
10966     separate virtual and physical addresses into _VIRT and _PHYS,
10967     and use each appopriately.  This makes the code easier to read
10968     and understand, and facilitates mapping changes going forward.
10969
10970     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10971
10972 commit 79e436cad3b4a7db88408c3f05175028f30d700d
10973 Author: Becky Bruce <beckyb@kernel.crashing.org>
10974 Date:   Wed Dec 3 22:36:26 2008 -0600
10975
10976     sbc8641d: Fix PCI mapping concepts
10977
10978     Rename _BASE to _BUS, as it's actually a PCI bus address,
10979     separate virtual and physical addresses into _VIRT and _PHYS,
10980     and use each appopriately.  This makes the code easier to read
10981     and understand, and facilitates mapping changes going forward.
10982
10983     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10984
10985 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
10986 Author: Wolfgang Denk <wd@denx.de>
10987 Date:   Mon Jan 12 14:50:35 2009 +0100
10988
10989     MPC86xx: fix build warnings
10990
10991     Signed-off-by: Wolfgang Denk <wd@denx.de>
10992
10993 commit 032a1c934ef4dc003281f57302b6e693062c1868
10994 Author: Mike Frysinger <vapier@gentoo.org>
10995 Date:   Mon Jan 5 16:09:44 2009 -0500
10996
10997     bf537-stamp/nand: fix board_nand_init prototype
10998
10999     The board_nand_init() function should return an int, not void.
11000
11001     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11002
11003 commit 687f952e4119594ab913be11c90f7f018c2a7a79
11004 Author: Mike Frysinger <vapier@gentoo.org>
11005 Date:   Thu Dec 11 07:04:48 2008 -0500
11006
11007     Blackfin: drop CONFIG_SPI handling in board init
11008
11009     The eeprom SPI init functions are duplicated as the common code already
11010     executes these for us.
11011
11012     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11013
11014 commit e7e684b10d73a303902208594c7c3e7e0d753282
11015 Author: Mike Frysinger <vapier@gentoo.org>
11016 Date:   Fri Oct 24 17:51:57 2008 -0400
11017
11018     Blackfin: fix out-of-tree building with ldscripts
11019
11020     Many of the Blackfin board linker scripts are preprocessed, so make sure we
11021     output the linker script into the build tree rather than the source tree.
11022
11023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11024
11025 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
11026 Author: Mike Frysinger <vapier@gentoo.org>
11027 Date:   Fri Oct 24 17:48:54 2008 -0400
11028
11029     Blackfin: fix linker scripts to work with --gc-sections
11030
11031     Make sure all .text sections get pulled in and the entry point is properly
11032     referenced so they don't get discarded when linking with --gc-sections.
11033
11034     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11035
11036 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
11037 Author: Mike Frysinger <vapier@gentoo.org>
11038 Date:   Sat Oct 11 20:45:44 2008 -0400
11039
11040     Blackfin: set proper LDRFLAGS for parallel booting LDRs
11041
11042     In order to boot an LDR out of parallel flash, the ldr utility needs a few
11043     flags to tell it to generate the right header.
11044
11045     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11046
11047 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
11048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11049 Date:   Tue Jan 6 21:41:59 2009 +0100
11050
11051     at91rm9200: move define from lowlevel_init to header
11052
11053     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11054
11055 commit 8a48686fac2030287765f1970ea046bd5734b733
11056 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11057 Date:   Sat Jan 3 17:22:26 2009 +0100
11058
11059     m501sk: move to the common memory setup
11060
11061     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11062
11063 commit d481c80d78f954133c035dae6c7d22de3625795d
11064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11065 Date:   Sat Jan 3 17:22:25 2009 +0100
11066
11067     at91rm9200: rename lowlevel init value to CONFIG_SYS_
11068
11069     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11070
11071 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
11072 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
11073 Date:   Tue Jan 6 21:13:14 2009 +0100
11074
11075     at91: add at91sam9xeek board support
11076
11077     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
11078     it as another entry for at91sam9260 in the Makefile.
11079
11080     Check documentation at :
11081     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
11082
11083     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
11084     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11085
11086 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
11087 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11088 Date:   Tue Jan 6 21:15:57 2009 +0100
11089
11090     fix bmp_logo.h make dependencies to allow parallel build
11091
11092     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11093
11094 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
11095 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11096 Date:   Sat Jan 3 17:22:24 2009 +0100
11097
11098     at91: Fix Atmel's at91sam9 boards out of tree build
11099
11100     introduced in commit 89a7a87f084c
11101
11102     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11103
11104 commit 0668236bafaa1c11c521652a2facebc74beecbf0
11105 Author: Wolfgang Denk <wd@denx.de>
11106 Date:   Tue Dec 30 22:56:11 2008 +0100
11107
11108     README: update mailing list name and hits to patch submission.
11109
11110     Signed-off-by: Wolfgang Denk <wd@denx.de>
11111
11112 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
11113 Author: Peter Tyser <ptyser@xes-inc.com>
11114 Date:   Tue Dec 23 16:32:01 2008 -0600
11115
11116     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
11117
11118     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11119
11120 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
11121 Author: Peter Tyser <ptyser@xes-inc.com>
11122 Date:   Tue Dec 23 16:32:00 2008 -0600
11123
11124     XPedite5200 board support cleanup
11125
11126     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11127
11128 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
11129 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11130 Date:   Tue Dec 2 21:58:04 2008 +0100
11131
11132     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
11133
11134     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11135     Signed-off-by: Remy Böhmer <linux@bohmer.net>
11136
11137 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
11138 Author: Trent Piepho <tpiepho@freescale.com>
11139 Date:   Wed Dec 3 15:16:37 2008 -0800
11140
11141     mpc8[56]xx: Put localbus clock in sysinfo and gd
11142
11143     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
11144     and print it out, but don't save it.
11145
11146     This changes where its calculated and stored to be more consistent with the
11147     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
11148
11149     The localbus frequency is added to sysinfo and calculated when sysinfo is
11150     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
11151
11152     get_clocks() copies the frequency into the global data, as the other
11153     frequencies are, into a new field that is only enabled for MPC85xx and
11154     MPC86xx.
11155
11156     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
11157     from sysinfo, like the other frequencies, instead of calculating it on the
11158     spot.
11159
11160     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11161     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11162     Acked-by: Jon Loeliger <jdl@freescale.com>
11163
11164 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
11165 Author: Trent Piepho <tpiepho@freescale.com>
11166 Date:   Wed Dec 3 15:16:36 2008 -0800
11167
11168     mpc86xx: Double local bus clock divider
11169
11170     The local bus clock divider should be doubled for both 8610 and 8641.
11171
11172     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11173     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11174     Acked-by: Jon Loeliger <jdl@freescale.com>
11175
11176 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
11177 Author: Trent Piepho <tpiepho@freescale.com>
11178 Date:   Wed Dec 3 15:16:35 2008 -0800
11179
11180     mpc8568: Double local bus clock divider
11181
11182     The clock divider for the MPC8568 local bus should be doubled, like the
11183     other newer MPC85xx chips.
11184
11185     Since there are now more chips with a 2x divider than a 1x, and any new
11186     85xx chips will probably be 2x, invert the sense of the #if so that it
11187     lists the 1x chips instead of the 2x ones.
11188
11189     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11190     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11191     Acked-by: Jon Loeliger <jdl@freescale.com>
11192
11193 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
11194 Author: Dave Liu <daveliu@freescale.com>
11195 Date:   Tue Dec 16 12:09:27 2008 +0800
11196
11197     85xx: Fix the boot window issue
11198
11199     If one custom board is using the 8MB flash, it is set
11200     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
11201     The current start.S code will be broken at switch_as.
11202
11203     It is because the TLB1[15] is set as 16MB page size,
11204     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
11205
11206     For the 8MB flash case, the EPN = 0xefxxxxxx,
11207     RPN = 0xffxxxxxx. Assume the virt address of switch_as
11208     is 0xef7ff18c, the real address of the instruction at
11209     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
11210     of the range of the default 8MB boot LAW window
11211     0xff800000 - 0xffffffff.
11212
11213     So when we switch to AS1 address space at switch_as,
11214     the core can't fetch the instruction at switch_as any
11215     more. It will cause broken issue.
11216
11217     Signed-off-by: Dave Liu <daveliu@freescale.com>
11218
11219 commit 58da8890d5fbd074746037722a423de9ac408616
11220 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
11221 Date:   Thu Dec 11 15:47:50 2008 -0500
11222
11223     sbc8548: use proper PHY address
11224
11225     The values given for the PHY address were wrong, so the code
11226     read no valid PHY ID, and fell through to the generic PHY
11227     support, which would work on 1000M but would not auto negotiate
11228     down to 100M or 10M.
11229
11230     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
11231
11232 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
11233 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
11234 Date:   Thu Dec 11 15:47:51 2008 -0500
11235
11236     sbc8548: enable command line editing by default.
11237
11238     Lets make things a bit more user friendly.  It isn't 1985 anymore.
11239
11240     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
11241
11242 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
11243 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
11244 Date:   Thu Dec 11 15:47:49 2008 -0500
11245
11246     sbc8548: don't enable the 3rd and 4th eTSEC
11247
11248     These interfaces don't have usable connectors on the board, so don't
11249     bother enumerating or configuring them.
11250
11251     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
11252
11253 commit 181a3650113883728927928b3ac81ad6dade4b2c
11254 Author: Haiying Wang <Haiying.Wang@freescale.com>
11255 Date:   Wed Dec 3 10:08:19 2008 -0500
11256
11257     Set IVPR to kenrel entry point in second core boot page
11258
11259     Assuming the OSes exception vectors start from the base of kernel address, and
11260     the kernel physical starting address can be relocated to an non-zero address.
11261     This patch enables the second core to have a valid IVPR for debugger before
11262     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
11263     value for second core which runs kernel at different physical address other
11264     than 0x0.
11265
11266     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
11267
11268 commit a5d212a263c58cc746481bf1fc878510533ce7d6
11269 Author: Trent Piepho <tpiepho@freescale.com>
11270 Date:   Wed Dec 3 15:16:34 2008 -0800
11271
11272     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
11273
11274     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
11275     instead of four.
11276
11277     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
11278     should be safe as the fifth bit was defined as reserved and set to 0.
11279
11280     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
11281
11282     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11283     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11284     Acked-by: Jon Loeliger <jdl@freescale.com>
11285
11286 commit 58ec4866ed916c7e422f5107bb27b0822084728e
11287 Author: Trent Piepho <tpiepho@freescale.com>
11288 Date:   Wed Dec 3 15:16:38 2008 -0800
11289
11290     mpc8[56]xx: Put localbus clock in device tree
11291
11292     Export the localbus frequency in the device tree, the same way the CPU, TB,
11293     CCB, and various other frequencies are exported in their respective device
11294     tree nodes.
11295
11296     Some localbus devices need this information to be programed correctly, so
11297     it makes sense to export it along with the other frequencies.
11298
11299     Unfortunately, when someone wrote the localbus dts bindings, they didn't
11300     bother to define what the "compatible" property should be.  So it seems no
11301     one was quite sure what to put in their dts files.
11302
11303     Based on current existing dts files in the kernel source, I've used
11304     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
11305     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
11306     apparently not entirely backward compatible with the pq3 LBC and so eLBC
11307     equipped platforms like 8572 won't use pq3-localbus.
11308
11309     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
11310     and is also looked for by the Linux code.  On MPC8641, I've also used
11311     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
11312     which don't use "fsl,elbc" or any other acceptable name to match on.
11313
11314     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11315     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11316     Acked-by: Jon Loeliger <jdl@freescale.com>
11317
11318 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
11319 Author: Kumar Gala <galak@kernel.crashing.org>
11320 Date:   Tue Dec 16 14:59:22 2008 -0600
11321
11322     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
11323
11324     The current code that determines which bank/chipselect is used for a
11325     given NAND instance only worked for 32-bit addresses and assumed
11326     a 1:1 mapping.  This breaks in 36-bit physical configs.
11327
11328     The proper way to handle this is to use the virt_to_phys() and
11329     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
11330     with the the virtual address the NAND code uses.
11331
11332     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11333     Acked-by: Scott Wood <scottwood@freescale.com>
11334
11335 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
11336 Author: Kumar Gala <galak@kernel.crashing.org>
11337 Date:   Tue Dec 16 14:59:21 2008 -0600
11338
11339     ppc: Use addrmap in virt_to_phys and map_physmem.
11340
11341     If we have addr map support enabled use the mapping functions to
11342     implement virt_to_phys() and map_physmem().
11343
11344     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11345
11346 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
11347 Author: Kumar Gala <galak@kernel.crashing.org>
11348 Date:   Tue Dec 16 14:59:20 2008 -0600
11349
11350     85xx: Add support to populate addr map based on TLB settings
11351
11352     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11353
11354 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
11355 Author: Peter Tyser <ptyser@xes-inc.com>
11356 Date:   Mon Dec 1 13:47:13 2008 -0600
11357
11358     XPedite5200 board support
11359
11360     Initial support for Extreme Engineering Solutions XPedite5200 -
11361     a MPC8548-based PMC single board computer.
11362
11363     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11364
11365 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
11366 Author: Peter Tyser <ptyser@xes-inc.com>
11367 Date:   Wed Oct 29 12:39:27 2008 -0500
11368
11369     85xx: Enable inbound PCI config cycles for X-ES boards
11370
11371     Update X-ES Freescale boards to allow inbound PCI configuration
11372     cycles when configured as agent/endpoint.
11373
11374     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11375
11376 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
11377 Author: Peter Tyser <ptyser@xes-inc.com>
11378 Date:   Wed Dec 17 16:36:23 2008 -0600
11379
11380     XPedite5370 board support
11381
11382     Initial support for Extreme Engineering Solutions XPedite5370 -
11383     a MPC8572-based 3U VPX single board computer with a PMC/XMC
11384     site.
11385
11386     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11387
11388 commit e92739d34e2d6b6aca93b2598248210710897ce8
11389 Author: Peter Tyser <ptyser@xes-inc.com>
11390 Date:   Wed Dec 17 16:36:21 2008 -0600
11391
11392     Add support for PCA953x I2C gpio devices
11393
11394     Initial support for NXP's 4 and 8 bit I2C gpio expanders
11395     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
11396     enables support for the devices while the CONFIG_CMD_PCA953X
11397     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
11398     define enables an 'info' sub-command which provides summary
11399     information for the given pca953x device.
11400
11401     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11402
11403 commit 7a8979591171676417ab36852d8811a8c46accd8
11404 Author: Peter Tyser <ptyser@xes-inc.com>
11405 Date:   Wed Oct 29 12:39:26 2008 -0500
11406
11407     pci/fsl_pci_init: Enable inbound PCI config cycles
11408
11409     Add fsl_pci_config_unlock() function to enable a
11410     PCI/PCIe interface configured in agent/endpoint mode to
11411     respond to inbound PCI configuration cycles.
11412
11413     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11414
11415 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
11416 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11417 Date:   Wed Dec 17 16:43:18 2008 +0100
11418
11419     avr32: Remove second definition of virt_to_phys()
11420
11421     The second definition introduced by 65e43a1063 conflicts with the
11422     existing one.
11423
11424     Also, convert the existing definition to use phys_addr_t. The volatile
11425     qualifier is still needed due to brain damage elsewhere.
11426
11427     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11428
11429 commit b616f2b545f73757669b37386f0b37bb61fc6797
11430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11431 Date:   Mon Sep 8 22:27:18 2008 +0200
11432
11433     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
11434
11435     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11436     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11437
11438 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
11439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11440 Date:   Tue Dec 16 22:10:31 2008 +0100
11441
11442     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
11443
11444     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11445     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11446
11447 commit 13095b2f07dacb1f863772266c1789d47a523a8a
11448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11449 Date:   Tue Dec 16 22:10:30 2008 +0100
11450
11451     MIPS: qemu_mips: move env storage just after u-boot
11452
11453     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11454     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11455
11456 commit aced78d852d0b009e8aaa1445af8cb40861ee549
11457 Author: Wolfgang Denk <wd@denx.de>
11458 Date:   Tue Dec 16 23:48:27 2008 +0100
11459
11460     Prepare 2009.01-rc1
11461
11462     Signed-off-by: Wolfgang Denk <wd@denx.de>
11463
11464 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
11465 Author: Wolfgang Denk <wd@denx.de>
11466 Date:   Tue Dec 16 23:13:46 2008 +0100
11467
11468     include/configs/at91cap9adk.h: fix typo.
11469
11470     Signed-off-by: Wolfgang Denk <wd@denx.de>
11471
11472 commit 45ca04f2377361593151d2d4da51f8ba4832d233
11473 Author: Wolfgang Denk <wd@denx.de>
11474 Date:   Tue Dec 16 22:32:25 2008 +0100
11475
11476     board/trab/memory.c: Fix compile problems.
11477
11478     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
11479
11480     Actually we'd need a major cleanup here - as it turns out,
11481     board/trab/memory.c is more or less a verbatim copy of
11482     post/drivers/memory.c ... but then, trab is EOL anyway,r
11483     so this is not worth the effort.
11484
11485     Signed-off-by: Wolfgang Denk <wd@denx.de>
11486
11487 commit ff49ea8977b56916edd5b1766d9939010e30b181
11488 Author: Scott Wood <scottwood@freescale.com>
11489 Date:   Tue Dec 16 14:24:16 2008 -0600
11490
11491     NAND: Mark the BBT as scanned prior to calling scan_bbt.
11492
11493     Otherwise, recursion can occur if scan_bbt does not find a bad block
11494     table, and tries to write one, and the attempt to erase the BBT area
11495     causes a bad block check.
11496
11497     Signed-off-by: Scott Wood <scottwood@freescale.com>
11498
11499 commit 584eedab66d0828f2d571a24b10526c4e65f547b
11500 Author: Ilya Yanok <yanok@emcraft.com>
11501 Date:   Thu Dec 11 05:51:57 2008 +0300
11502
11503     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
11504
11505     Include <linux/mtd/compat.h> header for min_t definition instead of
11506     providing our own one. Removes warnings in case of OneNAND support
11507     enabled.
11508
11509     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
11510     just for min_t...
11511
11512     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11513     Acked-by: Stefan Roese <sr@denx.de>
11514
11515 commit b1ffecec37b57a59c139042267faac458e5324e9
11516 Author: Becky Bruce <beckyb@kernel.crashing.org>
11517 Date:   Wed Dec 3 23:04:37 2008 -0600
11518
11519     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
11520
11521     Casting a pointer to a phys_addr_t when it's an unsigned long long
11522     on a 32-bit system without first casting to a non-pointer type
11523     generates a compiler warning. Fix this.
11524
11525     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
11526
11527 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
11528 Author: Wolfgang Denk <wd@denx.de>
11529 Date:   Tue Dec 16 16:22:50 2008 +0100
11530
11531     trab: make trab_fkt standalone code independent of libgcc
11532
11533     Use our own local functions in lib_arm/ instead.
11534
11535     Signed-off-by: Wolfgang Denk <wd@denx.de>
11536
11537 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
11538 Author: Wolfgang Denk <wd@denx.de>
11539 Date:   Tue Dec 16 14:44:06 2008 +0100
11540
11541     post/Makefile: fix dependency problem with parallel builds
11542
11543     Parallel builds (using "make -jN") would occasionally fail with error
11544     messages like
11545         ppc_4xxFP-objdump: string.o: File format not recognized
11546     or
11547         post/libpost.a(cpu.o): In function `cpu_post_test':
11548         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
11549     or similar. We now make sure to run the 'postdeps" step before
11550     attempting to build the specific POST libraries.
11551
11552     Signed-off-by: Wolfgang Denk <wd@denx.de>
11553
11554 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
11555 Author: Wolfgang Denk <wd@denx.de>
11556 Date:   Tue Dec 16 14:41:02 2008 +0100
11557
11558     Makefile: fix dependency problem with parallel builds
11559
11560     Parallel builds (using "make -jN") would occasionally fail with error
11561     messages like
11562         include/autoconf.mk:212: *** missing separator.  Stop.
11563     Line numbers and affected boards were changing. Obviously some
11564     Makefiles included autoconf.mk while it was still being written to.
11565     As a fix, we now write to a temporary file first and then rename it,
11566     so that it is really ready to use as soon as it appears.
11567
11568     Signed-off-by: Wolfgang Denk <wd@denx.de>
11569
11570 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
11571 Author: Wolfgang Denk <wd@denx.de>
11572 Date:   Tue Dec 16 01:02:17 2008 +0100
11573
11574     Coding style cleanup, update CHANGELOG.
11575
11576     Signed-off-by: Wolfgang Denk <wd@denx.de>
11577
11578 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
11579 Author: Mike Frysinger <vapier@gentoo.org>
11580 Date:   Thu Dec 11 18:39:08 2008 -0500
11581
11582     spi/stmicro: fix debug() display of cmd
11583
11584     The stmicro_wait_ready() func tries to show the actual opcode that was sent
11585     to the device, but instead it displays the array pointer.  Fix it to pull
11586     out the opcode from the start of the array.
11587
11588     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11589
11590 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
11591 Author: Mike Frysinger <vapier@gentoo.org>
11592 Date:   Thu Dec 11 06:23:37 2008 -0500
11593
11594     env_sf: support embedded environments
11595
11596     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
11597     size is larger than the env size, then it means the env is embedded in a
11598     block.  So we have to save/restore the part of the sector which is not the
11599     environment.  Previously, saving the environment in SPI flash in this
11600     setup would probably brick the board as the rest of the sector tends to
11601     contain actual U-Boot data/code.
11602
11603     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11604     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11605
11606 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
11607 Author: Timur Tabi <timur@freescale.com>
11608 Date:   Wed Dec 3 11:28:30 2008 -0600
11609
11610     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
11611
11612     All implementations of the functions i2c_reg_read() and
11613     i2c_reg_write() are identical. We can save space and simplify the
11614     code by converting these functions into inlines and putting them in
11615     i2c.h.
11616
11617     Signed-off-by: Timur Tabi <timur@freescale.com>
11618     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11619
11620 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
11621 Author: Dave Liu <daveliu@freescale.com>
11622 Date:   Fri Dec 5 15:36:14 2008 +0800
11623
11624     lib_ppc: rework the flush_cache
11625
11626     - It is possible to miss flush/invalidate the last
11627       cache line, we fix it at here.
11628     - add the volatile and memory clobber.
11629
11630     They are pointed by Scott Wood.
11631
11632     Signed-off-by: Dave Liu <daveliu@freescale.com>
11633
11634 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
11635 Author: Kumar Gala <galak@kernel.crashing.org>
11636 Date:   Sat Dec 13 17:20:28 2008 -0600
11637
11638     Introduce addr_map library
11639
11640     Add a library that helps in translating between virtual and physical
11641     addresses.  This library can be useful as a simple means to implement
11642     map_physmem() and virt_to_phys() for platforms that need functionality
11643     beyond the simple 1:1 mapping.
11644
11645     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11646
11647 commit 65e43a10631537dcb92c302d36301a12308216c3
11648 Author: Kumar Gala <galak@kernel.crashing.org>
11649 Date:   Sat Dec 13 17:20:27 2008 -0600
11650
11651     Introduce virt_to_phys()
11652
11653     virt_to_phys() returns the physical address given a virtual. In most
11654     cases this will be just the input value as the vast majority of
11655     systems run in a 1:1 mode.
11656
11657     However in systems that are not running this way it should report the
11658     physical address or ~0 if no mapping exists for the given virtual
11659     address.
11660
11661     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11662
11663 commit 45845301af3de8675c1f7bbc815c6de35452605a
11664 Author: Yuri Tikhonov <yur@emcraft.com>
11665 Date:   Sun Dec 7 22:12:50 2008 +0100
11666
11667     POST Make: fix the sub-dir dependencies missing.
11668
11669     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
11670
11671 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
11672 Author: Martin Michlmayr <tbm@cyrius.com>
11673 Date:   Wed Aug 6 14:44:05 2008 +0300
11674
11675     Fix a typo in fw_env.config
11676
11677     Reported-by: Martin Michlmayr <tbm@cyrius.com>
11678     Signed-off-by: Wolfgang Denk <wd@denx.de>
11679
11680 commit ba490b7761c62b549c222a9723e532dc801a3899
11681 Author: Peter Tyser <ptyser@xes-inc.com>
11682 Date:   Mon Dec 1 16:22:45 2008 -0600
11683
11684     Remove unused CONFIG_ADDR_STREAMING defines
11685
11686     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11687
11688 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
11689 Author: Peter Tyser <ptyser@xes-inc.com>
11690 Date:   Mon Nov 24 11:54:47 2008 -0600
11691
11692     cmd_mem: Remove unused variable
11693
11694     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11695
11696 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
11697 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11698 Date:   Sun Dec 14 10:29:39 2008 +0100
11699
11700     Fix new found CFG_
11701
11702     Also fix some minor typos.
11703
11704     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11705     Signed-off-by: Wolfgang Denk <wd@denx.de>
11706
11707 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
11708 Author: Sergei Poselenov <sposelenov@emcraft.com>
11709 Date:   Fri Sep 19 12:07:34 2008 +0200
11710
11711     Remove compiler warning: target CPU does not support interworking
11712
11713     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
11714
11715     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
11716     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
11717
11718 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
11719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11720 Date:   Mon Nov 24 13:33:51 2008 +0100
11721
11722     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
11723
11724     FDT support is used for both FIT style images and for architectures
11725     that can pass a fdt blob to an OS (ppc, m68k, sparc).
11726
11727     For other architectures and boards which do not pass a fdt blob to an
11728     OS but want to use the new uImage format, we just need FIT support.
11729
11730     Now we can have the 4 following configurations :
11731
11732     1) FIT only             CONFIG_FIT
11733     2) fdt blob only        CONFIG_OF_LIBFDT
11734     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
11735     4) none                 none
11736
11737     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11738
11739 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
11740 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11741 Date:   Wed Dec 10 15:13:32 2008 +0100
11742
11743     ppc4xx: Disable EEPROM write access on PMC440 boards
11744
11745     This patch disables EEPROM wrtie access by default on PMC440 board.
11746
11747     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11748
11749 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
11750 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11751 Date:   Wed Dec 10 15:12:56 2008 +0100
11752
11753     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
11754
11755     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11756
11757 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
11758 Author: Stefan Roese <sr@denx.de>
11759 Date:   Tue Nov 18 16:36:12 2008 +0100
11760
11761     MIPS: Flush data cache upon relocation
11762
11763     This patch now adds a flush to the data cache upon relocation. The
11764     current implementation is missing this. Only a comment states that it
11765     should be done. So let's really do it now.
11766
11767     Signed-off-by: Stefan Roese <sr@denx.de>
11768     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11769
11770 commit 44174343688dba32571a34550dba08971c65fef1
11771 Author: Stefan Roese <sr@denx.de>
11772 Date:   Tue Nov 18 16:36:22 2008 +0100
11773
11774     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
11775
11776     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
11777     enables support for boards where the lowlevel initialization is
11778     already done when U-Boot runs (e.g. via OnChip ROM).
11779
11780     This will be used in the upcoming VCTH board support.
11781
11782     Signed-off-by: Stefan Roese <sr@denx.de>
11783     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11784
11785 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
11786 Author: Stefan Roese <sr@denx.de>
11787 Date:   Wed Nov 12 13:18:02 2008 +0100
11788
11789     MIPS: Add board_early_init_f() to init_sequence
11790
11791     This patch adds the board_early_init_f() call to the MIPS init
11792     sequence. A weak dummy implementation is also added which can be
11793     overridden by a board specific version.
11794
11795     This will be used by the upcoming VCTH board support.
11796
11797     Signed-off-by: Stefan Roese <sr@denx.de>
11798     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11799
11800 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
11801 Author: Stefan Roese <sr@denx.de>
11802 Date:   Wed Nov 12 13:18:19 2008 +0100
11803
11804     MIPS: Add onenand_init() to board.c and move nand_init()
11805
11806     This patch adds a call to onenand_init() for OneNAND support and moves
11807     the nand_init() call to an earlier place, so that the environment can
11808     be used from NAND and OneNAND.
11809
11810     Signed-off-by: Stefan Roese <sr@denx.de>
11811     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11812
11813 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
11814 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11815 Date:   Tue Dec 9 11:32:46 2008 +0900
11816
11817     sh: Update sh2/sh2a timer
11818
11819     Renesas SH2/SH2A timer broken.
11820     This patch fix timer function.
11821
11822     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11823     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11824
11825 commit a319f1496210117b73198e3d889ffffaf6825d00
11826 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11827 Date:   Fri Dec 5 07:27:37 2008 +0100
11828
11829     sh: r2dplus fix register access
11830
11831     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11832     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11833
11834 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
11835 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11836 Date:   Tue Dec 2 07:40:03 2008 +0100
11837
11838     sh: r2dplus/lowlevel_init: coding style fix
11839
11840     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11841     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11842
11843 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
11844 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11845 Date:   Tue Nov 25 11:05:19 2008 +0900
11846
11847     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
11848
11849     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
11850     CACHE_OC_WAY_SHIFT every CPU.
11851     This patch corrects these values.
11852
11853     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11854     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11855
11856 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
11857 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11858 Date:   Thu Nov 20 16:44:42 2008 +0900
11859
11860     sh: Update sh timer function
11861
11862     Change to write/readX function and fix timer problem.
11863
11864     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11865     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11866
11867 commit b81786cff476c41e332eaeb679158f6527cd67d4
11868 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11869 Date:   Tue Nov 4 11:58:58 2008 +0900
11870
11871     sh: Migo-R: Update BSC value
11872
11873     A value of BSC CS4 was wrong, Fixed it.
11874
11875     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11876     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11877
11878 commit 5783758fd260a02f44566ad8f29f899565cd0403
11879 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11880 Date:   Mon Nov 17 16:52:09 2008 +0900
11881
11882     sh: Update ms7722se board config
11883
11884     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11885     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11886
11887 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
11888 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11889 Date:   Mon Nov 17 16:53:09 2008 +0900
11890
11891     sh: Update SuperH serial driver
11892
11893     The address of SCFSR register is wrong at SH7720/SH7721.
11894     This patch fix this.
11895
11896     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11897     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11898
11899 commit 9a1d3557dcd47365c12eeab584b822e57d994352
11900 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11901 Date:   Tue Nov 11 22:20:15 2008 +0100
11902
11903     sh: fix rsk7203 and MigoR out of tree build
11904
11905     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11906     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11907
11908 commit 1951f847f0a851853871b613ad7cf21a5242226c
11909 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11910 Date:   Wed Dec 10 14:41:25 2008 +0100
11911
11912     ppc4xx: Update TEXT_BASE for CPCI405 boards
11913
11914     This patch fixes building U-Boot for CPCI405 boards.
11915
11916     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11917     Signed-off-by: Stefan Roese <sr@denx.de>
11918
11919 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
11920 Author: Stefan Roese <sr@denx.de>
11921 Date:   Tue Dec 9 20:08:01 2008 +0100
11922
11923     ppc4xx: Remove some features from ALPR to fit into 256k again
11924
11925     Signed-off-by: Stefan Roese <sr@denx.de>
11926
11927 commit 3b089e4f889a2902449d55e081c886ae607cae89
11928 Author: Stefan Roese <sr@denx.de>
11929 Date:   Wed Dec 10 10:32:59 2008 +0100
11930
11931     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
11932
11933     With this patch we set the type back to NONE upon failing UBI partition
11934     initialization. Otherwise further calls to the UBI subsystem would try
11935     to really access the non-existing UBI partition.
11936
11937     Thanks to Michael Lawnick for pointing this out.
11938
11939     Signed-off-by: Stefan Roese <sr@denx.de>
11940
11941 commit 817329351639a8895cd9b87b33aeff043f3d5a44
11942 Author: Stefan Roese <sr@denx.de>
11943 Date:   Wed Dec 10 10:28:33 2008 +0100
11944
11945     UBI: Return -ENOMEM upon failing malloc
11946
11947     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
11948     failing malloc().
11949
11950     Signed-off-by: Stefan Roese <sr@denx.de>
11951
11952 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
11953 Author: Ben Warren <biggerbadderben@gmail.com>
11954 Date:   Tue Dec 9 23:34:15 2008 -0800
11955
11956     Fix compile error in building MBX860T.
11957
11958     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11959
11960 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
11961 Author: Michal Simek <monstr@monstr.eu>
11962 Date:   Tue Nov 25 11:42:20 2008 +0100
11963
11964     microblaze: Remove XUPV2P board
11965
11966     ---
11967
11968     Microblaze platforms use generic settings and to have
11969     many platforms is confusing that's why I decided to remove this
11970     platform from U-BOOT. ml401 tree is sufficient for covering
11971     all Microblaze platforms.
11972
11973     This change will go through microblaze custodian tree.
11974
11975 commit 99ba6f353582720defff6e6e6761dc455a207d31
11976 Author: Michal Simek <monstr@monstr.eu>
11977 Date:   Mon Nov 24 18:25:41 2008 +0100
11978
11979     microblaze: Remove CONFIG_LIBFDT due to error in common files
11980
11981 commit e7d591e823a991513833af7030468409e25a3b13
11982 Author: Michal Simek <monstr@monstr.eu>
11983 Date:   Mon Nov 24 11:43:00 2008 +0100
11984
11985     microblaze: Fix ml401 uart16550 setting
11986
11987     Signed-off-by: Michal Simek <monstr@monstr.eu>
11988
11989 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
11990 Author: Michal Simek <monstr@monstr.eu>
11991 Date:   Mon Nov 24 11:38:22 2008 +0100
11992
11993     microblaze: Set up relocation is done
11994
11995 commit bcb6dd9187d4b23c748704767bd12d20c829e996
11996 Author: Mike Frysinger <vapier@gentoo.org>
11997 Date:   Tue Dec 9 23:20:31 2008 -0500
11998
11999     tools/netconsole: new script for working with netconsole over UDP
12000
12001     While the doc/README.NetConsole does have a snippet for people to
12002     create their own netcat script, it's a lot easier to make a simple
12003     dedicated script and tell people to use it.
12004
12005     Also spruce it up a bit to make it user friendly.
12006
12007     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12008
12009 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
12010 Author: Sonic Zhang <Sonic.Zhang@analog.com>
12011 Date:   Tue Dec 9 23:20:18 2008 -0500
12012
12013     fs/fat: handle FAT on SATA
12014
12015     The FAT file system driver should also handle FAT on SATA devices.
12016
12017     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
12018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12019
12020 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
12021 Author: Ben Warren <biggerbadderben@gmail.com>
12022 Date:   Tue Dec 9 23:26:31 2008 -0800
12023
12024     Fix compile error in building MBX860T.
12025     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
12026
12027     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12028
12029 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
12030 Author: Jerry Van Baren <gvb.uboot@gmail.com>
12031 Date:   Mon Nov 24 08:15:02 2008 -0500
12032
12033     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
12034
12035     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
12036     following warnings from FDT:
12037
12038     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
12039     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
12040
12041     Fix: Protect the definition of uintptr_t when compiling on the host
12042     system.
12043
12044     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
12045
12046 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
12047 Author: Graeme Russ <graeme.russ@gmail.com>
12048 Date:   Sat Nov 22 08:43:29 2008 +1100
12049
12050     Moved sc520 PCI definitions to stand-alone file
12051
12052     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
12053
12054 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
12055 Author: Graeme Russ <graeme.russ@gmail.com>
12056 Date:   Sat Nov 22 08:43:21 2008 +1100
12057
12058     Fixed path to sc520 SSI include file
12059
12060     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
12061
12062 commit d4f70da544c33db3e4fce6473dea4ecca4322545
12063 Author: Graeme Russ <graeme.russ@gmail.com>
12064 Date:   Fri Nov 21 06:28:05 2008 +1100
12065
12066     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
12067
12068     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12069
12070 commit c034075a713b60e654c64e88e87da29440f31bb4
12071 Author: Stefan Roese <sr@denx.de>
12072 Date:   Wed Nov 12 13:30:10 2008 +0100
12073
12074     serial: Add vcth UART driver
12075
12076     This patch adds the UART driver for the upcoming VCTH board support.
12077
12078     Signed-off-by: Stefan Roese <sr@denx.de>
12079
12080 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
12081 Author: Ilya Yanok <yanok@emcraft.com>
12082 Date:   Thu Nov 13 19:49:36 2008 +0300
12083
12084     jffs2: cache data_crc results
12085
12086     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
12087     jffs2_1pass_read_inode() data_crc is going to be calculated on each
12088     inode access. This patch adds caching of data_crc() results. There
12089     is no significant improvement in speed (because of flash access
12090     caching added in previous patch I think, crc in RAM is really fast)
12091     but this patch impacts memory usage -- every b_node structure uses
12092     12 bytes instead of 8.
12093
12094     Signed-off-by: Alexey Neyman <avn@emcraft.com>
12095     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12096
12097 commit 9b7076229ec6a958bd835ab70745f7676297ce82
12098 Author: Ilya Yanok <yanok@emcraft.com>
12099 Date:   Thu Nov 13 19:49:35 2008 +0300
12100
12101     jffs2: summary support
12102
12103     This patch adds support for reading fs information from summary
12104     node instead of scanning full eraseblock.
12105
12106     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12107
12108 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
12109 Author: Ilya Yanok <yanok@emcraft.com>
12110 Date:   Thu Nov 13 19:49:34 2008 +0300
12111
12112     jffs2: add buffer to cache flash accesses
12113
12114     With this patch JFFS2 code allocates memory buffer of max_totlen size
12115     (size of the largest node, calculated during scan time) and uses it to
12116     store entire node. Speeds up loading. If malloc fails we use old ways
12117     to do things.
12118
12119     Signed-off-by: Alexey Neyman <avn@emcraft.com>
12120     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12121
12122 commit 8a36d31f72411144ac0412ee7e1880e801acd754
12123 Author: Ilya Yanok <yanok@emcraft.com>
12124 Date:   Thu Nov 13 19:49:33 2008 +0300
12125
12126     jffs2: rewrite jffs2 scanning code based on Linux one
12127
12128     Rewrites jffs2_1pass_build_lists() function in style of Linux's
12129     jffs2_scan_medium() and jffs2_scan_eraseblock().
12130     This includes:
12131      - Caching flash acceses
12132      - Smart dealing with free space
12133
12134     Signed-off-by: Alexey Neyman <avn@emcraft.com>
12135     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12136
12137 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
12138 Author: Ilya Yanok <yanok@emcraft.com>
12139 Date:   Thu Nov 13 19:49:32 2008 +0300
12140
12141     jffs2: add sector_size field to part_info structure
12142
12143     This patch adds sector_size field to part_info structure (used
12144     by new JFFS2 code).
12145
12146     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12147
12148 commit f73846956778a7dfee83403ef9747aff77198848
12149 Author: Ilya Yanok <yanok@emcraft.com>
12150 Date:   Thu Nov 13 19:49:31 2008 +0300
12151
12152     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
12153
12154     We need to update i_version inside cycle to find really latest version
12155     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
12156     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
12157
12158     Signed-off-by: Alexey Neyman <avn@emcraft.com>
12159     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12160
12161 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
12162 Author: Wolfgang Denk <wd@denx.de>
12163 Date:   Tue Dec 9 23:13:51 2008 +0100
12164
12165     evb64260: fix "cast to pointer from integer of different size" warnings
12166
12167     Signed-off-by: Wolfgang Denk <wd@denx.de>
12168
12169 commit d2776827315c3d469b8cb4cec14d58877798daa2
12170 Author: Stefan Althoefer <stefan.althoefer@web.de>
12171 Date:   Sun Dec 7 19:39:11 2008 +0100
12172
12173     USB: descriptor handling
12174
12175     Hi,
12176
12177     I found a bug when working with the u-boot USB subsystem on IXP425 processor
12178     (big endian Xscale aka ARMv5).
12179     I recognized that the second usb_endpoint_descriptor of the attached memory
12180     stick was corrupted.
12181
12182     The reason for this are the packed structures below (either u-boot and
12183     u-boot-usb):
12184
12185     --------------
12186     /* Endpoint descriptor */
12187     struct usb_endpoint_descriptor {
12188         unsigned char  bLength;
12189         unsigned char  bDescriptorType;
12190         unsigned char  bEndpointAddress;
12191         unsigned char  bmAttributes;
12192         unsigned short wMaxPacketSize;
12193         unsigned char  bInterval;
12194         unsigned char  bRefresh;
12195         unsigned char  bSynchAddress;
12196
12197     } __attribute__ ((packed));
12198     /* Interface descriptor */
12199     struct usb_interface_descriptor {
12200         unsigned char  bLength;
12201         unsigned char  bDescriptorType;
12202         unsigned char  bInterfaceNumber;
12203         unsigned char  bAlternateSetting;
12204         unsigned char  bNumEndpoints;
12205         unsigned char  bInterfaceClass;
12206         unsigned char  bInterfaceSubClass;
12207         unsigned char  bInterfaceProtocol;
12208         unsigned char  iInterface;
12209
12210         unsigned char  no_of_ep;
12211         unsigned char  num_altsetting;
12212         unsigned char  act_altsetting;
12213         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
12214     } __attribute__ ((packed));
12215     ------------
12216
12217     As usb_endpoint_descriptor is only 7byte in length, the start of all
12218     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
12219     of these structures also not word aligned.
12220
12221     ARMv5 Architecture however does not support non-aligned multibyte
12222     data type (see A2.8 of ARM Architecture Reference Manual).
12223
12224     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
12225     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12226
12227 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
12228 Author: Kumar Gala <galak@kernel.crashing.org>
12229 Date:   Tue Dec 9 10:27:33 2008 -0600
12230
12231     drivers/fsl_pci_init: Fix compile warning
12232
12233     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
12234     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
12235
12236     The check only makes sense if we are CONFIG_PHYS_64BIT
12237
12238     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12239
12240 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
12241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12242 Date:   Sun Dec 7 09:45:35 2008 +0100
12243
12244     usbtty/omap: update to current API
12245
12246     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12247     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12248
12249 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
12250 Author: Anatolij Gustschin <agust@denx.de>
12251 Date:   Tue Dec 9 17:52:05 2008 +0100
12252
12253     video: fix FADS823 and RRvision compiling issues
12254
12255     Since commit 561858ee building for FADS823 and RRvision
12256     doesn't work. Let's include version.h and timestamp.h
12257     unconditionally to fix the problem.
12258
12259     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12260
12261 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
12262 Author: Stefan Roese <sr@denx.de>
12263 Date:   Tue Dec 2 10:53:47 2008 +0100
12264
12265     UBI: Fix size parsing in "ubi create"
12266
12267     Signed-off-by: Stefan Roese <sr@denx.de>
12268
12269 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
12270 Author: Stefan Roese <sr@denx.de>
12271 Date:   Thu Nov 27 14:07:09 2008 +0100
12272
12273     UBI: Enable re-initializing of the "ubi part" command
12274
12275     With this patch now, the user can call "ubi part" multiple times to
12276     re-connect the UBI device to another MTD partition.
12277
12278     Signed-off-by: Stefan Roese <sr@denx.de>
12279
12280 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
12281 Author: Stefan Roese <sr@denx.de>
12282 Date:   Thu Nov 27 14:05:15 2008 +0100
12283
12284     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
12285
12286     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
12287     first call of add_mtd_partitions(). Otherwise this won't work on platforms
12288     where the relocation is broken (like MIPS or PPC).
12289
12290     Signed-off-by: Stefan Roese <sr@denx.de>
12291
12292 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
12293 Author: Trent Piepho <tpiepho@freescale.com>
12294 Date:   Wed Nov 12 17:29:48 2008 -0800
12295
12296     Section name should be ".data", not "data"
12297
12298     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
12299     Signed-off-by: Wolfgang Denk <wd@denx.de>
12300
12301 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
12302 Author: Wolfgang Denk <wd@denx.de>
12303 Date:   Tue Dec 9 00:39:08 2008 +0100
12304
12305     MAKEALL: Automatically use parallel builds
12306
12307     Add logic to the MAKEALL script to determine the number of CPU cores
12308     on the system, and run a parallel build if there is more than one.
12309     Usually this significantrly accelerates builds.
12310
12311     Allow to manually adjust the number of parallel make jobs by using
12312     the "BUILD_NCPUS" environment variable.
12313
12314     Signed-off-by: Wolfgang Denk <wd@denx.de>
12315
12316 commit 268405fa7c44156c5192a70779920c70906af8d6
12317 Author: Wolfgang Denk <wd@denx.de>
12318 Date:   Tue Dec 9 00:24:30 2008 +0100
12319
12320     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
12321
12322     Signed-off-by: Wolfgang Denk <wd@denx.de>
12323
12324 commit 153176a9414120ca1736f3cc4951623d6e14e6af
12325 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12326 Date:   Tue Nov 11 06:08:59 2008 +0100
12327
12328     avr32/bootm: remove unused variable 'ret'
12329
12330     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12331     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12332
12333 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
12334 Author: Peter Tyser <ptyser@xes-inc.com>
12335 Date:   Wed Nov 12 13:06:48 2008 -0600
12336
12337     Remove unneeded CONFIG_SHELL references
12338
12339     Make should be using the bash shell by default which makes
12340     CONFIG_SHELL unnecessary
12341
12342     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12343
12344 commit cf7a7b99794bac936899819b95539be1dbd71708
12345 Author: Peter Tyser <ptyser@xes-inc.com>
12346 Date:   Wed Nov 12 12:33:20 2008 -0600
12347
12348     Use bash for default GNU Make shell application
12349
12350     Some Make script commands rely on bash-specific features like brace
12351     expansion, so default to bash for the SHELL variable with a fallback
12352     to the standard sh shell
12353
12354     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12355
12356 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
12357 Author: Heiko Schocher <hs@denx.de>
12358 Date:   Wed Nov 12 09:50:45 2008 +0100
12359
12360     jffs2: rename devices_init () in common/jffs2.c
12361
12362     rename devices_init () in common/jffs2.c to
12363     jffs2_devices_init (), because there is also a
12364     devices_init () in common/devices.c.
12365
12366     Signed-off-by: Heiko Schocher <hs@denx.de>
12367
12368 commit af5eb847a10f1037590001355d88bab3fe7be48b
12369 Author: Daniel Hellstrom <daniel@gaisler.com>
12370 Date:   Mon Nov 10 12:46:20 2008 +0000
12371
12372     SPARC: Fixed compiler error introduced by commit c160a9544743
12373
12374     This patch fixes a build error for the SPARC platform. It was
12375     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
12376
12377     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
12378
12379 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
12380 Author: Gary Jennejohn <garyj@denx.de>
12381 Date:   Sun Nov 9 12:50:59 2008 +0100
12382
12383     mgsuvd add the board-specific part of the HDLC driver
12384
12385     Signed-off-by: Gary Jennejohn <garyj@denx.de>
12386
12387 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
12388 Author: Gary Jennejohn <garyj@denx.de>
12389 Date:   Sun Nov 9 12:45:03 2008 +0100
12390
12391     mgcoge add the board-specific part of the HDLC driver
12392
12393     Signed-off-by: Gary Jennejohn <garyj@denx.de>
12394
12395 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
12396 Author: Gary Jennejohn <garyj@denx.de>
12397 Date:   Sun Nov 9 12:36:15 2008 +0100
12398
12399     keymile add the common parts of the HDLC driver
12400
12401     This implements the ICN protocol used across the backplane and is
12402     needed by all the keymile boards.
12403
12404     Signed-off-by: Gary Jennejohn <garyj@denx.de>
12405
12406 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
12407 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12408 Date:   Fri Nov 7 22:46:22 2008 +0100
12409
12410     drivers/bios_emulator: Move conditional compilation to Makefile
12411
12412     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12413
12414 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
12415 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12416 Date:   Thu Nov 6 14:01:51 2008 -0500
12417
12418     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
12419
12420     Corrected endian order printing for compact flash serial number.
12421
12422     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
12423
12424 commit 16a28ef219c27423a1ef502f19070c4d375079b8
12425 Author: Gary Jennejohn <garyj@denx.de>
12426 Date:   Thu Nov 6 15:04:23 2008 +0100
12427
12428     IOMUX: Add console multiplexing support.
12429
12430     Modifications to support console multiplexing.  This is controlled using
12431     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
12432
12433     This allows a user to specify multiple console devices in the environment
12434     with a command like this: setenv stdin serial,nc.  As a result, the user can
12435     enter text on both the serial and netconsole interfaces.
12436
12437     All devices - stdin, stdout and stderr - can be set in this manner.
12438
12439     1) common/iomux.c and include/iomux.h contain the environment setting
12440     implementation.
12441     2) doc/README.iomux contains a somewhat more detailed description.
12442     3) The implementation in (1) is called from common/cmd_nvedit.c to
12443     handle setenv and from common/console.c to handle initialization of
12444     input/output devices at boot time.
12445     4) common/console.c also contains the code needed to poll multiple console
12446     devices for input and send output to all devices registered for output.
12447     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
12448     when CONFIG_SYS_CONSOLE_MUX is set.
12449
12450     Signed-off-by: Gary Jennejohn <garyj@denx.de>
12451
12452 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
12453 Author: Mike Frysinger <vapier@gentoo.org>
12454 Date:   Tue Nov 4 16:03:46 2008 -0500
12455
12456     strings: use puts() rather than printf()
12457
12458     When running `strings` on really long strings, the stack tends to get
12459     smashed due to printf().  Switch to puts() instead since we're only passing
12460     the data through.
12461
12462     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12463
12464 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
12465 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
12466 Date:   Mon Nov 3 22:16:18 2008 +0100
12467
12468     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
12469
12470     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
12471
12472 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
12473 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
12474 Date:   Mon Nov 3 22:15:34 2008 +0100
12475
12476     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
12477
12478     - fix size too small by one in sprintf
12479     - changed old (pre 2004) device name ibmEmac to emac
12480     - boot device may be overriden in board config
12481     - servername may be defined in board config
12482     - additional parameters may be defined in board config
12483     - fixed some line wrappings
12484     - replaced  redundant MAX define by max
12485
12486     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
12487
12488 commit e9084b23d16102f44ace24379a1c0c352497ef80
12489 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
12490 Date:   Mon Nov 3 22:14:36 2008 +0100
12491
12492     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
12493
12494     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
12495
12496 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
12497 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
12498 Date:   Mon Nov 3 22:13:47 2008 +0100
12499
12500     README: Document CONFIG_SYS parameters for vxworks
12501
12502     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
12503
12504 commit ace514837cac656e29c37a19569cb8ea83071126
12505 Author: Peter Tyser <ptyser@xes-inc.com>
12506 Date:   Fri Oct 31 11:12:38 2008 -0500
12507
12508     lcd: Let the board code show board-specific info cleanup
12509
12510     remove unneeded version.h from lcd.c
12511
12512     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12513     Signed-off-by: Wolfgang Denk <wd@denx.de>
12514
12515 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
12516 Author: Peter Tyser <ptyser@xes-inc.com>
12517 Date:   Mon Nov 3 09:30:59 2008 -0600
12518
12519     Update U-Boot's build timestamp on every compile
12520
12521     Use the GNU 'date' command to auto-generate a new U-Boot
12522     timestamp on every compile.
12523
12524     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12525
12526 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
12527 Author: Remy Bohmer <linux@bohmer.net>
12528 Date:   Thu Dec 4 22:25:57 2008 +0100
12529
12530     Remove redundant armv4 flag from arm926ejs compile flags
12531
12532     Currently the arm926ejs tree has the armv4 option set during compilation.
12533     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
12534
12535     Signed-off-by: Remy Bohmer <linux@bohmer.net>
12536
12537 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
12538 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
12539 Date:   Sat Dec 6 13:11:14 2008 +0100
12540
12541     at91: Choose environment variables location within make config target
12542
12543     This patch adds the possiblity to choose the media where the environment will
12544     be located. This allow to choose this fundamental configuration without editing
12545     config files.
12546
12547     Documentation file added.
12548
12549     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
12550     Acked-by: Stelian Pop <stelian@popies.net>
12551     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12552
12553 commit 1450c4a6682378567030414a9f1198c39b7730c7
12554 Author: Anatolij Gustschin <agust@denx.de>
12555 Date:   Mon Nov 3 15:30:34 2008 +0100
12556
12557     lwmon, tqm8xx: Fix build errors
12558
12559     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
12560     lcd: Let the board code show board-specific info
12561
12562     introduced some bugs which prevent U-Boot building
12563     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
12564     be defined in the board configuration.
12565
12566     Also "LCD enabled" building for TQM823L doesn't work
12567     since this commit.
12568
12569     This patch fixes above-mentioned issues.
12570
12571     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12572
12573 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
12574 Author: Mike Frysinger <vapier@gentoo.org>
12575 Date:   Sun Nov 2 01:18:18 2008 -0400
12576
12577     ignore .gdb_history files
12578
12579     When using gdb, history files will often get generated.  So ignore them.
12580
12581     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12582
12583 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
12584 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12585 Date:   Fri Oct 31 12:26:55 2008 +0100
12586
12587     FPGA: move fpga drivers to drivers/fpga
12588
12589     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12590
12591 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
12592 Author: Peter Tyser <ptyser@xes-inc.com>
12593 Date:   Mon Dec 1 16:29:38 2008 -0600
12594
12595     net: Fix TftpStart() ip:filename bug
12596
12597     The TftpStart() function modifies the 'BootFile'
12598     string when 'BootFile' contains both an IP address
12599     and filename (eg 1.2.3.4:/path/file). This causes
12600     subsequent calls to TftpStart to incorrectly parse
12601     the TFTP filename and server IP address to use.
12602     For example:
12603
12604     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
12605     Speed: 100, half duplex
12606     Using eTSEC1 device
12607     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
12608                      ^^^^^^^^^^ CORRECT
12609     Filename '/home/ptyser/non_existant'.
12610               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
12611     Load address: 0x100000
12612     Loading: *
12613     TFTP error: 'File not found' (1)
12614     Starting again
12615
12616     eTSEC2: No link.
12617     Speed: 100, half duplex
12618     Using eTSEC1 device
12619     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
12620                      ^^^^^^^^^^ WRONG
12621     Filename '10.52.0.62'.
12622               ^^^^^^^^^^ WRONG
12623     Load address: 0x100000
12624     Loading: *
12625     TFTP error: 'File not found' (1)
12626     Starting again
12627
12628     TftpStart() was modified to not modify the 'BootFile' string.
12629
12630     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12631     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12632
12633 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
12634 Author: Peter Tyser <ptyser@xes-inc.com>
12635 Date:   Mon Dec 1 16:26:21 2008 -0600
12636
12637     net: Add additional IP fragmentation check
12638
12639     Ignore IP packets which have the "more fragments" flag bit
12640     set.  This flag indicates the IP packet is fragmented and
12641     must be ignored by U-Boot.
12642
12643     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12644     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12645
12646 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
12647 Author: Peter Tyser <ptyser@xes-inc.com>
12648 Date:   Mon Dec 1 16:26:20 2008 -0600
12649
12650     net: Define IP flag field values
12651
12652     These defines were pulled from the "Add simple
12653     IP/UDP fragmentation support" patch from Frank
12654     Haverkamp <haver@vnet.ibm.com>.
12655
12656     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12657     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12658
12659 commit 23afaba65ec5206757e589ef334a8b38168c045f
12660 Author: Anatolij Gustschin <agust@denx.de>
12661 Date:   Tue Dec 2 10:31:04 2008 +0100
12662
12663     net: tsec: Fix Marvell 88E1121R phy init
12664
12665     This patch tries to ensure that phy interrupt pin
12666     won't be asserted after booting. We experienced
12667     following issues with current 88E1121R phy init:
12668
12669     Marvell 88E1121R phy can be hardware-configured
12670     to share MDC/MDIO and interrupt pins for both ports
12671     P0 and P1 (e.g. as configured on socrates board).
12672     Port 0 interrupt pin will be shared by both ports
12673     in such configuration. After booting Linux and
12674     configuring eth0 interface, port 0 phy interrupts
12675     are enabled. After rebooting without proper eth0
12676     interface shutdown port 0 phy interrupts remain
12677     enabled so any change on port 0 (link status, etc.)
12678     cause assertion of the interrupt. Now booting Linux
12679     and configuring eth1 interface will cause permanent
12680     phy interrupt storm as the registered phy 1 interrupt
12681     handler doesn't acknowledge phy 0 interrupts. This
12682     of course should be fixed in Linux driver too.
12683
12684     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12685     Acked-by: Andy Fleming <afleming@freescale.com>
12686     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12687
12688 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
12689 Author: Peter Tyser <ptyser@xes-inc.com>
12690 Date:   Tue Dec 2 12:59:51 2008 -0600
12691
12692     net: Fix download command parsing
12693
12694     When CONFIG_SYS_HUSH_PARSER is defined network download
12695     commands with 1 argument in the format 'tftp "/path/file"'
12696     do not work as expected. The hush command parser strips
12697     the quotes from "/path/file" which causes the network
12698     commands to interpret "/path/file" as an address
12699     instead of the intended filename.
12700
12701     The previous check for a leading quote in netboot_common()
12702     was replaced with a check which ensures only valid
12703     numbers are treated as addresses.
12704
12705     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12706     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12707
12708 commit 3c2c2f427905040c1513d0c51d637689cba48346
12709 Author: Remy Bohmer <linux@bohmer.net>
12710 Date:   Thu Nov 27 22:30:27 2008 +0100
12711
12712     Remove non-ascii characters from fat code
12713
12714     This code contains some non-ascii characters in comment lines and code.
12715     Most editors do not display those characters properly and editing those
12716     files results always in diffs at these places which are usually not required
12717     to be changed at all. This is error prone.
12718
12719     So, remove those weird characters and replace them by normal C-style
12720     equivalents for which the proper defines were already in the header.
12721
12722     Signed-off-by: Remy Bohmer <linux@bohmer.net>
12723
12724 commit dc889e865356497d3e495570118c2245ebce2631
12725 Author: Dave Liu <daveliu@freescale.com>
12726 Date:   Fri Nov 28 20:16:58 2008 +0800
12727
12728     85xx: fix the wrong DDR settings for MPC8572DS
12729
12730     The default DDR freq is 400MHz or 800M data rate,
12731     the old settings is pure wrong for the default case.
12732
12733     Signed-off-by: Dave Liu <daveliu@freescale.com>
12734     Acked-by: Andy Fleming <afleming@freescale.com>
12735
12736 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
12737 Author: Kumar Gala <galak@kernel.crashing.org>
12738 Date:   Mon Nov 24 10:29:26 2008 -0600
12739
12740     85xx: init gd as early as possible
12741
12742     Moved up the initialization of GD so C code like set_tlb() can use
12743     gd->flags to determine if we've relocated or not in the future.
12744
12745     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12746     Acked-by: Andy Fleming <afleming@freescale.com>
12747
12748 commit aed461af81012a398a205e9be67ab37667491838
12749 Author: Kumar Gala <galak@kernel.crashing.org>
12750 Date:   Mon Nov 24 10:29:25 2008 -0600
12751
12752     85xx: Fix relocation of CCSRBAR
12753
12754     If the virtual address for CCSRBAR is the same after relocation but
12755     the physical address is changing we'd end up having two TLB entries with
12756     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
12757     temp virt address to access the old CCSRBAR to relocate it.
12758
12759     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12760     Acked-by: Andy Fleming <afleming@freescale.com>
12761
12762 commit ea154a1781135d822eedee7567cc156089eae93c
12763 Author: Kumar Gala <galak@kernel.crashing.org>
12764 Date:   Mon Nov 24 10:25:14 2008 -0600
12765
12766     FSL: Moved BR_PHYS_ADDR for localbus to common header
12767
12768     The BR_PHYS_ADDR macro is useful on all machines that have local bus
12769     which is pretty much all 83xx/85xx/86xx chips.
12770
12771     Additionally most 85xx & 86xx will need it if they want to support
12772     36-bit physical addresses.
12773
12774     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12775     Acked-by: Andy Fleming <afleming@freescale.com>
12776
12777 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
12778 Author: Peter Tyser <ptyser@xes-inc.com>
12779 Date:   Mon Dec 1 13:47:12 2008 -0600
12780
12781     85xx: Add PORDEVSR_PCI1 define
12782
12783     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
12784
12785     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
12786
12787     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12788     Signed-off-by: Andy Fleming <afleming@freescale.com>
12789
12790 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
12791 Author: Becky Bruce <becky.bruce@freescale.com>
12792 Date:   Fri Nov 21 19:24:22 2008 -0600
12793
12794     drivers/fsl_pci_init: Fix inbound window mapping bug
12795
12796     The current code will cause the creation of a 4GB window
12797     starting at 0 if we have more than 4GB of RAM installed,
12798     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
12799     to return erroneous information. Limit the size to 4GB - 1;
12800     which causes the code to create one 2GB and one 1GB window
12801     instead.
12802
12803     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
12804     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12805     Acked-by: Andy Fleming <afleming@freescale.com>
12806
12807 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
12808 Author: Jon Loeliger <jdl@freescale.com>
12809 Date:   Thu Nov 20 15:36:48 2008 -0600
12810
12811     Removed unused CONFIG_L1_INIT_RAM symbol.
12812
12813     Prevent further viral propogation of the unused
12814     symbol CONFIG_L1_INIT_RAM by just removing it.
12815
12816     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12817     Acked-by: Andy Fleming <afleming@freescale.com>
12818
12819 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
12820 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
12821 Date:   Wed Oct 29 09:21:44 2008 -0500
12822
12823     fsl ddr skip interleaving if not supported.
12824
12825     Removed while(1) hang if memctl_intlv_ctl is set wrong.
12826     Remove embedded tabs from strings.
12827
12828     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
12829     Acked-by: Kumar Gala <galak@kernel.crashing.org>
12830     Acked-by: Andy Fleming <afleming@freescale.com>
12831
12832 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
12833 Author: Anatolij Gustschin <agust@denx.de>
12834 Date:   Thu Nov 13 18:08:57 2008 +0100
12835
12836     85xx: socrates: fix DDR SDRAM tlb entry configuration
12837
12838     since commit be0bd8234b9777ecd63c4c686f72af070d886517
12839     tlb entry for socrates DDR SDRAM will be reconfigured
12840     by setup_ddr_tlbs() from initdram() causing an
12841     inconsistency with previously configured DDR SDRAM tlb
12842     entry from tlb_table:
12843
12844     socrates>l2cam 7 9
12845     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
12846       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
12847       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
12848       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
12849
12850     This patch makes the presence of the DDR SDRAM tlb entry in
12851     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
12852     inconsistency.
12853
12854     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12855     Acked-by: Andy Fleming <afleming@freescale.com>
12856
12857 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
12858 Author: Peter Tyser <ptyser@xes-inc.com>
12859 Date:   Tue Nov 11 10:17:10 2008 -0600
12860
12861     85xx: Add CPU 2 errata workaround to all 8548 boards
12862
12863     All mpc8548-based boards should implement the suggested workaround
12864     to CPU 2 errata. Without the workaround, its possible for the
12865     8548's core to hang while executing a msync or mbar 0 instruction
12866     and a snoopable transaction from an I/O master tagged to make
12867     quick forward progress is present.
12868
12869     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12870     Acked-by: Andy Fleming <afleming@freescale.com>
12871
12872 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
12873 Author: Dave Liu <daveliu@freescale.com>
12874 Date:   Tue Oct 28 17:53:45 2008 +0800
12875
12876     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
12877
12878     we need TLB entry for DDR at !SPD case.
12879
12880     Signed-off-by: Dave Liu <daveliu@freescale.com>
12881     Acked-by: Andy Fleming <afleming@freescale.com>
12882
12883 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
12884 Author: Dave Liu <daveliu@freescale.com>
12885 Date:   Tue Oct 28 17:53:38 2008 +0800
12886
12887     85xx: remove the unused ddr_enable_ecc in the board file
12888
12889     The DDR controller of 8548/8544/8568/8572/8536 processors
12890     have the ECC data init feature, and the new DDR code is
12891     using the feature, and we don't need the way with DMA to
12892     init memory any more.
12893
12894     Signed-off-by: Dave Liu <daveliu@freescale.com>
12895     Acked-by: Andy Fleming <afleming@freescale.com>
12896
12897 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
12898 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12899 Date:   Sun Nov 30 19:36:53 2008 +0100
12900
12901     at91rm9200dk: Fix typo
12902
12903     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12904
12905 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
12906 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12907 Date:   Sun Nov 30 19:36:50 2008 +0100
12908
12909     AT91: remove non supported board AT91RM9200DF macro
12910
12911     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12912
12913 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
12914 Author: Ilko Iliev <iliev@ronetix.at>
12915 Date:   Tue Dec 2 17:27:54 2008 +0100
12916
12917     mtd/dataflash.c: fix a problem with the last partition
12918
12919     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
12920     partition can be defined to use the area to the end of dataflash size.
12921     Now it is possible to have only one dataflash partition from 0 to the end
12922     of of dataflash size.
12923
12924     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12925
12926 commit 03f797793b124dccaae145b977d15d6cb9e74504
12927 Author: Ilko Iliev <iliev@ronetix.at>
12928 Date:   Tue Dec 2 17:20:17 2008 +0100
12929
12930     fix some coding style violations.
12931
12932     This patch fix some coding style violations.
12933
12934     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12935
12936 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
12937 Author: Stefan Roese <sr@denx.de>
12938 Date:   Thu Nov 27 14:11:37 2008 +0100
12939
12940     OneNAND: Add missing mtd info struct before calling onenand_erase()
12941
12942     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
12943     for use in UBI) via CONFIG_MTD_PARTITIONS.
12944
12945     Signed-off-by: Stefan Roese <sr@denx.de>
12946     Signed-off-by: Scott Wood <scottwood@freescale.com>
12947
12948 commit 29382d4064fbaff5daacff4c3209370fa5713966
12949 Author: Becky Bruce <becky.bruce@freescale.com>
12950 Date:   Thu Nov 20 16:43:52 2008 -0600
12951
12952     mpc8641: Fix error in README
12953
12954     I made some updates to the code that didn't make it into the
12955     README - fix this
12956
12957     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12958
12959 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
12960 Author: Jon Loeliger <jdl@freescale.com>
12961 Date:   Thu Nov 20 12:01:02 2008 -0600
12962
12963     Removed unused CONFIG_L1_INIT_RAM symbol.
12964
12965     Prevent further viral propogation of the unused
12966     symbol CONFIG_L1_INIT_RAM by just removing it.
12967
12968     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12969
12970 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
12971 Author: Jon Loeliger <jdl@freescale.com>
12972 Date:   Thu Nov 20 14:02:56 2008 -0600
12973
12974     86xx: Fix non-64-bit compilation problems.
12975
12976     Introducing 64-bit (36-bit) support for the MPC8641HPCN
12977     failed to accomodate the other two 86xx boards.
12978     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
12979     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
12980     with nominal 32-bit values.
12981
12982     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12983     Acked-by: Becky Bruce <becky.bruce@freescale.com>
12984
12985 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
12986 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12987 Date:   Wed Nov 26 17:40:37 2008 +0100
12988
12989     Remove obsolete command (apply afte USB style patch, 80 chars strict)
12990
12991     Remove USB obsolete commmand
12992
12993     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12994     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12995
12996 commit de39f8c19d7c12017248c49d432dcb81db68f724
12997 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12998 Date:   Wed Nov 26 17:41:34 2008 +0100
12999
13000     USB style patch, 80 chars strict
13001
13002     USB Code style patch
13003
13004     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
13005     Signed-off-by: Remy Böhmer <linux@bohmer.net>
13006
13007 commit d10c5a87cb8affbb4d35a311370316d4383d598e
13008 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13009 Date:   Fri Nov 7 22:46:21 2008 +0100
13010
13011     drivers/usb: Move conditional compilation to Makefile
13012
13013     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13014     Signed-off-by: Remy Böhmer <linux@bohmer.net>
13015
13016 commit 2077e348c2a84901022ad95311b47b70361e6daa
13017 Author: Scott Wood <scottwood@freescale.com>
13018 Date:   Tue Nov 25 10:47:02 2008 -0600
13019
13020     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
13021
13022     This caused the operation to be needlessly repeated if there were
13023     no bad blocks and no errors.
13024
13025     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
13026     Signed-off-by: Scott Wood <scottwood@freescale.com>
13027
13028 commit 89295028e7d8f7a524f485328279d72fdb102385
13029 Author: Michal Simek <monstr@monstr.eu>
13030 Date:   Mon Nov 24 12:09:50 2008 +0100
13031
13032     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
13033
13034     This BSP should be outside u-boot source tree.
13035     The second reason is that xilinx ppc405 was moved to generic platform.
13036
13037     Signed-off-by: Michal Simek <monstr@monstr.eu>
13038     Signed-off-by: Stefan Roese <sr@denx.de>
13039
13040 commit 24eea623d4974a169026a975ba12fb23d48154b1
13041 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13042 Date:   Mon Nov 24 15:11:10 2008 +0100
13043
13044     ppc4xx: Remove unused features
13045
13046     This patch disables some unused features from the PCI405 configuration
13047     to keep U-Boot image size below 192k.
13048
13049     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13050     Signed-off-by: Stefan Roese <sr@denx.de>
13051
13052 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
13053 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13054 Date:   Mon Nov 24 15:11:09 2008 +0100
13055
13056     ppc4xx: Use correct io accessors for PCI405
13057
13058     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13059     Signed-off-by: Stefan Roese <sr@denx.de>
13060
13061 commit 348c849d86a6f0785752b9bc497a34658713d1d1
13062 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13063 Date:   Mon Nov 24 15:11:08 2008 +0100
13064
13065     ppc4xx: Remove unused code from PCI405 code
13066
13067     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13068     Signed-off-by: Stefan Roese <sr@denx.de>
13069
13070 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
13071 Author: Heiko Schocher <hs@denx.de>
13072 Date:   Thu Nov 20 09:59:09 2008 +0100
13073
13074     powerpc, keymile boards: extract identical config options
13075
13076     This patch extracts the identical config options for the
13077     keymile boards mgcoge, mgsuvd and kmeter1 in a new
13078     common config file keymile-common.h.
13079
13080     Signed-off-by: Heiko Schocher <hs@denx.de>
13081     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13082
13083 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
13084 Author: Heiko Schocher <hs@denx.de>
13085 Date:   Fri Nov 21 08:29:40 2008 +0100
13086
13087     powerpc: keymile: Add a check for the PIGGY debug board
13088
13089     Check the presence of the PIGGY on the keymile boards mgcoge,
13090     mgsuvd and kmeter1. If the PIGGY is not present, dont register
13091     this Ethernet device.
13092
13093     Signed-off-by: Heiko Schocher <hs@denx.de>
13094     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13095
13096 commit 58c696eed839af894e0265064669c402dc28b371
13097 Author: Wolfgang Denk <wd@xpert.denx.de>
13098 Date:   Mon Nov 24 21:50:59 2008 +0100
13099
13100     AT91RM9200DK: fix broken boot from NOR flash
13101
13102     Signed-off-by: Wolfgang Denk <wd@denx.de>
13103
13104 commit 8052352f20b33bef8f9872fc983eac73d4693c38
13105 Author: Jens Scharsig <esw@bus-elektronik.de>
13106 Date:   Tue Nov 18 10:48:46 2008 +0100
13107
13108     at91rm9200: fix broken boot from nor flash
13109
13110     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
13111     CONFIG_AT91RM9200 is defined and nor preloader is used.
13112
13113     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
13114
13115 commit 25ea652e907516a283b38237e83712a918f125d7
13116 Author: Piotr Ziecik <kosmo@semihalf.com>
13117 Date:   Mon Nov 17 15:58:00 2008 +0100
13118
13119     UBI: Add proof-of-concept CFI flash support
13120
13121     With this patch UBI can be used on CFI flash chips.
13122
13123     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
13124     Signed-off-by: Stefan Roese <sr@denx.de>
13125
13126 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
13127 Author: Piotr Ziecik <kosmo@semihalf.com>
13128 Date:   Mon Nov 17 15:57:59 2008 +0100
13129
13130     mtd: Remove a printf() from add_mtd_device().
13131
13132     Remove a printf() from add_mtd_device(), which produces spurious output.
13133
13134     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
13135     Signed-off-by: Stefan Roese <sr@denx.de>
13136
13137 commit 91809ed51d8327a8dbbf29aa98a091154c282171
13138 Author: Piotr Ziecik <kosmo@semihalf.com>
13139 Date:   Mon Nov 17 15:57:58 2008 +0100
13140
13141     cfi-mtd: Add cfi-mtd driver.
13142
13143     Add cfi-mtd driver, which exports CFI flash to MTD layer.
13144     This allows CFI flash devices to be used from MTD layer.
13145
13146     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
13147     option. Initialization is done by calling cfi_mtd_init() from
13148     flash_init().
13149
13150     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
13151     Signed-off-by: Stefan Roese <sr@denx.de>
13152
13153 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
13154 Author: Piotr Ziecik <kosmo@semihalf.com>
13155 Date:   Mon Nov 17 15:49:32 2008 +0100
13156
13157     cfi_flash: Add interface for flash verbosity control
13158
13159     Add interface for flash verbosity control. It allows
13160     to disable output from low-level flash API. It is useful
13161     when calling these low-level functions from context other
13162     than flash commands (for example the MTD/CFI interface
13163     implmentation).
13164
13165     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
13166     Signed-off-by: Stefan Roese <sr@denx.de>
13167
13168 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
13169 Author: Piotr Ziecik <kosmo@semihalf.com>
13170 Date:   Thu Nov 20 15:17:38 2008 +0100
13171
13172     cfi_flash: Export flash_sector_size() function.
13173
13174     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
13175     so that it can be used in the upcoming cfi-mtd driver.
13176
13177     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
13178     Signed-off-by: Stefan Roese <sr@denx.de>
13179
13180 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
13181 Author: Stefan Roese <sr@denx.de>
13182 Date:   Mon Nov 17 14:45:22 2008 +0100
13183
13184     cfi_flash: Make all flash access functions weak
13185
13186     This patch defines all flash access functions as weak so that
13187     they can be overridden by board specific versions.
13188
13189     This will be used by the upcoming VCTH board support where the NOR
13190     FLASH unfortunately can't be accessed memory-mapped. Special
13191     accessor functions are needed here.
13192
13193     To enable this weak functions you need to define
13194     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
13195     Otherwise the "old" default functions will be used resulting
13196     in smaller code.
13197
13198     Signed-off-by: Stefan Roese <sr@denx.de>
13199     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13200
13201 commit a5c4067017631d903e1afa6ad615f0ce19fea517
13202 Author: Stefan Roese <sr@denx.de>
13203 Date:   Mon Nov 24 08:31:16 2008 +0100
13204
13205     UBI: Change parsing of size in commands to default to hex
13206
13207     Currently the size parameters of the UBI commands (e.g. "ubi write") are
13208     decoded as decimal instead of hex as default. This patch now interprets
13209     all these values consistantly as hex, as all other standard U-Boot commands
13210     do.
13211
13212     Signed-off-by: Stefan Roese <sr@denx.de>
13213
13214 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
13215 Author: Stefan Roese <sr@denx.de>
13216 Date:   Fri Nov 21 13:06:06 2008 +0100
13217
13218     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
13219
13220     Signed-off-by: Stefan Roese <sr@denx.de>
13221
13222 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
13223 Author: Yuri Tikhonov <yur@emcraft.com>
13224 Date:   Fri Nov 14 16:19:19 2008 +0300
13225
13226     ppc4xx: katmai: Change default config
13227
13228      This patch enables support for EXT2, and increases the
13229     CONFIG_SYS_BOOTMAPSZ size for the default configuration
13230     of the katmai boards to use them as the RAID-reference
13231     AMCC setups.
13232
13233      EXT2 enabling allows one to boot kernels from the EXT2
13234     formatted Compact Flash cards.
13235
13236      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
13237     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
13238     the memory area with DTB file (which is placed at the
13239     end of the bootmap area) will turn out to be overlapped
13240     with the BSS segment of the 256KB kernel, and zeroed
13241     in early_init() of Linux.
13242
13243      Actually, increasing of the bootmap size could be done
13244     via setting of the bootm_size U-Boot variable, but it looks
13245     like the current U-Boot implementation have some bootm_size-
13246     related functionality lost. In many places through the U-Boot
13247     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
13248     (instead of trying to read the corresponding value from the
13249     environment). The same is truth for the boot_jump_linux()
13250     function in lib_ppc/bootm.c, where U-Boot transfers control
13251     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
13252     value to the booting kernel.
13253
13254     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
13255     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13256     Signed-off-by: Stefan Roese <sr@denx.de>
13257
13258 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
13259 Author: Dave Mitchell <dmitch71@gmail.com>
13260 Date:   Thu Nov 20 14:09:50 2008 -0600
13261
13262     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
13263
13264     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
13265     internal SRAM.
13266
13267     Adjusted internal SRAM initialization to match updated user
13268     manual recommendation.
13269
13270     OCM & ISRAM are now mapped as follows:
13271             physical        virtual         size
13272     ISRAM   0x4_0000_0000   0xE300_0000     256k
13273     OCM     0x4_0004_0000   0xE304_0000     64k
13274
13275     A single TLB was used for this mapping.
13276
13277     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
13278     Signed-off-by: Stefan Roese <sr@denx.de>
13279
13280 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
13281 Author: Dave Mitchell <dmitch71@gmail.com>
13282 Date:   Thu Nov 20 14:00:49 2008 -0600
13283
13284     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
13285
13286     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
13287     L2 cache DCRs from ppc440.h to this new header.
13288
13289     Also converted these DCR defines from lowercase to uppercase and
13290     modified referencing modules to use them.
13291
13292     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
13293     Signed-off-by: Stefan Roese <sr@denx.de>
13294
13295 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
13296 Author: Steven A. Falco <sfalco@harris.com>
13297 Date:   Thu Nov 20 14:37:57 2008 -0500
13298
13299     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
13300
13301     The definitions of bits in SDR_CFG are incorrect, and not used within
13302     U-Boot.  Therefore, they can be removed.
13303
13304     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
13305     and are unused, so they can be removed too.
13306
13307     A definition for SDR0_DDRCFG is added.
13308
13309     Signed-off-by: Steven A. Falco <sfalco@harris.com>
13310     Signed-off-by: Stefan Roese <sr@denx.de>
13311
13312 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
13313 Author: Dirk Behme <dirk.behme@gmail.com>
13314 Date:   Mon Nov 10 20:15:25 2008 +0100
13315
13316     ARM: OMAP: Convert IO macros
13317
13318     Convert IO macros to readx/writex.
13319
13320     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
13321
13322 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
13323 Author: Ilko Iliev <iliev@ronetix.at>
13324 Date:   Sun Nov 9 15:53:14 2008 +0100
13325
13326     lib_arm: do_bootm_linux() - correct a small mistake
13327
13328     This patch corrects a small bug in the "if" condition:
13329     the parameter "flag" is 0 and the "if" condition is always true.
13330     The result is - the boom command doesn't start the kernel.
13331     Affected targets: all arm based.
13332
13333     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
13334
13335 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
13336 Author: Stelian Pop <stelian@popies.net>
13337 Date:   Sun Nov 9 00:14:46 2008 +0100
13338
13339     AT91: Enable PLLB for USB
13340
13341     At least some (old ?) versions of the AT91Bootstrap do not set up the
13342     PLLB correctly to 48 MHz in order to make USB host function correctly.
13343
13344     This patch sets up the PLLB to the same values Linux uses, and makes USB
13345     work ok on the following CPUs:
13346         - AT91CAP9
13347         - AT91SAM9260
13348         - AT91SAM9263
13349
13350     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
13351     the relevant AT91CAP9/AT91SAM9 atmel boards.
13352
13353     Signed-off-by: Stelian Pop <stelian@popies.net>
13354     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13355
13356 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
13357 Author: Stelian Pop <stelian@popies.net>
13358 Date:   Fri Nov 7 13:55:14 2008 +0100
13359
13360     AT91: Use AT91_CPU_CLOCK in displays
13361
13362     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
13363     speed in the LCD driver.
13364
13365     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
13366     corresponding board clocks.
13367
13368     Signed-off-by: Stelian Pop <stelian@popies.net>
13369
13370 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
13371 Author: Heiko Schocher <hs@denx.de>
13372 Date:   Thu Nov 20 09:57:47 2008 +0100
13373
13374     powerpc: 83xx: add support for the kmeter1 board
13375
13376     This patch adds support for the kmeter1 board from Keymile,
13377     based on a Freescale MPC8360 CPU.
13378
13379     - serial console on UART 1
13380     - 256 MB DDR2 RAM
13381     - 64 MB NOR Flash
13382     - Ethernet RMII Mode over UCC4
13383     - PHY SMSC LAN8700
13384
13385     Signed-off-by: Heiko Schocher <hs@denx.de>
13386     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13387
13388 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
13389 Author: Stefan Roese <sr@denx.de>
13390 Date:   Thu Nov 20 11:46:20 2008 +0100
13391
13392     ppc4xx: Clear all potentially pending exceptions in MCSR
13393
13394     This is needed on Canyonlands which still has an exception pending
13395     while running relocate_code(). This leads to a failure after trap_init()
13396     is moved to the top of board_init_r().
13397
13398     Signed-off-by: Stefan Roese <sr@denx.de>
13399
13400 commit facdad5f2602e899a01746916beddbf9e856b5ee
13401 Author: Heiko Schocher <hs@denx.de>
13402 Date:   Wed Nov 19 10:10:30 2008 +0100
13403
13404     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
13405
13406     Signed-off-by: Heiko Schocher <hs@denx.de>
13407     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13408
13409 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
13410 Author: Howard Gregory <Greg.Howard@freescale.com>
13411 Date:   Tue Nov 4 14:55:33 2008 +0800
13412
13413     mpc83xx: Improve the performance of DDR memory
13414
13415     modify the CAS timings. my understanding is that these
13416     settings decrease various wait times in the DDR interface.
13417     Because these wait times are in clock cycles, and the DDR
13418     clock on the 8315 RDB runs slower than on some other 83xx
13419     platforms, we can dial down these values without a problem,
13420     thereby decreasing the latency of memory a little.
13421
13422     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
13423     Signed-off-by: Dave Liu <daveliu@freescale.com>
13424     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13425
13426 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
13427 Author: Kyungmin Park <kyungmin.park@samsung.com>
13428 Date:   Fri Oct 24 14:55:33 2008 +0200
13429
13430     ARM: Add Apollon UBI support
13431
13432     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
13433     macro.
13434
13435     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13436     Signed-off-by: Stefan Roese <sr@denx.de>
13437
13438 commit 694a0b3f1c0accd0de94b89555155d69f8022824
13439 Author: Kyungmin Park <kyungmin.park@samsung.com>
13440 Date:   Wed Nov 19 11:47:05 2008 +0100
13441
13442     UBI: Add UBI command support
13443
13444     This patch adds these UBI commands:
13445
13446     ubi part [nand|onenand] [part] - Show or set current partition
13447     ubi info [l[ayout]] -Display volume and UBI layout information
13448     ubi create[vol] volume [size] [type] - Create volume name with size
13449     ubi write[vol] address volume size - Write volume from address with size
13450     ubi read[vol] address volume [size] - Read volume to address with size
13451     ubi remove[vol] volume - Remove volume
13452
13453     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13454     Signed-off-by: Stefan Roese <sr@denx.de>
13455
13456 commit 58be3a1056d88c6d05f3e914389282807e69923a
13457 Author: Kyungmin Park <kyungmin.park@samsung.com>
13458 Date:   Wed Nov 19 16:38:24 2008 +0100
13459
13460     UBI: Add basic UBI support to U-Boot (Part 8/8)
13461
13462     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13463     It's based on the Linux UBI version and basically has a "OS"
13464     translation wrapper that defines most Linux specific calls
13465     (spin_lock() etc.) into no-ops. Some source code parts have been
13466     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13467     this version with the Linux version and simplifies future UBI
13468     ports/bug-fixes from the Linux version.
13469
13470     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13471     Signed-off-by: Stefan Roese <sr@denx.de>
13472
13473 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
13474 Author: Kyungmin Park <kyungmin.park@samsung.com>
13475 Date:   Wed Nov 19 16:36:36 2008 +0100
13476
13477     UBI: Add basic UBI support to U-Boot (Part 7/8)
13478
13479     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13480     It's based on the Linux UBI version and basically has a "OS"
13481     translation wrapper that defines most Linux specific calls
13482     (spin_lock() etc.) into no-ops. Some source code parts have been
13483     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13484     this version with the Linux version and simplifies future UBI
13485     ports/bug-fixes from the Linux version.
13486
13487     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13488     Signed-off-by: Stefan Roese <sr@denx.de>
13489
13490 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
13491 Author: Kyungmin Park <kyungmin.park@samsung.com>
13492 Date:   Wed Nov 19 16:32:36 2008 +0100
13493
13494     UBI: Add basic UBI support to U-Boot (Part 6/8)
13495
13496     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13497     It's based on the Linux UBI version and basically has a "OS"
13498     translation wrapper that defines most Linux specific calls
13499     (spin_lock() etc.) into no-ops. Some source code parts have been
13500     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13501     this version with the Linux version and simplifies future UBI
13502     ports/bug-fixes from the Linux version.
13503
13504     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13505     Signed-off-by: Stefan Roese <sr@denx.de>
13506
13507 commit c91a719daa331b5856109313371e4ece5ec06d96
13508 Author: Kyungmin Park <kyungmin.park@samsung.com>
13509 Date:   Wed Nov 19 16:28:06 2008 +0100
13510
13511     UBI: Add basic UBI support to U-Boot (Part 5/8)
13512
13513     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13514     It's based on the Linux UBI version and basically has a "OS"
13515     translation wrapper that defines most Linux specific calls
13516     (spin_lock() etc.) into no-ops. Some source code parts have been
13517     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13518     this version with the Linux version and simplifies future UBI
13519     ports/bug-fixes from the Linux version.
13520
13521     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13522     Signed-off-by: Stefan Roese <sr@denx.de>
13523
13524 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
13525 Author: Kyungmin Park <kyungmin.park@samsung.com>
13526 Date:   Wed Nov 19 16:27:23 2008 +0100
13527
13528     UBI: Add basic UBI support to U-Boot (Part 4/8)
13529
13530     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13531     It's based on the Linux UBI version and basically has a "OS"
13532     translation wrapper that defines most Linux specific calls
13533     (spin_lock() etc.) into no-ops. Some source code parts have been
13534     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13535     this version with the Linux version and simplifies future UBI
13536     ports/bug-fixes from the Linux version.
13537
13538     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13539     Signed-off-by: Stefan Roese <sr@denx.de>
13540
13541 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
13542 Author: Kyungmin Park <kyungmin.park@samsung.com>
13543 Date:   Wed Nov 19 16:26:54 2008 +0100
13544
13545     UBI: Add basic UBI support to U-Boot (Part 3/8)
13546
13547     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13548     It's based on the Linux UBI version and basically has a "OS"
13549     translation wrapper that defines most Linux specific calls
13550     (spin_lock() etc.) into no-ops. Some source code parts have been
13551     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13552     this version with the Linux version and simplifies future UBI
13553     ports/bug-fixes from the Linux version.
13554
13555     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13556     Signed-off-by: Stefan Roese <sr@denx.de>
13557
13558 commit 961df83361aff9a14f226214224eb8a06e05ba24
13559 Author: Kyungmin Park <kyungmin.park@samsung.com>
13560 Date:   Wed Nov 19 16:25:44 2008 +0100
13561
13562     UBI: Add basic UBI support to U-Boot (Part 2/8)
13563
13564     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13565     It's based on the Linux UBI version and basically has a "OS"
13566     translation wrapper that defines most Linux specific calls
13567     (spin_lock() etc.) into no-ops. Some source code parts have been
13568     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13569     this version with the Linux version and simplifies future UBI
13570     ports/bug-fixes from the Linux version.
13571
13572     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13573     Signed-off-by: Stefan Roese <sr@denx.de>
13574
13575 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
13576 Author: Kyungmin Park <kyungmin.park@samsung.com>
13577 Date:   Wed Nov 19 16:23:06 2008 +0100
13578
13579     UBI: Add basic UBI support to U-Boot (Part 1/8)
13580
13581     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
13582     It's based on the Linux UBI version and basically has a "OS"
13583     translation wrapper that defines most Linux specific calls
13584     (spin_lock() etc.) into no-ops. Some source code parts have been
13585     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
13586     this version with the Linux version and simplifies future UBI
13587     ports/bug-fixes from the Linux version.
13588
13589     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13590     Signed-off-by: Stefan Roese <sr@denx.de>
13591
13592 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
13593 Author: Kyungmin Park <kyungmin.park@samsung.com>
13594 Date:   Wed Nov 19 16:20:36 2008 +0100
13595
13596     MTD: Add MTD paritioning infrastructure
13597
13598     This MTD part infrastructure will be used by the upcoming
13599     UBI support.
13600
13601     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13602     Signed-off-by: Stefan Roese <sr@denx.de>
13603
13604 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
13605 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
13606 Date:   Thu Oct 16 22:54:03 2008 +0530
13607
13608     Align end of bss by 4 bytes
13609
13610     Most of the bss initialization loop increments 4 bytes
13611     at a time. And the loop end is checked for an 'equal'
13612     condition. Make the bss end address aligned by 4, so
13613     that the loop will end as expected.
13614
13615     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
13616     Signed-off-by: Wolfgang Denk <wd@denx.de>
13617
13618 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
13619 Author: Becky Bruce <becky.bruce@freescale.com>
13620 Date:   Mon Nov 10 19:45:35 2008 -0600
13621
13622     mpc8641: fix address-cells default in old .dts detection
13623
13624     address-cells defaults to 2, not 1; so in the unlikely
13625     event that it isn't specified, this patch is required
13626     for correct operation.
13627
13628     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13629
13630 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
13631 Author: Becky Bruce <becky.bruce@freescale.com>
13632 Date:   Fri Oct 31 17:14:39 2008 -0500
13633
13634     lib_ppc: Move trap_init to occur earlier
13635
13636     Doing trap_init immediately once we're running from RAM
13637     means we're no longer dependent on the physical location of
13638     the flash on non-BookE platforms. Before trap_init, those
13639     platforms switch to real mode and go to 0xfff00100 on exception.
13640     After the switch, they go to 0x00000100  This makes it easier to
13641     move the flash location.
13642
13643     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13644
13645 commit d52082b12c6e545705a19433a2f4142526536189
13646 Author: Becky Bruce <becky.bruce@freescale.com>
13647 Date:   Fri Nov 7 13:46:19 2008 -0600
13648
13649     mpc8641: Try to detect old .dts files
13650
13651     Since we've changed the memory map of the board, be nice and
13652     add some checking to try to catch out-of-date .dts files.  We do
13653     this by checking the CCSRBAR location in the .dts and comparing
13654     it to the CCSRBAR location in u-boot.  If they don't match, a
13655     warning msg is printed.  This isn't foolproof, but it's simple and
13656     will catch most of the cases where an out-of-date .dts is present,
13657     including all of the cases where a new u-boot is used with an old
13658     standard MPC8641 .dts file as supplied with Linux.
13659
13660     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13661
13662 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
13663 Author: Becky Bruce <becky.bruce@freescale.com>
13664 Date:   Thu Nov 6 13:04:09 2008 -0600
13665
13666     toplevel Makefile: Add MPC8641HPCN_36BIT target
13667
13668     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
13669
13670     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13671
13672 commit 3111d32c494e8251b90917447796a7206b757e1e
13673 Author: Becky Bruce <becky.bruce@freescale.com>
13674 Date:   Thu Nov 6 17:37:35 2008 -0600
13675
13676     mpc8641: Support 36-bit physical addressing
13677
13678     This patch creates a memory map with all the devices
13679     in 36-bit physical space, in addition to the 32-bit map.
13680     The CCSR relocation is moved (again, sorry) to
13681     allow for the physical address to be 36 bits - this
13682     requires translation to be enabled.  With 36-bit physical
13683     addressing enabled, we are no longer running with VA=PA
13684     translations.  This means we have to distinguish between
13685     the two in the config file.  The existing region name is
13686     used to indicate the virtual address, and a _PHYS variety
13687     is created to represent the physical address.
13688
13689     Large physical addressing is not enabled by default.
13690     Set CONFIG_PHYS_64BIT in the config file to turn this on.
13691
13692     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13693
13694 commit c759a01a0022de9378a3a761f49786f87684c916
13695 Author: Becky Bruce <becky.bruce@freescale.com>
13696 Date:   Thu Nov 6 17:36:04 2008 -0600
13697
13698     mpc8641: Change 32-bit memory map
13699
13700     The memory map on the 8641hpcn is modified to look more like
13701     the 85xx boards; this is a step towards a more standardized
13702     layout going forward. As part of this change, we now relocate
13703     the flash.
13704
13705     The regions for some of the mappings were far larger than they
13706     needed to be.  I have reduced the mappings to match the
13707     actual sizes supported by the hardware.
13708
13709     In addition I have removed the comments at the head
13710     of the BAT blocks in the config file, rather than updating
13711     them.  These get horribly out of date, and it's a simple
13712     matter to look at the defines to see what they are set to
13713     since everything is right here in the same file.
13714
13715     Documentation has been changed to reflect the new map, as this
13716     change is user visible, and affects the OS which runs post-uboot.
13717
13718     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13719
13720 commit bf9a8c34309ed9276258295db9e9212aabb2531a
13721 Author: Becky Bruce <becky.bruce@freescale.com>
13722 Date:   Wed Nov 5 14:55:35 2008 -0600
13723
13724     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
13725
13726     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
13727     of the bootpage in flash.   Use this to create an early mapping
13728     definition for the FLASH, and change the early_bats code to use this.
13729
13730     This  change facilitates the relocation of the flash since the early
13731     mappings are no longer tied to the final location of the flash.
13732
13733     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13734
13735 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
13736 Author: Becky Bruce <becky.bruce@freescale.com>
13737 Date:   Wed Nov 5 14:55:34 2008 -0600
13738
13739     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
13740
13741     Using a mtmsr/blr means that you have to be executing at the
13742     same virtual address once you enable translation.  This is
13743     unnecessarily restrictive, and is not really how this is
13744     usually done.  Change it to use the more common mtspr SRR0/SRR1
13745     and rfi method.
13746
13747     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13748
13749 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
13750 Author: Becky Bruce <becky.bruce@freescale.com>
13751 Date:   Wed Nov 5 14:55:33 2008 -0600
13752
13753     mpc8641: make DIAG_ADDR == FLASH_BASE
13754
13755     Currently, that's what it is, but it's hardcoded.
13756
13757     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13758
13759 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
13760 Author: Becky Bruce <becky.bruce@freescale.com>
13761 Date:   Wed Nov 5 14:55:32 2008 -0600
13762
13763     mpc8641: Drop imaginary second flash bank, map 8MB
13764
13765     There's a lot of setup and foo for the second flash
13766     bank.  The problem is, this board doesn't actually have one.
13767     Clean this up.  Also, the flash is 8M in size.  Get rid
13768     of the confusing aliased overmapping, and just map 8M.
13769
13770     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13771
13772 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
13773 Author: Becky Bruce <becky.bruce@freescale.com>
13774 Date:   Wed Nov 5 14:55:31 2008 -0600
13775
13776     mpc8641: only define CONFIG_ENV_SIZE once
13777
13778     It's currently defined twice inside in an if/else block, but
13779     both halves set the same value.  Move the define outside
13780     the if.
13781
13782     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13783
13784 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
13785 Author: Becky Bruce <becky.bruce@freescale.com>
13786 Date:   Wed Nov 5 14:55:30 2008 -0600
13787
13788     mpc86xx: Move setup_bats into cpu_init_f
13789
13790     In order to later allow for a physical relocation of the
13791     flash, setup_bats, which sets up the final BAT mapping
13792     for the board, needs to happen *after* init_laws().
13793     Otherwise, there will be no window programmed for the flash
13794     at the new physical location at the point when we change
13795     the mmu translation.
13796
13797     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13798
13799 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
13800 Author: Becky Bruce <becky.bruce@freescale.com>
13801 Date:   Wed Nov 5 14:55:29 2008 -0600
13802
13803     mpc8641: Remove extra "0" from BR2 define
13804
13805     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13806
13807 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
13808 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13809 Date:   Thu Oct 23 09:08:18 2008 -0400
13810
13811     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
13812
13813     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
13814     This adds support for PHY-less MAC connections to the UEC.
13815
13816     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13817     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13818
13819 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
13820 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13821 Date:   Thu Oct 23 16:27:24 2008 +0000
13822
13823     ColdFire: Add mii driver in drivers/net
13824
13825     All CF platforms' mii.c are consolidated into one
13826
13827     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13828     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13829
13830 commit 25a859066b3af1070eb69f12022113c0a91bd813
13831 Author: Ben Warren <biggerbadderben@gmail.com>
13832 Date:   Mon Oct 27 23:53:17 2008 -0700
13833
13834     Moved initialization of PPC4xx EMAC to cpu_eth_init()
13835
13836     Removed initialization of the driver from net/eth.c
13837
13838     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13839     Acked-by: Stefan Roese <sr@denx.de>
13840
13841 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
13842 Author: Ben Warren <biggerbadderben@gmail.com>
13843 Date:   Sun Nov 9 21:29:23 2008 -0800
13844
13845     Moved PPC4xx EMAC driver to drivers/net
13846
13847     Also changed path in all linker scripts that reference this driver
13848
13849     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13850     Acked-by: Stefan Roese <sr@denx.de>
13851
13852 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
13853 Author: Ben Warren <biggerbadderben@gmail.com>
13854 Date:   Mon Oct 27 23:50:15 2008 -0700
13855
13856     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
13857
13858     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
13859
13860     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13861     Acked-by: Stefan Roese <sr@denx.de>
13862
13863 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
13864 Author: Ben Warren <biggerbadderben@gmail.com>
13865 Date:   Thu Oct 23 22:02:49 2008 -0700
13866
13867     Moved initialization of MPC8XX SCC to cpu_eth_init()
13868
13869     Removed initialization of the driver from net/eth.c
13870
13871     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13872
13873 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
13874 Author: Ben Warren <biggerbadderben@gmail.com>
13875 Date:   Wed Oct 22 23:47:51 2008 -0700
13876
13877     Moved initialization of MPC8220 FEC to cpu_eth_init()
13878
13879     Removed initialization of the driver from net/eth.c
13880
13881     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13882
13883 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
13884 Author: Ben Warren <biggerbadderben@gmail.com>
13885 Date:   Wed Oct 22 23:32:48 2008 -0700
13886
13887     Moved initialization of QE Ethernet controller to cpu_eth_init()
13888
13889     Removed initialization of the driver from net/eth.c
13890
13891     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13892
13893 commit 3456a148276d5494b53ee40242efb6462d163504
13894 Author: Ben Warren <biggerbadderben@gmail.com>
13895 Date:   Wed Oct 22 23:20:29 2008 -0700
13896
13897     Moved initialization of FCC Ethernet controller to cpu_eth_init
13898
13899     Affected boards:
13900         Several MPC8xx boards
13901         Several MPC8260/MPC8272 boards
13902         Several MPC85xx boards
13903
13904     Removed initialization of the driver from net/eth.c
13905
13906     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13907
13908 commit 62e15b497f5c6334c059512678c8db7940ae4c61
13909 Author: Ben Warren <biggerbadderben@gmail.com>
13910 Date:   Thu Oct 30 22:15:35 2008 -0700
13911
13912     Fix typo in cpu/mpc85xx/cpu.c
13913
13914     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
13915
13916     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13917
13918 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
13919 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13920 Date:   Sun Oct 19 12:08:50 2008 +0900
13921
13922     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
13923
13924     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
13925     as a part of ongoing eth_initialize cleanup work.  The function ret value
13926     is also fixed as it should be negative on fail.
13927
13928     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13929     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13930
13931 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
13932 Author: Ben Warren <biggerbadderben@gmail.com>
13933 Date:   Fri Sep 5 01:55:22 2008 -0400
13934
13935     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
13936
13937     Also, removed the driver initialization from net/eth.c
13938
13939     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13940
13941 commit f2a7806fc23e82d30c8548911369e0c530607354
13942 Author: Clive Stubbings <uboot@xentech.co.uk>
13943 Date:   Mon Oct 27 15:05:00 2008 +0000
13944
13945     xilinx_emaclite buffer overrun
13946
13947     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
13948     PKTSIZE_ALIGN bytes long.
13949
13950     Acked-by: Michal Simek <monstr@monstr.eu>
13951
13952     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13953
13954 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
13955 Author: richardretanubun <richardretanubun@ruggedcom.com>
13956 Date:   Fri Sep 26 08:59:12 2008 -0400
13957
13958     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
13959
13960     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
13961     This patch makes these function use the devname argument that is passed in to
13962     allow access to the phy registers of other devices in devlist[].
13963
13964     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
13965
13966     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13967
13968 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
13969 Author: richardretanubun <richardretanubun@ruggedcom.com>
13970 Date:   Mon Oct 6 15:31:43 2008 -0400
13971
13972     Adds two more ethernet interface to 83xx
13973
13974     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
13975     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
13976     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13977
13978 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
13979 Author: Stelian Pop <stelian@popies.net>
13980 Date:   Fri Nov 7 13:54:31 2008 +0100
13981
13982     AT91: Replace AT91_BASE_EMAC by the board specific values.
13983
13984     AT91_BASE_EMAC is never used outside the board specific files,
13985     so replace its usage by the board specific AT91xxx_BASE_EMAC.
13986
13987     Signed-off-by: Stelian Pop <stelian@popies.net>
13988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13989
13990 commit c91e17affa175ce06afa89b04752301eb4a61666
13991 Author: Stelian Pop <stelian@popies.net>
13992 Date:   Fri Nov 7 12:09:21 2008 +0100
13993
13994     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
13995
13996     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
13997     Since they are never used outside the board specific files, they can
13998     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
13999     AT91xxx_ID_US2.
14000
14001     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
14002
14003     Signed-off-by: Stelian Pop <stelian@popies.net>
14004     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14005
14006 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
14007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14008 Date:   Sat Nov 1 10:47:59 2008 +0100
14009
14010     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
14011
14012     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14013
14014 commit 1079432e04ccf71aa3684181186182cd63512f19
14015 Author: Sergey Lapin <slapin@ossfans.org>
14016 Date:   Fri Oct 31 12:28:43 2008 +0100
14017
14018     Custom AFEB9260 board support
14019
14020     This patch provides support for AFEB9260 board, a product of
14021     OpenSource hardware and software. Some commertial projects
14022     are made with this design. A board is basically AT91SAM9260-EK
14023     with some modifications and different peripherals and different
14024     parts used. Main purpose of this project is to gain experience in
14025     hardware design.
14026     More info: http://groups.google.com/group/arm9fpga-evolution-board
14027     (In Russian only, sorry).
14028     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
14029
14030     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
14031
14032 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
14033 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
14034 Date:   Tue Oct 21 13:17:16 2008 +0900
14035
14036     Change to use "do_div" macro
14037
14038     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
14039
14040 commit e352495318d8056a00faa21b633b3e4374bfbf52
14041 Author: Roman Mashak <romez777@gmail.com>
14042 Date:   Wed Oct 22 16:00:26 2008 -0400
14043
14044     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
14045
14046     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
14047     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
14048
14049     Signed-off-by: Roman Mashak <romez777@gmail.com>
14050
14051 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
14052 Author: Roman Mashak <romez777@gmail.com>
14053 Date:   Tue Oct 21 03:01:41 2008 -0700
14054
14055     ARM/Versatile port: Removed unused functions
14056
14057     Removal of never used functions.
14058
14059     Signed-off-by: Roman Mashak <romez777@gmail.com>
14060
14061 commit 1266df887781c779deaf6d05eea2ef90a470cb34
14062 Author: Becky Bruce <becky.bruce@freescale.com>
14063 Date:   Mon Nov 3 15:44:01 2008 -0600
14064
14065     powerpc: change 86xx SMP boot method
14066
14067     We put the bootpg for the secondary cpus into memory and use
14068     BPTR to get to it.  This is a step towards converting to the
14069     ePAPR boot methodology.  Also, the code is written to
14070     deal properly with more than 4GB of RAM.
14071
14072     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14073
14074 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
14075 Author: Becky Bruce <becky.bruce@freescale.com>
14076 Date:   Fri Oct 31 17:13:49 2008 -0500
14077
14078     8641HPCN: Config file cleanup
14079
14080     There are several items in the config file that were hardcoded
14081     but that should really be based on other config options, since
14082     the regions are contiguous and depend on being so.  This cleans
14083     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
14084     addresses into the proper format for BR registers.
14085
14086     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14087
14088 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
14089 Author: Becky Bruce <becky.bruce@freescale.com>
14090 Date:   Fri Oct 31 17:13:32 2008 -0500
14091
14092     86xx: Make dram_size a phys_size_t
14093
14094     It's currently a long and should be phys_size_t.
14095
14096     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14097
14098 commit 104992fc541302a6bac74448e01e7fdad20abca0
14099 Author: Becky Bruce <becky.bruce@freescale.com>
14100 Date:   Sun Nov 2 18:19:32 2008 -0600
14101
14102     powerpc 86xx: Handle CCSR relocation earlier
14103
14104     Currently, the CCSR gets relocated while translation is
14105     enabled, meaning we need 2 BAT translations to get to both the
14106     old location and the new location.  Also, the DEFAULT
14107     CCSR location has a dependency on the BAT that maps the
14108     FLASH region.  Moving the relocation removes this unnecessary
14109     dependency. This makes it easier and more intutive to
14110     modify the board's memory map.
14111
14112     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
14113     BAT for CCSR space.
14114
14115     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14116
14117 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
14118 Author: Becky Bruce <becky.bruce@freescale.com>
14119 Date:   Fri Oct 31 17:14:14 2008 -0500
14120
14121     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
14122
14123     You can't actually have both, and with some coming changes to
14124     change the memory map for the board and support 36-bit physical,
14125     we need the extra BAT that is being consumed by having both.
14126
14127     I also make non-PCI configs build cleanly, for the sake of sanity.
14128
14129     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14130
14131 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
14132 Author: Becky Bruce <becky.bruce@freescale.com>
14133 Date:   Fri Oct 31 17:14:00 2008 -0500
14134
14135     mpc8641: Stop supporting non-PCI_PNP configs
14136
14137     We don't actually ever do this, remove the code so we
14138     can stop maintaining it.
14139
14140     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14141
14142 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
14143 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14144 Date:   Fri Oct 24 12:59:12 2008 +0000
14145
14146     ColdFire: Fix M5329EVB and M5373EVB nand issue
14147
14148     Fix compilation issue caused by a few mismatches.
14149     Provide proper nand chip select enable/disable in
14150     nand_hwcontrol() rather than in board_nand_init()
14151     just enable once. Remove redundant local nand driver
14152     functions - nand_read_byte(), nand_write_byte() and
14153     nand_dev_ready() to use common nand driver.
14154
14155     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14156
14157 commit 1b2708442224a551a0b865b52710306333888932
14158 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14159 Date:   Wed Oct 22 11:55:30 2008 +0000
14160
14161     ColdFire: Fix compilation error
14162
14163     The error was caused by the change for strmhz() in cpu.c.
14164     A few of them were one extra close parenthesis.
14165
14166     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14167
14168 commit 536e7dac16769954915a484e682a2efb28699133
14169 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14170 Date:   Wed Oct 22 11:38:21 2008 +0000
14171
14172     ColdFire: Add MCF5301x CPU and M53017EVB support
14173
14174     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14175
14176 commit a21d0c2cc9add8894d971ab791f4032f077db817
14177 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14178 Date:   Tue Oct 21 15:37:02 2008 +0000
14179
14180     ColdFire: Add SBF support for M52277EVB
14181
14182     Add serial boot support
14183
14184     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14185
14186 commit b202816c61042c183fe67d097a5893b0f2dafba0
14187 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14188 Date:   Tue Oct 21 14:19:26 2008 +0000
14189
14190     ColdFire: Use CFI driver for M5272C3
14191
14192     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14193
14194 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
14195 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14196 Date:   Tue Oct 21 13:47:54 2008 +0000
14197
14198     ColdFire: Relocate FEC's GPIO and mii functions protocols
14199
14200     Place FEC pin assignments in cpu_init.c from platform's
14201     mii.c
14202
14203     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14204
14205 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
14206 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14207 Date:   Tue Oct 21 12:15:44 2008 +0000
14208
14209     ColdFire: Remove platforms mii.c file
14210
14211     Will use mcfmii.c driver in drivers/net rather than
14212     keep creating new mii.c for each future platform.
14213     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
14214     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
14215     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
14216     mii.c
14217
14218     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14219
14220 commit 012522fef3b382469125beb46a315ab4dee02fb0
14221 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14222 Date:   Tue Oct 21 10:03:07 2008 +0000
14223
14224     ColdFire: Modules header files cleanup
14225
14226     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
14227     MDHA, SKHA, INTC, and FlexBus structures and
14228     definitions in immap_5xxx.h to more unify modules
14229     header files. Append DSPI support for m547x_8x.
14230     SSI cleanup. Remove USB Host structure from immap_539.h.
14231     Apply changes to use FlexBus structures in mcf52x2's
14232     cpu_init.c and platform configuration files.
14233
14234     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14235
14236 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
14237 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14238 Date:   Tue Oct 21 08:52:36 2008 +0000
14239
14240     ColdFire: Remove linker file
14241
14242     Each different build for M54455EVB and M5235EVB will
14243     create a u-boot.lds linker file. It is redundant to
14244     keep the u-boot.lds
14245
14246     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14247
14248 commit 0829323073c505556ed5f5073f91adb504584d45
14249 Author: Peter Tyser <ptyser@xes-inc.com>
14250 Date:   Fri Oct 31 11:26:44 2008 -0500
14251
14252     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
14253
14254     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14255
14256 commit a80b21d5127583171d6e9bc7f722947641898012
14257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14258 Date:   Fri Oct 31 12:12:12 2008 +0100
14259
14260     common/Makefile: create others group for non core, environment and command files
14261
14262     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14263
14264 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
14265 Author: Wolfgang Denk <wd@denx.de>
14266 Date:   Fri Oct 31 01:13:37 2008 +0100
14267
14268     TQM8260: use CFI flash driver instead of custom driver.
14269
14270     Signed-off-by: Wolfgang Denk <wd@denx.de>
14271
14272 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
14273 Author: Andy Fleming <afleming@freescale.com>
14274 Date:   Thu Oct 30 17:35:30 2008 -0500
14275
14276     Consolidate MAX/MIN definitions
14277
14278     There were several, now there is one (two if you count the lower-case
14279     versions).
14280
14281     Signed-off-by: Andy Fleming <afleming@freescale.com>
14282
14283 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
14284 Author: Heiko Schocher <hs@denx.de>
14285 Date:   Thu Oct 30 09:23:09 2008 +0100
14286
14287     mgsuvd: remove unused defines in config file.
14288
14289     Signed-off-by: Heiko Schocher <hs@denx.de>
14290
14291 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
14292 Author: Wolfgang Denk <wd@denx.de>
14293 Date:   Sun Nov 2 16:14:22 2008 +0100
14294
14295     Coding Style cleanup, update CHANGELOG
14296
14297     Signed-off-by: Wolfgang Denk <wd@denx.de>
14298
14299 commit a47f957ab523019992fdef857af01bd71c58a4da
14300 Author: Alessandro Rubini <rubini-list@gnudd.com>
14301 Date:   Fri Oct 31 22:33:21 2008 +0100
14302
14303     NAND: Allow NAND and OneNAND to coexist
14304
14305     This removes in nand.h code that is verbatim duplicated from bbm.h,
14306     including directly bbm.h in nand.h. The previous state of affairs
14307     prevented compiling code for a board hosting both NAND and OneNAND chips.
14308
14309     Reported-by: Scott Wood <scottwood@freescale.com>
14310     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
14311     Signed-off-by: Scott Wood <scottwood@freescale.com>
14312
14313 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
14314 Author: Scott Wood <scottwood@freescale.com>
14315 Date:   Fri Oct 31 13:51:12 2008 -0500
14316
14317     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
14318
14319     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
14320     Signed-off-by: Scott Wood <scottwood@freescale.com>
14321
14322 commit c57fc28947e248fb03c49a28b467686299895055
14323 Author: Jason Jin <Jason.Jin@freescale.com>
14324 Date:   Fri Oct 31 05:07:04 2008 -0500
14325
14326     NAND: Add NAND support for MPC8536DS board
14327
14328     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
14329     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
14330     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
14331
14332     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
14333     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14334     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14335
14336 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
14337 Author: Haiying Wang <Haiying.Wang@freescale.com>
14338 Date:   Fri Oct 31 05:06:14 2008 -0500
14339
14340     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
14341
14342     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
14343
14344     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14345     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14346
14347 commit 51b572a801be57790fe26adaa530210e7fba59cc
14348 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14349 Date:   Fri Oct 24 10:49:48 2008 +0900
14350
14351     sh: rsk7203: Moved rsk7203 board to board/renesas
14352
14353     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14354
14355 commit 58453b00b3ebb26aaa901210023f99504a90bb00
14356 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14357 Date:   Fri Oct 24 10:48:31 2008 +0900
14358
14359     sh: MigoR: Moved MigoR board to board/renesas
14360
14361     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14362
14363 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
14364 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14365 Date:   Fri Oct 24 10:39:44 2008 +0900
14366
14367     sh: r2dplus: Moved r2dplus board to board/renesas
14368
14369     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14370
14371 commit 78385bf2359d828184d0b3649f7ae6b933420000
14372 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14373 Date:   Fri Oct 24 10:36:13 2008 +0900
14374
14375     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
14376
14377     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14378
14379 commit c6525d459c350bfc246ea7826456af77e1e314eb
14380 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14381 Date:   Fri Oct 24 10:35:19 2008 +0900
14382
14383     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
14384
14385     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14386
14387 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
14388 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14389 Date:   Fri Oct 24 10:34:21 2008 +0900
14390
14391     sh: r7780mp: Moved r7780mp board to board/renesas
14392
14393     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14394
14395 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
14396 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14397 Date:   Fri Oct 24 10:32:14 2008 +0900
14398
14399     sh: ap325rxa: Moved ap325rxa board to board/renesas
14400
14401     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14402
14403 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
14404 Author: Wolfgang Denk <wd@xpert.denx.de>
14405 Date:   Fri Oct 31 01:12:28 2008 +0100
14406
14407     CFI Driver: Fix "flash not ready" problem
14408
14409     This patch fixes a problem on systems where the NOR flash is attached
14410     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
14411     on the assumption that the same flash address is read twice without
14412     any other interjacent flash accesses.  However, on 32 bit systems the
14413     function flash_read64() [as currently implemented] does not perform
14414     an atomic 64 bit read - instead, this is broken down into two 32 bit
14415     read accesses on addresses "addr" and "addr + 4".  So instead of
14416     reading a 64 bit value twice from "addr", we see a sequence of 4 32
14417     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
14418     consequence is that flash_toggle() fails to work.
14419
14420     This patch implements a simple, but somewhat ugly solution, as it
14421     avoids the use of flash_read64() in this critical place (by breaking
14422     it down manually into 32 bit read operations) instead of rewriting
14423     flash_read64() such to perform atomic 64 bit reads as one could
14424     expect.  However, such a rewrite would require the use of floating
14425     point load operations, which becomes pretty complex:
14426
14427         save MSR;
14428         set Floating Point Enable bit in MSR;
14429         use "lfd" instruction to perform atomic 64 bit read;
14430         use "stfd" to store value to temporary variable on stack;
14431         load u64 value from temporary variable;
14432         restore saved MSR;
14433         return u64 value;
14434
14435     The benefit-cost ratio of such an implementation was considered too
14436     bad to actually attempt this, especially as we can expect that such
14437     an implementation would not only have a bigger memory footprint but
14438     also cause a performance degradation.
14439
14440     Signed-off-by: Wolfgang Denk <wd@denx.de>
14441     Signed-off-by: Stefan Roese <sr@denx.de>
14442
14443 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
14444 Author: Stefan Roese <sr@denx.de>
14445 Date:   Fri Oct 31 10:48:08 2008 +0100
14446
14447     ppc4xx: Fix spelling error in MAINTAINERS file
14448
14449     Signed-off-by: Stefan Roese <sr@denx.de>
14450
14451 commit be270798900b75ad9c47c7b79c72f70441196c56
14452 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14453 Date:   Tue Oct 28 13:37:00 2008 +0100
14454
14455     ppc4xx: Update PMC440 board support
14456
14457     This patch brings PMC440 board support up to date:
14458
14459     - fix GPIO configuration
14460     - add misc_init_f()
14461     - use better values for usbact variable
14462     - fix USB 2.0 phy reset sequence
14463     - shrink BAR2 to save PCI address space
14464     - add FDT support
14465
14466     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14467     Signed-off-by: Stefan Roese <sr@denx.de>
14468
14469 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
14470 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14471 Date:   Tue Oct 28 13:36:59 2008 +0100
14472
14473     ppc4xx: Fix PMC440 BSP commands
14474
14475     This patch fixes the PMC440 BSP commands painit and selfreset
14476
14477     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14478     Signed-off-by: Stefan Roese <sr@denx.de>
14479
14480 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
14481 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14482 Date:   Tue Oct 28 13:36:58 2008 +0100
14483
14484     ppc4xx: Update PMC440 board configuration
14485
14486     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14487     Signed-off-by: Stefan Roese <sr@denx.de>
14488
14489 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
14490 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14491 Date:   Tue Oct 28 13:36:57 2008 +0100
14492
14493     ppc4xx: Fix esd loadpci command
14494
14495     This patch fixes esd's loadpci command when not all
14496     memory on adapter boards is accessable via PCI.
14497
14498     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14499     Signed-off-by: Stefan Roese <sr@denx.de>
14500
14501 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
14502 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14503 Date:   Tue Oct 28 13:36:56 2008 +0100
14504
14505     ppc4xx: Clean up PMC440 header
14506
14507     -Codingstyle cleanup
14508     -Remove unused GPIO define
14509
14510     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14511     Signed-off-by: Stefan Roese <sr@denx.de>
14512
14513 commit 295133258a44f97a57fb2ec339aecfda11f4db95
14514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14515 Date:   Tue Oct 28 13:36:55 2008 +0100
14516
14517     ppc4xx: Handle other board variant in PMC440 FPGA code
14518
14519     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14520     Signed-off-by: Stefan Roese <sr@denx.de>
14521
14522 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
14523 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14524 Date:   Mon Oct 27 12:35:59 2008 +0100
14525
14526     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
14527
14528     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
14529     config files of both infrastuctures
14530
14531     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14532     Signed-off-by: Stefan Roese <sr@denx.de>
14533
14534 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
14535 Author: Stefan Roese <sr@denx.de>
14536 Date:   Sat Oct 25 06:45:31 2008 +0200
14537
14538     ppc4xx: Correctly configure the GPIO pin muxing on Arches
14539
14540     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
14541     pin multiplexing correctly
14542
14543     Signed-off-by: Stefan Roese <sr@denx.de>
14544
14545 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
14546 Author: Bartlomiej Sieka <tur@semihalf.com>
14547 Date:   Thu Oct 30 23:22:04 2008 +0100
14548
14549     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
14550
14551     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14552
14553 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
14554 Author: David Gibson <david@gibson.dropbear.id.au>
14555 Date:   Wed Oct 29 23:27:45 2008 -0500
14556
14557     libfdt: Fix bug in fdt_subnode_offset_namelen()
14558
14559     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
14560     which causes it to keep searching after it's finished the subnodes of
14561     the given parent, and into the subnodes of siblings of the original
14562     node which come after it in the tree.
14563
14564     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
14565     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14566
14567 commit f242a08871839eac081ba5b599af979f3a148a0d
14568 Author: Peter Korsgaard <jacmet@sunsite.dk>
14569 Date:   Tue Oct 28 08:26:52 2008 +0100
14570
14571     fdt_resize(): ensure minimum padding
14572
14573     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
14574     (16 bytes), so make sure that fdt_resize at least adds that much
14575     padding, no matter what the location or size of the fdt is.
14576
14577     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14578     Acked-by: Andy Fleming <afleming@freescale.com>
14579
14580 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
14581 Author: Dave Liu <daveliu@freescale.com>
14582 Date:   Thu Oct 23 21:59:35 2008 +0800
14583
14584     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
14585
14586     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
14587
14588     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
14589
14590     This is needed in unlock_ram_in_cache() because it is called from C and
14591     will corrupt the small data area anchor that is kept in R2.
14592
14593     lock_ram_in_cache() is modified similarly as good coding practice, but
14594     is not called from C.
14595
14596     Signed-off-by: Nick Spence <nick.spence@freescale.com>
14597
14598     also, the r2 is used as global data pointer.
14599
14600     Signed-off-by: Dave Liu <daveliu@freescale.com>
14601
14602 commit e053ab1903ccae6048ef759025b9f675bba91450
14603 Author: Scott Wood <scottwood@freescale.com>
14604 Date:   Tue Oct 28 11:45:04 2008 -0500
14605
14606     mpc83xx pci: Round up memory size in inbound window.
14607
14608     The current calculation will fail to cover all memory if
14609     its size is not a power of two.
14610
14611     Signed-off-by: Scott Wood <scottwood@freescale.com>
14612     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14613
14614 commit 1c671977dc81359628be27ac99c174e76e8069ba
14615 Author: Dave Liu <daveliu@freescale.com>
14616 Date:   Thu Oct 23 21:19:13 2008 +0800
14617
14618     86xx: remove the unused definition
14619
14620     Signed-off-by: Dave Liu <daveliu@freescale.com>
14621
14622 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
14623 Author: Dave Liu <daveliu@freescale.com>
14624 Date:   Tue Oct 28 17:47:49 2008 +0800
14625
14626     86xx: remove the redundant r2 global data pointer save
14627
14628     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
14629     the another global data pointer save, but in fact the
14630     global data pointer will be initialized in the board_init_r,
14631     so remove it such as the 85xx/83xx family.
14632
14633     Signed-off-by: Dave Liu <daveliu@freescale.com>
14634     Acked-by: Kumar Gala <kumar.gala@freescale.com>
14635
14636 commit bd888e9544419665334a6f47f81f34011cea38f3
14637 Author: Dave Liu <daveliu@freescale.com>
14638 Date:   Tue Oct 28 17:47:41 2008 +0800
14639
14640     86xx: remove the unused code for 86xx family
14641
14642     I believe these code was copied from 74xx family, but for
14643     86xx, it is unused.
14644
14645     Signed-off-by: Dave Liu <daveliu@freescale.com>
14646     Acked-by: Kumar Gala <kumar.gala@freescale.com>
14647
14648 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
14649 Author: Dave Liu <daveliu@freescale.com>
14650 Date:   Tue Oct 28 17:46:35 2008 +0800
14651
14652     86xx: remove the second DDR LAW setting for mpc8641hpcn
14653
14654     The DDR1 LAW will precedence the DDR2 LAW, so remove
14655     the second DDR LAW.
14656
14657     Signed-off-by: Dave Liu <daveliu@freescale.com>
14658     Acked-by: Becky Bruce <becky.bruce@freescale.com>
14659
14660 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
14661 Author: Dave Liu <daveliu@freescale.com>
14662 Date:   Tue Oct 28 17:46:23 2008 +0800
14663
14664     86xx: remove the unused ddr_enable_ecc in the board file
14665
14666     The DDR controller of 86xx processors have the ECC data init
14667     feature, and the new DDR code is using the feature, we don't
14668     need the way with DMA to init memory again.
14669
14670     Signed-off-by: Dave Liu <daveliu@freescale.com>
14671     Acked-by: Kumar Gala <kumar.gala@freescale.com>
14672
14673 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
14674 Author: Dave Liu <daveliu@freescale.com>
14675 Date:   Tue Oct 28 17:46:12 2008 +0800
14676
14677     86xx: Move the clear_tlbs before MMU turn on
14678
14679     We must invalidate TLBs before MMU turn on, but
14680     currently the code is not, if there are some stale
14681     TLB entry valid in the TLBs, it will cause strange
14682     issue.
14683
14684     Signed-off-by: Dave Liu <daveliu@freescale.com>
14685     Acked-by: Becky Bruce <becky.bruce@freescale.com>
14686
14687 commit 5cdade07b118d07154cb882650f9778cecc8a87c
14688 Author: Scott Wood <scottwood@freescale.com>
14689 Date:   Mon Oct 27 15:57:08 2008 -0500
14690
14691     mpc8313erdb: Document NAND boot.
14692
14693     Previously, the documentation claimed that NAND boot is not supported.
14694     This is no longer true.
14695
14696     Signed-off-by: Scott Wood <scottwood@freescale.com>
14697
14698 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
14699 Author: Scott Wood <scottwood@freescale.com>
14700 Date:   Wed Oct 29 14:20:26 2008 -0500
14701
14702     NAND: Properly create JFFS2 cleanmarkers.
14703
14704     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
14705     command is currently broken, and among other things causes all blocks
14706     to be marked bad.
14707
14708     This implements it properly using MTD_OOB_AUTO, along with some
14709     indentation fixes.
14710
14711     Signed-off-by: Scott Wood <scottwood@freescale.com>
14712
14713 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
14714 Author: Scott Wood <scottwood@freescale.com>
14715 Date:   Wed Oct 29 13:42:41 2008 -0500
14716
14717     NAND fsl elbc: Set FMR[ECCM] based on page size.
14718
14719     Hardware expects ECCM 0 for small page and ECCM 1 for large page
14720     when booting from NAND, so use those defaults.
14721
14722     Signed-off-by: Scott Wood <scottwood@freescale.com>
14723
14724 commit c013b74975dab0805ef6d369b013230c4e8a660d
14725 Author: Haiying Wang <Haiying.Wang@freescale.com>
14726 Date:   Wed Oct 29 13:32:59 2008 -0400
14727
14728     NAND: Add support for MPC8572DS board
14729
14730     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
14731     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
14732     config file.
14733
14734     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
14735     make room for the increased code size with NAND enabled.
14736
14737     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
14738     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14739     Signed-off-by: Scott Wood <scottwood@freescale.com>
14740
14741 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
14742 Author: Haiying Wang <Haiying.Wang@freescale.com>
14743 Date:   Wed Oct 29 11:05:55 2008 -0400
14744
14745     Make Freescale local bus registers available for both 83xx and 85xx.
14746
14747     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
14748       can be shared by both 83xx and 85xx
14749     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
14750       files which use lbus83xx_t.
14751     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
14752       85xx can share them.
14753
14754     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
14755     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14756     Signed-off-by: Scott Wood <scottwood@freescale.com>
14757
14758 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
14759 Author: Scott Wood <scottwood@freescale.com>
14760 Date:   Mon Oct 27 15:38:30 2008 -0500
14761
14762     NAND: Align right column of the shorthelp with other commands.
14763
14764     I accidentally broke this in when making consistent the partial
14765     alignment of the longhelp.
14766
14767     Signed-off-by: Scott Wood <scottwood@freescale.com>
14768
14769 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
14770 Author: Karl Beldan <karl.beldan@gmail.com>
14771 Date:   Mon Sep 15 16:08:03 2008 +0200
14772
14773     NAND: Reset chip on power-up
14774
14775     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
14776     The first command sent is NAND_CMD_READID.
14777     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
14778     Tested with an MT29F4G08AAC.
14779
14780     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
14781     Signed-off-by: Scott Wood <scottwood@freescale.com>
14782
14783 commit c45912d8abc52de796b9059a58faf7c4166eab58
14784 Author: Scott Wood <scottwood@freescale.com>
14785 Date:   Fri Oct 24 16:20:43 2008 -0500
14786
14787     NAND: sync with 2.6.27
14788
14789     This brings the core NAND code up to date with the Linux kernel.
14790
14791     Since there were several drivers in Linux as of the last update that are
14792     not in u-boot, I'm not bringing over new drivers that have been added
14793     since in the absence of an interested party.
14794
14795     I did not update OneNAND since it was recently synced by Kyungmin Park,
14796     and I'm not sure exactly what the common ancestor is.
14797
14798     Signed-off-by: Scott Wood <scottwood@freescale.com>
14799
14800 commit b1d0db1805c3395149777e507b6da53410abac4e
14801 Author: Kumar Gala <galak@kernel.crashing.org>
14802 Date:   Tue Oct 21 17:25:47 2008 -0500
14803
14804     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
14805
14806     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
14807
14808     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14809
14810 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
14811 Author: Kumar Gala <galak@kernel.crashing.org>
14812 Date:   Tue Oct 21 17:25:46 2008 -0500
14813
14814     bootm: support subcommands in linux ppc bootm
14815
14816     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
14817
14818     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14819
14820 commit 49c3a861d11735838f1f1b11999ce433006dc919
14821 Author: Kumar Gala <galak@kernel.crashing.org>
14822 Date:   Tue Oct 21 17:25:45 2008 -0500
14823
14824     bootm: Add subcommands
14825
14826     Add the ability to break the steps of the bootm command into several
14827     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
14828
14829     This allows us to do things like manipulate device trees before
14830     they are passed to a booting kernel or setup memory for a secondary
14831     core in multicore situations.
14832
14833     Not all OS types support all subcommands (currently only start, loados,
14834     ramdisk, fdt, and go are supported).
14835
14836     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14837
14838 commit be08315933537f061bc1ce61f33a29c56458bbad
14839 Author: Kumar Gala <galak@kernel.crashing.org>
14840 Date:   Tue Oct 21 17:25:44 2008 -0500
14841
14842     bootm: Move to using a function pointer table for the boot os function
14843
14844     This removes a bit of code and makes it easier for the upcoming sub bootm
14845     command support to call into the proper OS specific handler.
14846
14847     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14848     Signed-off-by: Wolfgang Denk <wd@denx.de>
14849
14850 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
14851 Author: Graeme Russ <graeme.russ@gmail.com>
14852 Date:   Mon Sep 29 23:03:14 2008 +1000
14853
14854     i386: Renamed show_boot_progress in assembler code
14855
14856     Renamed show_boot_progress in assembler init phase to
14857     show_boot_progress_asm to avoid link conflicts with C version
14858
14859     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
14860
14861 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
14862 Author: Peter Tyser <ptyser@xes-inc.com>
14863 Date:   Mon Oct 27 16:42:00 2008 -0500
14864
14865     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
14866
14867     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
14868     processors have a 3-bit wide IO_SEL field but have the most
14869     significant bit is wired to 0 so this change should not affect
14870     them.
14871
14872     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14873
14874 commit cd4251624205cb97104f6e32679dc7754934f711
14875 Author: Becky Bruce <becky.bruce@freescale.com>
14876 Date:   Mon Oct 27 16:09:42 2008 -0500
14877
14878     powerpc: fix pci window initialization to work with > 4GB DRAM
14879
14880     The existing code has a few errors that need to be fixed in
14881     order to support large RAM sizes.  Fix those, and add a
14882     comment to make it clearer.
14883
14884     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14885     Acked-by: Kumar Gala <galak@kernel.crashing.org>
14886
14887 commit 219542a1a66ca017b12860920714a9859b18a5d7
14888 Author: Kumar Gala <galak@kernel.crashing.org>
14889 Date:   Mon Oct 27 13:16:20 2008 -0500
14890
14891     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
14892
14893     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14894
14895 commit 6b59e03e0237a40a2305ea385defdfd92000978b
14896 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14897 Date:   Mon Sep 1 16:21:22 2008 +0200
14898
14899     lcd: Let the board code show board-specific info
14900
14901     The information displayed when CONFIG_LCD_INFO is set is inherently
14902     board-specific, so it should be done by the board code. The current code
14903     dealing with this only handles two cases, and is already a horrible mess
14904     of #ifdeffery.
14905
14906     Yes, this duplicates some code, but it also allows boards to print more
14907     board-specific information; this used to be very difficult.
14908
14909     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14910     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14911
14912 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
14913 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14914 Date:   Mon Sep 1 16:21:21 2008 +0200
14915
14916     lcd: Set lcd_is_enabled before clearing the screen
14917
14918     This allows the logo/info rendering routines to use the regular
14919     lcd_putc/lcd_puts/lcd_printf calls.
14920
14921     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14922     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14923
14924 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
14925 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14926 Date:   Mon Sep 1 16:21:20 2008 +0200
14927
14928     lcd: Implement lcd_printf()
14929
14930     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
14931     this by borrowing the lcd_printf() implementation from the cogent board
14932     code (which appears to use its own LCD framework.)
14933
14934     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14935     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14936
14937 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
14938 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14939 Date:   Mon Sep 1 16:21:19 2008 +0200
14940
14941     atmel_lcdfb: Straighten out funky vl_sync logic
14942
14943     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
14944     otherwise we don't. WTF?
14945
14946     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14947     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14948
14949 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
14950 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14951 Date:   Mon Sep 1 16:21:18 2008 +0200
14952
14953     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
14954
14955     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
14956     includes a file that does, asm/arch/gpio.h, but this file doesn't
14957     include <asm/arch/hardware.h> like it's supposed to.
14958
14959     Add the missing include to asm/arch/gpio.h and remove the workaround
14960     from the atmel_lcdfb driver. This makes the driver compile on avr32.
14961
14962     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14963     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14964
14965 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
14966 Author: Kumar Gala <galak@kernel.crashing.org>
14967 Date:   Wed Oct 22 14:38:55 2008 -0500
14968
14969     86xx: Convert all fsl_pci_init users to new APIs
14970
14971     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
14972     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
14973
14974     With these changes the board code is a bit smaller and we get dma-ranges
14975     set in the device tree for these boards.
14976
14977     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14978     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14979     Acked-by: Jon Loeliger <jdl@freescale.com>
14980
14981 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
14982 Author: Kumar Gala <galak@kernel.crashing.org>
14983 Date:   Tue Oct 21 08:28:33 2008 -0500
14984
14985     85xx: Convert all fsl_pci_init users to new APIs
14986
14987     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
14988     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
14989     and ft_fsl_pci_setup().
14990
14991     With these changes the board code is a bit smaller and we get dma-ranges
14992     set in the device tree for these boards.
14993
14994     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14995     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14996
14997 commit a2aab460727e5f674353a83a81000ef794bffcae
14998 Author: Kumar Gala <galak@kernel.crashing.org>
14999 Date:   Thu Oct 23 00:01:06 2008 -0500
15000
15001     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
15002
15003     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15004     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15005
15006 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
15007 Author: Kumar Gala <galak@kernel.crashing.org>
15008 Date:   Wed Oct 22 14:06:24 2008 -0500
15009
15010     pci/fsl_pci_init: Add a common PCI inbound setup function
15011
15012     Add a common setup function that determines the pci_region(s) based
15013     on how much memory we have in the system.
15014
15015     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15016     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15017
15018 commit 612ea01018a459234d54ed57ec6a5a244ce75678
15019 Author: Kumar Gala <galak@kernel.crashing.org>
15020 Date:   Tue Oct 21 10:13:14 2008 -0500
15021
15022     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
15023
15024     * PCI Inbound window was setup incorrectly.  The PCI address and system
15025       address were swapped.  The PCI address should be setting piwar/piwbear
15026       and the system address should be setting pitar.
15027
15028     * Removed masking of addresses to allow for system address to support
15029       system address & PCI address >32-bits
15030
15031     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
15032
15033     * Respect the PCI_REGION_PREFETCH for inbound windows
15034
15035     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15036     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15037
15038 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
15039 Author: Kumar Gala <galak@kernel.crashing.org>
15040 Date:   Wed Oct 22 23:33:56 2008 -0500
15041
15042     fdt: Added helper to set PCI dma-ranges property
15043
15044     Added fdt_pci_dma_ranges() that parses the pci_region info from the
15045     struct pci_controller and populates the dma-ranges based on it.
15046
15047     The max # of windws/dma-ranges we support is 3 since on embedded
15048     PowerPC based systems this is the max number of windows.
15049
15050     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15051     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15052
15053 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
15054 Author: Kumar Gala <galak@kernel.crashing.org>
15055 Date:   Thu Oct 23 00:05:47 2008 -0500
15056
15057     fdt: Add fdt_getprop_u32_default helpers
15058
15059     Add helper functions to return find a node and return it's property
15060     or a default value.
15061
15062     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15063     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15064     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
15065
15066 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
15067 Author: Kumar Gala <galak@kernel.crashing.org>
15068 Date:   Tue Oct 21 18:06:15 2008 -0500
15069
15070     86xx: Enable 64-bit PCI resources on all Freescale boards
15071
15072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15073     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15074
15075 commit 0151cbaccf4504821ecfde0217299bd740086bb6
15076 Author: Kumar Gala <galak@kernel.crashing.org>
15077 Date:   Tue Oct 21 11:33:58 2008 -0500
15078
15079     85xx: Enable 64-bit PCI resources on all Freescale boards
15080
15081     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15082     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15083
15084 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
15085 Author: Kumar Gala <galak@kernel.crashing.org>
15086 Date:   Tue Oct 21 08:36:08 2008 -0500
15087
15088     pci: Allow for PCI addresses to be 64-bit
15089
15090     PCI bus is inherently 64-bit.  While not all system require access to
15091     the full 64-bit PCI address range some do.  This allows those systems
15092     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
15093
15094     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15095     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
15096     Acked-by: Wolfgang Denk <wd@denx.de>
15097
15098 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
15099 Author: Dave Liu <daveliu@freescale.com>
15100 Date:   Thu Oct 23 21:18:53 2008 +0800
15101
15102     85xx: Fix the incorrect register used for DDR erratum1
15103
15104     The 8572 DDR erratum1:
15105     DDR controller may enter an illegal state when operating
15106     in 32-bit bus mode with 4-beat bursts.
15107
15108     Description:
15109     When operating with a 32-bit bus, it is recommended that
15110     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
15111     This forces the DDR controller to use 4-beat bursts when
15112     communicating to the DRAMs. However, an issue exists that
15113     could lead to data corruption when the DDR controller is
15114     in 32-bit bus mode while using 4-beat bursts.
15115
15116     Projected Impact:
15117     If the DDR controller is operating in 32-bit bus mode with
15118     4-beat bursts, then the controller may enter into a bad state.
15119     All subsequent reads from memory is corrupted.
15120     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
15121     Therefore, this erratum does not affect DDR3 mode.
15122
15123     Work Arounds:
15124     To work around this issue, software must set DEBUG_1[31] in
15125     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
15126     and CCSRBAR offset + 0x6f00 for DDR_2).
15127
15128     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
15129     as condition, but it should be DDR_SDRAM_CFG register.
15130
15131     Signed-off-by: Dave Liu <daveliu@freescale.com>
15132
15133 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
15134 Author: Dave Liu <daveliu@freescale.com>
15135 Date:   Thu Oct 23 21:17:19 2008 +0800
15136
15137     85xx: remove unused config definition
15138
15139     Signed-off-by: Dave Liu <daveliu@freescale.com>
15140
15141 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
15142 Author: Kumar Gala <galak@kernel.crashing.org>
15143 Date:   Thu Oct 23 01:47:38 2008 -0500
15144
15145     85xx: Add basic e500mc core support
15146
15147     Introduce CONFIG_E500MC to deal with the minor differences between
15148     e500v2 and e500mc.
15149
15150     * Certain fields of HID0/1 don't exist anymore on e500mc
15151     * Cache line size is 64-bytes on e500mc
15152     * reset value of PIR is different
15153
15154     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15155
15156 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
15157 Author: Kumar Gala <galak@kernel.crashing.org>
15158 Date:   Thu Oct 23 01:47:37 2008 -0500
15159
15160     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
15161
15162     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
15163     e500mc's 64-byte cacheline properly when it gets added.
15164
15165     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15166
15167 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
15168 Author: Georg Schardt <schardt@team-ctech.de>
15169 Date:   Fri Oct 24 13:51:52 2008 +0200
15170
15171     ppc4xx: New board avnet fx12 minimodul
15172
15173     This patch adds support for the avnet fx12 minimodul.
15174     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
15175     patch from Ricardo.
15176
15177     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
15178     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
15179     Signed-off-by: Stefan Roese <sr@denx.de>
15180
15181 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
15182 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
15183 Date:   Tue Oct 21 18:29:46 2008 +0200
15184
15185     ppc4xx: Generic architecture for xilinx ppc405(v3)
15186
15187     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
15188     ppc440 boards, this patch presents a common architecture for all the
15189     xilinx ppc405 boards.
15190
15191     Any custom xilinx ppc405 board can be added very easily with no code
15192     duplicity.
15193
15194     This patch also adds a simple generic board, that can be used on almost
15195     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
15196
15197     This patch is prepared to work with the latest version of EDK (10.1)
15198
15199     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
15200     Signed-off-by: Stefan Roese <sr@denx.de>
15201
15202 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
15203 Author: Stefan Roese <sr@denx.de>
15204 Date:   Fri Oct 24 08:56:09 2008 +0200
15205
15206     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
15207
15208     Since the new autocalibration still has some problems on some Kilauea
15209     boards with 200MHz DDR2 frequency we disable the autocalibration and
15210     use the hardcoded values as done before. This seems to work reliably
15211     on all known DDR2 frequencies.
15212
15213     After the autocalibration issue is fixed we will enable it again.
15214
15215     Signed-off-by: Stefan Roese <sr@denx.de>
15216
15217 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
15218 Author: Mike Frysinger <vapier@gentoo.org>
15219 Date:   Wed Apr 9 02:02:07 2008 -0400
15220
15221     Blackfin: fix up UART status bit handling
15222
15223     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
15224     This can cause problems when we poll the LSR and then later try and handle
15225     any errors detected.
15226
15227     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15228
15229 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
15230 Author: Mike Frysinger <vapier@gentoo.org>
15231 Date:   Sat Oct 11 20:42:17 2008 -0400
15232
15233     Blackfin: bf561-ezkit: drop redundant code
15234
15235     Common Blackfin code already announces CPU information.
15236
15237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15238
15239 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
15240 Author: Mike Frysinger <vapier@gentoo.org>
15241 Date:   Sat Oct 11 20:43:10 2008 -0400
15242
15243     Blackfin: bf561-ezkit: drop pointless USB code
15244
15245     The USB/LAN register settings are not actually used/needed in order to
15246     drive things from U-Boot, so drop the code.
15247
15248     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15249
15250 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
15251 Author: Mike Frysinger <vapier@gentoo.org>
15252 Date:   Sat Oct 11 20:47:58 2008 -0400
15253
15254     Blackfin: linker scripts: force start.o and set initcode boundaries
15255
15256     Make sure that the start.o object is always the first object in our linker
15257     script regardless of configuration settings, and add some linker symbols
15258     so the ldr utility can properly locate the initcode when generating a LDR.
15259
15260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15261
15262 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
15263 Author: Mike Frysinger <vapier@gentoo.org>
15264 Date:   Sat Oct 11 21:19:39 2008 -0400
15265
15266     Blackfin: small cpu init optimization while setting interrupt mask
15267
15268     Use the sti instruction to set the initial interrupt mask rather than
15269     banging on the core IMASK MMR to save both space and time.
15270
15271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15272
15273 commit 960922291c9594acb575cec7e47d7bed9b58182c
15274 Author: Mike Frysinger <vapier@gentoo.org>
15275 Date:   Sat Oct 11 21:18:10 2008 -0400
15276
15277     Blackfin: set initial stack correctly according to Blackfin ABI
15278
15279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15280
15281 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
15282 Author: Mike Frysinger <vapier@gentoo.org>
15283 Date:   Sun Apr 20 03:11:53 2008 -0400
15284
15285     Blackfin: make baud calculation more accurate
15286
15287     We should use the algorithm in the Linux kernel so that the UART divisor
15288     calculation is more accurate.  It also fixes problems on some picky UARTs
15289     that have sampling anomalies.
15290
15291     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15292
15293 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
15294 Author: Mike Frysinger <vapier@gentoo.org>
15295 Date:   Mon Oct 6 04:21:41 2008 -0400
15296
15297     Blackfin: decode hwerrcause/excause when crashing
15298
15299     Having to decode hwerrcause/excause values is a pain, so automate it.
15300
15301     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15302
15303 commit 2de95bb20c488f20298df6881b700a5a757ee780
15304 Author: Mike Frysinger <vapier@gentoo.org>
15305 Date:   Mon Oct 6 04:20:54 2008 -0400
15306
15307     Blackfin: fix register dump messages
15308
15309     Make sure we report RETI/IPEND correctly.
15310
15311     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15312
15313 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
15314 Author: Mike Frysinger <vapier@gentoo.org>
15315 Date:   Mon Oct 6 04:19:34 2008 -0400
15316
15317     Blackfin: don't bother displaying reboot msg when crashing
15318
15319     The hang function already tells you to reboot, so no point in showing it
15320     twice.
15321
15322     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15323
15324 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
15325 Author: Mike Frysinger <vapier@gentoo.org>
15326 Date:   Sun Jun 1 01:23:48 2008 -0400
15327
15328     Blackfin: enable support for nested interrupts
15329
15330     During cpu init, make sure we initialize the CEC properly so that
15331     interrupts can fire and be handled while U-Boot is running.
15332
15333     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15334
15335 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
15336 Author: Mike Frysinger <vapier@gentoo.org>
15337 Date:   Mon Oct 6 03:55:25 2008 -0400
15338
15339     Blackfin: init NAND before relocating env
15340
15341     If booting out of NAND, we need to make sure we initialize it properly
15342     before attempting to relocate the environment.
15343
15344     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15345
15346 commit 0f9a8819416ba40a53de50af148847a0e508f84d
15347 Author: Mike Frysinger <vapier@gentoo.org>
15348 Date:   Thu Aug 7 18:40:13 2008 -0400
15349
15350     Blackfin: check cache bits, not cplb bits
15351
15352     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15353
15354 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
15355 Author: Mike Frysinger <vapier@gentoo.org>
15356 Date:   Thu Aug 7 17:52:59 2008 -0400
15357
15358     Blackfin: drop unused cache flush code
15359
15360     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15361
15362 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
15363 Author: Mike Frysinger <vapier@gentoo.org>
15364 Date:   Thu Aug 7 15:21:47 2008 -0400
15365
15366     Blackfin: unify cache handling code
15367
15368     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15369
15370 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
15371 Author: Mike Frysinger <vapier@gentoo.org>
15372 Date:   Mon Oct 6 03:39:07 2008 -0400
15373
15374     Blackfin: only initialize the RTC when actually used
15375
15376     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15377
15378 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
15379 Author: Mike Frysinger <vapier@gentoo.org>
15380 Date:   Mon Oct 6 03:44:33 2008 -0400
15381
15382     Blackfin: fix SWRST register definition
15383
15384     The SWRST register is a 16bit, not 32bit, register.
15385
15386     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15387
15388 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
15389 Author: Mike Frysinger <vapier@gentoo.org>
15390 Date:   Thu Aug 7 18:54:57 2008 -0400
15391
15392     Blackfin: build with -fomit-frame-pointer
15393
15394     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15395
15396 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
15397 Author: Mike Frysinger <vapier@gentoo.org>
15398 Date:   Thu Aug 7 17:50:26 2008 -0400
15399
15400     Blackfin: document some of the blackfin directories
15401
15402     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15403
15404 commit e4337968e43698a68ba608369f46d4a4114111ca
15405 Author: Mike Frysinger <vapier@gentoo.org>
15406 Date:   Thu Aug 7 15:16:56 2008 -0400
15407
15408     Blackfin: only enable hardware error irq by default
15409
15410     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15411
15412 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
15413 Author: Mike Frysinger <vapier@gentoo.org>
15414 Date:   Thu Aug 7 13:36:43 2008 -0400
15415
15416     Blackfin: punt old unused mem_init.h header
15417
15418     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15419
15420 commit bcc121a01608042066a19ab5bff5bcfb805bf406
15421 Author: Mike Frysinger <vapier@gentoo.org>
15422 Date:   Thu Aug 7 13:18:55 2008 -0400
15423
15424     Blackfin: delete unused page_descriptor_table_size define
15425
15426     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15427
15428 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
15429 Author: Mike Frysinger <vapier@gentoo.org>
15430 Date:   Thu Aug 7 13:17:03 2008 -0400
15431
15432     Blackfin: fix typo in boot mode comment and add NAND define
15433
15434     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15435
15436 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
15437 Author: Ben Maan <moo@cow>
15438 Date:   Thu Aug 7 13:14:21 2008 -0400
15439
15440     Blackfin: fix port mux defines for BF54x
15441
15442     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15443
15444 commit 0656ef2ba274910d31364fe022f6c7db0051660d
15445 Author: Mike Frysinger <vapier@gentoo.org>
15446 Date:   Thu Aug 7 13:09:50 2008 -0400
15447
15448     Blackfin: update anomaly lists
15449
15450     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15451
15452 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
15453 Author: Mike Frysinger <vapier@gentoo.org>
15454 Date:   Thu Aug 7 13:08:54 2008 -0400
15455
15456     Blackfin: unify DSPID/DBGSTAT MMR definitions
15457
15458     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15459
15460 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
15461 Author: Wolfgang Denk <wd@denx.de>
15462 Date:   Tue Oct 21 15:53:51 2008 +0200
15463
15464     Fix strmhz(): avoid printing negative fractions
15465
15466     Signed-off-by: Wolfgang Denk <wd@denx.de>
15467
15468 commit 4a7f6b750d8de543fdf8e58acd86745010054571
15469 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
15470 Date:   Fri Oct 17 08:55:51 2008 -0400
15471
15472     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
15473
15474     This is done to allow other 83XX based platforms which also have UPM
15475     (e.g. 8360) to configure and use their UPM in u-boot.
15476
15477     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15478     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15479
15480 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
15481 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15482 Date:   Tue Oct 14 22:58:53 2008 +0400
15483
15484     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
15485
15486     With this patch u-boot can fixup the dr_mode and phy_type properties
15487     for the Dual-Role USB controller.
15488
15489     While at it, also remove #ifdefs around includes, they are not needed.
15490
15491     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15492     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15493
15494 commit b3379f3fd13969934c00097c05754e7a8990fd39
15495 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15496 Date:   Wed Oct 8 20:52:54 2008 +0400
15497
15498     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
15499
15500     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
15501     current settings don't work with the default chip on the board.
15502     Nevertheless Freescale's U-Boot sets the option register correctly,
15503     so I just dumped the register from the working u-boot. My guess is
15504     that the old settings were applicable for some pilot boards, not
15505     found in the production.
15506
15507     This patch also enables FSL ELBC driver so that we could access
15508     the NAND storage in the u-boot.
15509
15510     The NAND support costs about 45KB, so the u-boot no longer fits
15511     into two 128KB NOR flash sectors, thus we also have to adjust
15512     environment location: add another 128KB to the monitor length.
15513
15514     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15515
15516     It is due to hardware design and logic defect, that is the
15517     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
15518     the NAND chip connected to nLCS3,  you have to set up the
15519     OR3[BCTLD] = '1' for normal operation, otherwise it will have
15520     bus contention due to the pin 48/25 of U60 is enabled.
15521
15522     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
15523     asserted upon access to the NAND chip, keep the default state.
15524
15525     Acked-by: Dave Liu <daveliu@freescale.com>
15526     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15527
15528 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
15529 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15530 Date:   Thu Oct 2 19:17:33 2008 +0400
15531
15532     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
15533
15534     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
15535     standalone or acting as a PCI agent. User's Guide says:
15536
15537     - When the CPLD recognizes its location on the PIB it automatically
15538       configures RCW to the PCI Host.
15539     - If the CPLD fails to recognize its location then it is automatically
15540       configured as an Agent and the PCI is configured to an external arbiter.
15541
15542     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
15543     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
15544     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
15545     any arbiter bad things will happen (here the board hangs during any config
15546     space reads).
15547
15548     In this situation we must disable the PCI. And in case of anybody really
15549     want to use an external arbiter, we provide "pci_external_aribter"
15550     environment variable.
15551
15552     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15553     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15554
15555 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
15556 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15557 Date:   Thu Oct 2 18:32:25 2008 +0400
15558
15559     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
15560
15561     This involves configuring the SerDes and fixing up the flags and
15562     PHY addresses for the TSECs.
15563
15564     For Linux we also fix up the device tree.
15565
15566     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15567     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15568
15569 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
15570 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15571 Date:   Thu Oct 2 18:31:59 2008 +0400
15572
15573     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
15574
15575     We'll use these masks to parse TSEC modes out of HRCWH.
15576
15577     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15578     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15579
15580 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
15581 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15582 Date:   Thu Oct 2 18:31:56 2008 +0400
15583
15584     mpc83xx: serdes: add forgotten shifts for rfcks
15585
15586     The rfcks should be shifted by 28 bits left. We didn't notice the bug
15587     because we were using only 100MHz clocks (for which rfcks == 0).
15588
15589     Though, for SGMII we'll need 125MHz clocks.
15590
15591     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15592     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15593
15594 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
15595 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15596 Date:   Thu Oct 2 18:31:53 2008 +0400
15597
15598     mpc83xx: fix serdes setup for the MPC8378E boards
15599
15600     MPC837xE specs says that SerDes1 has:
15601
15602     â€” Two lanes running x1 SGMII at 1.25 Gbps;
15603     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
15604
15605     And for SerDes2:
15606
15607     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
15608     â€” One lane running x2 PCI Express at 2.5 Gbps;
15609     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
15610
15611     The spec also explicitly states that PEX options are not valid for
15612     the SD1.
15613
15614     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
15615     which is wrong to do.
15616
15617     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15618     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15619
15620 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
15621 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
15622 Date:   Wed Sep 10 18:12:37 2008 +0400
15623
15624     mpc83xx: mpc8360emds: rework LBC SDRAM setup
15625
15626     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
15627     it difficult to use (b/c then the memory is discontinuous and
15628     there is quite big memory hole between the DDR/SDRAM regions).
15629
15630     This patch reworks LBC SDRAM setup so that now we dynamically
15631     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
15632     DDR memory).
15633
15634     With this patch we're able to:
15635
15636     - Boot without external DDR memory;
15637     - Use most "DDR + SDRAM" setups without need to support for
15638       sparse/discontinuous memory model in the software.
15639
15640     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
15641     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15642
15643 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
15644 Author: Wolfgang Denk <wd@xpert.denx.de>
15645 Date:   Tue Oct 21 11:23:56 2008 +0200
15646
15647     FDT: don't use private kernel header files
15648
15649     On some systems (for example Fedora Core 4) U-Boot builds with the
15650     following wanrings only:
15651
15652     ...
15653     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
15654                      from fdt.c:51:
15655                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
15656
15657     This patch fixes this problem.
15658
15659     Signed-off-by: Wolfgang Denk <wd@denx.de>
15660
15661 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
15662 Author: Stefan Roese <sr@denx.de>
15663 Date:   Mon Oct 13 15:15:31 2008 +0200
15664
15665     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
15666
15667     Signed-off-by: Stefan Roese <sr@denx.de>
15668
15669 commit 43cbce69d48d052574d71f50724be546d90a46a4
15670 Author: Stefan Roese <sr@denx.de>
15671 Date:   Mon Oct 13 10:45:14 2008 +0200
15672
15673     ppc4xx: Correctly setup ranges property in ebc node
15674
15675     Previously only the NOR flash mapping was written into the ranges
15676     property of the ebc node. This patch now writes all enabled chip
15677     select areas into the ranges property.
15678
15679     Signed-off-by: Stefan Roese <sr@denx.de>
15680
15681 commit d7b26d58328f137471ea97de382bfa63f7239931
15682 Author: Dirk Eibach <eibach@gdsys.de>
15683 Date:   Wed Oct 8 15:37:50 2008 +0200
15684
15685     ppc4xx: Add GDSys neo 405EP board support
15686
15687     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15688     Signed-off-by: Stefan Roese <sr@denx.de>
15689
15690 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
15691 Author: Niklaus Giger <niklaus.giger@netstal.com>
15692 Date:   Wed Oct 1 14:46:13 2008 +0200
15693
15694     ppc4xx: Update configs for Netstal boards
15695
15696     I reorganized my config files, putting the common stuff into netstal-common.h
15697     (got the idea by looking a amcc-common.h from Stefan).
15698
15699     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
15700
15701     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
15702     Signed-off-by: Stefan Roese <sr@denx.de>
15703
15704 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
15705 Author: Adam Graham <agraham@amcc.com>
15706 Date:   Wed Oct 8 10:13:19 2008 -0700
15707
15708     ppc4xx: Add routine to retrieve CPU number
15709
15710     Provide a weak defined routine to retrieve the CPU number for
15711     reference boards that have multiple CPU's.  Default behavior
15712     is the existing single CPU print output.  Reference boards with
15713     multiple CPU's need to provide a board specific routine.
15714     See board/amcc/arches/arches.c for an example.
15715
15716     Signed-off-by: Adam Graham <agraham@amcc.com>
15717     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
15718     Signed-off-by: Stefan Roese <sr@denx.de>
15719
15720 commit 59217bae40e90982ab5400d849c08af683ace036
15721 Author: Adam Graham <agraham@amcc.com>
15722 Date:   Wed Oct 8 10:13:14 2008 -0700
15723
15724     ppc4xx: Add static support for 44x IBM SDRAM Controller
15725
15726     This patch add the capability to configure a PPC440 based IBM SDRAM
15727     Controller with static, compiled-in, values. PPC440 memory subsystem
15728     includes a Memory Queue core.
15729
15730     Signed-off-by: Adam Graham <agraham@amcc.com>
15731     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
15732     Signed-off-by: Stefan Roese <sr@denx.de>
15733
15734 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
15735 Author: Adam Graham <agraham@amcc.com>
15736 Date:   Wed Oct 8 10:12:53 2008 -0700
15737
15738     ppc4xx: Add AMCC Arches board support (dual 460GT)
15739
15740     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
15741     This board is a dual processor board with each processor providing
15742     independent resources for Rapid IO, Gigabit Ethernet, and serial
15743     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
15744     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
15745     port. The two 460GT's will communicate with each other via shared
15746     memory, Gigabit Ethernet and x1 PCI-Express.
15747
15748     Signed-off-by: Adam Graham <agraham@amcc.com>
15749     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
15750     Signed-off-by: Stefan Roese <sr@denx.de>
15751
15752 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
15753 Author: Wolfgang Denk <wd@xpert.denx.de>
15754 Date:   Sun Oct 19 21:54:30 2008 +0200
15755
15756     TQM8260: environment in flash instead EEPROM, baudrate 115k
15757
15758     Several customers have reported problems with the environment in
15759     EEPROM, including corrupted content after board reset. Probably the
15760     code to prevent I2C Enge Conditions is not working sufficiently.
15761
15762     We move the environment to flash now, which allows to have a backup
15763     copy plus gives much faster boot times.
15764
15765     Also, change the default console initialization to 115200 bps as used
15766     on most other boards.
15767
15768     Signed-off-by: Wolfgang Denk <wd@denx.de>
15769
15770 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
15771 Author: Kumar Gala <galak@kernel.crashing.org>
15772 Date:   Sun Oct 19 12:49:19 2008 -0500
15773
15774     85xx: Fix compile warning in mpc8536ds.c
15775
15776     mpc8536ds.c: In function 'is_sata_supported':
15777     mpc8536ds.c:615: warning: unused variable 'devdisr'
15778
15779     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15780
15781 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
15782 Author: Wolfgang Denk <wd@denx.de>
15783 Date:   Sun Oct 19 02:35:50 2008 +0200
15784
15785     Cleanup: fix "MHz" spelling
15786
15787     Signed-off-by: Wolfgang Denk <wd@denx.de>
15788
15789 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
15790 Author: Wolfgang Denk <wd@denx.de>
15791 Date:   Sun Oct 19 02:35:49 2008 +0200
15792
15793     Use strmhz() to format clock frequencies
15794
15795     Signed-off-by: Wolfgang Denk <wd@denx.de>
15796
15797 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
15798 Author: Wolfgang Denk <wd@denx.de>
15799 Date:   Sun Oct 19 02:35:48 2008 +0200
15800
15801     strmhz(): Round numbers when printing clock frequencies
15802
15803     Round clock frequencies for printing.
15804
15805     Many boards printed off clock frequencies like 399 MHz instead of the
15806     exact 400 MHz because numberes were not rounded. This is fixed now.
15807
15808     Signed-off-by: Wolfgang Denk <wd@denx.de>
15809
15810 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
15811 Author: Timur Tabi <timur@freescale.com>
15812 Date:   Mon Oct 20 15:16:47 2008 -0500
15813
15814     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
15815
15816     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
15817     to add a comment that the correct value disagrees with the 8544 reference
15818     manual.  The changelog for that commit is also wrong, as it says "bit 28"
15819     when it should be "bit 24".
15820
15821     Signed-off-by: Timur Tabi <timur@freescale.com>
15822
15823 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
15824 Author: Heiko Schocher <hs@denx.de>
15825 Date:   Fri Oct 17 18:24:06 2008 +0200
15826
15827     mgcoge: add redundant environment sector
15828
15829     Signed-off-by: Heiko Schocher <hs@denx.de>
15830
15831 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
15832 Author: Heiko Schocher <hs@denx.de>
15833 Date:   Fri Oct 17 18:23:27 2008 +0200
15834
15835     mgsuvd: update size of environment
15836
15837     Signed-off-by: Heiko Schocher <hs@denx.de>
15838
15839 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
15840 Author: Jason Jin <Jason.jin@freescale.com>
15841 Date:   Fri Oct 10 11:41:00 2008 +0800
15842
15843     Enabled the Freescale SGMII riser card on 8536DS
15844
15845     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
15846
15847 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
15848 Author: Liu Yu <yu.liu@freescale.com>
15849 Date:   Fri Oct 10 11:40:59 2008 +0800
15850
15851     Enabled the Freescale SGMII riser card on 8572DS
15852
15853     This patch based on Andy's work.
15854     Including command 'pixis_set_sgmii' support.
15855
15856     Signed-off-by: Liu Yu <yu.liu@freescale.com>
15857
15858 commit bff188baf9427c35745356439435acf3864d4c65
15859 Author: Liu Yu <yu.liu@freescale.com>
15860 Date:   Fri Oct 10 11:40:58 2008 +0800
15861
15862     Make pixis_set_sgmii more general to support MPC85xx boards.
15863
15864     The pixis sgmii command depend on the FPGA support on the board, some 85xx
15865     boards support SGMII riser card but did not support this command, define
15866     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
15867
15868     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
15869     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
15870     PIXIS_VCFGEN1_MASK in header file for both boards.
15871
15872     Signed-off-by: Liu Yu <yu.liu@freescale.com>
15873
15874 commit 5e981d683d2363204c76773941c2e9c2044c808f
15875 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15876 Date:   Wed Oct 8 23:38:02 2008 -0500
15877
15878     Add cpu/8xxx to TAGS_SUBDIRS
15879
15880     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15881
15882 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
15883 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15884 Date:   Thu Oct 9 01:25:55 2008 -0500
15885
15886     fsl_law clear enable before changing.
15887
15888     Debug sessions may have left enabled laws.
15889     Changing lawbar with an unkown enabled tgtid could cause problems.
15890
15891     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15892
15893 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
15894 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15895 Date:   Thu Oct 9 00:29:27 2008 -0500
15896
15897     mpc8572 additional end-point mode
15898
15899     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
15900     Include host_agent == 0 decode for end-point determination.
15901
15902     This is not needed for the ds reference board since pcie3 will be a host
15903     in order to connect to the uli chip.  Include it here as a reference for
15904     other mpc8572 boards.
15905
15906     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15907
15908 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
15909 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15910 Date:   Wed Oct 8 23:37:59 2008 -0500
15911
15912     85xx if NUM_CPUS>1, print cpu number
15913
15914     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15915
15916 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
15917 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15918 Date:   Wed Oct 8 23:38:01 2008 -0500
15919
15920     pixis do not print long help if not configured
15921
15922     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15923
15924 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
15925 Author: Andy Fleming <afleming@freescale.com>
15926 Date:   Tue Oct 7 08:09:50 2008 -0500
15927
15928     Have u-boot pass stashing parameters into device tree
15929
15930     Some cores don't support ethernet stashing at all, and some
15931     instances have errata.  Adds 3 properties to gianfar nodes
15932     which support stashing.  For now, just add this support to
15933     85xx SoCs.
15934
15935     Signed-off-by: Andy Fleming <afleming@freescale.com>
15936
15937 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
15938 Author: Haiying Wang <Haiying.Wang@freescale.com>
15939 Date:   Fri Oct 3 12:37:57 2008 -0400
15940
15941     Add DDR options setting on MPC8641HPCN board
15942
15943     * Add board specific parameter table to choose correct cpo, clk_adjust,
15944     write_data_delay based on board ddr frequency and n_ranks.
15945
15946     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
15947
15948     Signed-off-by: James Yang <James.Yang@freescale.com>
15949     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15950
15951 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
15952 Author: Haiying Wang <Haiying.Wang@freescale.com>
15953 Date:   Fri Oct 3 12:37:41 2008 -0400
15954
15955     Add ddr interleaving suppport for MPC8572DS board
15956
15957     * Add board specific parameter table to choose correct cpo, clk_adjust,
15958     write_data_delay, 2T based on board ddr frequency and n_ranks.
15959
15960     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
15961
15962     * Set memory controller interleaving mode to bank interleaving, and disable
15963     bank(chip select) interleaving mode by default, because the default on-board
15964     DDR DIMMs are 2x512MB single-rank.
15965
15966     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
15967
15968     Signed-off-by: James Yang <James.Yang@freescale.com>
15969     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15970
15971 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
15972 Author: Haiying Wang <Haiying.Wang@freescale.com>
15973 Date:   Fri Oct 3 12:37:26 2008 -0400
15974
15975     Add debug information for DDR controller registers
15976
15977     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15978
15979 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
15980 Author: Haiying Wang <Haiying.Wang@freescale.com>
15981 Date:   Fri Oct 3 12:37:10 2008 -0400
15982
15983     Check DDR interleaving mode
15984
15985     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
15986     ba_intlv_ctl.
15987     * Print DDR interleaving mode information
15988     * Add doc/README.fsl-ddr to describe the interleaving setting
15989
15990     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15991
15992 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
15993 Author: Haiying Wang <Haiying.Wang@freescale.com>
15994 Date:   Fri Oct 3 12:36:55 2008 -0400
15995
15996     Pass dimm parameters to populate populate controller options
15997
15998     Because some dimm parameters like n_ranks needs to be used with the board
15999     frequency to choose the board parameters like clk_adjust etc. in the
16000     board_specific_paramesters table of the board ddr file, we need to pass
16001     the dimm parameters to the board file.
16002
16003     * move ddr dimm parameters header file from /cpu to /include directory.
16004     * add ddr dimm parameters to populate board specific options.
16005     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
16006
16007     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16008
16009 commit dbbbb3abeff325855cae76e33d69d5665631443f
16010 Author: Haiying Wang <Haiying.Wang@freescale.com>
16011 Date:   Fri Oct 3 12:36:39 2008 -0400
16012
16013     Make DDR interleaving mode work correctly
16014
16015     Fix some bugs:
16016       1. Correctly set intlv_ctl in cs_config.
16017       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
16018       3. Set base_address and total memory for each ddr controller in memory
16019          controller interleaving mode.
16020
16021     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16022
16023 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
16024 Author: Kumar Gala <galak@kernel.crashing.org>
16025 Date:   Mon Sep 22 23:40:42 2008 -0500
16026
16027     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
16028
16029     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16030
16031 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
16032 Author: Kumar Gala <galak@kernel.crashing.org>
16033 Date:   Mon Sep 22 14:11:11 2008 -0500
16034
16035     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
16036
16037     Changing the flash from cacheable to cache-inhibited was taking a significant
16038     amount of time due to the fact that we were iterating over the full 256M of
16039     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
16040
16041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16042
16043 commit 54e091d3b603a3332c619199ca83a07e95960da4
16044 Author: Kumar Gala <galak@kernel.crashing.org>
16045 Date:   Mon Sep 22 14:11:10 2008 -0500
16046
16047     85xx: Export invalidate_{i,d}cache and add flush_dcache
16048
16049     Added the ability for C code to invalidate the i/d-cache's and
16050     to flush the d-cache.  This allows us to more efficient change mappings
16051     from cache-able to cache-inhibited.
16052
16053     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16054
16055 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
16056 Author: Heiko Schocher <hs@denx.de>
16057 Date:   Fri Oct 17 16:11:52 2008 +0200
16058
16059     mgcoge, mgsuvd: extract more common code
16060
16061     in ft_blob_update () for both boards was an unneccessary
16062     repetition of code, which this patch moves in a common
16063     function for this boards.
16064
16065     Signed-off-by: Heiko Schocher <hs@denx.de>
16066
16067 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
16068 Author: Heiko Schocher <hs@denx.de>
16069 Date:   Fri Oct 17 12:15:55 2008 +0200
16070
16071     mgcoge, mgsuvd: use in_*/out_* accesors
16072
16073     Signed-off-by: Heiko Schocher <hs@denx.de>
16074
16075 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
16076 Author: Heiko Schocher <hs@denx.de>
16077 Date:   Fri Oct 17 13:52:51 2008 +0200
16078
16079     mgsuvd: fix compiler warning when using soft_i2c driver
16080
16081     Signed-off-by: Heiko Schocher <hs@denx.de>
16082
16083 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
16084 Author: Heiko Schocher <hs@denx.de>
16085 Date:   Fri Oct 17 12:15:05 2008 +0200
16086
16087     mgsuvd: fix coding style
16088
16089     Signed-off-by: Heiko Schocher <hs@denx.de>
16090
16091 commit 5f4c3137f4f051787707c548133823f1656eb508
16092 Author: Heiko Schocher <hs@denx.de>
16093 Date:   Fri Oct 17 12:13:30 2008 +0200
16094
16095     mgcoge: Second Flash on CS5 not on CS1
16096
16097     Signed-off-by: Heiko Schocher <hs@denx.de>
16098
16099 commit 76da19df5b8e186d269f29190696bd31fb6c836b
16100 Author: Kumar Gala <galak@kernel.crashing.org>
16101 Date:   Thu Oct 16 21:52:08 2008 -0500
16102
16103     Added arch_lmb_reserve to allow arch specific memory regions protection
16104
16105     Each architecture has different ways of determine what regions of memory
16106     might not be valid to get overwritten when we boot.  This provides a
16107     hook to allow them to reserve any regions they care about.  Currently
16108     only ppc, m68k and sparc need/use this.
16109
16110     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16111
16112 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
16113 Author: Heiko Schocher <hs@denx.de>
16114 Date:   Thu Oct 16 16:32:35 2008 +0200
16115
16116     mgcoge: added CONFIG_FIT to support the new u-boot image format
16117
16118     Signed-off-by: Heiko Schocher <hs@denx.de>
16119
16120 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
16121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16122 Date:   Thu Oct 16 15:01:15 2008 +0200
16123
16124     rename CFG_ macros to CONFIG_SYS
16125
16126     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16127
16128 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
16129 Author: Kumar Gala <galak@kernel.crashing.org>
16130 Date:   Mon Oct 13 14:12:55 2008 -0500
16131
16132     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
16133
16134     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16135
16136 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
16137 Author: Kumar Gala <galak@kernel.crashing.org>
16138 Date:   Tue Sep 23 10:05:02 2008 -0500
16139
16140     Expose command table search for sub-commands
16141
16142     Sub-command can benefit from using the same table and search functions
16143     that top level commands have.  Expose this functionality by refactoring
16144     find_cmd() and introducing find_cmd_tbl() that sub-command processing
16145     can call.
16146
16147     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16148
16149 commit f7e51b27508446f8cae3927975817137979ad5e8
16150 Author: Heiko Schocher <hs@denx.de>
16151 Date:   Wed Oct 15 09:41:33 2008 +0200
16152
16153     mgsuvd, mgcoge: added BOOTCOUNT feature.
16154
16155     Signed-off-by: Heiko Schocher <hs@denx.de>
16156
16157 commit 8f64da7f83b553889bc08400c97047998382e9d2
16158 Author: Heiko Schocher <hs@denx.de>
16159 Date:   Wed Oct 15 09:41:00 2008 +0200
16160
16161     mgcoge, mgsuvd: added support for the IVM EEprom.
16162
16163     The EEprom contains some Manufacturerinformation,
16164     which are read from u-boot at boot time, and saved
16165     in same hush shell variables.
16166
16167     Signed-off-by: Heiko Schocher <hs@denx.de>
16168
16169 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
16170 Author: Heiko Schocher <hs@denx.de>
16171 Date:   Wed Oct 15 09:40:28 2008 +0200
16172
16173     hush: add showvar command for hush shell.
16174
16175     This new command shows the local variables defined in
16176     the hush shell:
16177
16178     => help showvar
16179     showvar
16180         - print values of all hushshell variables
16181     showvar name ...
16182         - print value of hushshell variable 'name'
16183
16184     Also make the set_local_var() and unset_local_var ()
16185     no longer static, so it is possible to define local
16186     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
16187     is defined, u-boot calls hush_init_var (), where
16188     boardspecific code can define local hush shell
16189     variables at boottime.
16190
16191     Signed-off-by: Heiko Schocher <hs@denx.de>
16192
16193 commit 67b23a322848d828a5e45c0567b72762bfde7abf
16194 Author: Heiko Schocher <hs@denx.de>
16195 Date:   Wed Oct 15 09:39:47 2008 +0200
16196
16197     I2C: adding new "i2c bus" Command to the I2C Subsystem.
16198
16199     With this Command it is possible to add new I2C Busses,
16200     which are behind 1 .. n I2C Muxes. Details see README.
16201
16202     Signed-off-by: Heiko Schocher <hs@denx.de>
16203
16204 commit c24853644ddd2dd2e4246b5854a93e6254a14092
16205 Author: Heiko Schocher <hs@denx.de>
16206 Date:   Wed Oct 15 09:39:08 2008 +0200
16207
16208     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
16209
16210     As documented in doc/I2C_Edge_Conditions, adding a
16211     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
16212     for the mgcoge and mgsuvd board.
16213
16214     This code was originally written by Keymile in association
16215     with Anatech and Atmel in 1998. The Code toggels the SCL
16216     until the SCA line goes to HIGH (max. 16 times).
16217     And after this, a start condition is sent.
16218
16219     This is another approach to deblock the I2C Bus. The
16220     soft I2C driver actually sends 9 clocks with SDA High,
16221     and then a stop at the end, to deblock the I2C Bus.
16222
16223     Maybe we should use the approach from Keymile as
16224     the new standard?
16225
16226     Signed-off-by: Heiko Schocher <hs@denx.de>
16227
16228 commit 4ca107effebfbabac1057c39632105dacef95957
16229 Author: Heiko Schocher <hs@denx.de>
16230 Date:   Wed Oct 15 09:38:38 2008 +0200
16231
16232     soft_i2c: Add CFG_I2C_INIT_BOARD option
16233
16234     This patch adds the option for a boardspecific
16235     I2C deblocking mechanism for the soft i2c driver.
16236
16237     Signed-off-by: Heiko Schocher <hs@denx.de>
16238
16239 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
16240 Author: Heiko Schocher <hs@denx.de>
16241 Date:   Wed Oct 15 09:38:07 2008 +0200
16242
16243     mgcoge, mgsuvd: add DTT (LM75) support.
16244
16245     Signed-off-by: Heiko Schocher <hs@denx.de>
16246
16247 commit 8e442df438ab677057571e3ac01846bff7719bce
16248 Author: Heiko Schocher <hs@denx.de>
16249 Date:   Wed Oct 15 09:37:34 2008 +0200
16250
16251     lm75: Make the LM75 MULTI_BUS compatible.
16252
16253     Signed-off-by: Heiko Schocher <hs@denx.de>
16254
16255 commit 12f1678127c1df2b2878ba93c88948bedc060775
16256 Author: Heiko Schocher <hs@denx.de>
16257 Date:   Wed Oct 15 09:37:04 2008 +0200
16258
16259     lm75: fix Codingstyle issues.
16260
16261     Signed-off-by: Heiko Schocher <hs@denx.de>
16262
16263 commit f2202450c75ba6934b356024101500ddcde6e2a6
16264 Author: Heiko Schocher <hs@denx.de>
16265 Date:   Wed Oct 15 09:36:33 2008 +0200
16266
16267     mgcoge, mgsuvd: added EEprom support.
16268
16269     Signed-off-by: Heiko Schocher <hs@denx.de>
16270
16271 commit 9661bf9d120f760238b2a073b84f2baf05010057
16272 Author: Heiko Schocher <hs@denx.de>
16273 Date:   Wed Oct 15 09:36:03 2008 +0200
16274
16275     mgcoge, mgsuvd: add I2C support.
16276
16277     Signed-off-by: Heiko Schocher <hs@denx.de>
16278
16279 commit 98aed379586a155292efbf3209356836584b601c
16280 Author: Heiko Schocher <hs@denx.de>
16281 Date:   Wed Oct 15 09:35:26 2008 +0200
16282
16283     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
16284
16285     This patch fixes the following warnings, when using
16286     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
16287     systems:
16288
16289     soft_i2c.c: In function 'send_reset':
16290     soft_i2c.c:93: warning: unused variable 'immr'
16291     soft_i2c.c: In function 'send_start':
16292     soft_i2c.c:124: warning: unused variable 'immr'
16293     soft_i2c.c: In function 'send_stop':
16294     soft_i2c.c:146: warning: unused variable 'immr'
16295     soft_i2c.c: In function 'send_ack':
16296     soft_i2c.c:171: warning: unused variable 'immr'
16297     soft_i2c.c: In function 'write_byte':
16298     soft_i2c.c:196: warning: unused variable 'immr'
16299     soft_i2c.c: In function 'read_byte':
16300     soft_i2c.c:244: warning: unused variable 'immr'
16301
16302     Signed-off-by: Heiko Schocher <hs@denx.de>
16303
16304 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
16305 Author: Heiko Schocher <hs@denx.de>
16306 Date:   Wed Oct 15 09:34:45 2008 +0200
16307
16308     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
16309
16310     Signed-off-by: Heiko Schocher <hs@denx.de>
16311
16312 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
16313 Author: Heiko Schocher <hs@denx.de>
16314 Date:   Wed Oct 15 09:34:05 2008 +0200
16315
16316     mgcoge: fix Coding Style issues.
16317
16318     Signed-off-by: Heiko Schocher <hs@denx.de>
16319
16320 commit e43a27c49712203fe8848a17714330623edfb2eb
16321 Author: Heiko Schocher <hs@denx.de>
16322 Date:   Wed Oct 15 09:33:30 2008 +0200
16323
16324     I2C: add new command i2c reset.
16325
16326     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
16327     it is not possible to get out of this, until the
16328     complete Hardware gets a reset. This new commando
16329     calls again i2c_init (and that calls i2c_init_board
16330     if defined), which will deblock the I2C Bus.
16331
16332     Signed-off-by: Heiko Schocher <hs@denx.de>
16333     Signed-off-by: Wolfgang Denk <wd@denx.de>
16334
16335 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
16336 Author: Heiko Schocher <hs@denx.de>
16337 Date:   Wed Oct 15 09:32:25 2008 +0200
16338
16339     mgsuvd, mgcoge: move this 2 boards in one dir.
16340
16341     There are some more extensions, which are for both boards
16342     and some more boards from this manufacturer will follow soon.
16343
16344     Signed-off-by: Heiko Schocher <hs@denx.de>
16345     Signed-off-by: Wolfgang Denk <wd@denx.de>
16346
16347 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
16348 Author: Dirk Eibach <eibach@gdsys.de>
16349 Date:   Wed Oct 8 13:44:27 2008 +0200
16350
16351     hwmon: Add LM63 support
16352
16353     This patch adds support for the National LM63 temperature
16354     sensor with integrated fan control. It's used on the GDSys
16355     Neo board (405EP) which will be submitted later.
16356
16357     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16358     Acked-by: Stefan Roese <sr@denx.de>
16359
16360 commit 7ba890bf2f2b92831420243c058951aa831119fd
16361 Author: Kyungmin Park <kmpark@infradead.org>
16362 Date:   Wed Oct 8 11:01:17 2008 +0900
16363
16364     Add Red Black Tree support
16365
16366     Now it's used at UBI module. Of course other modules can use it.
16367     If you want to use it, please define CONFIG_RBTREE
16368
16369     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
16370
16371 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
16372 Author: richardretanubun <richardretanubun@ruggedcom.com>
16373 Date:   Mon Oct 6 16:10:53 2008 -0400
16374
16375     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
16376
16377     Added support for CONFIG_EFI_PARTITION to ext2 commands.
16378     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
16379
16380 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
16381 Author: richardretanubun <richardretanubun@ruggedcom.com>
16382 Date:   Fri Sep 26 11:13:22 2008 -0400
16383
16384     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
16385
16386     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
16387     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
16388
16389     Based on linux/fs/partitions/efi.[ch]
16390
16391     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
16392
16393 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
16394 Author: Bartlomiej Sieka <tur@semihalf.com>
16395 Date:   Wed Oct 1 15:26:32 2008 +0200
16396
16397     FIT: output image load address for type 'firmware', fix message while there
16398
16399     Now that the auto-update feature uses the 'firmware' type for updates, it is
16400     useful to inspect the load address of such images.
16401
16402     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16403
16404 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
16405 Author: Bartlomiej Sieka <tur@semihalf.com>
16406 Date:   Wed Oct 1 15:26:31 2008 +0200
16407
16408     Automatic software update from TFTP server
16409
16410     The auto-update feature allows to automatically download software updates
16411     from a TFTP server and store them in Flash memory during boot. Updates are
16412     contained in a FIT file and protected with SHA-1 checksum.
16413
16414     More detailed description can be found in doc/README.update.
16415
16416     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
16417     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16418
16419 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
16420 Author: Bartlomiej Sieka <tur@semihalf.com>
16421 Date:   Wed Oct 1 15:26:27 2008 +0200
16422
16423     flash: factor out adjusting of Flash address to the end of sector
16424
16425     The upcoming automatic update feature needs the ability to adjust an
16426     address within Flash to the end of its respective sector. Factor out
16427     this functionality to a new function flash_sect_roundb().
16428
16429     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
16430     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16431     Signed-off-by: Stefan Roese <sr@denx.de>
16432
16433 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
16434 Author: Bartlomiej Sieka <tur@semihalf.com>
16435 Date:   Wed Oct 1 15:26:29 2008 +0200
16436
16437     net: Make TFTP server timeout configurable
16438
16439     There are two aspects of a TFTP transfer involving timeouts:
16440     1. timeout waiting for initial server reply after sending RRQ
16441     2. timeouts while transferring actual data from the server
16442
16443     Since the upcoming auto-update feature attempts a TFTP download during each
16444     boot, it is undesirable to have a long delay when the TFTP server is not
16445     available. Thus, this commit makes the server timeout (1.) configurable by two
16446     global variables:
16447
16448     TftpRRQTimeoutMSecs
16449     TftpRRQTimeoutCountMax
16450
16451     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
16452     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
16453     The total delay when trying to download a file from a non-existing TFTP server
16454     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
16455
16456     Timeouts during file transfers (2.) are unaffected.
16457
16458     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
16459     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16460     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16461
16462 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
16463 Author: Bartlomiej Sieka <tur@semihalf.com>
16464 Date:   Wed Oct 1 15:26:28 2008 +0200
16465
16466     net: express the first argument to NetSetTimeout() in milliseconds
16467
16468     Enforce millisecond semantics of the first argument to NetSetTimeout() --
16469     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
16470     get_timer() countiing in milliseconds).
16471
16472     Rationale for this patch is to enable millisecond granularity for
16473     network-related timeouts, which is needed for the upcoming automatic
16474     software update feature.
16475
16476     Summary of changes:
16477     - do not scale the first argument to NetSetTimeout() by CFG_HZ
16478     - change timeout values used in the networking code to milliseconds
16479
16480     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
16481     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16482     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16483
16484 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
16485 Author: richardretanubun <richardretanubun@ruggedcom.com>
16486 Date:   Mon Sep 29 18:28:23 2008 -0400
16487
16488     Adds two more ethernet interface to 83xx
16489
16490     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
16491     Six eth interface is chosen because the platform I am using combines
16492     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
16493
16494     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
16495     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16496
16497 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
16498 Author: Haiying Wang <Haiying.Wang@freescale.com>
16499 Date:   Wed Sep 24 11:42:12 2008 -0500
16500
16501     Change UEC PHY interface to RGMII on MPC8568MDS
16502
16503     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
16504
16505     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
16506     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
16507
16508     Now both UEC1 and UEC2 can work properly under u-boot.
16509
16510     It is also in consistent with the kernel setting for 8568 UEC phy interface.
16511
16512     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16513     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16514
16515 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
16516 Author: Wolfgang Denk <wd@denx.de>
16517 Date:   Sat Oct 18 21:30:31 2008 +0200
16518
16519     Prepare v2008.10 release: update CHANGELOG & Makefile
16520
16521     Signed-off-by: Wolfgang Denk <wd@denx.de>
16522
16523 commit f7a35a60cf45491871a5c28e9ad24db005487857
16524 Author: Heiko Schocher <hs@denx.de>
16525 Date:   Fri Oct 17 18:24:06 2008 +0200
16526
16527     mgcoge: add redundant environment sector
16528
16529     Signed-off-by: Heiko Schocher <hs@denx.de>
16530     Signed-off-by: Wolfgang Denk <wd@denx.de>
16531
16532 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
16533 Author: Heiko Schocher <hs@denx.de>
16534 Date:   Fri Oct 17 18:23:27 2008 +0200
16535
16536     mgsuvd: update size of environment
16537
16538     Signed-off-by: Heiko Schocher <hs@denx.de>
16539
16540 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
16541 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
16542 Date:   Thu Oct 16 13:38:00 2008 -0500
16543
16544     83xx NAND boot: wait for LTESR[CC]
16545
16546     At least some revisions of the 8313, and possibly other chips, do not
16547     wait for all pages of the initial 4K NAND region to be loaded before
16548     beginning execution; thus, we wait for it before branching out of the
16549     first NAND page.
16550
16551     This fixes warm reset problems when booting from NAND on 8313erdb.
16552
16553     Signed-off-by: Scott Wood <scottwood@freescale.com>
16554     Acked-by: Kim Phillips <kim.phillips@freescale.com>
16555
16556 commit bf29e0ea0af03d593c64614136acc723a7a022a2
16557 Author: Yuri Tikhonov <yur@emcraft.com>
16558 Date:   Fri Oct 17 12:54:18 2008 +0200
16559
16560     ppc4xx: PPC44x MQ initialization
16561
16562     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
16563     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
16564     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
16565
16566     Previously the appropriate initialization had been made in Linux, by the
16567     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
16568     registers after normal operation has begun is not supported and could
16569     have unpredictable results.
16570
16571     Comment from Stefan: This patch doesn't change the resulting value of the
16572     MQ registers. It explicitly sets/clears all bits to the desired state which
16573     better documents the resulting register value instead of relying on pre-set
16574     default values.
16575
16576     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16577     Signed-off-by: Stefan Roese <sr@denx.de>
16578
16579 commit ec081c2c190148b374e86a795fb6b1c49caeb549
16580 Author: Stefan Roese <sr@denx.de>
16581 Date:   Fri Oct 17 12:51:46 2008 +0200
16582
16583     ppc4xx: PPC44x MQ initialization
16584
16585     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
16586     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
16587     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
16588
16589     Previously the appropriate initialization had been made in Linux, by the
16590     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
16591     registers after normal operation has begun is not supported and could
16592     have unpredictable results.
16593
16594     Comment from Stefan: This patch doesn't change the resulting value of the
16595     MQ registers. It explicitly sets/clears all bits to the desired state which
16596     better documents the resulting register value instead of relying on pre-set
16597     default values.
16598
16599     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16600     Signed-off-by: Stefan Roese <sr@denx.de>
16601
16602 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
16603 Author: Kumar Gala <galak@kernel.crashing.org>
16604 Date:   Thu Oct 16 21:58:50 2008 -0500
16605
16606     85xx: Using proper I2C source clock divider for MPC8544
16607
16608     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
16609     bit 26, instead it should be bit 28.  This caused in incorrect
16610     interpretation of the i2c_clk which is the same as the SEC clk on
16611     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
16612     in PORDEVSR2.
16613
16614     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16615
16616 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
16617 Author: Kumar Gala <galak@kernel.crashing.org>
16618 Date:   Thu Oct 16 21:58:49 2008 -0500
16619
16620     Revert "85xx: Using proper I2C source clock divider for MPC8544"
16621
16622     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
16623
16624     The fix introduced by this patch is not correct.  The problem is
16625     that the documentation is not correct for the MPC8544 with regards
16626     to which bit in PORDEVSR2 is for the SEC_CFG.
16627
16628     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16629
16630 commit 2179c4766bffeece98e5e92040629a96c97e230c
16631 Author: Kumar Gala <galak@kernel.crashing.org>
16632 Date:   Wed Oct 15 10:19:41 2008 -0500
16633
16634     85xx: Fix compile warning
16635
16636     mpc8536ds.c: In function 'is_sata_supported':
16637     mpc8536ds.c:614: warning: unused variable 'devdisr'
16638
16639     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16640
16641 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
16642 Author: Jason Jin <Jason.jin@freescale.com>
16643 Date:   Wed Oct 15 10:40:24 2008 +0800
16644
16645     Fix the function conflict in x86emu when DEBUG is on
16646
16647     The function parse_line() in common/main.c was exposed globally by commit
16648     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
16649     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
16650     This patch fix this by renaming the function in the debug.c file.
16651
16652     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16653
16654 commit b4dbacf69a669a17487054552fc2761149dd6767
16655 Author: Wolfgang Denk <wd@denx.de>
16656 Date:   Wed Oct 15 15:50:45 2008 +0200
16657
16658     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
16659
16660     Signed-off-by: Wolfgang Denk <wd@denx.de>
16661
16662 commit 374b9038293d01d8744a46af9b7854a6fd99b228
16663 Author: Heiko Schocher <hs@denx.de>
16664 Date:   Wed Oct 15 09:51:19 2008 +0200
16665
16666     Fix compiler warning in lib_ppc/board.c
16667
16668     Fix compiler warning introduced by commit 0f8cbc18
16669
16670     Signed-off-by: Heiko Schocher <hs@denx.de>
16671     Signed-off-by: Wolfgang Denk <wd@denx.de>
16672
16673 commit 9724555755a6f1066636481b41f7094e0ce93a69
16674 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
16675 Date:   Thu Oct 9 10:29:14 2008 +0530
16676
16677     mpc83xx: wait till UPM completes the write to array
16678
16679     Reference manual states that MxMR[MAD] increment is the indication
16680     of write to UPM array is complete. Honour that. Also, make the dummy
16681     write explicit.
16682
16683     also fix the comment.
16684
16685     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
16686     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16687
16688 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
16689 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
16690 Date:   Wed Oct 8 18:12:20 2008 -0500
16691
16692     Remove unwanted ';' at end of define.
16693
16694     Currently this is not creating any problem. But it will result
16695     in compilation error when used as below.
16696
16697     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
16698
16699     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
16700
16701     continuation of the theme based on git grep "^#define CFG_.*;$" include/
16702
16703     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16704
16705 commit b2934a56650e9a6c54432f9ce6dc36757967385e
16706 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16707 Date:   Mon Oct 6 10:53:59 2008 -0400
16708
16709     ARM DaVinci: Add maintainer information for SFFSDR board.
16710
16711     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16712
16713 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
16714 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16715 Date:   Sat Oct 4 19:26:16 2008 +0200
16716
16717     api: fix type mismatch
16718
16719     This patch fixes a type mismatch and thus removes a compiler
16720     warning when compiling with CONFIG_API on powerpc.
16721
16722     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16723
16724 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
16725 Author: Peter Tyser <ptyser@xes-inc.com>
16726 Date:   Wed Oct 1 12:25:04 2008 -0500
16727
16728     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
16729
16730     Original code displayed:
16731      => help i2c
16732      i2c i2c speed [speed] - show or set I2C bus speed
16733      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
16734      ...
16735
16736     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16737
16738 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
16739 Author: Wolfgang Denk <wd@denx.de>
16740 Date:   Tue Oct 14 22:13:41 2008 +0200
16741
16742     Update CHANGELOG
16743
16744     Signed-off-by: Wolfgang Denk <wd@denx.de>
16745
16746 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
16747 Author: Jason Jin <Jason.jin@freescale.com>
16748 Date:   Fri Oct 10 11:41:01 2008 +0800
16749
16750     Do not init SATA when disabled on 8536DS.
16751
16752     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
16753     driver still try to access the SATA registers, the cpu will hangup.
16754     This patch try to fix this by reading the serdes status before the SATA
16755     initialize.
16756
16757     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16758     Acked-by: Andy Fleming <afleming@freescale.com>
16759
16760 commit 9dbc366744960013965fce8851035b6141f3b3ae
16761 Author: Remy Bohmer <linux@bohmer.net>
16762 Date:   Fri Oct 10 10:23:22 2008 +0200
16763
16764     The PIPE_INTERRUPT flag is used wrong
16765
16766     At a lot of places in the code the PIPE_INTERRUPT flags and friends
16767     are used wrong. The wrong bits are compared to this flag resulting
16768     in wrong conditions. Also there are macros that should be used for
16769     PIPE_* flags.
16770     This patch tries to fix them all, however, I was not able to test the
16771     changes, because I do not have any of these boards.
16772
16773     Review required!
16774
16775     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16776     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16777
16778 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
16779 Author: Remy Bohmer <linux@bohmer.net>
16780 Date:   Fri Oct 10 10:23:21 2008 +0200
16781
16782     fix USB initialisation procedure
16783
16784     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
16785     At some places directly 8,16,32,64 was used instead of the encoded
16786     value. Made a enum for the options to make this more clear and to help
16787     preventing similar errors in the future.
16788
16789     After fixing this bug it became clear that another bug existed where
16790     the 'pipe' is and-ed with PIPE_* flags, where it should have been
16791     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
16792
16793     Also removed the triple 'get_device_descriptor' sequence, it has no use,
16794     and Windows nor Linux behaves that way.
16795     There is also a poll going on with a timeout when usb_control_msg() fails.
16796     However, the poll is useless, because the flag will never be set on a error,
16797     because there is no code that runs in a parallel that can set this flag.
16798     Changed this to something more logical.
16799
16800     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
16801     Linux is doing. There is no difference anymore in the early initialisation
16802     sequence.
16803
16804     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16805     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16806
16807 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
16808 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
16809 Date:   Fri Oct 3 00:03:55 2008 +0400
16810
16811     fsl_diu: fix alignment error that caused malloc corruption
16812
16813     When aligning malloc()ed screen_base, invalid offset was added.
16814     This not only caused misaligned result (which did not cause hardware
16815     misbehaviour), but - worse - caused screen_base + smem_len to
16816     be out of malloc()ed space, which in turn caused breakage of
16817     futher malloc()/free() operation.
16818
16819     This patch fixes screen_base alignment.
16820
16821     Also this patch makes memset() that cleans framebuffer to be executed
16822     on first initialization of diu, not only on re-initialization. It looks
16823     correct to clean the framebuffer instead of displaying random garbage;
16824     I believe that was disabled only because that memset caused breakage
16825     of malloc/free described above - which no longer happens with the fix
16826     described above.
16827
16828     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
16829
16830 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
16831 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16832 Date:   Wed Sep 24 10:29:37 2008 +0200
16833
16834     api: Fix building with CONFIG_API
16835
16836     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
16837
16838     USB_MAX_STOR_DEV is defined in include/usb.h, but
16839     needed in api/api_storage.c.
16840
16841     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16842
16843 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
16844 Author: Peter Tyser <ptyser@xes-inc.com>
16845 Date:   Tue Sep 23 12:39:40 2008 -0500
16846
16847     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
16848
16849     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16850
16851 commit 81e612014c40c922ec35488d17c504d4e9286f06
16852 Author: Peter Tyser <ptyser@xes-inc.com>
16853 Date:   Tue Sep 23 12:38:42 2008 -0500
16854
16855     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
16856
16857     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
16858     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
16859     sensor drivers are not necessary
16860
16861     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16862
16863 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
16864 Author: Mike Frysinger <vapier@gentoo.org>
16865 Date:   Tue Oct 14 07:04:38 2008 -0400
16866
16867     cmd_spi: remove broken signed casting for display
16868
16869     Since we're working with unsigned data, you can't apply a signed pointer
16870     cast and then attempt to print the result.  Otherwise you get wrong output
16871     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
16872
16873     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16874
16875 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
16876 Author: Mike Frysinger <vapier@gentoo.org>
16877 Date:   Tue Oct 14 07:05:24 2008 -0400
16878
16879     strings cmd: drop old CONFIG_CFG_STRINGS define
16880
16881     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
16882     CONFIG_CMD_STRINGS and Makefile control.
16883
16884     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16885
16886 commit fecb5ade3b37f62981f2b05b621005850173aaa9
16887 Author: Jason Jin <Jason.jin@freescale.com>
16888 Date:   Fri Sep 19 17:32:49 2008 +0800
16889
16890     Fix the NAND size overflow issue.
16891
16892     When the total size of all NAND devices exceeds 4 GiB, the size  will
16893     overflow. This patch tries to fix this.
16894
16895     Note that we still have a problem when a single NAND device is bigger
16896     than 4 GiB: then the overflow would actually happen earlier, i. e.
16897     when storing the size in nand_info[].size, as nand_info[].size is an
16898     "u_int32_t".
16899
16900     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16901     Signed-off-by: Wolfgang Denk <wd@denx.de>
16902
16903 commit 30f574717277238b9014b8136c90eea77196490f
16904 Author: Louis Su <louis@asix.com.tw>
16905 Date:   Wed Jul 9 11:01:37 2008 +0800
16906
16907     AX88180: new gigabit network driver
16908
16909     Signed-off-by: Louis Su <louis@asix.com.tw>
16910     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16911
16912 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
16913 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16914 Date:   Tue Aug 19 16:07:03 2008 +0200
16915
16916     enable 10/100M at VSC8601 at tsec driver
16917
16918     Currently VSC8601 doesn't link with 10/100M partners if the
16919     EEPROM/Strapping is not set up.
16920     Setting the auto-neg register fixes this.
16921
16922     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16923     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16924
16925 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
16926 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16927 Date:   Tue Sep 30 15:02:53 2008 +0900
16928
16929     net: ne2000: Divided a function of NE2000 driver
16930
16931     get_prom function was used __attriute__ , but it is not enable.
16932     ax88796.o does not do link besides ne2000.o. When ld is carried
16933     out, get_prom function of ax88796.c is ignored.
16934     This problem is a thing by specifications of ld.
16935     I checked and test this patch on SuperH and MIPS.
16936
16937     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16938     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16939
16940 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
16941 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16942 Date:   Tue Oct 14 11:10:59 2008 +0900
16943
16944     sh: rsk7203: Add smc911x driver support to board config file
16945
16946     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16947     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16948
16949 commit cae6f909baf86357b3c0bd01acfc414348c4d175
16950 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16951 Date:   Thu Oct 9 13:54:33 2008 +0900
16952
16953     sh: Fix cannot execute a stand-alone application
16954
16955     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
16956
16957     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16959
16960 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
16961 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
16962 Date:   Wed Oct 8 23:38:00 2008 -0500
16963
16964     fsl_pci_init do not scan bus when configured as an end-point
16965
16966     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
16967     Acked-by: Andy Fleming <afleming@freescale.com>
16968
16969 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
16970 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16971 Date:   Tue Sep 16 17:07:53 2008 -0400
16972
16973     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
16974
16975     This is no longer necessary now that the GD_FLG_RELOC flag is set for
16976     all ARM boards.
16977
16978     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16979
16980 commit d977a57356657ba241256231efca32828a5822f9
16981 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16982 Date:   Sat Sep 13 10:04:32 2008 +0200
16983
16984     Fix lzma uncompress call (image_start wrongly used instead image_len)
16985
16986     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16987
16988 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
16989 Author: Nick Spence <nick.spence@freescale.com>
16990 Date:   Thu Aug 28 14:09:15 2008 -0700
16991
16992     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
16993
16994     This is needed in unlock_ram_in_cache() because it is called from C and
16995     will corrupt the small data area anchor that is kept in R2.
16996
16997     lock_ram_in_cache() is modified similarly as good coding practice, but
16998     is not called from C.
16999
17000     Signed-off-by: Nick Spence <nick.spence@freescale.com>
17001
17002 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
17003 Author: Kumar Gala <galak@kernel.crashing.org>
17004 Date:   Tue Aug 19 15:05:34 2008 -0500
17005
17006     86xx: remove redudant code with lib_ppc/interrupts.c
17007
17008     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
17009     Not know how that happened, but there is no good reason for it.
17010
17011     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
17012     they exist.
17013
17014     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17015
17016 commit 0d01f66d235118515b5086b88f82498bc0695d6a
17017 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
17018 Date:   Thu Oct 9 01:26:36 2008 -0500
17019
17020     CFI: cfi_flash write fix for AMD legacy
17021
17022     The flash_unlock_seq requires a sector for AMD_LEGACY.
17023     Fix a retcode check typeo.
17024
17025     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
17026     Signed-off-by: Stefan Roese <sr@denx.de>
17027
17028 commit 542b385a620a1783454a00424930e51895f45073
17029 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17030 Date:   Tue Oct 7 13:13:10 2008 +0200
17031
17032     ppc4xx: Fix USB 2.0 phy reset sequence
17033
17034     This patch fixes USB 2.0 communication issues on some DU440 boards.
17035
17036     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17037     Signed-off-by: Stefan Roese <sr@denx.de>
17038
17039 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
17040 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17041 Date:   Tue Oct 7 13:13:09 2008 +0200
17042
17043     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
17044
17045     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17046     Signed-off-by: Stefan Roese <sr@denx.de>
17047
17048 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
17049 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17050 Date:   Tue Oct 7 13:13:08 2008 +0200
17051
17052     ppc4xx: Fix DU440 GPIO configuration
17053
17054     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17055     Signed-off-by: Stefan Roese <sr@denx.de>
17056
17057 commit 35dd025c70fcc4389317db2f2a9d14795172137d
17058 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17059 Date:   Tue Oct 7 13:13:07 2008 +0200
17060
17061     ppc4xx: Update DU440 config
17062
17063     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17064     Signed-off-by: Stefan Roese <sr@denx.de>
17065
17066 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
17067 Author: Kumar Gala <galak@kernel.crashing.org>
17068 Date:   Wed Oct 8 15:36:39 2008 -0500
17069
17070     MPC8572DS: Fix compile warnings
17071
17072     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
17073     compile warnings:
17074
17075     cmd_i2c.c:112: warning: missing braces around initializer
17076     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
17077
17078     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17079
17080 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
17081 Author: Wolfgang Grandegger <wg@grandegger.com>
17082 Date:   Tue Sep 30 10:55:57 2008 +0200
17083
17084     85xx: Using proper I2C source clock divider for MPC8544
17085
17086     Measurements with our MPC8544 board showed that the I2C bus frequency
17087     is wrong by a factor of 1.5. Obviously, the interpretation of the
17088     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
17089     correct. There seems to be an error in the 8544 RM.
17090
17091     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17092
17093 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
17094 Author: Rafal Czubak <rcz@semihalf.com>
17095 Date:   Wed Oct 8 13:41:30 2008 +0200
17096
17097     FSL: Fix get_cpu_board_revision() return value.
17098
17099     get_cpu_board_revision() returned board revision based on information stored
17100     in global static struct eeprom. It should instead use one from local struct
17101     board_eeprom, to which the data is actually read from EEPROM. The bug led to
17102     system hang after printing L1 cache information on U-Boot startup. The problem
17103     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
17104     boards using CFG_I2C_EEPROM_CCID.
17105
17106     The change has been successfully tested on MPC8555CDS system.
17107
17108     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
17109
17110 commit 747f316cca484ed627a97dd3391febabce384186
17111 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17112 Date:   Tue Sep 30 20:08:49 2008 +0200
17113
17114     update uImage FIT multi documentation
17115
17116     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17117
17118 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
17119 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17120 Date:   Tue Sep 30 20:08:36 2008 +0200
17121
17122     move README.imx31 to doc/ and merge with README.mx31
17123
17124     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17125
17126 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
17127 Author: Guennadi Liakhovetski <lg@denx.de>
17128 Date:   Thu Sep 25 20:54:37 2008 +0200
17129
17130     i.MX31: switch to CFG_HZ=1000
17131
17132     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
17133     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
17134     provides 2% or 0.4% precision depending on the
17135     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
17136     boot-delay.
17137
17138     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17139
17140 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
17141 Author: gnusercn <gnusercn@gmail.com>
17142 Date:   Wed Oct 8 18:58:58 2008 +0200
17143
17144     Fix bug: in arch-arm, env_get_char dose not work fine
17145
17146     due to the arm implementation which supposed that U-Boot is in RAM
17147     when we jump to start_armboot
17148
17149     Signed-off-by: gnusercn <gnusercn@gmail.com>
17150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17151
17152 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
17153 Author: Adam Graham <agraham@amcc.com>
17154 Date:   Mon Oct 6 10:16:13 2008 -0700
17155
17156     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
17157
17158     After changing SDRAM_CLKTR phase value rerun the memory preload
17159     initialization sequence (INITPLR) to reset and relock the memory
17160     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
17161     adjustment effects the phase relationship of the internal, to the
17162     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
17163
17164     Signed-off-by: Adam Graham <agraham@amcc.com>
17165     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
17166     Signed-off-by: Stefan Roese <sr@denx.de>
17167
17168 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
17169 Author: Haiying Wang <Haiying.Wang@freescale.com>
17170 Date:   Fri Oct 3 11:48:03 2008 -0400
17171
17172     Remove redundant #define for MPC8536DS
17173
17174     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17175
17176 commit 445a7b38308eb05b41de74165b20855db58c7ee5
17177 Author: Haiying Wang <Haiying.Wang@freescale.com>
17178 Date:   Fri Oct 3 11:47:30 2008 -0400
17179
17180     Add ID EEPROM support for MPC8572DS
17181
17182     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
17183     system information like mac addresses etc. This patch enables it.
17184
17185     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17186
17187 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
17188 Author: Haiying Wang <Haiying.Wang@freescale.com>
17189 Date:   Fri Oct 3 11:46:59 2008 -0400
17190
17191     Minor fixes for I2C address on MPC8572DS
17192
17193     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
17194     according to the board spec, and adds the 2nd i2c bus offset.
17195
17196     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
17197
17198 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
17199 Author: Jason Jin <Jason.jin@freescale.com>
17200 Date:   Sat Sep 27 14:40:57 2008 +0800
17201
17202     Fix the incorrect DDR clk freq reporting on 8536DS
17203
17204     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
17205     The display is still sync mode DDR freq. This patch try to fix
17206     this. The display DDR freq is now the actual freq in both
17207     sync and async mode.
17208
17209     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
17210
17211 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
17212 Author: Kumar Gala <galak@kernel.crashing.org>
17213 Date:   Tue Oct 7 10:28:46 2008 -0500
17214
17215     85xx: Remove setting of *cache-line-size in device trees
17216
17217     ePAPR says if the *cache-block-size is the same as *cache-line-size
17218     than we don't need the *cache-line-size property.
17219
17220     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17221
17222 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
17223 Author: Mark Jackson <mpfj@mimc.co.uk>
17224 Date:   Fri Oct 3 11:48:57 2008 +0100
17225
17226     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
17227
17228     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
17229     Also fixed default uImage location.
17230
17231     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
17232     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17233
17234 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
17235 Author: Gerald Van Baren <vanbaren@cideas.com>
17236 Date:   Sat Oct 4 07:56:06 2008 -0400
17237
17238     libfdt: Fix error in documentation for fdt_get_alias_namelen()
17239
17240     Oops, screwed up the function name in the documenting comment for this
17241     function.  Trivial correction in this patch.
17242
17243     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17244     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
17245
17246 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
17247 Author: David Gibson <david@gibson.dropbear.id.au>
17248 Date:   Wed Aug 20 16:55:14 2008 +1000
17249
17250     libfdt: Add function to explicitly expand aliases
17251
17252     Kumar has already added alias expansion to fdt_path_offset().
17253     However, in some circumstances it may be convenient for the user of
17254     libfdt to explicitly get the string expansion of an alias.  This patch
17255     adds a function to do this, fdt_get_alias(), and uses it to implement
17256     fdt_path_offset().
17257
17258     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17259
17260 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
17261 Author: Mike Frysinger <vapier@gentoo.org>
17262 Date:   Thu Oct 2 01:55:38 2008 -0400
17263
17264     cfi_flash: do not reset flash when probe fails
17265
17266     The CFI flash driver starts at flash_init() which calls down into
17267     flash_get_size().  This starts by calling flash_detect_cfi().  If said
17268     function fails, flash_get_size() finishes by attempting to reset the
17269     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
17270     which filters down into flash_make_cmd() and that happily smashes the
17271     stack by sticking info->portwidth bytes into a cfiword_t variable that
17272     lives on the stack.  On a 64bit system you probably won't notice, but
17273     killing the last 8 bytes on a 32bit system usually leads to a corrupt
17274     return address.  Which is what happens on a Blackfin system.
17275
17276     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17277     Signed-off-by: Stefan Roese <sr@denx.de>
17278
17279 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
17280 Author: Stefan Roese <sr@denx.de>
17281 Date:   Fri Sep 26 17:03:26 2008 +0200
17282
17283     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
17284
17285     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
17286     Without this, the chosen node is not overwritten if it already
17287     exists.
17288
17289     Signed-off-by: Stefan Roese <sr@denx.de>
17290
17291 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
17292 Author: Jon Loeliger <jdl@freescale.com>
17293 Date:   Thu Sep 25 11:02:17 2008 -0500
17294
17295     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
17296
17297     Using Gcc 4.3 detected this problem:
17298
17299         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
17300         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
17301         occur when assuming that (X + c) < X is always false
17302
17303     To fix the problem, treat the offset as an unsigned int.
17304
17305     The problem report and proposed fix were provided
17306     by Steve Papacharalambous <stevep@freescale.com>.
17307
17308     Signed-off-by: Jon Loeliger <jdl@freescale.com>
17309
17310 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
17311 Author: David Gibson <david@gibson.dropbear.id.au>
17312 Date:   Fri Aug 29 14:19:13 2008 +1000
17313
17314     libfdt: Fix bugs in fdt_get_path()
17315
17316     The current implementation of fdt_get_path() has a couple of bugs,
17317     fixed by this patch.
17318
17319     First, contrary to its documentation, on success it returns the length
17320     of the node's path, rather than 0.  The testcase is correspondingly
17321     wrong, and the patch fixes this as well.
17322
17323     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
17324     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
17325     Specifically this happens when there is insufficient space even to
17326     hold the path's second last component.  This behaviour is corrected,
17327     and the testcase updated to check it.
17328
17329     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17330
17331 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
17332 Author: Wolfgang Denk <wd@denx.de>
17333 Date:   Wed Oct 1 12:34:58 2008 +0200
17334
17335     TQM5200: enable support for ATAPI devices
17336
17337     Signed-off-by: Wolfgang Denk <wd@denx.de>
17338
17339 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
17340 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17341 Date:   Mon Sep 15 05:48:25 2008 +0200
17342
17343     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
17344
17345     we need this due to the arm implementation which supposed that U-Boot
17346     is in RAM when we jump to start_armboot
17347
17348     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
17349     in order to do it for all arm board
17350
17351     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17352
17353 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
17354 Author: Kim Phillips <kim.phillips@freescale.com>
17355 Date:   Wed Sep 24 08:46:25 2008 -0500
17356
17357     mpc83xx: don't disable autoboot
17358
17359     bootdelay set to -1 'permanently' disables autobooting, even if
17360     bootcmd is specified.  Change to a positive value to allow
17361     autobooting when a bootcmd is set.
17362
17363     Reported-by: Coray Tate <Coray.Tate@freescale.com>
17364     Cc: Scott Wood <scottwood@freescale.com>
17365     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17366
17367 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
17368 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17369 Date:   Wed Sep 24 10:42:15 2008 +0900
17370
17371     mpc83xx: Fix typo in include/mpc83xx.h
17372
17373     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
17374
17375     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17376     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17377
17378 commit 162c41c03179727a1d14262f703c9a8bc40231fa
17379 Author: Kim Phillips <kim.phillips@freescale.com>
17380 Date:   Tue Sep 23 09:38:49 2008 -0500
17381
17382     mpc83xx: add h/w flash protection to board configs
17383
17384     the operating system may leave flash in a h/w locked state after writing.
17385     This allows u-boot to continue to write flash by enabling h/w unlocking
17386     by default.
17387
17388     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17389
17390 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
17391 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17392 Date:   Thu Sep 11 21:35:36 2008 +0400
17393
17394     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
17395
17396     The spd_dram code shifts the base address, then masks 20 bits, but
17397     forgets to shift the base address back. Fix this by just masking the
17398     base address correctly.
17399
17400     Found this bug while trying to relocate a DDR memory at the base != 0.
17401
17402     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17403     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17404
17405 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
17406 Author: Stefan Roese <sr@denx.de>
17407 Date:   Mon Sep 22 16:10:43 2008 +0200
17408
17409     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
17410
17411     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
17412     either one PCIe node or the SATA node in the device tree blob. This
17413     patch removes the unnecessary and even confusing warning, when the node
17414     is not found at all.
17415
17416     Signed-off-by: Stefan Roese <sr@denx.de>
17417
17418 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
17419 Author: Remy Bohmer <linux@bohmer.net>
17420 Date:   Fri Sep 19 13:30:06 2008 +0200
17421
17422     Add missing device types to dev_print() in part.c
17423
17424     Signed-off-by: Remy Bohmer <linux@bohmer.net>
17425
17426 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
17427 Author: Wolfgang Denk <wd@denx.de>
17428 Date:   Mon Sep 22 22:23:06 2008 +0200
17429
17430     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
17431     eventually leads to a machine check. This change assures that DPRAM
17432     is allocated only once in that case.
17433
17434     Signed-off-by: Gary Jennejohn <garyj@denx.de>
17435     Signed-off-by: Wolfgang Denk <wd@denx.de>
17436
17437 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
17438 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
17439 Date:   Wed Sep 17 17:57:34 2008 +0200
17440
17441     Fix Spartan-3 definitions.
17442
17443     A few Spartan-3 definitions erroneously use Spartan-3E size
17444     constants. This patch fixes them.
17445
17446     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
17447
17448 commit 28113e1f0da4146b823ffce37680d31d5685a60b
17449 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
17450 Date:   Wed Sep 17 17:41:58 2008 +0200
17451
17452     Remove duplicate Spartan-3E definition.
17453
17454     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
17455     Signed-off-by: Wolfgang Denk <wd@denx.de>
17456
17457 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
17458 Author: Anatolij Gustschin <agust@denx.de>
17459 Date:   Wed Sep 17 13:46:17 2008 +0200
17460
17461     socrates: change default mtest address range
17462
17463     Running mtest command on socrates without specifying
17464     an address range crashes the board. This patch changes
17465     default mtest address range to prevent this behavior.
17466
17467     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17468
17469 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
17470 Author: Anatolij Gustschin <agust@denx.de>
17471 Date:   Wed Sep 17 12:34:45 2008 +0200
17472
17473     socrates: fix crash after relocation
17474
17475     Currently U-Boot crashes after relocation to RAM.
17476     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
17477     register to READ_LAT + 1 (to the value it was before
17478     conversion of socrates to new DDR code) fixes the
17479     problem.
17480
17481     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17482
17483 commit 562788b0a303f3528b920d81f547f5ca77ba528e
17484 Author: Anatolij Gustschin <agust@denx.de>
17485 Date:   Wed Sep 17 11:45:51 2008 +0200
17486
17487     socrates: fix SPD EEPROM address
17488
17489     Commit be0bd8234b9777ecd63c4c686f72af070d886517
17490     changed SPD EEPROM address to 0x51 and DDR SDRAM
17491     detection stopped working. Change this address
17492     back to 0x50.
17493
17494     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17495
17496 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
17497 Author: Stefan Roese <sr@denx.de>
17498 Date:   Mon Sep 22 11:06:50 2008 +0200
17499
17500     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
17501
17502     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
17503
17504     Signed-off-by: Stefan Roese <sr@denx.de>
17505
17506 commit e58c41e26cf3c8accd60311be579f452e368e97e
17507 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17508 Date:   Thu Sep 18 20:13:08 2008 +0900
17509
17510     usb: Fix compile warning of r8a66597-hcd
17511
17512     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17513     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17514
17515 commit b5d10a13525c07ec6374adf840d7c87553b5f189
17516 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17517 Date:   Thu Sep 18 19:34:36 2008 +0900
17518
17519     sh: Fix compile warning
17520
17521     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17522
17523 commit 4a065abf926f128beb36d93449defa0d690e7fef
17524 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17525 Date:   Thu Sep 18 19:04:26 2008 +0900
17526
17527     sh: Add support watchdog for SH4A core
17528
17529     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
17530     And fix some compile warning.
17531
17532     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17533
17534 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
17535 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17536 Date:   Wed Sep 17 11:45:26 2008 +0900
17537
17538     sh: Fix typo in SH serial driver
17539
17540     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17541     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17542
17543 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
17544 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17545 Date:   Wed Sep 17 11:08:36 2008 +0900
17546
17547     sh: Add support any page size and empty_zero_page to SH Linux uImage
17548
17549     Old U-Boot supported 4KB page size only. If this version, Linux
17550     kernel can not get command line from U-Boot.
17551     SH Linux kernel can change page size and empty_zero_page.
17552     This patch support this function and fix promlem.
17553
17554     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17555     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17556
17557 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
17558 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17559 Date:   Thu Aug 28 13:40:52 2008 +0900
17560
17561     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
17562
17563     Add function of smc911x, pkt_data_pull and pkt_data_push.
17564
17565     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17566     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17567
17568 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
17569 Author: Wolfgang Denk <wd@denx.de>
17570 Date:   Thu Sep 18 13:57:32 2008 +0200
17571
17572     ADS5121: fix typo in "rootpath" default setting
17573
17574     Signed-off-by: Wolfgang Denk <wd@denx.de>
17575
17576 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
17577 Author: Remy Bohmer <linux@bohmer.net>
17578 Date:   Tue Sep 16 14:55:44 2008 +0200
17579
17580     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
17581
17582     There are several differences between Linux, Windows and U-boot for initialising the
17583     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
17584     things really different, and some are wrong (compared to the USB standard).
17585
17586     This patch fixes some errors:
17587     * The NEW_init procedure that was already in the code is good, while the old procedure
17588       is wrong. See code comments for more info.
17589     * On a Control request the data returned by the device can be more than 8 bytes, while
17590       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
17591       This results in a lot of USB sticks not being recognised, and the transmission ended
17592       frequently with a CTL:TIMEOUT Error.
17593     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
17594
17595     Signed-off-by: Remy Bohmer <linux@bohmer.net>
17596     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17597
17598 commit 6f5794a6f78b313231256958fd73673c6aacc116
17599 Author: Remy Bohmer <linux@bohmer.net>
17600 Date:   Tue Sep 16 14:55:43 2008 +0200
17601
17602     Refactoring parts of the common USB OHCI code
17603
17604     This patch refactors some large routines of the USB OHCI code by
17605     making some routines smaller and more readable which helps
17606     debugging and understanding the code. (Makes the code looks
17607     somewhat more like the Linux implementation.)
17608
17609     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
17610
17611     Signed-off-by: Remy Bohmer <linux@bohmer.net>
17612     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17613
17614 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
17615 Author: Remy Bohmer <linux@bohmer.net>
17616 Date:   Tue Sep 16 14:55:42 2008 +0200
17617
17618     Fix for USB sticks not working on ARM while using GCC 4.x compilers
17619
17620     The GCC-compiler makes an optimisation error while optimising the routine
17621     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
17622     but there lots of compilers out there that makes this error, that it is
17623     probably wiser to workaround it in U-boot itself.
17624
17625     What happens is that the register r3 is used as loop-counter 'i', but gets
17626     overwritten later on. From there it starts using register r3 for several other
17627     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
17628
17629     This error occurs on at least several versions of Code Sourcery Lite compilers
17630     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
17631     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
17632
17633     We work around it by splitting up this routine in 2 parts, and making sure that
17634     the split out part is NOT inlined any longer. This will make GCC spit out assembler
17635     that do not show this problem. Another possibility is to adapt the Makefile to stop
17636     optimisation for the complete file. I think this solution is nicer.
17637
17638     Signed-off-by: Remy Bohmer <linux@bohmer.net>
17639     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17640
17641 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
17642 Author: Wolfgang Denk <wd@denx.de>
17643 Date:   Wed Sep 17 10:17:55 2008 +0200
17644
17645     Coding style cleanup; update CHANEGLOG
17646
17647     Signed-off-by: Wolfgang Denk <wd@denx.de>
17648
17649 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
17650 Author: Victor Gallardo <vgallardo@amcc.com>
17651 Date:   Tue Sep 16 06:59:13 2008 -0700
17652
17653     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
17654
17655     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
17656     Signed-off-by: Adam Graham <agraham@amcc.com>
17657     Signed-off-by: Stefan Roese <sr@denx.de>
17658
17659 commit ce47eb402c5e29a025399dc282246414fc492940
17660 Author: Peter Tyser <ptyser@xes-inc.com>
17661 Date:   Tue Sep 16 10:04:47 2008 -0500
17662
17663     Support for multiple SGMII/TBI interfaces for TSEC ethernet
17664
17665     Fix TBI PHY accesses to use the proper offset in CPU register space. The
17666     previous code would incorrectly access the TBI PHY by reading/writing to CPU
17667     register space at the same location as would be used to access external PHYs.
17668
17669     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17670     Acked-by: Andy Fleming <afleming@freescale.com>
17671
17672 commit 7c803be2eb3cae245dedda438776e08fb122250f
17673 Author: Wolfgang Denk <wd@denx.de>
17674 Date:   Tue Sep 16 18:02:19 2008 +0200
17675
17676     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
17677
17678     After switching to using the CFI flash driver, the correct remapping
17679     of the flash banks was forgotten.
17680
17681     Also, some boards were not adapted, and the old legacy flash driver
17682     was not removed yet.
17683
17684     Signed-off-by: Wolfgang Denk <wd@denx.de>
17685
17686 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
17687 Author: Wolfgang Denk <wd@denx.de>
17688 Date:   Sun Sep 14 00:59:35 2008 +0200
17689
17690     Prepare v2008.10-rc2
17691
17692     Signed-off-by: Wolfgang Denk <wd@denx.de>
17693
17694 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
17695 Author: Wolfgang Denk <wd@denx.de>
17696 Date:   Sat Sep 13 02:23:05 2008 +0200
17697
17698     Coding style cleanup, update CHANGELOG
17699
17700     Signed-off-by: Wolfgang Denk <wd@denx.de>
17701
17702 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
17703 Author: Peter Tyser <ptyser@xes-inc.com>
17704 Date:   Wed Sep 10 09:18:34 2008 -0500
17705
17706     Update mailing list email and archive addresses
17707
17708     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17709
17710 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
17711 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
17712 Date:   Thu Sep 11 15:40:01 2008 +0200
17713
17714     85xx: socrates: autoprobe Lime chip
17715
17716     This patch is an attempt to implement autoprobing for the Lime
17717     presence on the bus.
17718     Configure GPCM for Lime CS2 and try to access chip ID registers.
17719     Second read atempt delivers register values if the chip is present.
17720
17721     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17722
17723 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
17724 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
17725 Date:   Thu Sep 11 15:40:01 2008 +0200
17726
17727     85xx: socrates: Add support for new image format.
17728
17729     Signed-off-by: Detlev Zundel <dzu@denx.de>
17730
17731 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
17732 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17733 Date:   Thu Sep 11 17:28:18 2008 +0900
17734
17735     sh: Fix compile error for r2dplus
17736
17737     netdev.h was not include by r2dplus.
17738
17739     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17740
17741 commit 56844a22b76c719e600047e23b80465a44d76abd
17742 Author: Heiko Schocher <hs@denx.de>
17743 Date:   Thu Sep 11 08:11:23 2008 +0200
17744
17745     powerpc: Fix bootm to boot up again with a Ramdisk
17746
17747     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
17748     and this stopped Linux from booting with a Ramdisk. This patch fixes
17749     this, by deleting the useless dummy mem reservation.
17750
17751     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
17752     added to of_size, so we dont need anymore a dummy mem reservation.
17753
17754     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
17755     system (=0x44 bytes) and rounded it up to 0x80).
17756
17757     Signed-off-by: Heiko Schocher <hs@denx.de>
17758     Acked-by: Kumar Gala <galak@kernel.crashing.org>
17759
17760 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
17761 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
17762 Date:   Mon Sep 8 02:46:13 2008 +0200
17763
17764     Add support for LZMA uncompression algorithm.
17765
17766     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
17767     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17768
17769 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
17770 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17771 Date:   Fri Jun 27 23:04:20 2008 +0400
17772
17773     fsl_elbc_nand: ecclayout cleanups
17774
17775     This patch deletes oobavail assignments, they're calculated by the nand
17776     core code in nand_scan_tail, plus current oobavail values are wrong for
17777     the LP NANDs.
17778
17779     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17780     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17781     Signed-off-by: Scott Wood <scottwood@freescale.com>
17782
17783 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
17784 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17785 Date:   Fri Jun 27 23:04:13 2008 +0400
17786
17787     fsl_elbc_nand: implement support for flash-based BBT
17788
17789     This patch implements support for flash-based BBT for chips working
17790     through ELBC NAND controller, so that NAND core will not have to re-scan
17791     for bad blocks on every boot.
17792
17793     Because ELBC controller may provide HW-generated ECCs we should adjust
17794     bbt pattern and bbt version positions in the OOB free area.
17795
17796     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17797     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17798     Signed-off-by: Scott Wood <scottwood@freescale.com>
17799
17800 commit 97ae023648e764f794ffb9c52da109d6caf09c47
17801 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17802 Date:   Fri Jun 27 23:04:04 2008 +0400
17803
17804     fsl_elbc_nand: fix OOB workability for large page NAND chips
17805
17806     For large page chips, nand_bbt is looking into OOB area, and checking
17807     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
17808     reserved for bbt means.
17809
17810     But ELBC driver is specifying ecclayout so that oobfree area starts at
17811     offset 1, so only one byte left for the bbt purposes.
17812
17813     This causes problems with any OOB users, namely JFFS2: after first mount
17814     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
17815
17816       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
17817       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17818       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17819       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17820
17821     And on the next boot, NAND core will rescan for bad blocks, then will
17822     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
17823
17824     To fix the issue we should implement our own bad block pattern: just one
17825     byte at OOB start. Though, this will work only for x8 chips. For x16
17826     chips two bytes must be checked. Since ELBC driver does not support x16
17827     NANDs (yet), we're safe for now.
17828
17829     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17830     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17831     Signed-off-by: Scott Wood <scottwood@freescale.com>
17832
17833 commit 7238ada313057a85409485b8ee21515dc10c07a5
17834 Author: Wolfgang Denk <wd@denx.de>
17835 Date:   Fri Sep 12 13:52:21 2008 +0200
17836
17837     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
17838
17839     Signed-off-by: Wolfgang Denk <wd@denx.de>
17840
17841 commit b18410e508a12ba0a177dfc2a386857c806fa96d
17842 Author: Stefan Roese <sr@denx.de>
17843 Date:   Thu Sep 11 13:05:56 2008 +0200
17844
17845     ppc4xx: Enable device tree (FDT) support in zeus board port
17846
17847     Signed-off-by: Stefan Roese <sr@denx.de>
17848
17849 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
17850 Author: Stefan Roese <sr@denx.de>
17851 Date:   Wed Sep 10 16:53:47 2008 +0200
17852
17853     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
17854
17855     This patch fixes a problem introdiced with patch
17856     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
17857     initdram()].
17858
17859     The boards affected are:
17860     - PCI405
17861     - PPChameleonEVB
17862     - quad100hd
17863     - taihu
17864     - zeus
17865
17866     Signed-off-by: Stefan Roese <sr@denx.de>
17867
17868 commit 61737c59a3285f6fadf96a5836879898c04ec28d
17869 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17870 Date:   Thu Sep 11 19:41:26 2008 -0400
17871
17872     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
17873
17874     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17875     Signed-off-by: Stefan Roese <sr@denx.de>
17876
17877 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
17878 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17879 Date:   Thu Sep 11 19:41:25 2008 -0400
17880
17881     ppc4xx: Fix compilation of v5fx30teval_flash
17882
17883     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17884     Signed-off-by: Stefan Roese <sr@denx.de>
17885
17886 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
17887 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17888 Date:   Wed Sep 10 17:44:30 2008 -0400
17889
17890     ppc4xx: Fix in-tree build for ppc440-generic boards
17891
17892     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17893     Signed-off-by: Stefan Roese <sr@denx.de>
17894
17895 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
17896 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17897 Date:   Fri Sep 12 02:20:47 2008 +0200
17898
17899     ARM: synchronize mach-types.h with linux 2.6.27-rc6
17900
17901     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17902
17903 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
17904 Author: Jens Scharsig <esw@bus-elektronik.de>
17905 Date:   Fri Sep 12 02:20:47 2008 +0200
17906
17907     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
17908
17909     This patch prevents linker error on AT91RM9200 boards, if
17910     CONFIG_CMD_I2_TREE is set.
17911     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
17912
17913     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
17914
17915 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
17916 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17917 Date:   Fri Sep 12 02:20:47 2008 +0200
17918
17919     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
17920
17921     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
17922
17923     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17924
17925 commit 03db53335c8eba656a7c44d1555b1a4514383e33
17926 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17927 Date:   Fri Sep 12 02:20:46 2008 +0200
17928
17929     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
17930
17931     __ARM__ is given by arm_config.mk automatically.
17932
17933     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17934
17935 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
17936 Author: Claudio Scordino <claudio@evidence.eu.com>
17937 Date:   Fri Sep 12 02:20:46 2008 +0200
17938
17939     Fix MACH_TYPE for the AT91RM9200DK board.
17940
17941     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
17942
17943 commit 274737e5eb25b2bcd3af3a96da923effd543284f
17944 Author: Andrew Dyer <adyer@righthandtech.com>
17945 Date:   Fri Sep 12 02:20:46 2008 +0200
17946
17947     i.mx change get_timer(base) to return time since base
17948
17949     This patch changes get_timer() for i.MX to return the time since
17950     'base' instead of the time since the counter was at zero.
17951
17952     Symptom seen is flash timeout errors when erasing or programming a
17953     sector using the common cfi flash code.
17954
17955     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17956
17957 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
17958 Author: Andrew Dyer <adyer@righthandtech.com>
17959 Date:   Fri Sep 12 02:20:46 2008 +0200
17960
17961     i.MX use u-boot baud rate and don't assume UART master clock
17962
17963     1) Change the i.MX serial driver to use the baud rate set in the
17964      u-boot environment
17965
17966     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
17967
17968     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
17969      one to clear" like other status bits in the reg.)
17970
17971     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17972
17973 commit 6e1551a870d360805b9d172dc56d935064abe71d
17974 Author: Andrew Dyer <adyer@righthandtech.com>
17975 Date:   Fri Sep 12 02:20:46 2008 +0200
17976
17977     arm920t fix constant error in start.S
17978
17979     Code in cpu/arm920t/start.S will die with a compilation error if
17980     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
17981     the ARM sub instruction.  Change the code so that each is subtracted
17982     independently to avoid the error.
17983
17984     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17985
17986 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
17987 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
17988 Date:   Fri Sep 12 02:20:40 2008 +0200
17989
17990     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
17991
17992     - Correct Invalid #define of MPUTIM_PTV_MASK for
17993        omap1510 & omap730 register definition
17994
17995      MPUTIM_PTV_MASK is defined as
17996      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
17997
17998      while it should have been
17999      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
18000
18001     - Below Patch corrects the same
18002
18003     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
18004
18005 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
18006 Author: Adrian Filipi <adrian.filipi@eurotech.com>
18007 Date:   Fri Jul 18 11:52:02 2008 -0400
18008
18009     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
18010
18011     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
18012
18013 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
18014 Author: Guennadi Liakhovetski <lg@denx.de>
18015 Date:   Thu Aug 28 12:25:11 2008 +0200
18016
18017     i.MX31: document timer precision option
18018
18019     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18020
18021 commit 1a6337b01351b82a45b0defa76f08744511c580b
18022 Author: Magnus Lilja <lilja.magnus@gmail.com>
18023 Date:   Fri Aug 29 10:36:18 2008 +0200
18024
18025     i.MX31: Make the SPI bus and chip select configurable for MC13783
18026
18027     The i.MX31 has three SPI buses and each bus has several chip selects
18028     and the MC13783 chip can be connected to any of these. The current
18029     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
18030
18031     This patch makes make MC13783 SPI bus and chip select configurable
18032     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
18033
18034     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
18035
18036 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
18037 Author: Magnus Lilja <lilja.magnus@gmail.com>
18038 Date:   Fri Aug 29 10:36:17 2008 +0200
18039
18040     i.MX31: Add reset_timer() and modify get_timer_masked().
18041
18042     This patch adds the reset_timer() function (needed by nand_base.c) and
18043     modifies the get_timer_masked() to work in the same way as the omap24xx
18044     function.
18045
18046     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
18047
18048 commit deeec4991a55de243787002ede24d2331d234fc8
18049 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18050 Date:   Wed Sep 10 22:48:09 2008 +0200
18051
18052     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
18053
18054     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18055
18056 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
18057 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18058 Date:   Wed Sep 10 22:48:09 2008 +0200
18059
18060     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
18061
18062     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18063
18064 commit 0e8d158664a913392cb01fb11a948d83f72e105e
18065 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18066 Date:   Wed Sep 10 22:48:06 2008 +0200
18067
18068     rename CFG_ENV macros to CONFIG_ENV
18069
18070     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18071
18072 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
18073 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18074 Date:   Wed Sep 10 22:48:05 2008 +0200
18075
18076     nvedit: rename error comment to CONFIG_ENV_IS_IN_
18077
18078     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18079
18080 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
18081 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18082 Date:   Wed Sep 10 22:48:05 2008 +0200
18083
18084     cmd_mem: Move conditional compilation to Makefile
18085
18086     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18087
18088 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
18089 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18090 Date:   Wed Sep 10 22:48:05 2008 +0200
18091
18092     move cmd_get_data_size to command.c
18093
18094     add CMD_DATA_SIZE macro to enable it
18095
18096     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18097
18098 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
18099 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18100 Date:   Wed Sep 10 22:48:04 2008 +0200
18101
18102     env_flash: Move conditional compilation to Makefile
18103
18104     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18105
18106 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
18107 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18108 Date:   Wed Sep 10 22:48:04 2008 +0200
18109
18110     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
18111
18112     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18113
18114 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
18115 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18116 Date:   Wed Sep 10 22:48:03 2008 +0200
18117
18118     cleanup use of CFG_ENV_IS_IN_FLASH
18119
18120     - #if CFG_ENV_IS_IN_FLASH
18121     - #if (CFG_ENV_IS_IN_FLASH == 1)
18122     - #define CFG_ENV_IS_IN_FLASH 0
18123
18124     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18125
18126 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
18127 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18128 Date:   Wed Sep 10 22:48:01 2008 +0200
18129
18130     rename environment.c in env_embedded.c to reflect is functionality
18131
18132     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18133
18134 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
18135 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18136 Date:   Wed Sep 10 22:48:01 2008 +0200
18137
18138     env_nowhere: Move conditional compilation to Makefile
18139
18140     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18141
18142 commit 93f6d72544da4510a146bc4c93d609b0116cde37
18143 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18144 Date:   Wed Sep 10 22:48:00 2008 +0200
18145
18146     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
18147
18148     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18149
18150 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
18151 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18152 Date:   Wed Sep 10 22:48:00 2008 +0200
18153
18154     env_sf: Move conditional compilation to Makefile
18155
18156     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18157
18158 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
18159 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18160 Date:   Wed Sep 10 22:48:00 2008 +0200
18161
18162     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
18163
18164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18165
18166 commit 55c5f49910ec8225347aa1d211352a84de6649b4
18167 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18168 Date:   Wed Sep 10 22:48:00 2008 +0200
18169
18170     env_onenand: Move conditional compilation to Makefile
18171
18172     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18173
18174 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
18175 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18176 Date:   Wed Sep 10 22:47:59 2008 +0200
18177
18178     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
18179
18180     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18181
18182 commit 957a0e69575683efd70ace147746bbb3d8e7c501
18183 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18184 Date:   Wed Sep 10 22:47:59 2008 +0200
18185
18186     env_nvram: Move conditional compilation to Makefile
18187
18188     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18189
18190 commit 9314cee6917444ab88bd4e758da7a30975120187
18191 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18192 Date:   Wed Sep 10 22:47:59 2008 +0200
18193
18194     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
18195
18196     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18197
18198 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
18199 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18200 Date:   Wed Sep 10 22:47:59 2008 +0200
18201
18202     env_nand: Move conditional compilation to Makefile
18203
18204     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18205
18206 commit 51bfee192099206a4397f15f3b93516e01f58ab0
18207 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18208 Date:   Wed Sep 10 22:47:58 2008 +0200
18209
18210     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
18211
18212     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18213
18214 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
18215 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18216 Date:   Wed Sep 10 22:47:58 2008 +0200
18217
18218     env_dataflash: Move conditional compilation to Makefile
18219
18220     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18221
18222 commit 057c849c45b9ee19df8ff3acdeee66be52819962
18223 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18224 Date:   Wed Sep 10 22:47:58 2008 +0200
18225
18226     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
18227
18228     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18229
18230 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
18231 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18232 Date:   Wed Sep 10 22:47:52 2008 +0200
18233
18234     cmd_eeprom: Move conditional compilation to Makefile
18235
18236     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18237
18238 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
18239 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18240 Date:   Fri Sep 5 09:19:54 2008 +0200
18241
18242     env_eeprom: Move conditional compilation to Makefile
18243
18244     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18245
18246 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
18247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18248 Date:   Fri Sep 5 09:19:30 2008 +0200
18249
18250     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
18251
18252     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18253
18254 commit 32628c5008105a732212003d83b75f05e5243bb2
18255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18256 Date:   Sat Aug 30 23:54:58 2008 +0200
18257
18258     cmd_mac: Move conditional compilation to Makefile
18259
18260     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
18261     start in commit ad8f8687b78c3e917b173f038926695383c55555
18262
18263     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18264
18265 commit e5648acab153f0f429bfc714902c5aaa7879f71b
18266 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18267 Date:   Sat Aug 30 23:47:41 2008 +0200
18268
18269     cmd_fdc: Move conditional compilation to Makefile
18270
18271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18272
18273 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
18274 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18275 Date:   Sat Aug 30 23:47:38 2008 +0200
18276
18277     common/Makefile: add core command section
18278
18279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18280
18281 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
18282 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18283 Date:   Sat Aug 30 23:29:57 2008 +0200
18284
18285     cmd_vfd: Move conditional compilation to Makefile
18286
18287     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18288
18289 commit 6644641d072aee3087da129d8443187196a4d8a9
18290 Author: Scott Wood <scottwood@freescale.com>
18291 Date:   Wed Sep 10 11:48:49 2008 -0500
18292
18293     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
18294
18295     This is part of the switch to newer upstream MTD code.
18296
18297     Signed-off-by: Scott Wood <scottwood@freescale.com>
18298
18299 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
18300 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18301 Date:   Sat Aug 30 17:06:55 2008 -0400
18302
18303     ARM DaVinci: Fix broken HW ECC for large page NAND.
18304
18305     Based on original patch by Bernard Blackham <bernard@largestprime.net>
18306
18307     U-boot's HW ECC support for large page NAND on Davinci is completely
18308     broken.  Some kernels, such as the 2.6.10 one supported by
18309     MontaVista for DaVinci, rely upon this broken behaviour as they
18310     share the same code for ECCs. In the existing scheme, error
18311     detection *might* work on large page, but error correction
18312     definitely does not.  Small page ECC correction works, but the
18313     format is not compatible with the mainline git kernel.
18314
18315     This patch adds ECC code that matches what is currently in the
18316     Davinci git repository (since NAND support was added in 2.6.24).
18317     This makes the ECC and OOB layout written by u-boot compatible with
18318     Linux for both small page and large page devices and fixes ECC
18319     correction for large page devices.
18320
18321     The old behaviour can be restored by defining the macro
18322     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
18323
18324     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18325     Acked-by: Sergey Kubushyn <ksi@koi8.net>
18326     Signed-off-by: Scott Wood <scottwood@freescale.com>
18327
18328 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
18329 Author: Heiko Schocher <hs@denx.de>
18330 Date:   Wed Sep 10 11:15:28 2008 +0200
18331
18332     muas3001: update BR4 settings
18333
18334     Also set up the port pins for using I2C.
18335
18336     Signed-off-by: Heiko Schocher <hs@denx.de>
18337
18338 commit 3591293509e0c0bcf244b0f974775bff2e25697e
18339 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
18340 Date:   Wed Sep 10 09:43:49 2008 +0300
18341
18342     autoscr: Fix one-character lines and non-newline terminated scripts
18343
18344     When not using hush, the autoscr command now executes lines that are
18345     only one character long. It also runs the last line of scripts even if
18346     it does not end in a newline.
18347
18348     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
18349
18350 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
18351 Author: Victor Gallardo <vgallardo@amcc.com>
18352 Date:   Tue Sep 9 15:13:29 2008 -0700
18353
18354     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
18355
18356     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
18357     and glacier.
18358
18359     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
18360
18361 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
18362 Author: Heiko Schocher <hs@denx.de>
18363 Date:   Mon Sep 8 10:21:11 2008 +0200
18364
18365     muas3001: added support for the LM75 sensor.
18366
18367     Signed-off-by: Heiko Schocher <hs@denx.de>
18368
18369 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
18370 Author: Heiko Schocher <hs@denx.de>
18371 Date:   Mon Sep 8 10:20:19 2008 +0200
18372
18373     muas3001: activate WDT for the muas3001 board.
18374
18375     Signed-off-by: Heiko Schocher <hs@denx.de>
18376
18377 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
18378 Author: Heiko Schocher <hs@denx.de>
18379 Date:   Mon Sep 8 10:19:36 2008 +0200
18380
18381     muas3001: added 64MB SDRAM autodetection.
18382
18383     Signed-off-by: Heiko Schocher <hs@denx.de>
18384
18385 commit 5251469943895de4bb9a04d5053352cc22acb7d5
18386 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
18387 Date:   Thu Aug 21 07:12:26 2008 -0700
18388
18389     Fix printf errors under -DDEBUG
18390
18391     Fix printf format-string/arg mismatches under -DDEBUG.
18392
18393     These warnings occur with DEBUG defined for a platform using
18394     cpu/mpc85xx.  Users of other architectures can unearth similar
18395     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
18396     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
18397
18398     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
18399     Signed-off-by: Andy Fleming <afleming@freescale.com>
18400
18401 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
18402 Author: Wolfgang Denk <wd@denx.de>
18403 Date:   Tue Sep 9 23:55:18 2008 +0200
18404
18405     Update CHANGELOG, prepare 2008-10-rc1 release
18406
18407     Signed-off-by: Wolfgang Denk <wd@denx.de>
18408
18409 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
18410 Author: Kumar Gala <galak@kernel.crashing.org>
18411 Date:   Mon Sep 8 08:51:29 2008 -0500
18412
18413     85xx: Ensure timebase is zero on secondary cores
18414
18415     The e500um says the timebase is volatile out of reset.  To ensure
18416     TB sync works we need to make sure its zero.
18417
18418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18419
18420 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
18421 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18422 Date:   Tue Sep 9 22:18:24 2008 +0200
18423
18424     bootm_load_os: fix load_end debug message
18425
18426     print load_end value not pointer
18427
18428     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18429
18430 commit 1d9af0be764960e6cc1c093e97176c3542796820
18431 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18432 Date:   Tue Sep 9 22:18:23 2008 +0200
18433
18434     bootm: enable fdt support only on ppc, m68k and sparc
18435
18436     ...as done in image.c
18437
18438     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18439
18440 commit 748b5274e76f81df85cfcffaffedc323678d0623
18441 Author: Markus Heidelberg <markus.heidelberg@web.de>
18442 Date:   Tue Sep 9 18:51:05 2008 +0200
18443
18444     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
18445
18446     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
18447
18448 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
18449 Author: Markus Heidelberg <markus.heidelberg@web.de>
18450 Date:   Tue Sep 9 17:31:46 2008 +0200
18451
18452     gitignore: add tags files and Vim swap file
18453
18454     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
18455
18456 commit 1d9b67b23fca6a25154333733204339802510720
18457 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
18458 Date:   Tue Sep 9 17:52:47 2008 +0900
18459
18460     add board_eth_init() for sh7785lcr board
18461
18462     Fix the problem that cannot work RTL8169 on sh7785lcr board.
18463
18464     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
18465
18466 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
18467 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18468 Date:   Wed Aug 6 16:08:41 2008 -0500
18469
18470     mtd: SPI Flash: Support the STMicro Flash
18471
18472     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
18473     M25P40, M25P64, M25P80, M25P128.
18474
18475     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
18476     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18477
18478 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
18479 Author: Wolfgang Denk <wd@denx.de>
18480 Date:   Tue Sep 9 17:55:31 2008 +0200
18481
18482     trab: fix build problem after change to use do_div()
18483
18484     We must link with libgeneric now.
18485
18486     Signed-off-by: Wolfgang Denk <wd@denx.de>
18487
18488 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
18489 Author: Ryan CHEN <ryan.chen@st.com>
18490 Date:   Wed Aug 20 13:00:17 2008 -0400
18491
18492     Correct drv_usb_kbd_init function
18493
18494     The patch is that check if usb_get_dev_index() function return valid
18495     pointer. If valid, continue. Otherwise return -1.
18496
18497     Signed-off-by: Ryan Chen <ryan.chen@st.com>
18498     Acked-by: Markus Klotzbuecher <mk@denx.de>
18499
18500 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
18501 Author: Remy Bohmer <linux@bohmer.net>
18502 Date:   Wed Aug 20 11:22:02 2008 +0200
18503
18504     Make usb-stop() safe to call multiple times in a row.
18505
18506     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
18507     enabled the usb_stop() command in common/cmd_bootm.c which was
18508     not enabled for some time, because no board did actually set the
18509     CFG_CMD_USB flag. So, now the usb_stop() is executed before
18510     loading the linux kernel.
18511
18512     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
18513     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
18514     If some other piece of code calls usb_stop() before the bootm command,
18515     this command will hangup the system during boot.
18516     (usb start and stop is typically used while booting from usb memory stick)
18517
18518     But, stopping the usb stack twice is useless anyway, and a flag already
18519     existed that kept track on the usb_init()/usb_stop() calls.
18520     So, we now check if the usb stack is really started before we stop it.
18521
18522     This problem is now fixed in both the upper as low-level layer.
18523
18524     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18525     Acked-by: Markus Klotzbuecher <mk@denx.de>
18526
18527 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
18528 Author: Wolfgang Denk <wd@denx.de>
18529 Date:   Tue Sep 9 16:55:47 2008 +0200
18530
18531     Makefile: fix bug introduced by commit 47ffd6c2
18532
18533 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
18534 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18535 Date:   Tue Sep 9 10:00:33 2008 -0400
18536
18537     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
18538
18539     This patch solves the problems compiling ml507, v5fx30teval and
18540     ppc440-generic out of tree.
18541
18542     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18543
18544 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
18545 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
18546 Date:   Thu Sep 4 15:35:46 2008 -0300
18547
18548     Fix dev_print when called from usb_stor_info (usb storage command)
18549
18550     Fix output of the usb storage command. It was printing "Device 0: not
18551     available" because IF_TYPE_USB was not included into the switch
18552     statement.
18553
18554     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
18555
18556 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
18557 Author: Bartlomiej Sieka <tur@semihalf.com>
18558 Date:   Tue Sep 9 12:58:16 2008 +0200
18559
18560     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
18561
18562     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18563
18564 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
18565 Author: Bartlomiej Sieka <tur@semihalf.com>
18566 Date:   Tue Sep 9 12:58:15 2008 +0200
18567
18568     FIT: add ability to check hashes of all images in FIT, improve output
18569
18570     - add function fit_all_image_check_hashes() that verifies if all
18571       hashes of all images in the FIT are valid
18572     - improve output of fit_image_check_hashes() when the hash check fails
18573
18574     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18575
18576 commit 1de1fa408967cef6804bb046b904114519bb36f0
18577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18578 Date:   Mon Sep 8 20:54:39 2008 +0200
18579
18580     qemu_mips: Update linux bootm to support dynamic cmdline
18581
18582     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18583
18584 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
18585 Author: Peter Tyser <ptyser@xes-inc.com>
18586 Date:   Mon Sep 8 14:56:49 2008 -0500
18587
18588     Add support for booting of INTEGRITY operating system uImages
18589
18590     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18591
18592 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
18593 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18594 Date:   Mon Sep 8 21:01:29 2008 +0200
18595
18596     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
18597
18598     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18599
18600 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
18601 Author: Kumar Gala <galak@kernel.crashing.org>
18602 Date:   Mon Sep 8 13:57:12 2008 -0500
18603
18604     Remove support for booting ARTOS images
18605
18606     Pantelis Antoniou stated:
18607         AFAIK, it is still used but the products using PPC are long gone.
18608         Nuke it plz (from orbit).
18609
18610     So remove it since it cleans up a usage of env_get_char outside of
18611     the environment code.
18612
18613     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18614
18615 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
18616 Author: Wolfgang Denk <wd@denx.de>
18617 Date:   Tue Sep 9 15:45:18 2008 +0200
18618
18619     Makefile: compile and link each module just once
18620
18621     Several source files need to be compiled and linked when one or more
18622     config options are selected. To allow for easy selection in the
18623     Makefiles yet to avoild multiple compilation (which costs build time)
18624     and especially multiple linking (which causes errors), we use
18625     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
18626
18627     By courtesy of Detlev Zundel who suggested this approach.
18628
18629     Signed-off-by: Wolfgang Denk <wd@denx.de>
18630
18631 commit 48d0192fe869948fef14b460b5f0c85bca933693
18632 Author: Andreas Engel <andreas.engel@ericsson.com>
18633 Date:   Mon Sep 8 14:30:53 2008 +0200
18634
18635     Moved conditional compile into Makefile
18636
18637     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
18638
18639 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
18640 Author: Andreas Engel <andreas.engel@ericsson.com>
18641 Date:   Mon Sep 8 10:17:31 2008 +0200
18642
18643     Merged serial_pl010.c and serial_pl011.c.
18644
18645     They only differ in the init function.
18646     This also adds the missing watchdog support for the PL011.
18647
18648     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
18649
18650 commit 0817d688f307ee2c0598e79175c94a40ce90337b
18651 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18652 Date:   Sun Sep 7 17:10:27 2008 -0400
18653
18654     Remove gap fill in srec object v2
18655
18656     SREC files do not need gap fill: The load address is specified in the
18657     file. On the other hand, it can't be avoided in a .bin object. It has
18658     no information about memory location.
18659
18660     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18661
18662 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
18663 Author: Markus Heidelberg <markus.heidelberg@web.de>
18664 Date:   Sun Sep 7 20:18:27 2008 +0200
18665
18666     README: fix missing subdirectory in the documentation
18667
18668     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
18669
18670 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
18671 Author: Graeme Russ <graeme.russ@gmail.com>
18672 Date:   Sun Sep 7 07:08:42 2008 +1000
18673
18674     Update i386 code (sc520_cdp)
18675
18676     Attempt to bring i386 / sc520 inline with master
18677
18678     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
18679
18680 commit 5608692104efa8d56df803dc79ea41ac3607eee5
18681 Author: Guennadi Liakhovetski <lg@denx.de>
18682 Date:   Thu Sep 4 13:01:49 2008 +0200
18683
18684     fw_env: add NAND support
18685
18686     Add support for environment in NAND with automatic NOR / NAND recognition,
18687     including unaligned environment, bad-block skipping, redundant environment
18688     copy.
18689
18690     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18691
18692 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
18693 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18694 Date:   Tue Sep 9 09:50:24 2008 +0200
18695
18696     ppc4xx: Fix out-of-tree building of CPCI405 variants
18697
18698     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18699     Acked-by: Stefan Roese <sr@denx.de>
18700
18701 commit 59f630588e3fdbd698a0a2798e52a8924e899563
18702 Author: Sergei Poselenov <sposelenov@emcraft.com>
18703 Date:   Fri Aug 15 15:42:11 2008 +0200
18704
18705     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
18706
18707     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18708
18709 commit e64987a892353f3d49eb242d997820ef8f538912
18710 Author: Anatolij Gustschin <agust@denx.de>
18711 Date:   Fri Aug 15 15:42:13 2008 +0200
18712
18713     85xx: socrates: Enable Lime support.
18714
18715     This patch adds Lime GDC support together with support for the PWM
18716     backlight control through the w83782d chip.  The reset pin of the
18717     latter is attached to GPIO, so we need to reset it in
18718     early_board_init_r.
18719
18720     Signed-off-by: Anatolij Gustschin <agust@denx.de>
18721
18722 commit 3e79b588b5199f35016f178fc0d5d1266382097f
18723 Author: Detlev Zundel <dzu@denx.de>
18724 Date:   Fri Aug 15 15:42:12 2008 +0200
18725
18726     85xx: Socrates: Major code update.
18727
18728     - Update the local bus ranges in the FDT for Linux for the various
18729       devices connected to the local bus via chip-select.
18730
18731     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
18732       lower than 66 MHz and uses I/O accessor functions consequently.
18733
18734     - UPM data update.
18735
18736     - Update of default environment and configuration.  Use I2C multibus
18737       as we do have two I2C buses.  Also enable sdram and ext2 commands.
18738
18739     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
18740     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18741     Signed-off-by: Detlev Zundel <dzu@denx.de>
18742
18743 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
18744 Author: Timur Tabi <timur@freescale.com>
18745 Date:   Fri Jul 18 16:52:23 2008 +0200
18746
18747     Update Freescale 85xx boards to sys_eeprom.c
18748
18749     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
18750     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
18751     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
18752     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
18753
18754     Signed-off-by: Timur Tabi <timur@freescale.com>
18755
18756 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
18757 Author: Wolfgang Denk <wd@denx.de>
18758 Date:   Tue Sep 9 10:08:02 2008 +0200
18759
18760     lib_ppc/interrupts.c: make board_show_activity() a weak function
18761
18762     This allows to use show_activity() without having to
18763     define an empty board_show_activity() function.
18764
18765     Signed-off-by: Wolfgang Denk <wd@denx.de>
18766
18767 commit fe876787f8743883ce58fed61525eaa2f34da4c5
18768 Author: Wolfgang Denk <wd@denx.de>
18769 Date:   Tue Sep 9 10:06:44 2008 +0200
18770
18771     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
18772
18773     Signed-off-by: Wolfgang Denk <wd@denx.de>
18774
18775 commit 965de106ba8900372c8b16dc60d5acab7f925e38
18776 Author: Wolfgang Denk <wd@denx.de>
18777 Date:   Tue Sep 9 10:03:47 2008 +0200
18778
18779     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
18780
18781     Signed-off-by: Wolfgang Denk <wd@denx.de>
18782
18783 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
18784 Author: Sergei Poselenov <sposelenov@emcraft.com>
18785 Date:   Fri Aug 15 15:42:11 2008 +0200
18786
18787     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
18788
18789     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18790
18791 commit 36241ca29d4804a1006fb3f26069effda5202581
18792 Author: Anatolij Gustschin <agust@denx.de>
18793 Date:   Fri Aug 15 15:42:13 2008 +0200
18794
18795     85xx: socrates: Enable Lime support.
18796
18797     This patch adds Lime GDC support together with support for the PWM
18798     backlight control through the w83782d chip.  The reset pin of the
18799     latter is attached to GPIO, so we need to reset it in
18800     early_board_init_r.
18801
18802     Signed-off-by: Anatolij Gustschin <agust@denx.de>
18803
18804 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
18805 Author: Detlev Zundel <dzu@denx.de>
18806 Date:   Fri Aug 15 15:42:12 2008 +0200
18807
18808     85xx: Socrates: Major code update.
18809
18810     - Update the local bus ranges in the FDT for Linux for the various
18811       devices connected to the local bus via chip-select.
18812
18813     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
18814       lower than 66 MHz and uses I/O accessor functions consequently.
18815
18816     - UPM data update.
18817
18818     - Update of default environment and configuration.  Use I2C multibus
18819       as we do have two I2C buses.  Also enable sdram and ext2 commands.
18820
18821     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
18822     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18823     Signed-off-by: Detlev Zundel <dzu@denx.de>
18824
18825 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
18826 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18827 Date:   Tue Sep 9 01:22:39 2008 +0200
18828
18829     disk-on-chip: remove duplicate doc_probe declaration
18830
18831     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18832
18833 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
18834 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18835 Date:   Tue Sep 9 00:59:40 2008 +0200
18836
18837     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
18838
18839     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18840
18841 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
18842 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18843 Date:   Tue Sep 9 00:59:39 2008 +0200
18844
18845     rs5c372: fix rtc_set prototype
18846
18847     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18848
18849 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
18850 Author: Sergei Poselenov <sposelenov@emcraft.com>
18851 Date:   Thu Aug 14 14:08:28 2008 +0200
18852
18853     ARM: fix warning: target CPU does not support interworking
18854
18855     This patch fixes warnings like this:
18856
18857     start.S:0: warning: target CPU does not support interworking
18858
18859     which come from some ARM cross compilers and are caused by hard-coded
18860     (with "--with-cpu=arm9" configuration option) ARM targets (which
18861     support ARM Thumb instructions), while the ARM target selected from
18862     the command line (with "-march=armv4") doesn't support Thumb
18863     instructions.
18864
18865     This warning is issued by the compiler regardless of the real use of
18866     the Thumb instructions in code.
18867
18868     To fix this problem, we use options according to compiler version
18869     being used.
18870
18871     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18872     Signed-off-by: Wolfgang Denk <wd@denx.de>
18873
18874 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
18875 Author: Sergei Poselenov <sposelenov@emcraft.com>
18876 Date:   Thu Aug 14 14:08:28 2008 +0200
18877
18878     ARM: Use do_div() instead of division for "long long".
18879
18880     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18881     Signed-off-by: Wolfgang Denk <wd@denx.de>
18882
18883 commit 8febd13c69cb68652577d1a9fcbde954bf784155
18884 Author: Timur Tabi <timur@freescale.com>
18885 Date:   Fri Jul 18 16:52:23 2008 +0200
18886
18887     Update Freescale 85xx boards to sys_eeprom.c
18888
18889     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
18890     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
18891     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
18892     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
18893
18894     Signed-off-by: Timur Tabi <timur@freescale.com>
18895
18896 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
18897 Author: Wolfgang Denk <wd@denx.de>
18898 Date:   Mon Sep 8 23:26:22 2008 +0200
18899
18900     lib_arm/bootm.c: fix compile warnings
18901
18902     bootm.c:128: warning: label 'error' defined but not used
18903     bootm.c:65: warning: unused variable 'ret'
18904
18905     Signed-off-by: Wolfgang Denk <wd@denx.de>
18906
18907 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
18908 Author: Wolfgang Denk <wd@denx.de>
18909 Date:   Mon Sep 8 22:46:42 2008 +0200
18910
18911     ml507: fix out of tree build problem
18912
18913     Signed-off-by: Wolfgang Denk <wd@denx.de>
18914
18915 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
18916 Author: Wolfgang Denk <wd@denx.de>
18917 Date:   Mon Sep 8 22:10:28 2008 +0200
18918
18919     common/cmd_bootm.c: fix printf() format warnings
18920
18921     Signed-off-by: Wolfgang Denk <wd@denx.de>
18922
18923 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
18924 Author: Wolfgang Denk <wd@denx.de>
18925 Date:   Mon Sep 8 22:37:45 2008 +0200
18926
18927     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
18928
18929     missing doc_probe() prototype.
18930
18931     Signed-off-by: Wolfgang Denk <wd@denx.de>
18932
18933 commit 2c5e3cc4994897d364b148942ff23e47783198f6
18934 Author: Wolfgang Denk <wd@denx.de>
18935 Date:   Mon Sep 8 21:28:14 2008 +0200
18936
18937     mk48t59: fix compile problem introduced by commit d1e23194
18938
18939     Signed-off-by: Wolfgang Denk <wd@denx.de>
18940
18941 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
18942 Author: Stefan Roese <sr@denx.de>
18943 Date:   Mon Sep 8 14:11:12 2008 +0200
18944
18945     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
18946
18947     This patch moves some 4xx specific prototypes out of include common.h
18948     to a ppc4xx specific header.
18949
18950     Signed-off-by: Stefan Roese <sr@denx.de>
18951
18952 commit ac53ee8318678190bf3c68da477a84a657d86fb0
18953 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18954 Date:   Fri Sep 5 15:34:04 2008 +0200
18955
18956     ppc4xx: Update CPCI405(AB) configuration
18957
18958     This patch add FDT support and command line editing capabilities
18959     for CPCI405 and CPCI405AB boards.
18960
18961     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18962     Signed-off-by: Stefan Roese <sr@denx.de>
18963
18964 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
18965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18966 Date:   Fri Sep 5 15:34:03 2008 +0200
18967
18968     ppc4xx: Cleanup CPCI405 linker script
18969
18970     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18971     Signed-off-by: Stefan Roese <sr@denx.de>
18972
18973 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
18974 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18975 Date:   Fri Sep 5 15:34:02 2008 +0200
18976
18977     ppc4xx: Update CPCI405 variants handling
18978
18979     This patch replaces the BOARD_REVISION variable in include/config.mk
18980     by a using a temporary include file in the platform directory.
18981
18982     The former way does not work anymore and the latter is also used by
18983     some other boards.
18984
18985     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18986     Signed-off-by: Stefan Roese <sr@denx.de>
18987
18988 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
18989 Author: Stefan Roese <sr@denx.de>
18990 Date:   Mon Sep 8 10:01:48 2008 +0200
18991
18992     ppc4xx: Remove CONFIG_CS8952_PHY define
18993
18994     Since this define is only used on one board that was never really in
18995     production, removing this compile time option doesn't hurt and makes
18996     the code more readable.
18997
18998     Signed-off-by: Stefan Roese <sr@denx.de>
18999
19000 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
19001 Author: Stefan Roese <sr@denx.de>
19002 Date:   Fri Sep 5 14:11:40 2008 +0200
19003
19004     ppc4xx: Fix compilation warning for PIP405
19005
19006     This patch fixes a compilation warning for the PIP405 board. It moves the
19007     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
19008     occur anymore. I am a little unsure if this #ifdef is at the correct
19009     place now or if it could be removed completely. This needs to get
19010     tested on the PIP405 board.
19011
19012     Signed-off-by: Stefan Roese <sr@denx.de>
19013
19014 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
19015 Author: Stefan Roese <sr@denx.de>
19016 Date:   Fri Sep 5 14:09:09 2008 +0200
19017
19018     ppc4xx: Fix compilation warning for canyonlands & glacier
19019
19020     Signed-off-by: Stefan Roese <sr@denx.de>
19021
19022 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
19023 Author: Kumar Gala <galak@kernel.crashing.org>
19024 Date:   Fri Sep 5 14:40:29 2008 -0500
19025
19026     Fix compiler warning in mpc8xxx ddr code
19027
19028     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
19029     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
19030     ctrl_regs.c:523: note: 'caslat' was declared here
19031
19032     Add a warning in DDR1 case if cas_latency isn't a value we know about.
19033
19034     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19035     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19036
19037 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
19038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19039 Date:   Mon Sep 1 23:06:23 2008 +0200
19040
19041     rtc: allow rtc_set to return an error and use it in cmd_date
19042
19043     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19044
19045 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
19046 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19047 Date:   Mon Sep 1 01:16:33 2008 +0200
19048
19049     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
19050
19051     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19052
19053 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
19054 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19055 Date:   Sun Aug 31 05:37:04 2008 +0900
19056
19057     config.mk: Move arch-specific condition to $(ARCH)_config.mk
19058
19059     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19060
19061 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
19062 Author: Kumar Gala <galak@kernel.crashing.org>
19063 Date:   Fri Aug 29 19:08:29 2008 -0500
19064
19065     Prevent crash if random/invalid ramdisks are passed to bootm
19066
19067     Adds returning an error from the ramdisk detection code if
19068     its not a real ramdisk (invalid).  There is no reason we can't
19069     just return back to the console if we detect an invalid
19070     ramdisk or CRC error.
19071
19072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19073
19074 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
19075 Author: Anatolij Gustschin <agust@denx.de>
19076 Date:   Fri Aug 29 21:04:45 2008 +0200
19077
19078     Prevent crash if random DTB address is passed to bootm
19079
19080     This patch adds bootm_start() return value check. If
19081     error status is returned, we do not proceed further to
19082     prevent board reset or crash as we still can recover
19083     at this point.
19084
19085     Signed-off-by: Anatolij Gustschin <agust@denx.de>
19086
19087 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
19088 Author: Andrew Dyer <adyer@righthandtech.com>
19089 Date:   Fri Aug 29 12:30:39 2008 -0500
19090
19091     clean up some #if !defined() in drivers/video/cfb_console.c
19092
19093     rearrange some #if !defined() / #else / #endif statements to remove
19094     the negative logic.
19095
19096     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
19097
19098 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
19099 Author: Kyungmin Park <kmpark@infradead.org>
19100 Date:   Fri Aug 29 09:02:20 2008 +0900
19101
19102     apollon: use the last memory area for u-boot
19103
19104     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
19105
19106 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
19107 Author: Heiko Schocher <hs@denx.de>
19108 Date:   Thu Aug 28 13:50:42 2008 +0200
19109
19110     TQM8272: move NAND part in seperate File
19111
19112     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
19113     because I have no longer access to the hardware.
19114
19115     Signed-off-by: Heiko Schocher <hs@denx.de>
19116
19117 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
19118 Author: Heiko Schocher <hs@denx.de>
19119 Date:   Thu Aug 28 13:48:36 2008 +0200
19120
19121     TQM8272: Fix compiling error for the TQM8272 board.
19122
19123     Fix compile problems caused by
19124     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
19125
19126     Signed-off-by: Heiko Schocher <hs@denx.de>
19127
19128 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
19129 Author: Kyungmin Park <kmpark@infradead.org>
19130 Date:   Wed Aug 27 14:45:20 2008 +0900
19131
19132     Add JFFS2 command support on OneNAND
19133
19134     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
19135
19136 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
19137 Author: Mark Jackson <mpfj@mimc.co.uk>
19138 Date:   Mon Aug 25 19:21:30 2008 +0100
19139
19140     Allow console input to be disabled
19141
19142     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
19143
19144     When CONFIG_DISABLE_CONSOLE is defined, setting
19145     GD_FLG_DISABLE_CONSOLE disables all console input and output.
19146
19147     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
19148
19149 commit 2b22d608f370565c87f55928b524207031419c11
19150 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
19151 Date:   Wed Jul 30 12:39:29 2008 +0200
19152
19153     loads: allow negative offsets
19154
19155     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
19156
19157 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
19158 Author: Yuri Tikhonov <yur@emcraft.com>
19159 Date:   Thu Sep 4 11:19:05 2008 +0200
19160
19161     USB EHCI: reset root hub
19162
19163     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
19164     resetting only via EHCI registers. So, this patch adds the
19165     corresponding kind of reset to OHCI's hc_reset() if the newly
19166     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
19167     board).
19168
19169     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19170     Acked-by: Markus Klotzbuecher <mk@denx.de>
19171
19172 commit 5875d358f025c1b042d8a0f08384b756de7256c9
19173 Author: Yuri Tikhonov <yur@emcraft.com>
19174 Date:   Fri Aug 15 15:42:09 2008 +0200
19175
19176     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
19177
19178     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19179
19180 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
19181 Author: Stefan Roese <sr@denx.de>
19182 Date:   Fri Sep 5 10:47:46 2008 +0200
19183
19184     devices: Use list_add_tail() instead of list_add() to register a device
19185
19186     This patch fixes a problem spotted on Glacier/Canyonlands (and most
19187     likely lots of other board ports), that no serial output was seen
19188     after console initialization in console_init_r(). This is because the
19189     last added console device was used instead of the first added.
19190
19191     This patch fixes this problem by using list_add_tail() instead of
19192     list_add() to register a device. This way the first added console
19193     is used again.
19194
19195     Signed-off-by: Stefan Roese <sr@denx.de>
19196
19197 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
19198 Author: Victor Gallardo <vgallardo@amcc.com>
19199 Date:   Thu Sep 4 23:49:36 2008 -0700
19200
19201     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
19202
19203     This patch adds GPCS, SGMII and M88E1112 PHY support
19204     for the AMCC PPC460GT/EX processors.
19205
19206     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
19207     Signed-off-by: Stefan Roese <sr@denx.de>
19208
19209 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
19210 Author: Adam Graham <agraham@amcc.com>
19211 Date:   Wed Sep 3 12:26:59 2008 -0700
19212
19213     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
19214
19215     Signed-off-by: Adam Graham <agraham@amcc.com>
19216     Signed-off-by: Stefan Roese <sr@denx.de>
19217
19218 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
19219 Author: Adam Graham <agraham@amcc.com>
19220 Date:   Wed Sep 3 12:26:28 2008 -0700
19221
19222     ppc4xx: IBM Memory Controller DDR autocalibration routines
19223
19224     Alternate SDRAM DDR autocalibration routine that can be generically used
19225     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
19226     support of more DIMM/memory chip vendors and gets the DDR autocalibration
19227     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
19228
19229     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
19230     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
19231     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
19232     lot longer to run than Method_B.  Method_B executes in the same amount of time
19233     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
19234     Normally Method_B is used and it is set as the default method.
19235
19236     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
19237     Controller registers.[bit-field]:
19238     1)  SDRAM0_RQDC.[RQFD]
19239     2)  SDRAM0_RFDC.[RFFD]
19240
19241     This alternate PPC4xx DDR autocalibration code calibrates the following
19242     IBM SDRAM Controller registers.[bit-field]:
19243
19244     1)  SDRAM0_WRDTR.[WDTR]
19245     2)  SDRAM0_CLKTR.[CKTR]
19246     3)  SDRAM0_RQDC.[RQFD]
19247     4)  SDRAM0_RFDC.[RFFD]
19248
19249     and will also use the calibrated settings of the above four registers that
19250     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
19251     register.[bit-field].
19252
19253     Signed-off-by: Adam Graham <agraham@amcc.com>
19254     Signed-off-by: Stefan Roese <sr@denx.de>
19255
19256 commit e07f4a8033b6270b8103049adb6456f660ff4a89
19257 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
19258 Date:   Mon Sep 1 13:09:39 2008 -0400
19259
19260     ppc44x: Unification of virtex5 pp440 boards
19261
19262     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
19263
19264     It unificates 3 different things:
19265
19266     1) Source code
19267     A new board called ppc440-generic has been created. This board includes
19268     a generic tlb initialization (Maps the whole memory into virtual) and
19269     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
19270     so, they can be replaced by specific functions.
19271
19272     If a new board needs to redefine any of the previous functions
19273     (specific initialization) it can create a new directory with the
19274     specific initializations needed. (see the example ml507 board).
19275
19276     2) Configuration file
19277     Common configurations are located under configs/xilinx-ppc440.h, this
19278     header file interpretes the xparameters file generated by EDK and
19279     configurates u-boot in correspondence. Example: if there is a Temac,
19280     allows CMD_CONFIG_NET
19281     Specific configuration are located under specific configuration file.
19282     (see the example ml507 board)
19283
19284     3) Makefile
19285     Some work has been done in order to not duplicate work in the Main
19286     Makefile. Please see the attached code.
19287
19288     In order to support new boards they can be implemented in the next way:
19289
19290     a) Simple Generic Board  (90% of the time)
19291     Using EDK generates a new xparameters.h file, replace
19292     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
19293     && make
19294
19295     b) Simple Boards with special u-boot parameters (9 % of the time)
19296     Create a new file under configs for it (use ml507.h as example) and
19297     change your paramaters. Create a new Makefile paragraph and compile
19298
19299     c) Complex boards (1% of the time)
19300     Create a new folder for the board, like the ml507
19301
19302     Finally, it adds support for the Avnet FX30T Evaluation board, following
19303     the new generic structure:
19304
19305     Cheap board by Avnet for evaluating the Virtex5 FX technology.
19306
19307     This patch adds support for:
19308      - UartLite
19309      - 16MB Flash
19310      - 64MB RAM
19311
19312     Prior using U-boot in this board, read carefully the ERRATA by Avnet
19313     to solve some memory initialization issues.
19314
19315     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
19316     Signed-off-by: Stefan Roese <sr@denx.de>
19317
19318 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
19319 Author: Nick Spence <nick.spence@freescale.com>
19320 Date:   Tue Sep 2 15:21:16 2008 -0500
19321
19322     mpc83xx: fix mpc8313 in-tree building with NAND
19323
19324     and add mpc8313 NAND build to MAKEALL
19325
19326     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19327     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19328
19329 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
19330 Author: Nick Spence <nick.spence@freescale.com>
19331 Date:   Thu Aug 28 14:09:25 2008 -0700
19332
19333     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
19334
19335     Cleans up some latent issues with the data cache control so that
19336     dcache_enable() and dcache_disable() will work reliably (after
19337     unlock_ram_in_cache() has been called)
19338
19339     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19340     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19341
19342 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
19343 Author: Nick Spence <nick.spence@freescale.com>
19344 Date:   Thu Aug 28 14:09:19 2008 -0700
19345
19346     mpc83xx: Store and display Arbiter Event Register values
19347
19348     Record the Arbiter Event Register values and optionally display them.
19349
19350     The Arbiter Event Register can record the type and effective address of
19351     an arbiter error, even through an HRESET. This patch stores the values in
19352     the global data structure.
19353
19354     Display of the Arbiter Event registers immediately after the RSR value
19355     can be enabled with defines. The Arbiter values will only be displayed
19356     if an arbiter event has occured since the last Power On Reset, and either
19357     of the following defines exist:
19358      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
19359                                         and type register values
19360      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
19361                                         event register values
19362
19363     Address Only transactions are one of the trapped events that can register
19364     as an arbiter event. They occur with some cache manipulation instructions
19365     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
19366     has the MEMORY_COHERENCE WIMG bit set. Setting:
19367      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
19368                                   only events, so that it can still capture
19369                                   other real problems.
19370
19371     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19372     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19373
19374 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
19375 Author: Nick Spence <nick.spence@freescale.com>
19376 Date:   Thu Aug 28 14:09:11 2008 -0700
19377
19378     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
19379
19380     This is needed in unlock_ram_in_cache() because it is called from C and
19381     will corrupt the small data area anchor that is kept in R2.
19382
19383     lock_ram_in_cache() is modified similarly as good coding practice, but
19384     is not called from C.
19385
19386     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19387     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19388
19389 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
19390 Author: Nick Spence <nick.spence@freescale.com>
19391 Date:   Fri Aug 22 23:52:50 2008 -0700
19392
19393     MPC83XX: Fix GPIO configuration - set gpio level before direction
19394
19395     Set DAT value before DIR values to avoid creating glitches on the
19396     GPIO signals.
19397
19398     Set gpio level register before direction register to inhibit
19399     glitches on high level output pins.
19400
19401     Dir and data gets cleared at powerup, so high level output lines see
19402     a short low pulse between setting the direction and level registers.
19403
19404     Issue was seen on a new board with the nReset line of the NOR flash
19405     connected to a GPIO. Setting the direction register puts the NOR flash
19406     in reset so the next instruction to set the level cannot get executed.
19407
19408     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19409     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
19410     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19411
19412 commit 7007c5975ee900ad70983b0681d3251e221f8321
19413 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19414 Date:   Tue Sep 2 02:58:32 2008 +0200
19415
19416     doc/qemu_mips: add doc howto debug u-boot with gdb
19417
19418     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19419
19420 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
19421 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19422 Date:   Wed Sep 3 17:15:45 2008 +0200
19423
19424     ppx4xx: Fix broken DASA_SIM board
19425
19426     This patch adds initdram() to DASA_SIM boards that has been
19427     removed accidentally by a previous commit.
19428
19429     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19430     Signed-off-by: Stefan Roese <sr@denx.de>
19431
19432 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
19433 Author: Stefan Roese <sr@denx.de>
19434 Date:   Mon Sep 1 08:35:37 2008 +0200
19435
19436     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
19437
19438     This patch removes some direct references to common/lists.o from some
19439     esd linker scripts. This is necessary because the lists source was moved
19440     and is not in the "common" directory anymore.
19441
19442     Signed-off-by: Stefan Roese <sr@denx.de>
19443
19444 commit 97b0734d65f8a0b03df0a335a2addc759da56107
19445 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19446 Date:   Tue Sep 2 16:33:05 2008 +0200
19447
19448     ppc4xx: Remove obsolete or unused functions from some esd boards
19449
19450     This patch removes initdram() and testdram() from most esd 405 platforms.
19451     Some boards also have an empty dummy implementation of
19452     misc_init_f(). This is also removed.
19453
19454     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19455     Signed-off-by: Stefan Roese <sr@denx.de>
19456
19457 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
19458 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19459 Date:   Tue Sep 2 15:07:54 2008 +0200
19460
19461     ppc4xx: Update VOM405 board configuration
19462
19463     - remove PCI code
19464     - add command line editing
19465     - minor cleanup
19466
19467     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19468     Signed-off-by: Stefan Roese <sr@denx.de>
19469
19470 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
19471 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19472 Date:   Tue Sep 2 15:07:53 2008 +0200
19473
19474     ppc4xx: Remove obsolete initdram() function from VOM405 board
19475
19476     This patch removed the obsolete initdram() function from
19477     VOM405 platform file.
19478
19479     Some minor cleanup.
19480
19481     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19482     Signed-off-by: Stefan Roese <sr@denx.de>
19483
19484 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
19485 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19486 Date:   Tue Sep 2 15:07:52 2008 +0200
19487
19488     ppc4xx: Cleanup VOM405 linker script
19489
19490     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19491     Signed-off-by: Stefan Roese <sr@denx.de>
19492
19493 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
19494 Author: Matthias Fuchs <mf@esd.eu>
19495 Date:   Tue Sep 2 15:07:51 2008 +0200
19496
19497     ppc4xx: Add fdt support for VOM405 boards
19498
19499     Signed-off-by: Matthias Fuchs <mf@esd.eu>
19500     Signed-off-by: Stefan Roese <sr@denx.de>
19501
19502 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
19503 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19504 Date:   Tue Sep 2 11:36:14 2008 +0200
19505
19506     ppc4xx: Coding style cleanup
19507
19508     Wrap long lines etc.
19509
19510     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19511     Signed-off-by: Stefan Roese <sr@denx.de>
19512
19513 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
19514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19515 Date:   Tue Sep 2 11:35:56 2008 +0200
19516
19517     ppc4xx: Enable USB on PLU405 boards
19518
19519     This patch enables the PCI-OHCI controller on PLU405 board.
19520
19521     Also the default CPU frequency is updated to 266 MHz and
19522     command line editing is enabled.
19523
19524     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19525     Signed-off-by: Stefan Roese <sr@denx.de>
19526
19527 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
19528 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19529 Date:   Tue Sep 2 11:35:35 2008 +0200
19530
19531     ppc4xx: Cleanup PLU405 platform file
19532
19533     This patch
19534     - wraps some long lines
19535     - removes unused/obsolete functions: misc_init_f() and initdram()
19536
19537     Signed-off-by: Matthias Fuchs <mf@esd.eu>
19538     Signed-off-by: Stefan Roese <sr@denx.de>
19539
19540 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
19541 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19542 Date:   Tue Sep 2 11:35:04 2008 +0200
19543
19544     ppc4xx: Cleanup PLU405 linker script
19545
19546     Signed-off-by: Matthias Fuchs <mf@esd.eu>
19547     Signed-off-by: Stefan Roese <sr@denx.de>
19548
19549 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
19550 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19551 Date:   Tue Sep 2 11:34:36 2008 +0200
19552
19553     ppc4xx: Add fdt support for PLU405 boards
19554
19555     Signed-off-by: Matthias Fuchs <mf@esd.eu>
19556     Signed-off-by: Stefan Roese <sr@denx.de>
19557
19558 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
19559 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19560 Date:   Tue Sep 2 11:34:08 2008 +0200
19561
19562     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
19563
19564     Signed-off-by: Matthias Fuchs <mf@esd.eu>
19565     Signed-off-by: Stefan Roese <sr@denx.de>
19566
19567 commit be1b0d2777e179191a57b138b660547a17e55aad
19568 Author: Jochen Friedrich <jochen@scram.de>
19569 Date:   Tue Sep 2 11:24:59 2008 +0200
19570
19571     Don't tftp to unknown flash
19572
19573     If a board has a variable number of flash banks, there are empty entries
19574     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
19575     "Outside available Flash". This patch skips flash banks with unknown
19576     flash ids.
19577
19578     Signed-off-by: Jochen Friedrich <jochen@scram.de>
19579     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19580
19581 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
19582 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19583 Date:   Thu Aug 28 13:40:44 2008 +0900
19584
19585     net: smc911x: Add pkt_data_pull and pkt_data_push function
19586
19587     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
19588     Byte-swapping is necessary, and so poor performance is inevitable.
19589     This problem cannot evade by the swap function of CHIP, this can
19590     evade by software Byte-swapping.
19591     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
19592     functions necessary to solve this problem.
19593
19594     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19595     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19596
19597 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
19598 Author: Ben Warren <biggerbadderben@gmail.com>
19599 Date:   Sun Aug 31 20:37:00 2008 -0700
19600
19601     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
19602
19603     Affected boards:
19604         db64360
19605         db64460
19606         katmai
19607         taihu
19608         taishan
19609         yucca
19610         cpc45
19611         cpu87
19612         eXalion
19613         elppc
19614         debris
19615         kvme080
19616         mpc8315erdb
19617         integratorap
19618         ixdp425
19619         oxc
19620         pm826
19621         pm828
19622         pm854
19623         pm856
19624         ppmc7xx
19625         sc3
19626         sc520_spunk
19627         sorcery
19628         tqm8272
19629         tqm85xx
19630         utx8245
19631
19632     Removed initialization of the driver from net/eth.c
19633     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
19634
19635     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19636
19637 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
19638 Author: Ben Warren <biggerbadderben@gmail.com>
19639 Date:   Sun Aug 31 10:45:44 2008 -0700
19640
19641     Moved initialization of TULIP Ethernet controller to board_eth_init()
19642
19643     Affected boards:
19644         cu824
19645         bab7xx
19646         adciop
19647         dasa_sim
19648         mousse
19649         mpc8540eval
19650         musenki
19651         mvblue
19652         pcippc2/pcippc6
19653         sbc8240
19654         stxssa
19655
19656     Removed initialization of the driver from net/eth.c
19657
19658     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19659
19660 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
19661 Author: Ben Warren <biggerbadderben@gmail.com>
19662 Date:   Sun Aug 31 10:44:19 2008 -0700
19663
19664     Moved initialization of E1000 Ethernet controller to board_eth_init()
19665
19666     Affected boards:
19667         ap1000
19668         mvbc_p
19669         PM854
19670
19671     Removed initialization of the driver from net/eth.c
19672
19673     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19674
19675 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
19676 Author: Ben Warren <biggerbadderben@gmail.com>
19677 Date:   Sun Aug 31 10:40:51 2008 -0700
19678
19679     Moved initialization of plb2800 Ethernet driver to board_eth_init
19680
19681     Affected boards:
19682         purple
19683
19684     Removed initialization of controller from net/eth.c
19685
19686     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19687
19688 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
19689 Author: Ben Warren <biggerbadderben@gmail.com>
19690 Date:   Sun Aug 31 10:39:12 2008 -0700
19691
19692     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
19693
19694     Modified board_eth_init() functions of boards that have this FEC in addition
19695     to other Ethernet controllers.
19696
19697     Affected boards:
19698         bc3450
19699         icecube
19700         mvbc_p
19701         o2dnt
19702         pm520
19703         total5200
19704         tq5200
19705
19706     Removed initialization of controller from net/eth.c
19707
19708     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19709
19710 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
19711 Author: Ben Warren <biggerbadderben@gmail.com>
19712 Date:   Sun Aug 31 10:36:38 2008 -0700
19713
19714     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
19715
19716     Added a cpu_eth_init() function to MPC512x CPU directory and
19717     removed code from net/eth.c
19718
19719     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19720
19721 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
19722 Author: Ben Warren <biggerbadderben@gmail.com>
19723 Date:   Sun Aug 31 10:16:59 2008 -0700
19724
19725     Moved initialization of IncaIP Ethernet controller to board_eth_init
19726
19727     Affected boards:
19728         IncaIP
19729
19730     Removed initialization of the driver from net/eth.c
19731
19732     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19733
19734 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
19735 Author: Ben Warren <biggerbadderben@gmail.com>
19736 Date:   Sun Aug 31 10:15:26 2008 -0700
19737
19738     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
19739
19740         Affected boards:
19741             AmigaOneG3SE
19742
19743         Removed initialization of the driver from net/eth.c
19744
19745     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19746
19747 commit 6aca145e067efe75398e9fac97822bd3700de0b2
19748 Author: Ben Warren <biggerbadderben@gmail.com>
19749 Date:   Sun Aug 31 10:13:34 2008 -0700
19750
19751     Moved initialization of GT6426x Ethernet controller to board_eth_init()
19752
19753     Affected boards:
19754         EVB64260
19755         P3G4
19756         ZUMA
19757
19758     Removed initialization of the driver from net/eth.c
19759
19760     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19761
19762 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
19763 Author: Ben Warren <biggerbadderben@gmail.com>
19764 Date:   Sun Aug 31 10:08:43 2008 -0700
19765
19766     Moved initialization of PCNET Ethernet controller to board_eth_init()
19767
19768     Affected boards:
19769         PN62
19770         sc520_cdp
19771
19772     Removed initialization of the driver from net/eth.c
19773
19774     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19775
19776 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
19777 Author: Ben Warren <biggerbadderben@gmail.com>
19778 Date:   Sun Aug 31 10:07:16 2008 -0700
19779
19780     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
19781
19782     Affected boards:
19783         a3000
19784
19785     Removed initialization of the driver from net/eth.c
19786
19787     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19788
19789 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
19790 Author: Ben Warren <biggerbadderben@gmail.com>
19791 Date:   Sun Aug 31 10:03:22 2008 -0700
19792
19793     Moved initialization of NS8382X Ethernet controller to board_eth_init()
19794
19795     Affected boards:
19796         bc3450
19797         cpci5200
19798         mecp5200
19799         pf2000
19800         icecube
19801         o2dnt
19802         pm520
19803         sandpoint8245
19804         total5200
19805         tqm5200
19806
19807     Removed initialization of the driver from net/eth.c
19808
19809     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19810
19811 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
19812 Author: Ben Warren <biggerbadderben@gmail.com>
19813 Date:   Sun Aug 31 09:59:33 2008 -0700
19814
19815     Moved initialization of TSI108 Ethernet controller to board_eth_init()
19816
19817     Affected boards:
19818         mpc7448hpc2
19819
19820     Removed initialization of the driver from net/eth.c
19821
19822     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19823
19824 commit 0b252f50ae218ae15bfb63af44227972686ebc56
19825 Author: Ben Warren <biggerbadderben@gmail.com>
19826 Date:   Sun Aug 31 21:41:08 2008 -0700
19827
19828     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
19829
19830     Affected boards:
19831         hidden_dragon
19832         MPC8544DS
19833         MPC8610HPCN
19834         R2DPLUS
19835         TB0229
19836
19837     Removed initialization of the driver from net/eth.c
19838
19839     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19840
19841 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
19842 Author: Ben Warren <biggerbadderben@gmail.com>
19843 Date:   Sun Aug 31 09:49:42 2008 -0700
19844
19845     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
19846
19847     Affected boards:
19848         linkstation
19849         r7780mp
19850
19851     Removed initialization of the driver from net/eth.c
19852
19853     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19854
19855 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
19856 Author: Ben Warren <biggerbadderben@gmail.com>
19857 Date:   Tue Aug 12 22:11:53 2008 -0700
19858
19859     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
19860
19861     Removed at91sam9_eth_initialize() from net/eth.c
19862
19863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19864
19865 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
19866 Author: Ben Warren <biggerbadderben@gmail.com>
19867 Date:   Sun Aug 31 22:22:04 2008 -0700
19868
19869     Introduce netdev.h header file and remove externs
19870
19871     This addresses all drivers whose initializers have already
19872     been moved to board_eth_init()/cpu_eth_init().
19873
19874     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19875
19876 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
19877 Author: Andy Fleming <afleming@freescale.com>
19878 Date:   Sun Aug 31 16:33:30 2008 -0500
19879
19880     Add pixis_set_sgmii command
19881
19882     The 8544DS and 8572DS platforms support an optional SGMII riser card to
19883     expose ethernet over an SGMII interface.  Once the card is in, it is also
19884     necessary to configure the board such that it uses the card, rather than
19885     the on-board ethernet ports.  This can either be done by flipping dip switches
19886     on the motherboard, or by modifying registers in the pixis.  Either way
19887     requires a reboot.
19888
19889     This adds a command to allow users to choose which ports are routed through
19890     the SGMII card, and which through the onboard ports.  It also allows users
19891     to revert to the current switch settings.
19892
19893     This code does not work on the 8572, as the PIXIS is different.
19894
19895     Signed-off-by: Andy Fleming <afleming@freescale.com>
19896     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19897
19898 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
19899 Author: Andy Fleming <afleming@freescale.com>
19900 Date:   Sun Aug 31 16:33:29 2008 -0500
19901
19902     Add SGMII support for the 8544 DS
19903
19904     The 8544 DS has an optional SGMII Riser card, which uses different PHY
19905     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
19906     setup code if so.
19907
19908     Signed-off-by: Andy Fleming <afleming@freescale.com>
19909     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19910
19911 commit 652f7c2eef76a1340928bd660845441e932d86a2
19912 Author: Andy Fleming <afleming@freescale.com>
19913 Date:   Sun Aug 31 16:33:28 2008 -0500
19914
19915     Add support for Freescale SGMII Riser Card
19916
19917     The 8544DS and 8572DS systems have an optional SGMII riser card which
19918     exposes new ethernet ports which are connected to the eTSECs via an
19919     SGMII interface.  The SGMII PHYs for this board are offset from the standard
19920     PHY addresses, so this code modifies the passed in tsec_info structure to
19921     use the SGMII PHYs on the card, instead.
19922
19923     Signed-off-by: Andy Fleming <afleming@freescale.com>
19924     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19925
19926 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
19927 Author: Andy Fleming <afleming@freescale.com>
19928 Date:   Sun Aug 31 16:33:27 2008 -0500
19929
19930     Add SGMII support to the tsec
19931
19932     Adds support for configuring the TBI to talk properly with the SerDes.
19933
19934     Signed-off-by: Andy Fleming <afleming@freescale.com>
19935     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19936
19937 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
19938 Author: Andy Fleming <afleming@freescale.com>
19939 Date:   Sun Aug 31 16:33:26 2008 -0500
19940
19941     Pass in tsec_info struct through tsec_initialize
19942
19943     The tsec driver contains a hard-coded array of configuration information
19944     for the tsec ethernet controllers.  We create a default function that works
19945     for most tsecs, and allow that to be overridden by board code.  It creates
19946     an array of tsec_info structures, which are then parsed by the corresponding
19947     driver instance to determine configuration.  Also, add regs, miiregs, and
19948     devname fields to the tsec_info structure, so that we don't need the kludgy
19949     "index" parameter.
19950
19951     Signed-off-by: Andy Fleming <afleming@freescale.com>
19952     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19953
19954 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
19955 Author: Andy Fleming <afleming@freescale.com>
19956 Date:   Sun Aug 31 16:33:25 2008 -0500
19957
19958     tsec: Move tsec.h to include/
19959
19960     This is to prepare the way for board code passing in the tsec_info structure
19961
19962     Signed-off-by: Andy Fleming <afleming@freescale.com>
19963     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19964
19965 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
19966 Author: Sergei Poselenov <sposelenov@emcraft.com>
19967 Date:   Fri Jun 6 15:52:44 2008 +0200
19968
19969     PHY: Add support for the M88E1121R Marvell chip.
19970
19971     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19972     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19973     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19974
19975 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
19976 Author: Wolfgang Denk <wd@denx.de>
19977 Date:   Tue Sep 2 21:17:36 2008 +0200
19978
19979     fw_env.c: fix build problems with MTD_VERSION=old
19980
19981     (as needed to support old 2.4 Linux kernel based releases)
19982
19983     Signed-off-by: Wolfgang Denk <wd@denx.de>
19984
19985 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
19986 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19987 Date:   Mon Sep 1 17:11:26 2008 +0200
19988
19989     device: make device_register() clone the device
19990
19991     This is expected by the callers, but this fact was hidden well within
19992     the old list implementation.
19993
19994     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19995
19996 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
19997 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19998 Date:   Mon Sep 1 14:00:07 2008 +0200
19999
20000     avr32: Add support for "GPIO" port mux
20001
20002     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
20003     all later AVR32 chips. This patch adds a driver for it, implementing the
20004     same API as the existing portmux-pio driver but with more functionality.
20005
20006     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20007
20008 commit d92852579546c46bdaac978e0b6767a6645b69e0
20009 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20010 Date:   Fri Aug 15 15:02:29 2008 +0200
20011
20012     atstk1000: Convert to new-style makefile
20013
20014     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20015
20016 commit 25e6854d42c11046a468576179b5494f850311b2
20017 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20018 Date:   Sun Aug 31 18:46:35 2008 +0200
20019
20020     avr32: use board_early_init_r instead of board_init_info
20021
20022     Replace the avr32-specific board_init_info hook by the standard
20023     board_early_init_r hook and make it optional.
20024
20025     board_early_init_r() runs somewhat earlier than board_init_info used to
20026     do, but this isn't a problem for any of the in-tree boards.
20027
20028     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20029
20030 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
20031 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20032 Date:   Sun Aug 31 18:24:24 2008 +0200
20033
20034     avr32: Use board_postclk_init instead of gclk_init
20035
20036     Replace the avr32-specific gclk_init() board hook with the standard
20037     board_postclk_init() hook which is supposed to run at the same point
20038     during initialization.
20039
20040     Provide a dummy weak alias for boards not implementing this hook. The
20041     cost of this is:
20042       - 2 bytes for the dummy function (retal 0)
20043       - 2 bytes for each unnecessary function call (short rcall)
20044
20045     which is a pretty small price to pay for avoiding lots of #ifdef
20046     clutter. In this particular case, all boards probably end up slightly
20047     smaller because we avoid the conditional checking if the gclk_init
20048     symbol is NULL.
20049
20050     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20051
20052 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
20053 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20054 Date:   Sun Aug 31 18:07:35 2008 +0200
20055
20056     hammerhead: Use gclk helper functions
20057
20058     Use the new gclk helper functions to set up the PHY clock instead of
20059     accessing the PM registers directly.
20060
20061     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20062
20063 commit 98090cd75cdb40b2ab94c806c338540a5716748b
20064 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20065 Date:   Sun Aug 31 18:05:32 2008 +0200
20066
20067     avr32: Add gclk helper functions
20068
20069     Add two helper functions for configuring and enabling generic clocks:
20070       - gclk_enable_output: Enables output on a GCLKx pin
20071       - gclk_set_rate: Configures a gclk to run at a specific rate
20072
20073     This should eliminate any reason to go mucking about with PM registers
20074     from board code.
20075
20076     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20077
20078 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
20079 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20080 Date:   Fri Aug 29 21:09:49 2008 +0200
20081
20082     avr32: refactor the portmux/gpio code
20083
20084       - Separate the portmux configuration functionality from the GPIO pin
20085         control API.
20086       - Separate the controller-specific code from the chip-specific code.
20087       - Allow "ganged" port configuration (multiple pins at once).
20088       - Add more flexibility to the "canned" peripheral select functions:
20089           - Allow using more than 23 address bits, more chip selects, as
20090         well as NAND- and CF-specific pins.
20091           - Make the MACB SPEED pin optional, and choose between MII/RMII
20092         using a parameter instead of an #ifdef.
20093           - Make it possible to use other MMC slots than slot 0, and support
20094         different MMC/SDCard data bus widths.
20095       - Use more reasonable pull-up defaults; floating pins may consume a
20096         lot of power.
20097       - Get rid of some custom portmux code from the mimc200 board code. The
20098         old gpio/portmux API couldn't really handle its requirements, but
20099         the new one can.
20100       - Add documentation.
20101
20102     The end result is slightly smaller code for all boards. Which isn't
20103     really the point, but at least it isn't any larger.
20104
20105     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
20106     the board maintainers could help me test this on their boards. In
20107     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
20108     can help me out.
20109
20110     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20111     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
20112     Cc: Mark Jackson <mpfj@mimc.co.uk>
20113     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
20114     Cc: Julien May <julien.may@miromico.ch>
20115
20116     Changes since v1:
20117       * Enable pullup on NWAIT
20118       * Add missing include to portmux-pio.h
20119       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
20120
20121 commit 4c24e8288c601cb773ab02528b48a8577970e867
20122 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20123 Date:   Sat Aug 30 17:28:36 2008 +0200
20124
20125     avr32: data_bits should reflect the actual number of data bits
20126
20127     Make the data_bits enum in struct sdram_config reflect the actual number
20128     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
20129     32 bits is just too confusing.
20130
20131     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20132
20133 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
20134 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20135 Date:   Fri Aug 29 17:48:18 2008 +0200
20136
20137     avr32: Update README
20138
20139     Remove some outdated and/or unnecessary information, and add updated
20140     information about the toolchain and buildroot.
20141
20142     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20143
20144 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
20145 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20146 Date:   Sun Aug 31 23:28:15 2008 +0900
20147
20148     sh: Remove CC line from board's Makefile
20149
20150     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20151
20152 commit 468eae0660de6fdfd9999944c536ecc4797bd944
20153 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20154 Date:   Sun Aug 31 23:25:57 2008 +0900
20155
20156     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
20157
20158     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20159
20160 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
20161 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20162 Date:   Thu Aug 28 14:50:52 2008 +0900
20163
20164     sh: Add support sh2 to MAKEALL
20165
20166     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20167     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20168
20169 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
20170 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20171 Date:   Thu Aug 28 14:52:23 2008 +0900
20172
20173     sh: Fix compile error rsk7203 board
20174
20175     This boards used old type preprocessor.
20176     This patch fix compile error.
20177
20178     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20179     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20180
20181 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
20182 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20183 Date:   Thu Aug 28 14:53:31 2008 +0900
20184
20185     sh: Fix compile error sh7785lcr board
20186
20187     This boards used old type preprocessor.
20188     This patch fix compile error.
20189
20190     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20191     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20192
20193 commit 6f0da4972e48f99d37bc522814940a6022cd3084
20194 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20195 Date:   Fri Aug 22 17:39:09 2008 +0900
20196
20197     sh: Renesas Solutions AP325RXA board support
20198
20199     AP325RXA is SH7723's reference board.
20200     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
20201     In this patch, support SCIF, NOR Flash, and Ethernet.
20202
20203     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20204     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20205
20206 commit ab09f433b50bb83b5e440c335bc3839ee069e534
20207 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20208 Date:   Fri Aug 22 17:48:51 2008 +0900
20209
20210     sh: add support Renesas SH7723
20211
20212     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
20213     This patch supports CPU register's header file and SCIF serial driver.
20214
20215     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20216     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20217
20218 commit c655fad06ba3fb042dbc667724a40e1a9a091248
20219 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20220 Date:   Sun Aug 31 23:02:04 2008 +0900
20221
20222     sh: Renesas RSK+ 7203 board support
20223
20224     This adds initial support for the RTE RSK+ SH7203 board.
20225
20226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20227     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20228
20229 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
20230 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20231 Date:   Thu Jul 3 23:11:02 2008 +0900
20232
20233     sh: Add support Renesas SH7203 processor
20234
20235     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20236     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20237
20238 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
20239 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20240 Date:   Sun Aug 31 22:48:33 2008 +0900
20241
20242     sh: Add support SH2/SH2A which is CPU of Renesas Technology
20243
20244     Add support SH2/SH2A basic function.
20245
20246     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20247     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20248
20249 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
20250 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20251 Date:   Sun Aug 31 22:45:08 2008 +0900
20252
20253     sh: Renesas R0P7785LC0011RL board support
20254
20255     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
20256     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
20257
20258     This patch supports the following functions:
20259      - 128MB DDR2-SDRAM (29-bit address mode only)
20260      - NOR Flash
20261      - USB host
20262      - Ethernet
20263
20264     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
20265     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20266
20267 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
20268 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
20269 Date:   Thu Jul 10 19:32:53 2008 +0900
20270
20271     sh: add support for SH7785
20272
20273     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
20274     This patch supports CPU register's header file.
20275
20276     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
20277     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20278
20279 commit d6e04258be8f2408845468d3cf722a4cf0433445
20280 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20281 Date:   Sun Aug 31 04:45:42 2008 +0200
20282
20283     davinci: fix remaining dm644x_eth
20284
20285     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20286
20287 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
20288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20289 Date:   Sun Aug 31 04:24:56 2008 +0200
20290
20291     fs: Move conditional compilation to Makefile
20292
20293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20294
20295 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
20296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20297 Date:   Sun Aug 31 04:24:55 2008 +0200
20298
20299     devices: merge to list_head
20300
20301     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20302
20303 commit ef0255fc75f28655f9681422079287d68a14dbaa
20304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20305 Date:   Sun Aug 31 04:24:51 2008 +0200
20306
20307     update linux/list
20308
20309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20310
20311 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
20312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20313 Date:   Sun Aug 31 00:39:48 2008 +0200
20314
20315     smdk6400: add gitignore
20316
20317     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20318
20319 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
20320 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20321 Date:   Sun Aug 31 00:39:48 2008 +0200
20322
20323     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
20324
20325     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20326
20327 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
20328 Author: Guennadi Liakhovetski <lg@denx.de>
20329 Date:   Sun Aug 31 00:39:47 2008 +0200
20330
20331     smdk6400: remove redundant bootargs definition
20332
20333     Double bootargs setting leads to a duplicated environmant entry.
20334
20335     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20336
20337 commit 11edcfe260f20dcea79284a3e95270989d433854
20338 Author: Guennadi Liakhovetski <lg@denx.de>
20339 Date:   Sun Aug 31 00:39:47 2008 +0200
20340
20341     ARM: Add support for S3C6400 based SMDK6400 board
20342
20343     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
20344     driver for it too. The board can also boot from the NOR flash, but due to
20345     hardware limitations it can only address 64KiB on it, which is not enough
20346     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
20347
20348     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20349
20350 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
20351 Author: Guennadi Liakhovetski <lg@denx.de>
20352 Date:   Sun Aug 31 00:39:47 2008 +0200
20353
20354     NAND: add NAND driver for S3C64XX
20355
20356     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
20357
20358     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20359
20360 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
20361 Author: Guennadi Liakhovetski <lg@denx.de>
20362 Date:   Sun Aug 31 00:39:47 2008 +0200
20363
20364     S3C64XX: remove broken HWFLOW support from the serial driver
20365
20366     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
20367     broken and currently unused. Remove it.
20368
20369     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20370
20371 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
20372 Author: Guennadi Liakhovetski <lg@denx.de>
20373 Date:   Sun Aug 31 00:39:47 2008 +0200
20374
20375     serial: add S3C64XX serial driver
20376
20377     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
20378
20379     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20380
20381 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
20382 Author: Guennadi Liakhovetski <lg@denx.de>
20383 Date:   Sun Aug 31 00:39:46 2008 +0200
20384
20385     USB: Add support for OHCI controller on S3C6400
20386
20387     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
20388     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
20389     it should work too and we could still profit from instruction cache.
20390
20391     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20392
20393 commit 9b07773f8883665b002500c190507e9fd99b7181
20394 Author: Guennadi Liakhovetski <lg@denx.de>
20395 Date:   Sun Aug 31 00:39:46 2008 +0200
20396
20397     ARM: Add arm1176 core with S3C6400 SoC
20398
20399     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
20400
20401     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20402
20403 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
20404 Author: Sandeep Paulraj <s-paulraj@ti.com>
20405 Date:   Sun Aug 31 00:39:46 2008 +0200
20406
20407     ARM DaVinci: Changing function names for EMAC driver
20408
20409     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
20410     By replacing all the function names that start with dm644x_* to davinci_*
20411     we make these function more portable. I have tested this change on my EVM.
20412     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
20413     be sending patches that add DaVinci DM6467 support to the list soon.
20414
20415     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
20416
20417 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
20418 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20419 Date:   Sat Aug 30 23:21:30 2008 +0200
20420
20421     Integrator[AP/CP] - Remove unused file memsetup.S
20422
20423     - memsetup.s is changed/merged to lowlevel_init.S
20424       memsetup.S has a global label memsetup that just returns back to caller
20425     - memsetup global label is changed/merged to lowlevel_init
20426       This label is not called from anywhere.
20427
20428     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
20429
20430 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
20431 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20432 Date:   Wed Aug 27 21:35:52 2008 +0200
20433
20434     ARM DaVinci: Standardize names of directories/files
20435
20436     ARM DaVinci: Standardize names of directories/files.
20437
20438     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20439     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20440
20441 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
20442 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20443 Date:   Fri Jul 11 15:10:13 2008 -0400
20444
20445     ARM DaVinci: Move common functions to board/davinci/common
20446
20447     ARM DaVinci: Move common functions to board/davinci/common.
20448
20449     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20450
20451 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
20452 Author: Stefan Roese <sr@denx.de>
20453 Date:   Fri Aug 29 11:56:49 2008 +0200
20454
20455     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
20456
20457     This function is needed for the new NAND infrastructure. We only need
20458     a dummy implementation though for the NDFC.
20459
20460     Signed-off-by: Stefan Roese <sr@denx.de>
20461
20462 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
20463 Author: Stefan Roese <sr@denx.de>
20464 Date:   Fri Aug 29 12:06:27 2008 +0200
20465
20466     ppc4xx: Increase image size for NAND boot target
20467
20468     This is needed since now with HUSH enabled (amcc-common.h) the image
20469     read from NAND exceeds the previous limit.
20470
20471     Signed-off-by: Stefan Roese <sr@denx.de>
20472
20473 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
20474 Author: Ben Warren <biggerbadderben@gmail.com>
20475 Date:   Thu Aug 28 23:58:30 2008 -0700
20476
20477     Move MPC512x_FEC driver to drivers/net
20478
20479     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20480
20481 commit 80b00af01b3c9154774de2936f05a051e92f6a03
20482 Author: Ben Warren <biggerbadderben@gmail.com>
20483 Date:   Thu Aug 28 23:58:29 2008 -0700
20484
20485     Move MPC5xxx_FEC driver to drivers/net
20486
20487     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20488
20489 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
20490 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20491 Date:   Fri Aug 29 21:53:57 2008 +0200
20492
20493     cmd_terminal: remove no need ifdef
20494
20495     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20496
20497 commit 578118bdf122877ae769776be002255be447b4fa
20498 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20499 Date:   Fri Aug 29 21:53:57 2008 +0200
20500
20501     common/Makefile: order by functionality
20502
20503     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20504
20505 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
20506 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20507 Date:   Fri Aug 29 21:53:56 2008 +0200
20508
20509     miiphyutil: Move conditional compilation to Makefile
20510
20511     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20512
20513 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
20514 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20515 Date:   Fri Aug 29 21:53:37 2008 +0200
20516
20517     autoscript: Move conditional compilation to Makefile
20518
20519     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20520
20521 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
20522 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20523 Date:   Fri Aug 29 01:18:11 2008 +0200
20524
20525     crc16: move to lib_generic
20526
20527     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20528
20529 commit 55195773eacefb22dd483a3c560ea30a14263ce1
20530 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20531 Date:   Fri Aug 29 01:18:01 2008 +0200
20532
20533     miiphybb: move to drivers/net/phy
20534
20535     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20536
20537 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
20538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20539 Date:   Thu Aug 28 12:31:51 2008 +0200
20540
20541     soft_spi: move to drivers/spi
20542
20543     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20544
20545 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
20546 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20547 Date:   Thu Aug 28 12:31:51 2008 +0200
20548
20549     soft_i2c: move to drivers/i2c
20550
20551     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20552
20553 commit 717a222229fdb77703e9174d0eb08a4b41febf49
20554 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20555 Date:   Thu Aug 28 12:31:48 2008 +0200
20556
20557     gunzip: move to lib_generic
20558
20559     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20560
20561 commit 52aef8f9ba28b747973bf76741c23db658d5773c
20562 Author: Wolfgang Ocker <weo@reccoware.de>
20563 Date:   Tue Aug 26 19:55:23 2008 +0200
20564
20565     ppc4xx: NAND configuration
20566
20567     Made NAND bank configuration setting a config variable.
20568
20569     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
20570     Signed-off-by: Stefan Roese <sr@denx.de>
20571
20572 commit 5bc542a593abc9e974fbd34704af85c37c366c60
20573 Author: Victor Gallardo <vgallardo@amcc.com>
20574 Date:   Thu Aug 28 16:03:28 2008 -0700
20575
20576     ppc4xx: fix UIC external_interrupt hang on UIC0
20577
20578     This patch fixes a UIC external_interrupt hang if critical or non-critical
20579     interrupt is set at the same time as a normal interrupt is set on UIC0.
20580
20581     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
20582     Signed-off-by: Stefan Roese <sr@denx.de>
20583
20584 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
20585 Author: Prodyut  Hazarika <phazarika@amcc.com>
20586 Date:   Wed Aug 27 16:39:00 2008 -0700
20587
20588     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
20589
20590     Removed Magic numbers from Initialization preload registers
20591     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
20592     About 5-7% improvement seen for LMBench memtests
20593
20594     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
20595     Signed-off-by: Stefan Roese <sr@denx.de>
20596
20597 commit 8a490422bed685c9491274ec997f62061d88620b
20598 Author: John Rigby <jrigby@freescale.com>
20599 Date:   Thu Aug 28 13:17:07 2008 -0600
20600
20601     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
20602
20603     MPC5121 rev 2 silicon has a new register for controlling how long
20604     CS is asserted after deassertion of ALE in multiplexed mode.
20605
20606     The default is to assert CS together with ALE.  The alternative
20607     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
20608
20609     The default is wrong for the NOR flash and CPLD on the ADS5121.
20610
20611     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
20612     it does so conditionally based on silicon rev 2.0 or greater.
20613
20614     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
20615     Signed-off-by: John Rigby <jrigby@freescale.com>
20616
20617 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
20618 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20619 Date:   Tue Aug 19 00:56:46 2008 +0600
20620
20621     Add I2C frequency dividers for ColdFire
20622
20623     The existing I2C freqency dividers for FDR does not apply
20624     to ColdFire platforms; thus, a seperate table is added
20625     based on MCF5xxx Reference Manual
20626
20627     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
20628     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20629     Acked-by: Tabi Timur <timur@freescale.com>
20630
20631 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
20632 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20633 Date:   Tue Aug 19 03:01:19 2008 +0600
20634
20635     ColdFire: I2C fix for multiple platforms
20636
20637     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20638
20639 commit d53cf6a9c7423cba668b867978648645f71c3090
20640 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20641 Date:   Tue Aug 19 00:37:13 2008 +0600
20642
20643     ColdFire: Add CONFIG_MII_INIT for M5272C3
20644
20645     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20646
20647 commit f78ced3028d4130b24a318943a70cf5584ab16f4
20648 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20649 Date:   Tue Aug 19 00:26:25 2008 +0600
20650
20651     ColdFire: Multiple fixes for MCF5445x platforms
20652
20653     Add FEC pin set and mii reset in __mii_init(). Change
20654     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
20655     change cfi_offset to 0, and change CFG_FLASH_CFI to
20656     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
20657     M54455EVB env settings in configuration file.
20658
20659     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20660
20661 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
20662 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20663 Date:   Fri Aug 15 18:24:25 2008 +0000
20664
20665     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
20666
20667     The user manuals recommend 7.
20668
20669     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
20670     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20671
20672 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
20673 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20674 Date:   Fri Aug 15 16:50:07 2008 +0000
20675
20676     ColdFire: Raise uart baudrate to 115200 bps
20677
20678     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
20679     uart baudrate increase from 19200 to 115200 bps
20680
20681     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20682
20683 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
20684 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20685 Date:   Wed Aug 13 12:07:03 2008 +0000
20686
20687     ColdFire: Fix board.c warning message
20688
20689     Implicit declaration of nand_init() warning message
20690
20691     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20692
20693 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
20694 Author: Kumar Gala <galak@kernel.crashing.org>
20695 Date:   Wed Aug 27 01:10:34 2008 -0500
20696
20697     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
20698
20699     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20700
20701 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
20702 Author: Heiko Schocher <hs@denx.de>
20703 Date:   Thu Aug 21 20:44:49 2008 +0200
20704
20705     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
20706
20707     Signed-off-by: Heiko Schocher <hs@denx.de>
20708
20709 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
20710 Author: Kumar Gala <galak@kernel.crashing.org>
20711 Date:   Tue Aug 19 14:46:36 2008 -0500
20712
20713     mpc85xx: remove redudant code with lib_ppc/interrupts.c
20714
20715     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
20716     not show how that happened, but there is no good reason for it.
20717
20718     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
20719     they exist.
20720
20721     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20722
20723 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
20724 Author: Kumar Gala <galak@kernel.crashing.org>
20725 Date:   Fri Jul 25 13:31:05 2008 -0500
20726
20727     mpc85xx: Add support for the MPC8536DS reference board
20728
20729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20730     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20731     Signed-off-by: Dejan Minic <minic@freescale.com>
20732     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
20733     Signed-off-by: Dave Liu <daveliu@freescale.com>
20734     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20735
20736 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
20737 Author: Kumar Gala <galak@kernel.crashing.org>
20738 Date:   Tue Aug 12 11:14:19 2008 -0500
20739
20740     mpc85xx: Add support for the MPC8536
20741
20742     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
20743     also have SERDES init code for the 8536.
20744
20745     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20746     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20747     Signed-off-by: Dejan Minic <minic@freescale.com>
20748     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
20749     Signed-off-by: Dave Liu <daveliu@freescale.com>
20750
20751 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
20752 Author: Kumar Gala <galak@kernel.crashing.org>
20753 Date:   Tue Aug 12 11:13:08 2008 -0500
20754
20755     mpc85xx: Add support for the MPC8572DS reference board
20756
20757     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20758
20759 commit 457caecdbca3df21a93abff19eab12dbc61b7897
20760 Author: Kumar Gala <galak@kernel.crashing.org>
20761 Date:   Wed Aug 27 01:05:35 2008 -0500
20762
20763     FSL DDR: Remove old SPD support from cpu/mpc85xx
20764
20765     All 85xx boards have been converted to the new code so we can
20766     remove the old SPD DDR setup code.
20767
20768     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20769
20770 commit 0e7927db138976469e7257e29c1338050a50fcd9
20771 Author: Kumar Gala <galak@kernel.crashing.org>
20772 Date:   Wed Aug 27 01:04:07 2008 -0500
20773
20774     FSL DDR: Convert STXSSA to new DDR code.
20775
20776     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20777
20778 commit c360d9b970fbb9c13744c355879671165bbb9b9e
20779 Author: Kumar Gala <galak@kernel.crashing.org>
20780 Date:   Wed Aug 27 01:03:42 2008 -0500
20781
20782     FSL DDR: Convert STXGP3 to new DDR code.
20783
20784     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20785
20786 commit 8e55313b7ae12352a343f9b9962e662dbd897187
20787 Author: Kumar Gala <galak@kernel.crashing.org>
20788 Date:   Tue Aug 26 23:52:58 2008 -0500
20789
20790     FSL DDR: Convert SBC8560 to new DDR code.
20791
20792     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20793
20794 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
20795 Author: Kumar Gala <galak@kernel.crashing.org>
20796 Date:   Tue Aug 26 23:52:32 2008 -0500
20797
20798     FSL DDR: Convert MPC8540EVAL to new DDR code.
20799
20800     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20801
20802 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
20803 Author: Kumar Gala <galak@kernel.crashing.org>
20804 Date:   Tue Aug 26 23:52:07 2008 -0500
20805
20806     FSL DDR: Convert PM856 to new DDR code.
20807
20808     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20809
20810 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
20811 Author: Kumar Gala <galak@kernel.crashing.org>
20812 Date:   Tue Aug 26 23:51:49 2008 -0500
20813
20814     FSL DDR: Convert PM854 to new DDR code.
20815
20816     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20817
20818 commit 33b9079ba20926f14238fff863b68a98e938948e
20819 Author: Kumar Gala <galak@kernel.crashing.org>
20820 Date:   Tue Aug 26 23:15:28 2008 -0500
20821
20822     FSL DDR: Convert sbc8548 to new DDR code.
20823
20824     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20825
20826 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
20827 Author: Kumar Gala <galak@kernel.crashing.org>
20828 Date:   Tue Aug 26 23:14:14 2008 -0500
20829
20830     FSL DDR: Convert atum8548 to new DDR code.
20831
20832     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20833
20834 commit be0bd8234b9777ecd63c4c686f72af070d886517
20835 Author: Kumar Gala <galak@kernel.crashing.org>
20836 Date:   Tue Aug 26 22:56:56 2008 -0500
20837
20838     FSL DDR: Convert socrates to new DDR code.
20839
20840     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20841
20842 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
20843 Author: Kumar Gala <galak@kernel.crashing.org>
20844 Date:   Tue Aug 26 08:02:30 2008 -0500
20845
20846     FSL DDR: Convert MPC8544DS to new DDR code.
20847
20848     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20849
20850 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
20851 Author: Jon Loeliger <jdl@freescale.com>
20852 Date:   Tue Mar 18 13:51:05 2008 -0500
20853
20854     FSL DDR: Convert MPC8568MDS to new DDR code.
20855
20856     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20857     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20858
20859 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
20860 Author: Jon Loeliger <jdl@freescale.com>
20861 Date:   Tue Mar 18 13:51:06 2008 -0500
20862
20863     FSL DDR: Convert MPC8548CDS to new DDR code.
20864
20865     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20866     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20867
20868 commit aa11d85cf318b961e029fe50d68ca47d004bce93
20869 Author: Jon Loeliger <jdl@freescale.com>
20870 Date:   Mon Mar 17 15:48:18 2008 -0500
20871
20872     FSL DDR: Convert MPC8541CDS to new DDR code.
20873
20874     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20875     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20876
20877 commit 2b40edb10d81da7bba724edbccd7f53777112579
20878 Author: Jon Loeliger <jdl@freescale.com>
20879 Date:   Tue Mar 18 11:12:42 2008 -0500
20880
20881     FSL DDR: Convert MPC8555ADS to new DDR code.
20882
20883     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20884     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20885
20886 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
20887 Author: Jon Loeliger <jdl@freescale.com>
20888 Date:   Tue Mar 18 11:12:44 2008 -0500
20889
20890     FSL DDR: Convert MPC8560ADS to new DDR code.
20891
20892     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20893     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20894
20895 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
20896 Author: Kumar Gala <galak@kernel.crashing.org>
20897 Date:   Fri Jun 6 13:12:18 2008 -0500
20898
20899     FSL DDR: Convert MPC8540ADS to new DDR code.
20900
20901     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20902
20903 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
20904 Author: Kumar Gala <galak@kernel.crashing.org>
20905 Date:   Tue Aug 26 21:34:55 2008 -0500
20906
20907     FSL DDR: Add 85xx specific register setting
20908
20909     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20910
20911 commit 6fb1b7346849ccd0c20306143e334f5b76143070
20912 Author: Kumar Gala <galak@kernel.crashing.org>
20913 Date:   Mon Jun 9 11:07:46 2008 -0500
20914
20915     FSL DDR: Add e500 TLB helper for DDR code
20916
20917     Provide a helper function that board code can call to map TLBs when
20918     setting up DDR.
20919
20920     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20921
20922 commit d26b739afe5a6760bd345743188759cd9d0f3b47
20923 Author: Andrew Dyer <adyer@righthandtech.com>
20924 Date:   Tue Aug 26 17:03:38 2008 -0500
20925
20926     dm9000 remove dead external phy support, gpio fix
20927
20928     dm9000 has code to detect and initialize external phy parts, but later
20929     on in the code the part is forced to use the internal phy
20930     unconditionally.  Remove the unused/untested code.
20931
20932     change the GPIO initialization so that only the GPIO used as an
20933     internal phy reset (hardwired in the chip) is set as an output.  The
20934     remaining GPIO need to be handled by board specific code to prevent
20935     possible drive conflicts.  Set as inputs for safety.
20936
20937     replace a few magic numbers with defines
20938
20939     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
20940     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20941
20942 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
20943 Author: Peter Tyser <ptyser@xes-inc.com>
20944 Date:   Tue Aug 26 11:17:48 2008 -0500
20945
20946     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
20947
20948     cmd_net.c command descriptions were updated to describe the optional
20949     hostIPaddr argument.  The dhcp command help message was also updated
20950     to more closely reflect the other commands in cmd_net.c
20951
20952     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20953     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20954
20955 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
20956 Author: Remy Bohmer <linux@bohmer.net>
20957 Date:   Wed Aug 20 11:30:28 2008 +0200
20958
20959     Fix bogus error message in the DHCP handler
20960
20961     The DHCP handler has 1 state that is not listed in this case, causing a
20962     failure message when there is actually no failure.
20963
20964     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20965     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20966
20967 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
20968 Author: Remy Bohmer <linux@bohmer.net>
20969 Date:   Wed Aug 20 11:30:27 2008 +0200
20970
20971     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
20972
20973     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
20974     missing extern inside the net/bootp.h header
20975
20976     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20977     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20978
20979 commit 1803f7f91ff35ca402259065df7557107dcf28a2
20980 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20981 Date:   Tue Aug 19 21:26:32 2008 +0000
20982
20983     ColdFire: Add FEC Buffer descriptors in SRAM
20984
20985     Add FEC Buffer descriptors and data buffer in SRAM for
20986     faster execution and access.
20987
20988     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20989     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20990
20991 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
20992 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20993 Date:   Thu Aug 21 23:55:11 2008 +0000
20994
20995     Fix ColdFire FEC warning messages
20996
20997     Types mismatch and implicit declaration of icache_invalid()
20998     warning messages
20999
21000     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21001     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21002
21003 commit 6a002171098e968bd5b362347d2831224fab6048
21004 Author: Ben Warren <biggerbadderben@gmail.com>
21005 Date:   Sat Jul 12 00:17:50 2008 -0700
21006
21007     Moved initialization of SKGE Ethernet driver to board code.
21008
21009     The only board using this driver is the SL8245 board.
21010     Removed initialization for the driver from net/eth.c
21011
21012     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21013
21014 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
21015 Author: Ben Warren <biggerbadderben@gmail.com>
21016 Date:   Sat Jul 12 00:08:45 2008 -0700
21017
21018     Moved conditional compilation to Makefile for SK98 Ethernet driver
21019
21020     Brute-force removal of #ifdefs.  Didn't touch the code.
21021     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21022
21023 commit 65d3d99c28dc363d15eaee78225ff643df499b97
21024 Author: Ben Warren <biggerbadderben@gmail.com>
21025 Date:   Fri Jul 11 23:42:19 2008 -0700
21026
21027     Moved initialization of ULI526X Ethernet driver to board code.
21028
21029     The only board using this driver is the Freescale MPC8610HPCD board.
21030     Removed initialization for the driver from net/eth.c
21031
21032     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21033
21034 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
21035 Author: Ben Warren <biggerbadderben@gmail.com>
21036 Date:   Fri Jul 11 23:15:28 2008 -0700
21037
21038     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
21039
21040     Added board_eth_init() function to bf537-stamp board.
21041     Removed initialization for the Blackin EMAC driver from net/eth.c
21042
21043     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21044
21045 commit fc363ce35408f348cacced68505f3747a53e3d7c
21046 Author: Ben Warren <biggerbadderben@gmail.com>
21047 Date:   Wed Jul 9 01:04:19 2008 -0700
21048
21049     Moved initialization of GRETH Ethernet driver to CPU directory
21050
21051     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
21052     removed code from net/eth.c
21053
21054     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21055
21056 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
21057 Author: Ben Warren <biggerbadderben@gmail.com>
21058 Date:   Tue Aug 26 22:16:25 2008 -0700
21059
21060     Moved initialization of MCFFEC Ethernet driver to CPU directory
21061
21062     Added a cpu_eth_init() function to coldfire CPU directories and
21063     removed code from net/eth.c
21064
21065     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21066
21067 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
21068 Author: Ben Warren <biggerbadderben@gmail.com>
21069 Date:   Tue Aug 26 22:12:36 2008 -0700
21070
21071     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
21072
21073     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
21074     removed code from net/eth.c
21075
21076     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21077
21078 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
21079 Author: Kumar Gala <galak@kernel.crashing.org>
21080 Date:   Tue Aug 26 15:01:38 2008 -0500
21081
21082     FSL DDR: Remove old SPD support from cpu/mpc86xx
21083
21084     All 86xx boards have been converted to the new code so we can
21085     remove the old SPD DDR setup code.
21086
21087     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21088
21089 commit 9bd4e5911b750837515466bc7449087698b88e0e
21090 Author: Kumar Gala <galak@kernel.crashing.org>
21091 Date:   Tue Aug 26 15:01:37 2008 -0500
21092
21093     FSL DDR: Convert SBC8641D to new DDR code.
21094
21095     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21096
21097 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
21098 Author: Jon Loeliger <jdl@freescale.com>
21099 Date:   Tue Aug 26 15:01:36 2008 -0500
21100
21101     FSL DDR: Convert MPC8610HPCD to new DDR code.
21102
21103     Signed-off-by: Jon Loeliger <jdl@freescale.com>
21104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21105
21106 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
21107 Author: Kumar Gala <galak@kernel.crashing.org>
21108 Date:   Tue Aug 26 15:01:35 2008 -0500
21109
21110     FSL DDR: Convert MPC8641HPCN to new DDR code.
21111
21112     Signed-off-by: Jon Loeliger <jdl@freescale.com>
21113     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21114
21115 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
21116 Author: Kumar Gala <galak@kernel.crashing.org>
21117 Date:   Tue Aug 26 15:01:34 2008 -0500
21118
21119     FSL DDR: Add 86xx specific register setting
21120
21121     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21122
21123 commit 233fdd502a6c227f476212b3097653ad48d7e254
21124 Author: Kumar Gala <galak@kernel.crashing.org>
21125 Date:   Tue Aug 26 15:01:32 2008 -0500
21126
21127     FSL DDR: Add DDR2 DIMM paramter support
21128
21129     Compute DIMM parameters based upon the SPD information.
21130
21131     Signed-off-by: James Yang <James.Yang@freescale.com>
21132     Signed-off-by: Jon Loeliger <jdl@freescale.com>
21133     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21134
21135 commit 05c05a2363a6ac11e0e405926034546ffad71fad
21136 Author: Kumar Gala <galak@kernel.crashing.org>
21137 Date:   Tue Aug 26 15:01:30 2008 -0500
21138
21139     FSL DDR: Add DDR1 DIMM paramter support
21140
21141     Compute DIMM parameters based upon the SPD information in spd.
21142
21143     Signed-off-by: James Yang <James.Yang@freescale.com>
21144     Signed-off-by: Jon Loeliger <jdl@freescale.com>
21145     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21146
21147 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
21148 Author: Kumar Gala <galak@kernel.crashing.org>
21149 Date:   Tue Aug 26 15:01:29 2008 -0500
21150
21151     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
21152
21153     The main purpose of this rewrite it to be able to share the same
21154     initialization code on all FSL PowerPC products that have DDR
21155     controllers.  (83xx, 85xx, 86xx).
21156
21157     The code is broken up into the following steps:
21158         GET_SPD
21159         COMPUTE_DIMM_PARMS
21160         COMPUTE_COMMON_PARMS
21161         GATHER_OPTS
21162         ASSIGN_ADDRESSES
21163         COMPUTE_REGS
21164         PROGRAM_REGS
21165
21166     This allows us to share more code an easily allow for board specific code
21167     overrides.
21168
21169     Additionally this code base adds support for >4G of DDR and provides a
21170     foundation for supporting interleaving on processors with more than one
21171     controller.
21172
21173     Signed-off-by: James Yang <James.Yang@freescale.com>
21174     Signed-off-by: Jon Loeliger <jdl@freescale.com>
21175     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21176     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
21177     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21178
21179 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
21180 Author: Kumar Gala <galak@kernel.crashing.org>
21181 Date:   Tue Aug 26 15:01:28 2008 -0500
21182
21183     FSL DDR: Provide a generic set_ddr_laws()
21184
21185     Provide a helper function that will setup the last available
21186     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
21187
21188     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21189
21190 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
21191 Author: James Yang <James.Yang@freescale.com>
21192 Date:   Tue Aug 26 15:01:27 2008 -0500
21193
21194     Add proper SPD definitions for DDR1/2/3
21195
21196     Also adds helper functions for DDR1/2 to verify the checksum.
21197
21198     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21199
21200 commit 285db74716c724ae8a0ff177878fd09a74428c7b
21201 Author: Wolfgang Denk <wd@denx.de>
21202 Date:   Wed Aug 27 01:02:48 2008 +0200
21203
21204     Update CHANGELOG
21205
21206     Signed-off-by: Wolfgang Denk <wd@denx.de>
21207
21208 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
21209 Author: Heiko Schocher <hs@denx.de>
21210 Date:   Tue Aug 19 10:08:49 2008 +0200
21211
21212     Add support for muas3001 board (MPC8270)
21213
21214     Signed-off-by: Heiko Schocher <hs@denx.de>
21215
21216 commit 322098bff32410d2a00031649b47c4ec90a66d9a
21217 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
21218 Date:   Tue Aug 19 08:31:18 2008 +0530
21219
21220     common/cmd_load.c cleanup - remove unused variables
21221
21222     - Remove unused global variable os_data_count.
21223     - Remove unused variable z.
21224
21225     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
21226
21227 commit 306620b762a4f9fa6678568ad2e8772dec145208
21228 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21229 Date:   Mon Aug 18 13:35:27 2008 +0200
21230
21231     remove MVS1 board
21232
21233     MVS1 board has reached end-of-life and can be removed completely.
21234
21235     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21236
21237 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
21238 Author: Kumar Gala <galak@kernel.crashing.org>
21239 Date:   Fri Aug 15 08:24:45 2008 -0500
21240
21241     bootm: refactor do_reset and os boot function args
21242
21243     There is no need for each OS specific function to call do_reset() we
21244     can just do it once in bootm. This means its feasible on an error for
21245     the OS boot function to return.
21246
21247     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
21248     functions.  flag isn't currently used but might be in the future so
21249     we left it alone.
21250
21251     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21252
21253 commit 40afac22a9c602e55c501c800f1c064324711b56
21254 Author: Kumar Gala <galak@kernel.crashing.org>
21255 Date:   Fri Aug 15 08:24:44 2008 -0500
21256
21257     fdt: Added resize command
21258
21259     Resize the fdt to size + padding to 4k boundary
21260
21261     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21262
21263 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
21264 Author: Kumar Gala <galak@kernel.crashing.org>
21265 Date:   Fri Aug 15 08:24:43 2008 -0500
21266
21267     fdt: refactor initrd related code
21268
21269     Created a new fdt_initrd() to deal with setting the initrd properties
21270     in the device tree and fixing up the mem reserve.  We can use this
21271     both in the choosen node handling and lets us remove some duplicated
21272     code when we fixup the initrd info in bootm on PPC.
21273
21274     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21275
21276 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
21277 Author: Kumar Gala <galak@kernel.crashing.org>
21278 Date:   Fri Aug 15 08:24:42 2008 -0500
21279
21280     fdt: refactor fdt resize code
21281
21282     Move the fdt resizing code out of ppc specific boot code and into
21283     common fdt support code.
21284
21285     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21286
21287 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
21288 Author: Kumar Gala <galak@kernel.crashing.org>
21289 Date:   Fri Aug 15 08:24:41 2008 -0500
21290
21291     bootm: refactor image detection and os load steps
21292
21293     Created a bootm_start() that handles the parsing and detection of all
21294     the images that will be used by the bootm command (OS, ramdisk, fdt).
21295     As part of this we now tract all the relevant image offsets in the
21296     bootm_headers_t struct. This will allow us to have all the needed
21297     state for future sub-commands and lets us reduce a bit of arch
21298     specific code on SPARC.
21299
21300     Created a bootm_load_os() that deals with decompression and loading
21301     the OS image.
21302
21303     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21304
21305 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
21306 Author: Kumar Gala <galak@kernel.crashing.org>
21307 Date:   Fri Aug 15 08:24:40 2008 -0500
21308
21309     bootm: move lmb into the bootm_headers_t structure
21310
21311     To allow for persistent state between future bootm subcommands we
21312     need the lmb to exist in a global state.
21313     Moving it into the bootm_headers_t allows us to do that.
21314
21315     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21316
21317 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
21318 Author: Kumar Gala <galak@kernel.crashing.org>
21319 Date:   Fri Aug 15 08:24:39 2008 -0500
21320
21321     bootm: Set working fdt address as part of the bootm flow
21322
21323     Set the fdt working address so "fdt FOO" commands can be used as part
21324     of the bootm flow.  Also set an the environment variable "fdtaddr"
21325     with the value.
21326
21327     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21328
21329 commit 06a09918f3903450313e2047a9cc258bf5872f46
21330 Author: Kumar Gala <galak@kernel.crashing.org>
21331 Date:   Fri Aug 15 08:24:38 2008 -0500
21332
21333     bootm: refactor fdt locating and relocation code
21334
21335     Move the code that handles finding a device tree blob and relocating
21336     it (if needed) into common code so all arch's have access to it.
21337
21338     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21339
21340 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
21341 Author: Kumar Gala <galak@kernel.crashing.org>
21342 Date:   Fri Aug 15 08:24:37 2008 -0500
21343
21344     bootm: refactor ramdisk locating code
21345
21346     Move determing if we have a ramdisk and where its located into the
21347     common code. Keep track of the ramdisk start and end in the
21348     bootm_headers_t image struct.
21349
21350     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21351
21352 commit c160a9544743e80e8889edb2275538e7764ce334
21353 Author: Kumar Gala <galak@kernel.crashing.org>
21354 Date:   Fri Aug 15 08:24:36 2008 -0500
21355
21356     bootm: refactor entry point code
21357
21358     Move entry point code out of each arch and into common code.
21359     Keep the entry point in the bootm_headers_t images struct.
21360
21361     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21362
21363 commit 20220d22b9f41446288588cd2e457e0077a18bed
21364 Author: Randy Vinson <rvinson@mvista.com>
21365 Date:   Wed Aug 13 11:44:57 2008 -0700
21366
21367     mpc7448hpc2: Fix PCI I/O space mapping.
21368
21369     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
21370     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
21371     space such that 0xFA000000 in the processor's address space maps to 0
21372     on the PCI I/O bus.
21373
21374     Signed-off-by Randy Vinson <rvinson@mvista.com>
21375     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
21376
21377 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
21378 Author: Guennadi Liakhovetski <lg@denx.de>
21379 Date:   Wed Aug 13 18:10:26 2008 +0200
21380
21381     i.MX31: Specify maintainers for i.MX31-based boards
21382
21383     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21384     Signed-off-by: Wolfgang Denk <wd@denx.de>
21385
21386 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
21387 Author: Wolfgang Denk <wd@denx.de>
21388 Date:   Tue Aug 26 15:01:28 2008 +0200
21389
21390     ADS5121: adjust image addresses in RAM and flash
21391
21392     Use the same mapping in flash as used by Linux
21393
21394     Signed-off-by: Wolfgang Denk <wd@denx.de>
21395
21396 commit 19f101412c16edee9fd55db4039e1d68a833b28b
21397 Author: Wolfgang Denk <wd@denx.de>
21398 Date:   Tue Aug 26 13:14:34 2008 +0200
21399
21400     cmd_mem.c: Fix help message alignment
21401
21402     Bug was introced by "Big white-space cleanup" (53677ef1)
21403
21404     Signed-off-by: Wolfgang Denk <wd@denx.de>
21405
21406 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
21407 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21408 Date:   Wed Aug 20 11:11:52 2008 +0200
21409
21410     change mvBL-M7 default env and move to vendor subdir
21411
21412     fix mvBL-M7 config and move to matrix_vision subdir
21413
21414     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21415     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21416
21417 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
21418 Author: Nick Spence <nick.spence@freescale.com>
21419 Date:   Fri Aug 22 23:52:40 2008 -0700
21420
21421     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
21422
21423     This patch adds elements to the 83xx sysconf structure and #define values that are used
21424     by mpc83xx family devices.
21425
21426     Signed-off-by: Nick Spence <nick.spence@freescale.com>
21427     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21428
21429 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
21430 Author: Ira W. Snyder <iws@ovro.caltech.edu>
21431 Date:   Fri Aug 22 11:00:15 2008 -0700
21432
21433     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
21434
21435     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
21436     PCI card rather than a host computer.
21437
21438     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
21439     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21440
21441 commit 4ff9aea9d6b5602683a920951ef896996438af62
21442 Author: Ira W. Snyder <iws@ovro.caltech.edu>
21443 Date:   Fri Aug 22 11:00:14 2008 -0700
21444
21445     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
21446
21447     This adds a helper function to unlock the PCI configuration bit, so that
21448     any extra PCI setup (such as outbound windows, etc.) can be done after
21449     using the 83XX_GENERIC_PCI code to set up the PCI bus.
21450
21451     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
21452     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21453
21454 commit 162338e1fcde231ca4d562e5ebd7859456731691
21455 Author: Ira W. Snyder <iws@ovro.caltech.edu>
21456 Date:   Fri Aug 22 11:00:13 2008 -0700
21457
21458     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
21459
21460     Change the MPC8349EMDS board to use the generic PCI initialization code
21461     for the mpc83xx cpu.
21462
21463     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
21464     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21465
21466 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
21467 Author: Kim Phillips <kim.phillips@freescale.com>
21468 Date:   Mon Aug 25 14:53:09 2008 -0500
21469
21470     fix out of tree building
21471
21472     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21473
21474 commit a49d10cf027d059ee15c262010a05cdaec0961e1
21475 Author: Wolfgang Denk <wd@denx.de>
21476 Date:   Mon Aug 25 23:45:41 2008 +0200
21477
21478     Minor coding style cleanup, updte CHANGELOG
21479
21480     Signed-off-by: Wolfgang Denk <wd@denx.de>
21481
21482 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
21483 Author: Stefan Roese <sr@denx.de>
21484 Date:   Wed Aug 20 20:29:38 2008 +0200
21485
21486     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
21487
21488     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
21489     to combine both config options into one line. This even allows defining
21490     both options and not generating the target object twice.
21491
21492     Signed-off-by: Stefan Roese <sr@denx.de>
21493
21494 commit 079edb913dbae147b50a488cf02e03f473fc5f28
21495 Author: Jens Gehrlein <sew_s@tqs.de>
21496 Date:   Fri Jul 4 16:50:05 2008 +0200
21497
21498     MX31: fix bit masks in function mx31_decode_pll()
21499
21500     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
21501
21502     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
21503
21504 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
21505 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
21506 Date:   Mon Aug 25 11:11:34 2008 +0200
21507
21508     Correct ARM Versatile Timer Initialization
21509
21510      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
21511        -- Timer Value Register @ TIMER Base + 4 is Read-only.
21512        -- Prescale Value (Bits 3-2 of TIMER Control register)
21513         can only be one of 00,01,10. 11 is undefined.
21514        -- CFG_HZ for Versatile board is set to
21515         #define CFG_HZ          (1000000 / 256)
21516         So Prescale bits is set to indicate
21517         - 8 Stages of Prescale, Clock divided by 256
21518      - The Timer Control Register has one Undefined/Shouldn't Use Bit
21519        So we should do read/modify/write Operation
21520
21521     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
21522
21523 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
21524 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
21525 Date:   Mon Aug 25 11:30:29 2008 +0200
21526
21527     Add ARM AMBA PL031 RTC Support
21528
21529     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
21530
21531 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
21532 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
21533 Date:   Tue Aug 19 16:21:03 2008 -0400
21534
21535     ARM DaVinci: Removed redundant NAND initialization code.
21536
21537     ARM DaVinci: Removed redundant NAND initialization code.
21538
21539     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
21540
21541 commit b3fb663b20d995ca41327db877ddb168279b3f62
21542 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
21543 Date:   Tue Aug 19 16:21:00 2008 -0400
21544
21545     ARM DaVinci: Fix compilation error with new MTD code.
21546
21547     ARM DaVinci: Fix compilation error with new MTD code.
21548
21549     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
21550
21551 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
21552 Author: Gerald Van Baren <vanbaren@cideas.com>
21553 Date:   Fri Aug 22 14:37:05 2008 -0400
21554
21555     Add note on dereferencing /aliases pointers
21556
21557     Replace the "must quote special characters" note with a hint on
21558     how to dereference /aliases pointers by omitting the leading "/".
21559     This feature was introduced by Kumar Gala as a libfdt enhancement
21560     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
21561
21562     Example:
21563
21564     => fdt print /aliases
21565     aliases {
21566             ethernet0 = "/qe@e0100000/ucc@2000";
21567             ethernet1 = "/qe@e0100000/ucc@3000";
21568             serial0 = "/soc8360@e0000000/serial@4500";
21569             serial1 = "/soc8360@e0000000/serial@4600";
21570             pci0 = "/pci@e0008500";
21571     };
21572     => fdt print ethernet0
21573     ucc@2000 {
21574             device_type = "network";
21575             compatible = "ucc_geth";
21576             cell-index = <0x1>;
21577             reg = <0x2000 0x200>;
21578             interrupts = <0x20>;
21579             interrupt-parent = <0x2>;
21580             local-mac-address = [00 00 00 00 00 00];
21581             rx-clock-name = "none";
21582             tx-clock-name = "clk9";
21583             phy-handle = <0x3>;
21584             phy-connection-type = "rgmii-id";
21585             pio-handle = <0x4>;
21586     };
21587
21588     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21589
21590 commit feeca3f578b7f53c032ba203698751c982f8bf5a
21591 Author: Kumar Gala <galak@kernel.crashing.org>
21592 Date:   Thu Aug 14 08:28:19 2008 -0500
21593
21594     libfdt: Add support for using aliases in fdt_path_offset()
21595
21596     If the path doesn't start with '/' check to see if it matches some alias
21597     under "/aliases" and substitute the matching alias value in the path
21598     and retry the lookup.
21599
21600     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21601     Acked-by: David Gibson <david@gibson.dropbear.id.au>
21602     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
21603
21604 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
21605 Author: David Gibson <david@gibson.dropbear.id.au>
21606 Date:   Wed Aug 6 14:50:49 2008 +1000
21607
21608     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
21609
21610     As well as fdt_subnode_offset(), libfdt includes an
21611     fdt_subnode_offset_namelen() function that takes the subnode name to
21612     look up not as a NUL-terminated string, but as a string with an
21613     explicit length.  This can be useful when the caller has the name as
21614     part of a longer string, such as a full path.
21615
21616     However, we don't have corresponding 'namelen' versions for
21617     fdt_get_property() and fdt_getprop().  There are less obvious use
21618     cases for these variants on property names, but there are
21619     circumstances where they can be useful e.g. looking up property names
21620     which need to be parsed from a longer string buffer such as user input
21621     or a configuration file, or looking up an alias in a path with
21622     IEEE1275 style aliases.
21623
21624     So, since it's very easy to implement such variants, this patch does
21625     so.  The original NUL-terminated variants are, of course, implemented
21626     in terms of the namelen versions.
21627
21628     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21629
21630 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
21631 Author: David Gibson <david@gibson.dropbear.id.au>
21632 Date:   Tue Jul 29 14:51:22 2008 +1000
21633
21634     libfdt: Forgot one function when cleaning the namespace
21635
21636     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
21637     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
21638     chance of collisions with things from whatever package libfdt is
21639     embedded in, pulled into the libfdt build via that environment's
21640     libfdt_env.h.
21641
21642     Except... I missed one.  This patch applies the same treatment to
21643     _stringlist_contains().  While we're at it, also make it static since
21644     it's only used in the same file.
21645
21646     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21647
21648 commit 46390da15411351fc3b498bd8c1615f78fe80df0
21649 Author: Wolfram Sang <w.sang@pengutronix.de>
21650 Date:   Wed Jul 9 11:22:44 2008 +0200
21651
21652     libfdt: Improve documentation in libfdt.h
21653
21654     Fix a few typos and mistakes.
21655
21656     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
21657     Acked-by: David Gibson <david@gibson.dropbear.id.au>
21658
21659 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
21660 Author: David Gibson <david@gibson.dropbear.id.au>
21661 Date:   Wed Jul 9 14:10:24 2008 +1000
21662
21663     libfdt: Increase namespace-pollution paranoia
21664
21665     libfdt is supposed to easy to embed in projects all and sundry.
21666     Often, it won't be practical to separate the embedded libfdt's
21667     namespace from that of the surrounding project.  Which means there can
21668     be namespace conflicts between even libfdt's internal/static functions
21669     and functions or macros coming from the surrounding project's headers
21670     via libfdt_env.h.
21671
21672     This patch, therefore, renames a bunch of libfdt internal functions
21673     and macros and makes a few other chances to reduce the chances of
21674     namespace collisions with embedding projects.  Specifically:
21675         - Internal functions (even static ones) are now named _fdt_*()
21676
21677         - The type and (static) global for the error table in
21678               fdt_strerror() gain an fdt_ prefix
21679
21680         - The unused macro PALIGN is removed
21681
21682         - The memeq and streq macros are removed and open-coded in the
21683               users (they were only used once each)
21684
21685         - Other macros gain an FDT_ prefix
21686
21687         - To save some of the bulk from the previous change, an
21688               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
21689               FDT_ALIGN(x, FDT_TAGSIZE)
21690
21691     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21692
21693 commit c66830263af19831f2b7db307f79d1943febf7f9
21694 Author: David Gibson <david@gibson.dropbear.id.au>
21695 Date:   Mon Jul 7 10:14:15 2008 +1000
21696
21697     dtc: Enable and fix -Wcast-qual warnings
21698
21699     Enabling -Wcast-qual warnings in dtc shows up a number of places where
21700     we are incorrectly discarding a const qualification.  There are also
21701     some places where we are intentionally discarding the 'const', and we
21702     need an ugly cast through uintptr_t to suppress the warning.  However,
21703     most of these are pretty well isolated with the *_w() functions.  So
21704     in the interests of maximum safety with const qualifications, this
21705     patch enables the warnings and fixes the existing complaints.
21706
21707     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21708     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
21709
21710 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
21711 Author: David Gibson <david@gibson.dropbear.id.au>
21712 Date:   Mon Jul 7 10:10:48 2008 +1000
21713
21714     dtc: Enable and fix -Wpointer-arith warnings
21715
21716     This patch turns on the -Wpointer-arith option in the dtc Makefile,
21717     and fixes the resulting warnings due to using (void *) in pointer
21718     arithmetic.  While convenient, pointer arithmetic on void * is not
21719     portable, so it's better that we avoid it, particularly in libfdt.
21720
21721     Also add necessary definition of uintptr_t needed by David Gibson's
21722     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
21723     comes from stdint.h, which u-boot doesn't have). -- gvb
21724
21725     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21726     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21727
21728 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
21729 Author: Tirumala R Marri <tmarri@amcc.com>
21730 Date:   Thu Aug 21 21:54:53 2008 -0700
21731
21732     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
21733
21734     During recent PCI-E tests it has been found that current
21735     driverl level and de-emphasis values are not set correctly.
21736     After sweeping throgh all de-ephasis values, it was found that
21737     0x130 is a right value. Where 0x13 is driver level and 0 is
21738     de-emphasis.
21739
21740     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
21741     Signed-off-by: Stefan Roese <sr@denx.de>
21742
21743 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
21744 Author: Remy Bohmer <linux@bohmer.net>
21745 Date:   Wed Aug 20 20:46:56 2008 +0200
21746
21747     Make the YAFFS filesystem work
21748
21749     Recently the YAFFS filesystem support has been added to U-boot.
21750     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
21751
21752     ymount will generate an exception (when dereferencing mtd->readoob()), because
21753     the genericDevice is a null pointer. Further, a lot of logging is produced
21754     while using YAFFS fs, so logging should also be disabled.
21755     Both issues are solved by this patch.
21756
21757     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
21758     in U-boot, as well as in Linux.
21759
21760     Tested on a Atmel AT91SAM9261EK board.
21761
21762     Signed-off-by: Remy Bohmer <linux@bohmer.net>
21763     Acked-by: William Juul <william.juul@tandberg.com>
21764     Signed-off-by: Scott Wood <scottwood@freescale.com>
21765
21766 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
21767 Author: Kyungmin Park <kmpark@infradead.org>
21768 Date:   Tue Aug 19 08:42:53 2008 +0900
21769
21770     Fix OneNAND read_oob/write_oob functions compatability
21771
21772     Also sync with kernel OneNAND codes
21773
21774     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21775     Signed-off-by: Scott Wood <scottwood@freescale.com>
21776
21777 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
21778 Author: Scott Wood <scottwood@freescale.com>
21779 Date:   Mon Aug 18 17:11:20 2008 -0500
21780
21781     NAND: Remove delay from nand_boot_fsl_elbc.c.
21782
21783     It was for debugging purposes, and shouldn't have been left in.
21784
21785     Signed-off-by: Scott Wood <scottwood@freescale.com>
21786
21787 commit f556483734126793522fb7a8cf36af90da78f084
21788 Author: Stefan Roese <sr@denx.de>
21789 Date:   Thu Aug 21 11:05:03 2008 +0200
21790
21791     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
21792
21793     This patch fixes some minor issues introduced with the patch:
21794     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
21795
21796     - Rework memory-queue and PLB arbiter optimization code, that the
21797       local variable is not needed anymore. This removes one #ifdef.
21798     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
21799       of XXX+ 0x01). This was not introduced by Prodyut, just a
21800       copy-paste problem.
21801
21802     Signed-off-by: Stefan Roese <sr@denx.de>
21803
21804 commit 079589bcfb24ba11068460276a3cc9549ab5346f
21805 Author: Prodyut  Hazarika <phazarika@amcc.com>
21806 Date:   Wed Aug 20 09:38:51 2008 -0700
21807
21808     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
21809         PPC405EX and PPC460EX/GT/SX
21810
21811     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
21812       processors
21813     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
21814       across processors (405 and 440/460)
21815     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
21816       processors
21817     - Add register bit definitions for Memory Queue Configuration registers
21818
21819     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
21820     Signed-off-by: Stefan Roese <sr@denx.de>
21821
21822 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
21823 Author: Kumar Gala <galak@kernel.crashing.org>
21824 Date:   Tue Aug 19 15:41:18 2008 -0500
21825
21826     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
21827
21828     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
21829     instead of bd->bi_enetaddr, bi_enet1addr, etc.
21830
21831     This makes the code a bit more flexible to the number of ethernet
21832     interfaces.
21833
21834     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21835
21836 commit 4cacf7c64609839f809e2f9c45873f1d65861703
21837 Author: Stefan Roese <sr@denx.de>
21838 Date:   Tue Aug 19 14:57:55 2008 +0200
21839
21840     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
21841
21842     This patch changes the debug_printf() marco for U-Boot in hush.c and
21843     moves the definition of DEBUG_SHELL to a place that is actually compiled
21844     under U-Boot.
21845
21846     Signed-off-by: Stefan Roese <sr@denx.de>
21847
21848 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
21849 Author: Heiko Schocher <hs@denx.de>
21850 Date:   Tue Aug 19 09:57:41 2008 +0200
21851
21852     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
21853
21854     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
21855     missed a few boards:
21856         include/configs/M5253DEMO.h
21857         include/configs/ml507.h
21858         include/configs/redwood.h
21859
21860     This patch fixes this.
21861
21862     Signed-off-by: Heiko Schocher <hs@denx.de>
21863
21864 commit 0768b7a872964085eece8d5e9fec9175e9deb161
21865 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21866 Date:   Mon Aug 18 13:41:27 2008 +0200
21867
21868     Consolidate strmhz() implementation
21869
21870     ARM, i386, m68k and ppc all have identical implementations of strmhz().
21871     Other architectures don't provide this function at all.
21872
21873     This patch moves strmhz() into lib_generic, reducing code duplication
21874     and providing a more unified API across architectures.
21875
21876     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21877
21878 commit a928d0df211f1d829308d335d19be3ca42558dfc
21879 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21880 Date:   Mon Aug 18 12:02:51 2008 +0200
21881
21882     fix mvbc_p board build warnings
21883
21884     fix build warnings @ mvBC-P board by using correct types, i.e. change
21885     out_be32 to out_be16 and out_8 accordingly.
21886
21887     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21888
21889 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
21890 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21891 Date:   Sat Aug 16 18:54:27 2008 +0200
21892
21893     Makefile: fix posix support on find
21894
21895     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21896
21897 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
21898 Author: Axel Beierlein <belatronix@web.de>
21899 Date:   Sat Aug 16 00:30:48 2008 +0200
21900
21901     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
21902
21903     Tested with TQM5200S on STK52XX.200 Board
21904
21905     Signed-off-by: Axel Beierlein <belatronix@web.de>
21906
21907 commit 0800707b6d5041a840a65d556032c15c584b55f8
21908 Author: Peter Tyser <ptyser@xes-inc.com>
21909 Date:   Fri Aug 15 14:36:32 2008 -0500
21910
21911     mod_i2c_mem() bugfix
21912
21913     The last used chip, address, and address length were not being
21914     stored for the imm and imn commands.
21915
21916     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21917
21918 commit 4afbef967275b2f636abae86f91b81becee7ad03
21919 Author: Steven A. Falco <sfalco@harris.com>
21920 Date:   Fri Aug 15 15:37:31 2008 -0400
21921
21922     Fix typo in spelling of ATAPI.
21923
21924     Correct a small spelling mistake.
21925
21926     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21927
21928 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
21929 Author: Steven A. Falco <sfalco@harris.com>
21930 Date:   Fri Aug 15 15:34:10 2008 -0400
21931
21932     Add a hook to allow board-specific PIO mode setting.
21933
21934     This patch adds a hook whereby a board-specific routine can be called to
21935     configure hardware for a PIO mode.  The prototype for the board-specific
21936     routine is:
21937
21938         int inline ide_set_piomode(int pio_mode)
21939
21940     ide_set_piomode should be prepared to configure hardware for a pio_mode
21941     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
21942
21943     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21944
21945 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
21946 Author: Steven A. Falco <sfalco@harris.com>
21947 Date:   Fri Aug 15 15:29:12 2008 -0400
21948
21949     Replace enums in ata.h with an include of libata.h
21950
21951     This patch removes some enums from ata.h and replaces them with an
21952     include of libata.h.  This way, we eliminate duplicated code, and
21953     prevent errors whereby the different versions could be out of sync.
21954
21955     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21956
21957 commit 0de0afbca865ecf482b4d2b635236746def8518f
21958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21959 Date:   Fri Aug 15 18:32:41 2008 +0200
21960
21961     coldfire: fix CFI drivers activation with new macro
21962
21963     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
21964
21965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21966
21967 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
21968 Author: Kumar Gala <galak@kernel.crashing.org>
21969 Date:   Fri Aug 15 08:24:35 2008 -0500
21970
21971     fdt: fdt addr w/o any args reports back the current working address
21972
21973     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21974
21975 commit f953d99fd528a496b400a706b511eaf8e3ea66af
21976 Author: Kumar Gala <galak@kernel.crashing.org>
21977 Date:   Fri Aug 15 08:24:34 2008 -0500
21978
21979     fdt: added the ability to set initrd start/end via chosen command
21980
21981     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21982
21983 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
21984 Author: Kumar Gala <galak@kernel.crashing.org>
21985 Date:   Fri Aug 15 08:24:33 2008 -0500
21986
21987     Add command to enable/disable interrupts
21988
21989     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21990
21991 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
21992 Author: Nick Spence <nick.spence@freescale.com>
21993 Date:   Tue Aug 19 22:21:16 2008 -0700
21994
21995     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
21996
21997     This patch fixes a missing vendor code in the flash_real_protect() function.
21998
21999     Signed-off-by: Nick Spence <nick.spence@freescale.com>
22000     Signed-off-by: Stefan Roese <sr@denx.de>
22001
22002 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
22003 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22004 Date:   Tue Aug 19 16:53:39 2008 +0000
22005
22006     CFI: Fix AMD Legacy sector protect
22007
22008     New implement sector lock and unlock or softlock commands
22009     do not exist in AMD legacy flash. Thus, causing issue
22010     when erasing AMD legacy flash (such as lv040)
22011
22012     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22013     Signed-off-by: Stefan Roese <sr@denx.de>
22014
22015 commit 492671404140f09d5b21b3d2ce4e362c0692c069
22016 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22017 Date:   Wed Aug 20 09:40:16 2008 +0200
22018
22019     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
22020
22021     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
22022
22023     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22024
22025 commit 33eac2b3d946fc998a09245dfe54d017079b9056
22026 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22027 Date:   Wed Aug 20 09:28:36 2008 +0200
22028
22029     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
22030
22031     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22032
22033 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
22034 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22035 Date:   Wed Aug 20 09:27:37 2008 +0200
22036
22037     favr-32-ezkit: Fix printf format warnings
22038
22039     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22040
22041 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
22042 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22043 Date:   Fri Aug 15 12:04:25 2008 +0200
22044
22045     MAINTAINERS: Sort avr32 section alphabetically
22046
22047     The rest of the MAINTAINERS file appears to be sorted
22048     almost-alphabetically, but entries for the newly added AVR32 boards were
22049     added somewhat randomly. This patch sorts the list alphabetically again.
22050
22051     Also update my e-mail address. The old one still works, but it may not
22052     work forever.
22053
22054     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22055
22056 commit 13b50fe3bc065c48911fa373231421280855a9d6
22057 Author: Mark Jackson <mpfj@mimc.co.uk>
22058 Date:   Wed Jul 30 13:07:27 2008 +0100
22059
22060     avr32: Add MIMC200 board
22061
22062     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
22063     8MByte FLASH and 128KByte FRAM.
22064
22065     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22066     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22067
22068 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
22069 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22070 Date:   Wed Jul 9 21:07:34 2008 +0900
22071
22072     rtl8169: add support for RTL8110SCL
22073
22074     This patch fixes a problem that RTL8110SCL started transfer
22075     with an incorrect memory address.
22076
22077     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22078     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22079
22080 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
22081 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22082 Date:   Wed Jun 25 15:48:52 2008 -0500
22083
22084     Fix dm9000 receive status and len little endian issue
22085
22086     The received status and len was in little endian
22087     format and caused the ethernet unable to proceed
22088     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
22089
22090     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22091     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22092
22093 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
22094 Author: Kumar Gala <galak@kernel.crashing.org>
22095 Date:   Fri Aug 15 08:24:32 2008 -0500
22096
22097     Clean up usage of icache_disable/dcache_disable
22098
22099     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
22100     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
22101     call icache_disable() right after.  Make it so icache_disable() calls
22102     invalidate_l1_instruction_cache() for us.
22103
22104     Also, dcache_disable() already calls dcache_flush() so there is no point
22105     in the explicit calls of dcache_flush().
22106
22107     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22108
22109 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
22110 Author: Kumar Gala <galak@kernel.crashing.org>
22111 Date:   Fri Aug 15 08:24:31 2008 -0500
22112
22113     Update linux bootm to support ePAPR client interface
22114
22115     The ePAPR spec has some subtle differences from the current device
22116     tree based boot interface to the powerpc linux kernel. The powerpc
22117     linux kernel currently ignores the differences that ePAPR specifies.
22118
22119     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22120
22121 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
22122 Author: Wolfgang Denk <wd@denx.de>
22123 Date:   Mon Aug 18 23:50:20 2008 +0200
22124
22125     Minor code cleanup: keep lists sorted.
22126
22127     Signed-off-by: Wolfgang Denk <wd@denx.de>
22128
22129 commit d0039d4ed275e6ca09fb417895024ad02be118c4
22130 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22131 Date:   Wed Jul 23 19:10:14 2008 +0200
22132
22133     Add support for ADT7460 I2C monitor chip
22134
22135     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22136
22137 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
22138 Author: Michal Simek <monstr@monstr.eu>
22139 Date:   Mon Jul 14 19:45:45 2008 +0200
22140
22141     video: Clean drivers/video/Makefile
22142
22143     Signed-off-by: Michal Simek <monstr@monstr.eu>
22144
22145 commit 871c18dd301752270e1f74328c846c3104be1e2e
22146 Author: Michal Simek <monstr@monstr.eu>
22147 Date:   Mon Jul 14 19:45:37 2008 +0200
22148
22149     rtc: Clean drivers/rtc/Makefile
22150
22151     Signed-off-by: Michal Simek <monstr@monstr.eu>
22152
22153 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
22154 Author: Michal Simek <monstr@monstr.eu>
22155 Date:   Mon Jul 14 19:45:35 2008 +0200
22156
22157     i2c: Clean drivers/i2c/ Makefile
22158
22159     Signed-off-by: Michal Simek <monstr@monstr.eu>
22160
22161 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
22162 Author: Harald Welte <laforge@openmoko.org>
22163 Date:   Wed Jul 9 22:30:30 2008 +0800
22164
22165     Add 'license' command to U-Boot command line
22166
22167     The 'license' command includes the U-Boot license (GPLv2) into the
22168     actual bootloader binary. The license text can be shown interactively
22169     at the U-Boot commandline.
22170
22171     For products where the commandline can actually be accessed by the
22172     end user, this helps to prevent inadvertent GPL violations, since the
22173     GPLv2 license text can no longer be 'forgotten' to be included into
22174     the product.
22175
22176     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
22177
22178     Signed-off-by: Harald Welte <laforge@openmoko.org>
22179
22180 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
22181 Author: Harald Welte <laforge@gnumonks.org>
22182 Date:   Sun Jul 6 15:56:38 2008 +0800
22183
22184     add 'unzip' command to u-boot commandline
22185
22186     [PATCH] add new 'unzip' command to u-boot commandline
22187
22188     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
22189     memory to memory, and option CONFIG_CMD_UNZIP to enable it
22190
22191     Signed-off-by: Werner Almesberger <werner@openmoko.org>
22192     Signed-off-by: Harald Welte <laforge@openmoko.org>
22193
22194 commit 07efc9e321619c3dec213310c32e011aa6f02783
22195 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22196 Date:   Wed Aug 6 19:37:17 2008 -0500
22197
22198     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
22199
22200     The CFG_ENV_SIZE is not suitable used for SPI flash erase
22201     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
22202     Add condition check if CFG_ENV_SIZE is larger than
22203     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
22204     erasing.
22205
22206     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22207
22208 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
22209 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22210 Date:   Mon Aug 11 15:54:25 2008 +0000
22211
22212     ColdFire: Multiple fixes for M5282EVB
22213
22214     Incorrect CFG_HZ value, change 1000000 to 1000.
22215     Rename #waring to #warning. RAMBAR1 uses twice
22216     in start.S, rename the later to FLASHBAR. Insert
22217     nop for DRAM setup. And, env_offset in linker file.
22218
22219     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22220
22221 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
22222 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22223 Date:   Mon Aug 11 15:26:43 2008 +0000
22224
22225     ColdFire: Move m5282evb from board to board/freescale
22226
22227     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22228
22229 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
22230 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22231 Date:   Mon Aug 11 15:25:07 2008 +0000
22232
22233     ColdFire: Move m5272c3 from board to board/freescale
22234
22235     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22236
22237 commit 659e9bad629a480f606b286d5703aef7159edf98
22238 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22239 Date:   Mon Aug 11 15:23:16 2008 +0000
22240
22241     ColdFire: Move m5271evb from board to board/freescale
22242
22243     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22244
22245 commit 05316f8ece8206339a208ec052f039cd0f7ca922
22246 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22247 Date:   Mon Aug 11 13:41:49 2008 +0000
22248
22249     ColdFire: Add M54451EVB platform support for MCF5445x
22250
22251     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22252
22253 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
22254 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22255 Date:   Wed Aug 6 19:14:08 2008 -0500
22256
22257     ColdFire: Add Serial Flash support for M54455EVB
22258
22259     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22260
22261 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
22262 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22263 Date:   Wed Jul 23 20:38:53 2008 -0500
22264
22265     ColdFire: Implement SBF feature for M5445EVB
22266
22267     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22268
22269 commit a7323bba229203aae2604afde131ab47bad4eadc
22270 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22271 Date:   Wed Jul 23 17:53:36 2008 -0500
22272
22273     ColdFire: Add SSPI feature for MCF5445x
22274
22275     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22276
22277 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
22278 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22279 Date:   Wed Jul 23 17:37:10 2008 -0500
22280
22281     ColdFire: Use CFI Flash driver for M54455EVB
22282
22283     Remove non-common flash driver in
22284     board/freescale/m54455evb/flash.c. The non-cfi flash will
22285     use CONFIG_FLASH_CFI_LEGACY to configure the flash
22286     attribute.
22287
22288     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22289
22290 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
22291 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22292 Date:   Wed Jul 23 17:11:47 2008 -0500
22293
22294     ColdFire: Add M5253DEMO platform support for MCF5253
22295
22296     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22297
22298 commit 80ba61fd82569af40e04d4a089257b81881884f2
22299 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22300 Date:   Wed Aug 6 14:17:09 2008 -0500
22301
22302     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
22303
22304     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22305
22306 commit d361307e73ce1f6fc68760123f37d4876f851f3e
22307 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22308 Date:   Wed Aug 6 14:11:36 2008 -0500
22309
22310     ColdFire: Fix M5253EVB dram bring up issue
22311
22312     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22313
22314 commit 4b0708093e15b412296328bf81325cf9b69fe512
22315 Author: Wolfgang Denk <wd@denx.de>
22316 Date:   Thu Aug 14 14:41:06 2008 +0200
22317
22318     Coding Style cleanup, update CHANGELOG
22319
22320     Signed-off-by: Wolfgang Denk <wd@denx.de>
22321
22322 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
22323 Author: Scott Wood <scottwood@freescale.com>
22324 Date:   Wed Aug 13 18:24:05 2008 -0500
22325
22326     socrates: Update NAND driver to new API.
22327
22328     Also, fix some minor formatting issues, and simplify the handling of
22329     "state" for writes.
22330
22331     Signed-off-by: Scott Wood <scottwood@freescale.com>
22332
22333 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
22334 Author: Scott Wood <scottwood@freescale.com>
22335 Date:   Wed Aug 13 18:03:40 2008 -0500
22336
22337     quad100hd: Update NAND driver to new API.
22338
22339     Signed-off-by: Scott Wood <scottwood@freescale.com>
22340
22341 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
22342 Author: Scott Wood <scottwood@freescale.com>
22343 Date:   Wed Aug 13 17:53:48 2008 -0500
22344
22345     m5373evb: Update NAND driver to new API.
22346
22347     Signed-off-by: Scott Wood <scottwood@freescale.com>
22348
22349 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
22350 Author: Scott Wood <scottwood@freescale.com>
22351 Date:   Wed Aug 13 17:04:30 2008 -0500
22352
22353     s3c24x0: Update NAND driver to new API.
22354
22355     Signed-off-by: Scott Wood <scottwood@freescale.com>
22356
22357 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
22358 Author: Scott Wood <scottwood@freescale.com>
22359 Date:   Wed Aug 13 15:56:00 2008 -0500
22360
22361     at91: Update board NAND drivers to current API.
22362
22363     Signed-off-by: Scott Wood <scottwood@freescale.com>
22364
22365 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
22366 Author: Kyungmin Park <kmpark@infradead.org>
22367 Date:   Wed Aug 13 09:11:02 2008 +0900
22368
22369     Fix OneNAND build break
22370
22371     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
22372     - fix bufferram management at erase operation
22373     This patch includes the NAND/OneNAND state filed too.
22374
22375     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22376     Signed-off-by: Scott Wood <scottwood@freescale.com>
22377
22378 commit 9483df6408c25f16060432de3868901e352e23bc
22379 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22380 Date:   Wed Aug 13 01:40:43 2008 +0200
22381
22382     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
22383
22384     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22385
22386 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
22387 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22388 Date:   Wed Aug 13 01:40:43 2008 +0200
22389
22390     drivers/mtd/nand: Move conditional compilation to Makefile
22391
22392     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
22393
22394     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22395
22396 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
22397 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22398 Date:   Wed Aug 13 01:40:42 2008 +0200
22399
22400     drivers/mtd/onenand: Move conditional compilation to Makefile
22401
22402     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22403
22404 commit 00b1883a4cac59d97cd297b1a3a398db85982865
22405 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22406 Date:   Wed Aug 13 01:40:42 2008 +0200
22407
22408     drivers/mtd: Move conditional compilation to Makefile
22409
22410     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
22411
22412     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22413
22414 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
22415 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22416 Date:   Wed Aug 13 01:40:41 2008 +0200
22417
22418     drivers/qe: Move conditional compilation to Makefile
22419
22420     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22421
22422 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
22423 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22424 Date:   Wed Aug 13 01:40:40 2008 +0200
22425
22426     drivers/pci: Move conditional compilation to Makefile
22427
22428     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22429
22430 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
22431 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22432 Date:   Wed Aug 13 01:40:40 2008 +0200
22433
22434     drivers/misc: Move conditional compilation to Makefile
22435
22436     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22437
22438 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
22439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22440 Date:   Wed Aug 13 01:40:40 2008 +0200
22441
22442     drivers/input: Move conditional compilation to Makefile
22443
22444     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22445
22446 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
22447 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22448 Date:   Wed Aug 13 01:40:39 2008 +0200
22449
22450     drivers/dma: Move conditional compilation to Makefile
22451
22452     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22453
22454 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
22455 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22456 Date:   Wed Aug 13 01:40:39 2008 +0200
22457
22458     drivers/block: Move conditional compilation to Makefile
22459
22460     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22461
22462 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
22463 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22464 Date:   Wed Aug 13 01:40:39 2008 +0200
22465
22466     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
22467
22468     move also conditional compilation to Makefile
22469
22470     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22471
22472 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
22473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22474 Date:   Wed Aug 13 01:40:38 2008 +0200
22475
22476     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
22477
22478     move also conditional compilation to Makefile
22479
22480     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22481
22482 commit d6e9ee92e890f67594ab150689510df361133ead
22483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22484 Date:   Wed Aug 13 01:40:38 2008 +0200
22485
22486     common: Move conditional compilation to Makefile
22487
22488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22489
22490 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
22491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22492 Date:   Wed Aug 13 01:40:09 2008 +0200
22493
22494     mx31: move freescale's mx31 boards to vendor board dir
22495
22496     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22497
22498 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
22499 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22500 Date:   Sat Jul 5 23:11:11 2008 +0200
22501
22502     at91: move arch-at91sam9 to arch-at91
22503
22504     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22505
22506 commit 195ccfc5991d48764b2519941e3507f693851d5d
22507 Author: Fathi BOUDRA <fabo@debian.org>
22508 Date:   Wed Aug 6 10:06:20 2008 +0200
22509
22510     OneNAND: Fill in MTD function pointers for OneNAND.
22511
22512     onenand_print_device_info():
22513      - Now returns a string to be placed in mtd->name,
22514        rather than calling printf.
22515      - Remove verbose parameter as it becomes useless.
22516
22517     Signed-off-by: Fathi Boudra <fabo@debian.org>
22518     Signed-off-by: Scott Wood <scottwood@freescale.com>
22519
22520 commit aa646643b6bc250cb3a4966bf728876e0c10d329
22521 Author: Guennadi Liakhovetski <lg@denx.de>
22522 Date:   Wed Aug 6 21:42:07 2008 +0200
22523
22524     nand_spl: Support page-aligned read in nand_load, use chipselect
22525
22526     Supporting page-aligned reads doesn't incure any sinificant overhead, just
22527     a small change in the algorithm. Also replace in_8 with readb, since there
22528     is no in_8 on ARM.
22529
22530     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22531     Signed-off-by: Scott Wood <scottwood@freescale.com>
22532
22533 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
22534 Author: Scott Wood <scottwood@freescale.com>
22535 Date:   Tue Aug 5 11:15:59 2008 -0500
22536
22537     NAND boot: Update large page support for current API.
22538
22539     Also, remove the ctrl variable in favor of passing the constants
22540     directly, and remove redundant (u8) casts.
22541
22542     Signed-off-by: Scott Wood <scottwood@freescale.com>
22543
22544 commit e4c09508545d1c45617ba45391c03c03cbc360b9
22545 Author: Scott Wood <scottwood@freescale.com>
22546 Date:   Mon Jun 30 14:13:28 2008 -0500
22547
22548     NAND boot: MPC8313ERDB support
22549
22550     Note that with older board revisions, NAND boot may only work after a
22551     power-on reset, and not after a warm reset.  I don't have a newer board
22552     to test on; if you have a board with a 33MHz crystal, please let me know
22553     if it works after a warm reset.
22554
22555     Signed-off-by: Scott Wood <scottwood@freescale.com>
22556
22557 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
22558 Author: Scott Wood <scottwood@freescale.com>
22559 Date:   Thu Jun 26 14:06:52 2008 -0500
22560
22561     mpc8313erdb: Enable NAND in config.
22562
22563     Signed-off-by: Scott Wood <scottwood@freescale.com>
22564
22565 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
22566 Author: Guennadi Liakhovetski <lg@denx.de>
22567 Date:   Thu Jul 31 12:38:26 2008 +0200
22568
22569     NAND: Do not write or read a whole block if it is larger than the environment
22570
22571     Environment can be smaller than NAND block size, do not need to read a whole
22572     block and minimum for writing is one page. Also remove an unused variable.
22573
22574     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22575     Signed-off-by: Scott Wood <scottwood@freescale.com>
22576
22577 commit eafcabd15f00c142156235c519fcc55b10993241
22578 Author: Marcel Ziswiler <marcel@ziswiler.com>
22579 Date:   Sun Jun 22 16:30:06 2008 +0200
22580
22581     NAND: chip->state does not always get set.
22582
22583     Fixes an issue with chip->state not always being set causing troubles.
22584
22585     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
22586     Signed-off-by: Scott Wood <scottwood@freescale.com>
22587
22588 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
22589 Author: Ilya Yanok <yanok@emcraft.com>
22590 Date:   Mon Jun 30 15:34:40 2008 +0200
22591
22592     NAND: Scan bad blocks lazily.
22593
22594     Rather than scanning on boot, scan upon the first attempt to check the
22595     badness of a block.  This speeds up boot when not using NAND, and reduces
22596     the likelihood of needing to reflash via JTAG if NAND becomes
22597     nonfunctional.
22598
22599     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
22600     Signed-off-by: Scott Wood <scottwood@freescale.com>
22601
22602 commit dfbf617ff055e4216f78d358b0867c548916d14b
22603 Author: Scott Wood <scottwood@freescale.com>
22604 Date:   Thu Jun 12 13:20:16 2008 -0500
22605
22606     NAND read/write fix
22607
22608     Implement block-skipping read/write, based on a patch from
22609     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
22610
22611     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
22612     Signed-off-by: Scott Wood <scottwood@freescale.com>
22613
22614 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
22615 Author: Scott Wood <scottwood@freescale.com>
22616 Date:   Thu Jun 12 13:13:23 2008 -0500
22617
22618     NAND: Always skip blocks on read/write/boot.
22619
22620     Use of the non-skipping versions was almost always (if not always)
22621     an error, and no valid use case has been identified.
22622
22623     Signed-off-by: Scott Wood <scottwood@freescale.com>
22624
22625 commit e1c3dbada349992875934575c97b328ab2cb33ca
22626 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22627 Date:   Thu Jun 12 11:10:21 2008 -0500
22628
22629     nand: fsl_upm: convert to updated MTD NAND infrastructure
22630
22631     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22632     Signed-off-by: Scott Wood <scottwood@freescale.com>
22633
22634 commit 300253306acc72b1b2e9faf0987f86551151d7cf
22635 Author: Scott Wood <scottwood@freescale.com>
22636 Date:   Thu May 22 15:02:46 2008 -0500
22637
22638     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
22639
22640     The hardware has separate registers for block and page-within-block,
22641     but the division between the two has no apparent relation to the
22642     actual erase block size of the NAND chip.
22643
22644     Signed-off-by: Scott Wood <scottwood@freescale.com>
22645
22646 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
22647 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22648 Date:   Fri Mar 28 22:10:54 2008 +0300
22649
22650     fsl_elbc_nand: workaround for hangs during nand write
22651
22652     Using current driver elbc sometimes hangs during nand write. Reading back
22653     last byte helps though (thanks to Scott Wood for the idea).
22654
22655     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22656     Signed-off-by: Scott Wood <scottwood@freescale.com>
22657
22658 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
22659 Author: Scott Wood <scottwood@freescale.com>
22660 Date:   Fri Mar 21 16:12:51 2008 -0500
22661
22662     Freescale eLBC FCM NAND driver
22663
22664     This is a driver for the Flash Control Machine of the enhanched Local Bus
22665     Controller found on some Freescale chips (such as the mpc8313 and the
22666     mpc8379).
22667
22668     Signed-off-by: Scott Wood <scottwood@freescale.com>
22669
22670 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
22671 Author: Scott Wood <scottwood@freescale.com>
22672 Date:   Tue Mar 18 15:29:14 2008 -0500
22673
22674     Don't panic if a controller driver does ecc its own way.
22675
22676     Some hardware, such as the enhanced local bus controller used on some
22677     mpc83xx chips, does ecc transparently when reading and writing data, rather
22678     than providing a generic calculate/correct mechanism that can be exported to
22679     the nand subsystem.
22680
22681     The subsystem should not BUG() when calculate, correct, or hwctl are
22682     missing, if the methods that call them have been overridden.
22683
22684     Signed-off-by: Scott Wood <scottwood@freescale.com>
22685
22686 commit e52b34d40a8a646e3d11638ea8797e96398dba13
22687 Author: Stefan Roese <sr@denx.de>
22688 Date:   Thu Jan 10 18:47:33 2008 +0100
22689
22690     NAND: Make NAND driver less verbose per default
22691
22692     This patch turns off printing of bad blocks per default upon bootup.
22693     This can always be shown via the "nand bad" command later.
22694
22695     Signed-off-by: Stefan Roese <sr@denx.de>
22696
22697 commit fe56a2772e5c59577df906163d0d4b29b056140e
22698 Author: Sergey Kubushyn <ksi@koi8.net>
22699 Date:   Wed Jan 9 15:36:20 2008 +0100
22700
22701     NAND: Davinci driver updates
22702
22703     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
22704     don't have hardware handy so I can not test it at the moment but changes are
22705     rather trivial so it should work. It would be nice if somebody with a
22706     hardware checked it anyways.
22707
22708     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
22709
22710 commit deac913effd8d80535c9ff4687b6fcdff540c554
22711 Author: Stefan Roese <sr@denx.de>
22712 Date:   Sat Jan 5 16:50:32 2008 +0100
22713
22714     NAND: Fix compilation warning and small coding style issue
22715
22716     Signed-off-by: Stefan Roese <sr@denx.de>
22717
22718 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
22719 Author: Stefan Roese <sr@denx.de>
22720 Date:   Sat Jan 5 16:49:37 2008 +0100
22721
22722     NAND: Update nand_spl driver to match updated nand subsystem
22723
22724     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
22725     the new infrastructure from the updated NAND subsystem. This NAND
22726     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
22727     subsystem.
22728
22729     Signed-off-by: Stefan Roese <sr@denx.de>
22730
22731 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
22732 Author: Stefan Roese <sr@denx.de>
22733 Date:   Sat Jan 5 16:47:58 2008 +0100
22734
22735     NAND: Update 4xx NDFC driver to match updated nand subsystem
22736
22737     This patch changes the 4xx NAND driver ndfc.c to match the new
22738     infrastructure from the updated NAND subsystem. This NAND
22739     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
22740     subsystem.
22741
22742     Tested successfully on AMCC Sequoia and Bamboo.
22743
22744     Signed-off-by: Stefan Roese <sr@denx.de>
22745
22746 commit 12072264528eba33737bc9674e19f0e925ffda23
22747 Author: Stefan Roese <sr@denx.de>
22748 Date:   Sat Jan 5 16:43:25 2008 +0100
22749
22750     NAND: Change nand_wait_ready() to not call nand_wait()
22751
22752     This patch changes nand_wait_ready() to not just call nand_wait(),
22753     since this will send a new command to the NAND chip. We just want to
22754     wait for the chip to become ready here.
22755
22756     Signed-off-by: Stefan Roese <sr@denx.de>
22757
22758 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
22759 Author: William Juul <william.juul@datarespons.no>
22760 Date:   Fri Dec 14 16:33:45 2007 +0100
22761
22762     make nand dump and nand dump.oob work
22763
22764     Signed-off-by: William Juul <william.juul@tandberg.com>
22765     Signed-off-by: Scott Wood <scottwood@freescale.com>
22766
22767 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
22768 Author: William Juul <william.juul@datarespons.no>
22769 Date:   Mon Nov 19 14:46:00 2007 +0100
22770
22771     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
22772
22773     Signed-off-by: William Juul <william.juul@tandberg.com>
22774
22775 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
22776 Author: William Juul <william.juul@tandberg.com>
22777 Date:   Tue Jun 10 16:18:13 2008 -0500
22778
22779     Clean out unneeded files
22780
22781     Signed-off-by: William Juul <william.juul@tandberg.com>
22782
22783 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
22784 Author: William Juul <william.juul@datarespons.no>
22785 Date:   Fri Nov 16 08:44:27 2007 +0100
22786
22787     Create symlinks from yaffs2/direct to yaffs2
22788
22789     Signed-off-by: William Juul <william.juul@tandberg.com>
22790
22791 commit 90ef117b68387d66763291af0117677644166611
22792 Author: William Juul <william.juul@datarespons.no>
22793 Date:   Thu Nov 15 12:23:57 2007 +0100
22794
22795     Incorporate yaffs2 into U-boot
22796
22797     To use YAFFS2 define CONFIG_YAFFS2
22798
22799     Signed-off-by: William Juul <william.juul@tandberg.com>
22800     Signed-off-by: Scott Wood <scottwood@freescale.com>
22801
22802 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
22803 Author: William Juul <william.juul@datarespons.no>
22804 Date:   Thu Nov 15 11:13:05 2007 +0100
22805
22806     YAFFS2 import
22807
22808     Direct import of yaffs as a tarball as of 20071113 from their public
22809     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
22810
22811     The code can also be imported on the command line with:
22812     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
22813     (Hit return when asked for a password)
22814     cvs checkout yaffs2
22815
22816     Signed-off-by: William Juul <william.juul@tandberg.com>
22817     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
22818
22819 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
22820 Author: William Juul <william.juul@datarespons.no>
22821 Date:   Wed Nov 14 14:28:11 2007 +0100
22822
22823     Whitespace cleanup and marking broken code.
22824
22825     Changes requested by maintainer Stefan Roese after
22826     posting patch to U-boot mailing list.
22827
22828     Signed-off-by: William Juul <william.juul@tandberg.com>
22829     Signed-off-by: Scott Wood <scottwood@freescale.com>
22830
22831 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
22832 Author: William Juul <william.juul@datarespons.no>
22833 Date:   Fri Nov 9 13:32:30 2007 +0100
22834
22835     Fixing coding style issues
22836
22837      - Fixing leading white spaces
22838      - Fixing indentation where 4 spaces are used instead of tab
22839      - Removing C++ comments (//), wherever I introduced them
22840
22841     Signed-off-by: William Juul <william.juul@tandberg.com>
22842     Signed-off-by: Scott Wood <scottwood@freescale.com>
22843
22844 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
22845 Author: William Juul <william.juul@datarespons.no>
22846 Date:   Thu Nov 8 10:39:53 2007 +0100
22847
22848     Remove white space at end.
22849
22850     Signed-off-by: William Juul <william.juul@tandberg.com>
22851     Signed-off-by: Scott Wood <scottwood@freescale.com>
22852
22853 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
22854 Author: William Juul <william.juul@datarespons.no>
22855 Date:   Wed Oct 31 13:53:06 2007 +0100
22856
22857     Update MTD to that of Linux 2.6.22.1
22858
22859     A lot changed in the Linux MTD code, since it was last ported from
22860     Linux to U-Boot. This patch takes U-Boot NAND support to the level
22861     of Linux 2.6.22.1 and will enable support for very large NAND devices
22862     (4KB pages) and ease the compatibility between U-Boot and Linux
22863     filesystems.
22864
22865     This patch is tested on two custom boards with PPC and ARM
22866     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
22867     cross compilers.
22868
22869     MAKEALL ppc/arm has some issues:
22870      * DOC/OneNand/nand_spl is not building (I have not tried porting
22871        these parts, and since I do not have any HW and I am not familiar
22872        with this code/HW I think its best left to someone else.)
22873
22874     Except for the issues mentioned above, I have ported all drivers
22875     necessary to run MAKEALL ppc/arm without errors and warnings. Many
22876     drivers were trivial to port, but some were not so trivial. The
22877     following drivers must be examined carefully and maybe rewritten to
22878     some degree:
22879      cpu/ppc4xx/ndfc.c
22880      cpu/arm926ejs/davinci/nand.c
22881      board/delta/nand.c
22882      board/zylonite/nand.c
22883
22884     Signed-off-by: William Juul <william.juul@tandberg.com>
22885     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
22886     Signed-off-by: Scott Wood <scottwood@freescale.com>
22887
22888 commit cd82919e6c8a73b363a26f34b734923844e52d1c
22889 Author: Wolfgang Denk <wd@denx.de>
22890 Date:   Tue Aug 12 16:08:38 2008 +0200
22891
22892     Coding style cleanup, update CHANGELOG, prepare release
22893
22894     Signed-off-by: Wolfgang Denk <wd@denx.de>
22895
22896 commit 17e900b8c0f38d922da47073246219dce2a847f2
22897 Author: Wolfgang Denk <wd@denx.de>
22898 Date:   Tue Aug 12 14:54:04 2008 +0200
22899
22900     MVBC_P: fix compile problem
22901
22902     Signed-off-by: Wolfgang Denk <wd@denx.de>
22903
22904 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
22905 Author: Wolfgang Denk <wd@denx.de>
22906 Date:   Tue Aug 12 12:10:11 2008 +0200
22907
22908     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
22909
22910     Signed-off-by: Wolfgang Denk <wd@denx.de>
22911
22912 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
22913 Author: Wolfgang Denk <wd@denx.de>
22914 Date:   Tue Aug 12 00:36:53 2008 +0200
22915
22916     ads5121: fix compiler warnings (unused variables)
22917
22918     Signed-off-by: Wolfgang Denk <wd@denx.de>
22919
22920 commit 902ca09246039964d59bbcb519b1e1b5aed01308
22921 Author: Kumar Gala <galak@kernel.crashing.org>
22922 Date:   Mon Aug 11 11:29:28 2008 -0500
22923
22924     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
22925
22926     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
22927
22928     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22929     Acked-by: Jon Loeliger <jdl@freescale.com>
22930
22931 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
22932 Author: Kumar Gala <galak@kernel.crashing.org>
22933 Date:   Mon Aug 11 09:20:53 2008 -0500
22934
22935     Fix fallout from autostart revert
22936
22937     The autostart revert caused a bit of duplicated code as well as
22938     code that was using images->autostart that needs to get removed so
22939     we can build again.
22940
22941     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22942
22943 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
22944 Author: Kumar Gala <galak@kernel.crashing.org>
22945 Date:   Mon Aug 11 09:16:25 2008 -0500
22946
22947     Fix compile error related to r8a66597-hcd & usb
22948
22949     When building the 8544DS board we get this error:
22950
22951     In file included from r8a66597-hcd.c:22:
22952     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
22953     make[1]: *** [r8a66597-hcd.o] Error 1
22954
22955     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
22956     is set.
22957
22958     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22959
22960 commit 2d0daa03612338a813e3c9d22680e54eabfea378
22961 Author: Becky Bruce <becky.bruce@freescale.com>
22962 Date:   Mon Aug 4 14:02:26 2008 -0500
22963
22964     POWERPC 86xx: Move BAT setup code to C
22965
22966     This is needed because we will be possibly be locating
22967     devices at physical addresses above 32bits, and the asm
22968     preprocessing does not appear to deal with ULL constants
22969     properly. We now call write_bat in lib_ppc/bat_rw.c.
22970
22971     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22972     Acked-by: Jon Loeliger <jdl@freescale.com>
22973
22974 commit 9de67149db576c91b9c2a0a182652331e7e44211
22975 Author: Becky Bruce <becky.bruce@freescale.com>
22976 Date:   Mon Aug 4 14:01:53 2008 -0500
22977
22978     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
22979
22980     Perform sync/isync as required by the architecture.
22981
22982     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22983     Acked-by: Jon Loeliger <jdl@freescale.com>
22984
22985 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
22986 Author: Becky Bruce <becky.bruce@freescale.com>
22987 Date:   Mon Aug 4 14:01:16 2008 -0500
22988
22989     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
22990
22991     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22992     Acked-by: Jon Loeliger <jdl@freescale.com>
22993
22994 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
22995 Author: Magnus Lilja <lilja.magnus@gmail.com>
22996 Date:   Sun Aug 3 21:44:10 2008 +0200
22997
22998     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
22999
23000     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
23001     contacts instead of only the first 256 ones as is the case prior to
23002     this patch.
23003
23004     Add missing MUX_* macros and update board files to use the new macros.
23005
23006     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
23007
23008 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
23009 Author: Magnus Lilja <lilja.magnus@gmail.com>
23010 Date:   Sun Aug 3 21:43:37 2008 +0200
23011
23012     i.MX31: Fix IOMUX related typos
23013
23014     Correct the names of some IOMUX macros.
23015
23016     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
23017
23018 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
23019 Author: Steve Sakoman <steve@sakoman.com>
23020 Date:   Mon Aug 11 20:26:16 2008 +0200
23021
23022     OneNAND: Remove unused parameters to onenand_verify_page
23023
23024     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.
23025
23026     Signed-off-by: Steve Sakoman <steve@sakoman.com>
23027     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
23028
23029 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
23030 Author: Anatolij Gustschin <agust@denx.de>
23031 Date:   Fri Aug 8 18:00:40 2008 +0200
23032
23033     video: fix bug in cfb_console code
23034
23035     FILL_15BIT_555RGB macro extension for pixel swapping
23036     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
23037     introduced a bug in cfb_console:
23038
23039     Bitmaps with odd-numbered width won't be rendered
23040     correctly and even U-Boot crashes are observed on
23041     some platforms while repeated rendering of such
23042     bitmaps with "bmp display". Also if a bitmap is
23043     rendered to an odd-numbered x starting position,
23044     the same problem occurs. This patch is an attempt
23045     to fix it.
23046
23047     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23048
23049 commit d9015f6a50d7258125349ef5c2af836458a0029a
23050 Author: Anatolij Gustschin <agust@denx.de>
23051 Date:   Fri Aug 8 18:00:39 2008 +0200
23052
23053     video: fix bug in logo_plot
23054
23055     If logo_plot() should ever be called with x starting
23056     position other than zero and for pixel depths greater
23057     than 8bpp, logo colors distortion will be observed.
23058     This patch fixes the issue.
23059
23060     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23061
23062 commit 406819ae94f79f5b59e01d163380ca7d83709251
23063 Author: Wolfgang Denk <wd@denx.de>
23064 Date:   Mon Aug 11 00:17:52 2008 +0200
23065
23066     MAINTAINERS: sort entries
23067
23068     Signed-off-by: Wolfgang Denk <wd@denx.de>
23069
23070 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
23071 Author: Roy Zang <tie-fei.zang@freescale.com>
23072 Date:   Thu Aug 7 18:19:28 2008 +0800
23073
23074     Add mpc7448hpc2 maintainer information
23075
23076     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
23077
23078 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
23079 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
23080 Date:   Thu Aug 7 13:13:27 2008 +0530
23081
23082     common/cmd_load.c - Minor code & Coding Style cleanup
23083
23084     - os_data_header Variable is a carry over feature
23085        & unused. So removed all instance of this variable
23086      - Minor Code Style Update
23087
23088     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
23089     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23090
23091 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
23092 Author: Magnus Lilja <lilja.magnus@gmail.com>
23093 Date:   Wed Aug 6 19:32:33 2008 +0200
23094
23095     Update the U-Boot wiki URL.
23096
23097     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
23098
23099 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
23100 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
23101 Date:   Sun Aug 10 17:56:36 2008 +0200
23102
23103     OneNAND: Remove base address offset usage
23104
23105     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
23106     using OneNAND and some using NAND, we found some differences in OneNAND and
23107     NAND command address handling.
23108
23109     As this might confuse users (it already confused us), we like to align OneNAND
23110     and NAND address handling.
23111
23112     The issue is that cmd_onenand.c subtracts the onenand base address from the
23113     addresses you type into the u-boot command line so, unlike nand, you can't
23114     use addresses relative to the start of the onenand part e.g. this won't work:
23115
23116     onenand read 82000000 280000 400000
23117
23118     you have to use:
23119
23120     onenand read 82000000 20280000 400000
23121
23122     Looking at recent git, the only board currently using OneNAND is Apollon, and
23123     for this the OneNAND base address is 0 (apollon.h)
23124
23125     #define     CFG_ONENAND_BASE        0x00000000
23126
23127     so patch below won't break any existing boards and will align OneNAND and NAND
23128     handling on boards where OneNAND base address is != 0.
23129
23130     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
23131     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
23132     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
23133
23134 commit c11528083ef6e55e76df742228c26e39d151813d
23135 Author: Kumar Gala <galak@kernel.crashing.org>
23136 Date:   Thu Aug 7 09:28:20 2008 -0500
23137
23138     mpc85xx: workaround old binutils bug
23139
23140     The recent change to move the .bss outside of the image gives older
23141     binutils (ld from eldk4.1/binutils-2.16) some headache:
23142
23143     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
23144     ppc_85xx-ld: final link failed: Bad value
23145
23146     We workaround it by being explicit about the program headers and not
23147     assigning the .bss to a program header.
23148
23149     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23150
23151 commit 0bf202ec586d4466c900e987720fa635c594d689
23152 Author: Wolfgang Denk <wd@denx.de>
23153 Date:   Sun Aug 10 01:26:26 2008 +0200
23154
23155     Revert "[new uImage] Add autostart flag to bootm_headers structure"
23156
23157     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
23158
23159     The commit was based on a misunderstanding of the (documented)
23160     meaning of the 'autostart' environment variable. It might cause
23161     boards to hang if 'autostart' was used, with the potential to brick
23162     them. Go back to the documented behaviour.
23163
23164     Conflicts:
23165
23166         common/cmd_bootm.c
23167         common/image.c
23168         include/image.h
23169
23170     Signed-off-by: Wolfgang Denk <wd@denx.de>
23171
23172 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
23173 Author: Wolfgang Denk <wd@denx.de>
23174 Date:   Sat Aug 9 23:17:32 2008 +0200
23175
23176     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
23177
23178     - enable CFI driver where this was forgotten
23179     - enable mtdparts support
23180     - adjust default environment
23181     etc.
23182
23183     Signed-off-by: Wolfgang Denk <wd@denx.de>
23184
23185 commit 41266c9b5a5f873df3ec891bb0907616958b5602
23186 Author: Peter Tyser <ptyser@xes-inc.com>
23187 Date:   Tue Aug 5 10:51:57 2008 -0500
23188
23189     FIT: Fix handling of images without ramdisks
23190
23191     boot_get_ramdisk() should not treat the case when a FIT image does
23192     not contain a ramdisk as an error.
23193
23194     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23195     Acked-by: Michal Simek <monstr@monstr.eu>
23196
23197 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
23198 Author: Sergey Lapin <slapin@ossfans.org>
23199 Date:   Sat Aug 9 01:39:09 2008 +0400
23200
23201     DataFlash: AT45DB021 fix and AT45DB081 support
23202
23203     Fix for page size of AT45DB021. Also adding bigger AT45DB081
23204     which comes with some newer boards.
23205
23206     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
23207
23208 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
23209 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23210 Date:   Fri Aug 8 16:30:23 2008 +0900
23211
23212     sh: Update sh7763rdp config
23213
23214     Add sh_eth support to sh7763rdp.
23215
23216     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23217
23218 commit 21f971ec265f6042ec21636d55d06a6bc0751077
23219 Author: Wolfgang Denk <wd@denx.de>
23220 Date:   Mon Jul 7 01:22:29 2008 +0200
23221
23222     TQM823L: re-enable logo support; update LCD_INFO text
23223
23224     Signed-off-by: Wolfgang Denk <wd@denx.de>
23225
23226 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
23227 Author: Wolfgang Denk <wd@denx.de>
23228 Date:   Fri Aug 8 16:41:56 2008 +0200
23229
23230     TQM8xxL: fix support for second flash bank
23231
23232     When switching the TQM8xxL modules to use the CFI flash driver,
23233     support for the second flash bank was broken because the CFI driver
23234     did not support dynamically sized banks. This gets fixed now.
23235
23236     Signed-off-by: Wolfgang Denk <wd@denx.de>
23237
23238 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
23239 Author: Wolfgang Denk <wd@denx.de>
23240 Date:   Fri Aug 8 16:39:54 2008 +0200
23241
23242     CFI: allow for dynamically determined flash sizes and addresses
23243
23244     The CFI driver allowed only for static initializers in the
23245     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
23246     several flash banks contiguously if the bank sizes were not known in
23247     advance, which kind of violates U-Boot's design philosophy.
23248
23249     (will be used for example by the TQM8xxL boards)
23250
23251     Signed-off-by: Wolfgang Denk <wd@denx.de>
23252
23253 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
23254 Author: Ben Warren <biggerbadderben@gmail.com>
23255 Date:   Thu Aug 7 23:26:35 2008 -0700
23256
23257     QE UEC: Fix compiler warnings
23258
23259     Moved static functions earlier in file so forward declarations are not needed.
23260
23261     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23262
23263 commit d5d28fe4aad5f4535400647a5617c11039506467
23264 Author: David Saada <David.Saada@ecitele.com>
23265 Date:   Mon Mar 31 02:37:38 2008 -0700
23266
23267     QE UEC: Add MII Commands
23268
23269     Add MII commands to the UEC driver. Note that once a UEC device is selected,
23270     any device on its MDIO bus can be addressed.
23271
23272     Signed-off-by: David Saada <david.saada@ecitele.com>
23273     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23274
23275 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
23276 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
23277 Date:   Wed Jul 9 21:07:38 2008 +0900
23278
23279     usb: add support for R8A66597 usb controller
23280
23281     add support for Renesas R8A66597 usb controller.
23282     This patch supports USB Host mode.
23283
23284     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
23285     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23286
23287 commit 1d10dcd041aaeae9fd7c821005692898a0303382
23288 Author: Hunter, Jon <jon-hunter@ti.com>
23289 Date:   Sat Jul 26 18:59:16 2008 -0500
23290
23291     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
23292
23293     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
23294
23295     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
23296     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23297
23298 commit eab1007334b93a6209f1ec33615e26ef5311ede7
23299 Author: Steven A. Falco <sfalco@harris.com>
23300 Date:   Wed Aug 6 15:42:52 2008 -0400
23301
23302     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
23303
23304     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
23305     configuration to match the schematic, and also sets the SDR0_PFC1 register to
23306     select the corresponding mode for the UARTs.
23307
23308     Signed-off-by: Steven A. Falco <sfalco@harris.com>
23309     Signed-off-by: Stefan Roese <sr@denx.de>
23310
23311 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
23312 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
23313 Date:   Wed Aug 6 14:42:13 2008 +0200
23314
23315     avr32: add support for EarthLCD Favr-32 board
23316
23317     This patch adds support for the Favr-32 board made by EarthLCD.
23318
23319     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
23320     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
23321     Ethernet, audio out, USB device, SD-card slot, USART and various other
23322     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
23323
23324     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
23325     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23326
23327 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
23328 Author: Rafael Campos <rafael.campos@hanscan.com>
23329 Date:   Thu Jul 31 10:22:20 2008 +0200
23330
23331     cfi-flash: Added support to flash_real_protect for Atmel flash devices
23332
23333     Some of the flash memories produced by ATMEL start in read-only mode.
23334     We need to unprotect it. This patch allows the AT49BV6416 to work with
23335     cfi_flash memories. Tested in the at91rm9200ek board.
23336
23337     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
23338     Signed-off-by: Stefan Roese <sr@denx.de>
23339
23340 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
23341 Author: Guennadi Liakhovetski <lg@denx.de>
23342 Date:   Tue Aug 5 15:36:39 2008 +0200
23343
23344     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
23345
23346     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23347     Signed-off-by: Stefan Roese <sr@denx.de>
23348
23349 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
23350 Author: Stefan Roese <sr@denx.de>
23351 Date:   Wed Aug 6 14:06:03 2008 +0200
23352
23353     Fix merge problems
23354
23355     Signed-off-by: Stefan Roese <sr@denx.de>
23356
23357 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
23358 Author: Stefan Roese <sr@denx.de>
23359 Date:   Wed Aug 6 14:05:38 2008 +0200
23360
23361     Fix merge problems
23362
23363     Signed-off-by: Stefan Roese <sr@denx.de>
23364
23365 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
23366 Author: Kenneth Johansson <kenneth@southpole.se>
23367 Date:   Tue Jul 15 12:13:38 2008 +0200
23368
23369     mpc5121: Move iopin features from board specific to common files.
23370
23371     And in the process eliminate some duplicate register defines.
23372
23373     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
23374
23375 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
23376 Author: John Rigby <jrigby@freescale.com>
23377 Date:   Tue Aug 5 17:38:57 2008 -0600
23378
23379     mpc5121: squash some fdt fixup errors
23380
23381     On ADS5121 when booting linux the following errors are seen:
23382         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
23383         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
23384         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
23385
23386     This is caused by ft_cpu_setup trying to deal with
23387     both old and new soc node naming.  This patch
23388     fixes this by being smarter about what to
23389     fixup.
23390
23391     Also do soc node fixups by compatible instead of by path.
23392     A new board config called OF_SOC_COMPAT defined
23393     to be "fsl,mpc5121-immr" replaces the old
23394     OF_SOC node path that was defined to be "soc@80000000".
23395
23396     Old device trees still work, but the compatiblity
23397     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
23398     which is on by default in include/configs/ads5121.h.
23399
23400     Signed-off-by: John Rigby <jrigby@freescale.com>
23401
23402 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
23403 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23404 Date:   Sat Aug 2 23:48:30 2008 +0200
23405
23406     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
23407
23408     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23409
23410 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
23411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23412 Date:   Sat Aug 2 23:48:32 2008 +0200
23413
23414     nios2/sysid: fix printf warning
23415
23416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23417
23418 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
23419 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23420 Date:   Sat Aug 2 23:48:33 2008 +0200
23421
23422     Fix remaining build issues with MPC8xx FADS boards.
23423
23424     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23425
23426 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
23427 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23428 Date:   Sat Aug 2 23:48:31 2008 +0200
23429
23430     nios2: fix phys_addr_t and phys_size_t support
23431
23432     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23433
23434 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
23435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23436 Date:   Sat Aug 2 23:48:34 2008 +0200
23437
23438     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
23439
23440     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23441
23442 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
23443 Author: Mark Jackson <mpfj@mimc.co.uk>
23444 Date:   Fri Aug 1 09:48:29 2008 +0100
23445
23446     Fix bitmap display for atmel lcd controller
23447
23448     The current lcd_display_bitmap() function does not work properly
23449     for the Atmel LCD controller.
23450
23451     2 fixes need to be done:-
23452
23453     (a) when setting the colour map, use the lcd_setcolreg() function
23454         as provided by the Atmel driver
23455     (b) the data is never actually written to the lcd framebuffer !!
23456
23457     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
23458
23459 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
23460 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23461 Date:   Fri Aug 1 08:40:34 2008 +0200
23462
23463     qemu_mips: update README to follow qemu update about default machine
23464
23465     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23466
23467 commit ac169d645f5f0e0b9a232563099209e92a355d8e
23468 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23469 Date:   Thu Jul 31 19:53:21 2008 -0500
23470
23471     ColdFire: Fix compilation issue caused by a missing function
23472
23473     Implement usec2ticks() which is used by fsl_i2c.c in
23474     lib_m68k/time.c
23475
23476     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23477
23478 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
23479 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23480 Date:   Thu Jul 31 19:53:06 2008 -0500
23481
23482     Fix compilation error for TASREG
23483
23484     TASREG is ColdFire platform, the include ppc4xx.h in
23485     board/esd/common/flash.c causes conflict.
23486
23487     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23488
23489 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
23490 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23491 Date:   Thu Jul 31 19:52:36 2008 -0500
23492
23493     Fix compilation error for MCF5275
23494
23495     Rename OBJ to COBJ in board/platform/Makefile
23496
23497     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23498
23499 commit 5c40548f01218360a1f1395198c50ff45f3035b5
23500 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23501 Date:   Thu Jul 31 19:52:28 2008 -0500
23502
23503     Fix compile error caused by incorrect function return type
23504
23505     Rename int mii_init(void) to void mii_init(void) for idmr
23506     ColdFire platform
23507
23508     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23509
23510 commit a58c78067c928976c082c758d3987e89ead5b191
23511 Author: Wolfgang Denk <wd@denx.de>
23512 Date:   Fri Aug 1 12:06:22 2008 +0200
23513
23514     Fix build issues with MPC8xx FADS boards.
23515
23516     Signed-off-by: Wolfgang Denk <wd@denx.de>
23517
23518 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
23519 Author: Wolfgang Denk <wd@denx.de>
23520 Date:   Thu Jul 31 17:54:03 2008 +0200
23521
23522     Prepare v1.3.4-rc2: update CHANGELOG
23523
23524     Signed-off-by: Wolfgang Denk <wd@denx.de>
23525
23526 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
23527 Author: Mark Jackson <mpfj@mimc.co.uk>
23528 Date:   Thu Jul 31 16:09:00 2008 +0100
23529
23530     Add gzipped logo support
23531
23532     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
23533
23534       If this option is set, additionally to standard BMP
23535       images, gzipped BMP images can be displayed via the
23536       splashscreen support or the bmp command.
23537
23538     However, the splashscreen function *only* supports standard BMP images.
23539
23540     This patch adds the documented gzip support.
23541
23542     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
23543
23544 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
23545 Author: Mark Jackson <mpfj@mimc.co.uk>
23546 Date:   Thu Jul 31 15:56:48 2008 +0100
23547
23548     Fix Atmel LCD controller endianess for AVR32 processors
23549
23550     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
23551     AVR32 (big endian) platforms.
23552
23553     As such, the controller can handle both big and little endian memory.
23554
23555     This patch fixes the driver for the AVR32 platform.
23556
23557     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
23558
23559 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
23560 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23561 Date:   Thu Jul 31 15:56:01 2008 +0200
23562
23563     apollon: fix build out of tree
23564
23565     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23566
23567 commit 2e752be39d3e398d4ab89ffa6634c397df298297
23568 Author: Guennadi Liakhovetski <lg@denx.de>
23569 Date:   Thu Jul 31 12:35:04 2008 +0200
23570
23571     Uncompressed images loaded to their start address shall set load_end too
23572
23573     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23574     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
23575
23576 commit c37207d7f51e19c17f859966f314e27cc1231801
23577 Author: Wolfgang Denk <wd@denx.de>
23578 Date:   Wed Jul 16 16:38:59 2008 +0200
23579
23580     Fix printf() format problems with configurable prompts
23581
23582     U-Boot allows for configurable prompt strings using the
23583     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
23584     the assumption was that any such user defined problts would contain
23585     exactly one "%d" format specifier. But some boards did not.
23586
23587     To allow for flexible boot prompts without adding too complex code we
23588     now allow to specify the whole list of printf() arguments in the user
23589     definition. This is powerful, but requires a responsible user who
23590     really understands what he is doing, as he needs to know for exanple
23591     which variables are available in the respective context.
23592
23593     Signed-off-by: Wolfgang Denk <wd@denx.de>
23594
23595 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
23596 Author: Wolfgang Denk <wd@denx.de>
23597 Date:   Thu Jul 31 17:02:14 2008 +0200
23598
23599     TQM85xx: fix typo introduce by commit ffbb5cb9
23600
23601     Signed-off-by: Wolfgang Denk <wd@denx.de>
23602
23603 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
23604 Author: Wolfgang Denk <wd@denx.de>
23605 Date:   Thu Jul 31 15:27:01 2008 +0200
23606
23607     mvbc_p board: fix most build warnings.
23608
23609     Signed-off-by: Wolfgang Denk <wd@denx.de>
23610
23611 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
23612 Author: Wolfgang Denk <wd@denx.de>
23613 Date:   Thu Jul 31 13:57:20 2008 +0200
23614
23615     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
23616
23617     Avoid "integer constant is too large for 'long' type" warnings.
23618     And simplify the code.
23619
23620     Signed-off-by: Wolfgang Denk <wd@denx.de>
23621
23622 commit 9196b44334c330cc13de2464c59181e4db71f549
23623 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
23624 Date:   Wed Jul 30 23:21:19 2008 +0400
23625
23626     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
23627
23628     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
23629
23630 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
23631 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
23632 Date:   Wed Jul 30 23:20:32 2008 +0400
23633
23634     PPC: Add pci_clk in the global_data for CPM2 processors
23635
23636     This patch adds pci_clk field to the global_data structure for the
23637     processors which have CPM2 module in case the CONFIG_PCI is defined.
23638
23639     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
23640
23641 commit f0ff885ca64655bee6540eb8a25eed90b1152686
23642 Author: Kumar Gala <galak@kernel.crashing.org>
23643 Date:   Wed Jul 30 14:13:30 2008 -0500
23644
23645     mpc85xx: Update linker scripts for Freescale boards
23646
23647     * Move to using absolute addressing always.  Makes the scripts a bit more
23648       portable and common
23649     * Moved .bss after the end of the image.  These allows us to have more
23650       room in the resulting binary image for code and data.
23651     * Removed .text object files that aren't really needed
23652     * Make sure _end is 4-byte aligned as the .bss init code expects this.
23653       (Its possible that the end of .bss isn't 4-byte aligned)
23654
23655     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23656
23657 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
23658 Author: Kumar Gala <galak@kernel.crashing.org>
23659 Date:   Wed Jul 30 08:01:15 2008 -0500
23660
23661     Fix compile warnings in dlmalloc
23662
23663     The origional code was using on odd reference to get to the first
23664     real element in av_[].  The first two elements of the array are
23665     not used for actual bins, but for house keeping.  If we are more
23666     explicit about how use the first few elements we can get rid of the
23667     warnings:
23668
23669     dlmalloc.c: In function 'malloc_extend_top':
23670     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
23671     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
23672     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
23673     ...
23674
23675     The logic of how this code came to be is:
23676         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
23677
23678     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
23679         bin_at(0) = &(av_[0])
23680
23681     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
23682
23683     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23684
23685 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
23686 Author: Stefan Roese <sr@denx.de>
23687 Date:   Wed Jul 30 10:21:01 2008 +0200
23688
23689     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
23690
23691     Signed-off-by: Stefan Roese <sr@denx.de>
23692
23693 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
23694 Author: Stefan Roese <sr@denx.de>
23695 Date:   Wed Jul 30 09:59:51 2008 +0200
23696
23697     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
23698
23699     A recent patch used '#if (CONFIG_CMD_USB)' instead of
23700     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
23701     common/bootm.c compile again.
23702
23703     Signed-off-by: Stefan Roese <sr@denx.de>
23704     Acked-by: Markus Klotzbuecher <mk@denx.de>
23705
23706 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
23707 Author: Kyungmin Park <kmpark@infradead.org>
23708 Date:   Tue Jul 22 08:01:43 2008 +0900
23709
23710     Remove unused I2C at apollon board
23711
23712     There are no I2C devices on this board.
23713
23714     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23715
23716 commit 3c95960e526b3b026da20201db64526f46faf14b
23717 Author: Wolfgang Denk <wd@denx.de>
23718 Date:   Thu Jul 31 10:12:09 2008 +0200
23719
23720     at91rm9200dk, csb637: fix NAND related build problems
23721
23722     Tried fixing NAND support for the at91rm9200dk board; untested.
23723     Disabled NAND support in the csb637 board config file.
23724
23725     Signed-off-by: Wolfgang Denk <wd@denx.de>
23726
23727 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
23728 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23729 Date:   Wed Jul 30 12:39:28 2008 +0200
23730
23731     ppc4xx: ML507: Environment in flash and MTD Support
23732
23733     - Relocate the location of U-Boot in the flash
23734     - Save the environment in one sector of the flash memory
23735     - MTD Support
23736
23737     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23738     Signed-off-by: Stefan Roese <sr@denx.de>
23739
23740 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
23741 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23742 Date:   Tue Jul 29 17:16:10 2008 +0200
23743
23744     ppc4xx: ML507: Use of get_ram_size in board ml507
23745
23746     - Change suggested by WD
23747
23748     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23749     Signed-off-by: Stefan Roese <sr@denx.de>
23750
23751 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
23752 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23753 Date:   Mon Jul 21 20:30:07 2008 +0200
23754
23755     ppc4xx: ML507: U-Boot in flash and System ACE
23756
23757     This patch allows booting from FLASH the ML507 board by Xilinx.
23758     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
23759
23760     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23761     Signed-off-by: Stefan Roese <sr@denx.de>
23762
23763 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
23764 Author: Julien May <mailinglist@miromico.ch>
23765 Date:   Mon Jun 23 13:57:52 2008 +0200
23766
23767     Add support for the hammerhead (AVR32) board
23768
23769     The Hammerhead platform is built around a AVR32 32-bit microcontroller
23770     from Atmel.  It offers versatile peripherals, such as ethernet, usb
23771     device, usb host etc.
23772
23773     The board also incooperates a power supply and is a Power over Ethernet
23774     (PoE) Powered Device (PD).
23775
23776     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
23777     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
23778     DDR2 SDRAM interfaces, which will cover even the most exceptional need
23779     of memory bandwidth. Together with the onboard video decoder the board
23780     is ready for video processing.
23781
23782     For more information see: http:///www.miromico.com/hammerhead
23783
23784     Signed-off-by: Julien May <mailinglist@miromico.ch>
23785     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
23786     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23787
23788 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
23789 Author: Kumar Gala <galak@kernel.crashing.org>
23790 Date:   Tue Jul 29 12:23:49 2008 -0500
23791
23792     fsl_i2c: Use timebase timer functions instead of get_timer()
23793
23794     The current implementation of get_timer() is only really useful after we
23795     have relocated u-boot to memory.  The i2c code is used before that as part
23796     of the SPD DDR setup.
23797
23798     We actually have a bug when using the get_timer() code before relocation
23799     because the .bss hasn't been setup and thus we could be reading/writing
23800     a random location (probably in flash).
23801
23802     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23803
23804 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
23805 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
23806 Date:   Tue Jul 29 14:49:31 2008 +0200
23807
23808     Adder8xx: Fix CFG_MONITOR_LEN
23809
23810     Due to increased space usage, U-Boot can no longer be stored in three sectors.
23811     The current U-Boot use just over three flash sectors (197k), and U-Boot will
23812     become corrupt after saving environment variables. This patch adds another 64k
23813     to CFG_MONITOR_LEN.
23814
23815     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
23816
23817 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
23818 Author: Kyungmin Park <kmpark@infradead.org>
23819 Date:   Tue Jul 29 08:47:57 2008 +0900
23820
23821     Add OneNAND IPL related files to gitignore
23822
23823     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23824
23825 commit 8d87589e8e874df7120a3d9667f051bc33bac250
23826 Author: Rafal Jaworowski <raj@semihalf.com>
23827 Date:   Mon Jul 28 20:38:25 2008 +0200
23828
23829     API: Teach the storage layer about SATA and MMC options.
23830
23831     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23832     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23833
23834 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
23835 Author: Rafal Jaworowski <raj@semihalf.com>
23836 Date:   Mon Jul 28 20:37:48 2008 +0200
23837
23838     API: Dump contents of sector 0 in the demo application.
23839
23840     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23841     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23842
23843 commit 13ca6305f2eba49c175f6370c35286141059c789
23844 Author: Rafal Jaworowski <raj@semihalf.com>
23845 Date:   Mon Jul 28 20:37:10 2008 +0200
23846
23847     API: Correct storage enumeration routine, other minor fixes in API storage area.
23848
23849     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23850     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23851
23852 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
23853 Author: Rafal Jaworowski <raj@semihalf.com>
23854 Date:   Mon Jul 28 20:36:19 2008 +0200
23855
23856     API: Fix compilation warnings in api_examples/demo.c.
23857
23858     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23859
23860 commit c14eefcc48212af2f3314809605698dd8393a90a
23861 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23862 Date:   Sun Jul 27 17:09:43 2008 +0200
23863
23864     Fix more printf() format warnings
23865
23866     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23867
23868 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
23869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23870 Date:   Fri Jul 25 15:18:16 2008 +0200
23871
23872     Fix remaining CFG_CMD_ define, ifdef and comments
23873
23874     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23875
23876 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
23877 Author: Stefano Babic <sbabic@denx.de>
23878 Date:   Fri Jul 25 08:57:40 2008 +0200
23879
23880     Add include for config.h in command.h.
23881
23882     Because the cmd_tbl_s structure depends on the configuration file, it
23883     must be assured that config.h is included before the structure is
23884     evaluated by the compiler. If this is not certain, it could happen
23885     that the compiler generates structures of different size, depending
23886     on the fact if the source file includes <config.h> before or after
23887     <command.h>.
23888
23889     The effect is that u-boot crashes when tries to relocate the command
23890     table (for ppc) or try to access to the command table for other
23891     architectures.
23892
23893     The problem can happen on board-depending commands. All general
23894     commands under /common are unaffected, because they include already
23895     config.h before command.h.
23896
23897     Signed-off-by: Stefano Babic <sbabic@denx.de>
23898
23899 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
23900 Author: Scott Wood <scottwood@freescale.com>
23901 Date:   Wed Jul 23 13:16:06 2008 -0500
23902
23903     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
23904
23905     This fixes building out-of-tree.
23906
23907     Signed-off-by: Scott Wood <scottwood@freescale.com>
23908
23909 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
23910 Author: Heiko Schocher <hs@denx.de>
23911 Date:   Wed Jul 23 07:30:46 2008 +0200
23912
23913     Fix warnings if compiling with IDE support.
23914
23915     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
23916     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
23917
23918     Signed-off-by: Heiko Schocher <hs@denx.de>
23919
23920 commit 7610db17fd4d59c51d825488526d85ede2f06767
23921 Author: Adrian Filipi <adrian.filipi@eurotech.com>
23922 Date:   Tue Jul 22 14:28:11 2008 -0400
23923
23924     Removed support for the adsvix board.
23925
23926     Support for the adsvix was originally provided by Applied Data
23927     Systems (ADS), inc., now EuroTech, Inc.
23928     The board never shipped aside from some sample boards.
23929
23930     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
23931
23932 commit f96b44cef897bd372beb86dde1b33637c119d84d
23933 Author: Remy Bohmer <linux@bohmer.net>
23934 Date:   Tue Jul 22 16:22:11 2008 +0200
23935
23936     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
23937
23938     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
23939     never set, because relocation to RAM is actually never done by U-boot
23940     itself. However, several pieces of code check if this flag is set at
23941     some time.
23942
23943     So, to make sure this flag is set on boards skipping relocation, this
23944     is added to the initialisation of U-boot at a moment where it is safe
23945     to do so.
23946
23947     Signed-off-by: Remy Bohmer <linux@bohmer.net>
23948
23949 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
23950 Author: Timur Tabi <timur@freescale.com>
23951 Date:   Mon Jul 21 14:26:23 2008 -0500
23952
23953     fsl-i2c: fix writes to data segment before relocation
23954
23955     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
23956     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
23957     I2C bus speed and save the value in i2c_bus_speed[], which is a global
23958     variable.  It is an error to write to the data segment before relocation,
23959     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
23960
23961     Signed-off-by: Timur Tabi <timur@freescale.com>
23962
23963 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
23964 Author: Wolfgang Ocker <weo@reccoware.de>
23965 Date:   Mon Jul 28 16:56:51 2008 +0200
23966
23967     mips: Fix baudrate divisor computation on alchemy cpus
23968
23969     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
23970     on alchemy cpus.
23971
23972     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
23973     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23974
23975 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
23976 Author: Ben Warren <biggerbadderben@gmail.com>
23977 Date:   Sat Jul 5 00:08:48 2008 -0700
23978
23979     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
23980
23981     Renamed initialization functions for atngw100 and atstk1000.
23982     Removed initializations for these boards from net/eth.c
23983
23984     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23985     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23986
23987 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
23988 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23989 Date:   Wed Jul 23 10:55:46 2008 +0200
23990
23991     spi flash: Fix printf() format warnings
23992
23993     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23994
23995 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
23996 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23997 Date:   Wed Jul 23 10:55:31 2008 +0200
23998
23999     atmel_mci: Fix printf() format warnings
24000
24001     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24002
24003 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
24004 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24005 Date:   Wed Jul 23 10:55:15 2008 +0200
24006
24007     avr32: Fix printf() format warnings
24008
24009     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24010
24011 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
24012 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24013 Date:   Wed Jul 23 10:52:19 2008 +0200
24014
24015     avr32: asm/io.h needs asm/types.h
24016
24017     map_physmem() takes a phys_addr_t as parameter. This type is defined in
24018     asm/types.h, so we need to include that file.
24019
24020     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24021
24022 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
24023 Author: Michal Simek <monstr@monstr.eu>
24024 Date:   Thu Jul 17 12:25:46 2008 +0200
24025
24026     microblaze: Fix printf() format issues
24027
24028     Signed-off-by: Michal Simek <monstr@monstr.eu>
24029
24030 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
24031 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
24032 Date:   Thu Jul 17 07:27:51 2008 +0530
24033
24034     Remove unused code from lib_arm/bootm.c
24035
24036     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
24037
24038 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
24039 Author: Detlev Zundel <dzu@denx.de>
24040 Date:   Wed Jul 16 18:56:45 2008 +0200
24041
24042     tqm85xx: Demystify 'DK: !!!' comment
24043
24044     Signed-off-by: Detlev Zundel <dzu@denx.de>
24045
24046 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
24047 Author: Detlev Zundel <dzu@denx.de>
24048 Date:   Wed Jul 16 18:56:44 2008 +0200
24049
24050     83xx/85xx/86xx: Add LTEDR local bus definitions
24051
24052     Signed-off-by: Detlev Zundel <dzu@denx.de>
24053
24054 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
24055 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24056 Date:   Wed Jul 16 16:22:32 2008 +0200
24057
24058     serial_xuartlite.c: fix compiler warnings
24059
24060     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24061     Acked-by: Grant Likely <grant.likely@secretlab.ca>
24062
24063 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
24064 Author: Stefan Roese <sr@denx.de>
24065 Date:   Fri Jul 18 11:03:35 2008 +0200
24066
24067     POST: Add disable interrupts in some of the missing CPU POST tests
24068
24069     Some CPU POST tests did not disable the interrupts while running. This
24070     seems to be necessary to protect this self modifying code.
24071
24072     Signed-off-by: Stefan Roese <sr@denx.de>
24073
24074 commit 97a3bf268d096e0e97e54048448c35114edcf557
24075 Author: Stefan Roese <sr@denx.de>
24076 Date:   Fri Jul 18 10:43:24 2008 +0200
24077
24078     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
24079
24080     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
24081     CFG_64BIT_LBA.
24082
24083     Signed-off-by: Stefan Roese <sr@denx.de>
24084
24085 commit 0043ac55024963295fc79b39af85b6dc3b261e17
24086 Author: Niklaus Giger <niklaus.giger@netstal.com>
24087 Date:   Fri Jul 18 11:22:23 2008 +0200
24088
24089     POST PPC4xx/spr IVPR only if PPC440
24090
24091     The SPR IVPR register is only present (as far as I know) for
24092     processors with a PPC440 core.
24093
24094     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24095     Acked-by: Stefan Roese <sr@denx.de>
24096
24097 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
24098 Author: Stefan Roese <sr@denx.de>
24099 Date:   Fri Jul 18 10:42:29 2008 +0200
24100
24101     ppc4xx: Enable 64bit printf format on 440/460 platforms
24102
24103     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
24104     440/460 platforms. This may be needed since those platforms support
24105     36bit physical address space.
24106
24107     Signed-off-by: Stefan Roese <sr@denx.de>
24108
24109 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
24110 Author: Stefan Roese <sr@denx.de>
24111 Date:   Fri Jul 18 15:57:23 2008 +0200
24112
24113     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
24114
24115     This patch fixes a problem with incorrect MODTx (On Die Termination)
24116     setup for a configuration with multiple DIMM's and multiple ranks.
24117     Without this change Katmai was unable to boot Linux with DDR2 frequency
24118     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
24119     with DDR2 frequency = 640MHz and mem=4GB.
24120
24121     Signed-off-by: Stefan Roese <sr@denx.de>
24122
24123 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
24124 Author: Stefan Roese <sr@denx.de>
24125 Date:   Fri Jul 18 12:24:41 2008 +0200
24126
24127     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
24128
24129     Signed-off-by: Stefan Roese <sr@denx.de>
24130
24131 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
24132 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24133 Date:   Thu Jul 17 12:47:09 2008 +0200
24134
24135     ppc4xx: ML507 Board Support
24136
24137     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
24138         among others:
24139         -Virtex 5 FX FPGA (With a ppc440x5 in it)
24140         -256MB of SDRAM2
24141         -32MB of Flash
24142         -I2C Eeprom
24143         -System ACE chip
24144         -Serial ATA connectors
24145         -RS232 Level Conversors
24146         -Ethernet Transceiver
24147
24148     This patch gives support to a standard design produced by EDK for this
24149     board: ppc440, uartlite, xilinx_int and flash
24150
24151     - Includes Changes propossed by Stefan Roese and Michal Simek
24152
24153     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24154     Acked-by: Stefan Roese <sr@denx.de>
24155
24156 commit d865fd09809a3a18669f35f970781820af40e4de
24157 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24158 Date:   Thu Jul 17 11:44:12 2008 +0200
24159
24160     ppc4xx: CPU PPC440x5 on Virtex5 FX
24161
24162     -This patchs gives support for the embbedded ppc440
24163      on the Virtex5 FPGAs
24164     -interrupts.c divided in uic.c and interrupts.c
24165     -xilinx_irq.c for xilinx interrupt controller
24166     -Include modifications propossed by  Stefan Roese
24167
24168     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
24169     Acked-by: Stefan Roese <sr@denx.de>
24170
24171 commit 340ccb260f21516be360745d5c5e3bd0657698df
24172 Author: Sebastian Siewior <bigeasy@linutronix.de>
24173 Date:   Wed Jul 16 20:04:49 2008 +0200
24174
24175     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
24176
24177     This got broken by commits 93c56f212c
24178      [cfi_flash: support of long cmd in U-boot.]
24179
24180     That command needs to be in little endian format on BE machines
24181     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
24182     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
24183     the cmdbuf in case portwidth = chipwidth = 8bit.
24184
24185     Cc: Alexey Korolev <akorolev@infradead.org>
24186     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
24187     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
24188
24189 commit 11188d55bc16dd907451c00282e00a038f73dd62
24190 Author: Stefan Roese <sr@denx.de>
24191 Date:   Thu Jul 17 10:40:51 2008 +0200
24192
24193     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
24194
24195     Signed-off-by: Stefan Roese <sr@denx.de>
24196
24197 commit 021f6df6e96af5b387810cf96d24848da1faa55c
24198 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24199 Date:   Thu Jul 10 17:20:51 2008 +0400
24200
24201     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
24202
24203     The thinko was quite silly indeed, I messed with !ptr. Normally this
24204     would trigger some fault, but in U-Boot NULL pointer is equal to phys
24205     0, so the code was working still, just didn't actually test mpc8315erdb
24206     environment variable value. Heh.
24207
24208     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24209     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24210
24211 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
24212 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24213 Date:   Tue Jul 8 21:00:04 2008 +0400
24214
24215     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
24216
24217     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
24218     support, or without TSEC1 but with USB ULPI PHY support in addition.
24219     With this patch user can specify desired USB PHY.
24220
24221     Also, it seems that we can't distinguish the two boards in software, so
24222     user have to set `mpc8315erdb' environment variable to either 'tsec1'
24223     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
24224     Linux will not probe for TSEC1.
24225
24226     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24227     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24228
24229 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
24230 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24231 Date:   Tue Jul 8 20:59:43 2008 +0400
24232
24233     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
24234
24235     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
24236     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
24237     (connected to the four-ports hub, usb host only).
24238
24239     This patch implements support for passing Dual-Role USB controller's
24240     device tree property phy_type through the usb_phy_type environment
24241     variable.
24242
24243     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24244     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24245     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24246
24247 commit 699f05125509249072a0b865c8d35520d97cd501
24248 Author: Wolfgang Denk <wd@denx.de>
24249 Date:   Tue Jul 15 22:22:44 2008 +0200
24250
24251     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
24252
24253     Signed-off-by: Wolfgang Denk <wd@denx.de>
24254
24255 commit bcab74baa6b1b1c969038ab6f64a186239180405
24256 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24257 Date:   Tue Jul 15 11:23:02 2008 -0400
24258
24259     Round the serial port clock divisor value returned by calc_divisor()
24260
24261     Round the serial port clock divisor value returned by
24262     calc_divisor()
24263
24264     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24265     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24266
24267 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
24268 Author: Robin Getz <rgetz@blackfin.uclinux.org>
24269 Date:   Tue Jul 15 21:44:46 2008 +0200
24270
24271     Fix DHCP protocol so U-Boot does not respond too early
24272     on the network with it's offered IP number; it should not reply until
24273     after it has received a DHCP ACK message. Also ensures that U-Boot
24274     does it's DHCPREQUEST as broadcast (per RFC 2131).
24275
24276     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
24277     Acked-by: Ben Warren <biggerbadderben@gmail.com>
24278     Signed-off-by: Wolfgang Denk <wd@denx.de>
24279
24280 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
24281 Author: Sebastian Siewior <bigeasy@linutronix.de>
24282 Date:   Tue Jul 15 13:35:23 2008 +0200
24283
24284     cfi_flash: make the command u32 only
24285
24286     This got changed by commit 93c56f212c
24287     [cfi_flash: support of long cmd in U-boot.]
24288
24289     Long is the wrong type because it will behave differently on 64bit
24290     machines in a way that is probably not expected. u32 should be
24291     enough.
24292
24293     Cc: Alexey Korolev <akorolev@infradead.org>
24294     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
24295     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
24296
24297 commit 31cfe57491b183acae575d486729e158f016c27b
24298 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24299 Date:   Mon Jul 14 23:48:41 2008 +0200
24300
24301     tools/gitignore: update to all generated files
24302
24303     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24304
24305 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
24306 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
24307 Date:   Wed Jul 9 18:30:44 2008 +0200
24308
24309     mpc5xxx: Add MVBC_P board support
24310
24311     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
24312     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
24313
24314     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
24315     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
24316
24317 commit e2d31fb3450653115452144363d5bde4e5e3e693
24318 Author: Timur Tabi <timur@freescale.com>
24319 Date:   Thu Jun 19 17:56:11 2008 -0500
24320
24321     Update Freescale sys_eeprom.c to handle CCID formats
24322
24323     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
24324     NXID format replaces the older CCID format, but it's important to support both
24325     since most boards out there still use the CCID format.  This change is in
24326     preparation for using one file to handle both formats.  This will also unify
24327     EEPROM support for all Freescale 85xx and 86xx boards.
24328
24329     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
24330     instead of ID_EEPROM_ADDR.
24331
24332     Signed-off-by: Timur Tabi <timur@freescale.com>
24333
24334 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
24335 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24336 Date:   Fri Jul 11 17:22:43 2008 +0900
24337
24338     pci: sh: Add pci_skip_dev and pci_print_dev function
24339
24340     Add function of new PCI, pci_skip_dev and pci_print_dev.
24341
24342     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24343     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24344
24345 commit 1107014e835ec9d46c0333f4211d104f77442db0
24346 Author: Andy Fleming <afleming@freescale.com>
24347 Date:   Mon Jul 14 20:29:07 2008 -0500
24348
24349     Clean up INIT_RAM options
24350
24351     The L2_INIT_RAM option was unused, and recent changes to the TLB code
24352     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
24353     the amount of mapped space attached to nothing, we change things so the TLBs
24354     get cleared.
24355
24356     Signed-off-by: Andy Fleming <afleming@freescale.com>
24357
24358 commit 4524561820a9327e89107854b3a7187800ccf719
24359 Author: Andy Fleming <afleming@freescale.com>
24360 Date:   Mon Jul 14 20:26:57 2008 -0500
24361
24362     Remove fake flash bank from 8544 DS
24363
24364     The fake flash bank was generating errors for anyone who didn't have a
24365     PromJET hooked up to the board.  As that constitutes the vast majority of
24366     users, we remove it.
24367
24368     Signed-off-by: Andy Fleming <afleming@freescale.com>
24369
24370 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
24371 Author: Kumar Gala <galak@kernel.crashing.org>
24372 Date:   Mon Jul 14 14:07:03 2008 -0500
24373
24374     MPC8544DS: Add ATI Video card support
24375
24376     Add support for using a PCIe ATI Video card on PCIe2.
24377
24378     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24379
24380 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
24381 Author: Kumar Gala <galak@kernel.crashing.org>
24382 Date:   Mon Jul 14 14:07:02 2008 -0500
24383
24384     85xx: Add some L1/L2 SPR register definitions
24385
24386     Add new L1/L2 SPRs related to e500mc cache config and control.
24387
24388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24389
24390 commit e5852787f0c3c442a276262f13d91ca450605ac0
24391 Author: Kumar Gala <galak@kernel.crashing.org>
24392 Date:   Mon Jul 14 14:07:01 2008 -0500
24393
24394     MPC8544DS: Report board id, board version and fpga version.
24395
24396     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24397
24398 commit 73f15a060f67a2462551c334215bd20fac6b81d1
24399 Author: Kumar Gala <galak@kernel.crashing.org>
24400 Date:   Mon Jul 14 14:07:00 2008 -0500
24401
24402     85xx: Cleanup L2 cache size detection
24403
24404     The L2 size detection code was a bit confusing and we kept having to add
24405     code to it to handle new processors.  Change the sense of detection so we
24406     look for the older processors that aren't changing.
24407
24408     Also added support for 1M cache size on 8572.
24409
24410     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24411
24412 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
24413 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24414 Date:   Fri Jul 11 15:33:08 2008 -0400
24415
24416     sbc8560: enable CONFIG_OF_LIBFDT by default
24417
24418     Make the default build for the sbc8560 board be powerpc
24419     capable with libfdt support.
24420
24421     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24422
24423 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
24424 Author: Andy Fleming <afleming@freescale.com>
24425 Date:   Mon Jul 14 20:04:40 2008 -0500
24426
24427     Fix indentation for default boot environment variables
24428
24429     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
24430     similar #defines in sbc8560.h.
24431
24432     Signed-off-by: Andy Fleming <afleming@freescale.com>
24433
24434 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
24435 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24436 Date:   Fri Jul 11 15:33:07 2008 -0400
24437
24438     sbc8560: add default fdt values
24439
24440     Add in the default fdt settings and the typical EXTRA_ENV
24441     settings as borrowed from the mpc8560ads.  Fix a couple
24442     of stale references to the mpc8560ads dating back to the
24443     original clone/fork.
24444
24445     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24446     Signed-off-by: Andy Fleming <afleming@freescale.com>
24447
24448 commit d04e76edf92f7f89696989e8702b97e020455af3
24449 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24450 Date:   Fri Jul 11 15:33:06 2008 -0400
24451
24452     sbc8560: add in ft_board_setup()
24453
24454     Add in for the sbc8560, the ft_board_setup() routine, based on what is
24455     in use for the Freescale MPC8560ADS board.
24456
24457     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24458
24459 commit c158bcaca3b31cbe38c4143812e6170e38a57393
24460 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24461 Date:   Fri Jul 11 15:33:05 2008 -0400
24462
24463     sbc8560: define eth0 and eth1 instead of eth1 and eth2
24464
24465     The existing config doesn't define CONFIG_HAS_ETH0, and so the
24466     fdt support doesn't update the zeros in the dtb local-mac with
24467     real data from the u-boot env.  Since the existing config is
24468     tailored to just two interfaces, get rid of the ETH2 definitions
24469     at the same time.
24470
24471     Also don't include any end user specific data into the environment
24472     by default -- things like MAC address, network parameters etc. need
24473     to come from the end user.
24474
24475     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24476     Signed-off-by: Andy Fleming <afleming@freescale.com>
24477
24478 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
24479 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24480 Date:   Fri Jul 11 15:33:04 2008 -0400
24481
24482     sbc8560: properly set cs0_bnds for 512MB
24483
24484     The sbc8560 board ships with 512MB of memory installed,
24485     but the current cs0_bnds is hard coded for 256MB.  Set the
24486     value based on CFG_SDRAM_SIZE.
24487
24488     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24489
24490 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
24491 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24492 Date:   Fri Jul 11 15:33:03 2008 -0400
24493
24494     sbc8560: proper definitions for TSEC.
24495
24496     The definitions for the TSEC have become out of date.  There is no
24497     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
24498     Update to match those of other boards, like the MPC8560ADS.
24499
24500     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24501     Acked-by: Ben Warren <biggerbadderben@gmail.com>
24502
24503 commit 71074abbe0c76429577aff58aeff0a24ad210b23
24504 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24505 Date:   Wed Jul 9 13:23:05 2008 -0400
24506
24507     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
24508
24509     Some boards that have external 16550 UARTs don't have a direct
24510     tie between bi_busfreq and the clock used for the UARTs.  Boards
24511     that do have such a tie should set CFG_NS16550_CLK to be
24512     get_bus_freq(0) -- which most of them do already.
24513
24514     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24515     Acked-by: Kim Phillips <kim.phillips@freescale.com>
24516
24517 commit 24ef76f320fbadf074105229826514db140f939f
24518 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
24519 Date:   Wed Jul 2 07:03:53 2008 -0700
24520
24521     Change the temp map to ROM to align addresses to page size.
24522
24523     With a page size of BOOKE_PAGESZ_16M, both the real and effective
24524     addresses must be multiples of 16MB.  The hardware silently truncates
24525     them so the code happens to work.  This patch clarifies the situation
24526     by establishing addresses that the hardware doesn't need to truncate.
24527
24528     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
24529     Signed-off-by: Andy Fleming <afleming@freescale.com>
24530
24531 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
24532 Author: Kim Phillips <kim.phillips@freescale.com>
24533 Date:   Tue Jun 17 17:45:22 2008 -0500
24534
24535     mpc85xx: use IS_E_PROCESSOR macro
24536
24537     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24538
24539 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
24540 Author: Kim Phillips <kim.phillips@freescale.com>
24541 Date:   Mon Jun 16 15:55:53 2008 -0500
24542
24543     fdt: add crypto node handling for MPC8{3, 5}xxE processors
24544
24545     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
24546     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
24547     if on an 'EA' processor, e.g. MPC8349EA.
24548
24549     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24550
24551 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
24552 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24553 Date:   Fri Jul 11 15:10:11 2008 -0400
24554
24555     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
24556
24557     ARM DaVinci: Remove extern phy_t declaration by moving
24558     code to proper place.
24559
24560     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24561
24562 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
24563 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24564 Date:   Fri Jul 11 15:10:10 2008 -0400
24565
24566     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
24567
24568     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
24569     and prototype of i2c_init().
24570
24571     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24572
24573 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
24574 Author: Kumar Gala <galak@kernel.crashing.org>
24575 Date:   Mon Jul 14 14:03:02 2008 -0500
24576
24577     Fix some more printf() format problems.
24578
24579     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24580
24581 commit 45b16d22c64674ccd8c4637456a987463609141c
24582 Author: Wolfgang Denk <wd@denx.de>
24583 Date:   Mon Jul 14 22:38:42 2008 +0200
24584
24585     Fix coding style; make code better parsable by external tools
24586
24587     Signed-off-by: Wolfgang Denk <wd@denx.de>
24588
24589 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
24590 Author: Wolfgang Denk <wd@denx.de>
24591 Date:   Mon Jul 14 21:19:08 2008 +0200
24592
24593     cpu/i386/serial.c: Fix syntax errors
24594
24595     Signed-off-by: Wolfgang Denk <wd@denx.de>
24596
24597 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
24598 Author: Wolfgang Denk <wd@denx.de>
24599 Date:   Mon Jul 14 20:41:35 2008 +0200
24600
24601     elppc board: Coding style cleanup.
24602
24603     Signed-off-by: Wolfgang Denk <wd@denx.de>
24604
24605 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
24606 Author: Wolfgang Denk <wd@denx.de>
24607 Date:   Mon Jul 14 20:40:22 2008 +0200
24608
24609     elppc board: fix syntax error.
24610
24611     Signed-off-by: Wolfgang Denk <wd@denx.de>
24612
24613 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
24614 Author: Wolfgang Denk <wd@denx.de>
24615 Date:   Mon Jul 14 20:38:26 2008 +0200
24616
24617     EB+MCF-EV123 board: fix coding style (alingment)
24618
24619     Signed-off-by: Wolfgang Denk <wd@denx.de>
24620
24621 commit 6841785a0bb0f38175456a923edd634fb7dd6947
24622 Author: Wolfgang Denk <wd@denx.de>
24623 Date:   Mon Jul 14 20:36:44 2008 +0200
24624
24625     EB+MCF-EV123 board: fix syntx error
24626
24627     Signed-off-by: Wolfgang Denk <wd@denx.de>
24628
24629 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
24630 Author: Andy Fleming <afleming@freescale.com>
24631 Date:   Mon Jul 7 18:02:08 2008 -0500
24632
24633     Remove LBC_CACHE_BASE from 8544 DS
24634
24635     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
24636     space for some anyway, we were allowing speculative loads into unmapped space,
24637     which would cause an exception (annoying, even if ultimately harmless).
24638     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
24639     problem.
24640
24641     Signed-off-by: Andy Fleming <afleming@freescale.com>
24642
24643 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
24644 Author: Wolfgang Denk <wd@denx.de>
24645 Date:   Mon Jul 14 15:19:07 2008 +0200
24646
24647     Code cleanup: fix old style assignment ambiguities like "=-" etc.
24648
24649     Signed-off-by: Wolfgang Denk <wd@denx.de>
24650
24651 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
24652 Author: Wolfgang Denk <wd@denx.de>
24653 Date:   Mon Jul 14 15:10:53 2008 +0200
24654
24655     AmigaOneG3SE: remove dead and incomplete files
24656
24657     Signed-off-by: Wolfgang Denk <wd@denx.de>
24658
24659 commit b64f190b7a34224df09b559ca111eb1b733f00ad
24660 Author: Wolfgang Denk <wd@denx.de>
24661 Date:   Mon Jul 14 15:06:35 2008 +0200
24662
24663     Fix printf() format issues with sizeof_t types by using %zu
24664
24665     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24666     Signed-off-by: Wolfgang Denk <wd@denx.de>
24667
24668 commit f354b73e16a86f9e9085471a830605f74f84ea5d
24669 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24670 Date:   Mon Jul 14 14:11:45 2008 +0200
24671
24672     vsprintf: add z and t options
24673
24674     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24675
24676 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
24677 Author: Wolfgang Denk <wd@denx.de>
24678 Date:   Sun Jul 13 23:07:35 2008 +0200
24679
24680     Fix some more printf() format issues.
24681
24682     Signed-off-by: Wolfgang Denk <wd@denx.de>
24683
24684 commit d5996dd555edf52721b7691a4c59de016251ed39
24685 Author: Wolfgang Denk <wd@denx.de>
24686 Date:   Sun Jul 13 19:51:00 2008 +0200
24687
24688     Fix some more printf() format problems.
24689
24690     Signed-off-by: Wolfgang Denk <wd@denx.de>
24691
24692 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
24693 Author: Wolfgang Denk <wd@denx.de>
24694 Date:   Sun Jul 13 19:48:26 2008 +0200
24695
24696     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
24697
24698     Signed-off-by: Wolfgang Denk <wd@denx.de>
24699
24700 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
24701 Author: Anatolij Gustschin <agust@denx.de>
24702 Date:   Sat Jul 12 17:31:36 2008 +0200
24703
24704     Fix bug in Lime video driver
24705
24706     We need to wait while drawing engine clears frame
24707     buffer before any further software accesses to frame
24708     buffer will be initiated. Otherwise software drawn
24709     parts could be partially destroyed by the drawing
24710     engine or even GDC chip freeze could occur (as
24711     observed on socrates board).
24712
24713     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24714
24715 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
24716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24717 Date:   Sat Jul 12 14:36:34 2008 +0200
24718
24719     Fix some more printf() format issues.
24720
24721     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24722
24723 commit 18c8a28aad49803780bd8d52432ded528e37e701
24724 Author: Michal Simek <monstr@monstr.eu>
24725 Date:   Fri Jul 11 15:11:57 2008 +0200
24726
24727     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
24728
24729     Signed-off-by: Michal Simek <monstr@monstr.eu>
24730     Acked-by: Stefan Roese <sr@denx.de>
24731
24732 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
24733 Author: Michal Simek <monstr@monstr.eu>
24734 Date:   Fri Jul 11 11:50:53 2008 +0200
24735
24736     hwmon: Cleaning hwmon devices
24737
24738     Clean Makefile
24739     Move device specific values to driver for better reading
24740
24741     Signed-off-by: Michal Simek <monstr@monstr.eu>
24742     Acked-by: Stefan Roese <sr@denx.de>
24743
24744 commit c78fce699c7ff467ecd841da6a79f065180bf578
24745 Author: Michal Simek <monstr@monstr.eu>
24746 Date:   Fri Jul 11 10:43:13 2008 +0200
24747
24748     FIS: repare incorrect return value with ramdisk handling
24749
24750     Microblaze and PowerPC use boot_get_ramdisk for loading
24751     ramdisk to memory with checking return value.
24752     Return 0 means success. Return 1 means failed.
24753     Here is correspond part of code from bootm.c which check
24754     return code.
24755
24756     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
24757                 &rd_data_start, &rd_data_end);
24758     if (ret)
24759         goto error;
24760
24761     Signed-off-by: Michal Simek <monstr@monstr.eu>
24762
24763 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
24764 Author: Michal Simek <monstr@monstr.eu>
24765 Date:   Fri Jul 11 10:10:32 2008 +0200
24766
24767     microblaze: Remove useless ancient headers
24768
24769     Signed-off-by: Michal Simek <monstr@monstr.eu>
24770
24771 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
24772 Author: Michal Simek <monstr@monstr.eu>
24773 Date:   Fri Jul 11 10:10:31 2008 +0200
24774
24775     microblaze: Clean uartlite driver
24776
24777     Redesign uartlite driver to in_be32 and out_be32 macros
24778     Fix missing header in io.h
24779
24780     Signed-off-by: Michal Simek <monstr@monstr.eu>
24781     Acked-by: Grant Likely <grant.likely@secretlab.ca>
24782
24783 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
24784 Author: Marcel Ziswiler <marcel@ziswiler.com>
24785 Date:   Fri Jul 11 02:39:14 2008 +0200
24786
24787     Enable passing of ATAGs required by latest Linux kernel.
24788
24789 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
24790 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24791 Date:   Fri Jul 11 10:24:15 2008 -0400
24792
24793     Fix integer overflow warning in calc_divisor()
24794
24795     which happened when rounding the serial port clock divisor
24796
24797     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24798
24799 commit 6b760189d77f001684e3160b355c185ca3804961
24800 Author: Marcel Ziswiler <marcel@ziswiler.com>
24801 Date:   Fri Jul 11 01:09:59 2008 +0200
24802
24803     Fix build time warnings in function mmc_decode_csd()
24804
24805     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24806
24807 commit c15947d6ce0d59925c97fdfac692476af6e262d0
24808 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24809 Date:   Thu Jul 10 10:46:33 2008 -0400
24810
24811     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
24812
24813     caused by missing dcache status/enable/disable functions.
24814
24815     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24816
24817 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
24818 Author: Stefan Roese <sr@denx.de>
24819 Date:   Thu Jul 10 13:53:31 2008 +0200
24820
24821     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
24822
24823     This patch removes some ft_board_setup() functions from some 4xx boards.
24824     This can be done since we now have a default weak implementation for this
24825     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
24826     implementation like canyonlands need their own version.
24827
24828     Signed-off-by: Stefan Roese <sr@denx.de>
24829
24830 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
24831 Author: Wolfgang Denk <wd@denx.de>
24832 Date:   Sun Jul 13 14:58:16 2008 +0200
24833
24834     Add last known maintainer for orphaned boards; reformat.
24835
24836     Signed-off-by: Wolfgang Denk <wd@denx.de>
24837
24838 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
24839 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24840 Date:   Thu Jul 10 13:16:04 2008 +0200
24841
24842     Remove kharris@nexus-tech.net from MAINTAINERS
24843
24844     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
24845     anymore. You can't be a maintainer without a valid e-mail address, so
24846     move all boards that used to be maintained by Kyle Harris to the
24847     "orphaned" list.
24848
24849     Currently, only PowerPC has a list of orphaned boards, so this patch
24850     creates one for ARM as well.
24851
24852     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24853
24854 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
24855 Author: Anatolij Gustschin <agust@denx.de>
24856 Date:   Thu Jul 10 01:15:10 2008 +0200
24857
24858     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
24859
24860     On the at91sam9260ep development board there is an EEPROM
24861     connected to the TWI interface (PA23, PA24 Peripheral A
24862     multiplexing), so we cannot use these pins as ETX2, ETX3.
24863     This patch configures PA10, PA11 pins for ETX2, ETX3
24864     instead of PA23, PA24 pins.
24865
24866     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24867     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
24868
24869 commit f889265753ddf4465d9d580827bb9289bfac55d6
24870 Author: Kenneth Johansson <kenneth@southpole.se>
24871 Date:   Sat Jul 12 13:18:34 2008 -0600
24872
24873     fix DIU for small screens
24874
24875     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
24876     so it was not possible to set a slow pixel clock and thus prevented
24877     display on small screens.
24878
24879     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
24880     Acked-by: John Rigby <jrigby@freescale.com>
24881
24882 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
24883 Author: John Rigby <jrigby@freescale.com>
24884 Date:   Fri Jul 11 14:44:09 2008 -0600
24885
24886     ADS5121 cleanup compile warnings
24887
24888     board/ads5121/iopin.c
24889         Replace bit fields in struct iopin_t with a single
24890         field and intialize it via plain old macros.
24891         This fixes the type pun warnings and makes the code
24892         more readable.
24893
24894     board/ads5121/ads5121.c
24895         Add include iopin.h to ads5121.c for the iopin_initialize
24896         prototype.
24897
24898         Add an extern void ads5121_diu_init(void)
24899
24900     Signed-off-by: John Rigby <jrigby@freescale.com>
24901
24902 commit bde63587622c4b830a27d1ddf7265843de9e994f
24903 Author: Wolfgang Denk <wd@denx.de>
24904 Date:   Fri Jul 11 22:56:11 2008 +0200
24905
24906     Fix some more printf() format issues.
24907
24908     Signed-off-by: Wolfgang Denk <wd@denx.de>
24909
24910 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
24911 Author: Wolfgang Denk <wd@denx.de>
24912 Date:   Fri Jul 11 22:55:31 2008 +0200
24913
24914     Fixed some out-of-tree build issues
24915
24916     Signed-off-by: Wolfgang Denk <wd@denx.de>
24917
24918 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
24919 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24920 Date:   Wed Jul 9 16:20:23 2008 -0500
24921
24922     ColdFire: Fix FB CS not setup properly for Mcf5282
24923
24924     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
24925     CFG_CSn_RO is defined as 0, the chipselect will not
24926     be assigned.
24927
24928     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24929
24930 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
24931 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24932 Date:   Wed Jul 9 15:47:27 2008 -0500
24933
24934     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
24935
24936     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
24937     clock module in cpu/<cf arch>/cpu_init.c
24938
24939     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24940
24941 commit f94945b517f10e01927101679c62361e03d4e837
24942 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24943 Date:   Wed Jul 9 15:25:01 2008 -0500
24944
24945     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
24946
24947     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24948
24949 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
24950 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24951 Date:   Wed Jul 9 15:21:44 2008 -0500
24952
24953     Fix compile error caused by missing timer function
24954
24955     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
24956
24957     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24958
24959 commit c37ea031175b807c54e6bad9b270e9bede6c0078
24960 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24961 Date:   Wed Jul 9 15:14:25 2008 -0500
24962
24963     Fix compile error caused by incorrect function return type
24964
24965     Rename int mii_init(void) to void mii_init(void)
24966
24967     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24968
24969 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
24970 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24971 Date:   Wed Jun 18 19:27:23 2008 -0500
24972
24973     ColdFire: Fix power up issue for MCF5235
24974
24975     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24976
24977 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
24978 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24979 Date:   Wed Jun 18 19:19:07 2008 -0500
24980
24981     ColdFire: Fix compiling error for MCF5275
24982
24983     The compiling error was caused by missing a closed parentheses
24984     in speed.c
24985
24986     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24987
24988 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
24989 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24990 Date:   Wed Jun 18 19:14:01 2008 -0500
24991
24992     ColdFire: Fix timer issue for MCF5272
24993
24994     The timer was assigned to wrong timer memory mapped which
24995     caused udelay() and timer() not working properly.
24996
24997     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24998
24999 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
25000 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25001 Date:   Wed Jun 18 19:12:13 2008 -0500
25002
25003     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
25004
25005     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
25006
25007 commit 8371dc2066136be21e10b7b9293e469297d77298
25008 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25009 Date:   Wed Jun 18 19:05:23 2008 -0500
25010
25011     ColdFire: Add -got=single param for new linux v4e toolchains
25012
25013     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
25014
25015 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
25016 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25017 Date:   Wed Jun 18 13:21:19 2008 -0500
25018
25019     ColdFire: Fix code flash configuration for M547x/M548x boards
25020
25021     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
25022
25023 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
25024 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25025 Date:   Tue Jun 24 12:12:16 2008 -0500
25026
25027     ColdFire: Fix warning messages by passing correct data type in board.c
25028
25029     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25030
25031 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
25032 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25033 Date:   Thu May 29 12:21:54 2008 -0500
25034
25035     ColdFire: Fix UART baudrate formula
25036
25037     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
25038     can generate the wrong divisor due to integer division truncation.
25039     Round the calculated divisor value by adding 1/2 the baudrate
25040     before dividing by the baudrate.
25041
25042     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25043     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
25044
25045 commit b578fb471444cbd7db1285701ba51343baaf73fb
25046 Author: Stefan Roese <sr@denx.de>
25047 Date:   Thu Jul 10 11:38:26 2008 +0200
25048
25049     ppc4xx: Fix include sequence in 4xx_pcie.c
25050
25051     This patch now moves common.h to the top of the inlcude list. This
25052     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
25053     the phys_size_t/phys_addr_t are defined to the correct size in this
25054     driver.
25055
25056     Signed-off-by: Stefan Roese <sr@denx.de>
25057
25058 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
25059 Author: Stefan Roese <sr@denx.de>
25060 Date:   Fri Jul 11 13:10:56 2008 +0200
25061
25062     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
25063
25064     Signed-off-by: Stefan Roese <sr@denx.de>
25065
25066 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
25067 Author: Stefan Roese <sr@denx.de>
25068 Date:   Fri Jul 11 11:40:13 2008 +0200
25069
25070     ppc4xx: Fix small korat merge problem
25071
25072     Signed-off-by: Stefan Roese <sr@denx.de>
25073
25074 commit 1d0554736a0a1dd59718acda660871ce56b69e18
25075 Author: Stefan Roese <sr@denx.de>
25076 Date:   Fri Jul 11 11:34:52 2008 +0200
25077
25078     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
25079
25080     Signed-off-by: Stefan Roese <sr@denx.de>
25081
25082 commit 3a82113ed5934d498f25080441a8261fc9454b15
25083 Author: Stefan Roese <sr@denx.de>
25084 Date:   Thu Jul 10 16:37:09 2008 +0200
25085
25086     ppc4xx: Add 460SX UIC defines
25087
25088     Only the really needed ones are added (cascading and EMAC/MAL).
25089
25090     Signed-off-by: Stefan Roese <sr@denx.de>
25091
25092 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
25093 Author: Stefan Roese <sr@denx.de>
25094 Date:   Mon Jun 30 14:11:07 2008 +0200
25095
25096     ppc4xx: Continue cleanup of ppc440.h
25097
25098     This patch continues the ppc440.h cleanup by removing some of the unused
25099     defines.
25100
25101     Signed-off-by: Stefan Roese <sr@denx.de>
25102
25103 commit d9056b7913ed6a228d2f33671d916efedee541dd
25104 Author: Stefan Roese <sr@denx.de>
25105 Date:   Mon Jun 30 14:05:05 2008 +0200
25106
25107     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
25108
25109     This patch cleans up the 440SPe PCIe register usage. Now only defines
25110     from the include/asm-ppc/4xx_pcie.h are used.
25111
25112     Signed-off-by: Stefan Roese <sr@denx.de>
25113
25114 commit 5de851403b01489b493fa83137ad990b8ce60d1c
25115 Author: Stefan Roese <sr@denx.de>
25116 Date:   Thu Jun 26 17:36:39 2008 +0200
25117
25118     ppc4xx: Rework 440GX UIC handling
25119
25120     This patch reworks the 440GX interrupt handling so that the common 4xx
25121     code can be used. The 440GX is an exception to all other 4xx variants
25122     by having the cascading interrupt vectors not on UIC0 but on a special
25123     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
25124     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
25125     handling is simpler without any 440GX special cases.
25126
25127     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
25128
25129     Signed-off-by: Stefan Roese <sr@denx.de>
25130
25131 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
25132 Author: Stefan Roese <sr@denx.de>
25133 Date:   Thu Jun 26 13:40:57 2008 +0200
25134
25135     ppc4xx: Consolidate PPC4xx UIC defines
25136
25137     This 2nd patch now removes all UIC mask bit definition. They should be
25138     generated from the vectors by using the UIC_MASK() macro from now on.
25139     This way only the vectors need to get defined for new PPC's.
25140
25141     Also only the really used interrupt vectors are now defined. This makes
25142     definitions for new PPC versions easier and less error prone.
25143
25144     Another part of this patch is that the 4xx emac driver got a little
25145     cleanup, since now the usage of the interrupts is clearer.
25146
25147     Signed-off-by: Stefan Roese <sr@denx.de>
25148
25149 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
25150 Author: Stefan Roese <sr@denx.de>
25151 Date:   Wed Jun 25 10:59:22 2008 +0200
25152
25153     ppc4xx: Consolidate PPC4xx UIC defines
25154
25155     This patch is the first step to consolidate the UIC related defines in the
25156     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
25157     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
25158     steps.
25159
25160     Signed-off-by: Stefan Roese <sr@denx.de>
25161
25162 commit 7ee2619c20ccecd57966d74d844e6329e141261c
25163 Author: Stefan Roese <sr@denx.de>
25164 Date:   Tue Jun 24 17:18:50 2008 +0200
25165
25166     ppc4xx: Consolidate PPC4xx EBC defines
25167
25168     This patch removes all EBC related defines from the PPC4xx headers
25169     ppc405.h and ppc440.h and introduces a new header
25170
25171     include/asm-ppc/ppc4xx-ebc.h
25172
25173     with all those defines.
25174
25175     Signed-off-by: Stefan Roese <sr@denx.de>
25176
25177 commit e321801bed5a6d896d298c00fd20046f039d5d66
25178 Author: Stefan Roese <sr@denx.de>
25179 Date:   Thu Jul 10 13:52:44 2008 +0200
25180
25181     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
25182
25183     This patch removes some ft_board_setup() functions from some 4xx boards.
25184     This can be done since we now have a default weak implementation for this
25185     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
25186     implementation like canyonlands need their own version.
25187
25188     Signed-off-by: Stefan Roese <sr@denx.de>
25189
25190 commit 08250eb2edbd96514d049602d9e134110ac3185f
25191 Author: Stefan Roese <sr@denx.de>
25192 Date:   Thu Jul 10 15:32:32 2008 +0200
25193
25194     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
25195
25196     Signed-off-by: Stefan Roese <sr@denx.de>
25197
25198 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
25199 Author: Grant Erickson <gerickson@nuovations.com>
25200 Date:   Tue Jul 8 08:35:00 2008 -0700
25201
25202     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
25203
25204     This patch adds support for placing the RGMII bridge on the
25205     PPC405EX(r) into MII/GMII mode and allows a board-specific
25206     configuration to specify the bridge mode at compile-time.
25207
25208     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
25209     Signed-off-by: Stefan Roese <sr@denx.de>
25210
25211 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
25212 Author: Grant Erickson <gerickson@nuovations.com>
25213 Date:   Wed Jul 9 16:46:35 2008 -0700
25214
25215     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
25216
25217     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
25218     controller registers (MODT and INITPLR) used by the
25219     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
25220     peer values used for the INITPLR MR and EMR registers,
25221     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
25222
25223     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
25224     Kilauea are replaced by equivalent mnemonics to make it easier to
25225     compare and contrast other 405EX(r)-based boards (e.g. during board
25226     bring-up).
25227
25228     Finally, unified the SDRAM controller register dump routine such that
25229     it can be used across all processor variants that utilize the IBM DDR2
25230     SDRAM controller core. It produces output of the form:
25231
25232         PPC4xx IBM DDR2 Register Dump:
25233                 ...
25234                 SDRAM_MB0CF[40] = 0x00006701
25235                 ...
25236
25237     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
25238     since it is not uncommon that the DCR values in header files get mixed
25239     up and it helps to validate, at a glance, they match what is printed
25240     in the user manual.
25241
25242     Tested on:
25243       AMCC Kilauea/Haleakala:
25244       - NFS Linux Boot: PASSED
25245       - NAND Linux Boot: PASSED
25246
25247     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
25248     Signed-off-by: Stefan Roese <sr@denx.de>
25249
25250 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
25251 Author: Grant Erickson <gerickson@nuovations.com>
25252 Date:   Wed Jul 9 16:31:59 2008 -0700
25253
25254     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
25255
25256     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
25257     revision ID DCR based on 405EX, and add field mnemonics for bus error
25258     status and ECC error status registers.
25259
25260     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
25261     Signed-off-by: Stefan Roese <sr@denx.de>
25262
25263 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
25264 Author: Grant Erickson <gerickson@nuovations.com>
25265 Date:   Wed Jul 9 16:31:36 2008 -0700
25266
25267     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
25268
25269     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
25270
25271     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
25272     Signed-off-by: Stefan Roese <sr@denx.de>
25273
25274 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
25275 Author: Grant Erickson <gerickson@nuovations.com>
25276 Date:   Wed Jul 9 11:55:46 2008 -0700
25277
25278     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
25279
25280     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
25281     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
25282     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
25283
25284     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
25285     which causes SDRAM initialization to periodically fail since it can
25286     prematurely indicate SDRAM ready status.
25287
25288     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
25289     Signed-off-by: Stefan Roese <sr@denx.de>
25290
25291 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
25292 Author: Feng Kan <fkan@amcc.com>
25293 Date:   Tue Jul 8 22:48:42 2008 -0700
25294
25295     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
25296
25297     Add AMCC Redwood reference board that uses the latest
25298     PPC 464 CPU processor combined with a rich mix of peripheral
25299     controllers. The board will support PCIe, mutiple Gig ethernet
25300     ports, advanced hardware RAID assistance and IEEE 1588.
25301
25302     Signed-off-by: Feng Kan <fkan@amcc.com>
25303     Signed-off-by: Stefan Roese <sr@denx.de>
25304
25305 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
25306 Author: Feng Kan <fkan@amcc.com>
25307 Date:   Tue Jul 8 22:48:07 2008 -0700
25308
25309     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
25310
25311     Signed-off-by: Feng Kan <fkan@amcc.com>
25312     Signed-off-by: Stefan Roese <sr@denx.de>
25313
25314 commit 7d30793685efcada183891c78fc892e6c9ba50c7
25315 Author: Feng Kan <fkan@amcc.com>
25316 Date:   Tue Jul 8 22:47:31 2008 -0700
25317
25318     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
25319
25320     Signed-off-by: Feng Kan <fkan@amcc.com>
25321     Signed-off-by: Stefan Roese <sr@denx.de>
25322
25323 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
25324 Author: Wolfgang Denk <wd@denx.de>
25325 Date:   Fri Jul 11 01:16:00 2008 +0200
25326
25327     Fix some more print() format errors.
25328
25329     Signed-off-by: Wolfgang Denk <wd@denx.de>
25330
25331 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
25332 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25333 Date:   Thu Jul 10 20:57:54 2008 +0200
25334
25335     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
25336
25337     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25338
25339 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
25340 Author: Sergey Lapin <slapin@ossfans.org>
25341 Date:   Thu Jun 5 11:06:29 2008 +0400
25342
25343     DataFlash AT45DB021 support
25344
25345     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
25346     bootstrap, u-boot and its environment, using NAND or other external
25347     storage for kernel and rootfs. This patch adds support for
25348     small 1024x263 chip.
25349
25350     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
25351
25352 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
25353 Author: Kim Phillips <kim.phillips@freescale.com>
25354 Date:   Thu Jul 10 14:00:15 2008 -0500
25355
25356     silence misc printf formatting compiler warnings
25357
25358     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25359
25360 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
25361 Author: Markus Klotzbücher <mk@denx.de>
25362 Date:   Thu Jul 10 14:47:09 2008 +0200
25363
25364     USB: shutdown USB before booting
25365
25366     This patch fixes a potentially serious issue related to USB which was
25367     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
25368     ARM920T. Martin wrote:
25369
25370       Turn off USB to prevent the host controller from writing to the
25371       SDRAM while Linux is booting. This could happen, because the HCCA
25372       (Host Controller Communication Area) lies within the SDRAM and the
25373       host controller writes continously to this area (as busmaster!), for
25374       example to increase the HccaFrameNumber variable, which happens
25375       every 1 ms.
25376
25377     This is a slightly modified version of the patch in order to shutdown
25378     USB when booting on all architectures.
25379
25380     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25381
25382 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
25383 Author: Martha Marx <mmarx@silicontkx.com>
25384 Date:   Thu May 29 14:23:25 2008 -0400
25385
25386     Configuration changes for ADS5121 Rev 3
25387
25388     ADS5121 Rev 3 board is now the default config
25389
25390     config targets are now
25391
25392     ads5121_config
25393         Rev 3 board with
25394         PCI
25395         M41T62 on board RTC
25396         512MB DRAM
25397
25398     ads5121_rev2_config
25399         Rev 2 board with
25400         No PCI
25401         256MB DRAM
25402
25403     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
25404     Acked-by: Grant Likely <grant.likely@secretlab.ca>
25405     Acked-by: John Rigby <jrigby@freescale.com>
25406
25407 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
25408 Author: Martha Marx <mmarx@silicontkx.com>
25409 Date:   Thu May 29 15:37:21 2008 -0400
25410
25411     Consolidate ADS5121 IO Pin configuration
25412
25413     Consolidate ADS5121 IO Pin configuration to one file
25414     board/ads5121/iopin.c.
25415
25416     Remove pin config from cpu/mpc512x/fec.c
25417
25418     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
25419     Acked-by: Grant Likely <grant.likely@secretlab.ca>
25420     Acked-by: John Rigby <jrigby@freescale.com>
25421
25422 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
25423 Author: Christian Eggers <christian@p2400.wgnetz.xx>
25424 Date:   Fri Jun 27 19:46:51 2008 +0200
25425
25426     Fix "usb part" command
25427
25428     Only print partition for selected device if user supplied the <dev>
25429     arg with the "usb part [dev]" command.
25430
25431     Signed-off-by: Christian Eggers <ceggers@gmx.de>
25432     Acked-by: Markus Klotzbuecher <mk@denx.de>
25433
25434 commit cc83b27217f7380041fea386ddb6d6d9b261617d
25435 Author: Harald Welte <laforge@gnumonks.org>
25436 Date:   Mon Jul 7 00:58:05 2008 +0800
25437
25438     fix USB devices with multiple configurations
25439
25440     This patch fixes bugs in usbdcore*.c related to the use of devices
25441     with multiple configurations.
25442
25443     The original code made mistakes about the meaning of configuration value and
25444     configuration index, and the resulting off-by-one errors resulted in:
25445
25446     * SET_CONFIGURATION always selected the first configuration, no matter what
25447       wValue is being passed.
25448     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
25449       configuration (index 0).
25450
25451     Signed-off-by: Harald Welte <laforge@openmoko.org>
25452     Acked-by: Markus Klotzbuecher <mk@denx.de>
25453
25454 commit 06c53beae1a726e707971c555613f09b270a2461
25455 Author: Wolfgang Denk <wd@denx.de>
25456 Date:   Thu Jul 10 13:16:09 2008 +0200
25457
25458     Fix some more print() format errors.
25459
25460     Signed-off-by: Wolfgang Denk <wd@denx.de>
25461
25462 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
25463 Author: Christian Eggers <christian@p2400.wgnetz.xx>
25464 Date:   Fri Jun 27 19:46:51 2008 +0200
25465
25466     Fix "usb part" command
25467
25468     Only print partition for selected device if user supplied the <dev>
25469     arg with the "usb part [dev]" command.
25470
25471     Signed-off-by: Christian Eggers <ceggers@gmx.de>
25472     Acked-by: Markus Klotzbuecher <mk@denx.de>
25473
25474 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
25475 Author: Harald Welte <laforge@gnumonks.org>
25476 Date:   Mon Jul 7 00:58:05 2008 +0800
25477
25478     fix USB devices with multiple configurations
25479
25480     This patch fixes bugs in usbdcore*.c related to the use of devices
25481     with multiple configurations.
25482
25483     The original code made mistakes about the meaning of configuration value and
25484     configuration index, and the resulting off-by-one errors resulted in:
25485
25486     * SET_CONFIGURATION always selected the first configuration, no matter what
25487       wValue is being passed.
25488     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
25489       configuration (index 0).
25490
25491     Signed-off-by: Harald Welte <laforge@openmoko.org>
25492     Acked-by: Markus Klotzbuecher <mk@denx.de>
25493
25494 commit e870690bdca154943ecadd5212d2d59c1b9d391b
25495 Author: Stefan Roese <sr@denx.de>
25496 Date:   Thu Jul 10 10:10:54 2008 +0200
25497
25498     MTD/NAND: Fix printf format warning in nand code
25499
25500     This patch fixes NAND related printf format warning. Those warnings are
25501     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
25502     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
25503     really helpful.
25504
25505     Signed-off-by: Stefan Roese <sr@denx.de>
25506
25507 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
25508 Author: Stefan Roese <sr@denx.de>
25509 Date:   Thu Jul 10 10:00:45 2008 +0200
25510
25511     rtc: Fix printf format warning in m41t60.c
25512
25513     Signed-off-by: Stefan Roese <sr@denx.de>
25514
25515 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
25516 Author: Stefan Roese <sr@denx.de>
25517 Date:   Tue Jul 8 12:01:47 2008 +0200
25518
25519     pci: Move PCI device configuration check into a separate weak function
25520
25521     This patch moves the check, if a device should be skipped in PCI PNP
25522     configuration into the function pci_skip_dev(). This function is defined
25523     as weak so that it can be overwritten by a platform specific one if
25524     needed. The check if the device should get printed in the PCI summary upon
25525     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
25526     pci_print_dev() which is also defined as weak too.
25527
25528     Signed-off-by: Stefan Roese <sr@denx.de>
25529
25530 commit b002144e1dc21374b1ef5281fe6b5d014af96650
25531 Author: Stefan Roese <sr@denx.de>
25532 Date:   Thu Jul 10 09:58:06 2008 +0200
25533
25534     ppc4xx: Fix printf format warnings now visible with the updated format check
25535
25536     This patch fixes ppc4xx related printf format warning. Those warnings are
25537     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
25538     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
25539     really helpful.
25540
25541     Signed-off-by: Stefan Roese <sr@denx.de>
25542
25543 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
25544 Author: Stefan Roese <sr@denx.de>
25545 Date:   Wed Jul 9 17:33:57 2008 +0200
25546
25547     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
25548
25549     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
25550     To support such configurations, we "only" map the first 2GB via the TLB's. We
25551     need some free virtual address space for the remaining peripherals like, SoC
25552     devices, FLASH etc.
25553
25554     Note that ECC is currently not supported on configurations with more than 2GB
25555     SDRAM. This is because we only map the first 2GB on such systems, and therefore
25556     the ECC parity byte of the remaining area can't be written.
25557
25558     Signed-off-by: Stefan Roese <sr@denx.de>
25559
25560 commit cf1c2ed91df26903b956948f37f82de9e1158a89
25561 Author: Larry Johnson <lrj@acm.org>
25562 Date:   Sat Jun 14 17:02:49 2008 -0400
25563
25564     ppc4xx: Remove implementation of testdram() from Korat board support
25565
25566     Signed-off-by: Larry Johnson <lrj@acm.org>
25567     Signed-off-by: Stefan Roese <sr@denx.de>
25568
25569 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
25570 Author: Larry Johnson <lrj@acm.org>
25571 Date:   Sat Jun 14 16:53:02 2008 -0400
25572
25573     ppc4xx: Update and add FDT to Korat board support
25574
25575     Signed-off-by: Larry Johnson <lrj@acm.org>
25576     Signed-off-by: Stefan Roese <sr@denx.de>
25577
25578 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
25579 Author: Wolfgang Denk <wd@denx.de>
25580 Date:   Thu Jul 10 01:13:30 2008 +0200
25581
25582     Minor coding style cleanup; update CHANGELOG
25583
25584     Signed-off-by: Wolfgang Denk <wd@denx.de>
25585
25586 commit 8915f1189c1d29d8be7f4de325702d90a8988219
25587 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25588 Date:   Wed Jul 9 17:50:45 2008 -0400
25589
25590     e1000: add support for 82545GM 64bit PCI-X copper variant
25591
25592     This PCI-X e1000 variant works by just adding in the correct
25593     PCI IDs in the appropriate places.
25594
25595     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25596
25597 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
25598 Author: Daniel Hellstrom <daniel@gaisler.com>
25599 Date:   Wed Jul 9 12:34:11 2008 +0000
25600
25601     SPARC: Build error fix
25602
25603     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
25604
25605     This patch makes SPARC targets build again. It is caused by
25606     phys_addr_t and phys_size_t being defined in the wrong header
25607     file. include/lmb.h need those typedefs to build.
25608
25609     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
25610
25611 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
25612 Author: Marcel Ziswiler <marcel@ziswiler.com>
25613 Date:   Wed Jul 9 08:17:15 2008 +0200
25614
25615     Many spelling fixes in README.
25616
25617     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
25618
25619 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
25620 Author: Marcel Ziswiler <marcel@ziswiler.com>
25621 Date:   Wed Jul 9 08:17:06 2008 +0200
25622
25623     Minor spelling fix in comment.
25624
25625     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
25626
25627 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
25628 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25629 Date:   Tue Jul 8 14:54:58 2008 -0400
25630
25631     Round the serial port clock divisor value returned by calc_divisor()
25632
25633     Round the serial port clock divisor value returned by
25634     calc_divisor().
25635
25636     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25637     Signed-off-by: John Roberts <john.roberts@pwav.com>
25638
25639 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
25640 Author: Scott Wood <scottwood@freescale.com>
25641 Date:   Wed Jul 9 17:47:52 2008 -0500
25642
25643     NAND: ifdef-protect most of nand.h when using legacy NAND.
25644
25645     Some macros such as NAND_CTL_SETALE conflict between current and legacy
25646     NAND, being defined by the subsystem in the former case and the board
25647     config file in the latter.
25648
25649     Signed-off-by: Scott Wood <scottwood@freescale.com>
25650
25651 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
25652 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25653 Date:   Tue Jul 8 11:02:05 2008 -0400
25654
25655     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
25656
25657     ARM: Fix for incorrect version of patch applied when
25658     adding support for the Lyrtech SFF-SDR board.
25659
25660     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25661     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
25662
25663 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
25664 Author: Kyungmin Park <kmpark@infradead.org>
25665 Date:   Tue Jul 8 09:08:40 2008 +0900
25666
25667     Remove useless print message at apollon
25668
25669     Remove useless print message at apollon
25670
25671     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
25672
25673 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
25674 Author: Andy Fleming <afleming@freescale.com>
25675 Date:   Mon Jul 7 14:24:39 2008 -0500
25676
25677     Fix LMB type issues
25678
25679     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
25680     of casting problems in the bootm code that called the LMB functions.
25681
25682     Signed-off-by: Andy Fleming <afleming@freescale.com>
25683
25684 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
25685 Author: Kumar Gala <galak@kernel.crashing.org>
25686 Date:   Mon Jul 7 09:39:06 2008 -0500
25687
25688     Fix compiler warnings
25689
25690     gcc-4.3.x generates the following:
25691
25692     bootm.c: In function 'do_bootm_linux':
25693     bootm.c:208: warning: cast from pointer to integer of different size
25694     bootm.c:215: warning: cast from pointer to integer of different size
25695
25696     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25697
25698 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
25699 Author: Harald Welte <laforge@gnumonks.org>
25700 Date:   Mon Jul 7 15:40:39 2008 +0800
25701
25702     Remove code duplication for setting the default environment
25703
25704     common/env_common.c (default_env): new function that resets the environment to
25705                     the default value
25706     common/env_common.c (env_relocate): use default_env instead of own copy
25707     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
25708     include/environment.h: added default_env prototype
25709
25710     Signed-off-by: Werner Almesberger <werner@openmoko.org>
25711     Signed-off-by: Harald Welte <laforge@openmoko.org>
25712
25713 commit 99c2b434d37863df5dda5207a53760c6506fc2be
25714 Author: Marcel Ziswiler <marcel@ziswiler.com>
25715 Date:   Sun Jun 22 16:13:46 2008 +0200
25716
25717     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
25718
25719     The writeenv() and readenv() calls introduced by the recently added bad block
25720     management for environment variables were missing casts therefore producing
25721     compile time warnings.
25722     While at it fixing some typo in a comment and indentation.
25723
25724     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
25725     Signed-off-by: Scott Wood <scottwood@freescale.com>
25726
25727 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
25728 Author: Scott Wood <scottwood@freescale.com>
25729 Date:   Fri Jun 20 12:38:57 2008 -0500
25730
25731     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
25732
25733     This is particularly problematic now that non-NAND-specific code is
25734     including <nand.h>, and thus all debugging code is being compiled
25735     regardless of whether it was requested, as reported by Scott McNutt
25736     <smcnutt@psyent.com>.
25737
25738     Signed-off-by: Scott Wood <scottwood@freescale.com>
25739
25740 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
25741 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25742 Date:   Thu Jun 12 19:27:58 2008 +0200
25743
25744     mmc: Move atmel_mci driver into drivers/mmc
25745
25746     This makes it easier to use the driver on other platforms.
25747
25748     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25749     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25750
25751 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
25752 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25753 Date:   Thu Jun 12 19:27:57 2008 +0200
25754
25755     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
25756
25757     After we move the atmel_mci driver into drivers/mmc, we can't select
25758     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
25759     this driver so that there's no ambiguity.
25760
25761     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25762     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25763
25764 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
25765 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25766 Date:   Thu Jun 12 19:27:56 2008 +0200
25767
25768     Create drivers/mmc subdirectory
25769
25770     In order to consolidate more of the various MMC drivers around the
25771     tree, we must first have a common place to put them.
25772
25773     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25774     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25775
25776 commit b502611b51f02718c2d1117d4981dabceb5af6de
25777 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
25778 Date:   Sun Jul 6 12:30:09 2008 +0200
25779
25780     Change env_get_char from a global function ptr to a function
25781
25782     This avoids an early global data reference.
25783
25784     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25785
25786 commit 27269417ade432189b234d9fbac98b54e37b978c
25787 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
25788 Date:   Sun Jul 6 13:57:58 2008 +0400
25789
25790     Some copy-n-paste fixes in printf usage
25791
25792     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
25793
25794 commit 0e6989b9faf1588e8723535539e88a0df3c71356
25795 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
25796 Date:   Sun Jul 6 13:57:00 2008 +0400
25797
25798     FDT memory and pci node fixes for MPC8260ADS
25799
25800     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
25801
25802 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
25803 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25804 Date:   Mon Jul 7 06:41:14 2008 -0700
25805
25806     Fix printf errors.
25807
25808     The compiler will help find mismatches between printf formats and
25809     arguments if you let it.  This patch adds the necessary attributes to
25810     declarations in include/common.h, then begins to correct the resulting
25811     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
25812     "%d" and incorrect arguments.  Others were just annoying, like
25813     int-long mismatches on a system where both are 32 bits.  It's worth
25814     fixing the annoying errors to catch the real ones.
25815
25816     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25817
25818 commit 417faf285b2527acb2de24c5cd3e2621d385408c
25819 Author: Becky Bruce <becky.bruce@freescale.com>
25820 Date:   Wed Jul 9 11:09:41 2008 -0500
25821
25822     Allow print_size to print in GB
25823
25824     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25825
25826 commit e7c374529c87525c9aa463e0557c287887ae4e9e
25827 Author: Jason McMullan <mcmullan@netapp.com>
25828 Date:   Sun Jun 8 23:56:00 2008 -0400
25829
25830     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
25831
25832     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
25833     they are set in the U-Boot environment.
25834
25835     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
25836     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25837
25838 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
25839 Author: Stefan Roese <sr@denx.de>
25840 Date:   Tue Jul 8 12:57:14 2008 +0200
25841
25842     jedec_flash: Fix AM29DL800BB device ID
25843
25844     As pointed out by Jerry Hicks, this patch corrects the device ID of
25845     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
25846     datasheet (rev C4 from Dezember 2006).
25847
25848     Signed-off-by: Stefan Roese <sr@denx.de>
25849
25850 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
25851 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25852 Date:   Mon Jul 7 11:22:37 2008 +0900
25853
25854     sh: Fix compile error sh7763rdp board
25855
25856     Disable SH ether driver.
25857
25858     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25859
25860 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
25861 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25862 Date:   Tue Jul 8 12:03:24 2008 +0900
25863
25864     sh: Fix SH-boards compile error
25865
25866     By Cleanup out-or-tree building for some boards (.depend)
25867     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
25868     because filse ware changed, some SH-boards have compile error.
25869     I revised this problem.
25870
25871     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25872
25873 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
25874 Author: Jason Jin <Jason.jin@freescale.com>
25875 Date:   Tue May 13 11:50:36 2008 +0800
25876
25877     Feed the watchdog in u-boot for 8610 board.
25878
25879     The watchdog on 8610 board is enabled by setting sw[6]
25880     to on. Once enabled, the watchdog can not be disabled
25881     by software. So feed the dog in u-boot is necessary for
25882     normal operation.
25883
25884     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
25885
25886 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
25887 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25888 Date:   Wed Jun 18 12:10:33 2008 -0400
25889
25890     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
25891
25892     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
25893
25894     Remove duplicate code in a if/else block in
25895     cpu/arm926ejs/davinci/lxt972.c.
25896     Fixed style issues.
25897
25898     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25899     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25900
25901 commit fec61431a003f5778bafa2624073a571af8bec9f
25902 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25903 Date:   Wed Jun 18 12:10:31 2008 -0400
25904
25905     Remove duplicate definitions in include/lxt971a.h.
25906
25907     Remove duplicate definitions in include/lxt971a.h.
25908
25909     Remove duplicate registers and bits definitions in
25910     include/lxt971a.h for standard MII registers, and
25911     use values in include/miiphy.h instead.
25912
25913     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25914     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25915
25916 commit 9751ee0990f467941da0b095a4e995f863672d7a
25917 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25918 Date:   Wed Jun 11 21:05:00 2008 +0900
25919
25920     net: sh: Renesas SH7763 Ethernet device support
25921
25922     Renesas SH7763 has 2 channel Ethernet device.
25923     This is 10/100/1000 Base support.
25924     But this patch check 10/100 Base only.
25925
25926     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25927     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25928
25929 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
25930 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25931 Date:   Tue Jun 17 16:28:05 2008 +0900
25932
25933     sh: Update Renesas R2DPlus board
25934
25935     New NOR Flash board support and remove old type flash board config.
25936     And Remove network setting from config file.
25937
25938     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25939     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25940
25941 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
25942 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25943 Date:   Tue Jun 17 16:28:01 2008 +0900
25944
25945     sh: Update Renesas R7780MP board
25946
25947     New NOR Flash board support and remove network setting from config file.
25948
25949     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25950     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25951
25952 commit c001cd604e9f133743effbddb1c215b48e761c5a
25953 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25954 Date:   Tue Jun 17 16:27:56 2008 +0900
25955
25956     sh: Update Renesas Migo-R board
25957
25958     Remove network setting from config file.
25959
25960     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25961     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25962
25963 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
25964 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25965 Date:   Tue Jun 17 16:27:52 2008 +0900
25966
25967     sh: Update Hitachi MS7722SE board
25968
25969     Remove network setting from config file.
25970
25971     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25972     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25973
25974 commit 26209e48e8791670c93108029a5c31a30016c6df
25975 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25976 Date:   Tue Jun 17 16:27:48 2008 +0900
25977
25978     sh: Cleanup source code of SH7763RDP
25979
25980     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25981     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25982
25983 commit 5cd5b2c96ef0025762931349d350287aec03ab47
25984 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25985 Date:   Tue Jun 17 16:27:44 2008 +0900
25986
25987     sh: Cleanup source code of R2DPlus
25988
25989     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25990     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25991
25992 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
25993 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25994 Date:   Tue Jun 17 16:27:41 2008 +0900
25995
25996     sh: Cleanup source code of R7780MP
25997
25998     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25999     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26000
26001 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
26002 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26003 Date:   Tue Jun 17 16:27:38 2008 +0900
26004
26005     sh: Cleanup source code of MS7722SE
26006
26007     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26008     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26009
26010 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
26011 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26012 Date:   Tue Jun 17 16:27:34 2008 +0900
26013
26014     sh: Cleanup source code of MS7720SE
26015
26016     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26017     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26018
26019 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
26020 Author: Wolfgang Denk <wd@denx.de>
26021 Date:   Mon Jul 7 00:45:03 2008 +0200
26022
26023     SH: fix out of tree building
26024
26025     Signed-off-by: Wolfgang Denk <wd@denx.de>
26026
26027 commit 9047bfa1e737d787be460387dd6f45737eeceb10
26028 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26029 Date:   Thu Jul 3 23:16:06 2008 +0900
26030
26031     net: smc911x: Fix typo
26032
26033     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26034
26035 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
26036 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26037 Date:   Wed Jul 2 18:54:08 2008 +0200
26038
26039     update mvBL-M7 board config
26040
26041     update mvBL-M7 config file to use UBOOT_VERSION and define
26042     CONFIG_HIGH_BATS.
26043
26044     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26045
26046 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
26047 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26048 Date:   Mon Jun 30 17:45:01 2008 +0900
26049
26050     net: fix compile problem in smc911x driver.
26051
26052     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26053     Acked-by: Ben Warren <biggerbadderben@gmail.com>
26054
26055 commit 9fea65a6c469b1b474b27446feb58738baba2d31
26056 Author: Michal Simek <monstr@monstr.eu>
26057 Date:   Tue Jun 24 09:54:09 2008 +0200
26058
26059     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
26060
26061     This change helps with better handling with others
26062     Xilinx based platform.
26063
26064     Signed-off-by: Michal Simek <monstr@monstr.eu>
26065     Acked-by: Stefan Roese <sr@denx.de>
26066
26067 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
26068 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26069 Date:   Tue Jun 17 13:07:11 2008 +0900
26070
26071     net: ne2000: Move dev_addr variable from grobal to local.
26072
26073     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26074     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26075
26076 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
26077 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26078 Date:   Tue Jun 17 13:07:15 2008 +0900
26079
26080     net: ne2000: Fix compile error of NE2000
26081
26082     If enable DEBUG, can not compile ne2000 driver.
26083
26084     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26085     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26086
26087 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
26088 Author: Ben Warren <biggerbadderben@gmail.com>
26089 Date:   Mon Jun 23 22:57:27 2008 -0700
26090
26091     Add mechanisms for CPU and board-specific Ethernet initialization
26092
26093     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
26094     initialization to CPU or board-specific code.  Initial implementation is
26095     only on the Freescale TSEC controller, but others will be added soon.
26096
26097     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26098
26099 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
26100 Author: Wolfgang Denk <wd@denx.de>
26101 Date:   Sun Jul 6 01:21:46 2008 +0200
26102
26103     include/sha256.h: fix file permissions.
26104
26105     Signed-off-by: Wolfgang Denk <wd@denx.de>
26106
26107 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
26108 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
26109 Date:   Tue May 27 11:15:29 2008 +0200
26110
26111     [AT91SAM9] Fix NAND FLASH timings
26112
26113     Fix NAND FLASH timings for at91sam9x evaluation kits.
26114
26115     New timings are based on application note
26116     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
26117     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
26118
26119     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
26120     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26121     Acked-by: Stelian Pop <stelian@popies.net>
26122
26123 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
26124 Author: Stelian Pop <stelian@popies.net>
26125 Date:   Thu May 22 00:15:40 2008 +0200
26126
26127     Fix boot from NOR due to incorrect reset delay.
26128
26129     AT91 RSTC registers are battery-backuped, so their values
26130     are not reset across power cycles. One of those registers,
26131     the AT91_RSTC_MR register, is being modified by U-Boot, in
26132     the ethernet initialisation routine, to generate a 500ms
26133     user reset.
26134
26135     Unfortunately, this value is not being restored afterwards,
26136     causing subsequent resets to also last for 500ms.
26137
26138     This long reset sequence causes problems (at least) in the
26139     boot sequence from NOR: by the time the CPU tries to load
26140     a program from the NOR flash, the latter is still in reset
26141     and not yet available.
26142
26143     Additionaly, this patch fixes a bug in the original code which
26144     caused the reset delay to last for 2s instead of 500ms.
26145
26146     Signed-off-by: Stelian Pop <stelian@popies.net>
26147     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26148
26149 commit f492dd636fbbae529e17533995bc6e5813c007f6
26150 Author: Wolfgang Denk <wd@denx.de>
26151 Date:   Fri Jul 4 20:11:49 2008 +0200
26152
26153     Update CHANGELOG
26154
26155     Signed-off-by: Wolfgang Denk <wd@denx.de>
26156
26157 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
26158 Author: Wolfgang Denk <wd@denx.de>
26159 Date:   Fri Jul 4 20:07:35 2008 +0200
26160
26161     CCM/SCM boards: fix out of tree building
26162
26163     Signed-off-by: Wolfgang Denk <wd@denx.de>
26164
26165 commit ab4c3a490df9a964711556d2a05b0c787db45fde
26166 Author: Wolfgang Denk <wd@denx.de>
26167 Date:   Thu Jul 3 23:22:27 2008 +0200
26168
26169     SCM board: fix build errors.
26170
26171     Signed-off-by: Wolfgang Denk <wd@denx.de>
26172
26173 commit a566466f17ba0e2d2b6c250e77da678fb932470d
26174 Author: Wolfgang Denk <wd@denx.de>
26175 Date:   Thu Jul 3 23:06:36 2008 +0200
26176
26177     IAD210 board: fix ``"ALIGN" redefined'' warning.
26178
26179     Signed-off-by: Wolfgang Denk <wd@denx.de>
26180
26181 commit ad756314797c16fa5dca23e115aab881011f164f
26182 Author: Wolfgang Denk <wd@denx.de>
26183 Date:   Thu Jul 3 23:00:24 2008 +0200
26184
26185     CCM board: fix build errors.
26186
26187     Signed-off-by: Wolfgang Denk <wd@denx.de>
26188
26189 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
26190 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26191 Date:   Wed Jul 2 18:54:08 2008 +0200
26192
26193     update mvBL-M7 board config
26194
26195     update mvBL-M7 config file to use UBOOT_VERSION.
26196
26197     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26198     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26199
26200 commit ced209c50e80c25f13c083099b05044048d21f4f
26201 Author: Wolfgang Denk <wd@denx.de>
26202 Date:   Thu Jul 3 22:39:21 2008 +0200
26203
26204     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
26205
26206     Signed-off-by: Wolfgang Denk <wd@denx.de>
26207
26208 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
26209 Author: Wolfgang Denk <wd@denx.de>
26210 Date:   Thu Jul 3 22:34:08 2008 +0200
26211
26212     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
26213
26214     Signed-off-by: Wolfgang Denk <wd@denx.de>
26215
26216 commit 730f298485984b011b6ee8f4acb511cb45a843dd
26217 Author: Wolfgang Denk <wd@denx.de>
26218 Date:   Thu Jul 3 22:04:17 2008 +0200
26219
26220     lmb: fix "implicit declaration of function 'lmb_free'" warning
26221
26222     Signed-off-by: Wolfgang Denk <wd@denx.de>
26223
26224 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
26225 Author: Wolfgang Denk <wd@denx.de>
26226 Date:   Wed Jul 2 23:53:23 2008 +0200
26227
26228     Cleanup: remove redundant deleting on *~ files
26229
26230     Signed-off-by: Wolfgang Denk <wd@denx.de>
26231
26232 commit c8a3b109f07f02342d097b30908965f7261d9f15
26233 Author: Wolfgang Denk <wd@denx.de>
26234 Date:   Wed Jul 2 23:49:18 2008 +0200
26235
26236     Cleanup out-or-tree building for some boards (.depend)
26237
26238     Signed-off-by: Wolfgang Denk <wd@denx.de>
26239
26240 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
26241 Author: Wolfgang Denk <wd@denx.de>
26242 Date:   Wed Jul 2 23:38:50 2008 +0200
26243
26244     Cleanup: fix out-of-tree building for some boards
26245
26246     Signed-off-by: Wolfgang Denk <wd@denx.de>
26247
26248 commit 461fa68d20861811487944d22291db5a13410e20
26249 Author: Wolfgang Denk <wd@denx.de>
26250 Date:   Wed Jul 2 23:00:14 2008 +0200
26251
26252     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
26253
26254     Signed-off-by: Wolfgang Denk <wd@denx.de>
26255
26256 commit 5981ebd32017e062b08aa6747cf591276f2db779
26257 Author: Detlev Zundel <dzu@denx.de>
26258 Date:   Fri Jun 20 22:26:24 2008 +0200
26259
26260     fdt: Fix typo in variable name.
26261
26262     Signed-off-by: Detlev Zundel <dzu@denx.de>
26263
26264 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
26265 Author: Gary Jennejohn <garyj@denx.de>
26266 Date:   Thu Jun 19 11:11:19 2008 +0200
26267
26268     Add logos for RRvision board
26269
26270     Signed-off-by: Gary Jennejohn <garyj@denx.de>
26271
26272 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
26273 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
26274 Date:   Wed Jun 18 11:03:57 2008 +0200
26275
26276     mpc8260: add fdt_fixup_ethernet support
26277
26278     Add support for updating mac-address and local-mac-address in fdt for
26279     all MPC8260 targets.
26280
26281     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
26282
26283 commit f6a69559d64498a04e1e0b087a9b920e5775f866
26284 Author: Steven A. Falco <sfalco@harris.com>
26285 Date:   Thu Jun 12 13:24:42 2008 -0400
26286
26287     cmd_nvedit.c: clean up syntax highlighting
26288
26289     My text-editor (vim) has a bit of trouble syntax-highlighting the
26290     cmd_nvedit.c file, because it apparently does not parse C
26291     ifdef/else/endif. The following patch does not change the behavior of
26292     the code at all, but does allow the editor to properly
26293     syntax-highlight the file.
26294
26295     Signed-off-by: Steve Falco <sfalco@harris.com>
26296
26297 commit 75678c807a6272ecc5541eb32898c93887f08400
26298 Author: Steven A. Falco <sfalco@harris.com>
26299 Date:   Thu Jun 12 13:22:12 2008 -0400
26300
26301     Make setenv() return status
26302
26303     Currently, the setenv function does not return an error code.
26304     This patch allows to test for errors.
26305
26306     Signed-off-by: Steve Falco <sfalco@harris.com>
26307
26308 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
26309 Author: Kumar Gala <galak@kernel.crashing.org>
26310 Date:   Wed Jun 11 10:14:06 2008 -0500
26311
26312     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
26313
26314     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
26315     and fls is used to implement them.
26316
26317     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26318
26319 commit 83002a77cbdf383015ca384eff5fa31722d8e571
26320 Author: Magnus Lilja <lilja.magnus@gmail.com>
26321 Date:   Mon Jun 9 22:58:48 2008 +0200
26322
26323     i.MX31: Cleanup comments in lowlevel_init.S.
26324
26325     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
26326
26327 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
26328 Author: Ben Warren <biggerbadderben@gmail.com>
26329 Date:   Sun Jun 8 23:28:33 2008 -0700
26330
26331     Move conditional compilation of MPC8XXX SPI driver to Makefile
26332
26333     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26334
26335 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
26336 Author: Juergen Kilb <J.Kilb@gmx.de>
26337 Date:   Sun Jun 8 17:59:53 2008 +0200
26338
26339     i.MX31: fixed CTRL-C detection
26340
26341     The Register URXD contains status information in bits [15..8].
26342     With status bit 15 set, CTRL-C was reported as 0x8003 instead
26343     of 0x03. Therefore CTRL-C was not detected.
26344     To solve this, bits [15..8] were masked out now.
26345
26346     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
26347     Acked-by: Felix Radensky <felix@embedded-sol.com>
26348
26349 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
26350 Author: Stefan Roese <sr@denx.de>
26351 Date:   Tue Jul 1 17:03:19 2008 +0200
26352
26353     ppc4xx: Fix 460EX/GT PCIe port initialization
26354
26355     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
26356     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
26357     this out.
26358
26359     Signed-off-by: Stefan Roese <sr@denx.de>
26360
26361 commit b571afde0295b007a45055ee49f8822c753a5651
26362 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26363 Date:   Sat Jun 7 12:29:52 2008 +0200
26364
26365     add SHA256 support
26366
26367     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26368     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
26369
26370 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
26371 Author: Marian Balakowicz <m8@semihalf.com>
26372 Date:   Fri Jun 6 23:07:40 2008 +0200
26373
26374     Delay FIT format check on sector based devices
26375
26376     Global FIT image operations like format check cannot be performed on
26377     a first sector data, defer them to the point when whole FIT image was
26378     uploaded to a system RAM.
26379
26380     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26381     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
26382     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
26383
26384 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
26385 Author: Dave Liu <r63238@freescale.com>
26386 Date:   Tue Jun 3 17:38:19 2008 +0800
26387
26388     sata: wait for device updating signature to host
26389
26390     The driver need wait for the device updating signature to host.
26391     If we don't wait for it, the driver can not detect the device(disk)
26392     when the system powers up.
26393
26394     Signed-off-by: Dave Liu <daveliu@freescale.com>
26395
26396 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
26397 Author: Stefan Roese <sr@denx.de>
26398 Date:   Sat Jun 28 14:56:17 2008 +0200
26399
26400     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
26401
26402     This patch implements a fix provided by AMCC so that the lockup upon
26403     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
26404     anymore:
26405
26406     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
26407     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
26408     USB 2.0 host and SATA.
26409
26410     This errata is not officially available yet. I'll update the comment
26411     to add the errata number later.
26412
26413     Signed-off-by: Stefan Roese <sr@denx.de>
26414
26415 commit 8b616edb118e37d05f6401389eaee1c636b22828
26416 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
26417 Date:   Mon Jun 2 16:42:19 2008 -0400
26418
26419     serial_pl010.c: add watchdog support
26420
26421     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
26422
26423 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
26424 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
26425 Date:   Mon Jun 2 16:40:08 2008 -0400
26426
26427     jffs2_1pass.c: add watchdog support
26428
26429     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
26430
26431 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
26432 Author: Sascha Laue <sascha.laue@liebherr.com>
26433 Date:   Fri May 30 09:48:14 2008 +0200
26434
26435     Configure DSP POST; add watchdog reset to diag command
26436
26437     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
26438
26439 commit f13526517859bf6b573e23ff47199e107d1009b5
26440 Author: Tor Krill <tor@excito.com>
26441 Date:   Thu May 29 10:40:17 2008 +0200
26442
26443     Add sata sil3114 support
26444
26445     Signed-off-by: Tor Krill <tor@excito.com>
26446
26447 commit e093a247628228100f405b6d7f6b1bfc16141938
26448 Author: Wolfgang Denk <wd@denx.de>
26449 Date:   Sat Jun 28 23:34:37 2008 +0200
26450
26451     Coding Style Cleanup
26452
26453     Signed-off-by: Wolfgang Denk <wd@denx.de>
26454
26455 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
26456 Author: Wolfgang Denk <wd@denx.de>
26457 Date:   Sat Jun 28 23:16:01 2008 +0200
26458
26459     Update CHANGELOG
26460
26461     Signed-off-by: Wolfgang Denk <wd@denx.de>
26462
26463 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
26464 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26465 Date:   Wed May 21 13:58:41 2008 -0400
26466
26467     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
26468
26469     This patch adds support for the Lyrtech SFF-SDR board,
26470     based on the TI DaVinci architecture (ARM926EJS).
26471
26472     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
26473     Signed-off-by: Philip Balister <philip@balister.org>
26474     Signed-off-by: Wolfgang Denk <wd@denx.de>
26475
26476 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
26477 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26478 Date:   Thu May 22 11:09:59 2008 +0200
26479
26480     MMC: Consolidate MMC/SD command definitions
26481
26482     This moves the MMC and SD Card command definitions from
26483     include/asm/arch/mmc.h into include/mmc.h. These definitions are
26484     given by the MMC and SD Card standards, not by any particular
26485     architecture.
26486
26487     There's a lot more room for consolidation in the MMC drivers which
26488     I'm hoping to get done eventually, but this patch is a start.
26489
26490     Compile-tested for all avr32 boards as well as lpc2292sodimm and
26491     lubbock. This should cover all three mmc drivers in the tree.
26492
26493     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26494
26495 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
26496 Author: Kyungmin Park <kmpark@infradead.org>
26497 Date:   Wed May 21 14:38:08 2008 +0900
26498
26499     Use better Ethernet timings for apollon board
26500
26501     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26502
26503 commit 41c5eaa7253ed82bbae1eda5667755872c615164
26504 Author: Andy Fleming <afleming@freescale.com>
26505 Date:   Mon Jun 16 13:58:56 2008 -0500
26506
26507     Resize device tree to allow space for board changes and the chosen node
26508
26509     Current code requires that a compiled device tree have space added to the end to
26510     leave room for extra nodes added by board code (and the chosen node).  This
26511     requires that device tree creators anticipate how much space U-Boot will add to
26512     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
26513     tree when it needed more space, but this would require a systemic change to the
26514     fdt code, which is non-trivial.  Instead, we resize the tree inside
26515     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
26516     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
26517
26518     Signed-off-by: Andy Fleming <afleming@freescale.com>
26519
26520 commit 7570a9941fc565922078679a72d246fe208d696d
26521 Author: Andy Fleming <afleming@freescale.com>
26522 Date:   Mon Jun 16 13:58:55 2008 -0500
26523
26524     Fix an underflow bug in __lmb_alloc_base
26525
26526     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
26527     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
26528     merely updates __lmb_alloc_base to resemble the current version in Linux.
26529
26530     Signed-off-by: Andy Fleming <afleming@freescale.com>
26531
26532 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
26533 Author: Andy Fleming <afleming@freescale.com>
26534 Date:   Mon Jun 16 13:58:54 2008 -0500
26535
26536     Add lmb_free
26537
26538     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
26539     lmb_reserve to temporarily reserve some memory.
26540
26541     Signed-off-by: Andy Fleming <afleming@freescale.com>
26542
26543 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
26544 Author: Andy Fleming <afleming@freescale.com>
26545 Date:   Mon Jun 16 13:58:53 2008 -0500
26546
26547     Add ALIGN() macro
26548
26549     ALIGN() returns the smallest aligned value greater than the passed
26550     in address or size.  Taken from Linux.
26551
26552     Signed-off-by: Andy Fleming <afleming@freescale.com>
26553
26554 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
26555 Author: Stefan Roese <sr@denx.de>
26556 Date:   Tue Jun 24 17:15:22 2008 +0200
26557
26558     ppc4xx: Fix compilation problems with phys_size_t
26559
26560     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
26561     board specific files where it has been missing.
26562
26563     Signed-off-by: Stefan Roese <sr@denx.de>
26564
26565 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
26566 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26567 Date:   Mon May 19 12:26:38 2008 +0200
26568
26569     Conditionally add -fno-stack-protector to CFLAGS
26570
26571     When compile-testing on powerpc, I get errors like this:
26572
26573     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
26574
26575     This seems to be because -fstack-protector is on by default, so
26576     let's explicitly disable it on all architectures that support the
26577     option.
26578
26579     The Ubuntu toolchain is affected by this problem, and according to
26580     Mike Frysinger, Gentoo has been running with SSP enabled for years.
26581     More and more distros are turning SSP on by default, so this problem
26582     is likely to get worse in the future.
26583
26584     Also, powerpc just happens to be one of the arches I do
26585     compile-testing on. There may be other arches affected by this too.
26586
26587     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26588
26589 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
26590 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26591 Date:   Sun May 18 19:09:52 2008 +0200
26592
26593     pcmcia/ti_pci1410a: Move compile condition to the Makefile
26594
26595     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26596
26597 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
26598 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26599 Date:   Sun May 18 19:09:51 2008 +0200
26600
26601     pxa_pcmcia: Move compile condition to the Makefile
26602
26603     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26604
26605 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
26606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26607 Date:   Sun May 18 19:09:50 2008 +0200
26608
26609     marabun_pcmcia: Move compile condition to the Makefile
26610
26611     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26612
26613 commit 6a19c46cae43c16c528eddefae3db97134f1915d
26614 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26615 Date:   Mon Jun 23 13:25:34 2008 +0200
26616
26617     fix non-working mvBL-M7
26618
26619     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
26620
26621     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26622     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26623
26624 commit 846f1574ddddeda2bc227655e687308695f41cdc
26625 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26626 Date:   Mon Jun 23 11:40:56 2008 +0200
26627
26628     fix system config overwrite @ MPC834x and MPC8313
26629
26630     During 83xx setup the "System I/O configuration register high" gets
26631     overwritten with user defined value if CFG_SICRH is defined.
26632
26633     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
26634     must keep their reset value regardless of configuration.
26635
26636     On my board (using RGMII) those bits are set after reset - yet it's
26637     unclear where they come from.
26638
26639     The patch keeps both bits on MPC834x and MPC8313.
26640
26641     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26642     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26643
26644 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
26645 Author: Kim Phillips <kim.phillips@freescale.com>
26646 Date:   Tue Jun 17 17:45:27 2008 -0500
26647
26648     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
26649
26650     to avoid this:
26651
26652     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
26653     In file included from cpu.c:33:
26654     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
26655
26656     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26657
26658 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
26659 Author: Stefan Roese <sr@denx.de>
26660 Date:   Mon Jun 23 11:15:09 2008 +0200
26661
26662     ppc4xx: Fix problem in gpio_config()
26663
26664     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
26665     left by one. So the additional shift is bogus.
26666
26667     Signed-off-by: Stefan Roese <sr@denx.de>
26668
26669 commit 40777812316fc252c941665c0f60c148fd79d50f
26670 Author: Detlev Zundel <dzu@denx.de>
26671 Date:   Fri Jun 20 22:24:05 2008 +0200
26672
26673     fdt: Fix typo in variable name.
26674
26675     Signed-off-by: Detlev Zundel <dzu@denx.de>
26676
26677 commit 5f723a3b98c630bde33de74351f2121691fdef14
26678 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26679 Date:   Fri Jun 20 10:41:05 2008 +0200
26680
26681     avr32: Enable SPI flash support on ATNGW100
26682
26683     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
26684     the new SPI flash framework.
26685
26686     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26687
26688 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
26689 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26690 Date:   Fri Jun 20 12:44:28 2008 +0200
26691
26692     avr32: Fix SPI portmux initialization
26693
26694     Use the new GPIO manipulation functions to set up the chip select lines,
26695     and make sure both busses use GPIO for chip select control.
26696
26697     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26698
26699 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
26700 Author: Peter Ma <pma@mediamatech.com>
26701 Date:   Sun Jun 1 22:59:24 2008 -0700
26702
26703     avr32: Add GPIO manipulation functions
26704
26705     Adds GPIO manipulation functions for AVR32 AP7 platform.
26706
26707     Signed-off-by: Peter Ma <pma@mediamatech.com>
26708     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
26709     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26710
26711 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
26712 Author: Wolfgang Grandegger <wg@grandegger.com>
26713 Date:   Thu Jun 5 13:02:30 2008 +0200
26714
26715     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
26716
26717     This patch is based on the following patch sent a few minutes ago:
26718     "NAND FSL UPM: driver re-write using the hwcontrol callback"
26719     It is untested, of course. Anton, could you please give it a try.
26720
26721     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26722     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26723
26724 commit 96026d42fa4e646d28318c0a1438aac4b2017909
26725 Author: Anatolij Gustschin <agust@denx.de>
26726 Date:   Thu Jun 12 12:40:11 2008 +0200
26727
26728     Fix 4xx build issue
26729
26730     Building for 4xx doesn't work since commit 4dbdb768:
26731
26732     In file included from 4xx_pcie.c:28:
26733     include/asm/processor.h:971: error: expected ')' before 'ver'
26734     make[1]: *** [4xx_pcie.o] Error 1
26735
26736     This patch fixes the problem.
26737
26738     Signed-off-by: Anatolij Gustschin <agust@denx.de>
26739     Acked-by: Stefan Roese <sr@denx.de>
26740     Acked-by: Kumar Gala <galak@kernel.crashing.org>
26741
26742 commit a036b0443657fe0f4773786de9092251869f08ac
26743 Author: Kumar Gala <galak@kernel.crashing.org>
26744 Date:   Thu Jun 19 01:45:50 2008 -0500
26745
26746     MPC8610HPCD: Report board id, board version and fpga version.
26747
26748     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26749
26750 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
26751 Author: Kumar Gala <galak@kernel.crashing.org>
26752 Date:   Thu Jun 19 01:45:27 2008 -0500
26753
26754     MPC8641HPCN: Report board id, board version and fpga version.
26755
26756     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26757
26758 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
26759 Author: Stefan Roese <sr@denx.de>
26760 Date:   Mon Jun 16 10:40:02 2008 +0200
26761
26762     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
26763
26764     This patch simplifies flash_toggle() (AMD commandset), which is used to
26765     detect if a FLASH device is still busy with erase/program operations. On
26766     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
26767     did not detect the busy state reliably, resulting in non erased sectors
26768     etc. This patch now simplifies this function by "just" comparing the
26769     complete data-word instead of ANDing it with the command-word (0x40)
26770     before the compatison. It is done the same way in the Linux implementation
26771     chip_ready() in cfi_cmdset_0002.c.
26772
26773     Signed-off-by: Stefan Roese <sr@denx.de>
26774
26775 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
26776 Author: Philip Balister <philip@balister.org>
26777 Date:   Mon Jun 16 08:58:07 2008 -0400
26778
26779     NAND: Add missing declaration to non-redundant saveenv().
26780
26781     Signed-off-by: Scott Wood <scottwood@freescale.com>
26782
26783 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
26784 Author: Wolfgang Grandegger <wg@grandegger.com>
26785 Date:   Mon Jun 2 15:09:55 2008 +0200
26786
26787     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
26788
26789     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26790     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26791     Signed-off-by: Scott Wood <scottwood@freescale.com>
26792
26793 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
26794 Author: Stefan Roese <sr@denx.de>
26795 Date:   Tue Jun 10 15:34:11 2008 +0200
26796
26797     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
26798
26799     This patch disables the square wave output of the M41T62 RTC used on
26800     Canyonlands & Glacier. Here the explanation:
26801
26802     The serial real-time clock part used in the design is an
26803     STMicro M41T62. This part has a full-time 32KHz square wave
26804     output that is connected to the TmrClk input to the
26805     processor. The default state for this square wave output is
26806     enabled so the output runs continuously when the board is
26807     powered normally and also from the battery. The TmrClk input
26808     to the processor goes to ground when the power is removed
26809     from the board/processor, and therefore the running square
26810     wave output is driving ground which drains the battery quickly.
26811
26812     Signed-off-by: Stefan Roese <sr@denx.de>
26813
26814 commit a94f22f08f280905926219e568568964cb9eeb9d
26815 Author: Andy Fleming <afleming@freescale.com>
26816 Date:   Wed Jun 11 18:10:20 2008 -0500
26817
26818     Fix build issue with string.h and linux/string.h
26819
26820     This commit:
26821     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
26822     Author: Wolfgang Denk <wd@denx.de>
26823     Date:   Fri Jun 6 14:28:14 2008 +0200
26824
26825         tools/mkimage: fix compiler warnings on some systems.
26826
26827     Broke building on some systems, because the host's string.h was interfering
26828     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
26829     we're building for the host, so now we only include when building inside
26830     u-boot.
26831
26832     Signed-off-by: Andy Fleming <afleming@freescale.com>
26833
26834 commit 9973e3c614721bbf169882ffc3be266a6611cd60
26835 Author: Becky Bruce <becky.bruce@freescale.com>
26836 Date:   Mon Jun 9 16:03:40 2008 -0500
26837
26838     Change initdram() return type to phys_size_t
26839
26840     This patch changes the return type of initdram() from long int to phys_size_t.
26841     This is required for a couple of reasons: long int limits the amount of dram
26842     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
26843     size of physical memory.  phys_size_t is defined as an unsigned long on almost
26844     all current platforms.
26845
26846     This patch *only* changes the return type of the initdram function (in
26847     include/common.h, as well as in each board's implementation of initdram).  It
26848     does not actually modify the code inside the function on any of the platforms;
26849     platforms which wish to support more than 2GB of DRAM will need to modify
26850     their initdram() function code.
26851
26852     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
26853     MPC8641HPCN.
26854
26855     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26856
26857 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
26858 Author: Becky Bruce <becky.bruce@freescale.com>
26859 Date:   Mon Jun 9 20:37:18 2008 -0500
26860
26861     Change lmb to use phys_size_t/phys_addr_t
26862
26863     This updates the lmb code to use phys_size_t
26864     and phys_addr_t instead of unsigned long.  Other code
26865     which interacts with this code, like getenv_bootm_size()
26866     is also updated.
26867
26868     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
26869
26870     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26871
26872 commit 61b09fc2952dc636017df4e7970e3de132276ba1
26873 Author: Becky Bruce <becky.bruce@freescale.com>
26874 Date:   Mon Jun 9 20:37:17 2008 -0500
26875
26876     Change print_size to take phys_size_t
26877
26878     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26879
26880 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
26881 Author: Becky Bruce <becky.bruce@freescale.com>
26882 Date:   Mon Jun 9 20:37:16 2008 -0500
26883
26884     Change bd/gd memsize/ram_size to be phys_size_t.
26885
26886     Currently, both are defined as an unsigned long, but
26887     should be phys_size_t. This should result in no real change,
26888     since phys_size_t is currently an unsigned long for all the
26889     default configs.  Also add print_lnum to cmd_bdinfo to deal
26890     with the potentially wider memsize.
26891
26892     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26893
26894 commit ba04f7010958e88a8910f2a123fee53fdc72e013
26895 Author: Kumar Gala <galak@kernel.crashing.org>
26896 Date:   Tue Jun 10 16:16:02 2008 -0500
26897
26898     FSL LAW: Add new interface to use the last free LAW
26899
26900     LAWs have the concept of priority so its useful to be able to allocate
26901     the lowest (highest number) priority.  We will end up using this with the
26902     new DDR code.
26903
26904     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26905
26906 commit 859a86a25c569d3665ff413d1d923394b8a961f3
26907 Author: Kumar Gala <galak@kernel.crashing.org>
26908 Date:   Wed Jun 11 00:51:45 2008 -0500
26909
26910     85xx/86xx: Move to dynamic mgmt of LAWs
26911
26912     With the new LAW interface (set_next_law) we can move to letting the
26913     system allocate which LAWs are used for what purpose.  This makes life
26914     a bit easier going forward with the new DDR code.
26915
26916     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26917     Signed-off-by: Andy Fleming <afleming@freescale.com>
26918     Acked-by: Jon Loeliger <jdl@freescale.com>
26919     Acked-by: Becky Bruce <becky.bruce@freescale.com>
26920
26921 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
26922 Author: Kumar Gala <galak@kernel.crashing.org>
26923 Date:   Wed Jun 11 00:44:10 2008 -0500
26924
26925     FSL LAW: Keep track of LAW allocations
26926
26927     Make it so we keep track of which LAWs have allocated and provide
26928     a function (set_next_law) which can allocate a LAW for us if one is
26929     free.
26930
26931     In the future we will move to doing more "dynamic" LAW allocation
26932     since the majority of users dont really care about what LAW number
26933     they are at.
26934
26935     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
26936
26937     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26938     Signed-off-by: Andy Fleming <afleming@freescale.com>
26939
26940 commit ddde74a159caa6e18b481fec01d40b885aebb566
26941 Author: Kumar Gala <galak@kernel.crashing.org>
26942 Date:   Mon Jun 9 22:31:57 2008 -0500
26943
26944     85xx: remove dummy board_early_init_f
26945
26946     A number of board ports have empty version of board_early_init_f
26947     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
26948
26949     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26950
26951 commit 81e56e9af0d43712db8efb843606a8d62eab454f
26952 Author: Kumar Gala <galak@kernel.crashing.org>
26953 Date:   Mon Jun 9 18:55:38 2008 -0500
26954
26955     MPC8544DS: Update config.h
26956
26957     * Enable flash progress
26958     * remove CLEAR_LAW0 since we dont really use it
26959
26960     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26961
26962 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
26963 Author: Kumar Gala <galak@kernel.crashing.org>
26964 Date:   Mon Jun 9 13:37:24 2008 -0500
26965
26966     85xx: Remove unused and unconfigured memory test code.
26967
26968     Remove unused and unconfigured DDR test code from FSL 85xx boards.
26969     Besides, other common code exists.
26970
26971     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26972
26973 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
26974 Author: Sergei Poselenov <sposelenov@emcraft.com>
26975 Date:   Fri Jun 6 15:42:45 2008 +0200
26976
26977     Socrates: Added FPGA base address update in FDT.
26978
26979     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26980
26981 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
26982 Author: Sergei Poselenov <sposelenov@emcraft.com>
26983 Date:   Fri Jun 6 15:42:44 2008 +0200
26984
26985     Socrates: NAND support added. Changed the U-Boot base address and
26986
26987     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26988
26989 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
26990 Author: Sergei Poselenov <sposelenov@emcraft.com>
26991 Date:   Fri Jun 6 15:42:43 2008 +0200
26992
26993     NAND: Added support for 128-bit OOB, adapted
26994
26995     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26996
26997 commit 31ca0208612f2eb57690110d7c2815953650e47b
26998 Author: Sergei Poselenov <sposelenov@emcraft.com>
26999 Date:   Fri Jun 6 15:42:42 2008 +0200
27000
27001     Socrates: added missed file with UPMA configuration data.
27002
27003     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
27004
27005 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
27006 Author: Sergei Poselenov <sposelenov@emcraft.com>
27007 Date:   Fri Jun 6 15:42:41 2008 +0200
27008
27009     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
27010
27011     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27012
27013 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
27014 Author: Sergei Poselenov <sposelenov@emcraft.com>
27015 Date:   Fri Jun 6 15:42:40 2008 +0200
27016
27017     Added the upmconfig() function for 85xx.
27018
27019     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27020     Signed-off-by: Andy Fleming <afleming@freescale.com>
27021
27022 commit d39e68514ff943930ee692cff3fde03532eb7fec
27023 Author: Sergei Poselenov <sposelenov@emcraft.com>
27024 Date:   Fri Jun 6 15:42:39 2008 +0200
27025
27026     Socrates: config file cleanup.
27027
27028     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27029
27030 commit e8cc3f04b124f757af4528206e60d8eb715ae083
27031 Author: Wolfgang Grandegger <wg@grandegger.com>
27032 Date:   Thu Jun 5 13:12:10 2008 +0200
27033
27034     TQM85xx: Change memory map to support Flash memory > 128 MiB
27035
27036     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
27037     memory. The current memory map only supports up to 128 MiB Flash.
27038     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
27039     set, up to 1 GiB flash is supported. To achieve this, the memory
27040     map has to be adjusted in great parts (for example the CCSRBAR is
27041     moved from 0xE0000000 to 0xA0000000).
27042
27043     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
27044     memory map also has to be considered in the kernel (changed
27045     CCSRBAR address, changed PCI IO base address, ...). Please use
27046     an appropriate Flat Device Tree blob (tqm8548.dtb).
27047
27048     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27049     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27050
27051 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
27052 Author: Wolfgang Grandegger <wg@grandegger.com>
27053 Date:   Thu Jun 5 13:12:09 2008 +0200
27054
27055     TQM85xx: NAND support via local bus UPMB
27056
27057     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
27058     default and can be enabled for the TQM8548 modules. It is now based on
27059     the re-written FSL NAND UPM driver. A patch has been posted earlier today
27060     with the subject:
27061
27062     "NAND FSL UPM: driver re-write using the hwcontrol callback"
27063
27064     Note that the R/B pin is not supported by that module requiring to use
27065     the specified maximum delay time.
27066
27067     Note: With NAND support enabled the size of the U-Boot image exceeds
27068     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
27069     doubling the image size :-(.
27070
27071     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
27072     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27073
27074 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
27075 Author: Wolfgang Grandegger <wg@grandegger.com>
27076 Date:   Thu Jun 5 13:12:08 2008 +0200
27077
27078     TQM8548: PCI express support
27079
27080     This patch adds support for PCI express cards. The board support
27081     now uses common FSL PCI init code, for both, PCI and PCIe on all
27082     TQM85xx modules.
27083
27084     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
27085     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27086
27087 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
27088 Author: Wolfgang Grandegger <wg@grandegger.com>
27089 Date:   Thu Jun 5 13:12:07 2008 +0200
27090
27091     TQM8548: Basic support for the TQM8548 modules
27092
27093     This patch adds basic support for the TQM8548 module from TQ-Components
27094     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
27095     eTSEC 3 and 4
27096
27097     Furthermore Flash buffer write has been enabled to speed up output to
27098     the Flash by approx. a factor of 10.
27099
27100     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
27101     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27102
27103 commit 25991353204c78b094c3c1fec90182dcd607ab8f
27104 Author: Wolfgang Grandegger <wg@grandegger.com>
27105 Date:   Thu Jun 5 13:12:06 2008 +0200
27106
27107     TQM85xx: Support for Flat Device Tree
27108
27109     This patch adds support for Linux kernels using the Flat Device Tree.
27110     It also re-defines the default environment settings for booting Linux
27111     with the FDT blob.
27112
27113     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27114
27115 commit d9ee843d54c54776e1fdb86336ce554906a87331
27116 Author: Wolfgang Grandegger <wg@grandegger.com>
27117 Date:   Thu Jun 5 13:12:05 2008 +0200
27118
27119     TQM85xx: Support for Intel 82527 compatible CAN controller
27120
27121     This patch adds initialization of the UPMC RAM to support up to two
27122     Intel 82527 compatible CAN controller on the TQM85xx modules.
27123
27124     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
27125     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27126
27127 commit 518d5cfe72916323c746af1647764459914f555f
27128 Author: Wolfgang Grandegger <wg@grandegger.com>
27129 Date:   Thu Jun 5 13:12:04 2008 +0200
27130
27131     TQM85xx: Bugfix in the SDRAM initialisation
27132
27133     The CS0_BNDS register is now set according to the detected
27134     memory size.
27135
27136     Signed-off-by Martin Krause <martin.krause@tqs.de>
27137
27138 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
27139 Author: Wolfgang Grandegger <wg@grandegger.com>
27140 Date:   Thu Jun 5 13:12:03 2008 +0200
27141
27142     TQM85xx: Fix chip select configuration for second FLASH bank
27143
27144     This patch fixes the re-calculation of the automatic chip select
27145     configuration for boards with two populated FLASH banks.
27146
27147     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27148
27149 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
27150 Author: Wolfgang Grandegger <wg@grandegger.com>
27151 Date:   Thu Jun 5 13:12:02 2008 +0200
27152
27153     TQM85xx: Support for Spansion 'N' type flashes added
27154
27155     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
27156     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
27157     needs to be changed -> new start address of the environment. The macro
27158     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
27159     defined for boards with 'N' type flashes.
27160
27161     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27162     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27163
27164 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
27165 Author: Wolfgang Grandegger <wg@grandegger.com>
27166 Date:   Thu Jun 5 13:12:01 2008 +0200
27167
27168     TQM85xx: Fix CPM port pin configuration
27169
27170     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
27171     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
27172     as serial interface anyway. Worse, on some board variants configuring the
27173     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
27174
27175     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27176
27177 commit b99ba1679e8cd51b023e67098c89e606e47137d2
27178 Author: Wolfgang Grandegger <wg@grandegger.com>
27179 Date:   Thu Jun 5 13:12:00 2008 +0200
27180
27181     TQM85xx: Various coding style fixes
27182
27183     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27184
27185 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
27186 Author: Gerald Van Baren <vanbaren@cideas.com>
27187 Date:   Tue Jun 10 22:15:58 2008 -0400
27188
27189     libfdt: Move the working_fdt pointer to cmd_fdt.c
27190
27191     The working_fdt pointer was declared in common/fdt_support.c but was
27192     not used there.  Move it to common/cmd_fdt.c where it is used (it is
27193     also used in lib_ppc/bootm.c).
27194
27195     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27196
27197 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
27198 Author: Kim Phillips <kim.phillips@freescale.com>
27199 Date:   Tue Jun 10 11:06:17 2008 -0500
27200
27201     fdt: unshadow global working fdt variable
27202
27203     differentiate with local variables of the same name by renaming the
27204     global 'fdt' variable 'working_fdt'.
27205
27206     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27207
27208 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
27209 Author: Andy Fleming <afleming@freescale.com>
27210 Date:   Tue Jun 10 18:49:34 2008 -0500
27211
27212     socrates: Fix PCI clk fix patch
27213
27214     The submitted patch seems to have been more up-to-date, but an older patch was
27215     already in the repository.  This patch encompasses the differences
27216
27217     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
27218
27219     Signed-off-by: Andy Fleming <afleming@freescale.com>
27220
27221 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
27222 Author: Wolfgang Grandegger <wg@grandegger.com>
27223 Date:   Thu Jun 5 13:02:29 2008 +0200
27224
27225     NAND FSL UPM: driver re-write using the hwcontrol callback
27226
27227     This is a re-write of the NAND FSL UPM driver using the more universal
27228     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
27229     list of furher modifications:
27230
27231     - For the time being, the UPM setup writing the UPM array has been
27232       removed from the driver and must now be done by the board specific
27233       code.
27234
27235     - The bus width definition in "struct fsl_upm_nand" is now in bits to
27236       comply with the corresponding Linux driver and 8, 16 and 32 bit
27237       accesses are supported.
27238
27239     - chip->dev_read is only set if fun->dev_ready != NULL, which is
27240       required for boards not connecting the R/B pin.
27241
27242     - A few issue have been fixed with MxMR bit manipulation like in the
27243       corresponding Linux driver.
27244
27245     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
27246           as well, because the address is already determined by
27247           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
27248
27249     This patch has been tested on a TQM8548 modules with the NAND chip
27250     Micron MT29F8G08FABWP.
27251
27252     This patch is based on the following patches posted to this list a few
27253     minutes ago:
27254
27255       PPC: add accessor macros to clear and set bits in one shot
27256       83xx/85xx/86xx: add more MxMR local bus definitions
27257
27258     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27259     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27260
27261 commit 6beecfbb542992eede5831240cd58678274683a9
27262 Author: Wolfgang Grandegger <wg@grandegger.com>
27263 Date:   Thu Jun 5 13:11:59 2008 +0200
27264
27265     MPC85xx: Beautify boot output of L2 cache configuration
27266
27267     The boot output is now aligned poperly with other boot output
27268     lines, e.g.:
27269
27270       FLASH: 128 MB
27271       L2:    512 KB enabled
27272
27273     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27274
27275 commit 398415114f0a705163a14543e9fef03f734b1ffa
27276 Author: Wolfgang Grandegger <wg@grandegger.com>
27277 Date:   Wed Jun 4 12:45:22 2008 +0200
27278
27279     PPC: add accessor macros to clear and set bits in one shot
27280
27281     PPC: add accessor macros to clear and set bits in one shot
27282
27283     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
27284     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
27285     They are very handy to manipulate bits it I/O registers.
27286
27287     This patch is required for my forthcoming FSL NAND UPM driver re-write and
27288     the support for the TQM8548 module.
27289
27290     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27291
27292 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
27293 Author: Wolfgang Grandegger <wg@grandegger.com>
27294 Date:   Wed Jun 4 13:52:17 2008 +0200
27295
27296     TQM: move TQM boards to board/tqc
27297
27298     Move all TQM board directories to the vendor specific directory "tqc"
27299     for modules from TQ-Components GmbH (http://www.tqc.de).
27300
27301     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27302
27303 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
27304 Author: Wolfgang Grandegger <wg@grandegger.com>
27305 Date:   Mon Jun 2 12:09:30 2008 +0200
27306
27307     83xx/85xx/86xx: add more MxMR local bus definitions
27308
27309     83xx/85xx/86xx: add more MxMR local bus definitions
27310
27311     This patch adds more macro definitions for the UPM Machine Mode Registers
27312     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
27313     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
27314     required for my forthcoming FSL NAND UPM driver re-write and the support
27315     for the TQM8548 module.
27316
27317     This patch is based on the following two patches from Anton Vorontsov:
27318
27319     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
27320     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
27321
27322     I leave coding style violation fixes, code beautification and name
27323     corrections to somebody else ;-(.
27324
27325     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27326
27327 commit c8c5fc266e4499e283c293ccb972863156aa4134
27328 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27329 Date:   Thu May 29 18:14:56 2008 +0400
27330
27331     83xx/85xx: further localbus cleanups
27332
27333     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
27334     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
27335
27336     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27337
27338 commit 42dbd667c88d496882d53e22656e89b654205492
27339 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27340 Date:   Wed May 28 18:20:15 2008 +0400
27341
27342     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
27343
27344     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
27345     use it on MPC85xx and MPC86xx processors.
27346
27347     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27348
27349 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
27350 Author: Kumar Gala <galak@kernel.crashing.org>
27351 Date:   Thu May 29 11:22:06 2008 -0500
27352
27353     85xx: Add setting of cache props in the device tree.
27354
27355     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27356
27357 commit 4dbdb7681e243431530df0725627192a0c4aefda
27358 Author: Kumar Gala <galak@kernel.crashing.org>
27359 Date:   Tue Jun 10 16:53:46 2008 -0500
27360
27361     85xx: expose cpu identification
27362
27363     The current cpu identification code is used just to return the name
27364     of the processor at boot.  There are some other locations that the name
27365     is useful (device tree setup).  Expose the functionality to other bits
27366     of code.
27367
27368     Also, drop the 'E' suffix and add it on by looking at the SVR version
27369     when we print this out.  This is mainly to allow the most flexible use
27370     of the name.  The device tree code tends to not care about the 'E' suffix.
27371
27372     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27373
27374 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
27375 Author: Kim Phillips <kim.phillips@freescale.com>
27376 Date:   Tue Jun 10 13:25:24 2008 -0500
27377
27378     mpc83xx: MVBLM7: minor build fixups
27379
27380     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27381
27382 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
27383 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
27384 Date:   Tue Jun 10 09:14:05 2008 +0200
27385
27386     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
27387
27388     Add MPC8343 based board mvBlueLYNX-M7.
27389     It's a single board stereo camera system.
27390     Please read doc/README.mvblm7 for details.
27391
27392     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
27393     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27394
27395 commit c005b93925ba49f07da2aa748527996d927e172f
27396 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
27397 Date:   Tue Jun 10 09:13:16 2008 +0200
27398
27399     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
27400
27401     Add MPC8343 based board mvBlueLYNX-M7.
27402     It's a single board stereo camera system.
27403     Please read doc/README.mvblm7 for details.
27404
27405     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
27406     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27407
27408 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
27409 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27410 Date:   Thu May 29 18:14:56 2008 +0400
27411
27412     83xx/85xx: further localbus cleanups
27413
27414     move the BRx_* and ORx_* left behind in mpc85xx.h
27415
27416     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
27417     the same, just few differences which needs some attention though).
27418
27419     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
27420     of these defines. So this cleanup I'll leave for the "better times".
27421
27422     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27423     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27424
27425 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
27426 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27427 Date:   Wed May 28 18:20:15 2008 +0400
27428
27429     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
27430
27431     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
27432     use it on MPC85xx and MPC86xx processors.
27433
27434     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27435     Acked-by: Andy Fleming <afleming@freescale.com>
27436     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27437
27438 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
27439 Author: Tor Krill <tor@excito.com>
27440 Date:   Mon Jun 2 15:09:30 2008 +0200
27441
27442     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
27443
27444     Signed-off-by: Tor Krill <tor@excito.com>
27445     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27446
27447 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
27448 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27449 Date:   Mon Jun 9 23:37:44 2008 +0900
27450
27451     net: Conditional COBJS inclusion of network drivers
27452
27453     Replace COBJS-y with appropriate driver config names.
27454
27455     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27456     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27457
27458 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
27459 Author: Gerald Van Baren <vanbaren@cideas.com>
27460 Date:   Mon Jun 9 21:02:17 2008 -0400
27461
27462     Use strncmp() for the fdt command
27463
27464     Cleaner than doing multiple conditionals on characters.
27465
27466     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27467
27468 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
27469 Author: Gerald Van Baren <vanbaren@cideas.com>
27470 Date:   Sat Jun 7 12:25:05 2008 -0400
27471
27472     The fdt boardsetup command criteria was not unique
27473
27474     It was checking just for "b", which is not unique with respect to the
27475     "boot" command.  Change to check for "boa"[rdsetup].
27476
27477     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27478
27479 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
27480 Author: David Gibson <david@gibson.dropbear.id.au>
27481 Date:   Tue May 20 17:19:11 2008 +1000
27482
27483     libfdt: Several cleanups to parameter checking
27484
27485     This patch makes a couple of small cleanups to parameter checking of
27486     libfdt functions.
27487
27488         - In several functions which take a node offset, we use an
27489     idiom involving fdt_next_tag() first to check that we have indeed been
27490     given a node offset.  This patch adds a helper function
27491     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
27492
27493         - In fdt_rw.c in several places we have the expanded version
27494     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
27495     replaces those instances with an invocation of the macro; that's what
27496     it's for.
27497
27498         - In fdt_sw.c we rename the check_header_sw() function to
27499     sw_check_header() to match the analgous function in fdt_rw.c, and we
27500     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
27501     functions in fdt_rw.c
27502
27503     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
27504
27505 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
27506 Author: Gerald Van Baren <vanbaren@cideas.com>
27507 Date:   Tue Jun 3 20:34:45 2008 -0400
27508
27509     Remove the deprecated CONFIG_OF_FLAT_TREE
27510
27511     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
27512     cleaner, has better functionality, and is better supported.
27513
27514     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27515
27516 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
27517 Author: Gerald Van Baren <vanbaren@cideas.com>
27518 Date:   Tue Jun 3 20:26:29 2008 -0400
27519
27520     Change the stxxst to CONFIG_OF_LIBFDT
27521
27522     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
27523     to CONFIG_OF_LIBFDT.
27524
27525     WARNING: It appears that this board lost its ability to boot via a
27526     flattened device tree prior to this changeset.
27527
27528     WARNING: This conversion was untested because I do not have a board to
27529     test it on.
27530
27531     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27532
27533 commit 589c04271d129729a8b01391453851ab9cc4069c
27534 Author: Gerald Van Baren <vanbaren@cideas.com>
27535 Date:   Tue Jun 3 20:24:58 2008 -0400
27536
27537     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
27538
27539     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
27540     to CONFIG_OF_LIBFDT.
27541
27542     WARNING: This conversion is untested because I do not have a board to
27543     test it on.
27544
27545     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
27546     /aliases/ethernet1 property for the ethernet to work.
27547
27548     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27549
27550 commit ee1e35bede91debc8bff9b02f75574486033b652
27551 Author: Kumar Gala <galak@kernel.crashing.org>
27552 Date:   Thu May 29 01:21:24 2008 -0500
27553
27554     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
27555
27556     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27557
27558 commit 3b9519fc50802436e417c839e69df7b2016cade5
27559 Author: Becky Bruce <becky.bruce@freescale.com>
27560 Date:   Wed May 14 13:10:04 2008 -0500
27561
27562     MPC85xx: Change traps.c to not reference non-addressable memory
27563
27564     Currently, END_OF_RAM is used by the trap code to determine if
27565     we should attempt to access the stack pointer or not. However,
27566     on systems with a lot of RAM, only a subset of the RAM is
27567     guaranteed to be mapped in and accessible.  Change END_OF_RAM
27568     to use get_effective_memsize() instead of using the raw ram
27569     size out of the bd.
27570
27571     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27572
27573 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
27574 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27575 Date:   Mon Jun 9 13:39:57 2008 +0900
27576
27577     sh: Renesas Solutions SH7763RDP board support
27578
27579     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
27580     In this patch, support SCIF, NOR Flash, and Ethernet.
27581
27582     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27583     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27584
27585 commit 60179098a95eaa972007d7ec58e4c1588029720f
27586 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27587 Date:   Fri Jun 6 16:24:13 2008 +0900
27588
27589     sh: Add support Renesas SH7763
27590
27591     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
27592     This patch supprts CPU register's header file.
27593
27594     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27595     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27596
27597 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
27598 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27599 Date:   Fri Jun 6 16:16:08 2008 +0900
27600
27601     sh: SH7763 SCIF support
27602
27603     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
27604     but only SCIF2 is different. This patch work all SCIF channel.
27605
27606     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27607     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27608
27609 commit 79b51ff8205f0354d5300570614c1d2db499679c
27610 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27611 Date:   Sat Jun 7 20:51:59 2008 +0900
27612
27613     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
27614
27615     Also get rid of some #ifdefs in *.c files.
27616
27617     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27618
27619 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
27620 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27621 Date:   Sat Jun 7 20:51:56 2008 +0900
27622
27623     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
27624
27625     CONFIG_SOC_AU1X00
27626
27627       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
27628       need to have this config as a system type specifier.
27629
27630     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
27631     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
27632
27633       Machine type specifiers. Each port should have one of aboves.
27634
27635     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27636
27637 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
27638 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
27639 Date:   Fri May 30 16:05:28 2008 -0400
27640
27641     env_nand.c: Added bad block management for environment variables
27642
27643     Modified to check for bad blocks and to skipping over them when
27644     CFG_ENV_RANGE has been defined.
27645     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
27646     flash block size.
27647
27648     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
27649     Signed-off-by: Scott Wood <scottwood@freescale.com>
27650
27651 commit 279726bd00558e80263d44581c44167625b7fb9a
27652 Author: Becky Bruce <becky.bruce@freescale.com>
27653 Date:   Wed May 14 13:09:58 2008 -0500
27654
27655     MPC86xx: Change traps.c to not reference non-addressable memory
27656
27657     Currently, END_OF_RAM is used by the trap code to determine if
27658     we should attempt to access the stack pointer or not. However,
27659     on systems with a lot of RAM, only a subset of the RAM is
27660     guaranteed to be mapped in and accessible.  Change END_OF_RAM
27661     to use get_effective_memsize() instead of using the raw ram
27662     size out of the bd to prevent us from trying to access
27663     non-mapped memory.
27664
27665     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27666
27667 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
27668 Author: Wolfgang Denk <wd@denx.de>
27669 Date:   Fri Jun 6 14:28:14 2008 +0200
27670
27671     tools/mkimage: fix compiler warnings on some systems.
27672
27673     Signed-off-by: Wolfgang Denk <wd@denx.de>
27674
27675 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
27676 Author: Stefan Roese <sr@denx.de>
27677 Date:   Fri Jun 6 16:10:41 2008 +0200
27678
27679     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
27680
27681     We use upper case letters for the AMCC processor defines (like
27682     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
27683     not CONFIG_440SPe. This patch fixes the last misspelled config options.
27684
27685     Signed-off-by: Stefan Roese <sr@denx.de>
27686
27687 commit 72675dc6c06a48846d180106161d49dd714383cc
27688 Author: Stefan Roese <sr@denx.de>
27689 Date:   Fri Jun 6 15:55:21 2008 +0200
27690
27691     ppc4xx: Unify AMCC's board config files (part 3/3)
27692
27693     This patch series unifies the AMCC eval board ports by introducing
27694     a common include header for all AMCC eval boards:
27695
27696     include/configs/amcc-common.h
27697
27698     This header now includes all common configuration options/defines which
27699     are removed from the board specific headers.
27700
27701     The reason for this is ease of maintenance and unified look and feel
27702     of all AMCC boards.
27703
27704     Signed-off-by: Stefan Roese <sr@denx.de>
27705
27706 commit 490f204096d6e2c9940f67816f154a8125bab116
27707 Author: Stefan Roese <sr@denx.de>
27708 Date:   Fri Jun 6 15:55:03 2008 +0200
27709
27710     ppc4xx: Unify AMCC's board config files (part 2/3)
27711
27712     This patch series unifies the AMCC eval board ports by introducing
27713     a common include header for all AMCC eval boards:
27714
27715     include/configs/amcc-common.h
27716
27717     This header now includes all common configuration options/defines which
27718     are removed from the board specific headers.
27719
27720     The reason for this is ease of maintenance and unified look and feel
27721     of all AMCC boards.
27722
27723     Signed-off-by: Stefan Roese <sr@denx.de>
27724
27725 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
27726 Author: Stefan Roese <sr@denx.de>
27727 Date:   Fri Jun 6 15:54:31 2008 +0200
27728
27729     ppc4xx: Unify AMCC's board config files (part 1/3)
27730
27731     This patch series unifies the AMCC eval board ports by introducing
27732     a common include header for all AMCC eval boards:
27733
27734     include/configs/amcc-common.h
27735
27736     This header now includes all common configuration options/defines which
27737     are removed from the board specific headers.
27738
27739     The reason for this is ease of maintenance and unified look and feel
27740     of all AMCC boards.
27741
27742     Signed-off-by: Stefan Roese <sr@denx.de>
27743
27744 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
27745 Author: Remy Bohmer <linux@bohmer.net>
27746 Date:   Thu Jun 5 13:03:36 2008 +0200
27747
27748     DM9000 fix status check fail 0x6d error for trizeps board
27749
27750     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
27751     the status byte need to be checked to identify a valid packet in the fifo
27752
27753     But, The several different Application Notes do not all speak the same
27754     language on these bits. They do not disagree, but only 1 Application Note
27755     noted explicitly that only these 2 bits need to be checked.
27756     Even the datasheets do not mention anything about these 2 bits.
27757
27758     Because the old code, and the kernel check the whole byte, I left this piece
27759     untouched.
27760
27761     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
27762     it should work.
27763
27764     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
27765     in the fifo) is much shorter now, compared to the older U-boot driver code,
27766     so that we can maybe run into a hardware condition now that was never seen
27767     before, or maybe was seen very unfrequently.
27768
27769     Additionaly added a cleanup of a stack variable.
27770
27771     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27772     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27773
27774 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
27775 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27776 Date:   Thu Jun 5 22:29:00 2008 +0900
27777
27778     [MIPS] Update <asm/addrspace.h> header
27779
27780     - Fix traditional KSEG names
27781     - Replace PHYSADDR with CPHYSADDR
27782
27783     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27784
27785 commit f0d5a6f060d00358b85c62a921a423ea8df71184
27786 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27787 Date:   Thu Jun 5 22:29:00 2008 +0900
27788
27789     [MIPS] mips_config.mk: Misc fixes
27790
27791     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
27792     - Modify comments
27793
27794     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27795
27796 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
27797 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27798 Date:   Thu Jun 5 22:29:00 2008 +0900
27799
27800     [MIPS] Kill unused <version.h> inclusions
27801
27802     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27803
27804 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
27805 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27806 Date:   Thu Jun 5 22:29:00 2008 +0900
27807
27808     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
27809
27810     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
27811     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
27812     in the U-Boot system.
27813
27814     The other is we don't have a proper time management counter like timestamp
27815     other ARCHs have. We need the 32-bit millisecond clock counter.
27816
27817     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
27818     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
27819     of calculated CP0 counter cycles in a CFG_HZ.
27820
27821     STRATEGY:
27822
27823     * Fix improper CFG_HZ value to have 1000
27824
27825     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
27826
27827     * timer_init: initialize timestamp and set up the first timer expiration.
27828       Note that we don't need to initialize CP0 count/compare registers here
27829       as they have been already zeroed out on the system reset. Leave them as
27830       they are.
27831
27832     * get_timer: calculate how many timestamps have been passed, then return
27833       base-relative timestamp. Make sure we can easily count missed timestamps
27834       regardless of CP0 count/compare value.
27835
27836     * get_ticks: return the current timestamp, that is get_timer(0).
27837
27838     Most parts are from good old Linux v2.6.16 kernel.
27839
27840     v2:
27841     - Remove FIXME comments as they turned out to be trivial.
27842     - Use CP0 compare register as a global variable for expirelo.
27843     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
27844       instead.
27845
27846     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27847
27848 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
27849 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27850 Date:   Thu Jun 5 22:29:00 2008 +0900
27851
27852     [MIPS] lib_mips/time.c: Fix udelay
27853
27854     What we have to do is just to wait for given micro-seconds. No need to
27855     take into account current time, get_timer and CFG_HZ.
27856
27857     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27858
27859 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
27860 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27861 Date:   Thu Jun 5 22:28:59 2008 +0900
27862
27863     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
27864
27865     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
27866     This patch replaces mips_{compare,count}_set and mips_count_get with
27867     existing macros.
27868
27869     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27870
27871 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
27872 Author: Remy Bohmer <linux@bohmer.net>
27873 Date:   Tue Jun 3 15:48:17 2008 +0200
27874
27875     Get rid of annoying/superfluous bad-checksum warning message
27876
27877     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
27878     It is annoying for ordinary users who start to doubt the network connection
27879     in general when they see messages like this.
27880
27881     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
27882     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
27883     now before checking the checksum.
27884
27885     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27886     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27887
27888 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
27889 Author: Remy Bohmer <linux@bohmer.net>
27890 Date:   Wed Jun 4 10:47:25 2008 +0200
27891
27892     Fix order for reading rx-status registers in 32bit mode of DM9000
27893
27894     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
27895     a bug in reading the rx-status registers in 32bit mode only.
27896     This patch repairs this.
27897
27898     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27899     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27900
27901 commit 98291e2e689096420465074cce926b226d2e71b4
27902 Author: Remy Bohmer <linux@bohmer.net>
27903 Date:   Tue Jun 3 15:26:26 2008 +0200
27904
27905     DM9000: Some minor code cleanups
27906
27907     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
27908     need some other minor cleanup.
27909
27910     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27911     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27912
27913 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
27914 Author: Remy Bohmer <linux@bohmer.net>
27915 Date:   Tue Jun 3 15:26:25 2008 +0200
27916
27917     DM9000: Make driver work properly for DM9000A
27918
27919     The DM9000A network controller does not work with the U-boot DM9000x driver.
27920     Analysis showed that many incoming packets are lost.
27921
27922     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
27923     check for a valid rx packet be done on the interrupt status register, not
27924     directly by performing the dummy read and the rx status check as is currently
27925     the case in the u-boot driver.
27926
27927     When the recommended poll is done as suggested the driver starts working
27928     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
27929     can be more than 1 package in the fifo at the same time.
27930
27931     The driver must perform the rx-status check in a loop and read and handle all
27932     packages until there is no more left _after_ the interrupt RX flag is set.
27933
27934     This change has been tested with DM9000A, DM9000E, DM9000EP.
27935
27936     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27937     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27938
27939 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
27940 Author: Remy Bohmer <linux@bohmer.net>
27941 Date:   Tue Jun 3 15:26:24 2008 +0200
27942
27943     DM9000: Improve eth_reset() routine
27944
27945     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
27946     reset procedure must be done twice to properly reset the DM9000 by means of software.
27947     This errata is not needed anymore for the DM9000A, but it does not bother it.
27948
27949     This change has been tested with DM9000A, DM9000E, DM9000EP.
27950
27951     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27952     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27953
27954 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
27955 Author: Remy Bohmer <linux@bohmer.net>
27956 Date:   Tue Jun 3 15:26:23 2008 +0200
27957
27958     DM9000: improve eth_send() routine
27959
27960     The eth_send routine of the U-boot DM9000x driver does not match the
27961     DM9000 or DM9000A application notes/programming guides.
27962
27963     This change improves the stability of the DM9000A network controller.
27964
27965     This change has been tested with DM9000A, DM9000E, DM9000EP.
27966
27967     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27968     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27969
27970 commit 134e266253c02a7832560da59d394989c4f64453
27971 Author: Remy Bohmer <linux@bohmer.net>
27972 Date:   Tue Jun 3 15:26:22 2008 +0200
27973
27974     DM9000: repair debug logging
27975
27976     It seems that the debugging code of the DM9000x driver in U-boot has not been
27977     compiled for a long time, because it cannot compile...
27978
27979     Also rearranged some loglines to get more useful info while debugging.
27980
27981     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27982     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27983
27984 commit a101361bfe23c120321e45d114c0603b8e0763e9
27985 Author: Remy Bohmer <linux@bohmer.net>
27986 Date:   Tue Jun 3 15:26:21 2008 +0200
27987
27988     DM9000: Add data bus-width auto detection.
27989
27990     The U-boot DM9000x driver contains a compile time bus-width definition for
27991     the databus connected to the network controller.
27992
27993     This compile check makes the code unclear, inflexible and is unneccessary.
27994     It can be asked to the network controller what its bus-width is by reading bits
27995     6 and 7 of the interrupt status register.
27996
27997     The linux kernel already uses a runtime mechanism to determine this bus-width,
27998     so the implementation below looks somewhat like that implementation.
27999
28000     This change has been tested with DM9000A, DM9000E, DM9000EP.
28001
28002     Signed-off-by: Remy Bohmer <linux@bohmer.net>
28003     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28004
28005 commit 63a0afa0c32e5f4ea98a9439542870072437404d
28006 Author: Stefan Roese <sr@denx.de>
28007 Date:   Wed Jun 4 19:19:20 2008 +0200
28008
28009     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
28010
28011     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
28012     introduced by the commit:
28013
28014     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
28015
28016     With this patch SDRAM will get initialized again and booting from NAND
28017     is working again.
28018
28019     Signed-off-by: Stefan Roese <sr@denx.de>
28020     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
28021
28022 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
28023 Author: Wolfgang Denk <wd@denx.de>
28024 Date:   Tue May 27 14:19:30 2008 +0200
28025
28026     Socrates: Fix PCI bus frequency report
28027
28028     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28029
28030 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
28031 Author: Tor Krill <tor@excito.com>
28032 Date:   Thu May 29 11:10:30 2008 +0200
28033
28034     Fix incorrect switch for IF_TYPE in part.c
28035
28036     Use correct field in block_dev_desc_t when writing interface type in
28037     dev_print. Error introduced in 574b3195.
28038
28039     Also added fix from Martin Krause
28040
28041     Signed-off-by: Tor Krill <tor@excito.com>
28042
28043 commit b64b8a0bd310935b70af69ac970952f2b364ae56
28044 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
28045 Date:   Tue May 27 10:25:39 2008 +0200
28046
28047     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
28048
28049     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
28050
28051 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
28052 Author: Peter Tyser <ptyser@xes-inc.com>
28053 Date:   Thu May 22 18:56:52 2008 -0500
28054
28055     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
28056
28057     Removed unneeded command line history initialization.  Also, the original
28058     code would access the 'initted' variable before relocation to SDRAM
28059     which resulted in erratic behavior since the bss is not initialized when
28060     executing from flash.
28061
28062     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28063
28064 commit 22f371b63038a4ecab04068877c1089e51a01ba1
28065 Author: Grant Erickson <gerickson@nuovations.com>
28066 Date:   Wed May 21 13:28:30 2008 -0700
28067
28068     PPC4xx: Simplified post_word_{load, store}
28069
28070     This patch simplifies post_word_{load,store} by using the preprocessor
28071     to eliminate redundant, copy-and-pasted code.
28072
28073     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
28074
28075 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
28076 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
28077 Date:   Wed May 7 21:25:33 2008 +0400
28078
28079     cfi_flash: enable M18 flash chips family support.
28080
28081     Added new command set ID. Buffered write command processing is changed
28082     in order to support M18 flash chips family.
28083
28084     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
28085     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
28086
28087 commit 93c56f212ccdadc182018f0769cb284426b88f1d
28088 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
28089 Date:   Wed May 7 21:24:44 2008 +0400
28090
28091     cfi_flash: support of long cmd in U-boot.
28092
28093     Some NOR flash chips needs support of commands with length grether than max
28094     value size of uchar. For example all M18 family chips use 0x1ff command in
28095     buffered write mode as value of program loops count.
28096
28097     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
28098     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
28099
28100 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
28101 Author: Stefan Roese <sr@denx.de>
28102 Date:   Fri May 16 11:06:06 2008 +0200
28103
28104     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
28105
28106     On AD7414 the first value upon bootup is not read correctly.
28107     This is most likely because of the 800ms update time of the
28108     temp register in normal update mode. To get current values
28109     each time we issue the "dtt" command including upon powerup
28110     we switch into one-short mode.
28111
28112     This patch fixes the problem on AD7414 equipped boards (Sequoia,
28113     Canyonlands etc), that temp value printed in the bootup log was
28114     incorrect.
28115
28116     Signed-off-by: Stefan Roese <sr@denx.de>
28117
28118 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
28119 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28120 Date:   Fri May 30 16:55:06 2008 +0200
28121
28122     ppc4xx: Cleanup CPCI405 variant's config file
28123
28124     This patch removes some dead code from CPCI405 board's
28125     config files. JFFS2 support is also removed. It's not used and
28126     CPCI4052 does not build anymore without some size reduction.
28127
28128     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28129
28130 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
28131 Author: Kenneth Johansson <kenneth@southpole.se>
28132 Date:   Thu May 29 16:32:33 2008 +0200
28133
28134     Remove shell variable UNDEF_SYM.
28135
28136     UNDEF_SYM is a shell variable in the main Makefile used to force the
28137     linker to add all u-boot commands to the final image. It has no use here.
28138
28139     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
28140
28141 commit 8c66497e06bf803489c589df58ee591d71033274
28142 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28143 Date:   Fri May 16 11:10:35 2008 +0200
28144
28145     Add support for environment in SPI flash
28146
28147     This is pretty incomplete...it doesn't handle reading the environment
28148     before relocation, it doesn't support redundant environment, and it
28149     doesn't support embedded environment. But apart from that, it does
28150     seem to work.
28151
28152     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28153
28154 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
28155 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28156 Date:   Fri May 16 11:10:34 2008 +0200
28157
28158     SPI Flash: Add "sf" command
28159
28160     This adds a new command, "sf" which can be used to manipulate SPI
28161     flash. Currently, initialization, reading, writing and erasing is
28162     supported.
28163
28164     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28165
28166 commit d25ce7d24cc0f93881559f4009175ea305af65e8
28167 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28168 Date:   Fri May 16 11:10:33 2008 +0200
28169
28170     SPI Flash subsystem
28171
28172     This adds a new SPI flash subsystem.
28173
28174     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
28175     but some preliminary support for other flash types is in place as
28176     well.
28177
28178     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28179
28180 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
28181 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
28182 Date:   Fri May 16 11:10:32 2008 +0200
28183
28184     atmel_spi: Driver for the Atmel SPI controller
28185
28186     This adds a driver for the SPI controller found on most AT91 and AVR32
28187     chips, implementing the new SPI API.
28188
28189     Changed in v4:
28190       - Update to new API
28191       - Handle zero-length transfers appropriately. The user may send a
28192         zero-length SPI transfer with SPI_XFER_END set in order to
28193         deactivate the chip select after a series of transfers with chip
28194         select active. This is useful e.g. when polling the status
28195         register of DataFlash.
28196
28197     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
28198
28199 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
28200 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
28201 Date:   Fri May 16 11:10:31 2008 +0200
28202
28203     SPI API improvements
28204
28205     This patch gets rid of the spi_chipsel table and adds a handful of new
28206     functions that makes the SPI layer cleaner and more flexible.
28207
28208     Instead of the spi_chipsel table, each board that wants to use SPI
28209     gets to implement three hooks:
28210       * spi_cs_activate(): Activates the chipselect for a given slave
28211       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
28212       * spi_cs_is_valid(): Determines if the given bus/chipselect
28213         combination can be activated.
28214
28215     Not all drivers may need those extra functions however. If that's the
28216     case, the board code may just leave them out (assuming they know what
28217     the driver needs) or rely on the linker to strip them out (assuming
28218     --gc-sections is being used.)
28219
28220     To set up communication parameters for a given slave, the driver needs
28221     to call spi_setup_slave(). This returns a pointer to an opaque
28222     spi_slave struct which must be passed as a parameter to subsequent SPI
28223     calls. This struct can be freed by calling spi_free_slave(), but most
28224     driver probably don't want to do this.
28225
28226     Before starting one or more SPI transfers, the driver must call
28227     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
28228     the hardware. When all transfers are done, the driver must call
28229     spi_release_bus() to make the bus available to others, and possibly
28230     shut down the SPI controller hardware.
28231
28232     spi_xfer() behaves mostly the same as before, but it now takes a
28233     spi_slave parameter instead of a spi_chipsel function pointer. It also
28234     got a new parameter, flags, which is used to specify chip select
28235     behaviour. This may be extended with other flags in the future.
28236
28237     This patch has been build-tested on all powerpc and arm boards
28238     involved. I have not tested NIOS since I don't have a toolchain for it
28239     installed, so I expect some breakage there even though I've tried
28240     fixing up everything I could find by visual inspection.
28241
28242     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
28243     DataFlash drivers posted as a follow-up. I'd like some help testing
28244     other boards that use the existing SPI API.
28245
28246     But most of all, I'd like some comments on the new API. Is this stuff
28247     usable for everyone? If not, why?
28248
28249     Changed in v4:
28250       - Build fixes for various boards, drivers and commands
28251       - Provide common struct spi_slave definition that can be extended by
28252         drivers
28253       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
28254       - Make default bus and mode build-time configurable
28255       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
28256
28257     Changed in v3:
28258       - Add opaque struct spi_slave for controller-specific data associated
28259         with a slave.
28260       - Add spi_claim_bus() and spi_release_bus()
28261       - Add spi_free_slave()
28262       - spi_setup() is now called spi_setup_slave() and returns a
28263         struct spi_slave
28264       - soft_spi now supports four SPI modes (CPOL|CPHA)
28265       - Add bus parameter to spi_setup_slave()
28266       - Convert the new i.MX32 SPI driver
28267       - Convert the new MC13783 RTC driver
28268
28269     Changed in v2:
28270       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
28271         new API.
28272
28273     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
28274     Tested-by: Guennadi Liakhovetski <lg@denx.de>
28275
28276 commit 289011207d999b2e4085150d2aa30d547ad9b800
28277 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28278 Date:   Fri May 16 11:10:30 2008 +0200
28279
28280     Move definition of container_of() to common.h
28281
28282     AVR32 and AT91SAM9 both have their own identical definitions of
28283     container_of() taken from the Linux kernel. Move it to common.h so
28284     that all architectures can use it.
28285
28286     container_of() is already used by some drivers, and will be used
28287     extensively by the new and improved SPI API.
28288
28289     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28290
28291 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
28292 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28293 Date:   Fri May 16 11:08:11 2008 +0200
28294
28295     soft_i2c: Pull SDA high before reading
28296
28297     Spotted by Dean Capindale.
28298
28299     Systems that support open-drain GPIO properly are allowed provide an
28300     empty I2C_TRISTATE define. However, this means that we need to be
28301     careful not to drive SDA low when the slave is expected to respond.
28302
28303     This patch adds a missing I2C_SDA(1) to read_byte() required to
28304     tristate the SDA line on systems that support open-drain GPIO.
28305
28306     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28307
28308 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
28309 Author: Stefan Roese <sr@denx.de>
28310 Date:   Mon May 19 11:34:53 2008 +0200
28311
28312     ppc4xx: Remove implementations of testdram()
28313
28314     This patch removes the used testdram() implementations of the board
28315     that are maintained by myself.
28316
28317     Signed-off-by: Stefan Roese <sr@denx.de>
28318
28319 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
28320 Author: Stefan Roese <sr@denx.de>
28321 Date:   Mon Jun 2 17:37:28 2008 +0200
28322
28323     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
28324
28325     Historically the 405 U-Boot port had a dram_init() call in early init
28326     stage. This function was still called from start.S and most of the time
28327     coded in assembler. This is not needed anymore (since a long time) and
28328     boards should implement the common initdram() function in C instead.
28329
28330     This patch now removed the dram_init() call from start.S and removes the
28331     empty implementations that are scattered through most of the 405 board
28332     ports. Some older board ports really implement this dram_init() though.
28333     These are:
28334
28335     csb272
28336     csb472
28337     ERIC
28338     EXBITGEN
28339     W7OLMC
28340     W7OLMG
28341
28342     I changed those boards to call this assembler dram_init() function now
28343     from their board specific initdram() instead. This *should* work, but please
28344     test again on those platforms. And it is perhaps a good idea that those
28345     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
28346     some time. So further patches welcome here.
28347
28348     Signed-off-by: Stefan Roese <sr@denx.de>
28349
28350 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
28351 Author: Stefan Roese <sr@denx.de>
28352 Date:   Mon Jun 2 17:22:11 2008 +0200
28353
28354     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
28355
28356     Signed-off-by: Stefan Roese <sr@denx.de>
28357
28358 commit 39b32be18cd33b53a84065edcd4e465165cc5564
28359 Author: Stefan Roese <sr@denx.de>
28360 Date:   Mon Jun 2 17:20:03 2008 +0200
28361
28362     ppc4xx: Fix common ECC generation code for 440GP style platforms
28363
28364     This patch makes the common 4xx ECC code really usable on 440GP style
28365     platforms.
28366
28367     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
28368     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
28369     we need to make some processor dependant defines used later on by the
28370     driver.
28371
28372     Signed-off-by: Stefan Roese <sr@denx.de>
28373
28374 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
28375 Author: Stefan Roese <sr@denx.de>
28376 Date:   Mon Jun 2 17:13:55 2008 +0200
28377
28378     ppc4xx: Change Kilauea to use the common DDR2 init function
28379
28380     This patch changes the kilauea and kilauea_nand (for NAND booting)
28381     board port to not use a board specific DDR2 init routine anymore. Now
28382     the common code from cpu/ppc4xx is used.
28383
28384     Thanks to Grant Erickson for all his basic work on this 405EX early
28385     bootup.
28386
28387     Signed-off-by: Stefan Roese <sr@denx.de>
28388
28389 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
28390 Author: Stefan Roese <sr@denx.de>
28391 Date:   Mon Jun 2 14:59:21 2008 +0200
28392
28393     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
28394
28395     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
28396     ppc4xx related SDRAM/DDR/DDR2 controller defines.
28397
28398     Signed-off-by: Stefan Roese <sr@denx.de>
28399
28400 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
28401 Author: Stefan Roese <sr@denx.de>
28402 Date:   Mon Jun 2 14:57:41 2008 +0200
28403
28404     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
28405
28406     This patch removes all SDRAM related defines from the PPC4xx headers
28407     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
28408     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
28409
28410     It also introduces new defines for the equipped SDRAM controller based on
28411     which PPC variant is used. There new defines are:
28412
28413     used on 405GR/CR/EP and some Xilinx Virtex boards.
28414
28415     used on 440GP/GX/EP/GR.
28416
28417     used on 440EPx/GRx.
28418
28419     used on 405EX/r/440SP/SPe/460EX/GT.
28420
28421     Signed-off-by: Stefan Roese <sr@denx.de>
28422
28423 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
28424 Author: Stefan Roese <sr@denx.de>
28425 Date:   Mon Jun 2 14:35:44 2008 +0200
28426
28427     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
28428
28429     This patch consolidates the 405 and 440 parts of the NAND booting code
28430     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
28431     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
28432     Only *after* running from this location, nand_boot() is called.
28433
28434     Please note that the initsdram() call is now moved from nand_boot.c
28435     to start.S. I experienced problems with some boards like Kilauea
28436     (405EX), which don't have internal SRAM (OCM) and relocation needs to
28437     be done to SDRAM before the NAND controller can get accessed. When
28438     initdram() is called later on in nand_boot(), this can lead to problems
28439     with variables in the bss sections like nand_ecc_pos[].
28440
28441     Signed-off-by: Stefan Roese <sr@denx.de>
28442     Acked-by: Scott Wood <scottwood@freescale.com>
28443
28444 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
28445 Author: Grant Erickson <gerickson@nuovations.com>
28446 Date:   Thu May 22 14:44:24 2008 -0700
28447
28448     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
28449
28450     This patch (Part 2 of 2):
28451
28452     * Rolls up a suite of changes to enable correct primordial stack and
28453       global data handling when the data cache is used for such a purpose
28454       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
28455
28456     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
28457       eliminating redundant ECC initialization implementations and moving
28458       redundant SDRAM initialization out of board code into shared 4xx
28459       code.
28460
28461     * Enables MCSR visibility on the 405EX(r).
28462
28463     * Enables the use of the data cache for initial RAM on
28464       both AMCC's Kilauea and Makalu and removes a redundant
28465       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
28466
28467       - Removed, per Stefan Roese's request, defunct memory.c file for
28468         Makalu and rolled sdram_init from it into makalu.c.
28469
28470     With respect to the 4xx DDR initialization and ECC unification, there
28471     is certainly more work that can and should be done (file renaming,
28472     etc.). However, that can be handled at a later date on a second or
28473     third pass. As it stands, this patch moves things forward in an
28474     incremental yet positive way for those platforms that utilize this
28475     code and the features associated with it.
28476
28477     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
28478     Signed-off-by: Stefan Roese <sr@denx.de>
28479
28480 commit c821b5f120bedf73867513466412587c6912a8f8
28481 Author: Grant Erickson <gerickson@nuovations.com>
28482 Date:   Thu May 22 14:44:14 2008 -0700
28483
28484     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
28485
28486     This patch (Part 1 of 2):
28487
28488     * Rolls up a suite of changes to enable correct primordial stack and
28489       global data handling when the data cache is used for such a purpose
28490       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
28491
28492     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
28493       eliminating redundant ECC initialization implementations and moving
28494       redundant SDRAM initialization out of board code into shared 4xx
28495       code.
28496
28497     * Enables MCSR visibility on the 405EX(r).
28498
28499     * Enables the use of the data cache for initial RAM on
28500       both AMCC's Kilauea and Makalu and removes a redundant
28501       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
28502
28503       - Removed, per Stefan Roese's request, defunct memory.c file for
28504         Makalu and rolled sdram_init from it into makalu.c.
28505
28506     With respect to the 4xx DDR initialization and ECC unification, there
28507     is certainly more work that can and should be done (file renaming,
28508     etc.). However, that can be handled at a later date on a second or
28509     third pass. As it stands, this patch moves things forward in an
28510     incremental yet positive way for those platforms that utilize this
28511     code and the features associated with it.
28512
28513     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
28514     Signed-off-by: Stefan Roese <sr@denx.de>
28515
28516 commit a439680019e06171d4a5694b7992accce87f590e
28517 Author: Grant Erickson <gerickson@nuovations.com>
28518 Date:   Wed May 21 13:28:30 2008 -0700
28519
28520     PPC4xx: Simplified post_word_{load, store}
28521
28522     This patch simplifies post_word_{load,store} by using the preprocessor
28523     to eliminate redundant, copy-and-pasted code.
28524
28525     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
28526
28527 commit f979690ee337450b2030aba128f95b7a8d9881c0
28528 Author: Kumar Gala <galak@kernel.crashing.org>
28529 Date:   Thu May 15 15:13:08 2008 -0500
28530
28531     Fix warnings from gcc-4.3.0 build on a ppc host
28532
28533     * The cfi_flash.c memset fix actual allows the board to boot so there is
28534       a bit more going on here than just resolving warnings associated with
28535       uninitialized variables.
28536
28537     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
28538       inline function 'ext2_find_next_zero_bit' which is not static
28539
28540     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28541
28542 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
28543 Author: Becky Bruce <becky.bruce@freescale.com>
28544 Date:   Wed May 14 13:09:51 2008 -0500
28545
28546     MPC512x: Change traps.c to not reference non-addressable memory
28547
28548     Currently, END_OF_RAM is used by the trap code to determine if
28549     we should attempt to access the stack pointer or not. However,
28550     on systems with a lot of RAM, only a subset of the RAM is
28551     guaranteed to be mapped in and accessible.  Change END_OF_RAM
28552     to use get_effective_memsize() instead of using the raw ram
28553     size out of the bd.
28554
28555     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28556
28557 commit 81673e9ae14b771cd13faf19947192599cae3959
28558 Author: Kumar Gala <galak@kernel.crashing.org>
28559 Date:   Tue May 13 19:01:54 2008 -0500
28560
28561     Make sure common.h is the first include.
28562
28563     If common.h isn't first we can get CONFIG_ options defined in the
28564     board config file ignored.  This can cause an issue if any of those
28565     config options impact the size of types of data structures
28566     (eg CONFIG_PHYS_64BIT).
28567
28568     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28569
28570 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
28571 Author: Marian Balakowicz <m8@semihalf.com>
28572 Date:   Tue May 13 15:53:29 2008 +0200
28573
28574     Avoid initrd and logbuffer area overlaps
28575
28576     Add logbuffer to reserved LMB areas to prevent initrd allocation
28577     from overlaping with it.
28578
28579     Make sure to use correct logbuffer base address.
28580
28581     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28582
28583 commit 6956d53d9934862507f83f0e3255dfd4662e7482
28584 Author: Sascha Laue <sascha.laue@liebherr.com>
28585 Date:   Tue May 13 13:29:54 2008 +0200
28586
28587     lwmon5: add memory-pattern-test to FPGA POST.
28588
28589 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
28590 Author: Becky Bruce <becky.bruce@freescale.com>
28591 Date:   Thu May 8 19:02:51 2008 -0500
28592
28593     PPC: 86xx Add bat registers to reginfo command
28594
28595     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28596
28597 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
28598 Author: Becky Bruce <becky.bruce@freescale.com>
28599 Date:   Fri May 9 15:41:35 2008 -0500
28600
28601     PPC: Add print_bats() to lib_ppc/bat_rw.c
28602
28603     This function prints the values of all the BAT register
28604     pairs - I needed this for debug earlier this week; adding it to
28605     lib_ppc so others can use it (and add it to reginfo commands
28606     if so desired).
28607
28608     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28609
28610 commit c148f24c15743a02e855636e6bed013bd121f7f2
28611 Author: Becky Bruce <becky.bruce@freescale.com>
28612 Date:   Thu May 15 21:29:04 2008 -0500
28613
28614     PPC: Change lib_ppc/bat_rw.c to use high bats
28615
28616     Currently, this code only deals with BATs 0-3, which makes
28617     it useless on systems that support BATs 4-7.  Add the
28618     support for these registers.
28619
28620     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
28621
28622 commit 31d826722434931e1152a09d140187dcf72f8aac
28623 Author: Becky Bruce <becky.bruce@freescale.com>
28624 Date:   Thu May 8 19:02:12 2008 -0500
28625
28626     PPC: Create and use CONFIG_HIGH_BATS
28627
28628     Change all code that conditionally operates on high bat
28629     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
28630     instead of the myriad ways this is done now.  Define the option
28631     for every config for which high bats are supported (and
28632     enabled by early boot, on parts where they're not always
28633     enabled)
28634
28635     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
28636
28637 commit aa3b8bf9c30065bb2ea852799d32db5020598495
28638 Author: Wolfgang Grandegger <wg@grandegger.com>
28639 Date:   Wed May 28 19:55:19 2008 +0200
28640
28641     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
28642
28643     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
28644     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28645
28646 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
28647 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28648 Date:   Wed May 28 13:06:25 2008 -0500
28649
28650     ColdFire: Add 10 base ethernet support for mcf5445x
28651
28652     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28653     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28654
28655 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
28656 Author: Jason McMullan <mcmullan@netapp.com>
28657 Date:   Fri May 30 00:53:38 2008 +0900
28658
28659     mips: Add an 'include/asm/errno.h', like all other architectures
28660
28661     All other u-boot architectures have an include/asm/errno.h, so
28662     this change adds it to the mips include/asm-mips headers also.
28663
28664     Stolen from Linux 2.6.25.
28665
28666     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
28667
28668 commit e2ad8426624bac457acc6925b6ff408e9bf20466
28669 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28670 Date:   Fri May 30 00:53:38 2008 +0900
28671
28672     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
28673
28674     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28675
28676 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
28677 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28678 Date:   Fri May 30 00:53:38 2008 +0900
28679
28680     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
28681
28682     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28683
28684 commit bf462ae450a7f2eeeddc699ed345b391e3263540
28685 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28686 Date:   Fri May 30 00:53:37 2008 +0900
28687
28688     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
28689
28690     No functional changes.
28691
28692     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28693
28694 commit 89a1550ec6b74452274a7a23127936e2c7eec711
28695 Author: Jason McMullan <mcmullan@netapp.com>
28696 Date:   Fri May 30 00:53:37 2008 +0900
28697
28698     mips: If CONFIG_CMD_SPI is defined, call spi_init()
28699
28700     The mips architecture currently does not call 'spi_init()' in the generic
28701     board initialization routine is CONFIG_CMD_SPI is defined.
28702
28703     This patch rectifies that problem.
28704
28705     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
28706     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28707
28708 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
28709 Author: Jason McMullan <mcmullan@netapp.com>
28710 Date:   Fri May 30 00:53:37 2008 +0900
28711
28712     [MIPS] lib_mips/board.c: Add nand_init
28713
28714     This patch adds the standard 'nand_init()' call to the mips generic
28715     'board_init_r()' call, bringing MIPS in line with the other architectures.
28716
28717     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
28718     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28719
28720 commit d6ac2ed893c2168738aee01579d6283af8d37045
28721 Author: Scott Wood <scottwood@freescale.com>
28722 Date:   Thu May 22 10:49:46 2008 -0500
28723
28724     Remove prototypes of nand_init() in favor of including nand.h.
28725
28726     Likewise with onenand_init().
28727
28728     Signed-off-by: Scott Wood <scottwood@freescale.com>
28729
28730 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
28731 Author: Scott Wood <scottwood@freescale.com>
28732 Date:   Thu May 22 10:49:00 2008 -0500
28733
28734     Make onenand_uboot.h self-sufficient.
28735
28736     Don't assume types are provided by previously included headers.
28737
28738     Signed-off-by: Scott Wood <scottwood@freescale.com>
28739
28740 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
28741 Author: Dirk Behme <dirk.behme@gmail.com>
28742 Date:   Wed Jan 16 14:26:59 2008 +0100
28743
28744     nand: Correct NAND erase percentage output
28745
28746     For NAND erase sizes smaller than one NAND erase block, erase
28747     percentage output becomes grater than 100% e.g.
28748
28749     -- cut --
28750       > nand info
28751     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
28752       > nand erase 0x100000 0x2000
28753     NAND erase: device 0 offset 0x100000, size 0x2000
28754     Erasing at 0x100000 -- 200% complete.
28755     OK
28756       >
28757     -- cut --
28758
28759     Correct this and give user a warning that more is erased than specified:
28760
28761     -- cut --
28762       > nand erase 0x100000 0x2000
28763     NAND erase: device 0 offset 0x100000, size 0x2000
28764     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
28765                Erasing 0x00004000 instead
28766     Erasing at 0x100000 -- 100% complete.
28767     OK
28768       >
28769     -- cut --
28770
28771     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
28772
28773 commit 5922db6c0948506be91e0de44e7a6863a18a417f
28774 Author: Stelian Pop <stelian@popies.net>
28775 Date:   Tue May 13 17:31:24 2008 +0200
28776
28777     Cleanup nand_info[] declaration.
28778
28779     The nand_info array is declared as extern in several .c files.
28780     Those days, nand.h contains a reference to the array, so there is
28781     no need to declare it elsewhere.
28782
28783     Signed-off-by: Stelian Pop <stelian@popies.net>
28784     Signed-off-by: Scott Wood <scottwood@freescale.com>
28785
28786 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
28787 Author: Scott Wood <scottwood@freescale.com>
28788 Date:   Mon May 19 09:30:43 2008 -0500
28789
28790     NAND: Provide a sane default for NAND_MAX_CHIPS.
28791
28792     This allows the header to be included regardless of whether a board's
28793     config file provides NAND-related defininitions.
28794
28795     Signed-off-by: Scott Wood <scottwood@freescale.com>
28796
28797 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
28798 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28799 Date:   Mon May 26 12:19:10 2008 +0200
28800
28801     avr32: Fix theoretical race in udelay()
28802
28803     If the specified delay is very short, the cycle counter may go past the
28804     "end" time we are waiting for before we get around to reading it.
28805
28806     Fix it by checking the different between the cycle count "now" and the
28807     cycle count at the beginning. This will work as long as the delay
28808     measured in number of cycles is below 2^31.
28809
28810     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28811
28812 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
28813 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28814 Date:   Wed May 21 13:01:09 2008 +0200
28815
28816     avr32: Compile atmel_mci.o conditionally
28817
28818     Remove #ifdef CONFIG_MMC from the source file and use conditional
28819     compilation in the Makefile instead.
28820
28821     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28822
28823 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
28824 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28825 Date:   Thu May 22 12:28:25 2008 +0200
28826
28827     avr32: Fix wrong error flags in atmel_mci driver
28828
28829     Make sure we check for CRC errors when sending commands that use CRC
28830     checking.
28831
28832     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28833     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28834
28835 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
28836 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28837 Date:   Wed May 21 11:10:59 2008 +0200
28838
28839     avr32: Fix two warnings in atmel_mci.c
28840
28841     The warnings are harmless but annoying. Let's fix them.
28842
28843     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28844
28845 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
28846 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28847 Date:   Mon May 19 11:36:28 2008 +0200
28848
28849     avr32: Rework SDRAM initialization code
28850
28851     This cleans up the SDRAM initialization and related code a bit, and
28852     allows faster booting.
28853
28854       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
28855       * Remove memory test from sdram_init() and make caller responsible
28856         for verifying the SDRAM and determining its size.
28857       * Remove base_address member from struct sdram_config (was sdram_info)
28858       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
28859       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
28860
28861     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28862
28863 commit 95107b7c028806919630bf02c653aa8f4f867c94
28864 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28865 Date:   Mon May 19 11:27:37 2008 +0200
28866
28867     avr32: Do stricter stack checking in the exception handler
28868
28869     Don't do a stack dump if the stack pointer is outside the memory area
28870     reserved for stack.
28871
28872     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28873
28874 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
28875 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28876 Date:   Fri May 2 15:32:57 2008 +0200
28877
28878     avr32: Use the same entry point for reset and exception handling
28879
28880     Since the reset vector is always aligned to a very large boundary, we
28881     can save a couple of KB worth of alignment padding by placing the
28882     exception vectors at the same address.
28883
28884     Deciding which one it is is easy: If we're handling an exception, the
28885     CPU is in Exception mode. If we're starting up after reset, the CPU is
28886     in Supervisor mode. So this adds a very minimal overhead to the reset
28887     path (only executed once) and the exception handling path (normally
28888     never executed at all.)
28889
28890     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28891
28892 commit 0c16eed2189a190bd5655b33c029f809a9b31128
28893 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28894 Date:   Fri May 2 15:24:22 2008 +0200
28895
28896     avr32: Put memset in its own section
28897
28898     All C code is compiled with -ffunction-sections -fdata-sections.
28899     Assembly functions should get their own sections as well so that
28900     everything looks consistent.
28901
28902     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28903
28904 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
28905 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28906 Date:   Fri May 2 15:21:40 2008 +0200
28907
28908     avr32: Rename pm_init() as clk_init() and make SoC-specific
28909
28910     pm_init() was always more about clock initialization than anything
28911     else. Dealing with PLLs, clock gating and such is also inherently
28912     SoC-specific, so move it into a SoC-specific directory.
28913
28914     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28915
28916 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
28917 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28918 Date:   Wed Apr 30 16:15:57 2008 +0200
28919
28920     avr32: Use new-style Makefile for the at32ap platform
28921
28922     This makes it easier to avoid compiling certain files later.
28923
28924     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28925
28926 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
28927 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28928 Date:   Wed Apr 30 14:36:47 2008 +0200
28929
28930     avr32: Remove unused file cpu/at32ap/pm.c
28931
28932     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28933
28934 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
28935 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28936 Date:   Wed Apr 30 14:19:28 2008 +0200
28937
28938     avr32: Clean up the HMATRIX code
28939
28940     Rework the HMATRIX configuration interface so that it becomes easier
28941     to configure the HMATRIX for boards with special needs, and add new
28942     parts.
28943
28944     The HMATRIX header file has been split into a general,
28945     chip-independent part with register definitions, etc. and a
28946     chip-specific part with SFR bitfield definitions and master/slave
28947     identifiers.
28948
28949     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28950
28951 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
28952 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28953 Date:   Thu Nov 22 12:14:11 2007 +0100
28954
28955     avr32: Add support for the ATSTK1006 board
28956
28957     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
28958     board. It's currently in production and will be available soon.
28959
28960     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28961
28962 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
28963 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28964 Date:   Tue Apr 29 12:53:05 2008 +0200
28965
28966     avr32: Get rid of the .flashprog section
28967
28968     The .flashprog section was only needed back when we were running
28969     directly from flash, and it's even more useless on NGW100 since it
28970     uses the CFI flash driver which never used this workaround in the
28971     first place.
28972
28973     Remove it on STK1000 as well, and get rid of all the associated code and
28974     annotations.
28975
28976     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28977
28978 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
28979 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28980 Date:   Wed Apr 30 13:09:56 2008 +0200
28981
28982     avr32: Use correct condition around macb clock accessors
28983
28984     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
28985     the chip has a MACB controller, not when it has a USART.
28986
28987     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28988
28989 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
28990 Author: David Brownell <david-b@pacbell.net>
28991 Date:   Wed Apr 16 22:57:58 2008 -0700
28992
28993     avr32: Disable the AP7000 internal watchdog on startup
28994
28995     This patch forces the watchdog off in all cases.  That will at least
28996     get rid of the constant reboot cycle, though it won't let the watchdog
28997     actually run in the new kernels:  its probe() comes up with a polite
28998     warning.
28999
29000     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29001
29002 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
29003 Author: David Brownell <david-b@pacbell.net>
29004 Date:   Fri Feb 22 12:54:39 2008 -0800
29005
29006     avr32: stk1002 and ngw100 convergence
29007
29008     Make STK1002 and NGW100 boards act more alike:
29009       - STK boards can use as many arguments as NGW
29010       - STK boards don't need to manage FPGAs either
29011       - NGW commands should match STK ones
29012
29013     Also spell U-Boot right in prompts for STK1002 and NGW100.
29014
29015     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
29016     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
29017     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29018
29019 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
29020 Author: Sergei Poselenov <sposelenov@emcraft.com>
29021 Date:   Tue May 27 13:47:00 2008 +0200
29022
29023     Socrates: Fix PCI bus frequency report
29024
29025     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29026
29027 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
29028 Author: Sergei Poselenov <sposelenov@emcraft.com>
29029 Date:   Tue May 27 11:49:13 2008 +0200
29030
29031     Socrates: Added USB support.
29032
29033     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29034
29035 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
29036 Author: Sergei Poselenov <sposelenov@emcraft.com>
29037 Date:   Tue May 27 11:35:02 2008 +0200
29038
29039     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
29040
29041     In case of several PCI USB controllers on a board this variable
29042     specifys which controller to use.
29043     See doc/README.generic_usb_ohci for details.
29044
29045     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29046
29047 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
29048 Author: Sergei Poselenov <sposelenov@emcraft.com>
29049 Date:   Tue May 27 10:36:07 2008 +0200
29050
29051     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
29052
29053     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29054
29055 commit 83e9d7a2614d4006b92690afa3390c291734267e
29056 Author: Sergei Poselenov <sposelenov@emcraft.com>
29057 Date:   Mon May 26 18:16:04 2008 +0200
29058
29059     Socrates: Config file cleanup.
29060
29061     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29062
29063 commit 602cac1389b755b223272f2328a47e6f8c240848
29064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29065 Date:   Sat May 24 12:47:46 2008 +0200
29066
29067     MAKEALL: add at91 list
29068
29069     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29070
29071 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
29072 Author: Ron Madrid <ron_madrid@sbcglobal.net>
29073 Date:   Fri May 23 15:37:05 2008 -0700
29074
29075     Add Marvell 88E1118 support for TSEC
29076
29077     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
29078     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29079
29080 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
29081 Author: Jens Gehrlein <sew_s@tqs.de>
29082 Date:   Mon May 5 14:06:11 2008 +0200
29083
29084     smc911x: add 16 bit support
29085
29086     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29087     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29088
29089 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
29090 Author: Christian Eggers <ceggers@gmx.de>
29091 Date:   Wed May 21 21:29:10 2008 +0200
29092
29093     Fix endianess conversion in usb_ohci.c
29094
29095     Sorry, I forgot this line:
29096
29097     Signed-off-by: Christian Eggers <ceggers@gmx.de>
29098
29099     I think this must be swapped (result may be equal).
29100
29101 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
29102 Author: Christian Eggers <ceggers@gmx.de>
29103 Date:   Wed May 21 22:12:00 2008 +0200
29104
29105     USB: replace old swap_ with proper endianess conversion macros
29106
29107     Signed-off-by: Christian Eggers <ceggers@gmx.de>
29108     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29109
29110 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
29111 Author: Christian Eggers <ceggers@gmx.de>
29112 Date:   Wed May 21 21:29:10 2008 +0200
29113
29114     Fix endianess conversion in usb_ohci.c
29115
29116     Signed-off-by: Christian Eggers <ceggers@gmx.de>
29117     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29118
29119 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
29120 Author: Sergei Poselenov <sposelenov@emcraft.com>
29121 Date:   Thu May 22 01:15:53 2008 +0200
29122
29123     USB: add support for multiple PCI OHCI controllers
29124
29125     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
29126     In case of several PCI USB controllers on a board this variable
29127     specifys which controller to use.
29128
29129     Also add USB support for sokrates board.
29130
29131     See doc/README.generic_usb_ohci for details.
29132
29133     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29134     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29135
29136 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
29137 Author: Wolfgang Denk <wd@denx.de>
29138 Date:   Wed May 21 16:56:08 2008 +0200
29139
29140     Fix some whitespace issues
29141
29142     introduced by 53677ef18 "Big white-space cleanup."
29143
29144     Signed-off-by: Wolfgang Denk <wd@denx.de>
29145
29146 commit 4416603aeb06861b468b06a981e52c3ff805db7b
29147 Author: York Sun <yorksun@freescale.com>
29148 Date:   Mon May 12 14:36:39 2008 -0500
29149
29150     Make ads5121 out-of-tree compiling safe
29151
29152     Reuse the existing DIU driver in board/freescale/common.
29153
29154     Signed-off-by: York Sun <yorksun@freescale.com>
29155
29156 commit 0e1bad47cd345c76c91a64caf41011e431b62599
29157 Author: York Sun <yorksun@freescale.com>
29158 Date:   Mon May 5 10:20:01 2008 -0500
29159
29160     Adding DIU support for Freescale 5121ADS
29161
29162     Add DIU and cfb console support to FSL 5121ADS board.
29163
29164     Use #define CONFIG_VIDEO in config file to enable fb console.
29165
29166     Signed-off-by: York Sun <yorksun@freescale.com>
29167
29168 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
29169 Author: York Sun <yorksun@freescale.com>
29170 Date:   Mon May 5 10:20:00 2008 -0500
29171
29172     Replace DPRINTF with debug
29173
29174     Remove DPRINTF macro and replace it with generic debug macro.
29175
29176     Signed-off-by: York Sun <yorksun@freescale.com>
29177
29178 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
29179 Author: York Sun <yorksun@freescale.com>
29180 Date:   Mon May 5 10:19:59 2008 -0500
29181
29182     Move pixel clock setting to board file
29183
29184     The clock divider has different format in 5121 and 8610. This patch moves it to
29185     board specific code.
29186
29187     Signed-off-by: York Sun <yorksun@freescale.com>
29188
29189 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
29190 Author: Wolfgang Denk <wd@denx.de>
29191 Date:   Tue May 20 16:00:29 2008 +0200
29192
29193     Big white-space cleanup.
29194
29195     This commit gets rid of a huge amount of silly white-space issues.
29196     Especially, all sequences of SPACEs followed by TAB characters get
29197     removed (unless they appear in print statements).
29198
29199     Also remove all embedded "vim:" and "vi:" statements which hide
29200     indentation problems.
29201
29202     Signed-off-by: Wolfgang Denk <wd@denx.de>
29203
29204 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
29205 Author: Sergei Poselenov <sposelenov@emcraft.com>
29206 Date:   Thu May 8 17:46:23 2008 +0200
29207
29208     socrates: fix second TSEC configuration (it is actually TSEC3)
29209
29210     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29211
29212 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
29213 Author: Sergei Poselenov <sposelenov@emcraft.com>
29214 Date:   Thu May 8 14:17:08 2008 +0200
29215
29216     Fixed reset for socrates
29217
29218     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29219
29220 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
29221 Author: Sergei Poselenov <sposelenov@emcraft.com>
29222 Date:   Wed May 7 15:10:49 2008 +0200
29223
29224     socrates: changes to support FDT
29225
29226     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29227     Signed-off-by: Wolfgang Denk <wd@denx.de>
29228
29229 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
29230 Author: Sergei Poselenov <sposelenov@emcraft.com>
29231 Date:   Wed Apr 30 11:42:50 2008 +0200
29232
29233     Initial support for "Socrates" board
29234
29235     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
29236
29237 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
29238 Author: Yuri Tikhonov <yur@emcraft.com>
29239 Date:   Thu May 8 15:46:42 2008 +0200
29240
29241     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
29242
29243     This way we become able to utilize the full post_log_word for POST
29244     activities (overwise, POST ECC, which has 0x8000 ID, could be
29245     erroneously treated as started in post_output_backlog() even if there
29246     was actually no POST ECC run (because of OCM POST failure, for
29247     example).
29248
29249     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29250
29251 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
29252 Author: Yuri Tikhonov <yur@emcraft.com>
29253 Date:   Thu May 8 15:46:02 2008 +0200
29254
29255     POST: mark OCM test as POST_STOP
29256
29257     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29258
29259 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
29260 Author: Yuri Tikhonov <yur@emcraft.com>
29261 Date:   Thu May 8 15:45:26 2008 +0200
29262
29263     POST: add POST_STOP flag
29264
29265     Don't run futher tests in case of a test fails that is marked as
29266     POST_STOP.
29267
29268     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29269     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29270
29271 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
29272 Author: Yuri Tikhonov <yur@emcraft.com>
29273 Date:   Thu May 8 15:44:16 2008 +0200
29274
29275     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
29276
29277     Switch the OCM testid with the codec one. The reason is that current
29278     implementation requires the POST_ROM testid to fit into lower 16
29279     bits, and the codec test will never run with POST_ROM hopefully.
29280
29281     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29282
29283 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
29284 Author: Yuri Tikhonov <yur@emcraft.com>
29285 Date:   Thu May 8 15:43:28 2008 +0200
29286
29287     lwmon5: enable OCM post test on lwmon5 board
29288
29289     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29290
29291 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
29292 Author: Yuri Tikhonov <yur@emcraft.com>
29293 Date:   Thu May 8 15:42:47 2008 +0200
29294
29295     POST: OCM test added.
29296
29297     Added OCM test to POST layer. This version runs before all other tests
29298     but doesn't yet interrupt post sequence on failure.
29299
29300     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29301     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29302
29303 commit 6891260bdd935a382c95d9fa333922b0dfded68a
29304 Author: Yuri Tikhonov <yur@emcraft.com>
29305 Date:   Thu May 8 15:40:39 2008 +0200
29306
29307     POST: typo fix
29308
29309     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29310
29311 commit 727f63334676e760877d43bfb8f0e9331ac8b101
29312 Author: Hebbar <gururajakr@sanyo.co.in>
29313 Date:   Tue May 20 02:16:36 2008 -0700
29314
29315     common/usb.c: fix incorrect escape sequence
29316
29317     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
29318
29319 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
29320 Author: York Sun <yorksun@freescale.com>
29321 Date:   Thu May 15 15:26:27 2008 -0500
29322
29323     Fix 8313ERDB board configuration
29324
29325     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
29326     Correct TSEC1 vs TSEC2 assignment.
29327     Define ETHADDR and ETH1ADDR always.
29328
29329     Signed-off-by: York Sun <yorksun@freescale.com>
29330     Signed-off-by: Timur Tabi <timur@freescale.com>
29331
29332 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
29333 Author: Jon Loeliger <jdl@freescale.com>
29334 Date:   Mon May 19 09:47:25 2008 -0500
29335
29336     mpc86xx: Removed unused and unconfigured memory test code.
29337
29338     Besides, other common code exists.
29339
29340     Signed-off-by: Jon Loeliger <jdl@freescale.com>
29341
29342 commit 180a90abdae72587c0f679edf8991455e559440d
29343 Author: Wolfgang Denk <wd@denx.de>
29344 Date:   Mon May 19 12:47:11 2008 +0200
29345
29346     Release v1.3.3
29347
29348     Update CHANGELOG for release.
29349
29350     Signed-off-by: Wolfgang Denk <wd@denx.de>
29351
29352 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
29353 Author: Stefan Roese <sr@denx.de>
29354 Date:   Mon May 19 07:14:38 2008 +0200
29355
29356     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
29357
29358     When SATA is selected (via jumper J6) we need to disable the first PCIe
29359     node in the device tree, so that Linux doesn't initialize it. Otherwise
29360     the Linux SATA driver will fail to detect the devices.
29361
29362     The same goes the other way around too. So if PCIe is selected we need
29363     to disable the SATA node in the device tree.
29364
29365     This is because PCIe port 0 and SATA on 460EX share the same pins
29366     (multiplexed) and we have to configure in U-Boot which peripheral is
29367     enabled.
29368
29369     Signed-off-by: Stefan Roese <sr@denx.de>
29370
29371 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
29372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29373 Date:   Sun May 18 19:09:58 2008 +0200
29374
29375     i386: Fix multiple definitions of __show_boot_progress
29376
29377     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29378
29379 commit 311f3446930c1e64c12026c1cfd00500b05be52d
29380 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29381 Date:   Sun May 18 19:09:57 2008 +0200
29382
29383     sc530_spunk: add missing SOBJS entry
29384
29385     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29386
29387 commit a559317143b4f95927b08cd388707e6f077e95fa
29388 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29389 Date:   Sun May 18 19:09:56 2008 +0200
29390
29391     sc520_spunk: Fix flash
29392
29393     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
29394     flash.c:398: error: label at end of compound statement
29395
29396     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29397
29398 commit 91f221317af64191ee8caf303ea9305943158691
29399 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29400 Date:   Sun May 18 19:09:49 2008 +0200
29401
29402     drivers/pcmcia: add missing i82365
29403
29404     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29405
29406 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
29407 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29408 Date:   Sun May 18 19:09:47 2008 +0200
29409
29410     i386/bootm: remove unused var
29411
29412     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29413
29414 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
29415 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29416 Date:   Sun May 18 19:09:45 2008 +0200
29417
29418     example/gitignore: update with all generated examples
29419
29420     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29421
29422 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
29423 Author: Wolfgang Denk <wd@denx.de>
29424 Date:   Thu May 15 00:42:45 2008 +0200
29425
29426     TQM8272: fix out-of-tree building
29427
29428     ...and add to MAKEALL script
29429
29430     Signed-off-by: Wolfgang Denk <wd@denx.de>
29431
29432 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
29433 Author: Wolfgang Denk <wd@denx.de>
29434 Date:   Wed May 14 23:34:53 2008 +0200
29435
29436     environment: fix bug introduced by commit a8409f4f1ac8
29437
29438     env_get_char is not a function, but a pointer to one.
29439
29440     Signed-off-by: Wolfgang Denk <wd@denx.de>
29441
29442 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
29443 Author: Gary Jennejohn <garyj@denx.de>
29444 Date:   Wed May 14 13:39:22 2008 +0200
29445
29446     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
29447
29448     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
29449     use a redundant environment.
29450
29451     Signed-off-by: Gary Jennejohn <garyj@denx.de>
29452
29453 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
29454 Author: Wolfgang Denk <wd@denx.de>
29455 Date:   Wed May 14 13:55:30 2008 +0200
29456
29457     Fix config files for out-of-tree building
29458
29459     Several board/<...>/config.mk files include dynamically built (by
29460     the Makefile) config files but used the wrong file name of
29461         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
29462     instead if the correct
29463         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
29464
29465     The bug is nasty because the build result is correct for the (normal)
29466     in-tree builds, and because 'sinclude' is used no errors get raised
29467     even for out-of-tree build tests. But out-of-tree builds use an
29468     incomplete and thus usually incorrect configuration...
29469
29470     Signed-off-by: Wolfgang Denk <wd@denx.de>
29471
29472 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
29473 Author: Stefan Roese <sr@denx.de>
29474 Date:   Wed May 14 13:40:03 2008 +0200
29475
29476     ppc4xx: Fix bogus Canyonlands config.mk
29477
29478     This patch fixes the canyonlands config.mk file to enable correct
29479     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
29480
29481     Signed-off-by: Stefan Roese <sr@denx.de>
29482
29483 commit fdd1247a66d788a3446244f6fde9955a93c26322
29484 Author: Stefan Roese <sr@denx.de>
29485 Date:   Wed May 14 10:32:32 2008 +0200
29486
29487     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
29488
29489     Canyonlands has a file ddr2_fixed.c which needs special treatment when
29490     building in separate directory. It has to be linked to build directory
29491     otherwise it is not seen.
29492
29493     Signed-off-by: Stefan Roese <sr@denx.de>
29494
29495 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
29496 Author: Wolfgang Denk <wd@denx.de>
29497 Date:   Wed May 14 12:22:49 2008 +0200
29498
29499     environment: cleanup prototype declarations of env functions.
29500
29501     Signed-off-by: Wolfgang Denk <wd@denx.de>
29502
29503 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
29504 Author: Wolfgang Denk <wd@denx.de>
29505 Date:   Wed May 14 12:21:48 2008 +0200
29506
29507     linkstation_HGLAN: Fix out of tree building.
29508
29509     Signed-off-by: Wolfgang Denk <wd@denx.de>
29510
29511 commit 085551c05ca09e6c491ea11a1c6727a36776a545
29512 Author: Stefan Roese <sr@denx.de>
29513 Date:   Wed May 14 10:32:32 2008 +0200
29514
29515     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
29516
29517     Canyonlands has a file ddr2_fixed.c which needs special treatment when
29518     building in separate directory. It has to be linked to build directory
29519     otherwise it is not seen.
29520
29521     Signed-off-by: Stefan Roese <sr@denx.de>
29522
29523 commit 1510b82d50615f344e89d42533e8224cce067dc0
29524 Author: Wolfgang Denk <wd@denx.de>
29525 Date:   Tue May 13 23:15:52 2008 +0200
29526
29527     Makefile: fix "error: version_autogenerated.h: No such file or directory"
29528
29529     Signed-off-by: Wolfgang Denk <wd@denx.de>
29530
29531 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
29532 Author: Stelian Pop <stelian@popies.net>
29533 Date:   Tue May 13 17:31:24 2008 +0200
29534
29535     Cleanup nand_info[] declaration.
29536
29537     The nand_info array is declared as extern in several .c files.
29538     Those days, nand.h contains a reference to the array, so there is
29539     no need to declare it elsewhere.
29540
29541     Signed-off-by: Stelian Pop <stelian@popies.net>
29542     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29543
29544 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
29545 Author: Stefan Roese <sr@denx.de>
29546 Date:   Tue May 13 20:22:01 2008 +0200
29547
29548     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
29549
29550     Signed-off-by: Stefan Roese <sr@denx.de>
29551
29552 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
29553 Author: Wolfgang Denk <wd@denx.de>
29554 Date:   Mon May 12 01:11:21 2008 +0200
29555
29556     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
29557
29558     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
29559     which broke many PowerPC boards.
29560
29561 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
29562 Author: Wolfgang Denk <wd@denx.de>
29563 Date:   Mon May 12 00:56:28 2008 +0200
29564
29565     Revert "Avoid initrd and logbuffer area overlaps"
29566
29567     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
29568     which breaks building on all PPC boards that don't use a log buffer.
29569
29570 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
29571 Author: Nick Spence <nick.spence@freescale.com>
29572 Date:   Sat May 10 14:02:04 2008 -0700
29573
29574     Fix offset calculation for multi-type legacy images.
29575
29576     Calculation of tail was incorrect when size % 4 == 0.
29577
29578     New code removes the conditional and does the same thing but with arithmetic
29579
29580     Signed-off-by: Nick Spence <nick.spence@freescale.com>
29581
29582 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
29583 Author: Wolfgang Denk <wd@denx.de>
29584 Date:   Mon May 12 00:40:58 2008 +0200
29585
29586     Revert "Change env_get_char from a global function ptr to a function."
29587
29588     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
29589     which is known to break booting from dataflash and NAND.
29590
29591 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
29592 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29593 Date:   Sun May 11 23:13:57 2008 +0200
29594
29595     API: remove duplicate syscall check
29596
29597     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29598
29599 commit 67e3beb52c320b0a31cf030716c99392cde2d532
29600 Author: Stelian Pop <stelian@popies.net>
29601 Date:   Fri May 9 21:46:51 2008 +0200
29602
29603     AT91: Cleanup unused config header file definitions.
29604
29605     CONFIG_ENV_OVERWRITE is commented out in the config header files,
29606     so let's cleanup the files by removing the whole definition.
29607
29608     Signed-off-by: Stelian Pop <stelian@popies.net>
29609     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29610
29611 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
29612 Author: Stelian Pop <stelian@popies.net>
29613 Date:   Thu May 8 14:52:34 2008 +0200
29614
29615     Support AT91CAP9 revC CPUs
29616
29617     The AT91CAP9 revC CPU has a few differences over the previous,
29618     revB CPU which was distributed in small quantities only (revA was
29619     an internal Atmel product only).
29620
29621     The revC silicon needs a special initialisation sequence to
29622     switch from the internal (imprecise) RC oscillator to the
29623     external 32k clock.
29624
29625     Signed-off-by: Stelian Pop <stelian@popies.net>
29626     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29627
29628 commit 098b7b4b441b12c2a64dd517930f43c793542759
29629 Author: Stelian Pop <stelian@popies.net>
29630 Date:   Thu May 8 14:52:33 2008 +0200
29631
29632     Use custom logo for Atmel boards
29633
29634     This patch adds a custom vendor logo for the Atmel AT91 boards.
29635
29636     Signed-off-by: Stelian Pop <stelian@popies.net>
29637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29638
29639 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
29640 Author: Stelian Pop <stelian@popies.net>
29641 Date:   Thu May 8 14:52:32 2008 +0200
29642
29643     AT91SAM9RLEK: hook up the ATMEL LCD driver
29644
29645     This patch makes the necessary adaptations (PIO configurations and
29646     defines in config header file) to hook up the Atmel LCD driver to the
29647     AT91SAM9RLEK board.
29648
29649     Signed-off-by: Stelian Pop <stelian@popies.net>
29650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29651
29652 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
29653 Author: Stelian Pop <stelian@popies.net>
29654 Date:   Thu May 8 14:52:31 2008 +0200
29655
29656     AT91SAM9263EK: hook up the ATMEL LCD driver
29657
29658     This patch makes the necessary adaptations (PIO configurations and
29659     defines in config header file) to hook up the Atmel LCD driver to the
29660     AT91SAM9263EK board.
29661
29662     Signed-off-by: Stelian Pop <stelian@popies.net>
29663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29664
29665 commit 820f2a958325061a446115f3035e48e4726b3390
29666 Author: Stelian Pop <stelian@popies.net>
29667 Date:   Thu May 8 14:52:30 2008 +0200
29668
29669     AT91SAM9261EK: hook up the ATMEL LCD driver
29670
29671     This patch makes the necessary adaptations (PIO configurations and
29672     defines in config header file) to hook up the Atmel LCD driver to the
29673     AT91SAM9261EK board.
29674
29675     Signed-off-by: Stelian Pop <stelian@popies.net>
29676     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29677
29678 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
29679 Author: Stelian Pop <stelian@popies.net>
29680 Date:   Thu May 8 14:52:29 2008 +0200
29681
29682     AT91CAP9ADK: hook up the ATMEL LCD driver
29683
29684     This patch makes the necessary adaptations (PIO configurations and
29685     defines in config header file) to hook up the Atmel LCD driver to the
29686     AT91CAP9ADK board.
29687
29688     Signed-off-by: Stelian Pop <stelian@popies.net>
29689     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29690
29691 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
29692 Author: Stelian Pop <stelian@popies.net>
29693 Date:   Fri May 9 21:57:18 2008 +0200
29694
29695     Add ATMEL LCD driver
29696
29697     This patch adds support for the ATMEL LCDC driver which is used on some
29698     AT91 and AVR platforms.
29699
29700     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
29701     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
29702
29703     Signed-off-by: Stelian Pop <stelian@popies.net>
29704     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29705
29706 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
29707 Author: Stelian Pop <stelian@popies.net>
29708 Date:   Thu May 8 18:52:25 2008 +0200
29709
29710     AT91SAM9RLEK support
29711
29712     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
29713     board.
29714
29715     Signed-off-by: Stelian Pop <stelian@popies.net>
29716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29717
29718 commit 8e429b3eee23927c1222679f6b6f53667b21595c
29719 Author: Stelian Pop <stelian@popies.net>
29720 Date:   Thu May 8 18:52:23 2008 +0200
29721
29722     AT91SAM9263EK support
29723
29724     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
29725     board.
29726
29727     Signed-off-by: Stelian Pop <stelian@popies.net>
29728     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29729
29730 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
29731 Author: Stelian Pop <stelian@popies.net>
29732 Date:   Thu May 8 20:52:22 2008 +0200
29733
29734     AT91SAM9261EK support
29735
29736     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
29737     board.
29738
29739     Signed-off-by: Stelian Pop <stelian@popies.net>
29740     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29741
29742 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
29743 Author: Stelian Pop <stelian@popies.net>
29744 Date:   Thu May 8 20:52:21 2008 +0200
29745
29746     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
29747
29748     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
29749     in order to cope with the changes in DataFlash partitionning scheme
29750     (cset c3a60cb3).
29751
29752     Signed-off-by: Stelian Pop <stelian@popies.net>
29753     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29754
29755 commit 96996ac25d5222611a8888968db6e53a6d3726da
29756 Author: Stelian Pop <stelian@popies.net>
29757 Date:   Thu May 8 20:52:20 2008 +0200
29758
29759     AT91SAM9260EK: Normalize BOOTARGS
29760
29761     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
29762     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
29763     variable.
29764
29765     Signed-off-by: Stelian Pop <stelian@popies.net>
29766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29767
29768 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
29769 Author: Stelian Pop <stelian@popies.net>
29770 Date:   Thu May 8 20:52:19 2008 +0200
29771
29772     AT91SAM9260EK: Normalize SPI timings
29773
29774     This patch changes the SPI timings to closely match the ones
29775     used by the Linux kernel and the Atmel's own bootstrap project.
29776
29777     Signed-off-by: Stelian Pop <stelian@popies.net>
29778     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29779
29780 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
29781 Author: Stelian Pop <stelian@popies.net>
29782 Date:   Thu May 8 20:52:18 2008 +0200
29783
29784     AT91SAM9260EK: Handle 8 or 16 bit NAND
29785
29786     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
29787     makes the support configurable in the board config header file
29788     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
29789
29790     Signed-off-by: Stelian Pop <stelian@popies.net>
29791     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29792
29793 commit ab52640fc01624e208424e527af0b7b3a5a65a12
29794 Author: Stelian Pop <stelian@popies.net>
29795 Date:   Thu May 8 20:52:17 2008 +0200
29796
29797     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
29798
29799     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
29800     in order to cope with the changes in DataFlash partitionning scheme
29801     (cset c3a60cb3).
29802
29803     Signed-off-by: Stelian Pop <stelian@popies.net>
29804     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29805
29806 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
29807 Author: Stelian Pop <stelian@popies.net>
29808 Date:   Thu May 8 20:52:16 2008 +0200
29809
29810     AT91CAP9ADK: Normalize BOOTARGS
29811
29812     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
29813     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
29814     variable.
29815
29816     Signed-off-by: Stelian Pop <stelian@popies.net>
29817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29818
29819 commit 93da48b910511911ce110656e17ed733c8ac4c45
29820 Author: Stelian Pop <stelian@popies.net>
29821 Date:   Thu May 8 20:52:15 2008 +0200
29822
29823     AT91CAP9ADK: Normalize SPI timings
29824
29825     This patch changes the SPI timings to closely match the ones
29826     used by the Linux kernel and the Atmel's own bootstrap project.
29827
29828     Signed-off-by: Stelian Pop <stelian@popies.net>
29829     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29830
29831 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
29832 Author: Stelian Pop <stelian@popies.net>
29833 Date:   Thu May 8 20:52:14 2008 +0200
29834
29835     AT91CAP9ADK: Handle 8 or 16 bit NAND
29836
29837     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
29838     makes the support configurable in the board config header file
29839     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
29840
29841     Signed-off-by: Stelian Pop <stelian@popies.net>
29842     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29843
29844 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
29845 Author: Stelian Pop <stelian@popies.net>
29846 Date:   Thu May 8 20:52:13 2008 +0200
29847
29848     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
29849
29850     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
29851     below avoids the duplication of u-boot.lds by putting the file in the
29852     cpu directory instead of the board one.
29853
29854     Signed-off-by: Stelian Pop <stelian@popies.net>
29855     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29856
29857 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
29858 Author: Stelian Pop <stelian@popies.net>
29859 Date:   Thu May 8 20:52:12 2008 +0200
29860
29861     Add proper copyright notices in Atmel boards Makefiles
29862
29863     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
29864     copyright notice. This patch adds the missing pieces.
29865
29866     Signed-off-by: Stelian Pop <stelian@popies.net>
29867     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29868
29869 commit e817a042cef6164bf26fee86f90326f2ec9e6745
29870 Author: Stelian Pop <stelian@popies.net>
29871 Date:   Thu May 8 20:52:11 2008 +0200
29872
29873     Add copyright information in Atmel boards partition.c
29874
29875     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
29876     the new created files. This patch fixes the problem.
29877
29878     Signed-off-by: Stelian Pop <stelian@popies.net>
29879     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29880
29881 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
29882 Author: Stelian Pop <stelian@popies.net>
29883 Date:   Thu May 8 20:52:10 2008 +0200
29884
29885     Update origin and copyright information in arch-at91sam9 header files
29886
29887     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
29888     copied from the Linux kernel sources. This patch explicitly specifies
29889     this origin for all the copied headers, and for those missing copyright
29890     information, adds it.
29891
29892     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
29893     in the latest kernel sources by 'at91sam9_smc.h'.
29894
29895     The copyright information has been confirmed by the AT91 Linux kernel
29896     maintainer, Andrew Victor <avictor.za@gmail.com>.
29897
29898     Signed-off-by: Stelian Pop <stelian@popies.net>
29899     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29900
29901 commit 79dd1712689d6a5031d7cbff54957049680751c7
29902 Author: Markus Klotzbücher <mk@denx.de>
29903 Date:   Thu May 8 16:00:55 2008 +0200
29904
29905     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
29906
29907     When using dhcp/bootp the "netmask" environment variable is not set
29908     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
29909     desireable, so the following patch adds this this option to the board
29910     config.
29911
29912     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29913     Signed-off-by: Stefan Roese <sr@denx.de>
29914
29915 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
29916 Author: Stefan Roese <sr@denx.de>
29917 Date:   Sat May 10 10:30:36 2008 +0200
29918
29919     ppc4xx: Update Makalu defconfig to use device-tree booting as default
29920
29921     This patch reworks the default environment on Makalu. Now "net_nfs" for
29922     example uses the device-tree style booting formerly know as "net_nfs_fdt".
29923     Also the addresses in RAM were changed because of the new image booting
29924     support, which check for image overwriting. So the addresses needed to
29925     get adjusted.
29926
29927     Signed-off-by: Stefan Roese <sr@denx.de>
29928
29929 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
29930 Author: Becky Bruce <bgill@freescale.com>
29931 Date:   Wed May 7 13:28:16 2008 -0500
29932
29933     PPC: fix map_physmem build warning
29934
29935     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
29936     enabled.  This quiets the warning.
29937
29938     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
29939
29940 commit 36f32675f40292002ee1fed252c180a43022d2d4
29941 Author: Becky Bruce <bgill@freescale.com>
29942 Date:   Wed May 7 13:24:57 2008 -0500
29943
29944     Update pci code to use phys_addr_t
29945
29946     Physical addrs need to be represented by phys_addr_t, not
29947     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
29948     are going to fail mightily.
29949
29950     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29951
29952 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
29953 Author: Nick Spence <nick.spence@freescale.com>
29954 Date:   Thu May 8 22:32:22 2008 -0700
29955
29956     Support legacy multi-type images without FDT section.
29957
29958     This patch enables legacy multi-type images containing only a Linux kernel
29959     and root file system to be loaded, maintaining compatibility with previous
29960     versions of u-boot.
29961
29962     This is required when using old image files such as a Linux 2.4 kernel /
29963     filesystem.
29964
29965     Signed-off-by: Nick Spence <nick.spence@freescale.com>
29966     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
29967
29968 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
29969 Author: Wolfgang Denk <wd@denx.de>
29970 Date:   Sat May 10 00:38:02 2008 +0200
29971
29972     Update CHANGELOG.
29973
29974     Signed-off-by: Wolfgang Denk <wd@denx.de>
29975
29976 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
29977 Author: Wolfgang Denk <wd@denx.de>
29978 Date:   Sat May 10 00:36:09 2008 +0200
29979
29980     post/cpu/ppc4xx/Makefile: line length cleanup
29981
29982     Signed-off-by: Wolfgang Denk <wd@denx.de>
29983
29984 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
29985 Author: Stelian Pop <stelian@popies.net>
29986 Date:   Thu May 8 22:52:09 2008 +0200
29987
29988     Fix @ -> <at> substitution
29989
29990     When applying the AT91CAP9 patches upstream, something transformed
29991     the '@' character into the ' <at> ' sequence.
29992
29993     The patch below restores the original form in all the places where
29994     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
29995     were copied from AT91CAP9, and a couple of other files where the
29996     ' <at> ' sequence was present).
29997
29998     Signed-off-by: Stelian Pop <stelian@popies.net>
29999
30000 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
30001 Author: Stelian Pop <stelian@popies.net>
30002 Date:   Thu May 8 22:52:10 2008 +0200
30003
30004     Update origin and copyright information in arch-at91sam9 header files
30005
30006     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
30007     copied from the Linux kernel sources. This patch explicitly specifies
30008     this origin for all the copied headers, and for those missing copyright
30009     information, adds it.
30010
30011     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
30012     in the latest kernel sources by 'at91sam9_smc.h'.
30013
30014     The copyright information has been confirmed by the AT91 Linux kernel
30015     maintainer, Andrew Victor <avictor.za@gmail.com>.
30016
30017     Signed-off-by: Stelian Pop <stelian@popies.net>
30018
30019 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
30020 Author: Stelian Pop <stelian@popies.net>
30021 Date:   Thu May 8 22:52:11 2008 +0200
30022
30023     Add copyright information in Atmel boards partition.c
30024
30025     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
30026     the new created files. This patch fixes the problem.
30027
30028     Signed-off-by: Stelian Pop <stelian@popies.net>
30029
30030 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
30031 Author: Guennadi Liakhovetski <lg@denx.de>
30032 Date:   Thu May 8 10:09:27 2008 +0200
30033
30034     mx31ads: fix 32kHz clock handling
30035
30036     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
30037     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
30038     Also fix a typo when verifying a jumper configuration. While at it, make
30039     two needlessly global functions static.
30040
30041     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30042
30043 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
30044 Author: Marian Balakowicz <m8@semihalf.com>
30045 Date:   Wed May 7 13:10:04 2008 +0200
30046
30047     Avoid initrd and logbuffer area overlaps
30048
30049     Add logbuffer to reserved LMB areas to prevent initrd allocation
30050     from overlaping with it.
30051
30052     Make sure to use correct logbuffer base address.
30053
30054     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30055
30056 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
30057 Author: Marian Balakowicz <m8@semihalf.com>
30058 Date:   Wed May 7 13:08:54 2008 +0200
30059
30060     ppc: Cleanup get_effective_memsize() use
30061
30062     Removed duplicated effective memory size calculation code.
30063
30064     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30065
30066 commit 273c37d843d5b581090378016cd12dd9c586907b
30067 Author: Marian Balakowicz <m8@semihalf.com>
30068 Date:   Wed May 7 09:03:53 2008 +0200
30069
30070     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
30071
30072     Recent modifcations to LOGBUFFER handling code were incorrecly
30073     introduced to fit_check_kernel() routine during
30074     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
30075     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
30076
30077     This patch cleans up this merge issue.
30078
30079     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30080
30081 commit bc11756daff89a3de09ca80adac962b88cf06e6e
30082 Author: Grant Erickson <gerickson@nuovations.com>
30083 Date:   Tue May 6 20:16:15 2008 -0700
30084
30085     Propagate Error Status to the Shell on fw_printenv Errors
30086
30087     Changed implementation such that fw_printenv returns failure status
30088     when one or more specified variables do not exist or when incorrect
30089     command syntax is used.
30090
30091     This aids scripting fw_printenv such that the script can key of the
30092     return status rather than relying on standard error "scraping".
30093
30094     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
30095     Signed-off-by: Wolfgang Denk <wd@denx.de>
30096
30097 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
30098 Author: Grant Erickson <gerickson@nuovations.com>
30099 Date:   Tue May 6 16:18:00 2008 -0700
30100
30101     Fix Compilation Errors with 'tools/env/fw_printenv'
30102
30103     In the current top-of-tree, 1.3.3.-rc2, the optional tool
30104     'tools/env/fw_printenv' fails to compile for two reasons:
30105
30106     1) The header watchdog.h cannot be found.
30107     2) The header zlib.h is picked up from the tool chain rather than the
30108        project causing a prototype conflict for crc32.
30109
30110     This patch addresses both of these issues.
30111
30112     Platforms Tested On:
30113     - AMCC "Kilauea"
30114
30115     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
30116
30117 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
30118 Author: James Yang <James.Yang@freescale.com>
30119 Date:   Mon May 5 10:22:53 2008 -0500
30120
30121     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
30122
30123     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
30124     work before relocating to RAM because command history is written into
30125     a global array that is not writable before relocation.  This patch
30126     defers to the no-editing and no-history code in readline_into_buffer()
30127     if it is called before relocation.
30128
30129     Signed-off-by: James Yang <James.Yang@freescale.com>
30130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30131
30132 commit 726c0f1e5f108dccea052965123b95837d2bd402
30133 Author: Detlev Zundel <dzu@denx.de>
30134 Date:   Mon May 5 16:11:22 2008 +0200
30135
30136     cosmetic: Adjust coding style for switch statements to be consistent
30137
30138     Signed-off-by: Detlev Zundel <dzu@denx.de>
30139
30140 commit 574b319512b13e10800f0045e39b993f4ca25e42
30141 Author: Detlev Zundel <dzu@denx.de>
30142 Date:   Mon May 5 16:11:21 2008 +0200
30143
30144     Fix disk type output in disk/part.c
30145
30146     Signed-off-by: Detlev Zundel <dzu@denx.de>
30147
30148 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
30149 Author: Vlad Lungu <vlad.lungu@windriver.com>
30150 Date:   Mon May 5 14:20:03 2008 +0300
30151
30152     Mail address change, documentation modified
30153
30154     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
30155
30156 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
30157 Author: Michal Simek <monstr@monstr.eu>
30158 Date:   Sun May 4 15:42:41 2008 +0200
30159
30160     microblaze: Repare intc handling
30161
30162     Signed-off-by: Michal Simek <monstr@monstr.eu>
30163
30164 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
30165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30166 Date:   Sun May 4 15:17:52 2008 +0200
30167
30168     include/gitignore: update to all architectures
30169
30170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30171
30172 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
30173 Author: Marcel Ziswiler <marcel@ziswiler.com>
30174 Date:   Mon May 5 02:12:06 2008 +0200
30175
30176     ide: Remove spurious second include of io.h
30177
30178     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
30179
30180     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30181
30182 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
30183 Author: Adrian Filipi <adrian.filipi@eurotech.com>
30184 Date:   Tue May 6 16:46:37 2008 -0400
30185
30186     Fix some typos
30187
30188     This patch fixes three typos.
30189     The first is a repetition of CONFIG_CMD_BSP.
30190     The second makes the #endif comment match its #if.
30191     The third is a spelling error.
30192
30193     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
30194
30195 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
30196 Author: Grant Erickson <gerickson@nuovations.com>
30197 Date:   Sun May 4 16:45:01 2008 -0700
30198
30199     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
30200
30201     Add support for the recognition of 'powerpc' as an alias for the PowerPC
30202     architecture type since Linux is already trending in that direction,
30203     preferring 'powerpc' to 'ppc'.
30204
30205     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
30206
30207 commit f5a24259190c388c2527bdc49fee34577d862cc7
30208 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
30209 Date:   Fri May 2 13:35:15 2008 -0700
30210
30211     7450 and 86xx L2 cache invalidate bug corrections
30212
30213     The 7610 and related parts have an L2IP bit in the L2CR that is
30214     monitored to signal when the L2 cache invalidate is complete whereas the
30215     7450 and related parts utilize L2I for this purpose. However, the
30216     current code does not account for this difference. Additionally the 86xx
30217     L2 cache invalidate code used an "andi" instruction where an "andis"
30218     instruction should have been used.
30219
30220     This patch addresses both of these bugs.
30221
30222     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
30223     Acked-By: Jon Loeliger <jdl@freescale.com>
30224
30225 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
30226 Author: Wolfgang Denk <wd@denx.de>
30227 Date:   Fri May 9 10:16:13 2008 +0200
30228
30229     Avoid infinite loop "Generating include/autoconf.mk"
30230
30231     Fix a bogus circular dependency that caused an infinite loop of
30232     "Generating include/autoconf.mk" again and again.
30233
30234     Signed-off-by: Wolfgang Denk <wd@denx.de>
30235
30236 commit 567fb852178dbf59529d7301620a3f3732a4b02d
30237 Author: Stelian Pop <stelian@popies.net>
30238 Date:   Thu May 8 22:52:09 2008 +0200
30239
30240     Fix @ -> <at> substitution
30241
30242     When applying the AT91CAP9 patches upstream, something transformed
30243     the '@' character into the ' <at> ' sequence.
30244
30245     The patch below restores the original form in all the places where
30246     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
30247     were copied from AT91CAP9, and a couple of other files where the
30248     ' <at> ' sequence was present).
30249
30250     Signed-off-by: Stelian Pop <stelian@popies.net>
30251     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30252
30253 commit 73ccb3410a0785593cda7aee455dfc51f790e281
30254 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
30255 Date:   Mon Apr 28 14:04:32 2008 +0200
30256
30257     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
30258
30259     Signed-off-by: Gary Jennejohn <garyj@denx.de>
30260     Signed-off-by: Stefan Roese <sr@denx.de>
30261
30262 commit ef2642625cbfb1c3695e3478d08ae515052a4950
30263 Author: Stefan Roese <sr@denx.de>
30264 Date:   Thu May 8 11:10:46 2008 +0200
30265
30266     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
30267
30268     Signed-off-by: Stefan Roese <sr@denx.de>
30269
30270 commit a00eccfebc954ad9485161efeca7d9aaf626d530
30271 Author: Stefan Roese <sr@denx.de>
30272 Date:   Thu May 8 11:05:15 2008 +0200
30273
30274     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
30275
30276     This patch adds fdt (flattened device tree) support to all remaining AMCC
30277     eval boards. Most newer boards already support device tree. With this patch,
30278     all AMCC boards now enable device tree passing from U-Boot to Linux
30279     arch/powerpc kernels.
30280
30281     Signed-off-by: Stefan Roese <sr@denx.de>
30282
30283 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
30284 Author: Stefan Roese <sr@denx.de>
30285 Date:   Thu May 8 11:01:09 2008 +0200
30286
30287     ppc4xx: Add weak default ft_board_setup() routine
30288
30289     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
30290     This routine is defined as weak and can be overwritten by a board specific
30291     one if needed.
30292
30293     Signed-off-by: Stefan Roese <sr@denx.de>
30294
30295 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
30296 Author: Stefan Roese <sr@denx.de>
30297 Date:   Thu May 8 10:48:58 2008 +0200
30298
30299     ppc4xx: acadia: Add fdt support and fix section overlap problem
30300
30301     This patch adds fdt (flattened device tree) support to the AMCC
30302     Acadia eval board. This increases the image size and it doesn't
30303     fit anymore into 256kByte. Since we didn't want to remove features
30304     from the configuration, we decided to increase the U-Boot image size
30305     (add one flash sector).
30306
30307     Also changed the default environment definition to make it
30308     independent of such changes.
30309
30310     Signed-off-by: Stefan Roese <sr@denx.de>
30311
30312 commit 4adb3023de75bc150f088c8935db340930ad38c8
30313 Author: Ira Snyder <iws@ovro.caltech.edu>
30314 Date:   Tue Apr 29 11:18:54 2008 -0700
30315
30316     ppc4xx: Add device tree support to AMCC Yosemite
30317
30318     Add support for booting with a device tree blob. This is needed to boot
30319     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
30320     via the ethaddr variable.
30321
30322     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
30323     Signed-off-by: Stefan Roese <sr@denx.de>
30324
30325 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
30326 Author: Dave Mitchell <dmitchell@amcc.com>
30327 Date:   Wed May 7 09:00:23 2008 -0700
30328
30329     ppc4xx: Fix typos in 460GT/EX FBDV array
30330
30331     Corrected two typos in the 460GT/EX FBDV array.
30332
30333     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
30334     Signed-off-by: Stefan Roese <sr@denx.de>
30335
30336 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
30337 Author: Andy Fleming <afleming@freescale.com>
30338 Date:   Wed May 7 16:54:31 2008 -0500
30339
30340     85xx: Limit CPU2 workaround to parts that have the errata
30341
30342     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
30343     Signed-off-by: Andy Fleming <afleming@freescale.com>
30344
30345 commit a5fe514e8ace564300d2c1d73846ddff49654243
30346 Author: Lee Nipper <lee.nipper@freescale.com>
30347 Date:   Fri Apr 25 15:44:45 2008 -0500
30348
30349     mpc83xx: system performance settings for MPC8349EMDS.
30350
30351     These same settings are used on MPC8349ITX, and
30352     improve performance on MPC8349EMDS.
30353
30354     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
30355     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30356
30357 commit 49387dba910e485640b575e920ee463b7e611dc3
30358 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30359 Date:   Tue May 6 13:22:52 2008 +0900
30360
30361     [MIPS] cpu/mips/cache.S: Fix build warning
30362
30363     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
30364     warns illegal global symbol references by bal (and jal also) instruction.
30365     This does not happen with the latest binutils v2.18.
30366
30367     Here's an example on gth2_config:
30368
30369     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
30370     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
30371     c -EB -c -o cache.o cache.S
30372     cache.S: Assembler messages:
30373     cache.S:243: Warning: Pretending global symbol used as branch target is local.
30374     cache.S:250: Warning: Pretending global symbol used as branch target is local.
30375
30376     In principle, gas might be sensitive to global symbol references in PIC
30377     code because they should be processed through GOT (global offset table).
30378     But if `bal' instruction is used, it results in PC-based offset jump.
30379     This is the cause of this warning.
30380
30381     In practice, we know it doesn't matter whether PC-based reference or GOT-
30382     based. As for this case, both will work before/after relocation. But let's
30383     fix the code.
30384
30385     This patch explicitly sets up a target address, then jump there.
30386     Here's an example of disassembled code with/without this patch.
30387
30388      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
30389      9000066c:       ac80fffc        sw      zero,-4(a0)
30390      90000670:       01402821        move    a1,t2
30391     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
30392     -90000678:       01803021        move    a2,t4
30393     -9000067c:       01602821        move    a1,t3
30394     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
30395     -90000684:       01a03021        move    a2,t5
30396     -90000688:       03000008        jr      t8
30397     -9000068c:       00000000        nop
30398     +90000674:       01803021        move    a2,t4
30399     +90000678:       8f8f83ec        lw      t7,-31764(gp)
30400     +9000067c:       01e0f809        jalr    t7
30401     +90000680:       00000000        nop
30402     +90000684:       01602821        move    a1,t3
30403     +90000688:       01a03021        move    a2,t5
30404     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
30405     +90000690:       01e0f809        jalr    t7
30406     +90000694:       00000000        nop
30407     +90000698:       03000008        jr      t8
30408     +9000069c:       00000000        nop
30409
30410     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30411
30412 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
30413 Author: Vlad Lungu <vlad.lungu@windriver.com>
30414 Date:   Mon May 5 14:04:00 2008 +0300
30415
30416     Allow building mips versions with ELDK 3.1.1
30417
30418     .gpword works only with local symbols on certain binutils versions
30419
30420     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
30421
30422 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
30423 Author: Wolfgang Denk <wd@denx.de>
30424 Date:   Mon May 5 12:52:36 2008 +0200
30425
30426     MAKEALL: add inka4x0 board
30427
30428     Signed-off-by: Wolfgang Denk <wd@denx.de>
30429
30430 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
30431 Author: Wolfgang Denk <wd@denx.de>
30432 Date:   Sun May 4 21:34:23 2008 +0200
30433
30434     kb9202 board: fix build problem.
30435
30436     Signed-off-by: Wolfgang Denk <wd@denx.de>
30437
30438 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
30439 Author: Wolfgang Denk <wd@denx.de>
30440 Date:   Sun May 4 12:10:33 2008 +0200
30441
30442     Prepare for v1.3.3-rc3
30443
30444     Update ChNAGELOG, minor white space cleanup.
30445
30446     Signed-off-by: Wolfgang Denk <wd@denx.de>
30447
30448 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
30449 Author: Wolfgang Denk <wd@denx.de>
30450 Date:   Sun May 4 00:35:15 2008 +0200
30451
30452     drivers/net/tsec.c: Fix typo.
30453
30454     Signed-off-by: Wolfgang Denk <wd@denx.de>
30455
30456 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
30457 Author: Mike Frysinger <vapier@gentoo.org>
30458 Date:   Fri May 2 21:45:12 2008 -0400
30459
30460     version_autogenerated.h: use printf rather than echo -n
30461
30462     Some systems are dumb and do not implement the -n flag to echo (like OS X).
30463     Convert the Makefile to use printf as this should work everywhere.
30464
30465     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30466     Signed-off-by: Wolfgang Denk <wd@denx.de>
30467
30468 commit 4acc2a108ad0a669165924704a6cb083f9138242
30469 Author: Mike Frysinger <vapier@gentoo.org>
30470 Date:   Fri May 2 18:17:50 2008 -0400
30471
30472     fix building when saveenv is disabled in some setups
30473
30474     If you enable environment in the flash, but disable the embedded
30475     option, and you disable the saveenv command, then the #if nested
30476     logic will trigger a compile failure:
30477     env_flash.c: In function 'env_relocate_spec':
30478     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
30479     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
30480
30481     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30482
30483 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
30484 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
30485 Date:   Fri May 2 16:10:04 2008 -0400
30486
30487     SBC8548: fix address mask to allow 64M flash
30488
30489     Fix incorrect mask to enable all 64MB of onboard flash.
30490     Previously U-Boot incorrectly mapped only 8MB of flash, this
30491     patch correctly maps all the available flash.
30492
30493     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
30494
30495 commit 3648085c464c8c22ef76fab006ca4344d3796124
30496 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30497 Date:   Fri May 2 19:48:56 2008 +0200
30498
30499     qemu_mips: add README
30500
30501     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30502
30503 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
30504 Author: Marcel Ziswiler <marcel@ziswiler.com>
30505 Date:   Fri May 2 02:35:59 2008 +0200
30506
30507     Fix misspelled comment
30508
30509     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30510
30511 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
30512 Author: Mike Frysinger <vapier@gentoo.org>
30513 Date:   Thu May 1 04:13:05 2008 -0400
30514
30515     mkimage: make mmap() checks consistent
30516
30517     The mmap() related code is full of inconsistent casts/constants when
30518     it comes to error checking, and may break when building on some
30519     systems (like ones that do not implicitly define the caddr_t type).
30520     Let's just avoid the whole mess by writing the code nice and clean in
30521     the first place.
30522
30523     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30524
30525 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
30526 Author: Marcel Ziswiler <marcel@ziswiler.com>
30527 Date:   Thu May 1 09:05:34 2008 +0200
30528
30529     Fix defined but not used build warning
30530
30531     - warning: 'srom' defined but not used
30532
30533     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30534
30535 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
30536 Author: Marcel Ziswiler <marcel@ziswiler.com>
30537 Date:   Thu May 1 09:05:26 2008 +0200
30538
30539     Fix implicit declaration build warnings
30540
30541     - warning: implicit declaration of function â€˜serial_initialize’
30542
30543     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
30544
30545 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
30546 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
30547 Date:   Tue Apr 29 19:18:32 2008 +0200
30548
30549     TSEC: add config options for VSC8601 RGMII PHY
30550
30551     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
30552     and Tx clock lines. They are configured using 2 bits in extended
30553     register 0x17.
30554     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
30555     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
30556
30557     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
30558     Acked-by: Andy Fleming <afleming@freescale.com>
30559     Acked-by: Ben Warren <biggerbadderben@gmail.com>
30560     --
30561
30562      drivers/net/tsec.c |    6 ++++++
30563      drivers/net/tsec.h |    3 +++
30564      2 files changed, 9 insertions(+), 0 deletions(-)
30565
30566 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
30567 Author: Wolfgang Denk <wd@denx.de>
30568 Date:   Sat May 3 23:07:15 2008 +0200
30569
30570     Revert "ColdFire: Get information from the correct GCC"
30571
30572     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
30573     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
30574
30575 commit c4e5f52a58d278eebb87f476e353972c5dacea40
30576 Author: Wolfgang Denk <wd@denx.de>
30577 Date:   Sat May 3 22:25:00 2008 +0200
30578
30579     config.mk: use correct (cross) compiler
30580
30581     Some config.mk files reference $(CC) to test for specific tool chain
30582     features, so make sure $(CC) gets set before including any such
30583     config files.
30584
30585     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
30586     the correct GCC").
30587
30588     Signed-off-by: Wolfgang Denk <wd@denx.de>
30589
30590 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
30591 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30592 Date:   Thu May 1 02:13:44 2008 +0200
30593
30594     pxa: fix previous definition on cpu init
30595
30596     start.S:183:1: warning: "ICMR" redefined
30597     In file included from start.S:33:
30598     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
30599     start.S:187:1: warning: "RCSR" redefined
30600     ...
30601
30602     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30603
30604 commit 6d12e697de794d700767f22f950e3026ccf4daf6
30605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30606 Date:   Thu May 1 02:13:43 2008 +0200
30607
30608     pxa: fix pcmcia operation on 'i' may be undefined
30609
30610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30611     Signed-off-by: Wolfgang Denk <wd@denx.de>
30612
30613 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
30614 Author: Kumar Gala <galak@kernel.crashing.org>
30615 Date:   Wed Apr 30 16:24:35 2008 -0500
30616
30617     MPC8610HPCD: Drop -O2 from the build flags
30618
30619     Make the flags use -Os like all other boards
30620
30621     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30622
30623 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
30624 Author: Stefan Roese <sr@denx.de>
30625 Date:   Wed Apr 30 15:50:39 2008 +0200
30626
30627     RTC: Fix month offset by one problem in M41T62 RTC driver
30628
30629     This patch fixes a problem with the month being read and written
30630     incorrectly (offset by one). This only gets visible by also using
30631     the Linux driver (rtc-m41t80).
30632
30633     Tested on AMCC Canyonlands.
30634
30635     Signed-off-by: Stefan Roese <sr@denx.de>
30636
30637 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
30638 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30639 Date:   Sat May 3 13:51:44 2008 +0900
30640
30641     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
30642
30643     Current trick to pick up GNU assembler minor version uses a dot(.) as a
30644     delimiter, and take the second field to obtain minor version number. But
30645     as can be expected, this doesn't work with a version string which has
30646     dots more than needs.
30647
30648     Here's an example:
30649
30650     $ mips-linux-gnu-as --version | grep 'GNU assembler'
30651     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
30652     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
30653     2-129) 2
30654     $
30655
30656     This patch restricts the version format to 2.XX.XX... This will work
30657     in most cases.
30658
30659     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
30660     2.18.50.20080215
30661     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
30662     18
30663     $
30664
30665     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30666
30667 commit ea638951acead7f1086c908c0b9f086beab82a22
30668 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30669 Date:   Sat May 3 13:51:28 2008 +0900
30670
30671     [MIPS] cpu/mips/cache.S: Add dcache_enable
30672
30673     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
30674     "allow ports to override bootelf behavior") requires ports to have this
30675     function.
30676
30677     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30678     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30679
30680 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
30681 Author: Wolfgang Denk <wd@denx.de>
30682 Date:   Thu May 1 21:30:16 2008 +0200
30683
30684     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
30685
30686     Onenand needs a version of memcpy() which performs 16 bit accesses
30687     only; make sure the name does not conflict with the standard
30688     function.
30689
30690     Signed-off-by: Wolfgang Denk <wd@denx.de>
30691
30692 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
30693 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30694 Date:   Wed Apr 30 22:38:17 2008 +0200
30695
30696     cmd_nand: fix warning: str2long ncompatible pointer type
30697
30698     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30699
30700 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
30701 Author: Timur Tabi <timur@freescale.com>
30702 Date:   Fri Apr 4 11:16:11 2008 -0500
30703
30704     Fix calculation of I2C clock for some 86xx chips
30705
30706     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
30707     There is no pattern that can be used to determine which chips use which
30708     frequency, so the only way to determine is to look up the actual SOC
30709     designation and use the right value for that SOC.
30710
30711     Signed-off-by: Timur Tabi <timur@freescale.com>
30712
30713 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
30714 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30715 Date:   Wed Apr 30 12:11:19 2008 -0500
30716
30717     ColdFire: Fix ethernet hang issue for mcf547x_8x
30718
30719     The ethernet hang is caused by receiving buffer in DRAM is not
30720     yet ready due to access cycles require longer time in DRAM.
30721     Relocate DMA buffer descriptors from DRAM to internal SRAM.
30722
30723     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30724
30725 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
30726 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30727 Date:   Wed Apr 30 12:10:47 2008 -0500
30728
30729     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
30730
30731     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
30732     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30733
30734 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
30735 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30736 Date:   Wed Apr 30 12:10:23 2008 -0500
30737
30738     ColdFire: Get information from the correct GCC
30739
30740     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
30741     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30742
30743 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
30744 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
30745 Date:   Wed Apr 30 18:02:59 2008 +0200
30746
30747     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
30748
30749     Fix warnings
30750
30751     nv_nand.c: In function 'saveenv':
30752     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
30753     env_nand.c: In function 'env_relocate_spec':
30754     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
30755
30756     if compiled for davinci_schmoogie_config.
30757
30758     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30759     Ack by: Sergey Kubushyn <ksi@koi8.net>
30760
30761 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
30762 Author: Anatolij Gustschin <agust@denx.de>
30763 Date:   Wed Apr 30 13:34:40 2008 +0200
30764
30765     Fix warnings while compiling net/net.c for MPC8610HPCD board
30766
30767     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
30768     causing overriding default -Os option. New gcc (ver. 4.2.2)
30769     produces warnings while compiling net/net.c file with -O2
30770     option. The patch is an attempt to fix this.
30771
30772     Signed-off-by: Anatolij Gustschin <agust@denx.de>
30773
30774 commit 58b575e575c25fdf8c88141e145db201f3092149
30775 Author: Sascha Laue <Sascha.Laue@gmx.biz>
30776 Date:   Wed Apr 30 15:23:38 2008 +0200
30777
30778     lwmon5: fix offset error in sysmon0 POST
30779
30780     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
30781     Signed-off-by: Wolfgang Denk <wd@denx.de>
30782
30783 commit e7419b243a373de4ee042f7d4f45f66de787240d
30784 Author: Sascha Laue <Sascha.Laue@gmx.biz>
30785 Date:   Wed Apr 30 15:16:35 2008 +0200
30786
30787     lwmon5: fix manual merge error in POST
30788
30789     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
30790
30791 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
30792 Author: Wolfgang Denk <wd@denx.de>
30793 Date:   Wed Apr 30 17:46:26 2008 +0200
30794
30795     cmd_nand.c: fix another 'incompatible pointer type' warning.
30796
30797     Signed-off-by: Wolfgang Denk <wd@denx.de>
30798
30799 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
30800 Author: Wolfgang Denk <wd@denx.de>
30801 Date:   Wed Apr 30 17:25:07 2008 +0200
30802
30803     Makefile: fix parallel builds
30804
30805     This problem shows up with parallel builds only; it results in
30806     somewhat cryptic error messages like
30807
30808         $ JOBS=-j6 MAKEALL netstar
30809         Configuring for netstar board...
30810         arm-linux-ld: cannot find -lgeneric
30811         make[1]: *** [eeprom.srec] Error 1
30812
30813     A few boards (like netstar and voiceblue) need some libraries for
30814     building; however, the board Makefile does not contain any such
30815     dependencies which may cause problems with parallel builds. Adding
30816     such dependencies is difficult as we would also have to provide build
30817     rules, which already exist in the respective library Makefiles.
30818
30819     To solve this, we make sure that all libraries get built before the
30820     board code.
30821
30822     Signed-off-by: Wolfgang Denk <wd@denx.de>
30823
30824 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
30825 Author: Stefan Roese <sr@denx.de>
30826 Date:   Wed Apr 30 14:51:36 2008 +0200
30827
30828     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
30829
30830     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
30831     used for NAND booting to match the values needed for the new 512MB
30832     DIMM modules shipped with the productions boards:
30833
30834     Crucial: CT6464AC667.8FB
30835
30836     Signed-off-by: Stefan Roese <sr@denx.de>
30837
30838 commit ea9202a659dc75996facf1475f1866a19a9d3129
30839 Author: Stefan Roese <sr@denx.de>
30840 Date:   Wed Apr 30 10:49:43 2008 +0200
30841
30842     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
30843
30844     This patch fixes a problem with DIMMs that have 8 banks. Now the
30845     MCIF0_MBxCF register will be setup correctly for this setup too.
30846
30847     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
30848
30849     Signed-off-by: Stefan Roese <sr@denx.de>
30850
30851 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
30852 Author: Wolfgang Denk <wd@denx.de>
30853 Date:   Tue Apr 29 23:41:06 2008 +0200
30854
30855     Prepare v1.3.3-rc2, again.
30856
30857     Signed-off-by: Wolfgang Denk <wd@denx.de>
30858
30859 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
30860 Author: Wolfgang Denk <wd@denx.de>
30861 Date:   Tue Apr 29 23:35:24 2008 +0200
30862
30863     Prepare v1.3.3-rc2
30864
30865     Signed-off-by: Wolfgang Denk <wd@denx.de>
30866
30867 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
30868 Author: Wolfgang Denk <wd@denx.de>
30869 Date:   Tue Apr 29 23:32:20 2008 +0200
30870
30871     common/env_nand.c: fix one more incompatible pointer type issue
30872
30873     Signed-off-by: Wolfgang Denk <wd@denx.de>
30874
30875 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
30876 Author: Wolfgang Denk <wd@denx.de>
30877 Date:   Tue Apr 29 21:33:08 2008 +0200
30878
30879     post/board/lwmon5/sysmon.c: fix manual merge error.
30880
30881     Signed-off-by: Wolfgang Denk <wd@denx.de>
30882
30883 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
30884 Author: Kumar Gala <galak@kernel.crashing.org>
30885 Date:   Tue Apr 29 12:54:59 2008 -0500
30886
30887     85xx: Add -mno-spe to e500/85xx builds
30888
30889     Newer gcc's might be configured to enable autovectorization by default.
30890     If we happen to build with one of those compilers we will get SPE
30891     instructions in random code.
30892
30893     -mno-spe disables the compiler for automatically generating SPE
30894     instructions without our knowledge.
30895
30896     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30897
30898 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
30899 Author: Kumar Gala <galak@kernel.crashing.org>
30900 Date:   Tue Apr 29 10:18:34 2008 -0500
30901
30902     Update .gitignore for zlib.h
30903
30904     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30905
30906 commit 45239cf4152109caa925145ccd433529902df887
30907 Author: Kumar Gala <galak@kernel.crashing.org>
30908 Date:   Tue Apr 29 10:27:08 2008 -0500
30909
30910     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
30911
30912     All the 85xx and 86xx UM describe the register as timing_cfg_3
30913     not as ext_refrec.
30914
30915     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30916
30917 commit ef7d30b14394e4c4a153118f5845760cadada02a
30918 Author: Kumar Gala <galak@kernel.crashing.org>
30919 Date:   Tue Apr 29 10:28:34 2008 -0500
30920
30921     85xx/86xx: Rename DDR init address and init extended address register
30922
30923     Rename init_addr and init_ext_addr to match the docs between
30924     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
30925
30926     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30927
30928 commit cf6cc014270549684873a5972d2595052c468cb6
30929 Author: Kumar Gala <galak@kernel.crashing.org>
30930 Date:   Mon Apr 28 02:24:04 2008 -0500
30931
30932     85xx: Additional fixes and cleanup of MP code
30933
30934     * adjust __spin_table alignment to match ePAPR v0.94 spec
30935     * loop over all cpus when determing who is up.  This fixes an issue if
30936       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
30937       cpu_up_mask so there is no harm
30938     * Added some protection in the code to ensure proper behavior.  These
30939       changes are explicitly needed but don't hurt:
30940       - Added eieio to ensure the "hot word" of the table is written after
30941         all other table updates have occurred.
30942       - Added isync to ensure we don't prefetch loading of table entries
30943         until we a released
30944
30945     These issues we raised by Dave Liu.
30946
30947     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30948
30949 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
30950 Author: Yuri Tikhonov <yur@emcraft.com>
30951 Date:   Tue Apr 29 15:06:41 2008 +0200
30952
30953     lwmon5: minor clean-up to include/configs/lwmon5.h
30954
30955     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
30956     the CFG_DSPIC_TEST_ADDR definition more readable.
30957
30958     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30959
30960 commit f4c4d21a885ccc222fd0acdf653b683249e85117
30961 Author: Stefan Roese <sr@denx.de>
30962 Date:   Tue Apr 29 16:08:05 2008 +0200
30963
30964     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
30965
30966     Signed-off-by: Stefan Roese <sr@denx.de>
30967
30968 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
30969 Author: Yuri Tikhonov <yur@emcraft.com>
30970 Date:   Tue Apr 29 13:32:45 2008 +0200
30971
30972     ppc flush_cache: add watch-dog triggering into the loops.
30973
30974     Some boards (e.g. lwmon5) need rather a frequent watch-dog
30975     kicking. Since the time it takes for the flush_cache() function
30976     to complete its job depends on the size of data being flushed, one
30977     may encounter watch-dog resets on such boards when, for example,
30978     download big files over ethernet.
30979
30980     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30981
30982 commit cab99d6f3281ab6784feccf98b9b425daa58418a
30983 Author: Stefan Roese <sr@denx.de>
30984 Date:   Tue Apr 29 14:44:54 2008 +0200
30985
30986     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
30987
30988     Signed-off-by: Stefan Roese <sr@denx.de>
30989
30990 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
30991 Author: Stefan Roese <sr@denx.de>
30992 Date:   Tue Apr 29 14:12:07 2008 +0200
30993
30994     ppc4xx: Fix Katmai CFG_MONITOR_LEN
30995
30996     Signed-off-by: Stefan Roese <sr@denx.de>
30997
30998 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
30999 Author: Stefan Roese <sr@denx.de>
31000 Date:   Tue Apr 29 13:57:07 2008 +0200
31001
31002     ppc4xx: Complete remove bogus dflush()
31003
31004     Since the current dflush() implementation is know to have some problems
31005     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
31006     it by using clean_dcache_range().
31007
31008     Tested on Katmai with ECC DIMM.
31009
31010     Signed-off-by: Stefan Roese <sr@denx.de>
31011
31012 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
31013 Author: Stefan Roese <sr@denx.de>
31014 Date:   Tue Apr 29 13:36:51 2008 +0200
31015
31016     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
31017
31018     As it seems the "old" ECC initialization routine by using dflush() didn't
31019     write all lines in the dcache back to memory on lwmon5. This could lead
31020     to ECC error upon Linux booting. This patch changes the program_ecc()
31021     routine to now use clean_dcache_range() instead of dflush().
31022     clean_dcache_range() uses dcbst which is exactly what we want in this
31023     case.
31024
31025     Since dflush() is known is cause problems, this routine will be
31026     removed completely and replaced by clean_dcache_range() with an
31027     additional patch.
31028
31029     Signed-off-by: Stefan Roese <sr@denx.de>
31030
31031 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
31032 Author: Yuri Tikhonov <yur@emcraft.com>
31033 Date:   Mon Apr 28 18:19:34 2008 +0200
31034
31035     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
31036
31037     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31038
31039 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
31040 Author: Markus Brunner <super.firetwister@googlemail.com>
31041 Date:   Mon Apr 28 08:47:47 2008 +0200
31042
31043     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
31044
31045     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
31046     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
31047     doesn't exist.
31048
31049     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
31050
31051 commit 2ef7503a593c77a80c2a054011970227c4b62774
31052 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31053 Date:   Thu Apr 24 07:57:17 2008 +0200
31054
31055     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
31056
31057     Move non-inlied functions into specific drivers file
31058     Set get_prom as weak
31059
31060     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31061     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
31062     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31063
31064 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
31065 Author: Guennadi Liakhovetski <lg@denx.de>
31066 Date:   Thu Apr 3 17:04:19 2008 +0200
31067
31068     net: make ARP timeout configurable
31069
31070     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
31071     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
31072     to the boards get lost, which typically are ARP replies. By configuring
31073     the timeout to a lower value we significantly improve the first network
31074     transfer time on this board. The timeout is specified in milliseconds,
31075     later internally it is converted to deciseconds, because it has to be
31076     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
31077     different boards.
31078
31079     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31080     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31081
31082 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
31083 Author: Guennadi Liakhovetski <lg@denx.de>
31084 Date:   Thu Apr 3 13:36:18 2008 +0200
31085
31086     minor cs8900 driver clean up
31087
31088     Remove a redundant register definition, clean up some coding style
31089     violations.
31090
31091     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31092     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31093
31094 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
31095 Author: Wolfgang Denk <wd@denx.de>
31096 Date:   Mon Apr 28 22:01:04 2008 +0200
31097
31098     jffs2_1pass.c: fix incompatible pointer type warning
31099
31100     Signed-off-by: Wolfgang Denk <wd@denx.de>
31101
31102 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
31103 Author: Sascha Laue <Sascha.Laue@gmx.biz>
31104 Date:   Tue Apr 1 10:10:18 2008 +0200
31105
31106     lwmon5: update dsPIC POST spezification
31107
31108     The specification for the lwmon5 board dsPIC POST got changed.
31109     Also add defines for the temperatures  and voltages.
31110
31111     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
31112
31113 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
31114 Author: Sascha Laue <Sascha.Laue@gmx.biz>
31115 Date:   Tue Apr 1 15:13:03 2008 +0200
31116
31117     Fix watchdog POST for lwmon5
31118
31119     If the hardware watchdog detects a voltage error, the watchdog sets
31120     GPIO62 to low. The watchdog POST has to detect this low level.
31121
31122     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
31123     Signed-off-by: Wolfgang Denk <wd@denx.de>
31124
31125 commit dd5748bcd669f46aeb6686c1b341323843738ccc
31126 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31127 Date:   Mon Apr 28 14:37:14 2008 +0200
31128
31129     rtl8169: fix compiler warnings
31130
31131     Fix multiple compiler warnings related to argument type mismatch.
31132
31133     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31134
31135 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
31136 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31137 Date:   Mon Apr 28 14:36:06 2008 +0200
31138
31139     IDE: fix compiler warnings
31140
31141     The IDE driver can use 32-bit addresses in LBA mode, in which case it
31142     spits multiple warnings during compilation. Fix them.
31143
31144     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31145
31146 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
31147 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31148 Date:   Mon Apr 28 14:35:57 2008 +0200
31149
31150     LinkStation: fix compiler warning, add a maintainer
31151
31152     out_8 wants a pointer to an unsigned as the first argument. Add a
31153     maintainer for Linkstation boards.
31154
31155     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31156
31157 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
31158 Author: Wolfgang Denk <wd@denx.de>
31159 Date:   Mon Apr 28 14:55:12 2008 +0200
31160
31161     cmd_nand.c: fix "differ in signedness" problem
31162
31163     Signed-off-by: Wolfgang Denk <wd@denx.de>
31164
31165 commit f2c288a35341ad02ac03b1563d786763c9c8f159
31166 Author: Wolfgang Denk <wd@denx.de>
31167 Date:   Mon Apr 28 12:48:47 2008 +0200
31168
31169     pcnet.c: fix a merge issue
31170
31171     Signed-off-by: Wolfgang Denk <wd@denx.de>
31172
31173 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
31174 Author: Wolfgang Denk <wd@denx.de>
31175 Date:   Mon Apr 28 12:08:18 2008 +0200
31176
31177     NAND: fix some strict-aliasing compiler warnings
31178
31179     Signed-off-by: Wolfgang Denk <wd@denx.de>
31180
31181 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
31182 Author: Stefan Roese <sr@denx.de>
31183 Date:   Mon Apr 28 11:37:14 2008 +0200
31184
31185     ppc4xx: Fix compile warning of hcu4 board
31186
31187     Signed-off-by: Stefan Roese <sr@denx.de>
31188
31189 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
31190 Author: Wolfgang Denk <wd@denx.de>
31191 Date:   Mon Apr 28 11:31:23 2008 +0200
31192
31193     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
31194
31195     Signed-off-by: Wolfgang Denk <wd@denx.de>
31196
31197 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
31198 Author: Guennadi Liakhovetski <lg@denx.de>
31199 Date:   Mon Apr 28 00:25:32 2008 +0200
31200
31201     mx31ads: fix loadaddr environment variable define
31202
31203     Arithmetic expressions do not get evaluated under stringification. Remove
31204     default network configuration, add DHCP command support. Thanks to Felix
31205     Radensky for reporting.
31206
31207     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31208
31209 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
31210 Author: Wolfgang Denk <wd@denx.de>
31211 Date:   Mon Apr 28 10:55:24 2008 +0200
31212
31213     katmai: fix section overlap problem
31214
31215     Since we didn't want to remove features from the configuration, we
31216     decided to increase the U-Boot image size (add one flash sector).
31217
31218     Also changed the default environment definition to make it
31219     independent of such changes.
31220
31221     Signed-off-by: Wolfgang Denk <wd@denx.de>
31222     Acked-by: Stefan Roese <sr@denx.de>
31223
31224 commit 941d696d25624e3cc65ebf924199541acf52d74e
31225 Author: Wolfgang Denk <wd@denx.de>
31226 Date:   Mon Apr 28 10:55:24 2008 +0200
31227
31228     katmai: fix section overlap problem
31229
31230     Since we didn't want to remove features from the configuration, we
31231     decided to increase the U-Boot image size (add one flash sector).
31232
31233     Also changed the default environment definition to make it
31234     independent of such changes.
31235
31236     Signed-off-by: Wolfgang Denk <wd@denx.de>
31237     Acked-by: Stefan Roese <sr@denx.de>
31238
31239 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
31240 Author: Kumar Gala <galak@kernel.crashing.org>
31241 Date:   Sat Apr 26 11:44:44 2008 -0500
31242
31243     post: Fix building with O=
31244
31245     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31246
31247 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
31248 Author: Wolfgang Denk <wd@denx.de>
31249 Date:   Sat Apr 26 01:55:00 2008 +0200
31250
31251     Prepare v1.3.3-rc1
31252
31253     Signed-off-by: Wolfgang Denk <wd@denx.de>
31254
31255 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
31256 Author: Wolfgang Denk <wd@denx.de>
31257 Date:   Sat Apr 26 01:25:39 2008 +0200
31258
31259     post/Makefile: make sure to use the correct flags
31260
31261     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
31262     messages to be printed.
31263
31264     Signed-off-by: Wolfgang Denk <wd@denx.de>
31265
31266 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
31267 Author: Wolfgang Denk <wd@denx.de>
31268 Date:   Sat Apr 26 00:34:42 2008 +0200
31269
31270     Coding Style cleanup, update CHANGELOG
31271
31272     Signed-off-by: Wolfgang Denk <wd@denx.de>
31273
31274 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
31275 Author: Magnus Lilja <lilja.magnus@gmail.com>
31276 Date:   Sun Apr 20 10:38:12 2008 +0200
31277
31278     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
31279
31280     This patch enables SPI and MC13783/RTC support for the Litekit board.
31281
31282     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
31283
31284 commit f97abbfb47d9e407354e157cae3f6369e460cd37
31285 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31286 Date:   Fri Apr 25 01:08:32 2008 -0500
31287
31288     MPC8544DS: decode pcie3 end-point configuration correctly.
31289
31290     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31292
31293 commit 292188e15523c165c4269403fdcd33c26d89176e
31294 Author: Roy Zang <tie-fei.zang@freescale.com>
31295 Date:   Fri Apr 25 00:55:09 2008 -0500
31296
31297     MPC8544DS: Removes the unknown flash message information
31298
31299     This patch removes the unknown flash message information:
31300     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
31301     This unknown flash message is caused by PromJet.
31302     Some of the board user is unhappy with this information.
31303
31304     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
31305     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31306
31307 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
31308 Author: Kim Phillips <kim.phillips@freescale.com>
31309 Date:   Thu Apr 24 14:07:38 2008 -0500
31310
31311     mpc83xx: bump loadaddr over fdtaddr to 0x500000
31312
31313     this seems as a good compromise between human memory, typing,
31314     and last but not least, to accommodate for current and future kernel bloat.
31315
31316     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31317     Acked-by: Dave Liu <daveliu@freescale.com>
31318
31319 commit be5a7190265a34d968578ff266549c60f6f57654
31320 Author: Dave Liu <r63238@freescale.com>
31321 Date:   Tue Apr 15 13:12:23 2008 +0800
31322
31323     mpc83xx: clean up the readme for 83xx boards
31324
31325     1. correct the typo
31326     2. correct the memory map for 837xerdb board
31327
31328     Signed-off-by: Dave Liu <daveliu@freescale.com>
31329
31330 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
31331 Author: Dave Liu <r63238@freescale.com>
31332 Date:   Tue Apr 15 13:11:11 2008 +0800
31333
31334     mpc83xx: remove the unused CPM's stuff
31335
31336     The MPC83xx family never have CPM block, so remove it from 83xx.
31337
31338     Signed-off-by: Dave Liu <daveliu@freescale.com>
31339
31340 commit c63ad6325a8ac0097a54b418a3288926b0484b18
31341 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31342 Date:   Fri Apr 18 16:29:40 2008 +0200
31343
31344     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
31345
31346     This patch adds a configurable flash auto protection list that can be used
31347     to make U-Boot protect flash regions in flash_init().
31348
31349     The idea has been discussed on the u-boot mailing list starting
31350     on Nov 18th, 2007.
31351
31352     Even this patch brings a new feature it is used as a bugfix for 4xx
31353     platforms where flash_init() does not completely protect the
31354     monitor's flash range in all situations.
31355
31356     U-Boot protects the flash range from CFG_MONITOR_BASE to
31357     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
31358     include the reset vector at 0xfffffffc.
31359
31360     Example:
31361     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
31362
31363     This config option will auto protect the last 512k of flash that
31364     contains the bootloader on board like APC405 and PMC405.
31365
31366     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31367
31368 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
31369 Author: Stefan Roese <sr@denx.de>
31370 Date:   Fri Apr 25 13:59:03 2008 +0200
31371
31372     ppc4xx: Remove double defines in lwmon5.h
31373
31374     introduced with latest lwmon5/POST merge
31375
31376     Signed-off-by: Stefan Roese <sr@denx.de>
31377
31378 commit 7590378fb9c686709492ceb142825cd058255956
31379 Author: Bartlomiej Sieka <tur@semihalf.com>
31380 Date:   Fri Apr 25 13:54:02 2008 +0200
31381
31382     Use watchdog-aware functions when calculating hashes of images - take two
31383
31384     Some files didn't get updated properly with the "Use watchdog-aware
31385     functions when calculating hashes of images" commit, this commit
31386     fixes this.
31387
31388     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31389     Signed-off-by: Wolfgang Denk <wd@denx.de>
31390
31391 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
31392 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31393 Date:   Fri Apr 25 12:01:39 2008 +0200
31394
31395     ppc4xx: Add bootcount limit handling for APC405 boards
31396
31397     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31398
31399 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
31400 Author: Bartlomiej Sieka <tur@semihalf.com>
31401 Date:   Fri Apr 25 12:10:09 2008 +0200
31402
31403     Use watchdog-aware functions when calculating hashes of images
31404
31405     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31406
31407 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
31408 Author: Wolfgang Denk <wd@denx.de>
31409 Date:   Fri Apr 25 12:44:08 2008 +0200
31410
31411     USB: fix more GCC 4.2.x aliasing warnings
31412
31413     Signed-off-by: Wolfgang Denk <wd@denx.de>
31414     Acked-by: Markus Klotzbuecher <mk@denx.de>
31415
31416 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
31417 Author: Wolfgang Denk <wd@denx.de>
31418 Date:   Fri Apr 25 12:41:53 2008 +0200
31419
31420     lib_generic/crc32.c: add missing #include <watchdog.h>
31421
31422     Signed-off-by: Wolfgang Denk <wd@denx.de>
31423
31424 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
31425 Author: Wolfgang Denk <wd@denx.de>
31426 Date:   Fri Apr 25 11:52:21 2008 +0200
31427
31428     lib_generic/crc32.c: fix compile problem
31429
31430     Signed-off-by: Wolfgang Denk <wd@denx.de>
31431
31432 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
31433 Author: Stefan Roese <sr@denx.de>
31434 Date:   Tue Apr 22 12:20:32 2008 +0200
31435
31436     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
31437
31438     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
31439     environment variable will now get passed to the Linux kernel by setting
31440     the device_type property of the PCIe device tree node. For normal root-
31441     complex configuration it will keep its defaults value of "pci" and for
31442     endpoint configuration it will get changed to "pci-endpoint".
31443
31444     Signed-off-by: Stefan Roese <sr@denx.de>
31445
31446 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
31447 Author: Yuri Tikhonov <yur@emcraft.com>
31448 Date:   Thu Apr 24 10:30:53 2008 +0200
31449
31450     lwmon5: watchdog POST fix
31451
31452     Use the GPT0_MASKx registers as the temporary storage for watch-dog
31453     timer POST test instead of GPT0_COMPx. The latter
31454     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
31455
31456     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
31457     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31458
31459 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
31460 Author: Kim Phillips <kim.phillips@freescale.com>
31461 Date:   Mon Apr 21 18:10:14 2008 -0500
31462
31463     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
31464
31465     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
31466     proven problematic getting right from the start at least on 83xx and
31467     4xx.
31468
31469     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31470
31471 commit a99715b8ebfc500f3f40e01b36b64d473938443d
31472 Author: Detlev Zundel <dzu@denx.de>
31473 Date:   Fri Apr 18 14:50:01 2008 +0200
31474
31475     Realining some header definitions.
31476
31477     Signed-off-by: Detlev Zundel <dzu@denx.de>
31478
31479 commit 4acbc6c7f993cae409c424615415a3e76820f13d
31480 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31481 Date:   Thu Apr 24 07:57:16 2008 +0200
31482
31483     NE2000: coding style cleanup
31484
31485     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31486
31487 commit b4aff1ffaf7120032c653357c007faa14f74d29d
31488 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31489 Date:   Wed Apr 23 00:11:47 2008 +0900
31490
31491     qemu-mips.h: Add CFI support
31492
31493     CONFIG_ENV_OVERWRITE is also added.
31494
31495     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
31496
31497     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31498     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31499
31500 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
31501 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31502 Date:   Tue Apr 22 22:47:27 2008 +0900
31503
31504     doc/README.mips: Add MIPS notes
31505
31506     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31507
31508 commit 215b01bba8bc662d35f72b084700b192d367dfb4
31509 Author: Bartlomiej Sieka <tur@semihalf.com>
31510 Date:   Tue Apr 22 12:27:56 2008 +0200
31511
31512     Add support for calculating hashes with watchdog triggering
31513
31514     Implement watchodg-aware variants of hash calculation functions:
31515     - crc32_wd()
31516     - md5_wd()
31517     - sha1_csum_wd()
31518     The above functions calculate the hash of the input buffer in chunks,
31519     triggering the watchdog after processing each chunk. The chunk size
31520     is given as a function call parameter.
31521
31522     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31523
31524 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
31525 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31526 Date:   Wed Apr 23 11:02:12 2008 +0900
31527
31528     qemu-mips: Cleanup whitespace, indentation, etc.
31529
31530     No functional change.
31531
31532     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
31533     Then I re-created from scratch, and changed more lines than the original.
31534
31535     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31536     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31537
31538 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
31539 Author: Vlad Lungu <vlad@comsys.ro>
31540 Date:   Wed Oct 10 23:02:09 2007 +0300
31541
31542     Fixed pcnet io_base
31543
31544     Bus and phys address are not always the same
31545
31546     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
31547
31548 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
31549 Author: Wolfgang Denk <wd@denx.de>
31550 Date:   Thu Apr 24 23:44:26 2008 +0200
31551
31552     drivers/net/pcnet.c: Coding Style cleanup.
31553
31554     Signed-off-by: Wolfgang Denk <wd@denx.de>
31555
31556 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
31557 Author: Vlad Lungu <vlad@comsys.ro>
31558 Date:   Wed Oct 10 23:04:23 2007 +0300
31559
31560     Added Am79C970A chip id to pcnet
31561
31562     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
31563
31564 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
31565 Author: Magnus Lilja <lilja.magnus@gmail.com>
31566 Date:   Sun Apr 20 10:35:03 2008 +0200
31567
31568     i.MX31: Fix architecture numbers for ADS and Litekit boards
31569
31570     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
31571
31572     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
31573
31574 commit e7ae84d6c7288790e88639f57cb60daf89c11369
31575 Author: Magnus Lilja <lilja.magnus@gmail.com>
31576 Date:   Sun Apr 20 10:36:36 2008 +0200
31577
31578     i.MX31: Use symbolic names for Litekit membases.
31579
31580     Use symbolic names instead of hard coded addresses for Litekit membases.
31581
31582     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
31583
31584 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
31585 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31586 Date:   Sat Apr 19 17:59:20 2008 +0200
31587
31588     Fix show_boot_progress prototype
31589
31590     in commit fad634071 "make show_boot_progress () weak."
31591     show_boot_progress is supposed to be declared as weak but declared as
31592     inline instead.
31593
31594     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31595
31596 commit edbed247a14d70b94958010f736621212285de91
31597 Author: Bartlomiej Sieka <tur@semihalf.com>
31598 Date:   Fri Apr 18 12:39:23 2008 +0200
31599
31600     Memory footprint optimizations
31601
31602     As suggested by Wolfgang Denk:
31603     - image printing functions:
31604       - remove wrappers
31605       - remove indentation prefix from functions' signatures
31606     - merge getenv_verify and getenv_autostart into one parametrized function
31607
31608     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31609
31610 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
31611 Author: Guennadi Liakhovetski <lg@denx.de>
31612 Date:   Tue Apr 15 13:33:11 2008 +0200
31613
31614     MX31ADS environment variable update, spi and rtc support
31615
31616     Update MX31ADS default environment to better match the flash layout and
31617     the memory map, support SPI and RTC.
31618
31619     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31620
31621 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
31622 Author: Kumar Gala <galak@kernel.crashing.org>
31623 Date:   Mon Apr 21 09:28:36 2008 -0500
31624
31625     85xx: Round up frequency calculations to get reasonable output
31626
31627     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
31628
31629     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
31630
31631     Signed-off-by: Dejan Minic <minic@freescale.com>
31632     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
31633     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31634     Acked-by: Andy Fleming <afleming@freescale.com>
31635
31636 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
31637 Author: Kumar Gala <galak@kernel.crashing.org>
31638 Date:   Wed Apr 23 16:58:04 2008 -0500
31639
31640     fsl_pci: Only modify registers if we have them
31641
31642     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
31643
31644     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31645
31646 commit 83fe32334337def160b302aa9d152d808bfcc68e
31647 Author: Markus Klotzbücher <mk@denx.de>
31648 Date:   Wed Apr 23 10:57:33 2008 +0200
31649
31650     USB: remove a cpu bug workaround for an unsupported architecture.
31651
31652     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
31653
31654 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
31655 Author: Markus Klotzbücher <mk@denx.de>
31656 Date:   Wed Apr 23 10:53:23 2008 +0200
31657
31658     USB: fix those pesky aliasing warnings issued by gcc-4.2
31659
31660     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
31661     Signed-off-by: Detlev Zundel <dzu@denx.de>
31662
31663 commit 89cdab788f3716b335fefb60b836ebcf975aceab
31664 Author: Mike Frysinger <vapier@gentoo.org>
31665 Date:   Mon Mar 31 11:02:01 2008 -0400
31666
31667     crc32: use uint32_t rather than unsigned long
31668
31669     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
31670     this is done with the build toolchain instead of the target tool
31671     chain, so if the build is a 64bit system but the target is 32bits,
31672     the size will obviously be wrong. This converts all unsigned long
31673     stuff related to crc32 to uint32_t types. Compile tested only: output
31674     of ./tools/envcrc when run on a 32bit build system matches that of a
31675     64bit build system.
31676
31677     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31678     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31679
31680 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
31681 Author: Dirk Behme <dirk.behme@googlemail.com>
31682 Date:   Wed Mar 26 09:53:29 2008 +0100
31683
31684     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
31685
31686     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
31687
31688     Changes:
31689
31690     - Remove *_masked() functions as noted by Wolfgang
31691
31692     - Adapt register naming to recent TI spec (sprue26, March 2007)
31693
31694     - Fix reset_timer() handling
31695
31696     - 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.
31697
31698     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
31699
31700     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
31701
31702     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
31703
31704     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
31705
31706     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
31707     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
31708
31709 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
31710 Author: Sergei Poselenov <sposelenov@emcraft.com>
31711 Date:   Wed Apr 9 16:09:41 2008 +0200
31712
31713     Added watchdog triggering calls in the "mtest" test function.
31714
31715     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
31716
31717 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
31718 Author: Yuri Tikhonov <yur@emcraft.com>
31719 Date:   Sun Apr 6 19:19:14 2008 +0200
31720
31721     lwmon5 watchdog: limit trigger rate
31722
31723     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
31724     the CONFIG_WD_MAX_RATE value.
31725
31726     Note that an earlier version of this patch which used microseconds
31727     instead of ticks dis not work. The problem was that we used
31728     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
31729     get_tbclk(), which in turn calls get_sys_info(). It turns out that
31730     this function does a lot of prolonged operations (like divisions)
31731     which take too much time so we do not trigger the watchdog in time,
31732     and it resets the system.
31733
31734     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31735
31736 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
31737 Author: Yuri Tikhonov <yur@emcraft.com>
31738 Date:   Mon Mar 31 10:51:37 2008 +0200
31739
31740     POST: move CONFIG_POST to Makefiles
31741
31742     Introduce the new logical option CONFIG_HAS_POST which is set when the
31743     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
31744     to determine should the POST libs be compiled for the selected target
31745     platform, or not.
31746
31747     To avoid breaking u-boot linking process, the empty post/libpost.a file is
31748     created for platforms which do not have POSTs.
31749
31750     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31751     Signed-off-by: Wolfgang Denk <wd@denx.de>
31752
31753 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
31754 Author: Yuri Tikhonov <yur@emcraft.com>
31755 Date:   Mon Mar 31 10:49:34 2008 +0200
31756
31757     POST: preparations for moving CONFIG_POST to Makefiles
31758
31759     Remove CONFIG_POST ifdefs from the post/ source files.
31760
31761     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31762     Signed-off-by: Wolfgang Denk <wd@denx.de>
31763
31764 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
31765 Author: Stefan Roese <sr@denx.de>
31766 Date:   Tue Apr 22 14:14:20 2008 +0200
31767
31768     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
31769
31770     This patch fixes the Canyonlands and Glacier default environment to better
31771     fit to the arch/powerpc device-tree kernels. The variables dealing with
31772     arch/ppc booting are removed, since these boards are supported only in
31773     arch/powerpc. Glacier uses the same config file as Canyonlands.
31774
31775     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
31776
31777     Signed-off-by: Stefan Roese <sr@denx.de>
31778
31779 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
31780 Author: Stefan Roese <sr@denx.de>
31781 Date:   Tue Apr 22 14:06:42 2008 +0200
31782
31783     ppc4xx: Small coding style cleanup for the latest esd patches
31784
31785     Signed-off-by: Stefan Roese <sr@denx.de>
31786
31787 commit 79941d63bc03aed8c48d7602f18217cc200ee931
31788 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31789 Date:   Mon Apr 21 18:01:07 2008 +0200
31790
31791     ppc4xx: Update CPU strapping for PMC440 boards
31792
31793     This patch removes the temporary 'test' strapping option
31794     of the sbe command. The '667' strapping option now uses
31795     a PLB/PCI divider of 3.
31796
31797     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31798
31799 commit f00cf3193a6635355b121e90debb2f54e777e7da
31800 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31801 Date:   Mon Apr 21 14:42:21 2008 +0200
31802
31803     ppc4xx: Remove unused APC405 strataflash driver
31804
31805     The APC405 board support has been migrated to use the common
31806     CFI flash driver.
31807
31808     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31809
31810 commit 1c686676a86473bbd92151f0544e109413f6ed06
31811 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31812 Date:   Mon Apr 21 14:42:17 2008 +0200
31813
31814     ppc4xx: Update APC405 configuration
31815
31816     - enable esd's auto_update mechanism
31817     - support alternative flash layout on rev. 1.8 boards
31818     - update default environment
31819     - use common CFI flash driver
31820     - coding style cleanup
31821
31822     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31823
31824 commit 0b9872515a521bf7866dc24b85ddce708e60d702
31825 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31826 Date:   Mon Apr 21 14:42:11 2008 +0200
31827
31828     ppc4xx: Update APC405 board support
31829
31830     - enable esd's auto_update mechanism
31831     - fix LCD support on latest hardware revision (uses other LCD controller)
31832     - support alternative flash layout on rev. 1.8 boards
31833     - coding style cleanup
31834
31835     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31836
31837 commit 83975d02e225e231960784972e7820a8b303756b
31838 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31839 Date:   Mon Apr 21 14:42:06 2008 +0200
31840
31841     ppc4xx: update esd's common auto_update code for 405 boards
31842
31843     - Coding style cleanup (long lines)
31844     - improve handling of protected flash regions
31845     - remove dead code
31846
31847     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31848
31849 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
31850 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31851 Date:   Mon Apr 21 14:41:59 2008 +0200
31852
31853     ppc4xx: Update esd's common LCD code for 405 boards
31854
31855     - Coding style cleanup (long lines)
31856     - Add s1d13505 support
31857     - Make some functions return a result code instead of void
31858
31859     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31860
31861 commit dea68189424c3f1242427a8146a3861bf093173c
31862 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31863 Date:   Mon Apr 21 11:36:55 2008 +0200
31864
31865     ppc4xx: Update FPGA image for APC405 boards
31866
31867     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31868
31869 commit 2a05b152924acfcec3b037693329e517e6d3578f
31870 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31871 Date:   Mon Apr 21 11:36:08 2008 +0200
31872
31873     ppc4xx: Update bootlogo for APC405 boards
31874
31875     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31876
31877 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
31878 Author: Stefan Roese <sr@denx.de>
31879 Date:   Fri Apr 18 16:41:31 2008 +0200
31880
31881     ppc4xx: Add dcache_enable() for 440
31882
31883     dcache_enable() was missing for 440 and the patch
31884     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
31885     "] behavior uses this function.
31886
31887     Note: Currently the cache handling functions like
31888     d/icache_disable/enable() are NOP's on 440. This may be changed in the
31889     future.
31890
31891     Signed-off-by: Stefan Roese <sr@denx.de>
31892
31893 commit a49e0d177a0749614b316ec847fb623f09c82c07
31894 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31895 Date:   Mon Apr 21 11:19:04 2008 +0200
31896
31897     video: Add missing free for logo memory
31898
31899     This patch adds two missing free()s.
31900
31901     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31902
31903 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
31904 Author: Troy Kisky <troy.kisky@boundarydevices.com>
31905 Date:   Mon Sep 24 16:41:43 2007 -0700
31906
31907     PATCH - Fix oob data copied into supplied buffer
31908
31909     This patch correctly sets the oobavail variable
31910     and fixes a bug where the oob data was not valid when
31911     there where multiple groups in oobfree.
31912
31913     First segment fixes a typo
31914     Second segment fixes a bug where oob data may be copied incorrectly.
31915     Third segment adds an error message when exiting due to write protect.
31916     Forth segment fixes a bug where oobavail may be set incorrectly.
31917
31918     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
31919
31920 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
31921 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31922 Date:   Fri Apr 18 17:24:32 2008 +0200
31923
31924     ppc4xx: Fix sys_get_info() for 405GP(r)
31925
31926     This patch assigns the correct EBC clock for 405GP(r) CPUs
31927     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
31928     uses an uninitialized EBC clock in its startup message.
31929
31930     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31931
31932 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
31933 Author: Wolfgang Denk <wd@denx.de>
31934 Date:   Sun Apr 20 15:39:38 2008 -0700
31935
31936     Makefile: remove nand_spl/System.map when cleaning up.
31937
31938 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
31939 Author: Wolfgang Denk <wd@denx.de>
31940 Date:   Sun Apr 20 15:35:52 2008 -0700
31941
31942     MAKEALL: sort entries / lists.
31943
31944     Signed-off-by: Wolfgang Denk <wd@denx.de>
31945
31946 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
31947 Author: Kumar Gala <galak@kernel.crashing.org>
31948 Date:   Fri Apr 18 11:29:01 2008 -0500
31949
31950     85xx: Fix size of cpu-release-addr property
31951
31952     The cpu-release-addr is defined as always being a 64-bit quanity regardless
31953     if we are running on a 32-bit or 64-bit machine.
31954
31955 commit 88353a985109562a639b2f8a0c90d77011bfe374
31956 Author: Timur Tabi <timur@freescale.com>
31957 Date:   Fri Apr 4 11:15:58 2008 -0500
31958
31959     Fix calculation of I2C clock for some 85xx chips
31960
31961     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
31962     some use CCB/3.  There is no pattern that can be used to determine which
31963     chips use which frequency, so the only way to determine is to look up the
31964     actual SOC designation and use the right value for that SOC.
31965
31966     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
31967
31968     Signed-off-by: Timur Tabi <timur@freescale.com>
31969
31970 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
31971 Author: Wolfgang Denk <wd@denx.de>
31972 Date:   Fri Apr 18 11:44:27 2008 -0700
31973
31974     Fix build breakage casued by commit c0559be371b2
31975
31976         Change env_get_char from a global function ptr to a function.
31977
31978     Signed-off-by: Wolfgang Denk <wd@denx.de>
31979
31980 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
31981 Author: Wolfgang Denk <wd@denx.de>
31982 Date:   Fri Apr 18 10:53:41 2008 -0700
31983
31984     Coding Style cleanup, update CHANGELOG.
31985
31986     Signed-off-by: Wolfgang Denk <wd@denx.de>
31987
31988 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
31989 Author: Mike Frysinger <vapier@gentoo.org>
31990 Date:   Tue Apr 8 14:00:57 2008 -0400
31991
31992     Add support for u-boot in svn and localversion-* files
31993
31994     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31995
31996 commit d23ff6827decf121461fbc5622612fd7effe207e
31997 Author: Guennadi Liakhovetski <lg@denx.de>
31998 Date:   Thu Apr 3 17:04:22 2008 +0200
31999
32000     MX31ADS network and flash updates
32001
32002     This patch allows U-Boot to use buffered writes to the Spansion NOR
32003     flash installed on this board, and eliminates long delays in network
32004     transfers after the board startup.
32005
32006     Also modify flash layout to embed main and redundant environment
32007     blocks in the U-Boot image.
32008
32009     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32010
32011 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
32012 Author: Guennadi Liakhovetski <lg@denx.de>
32013 Date:   Mon Apr 14 10:53:12 2008 +0200
32014
32015     Support for the MX31ADS evaluation board from Freescale
32016
32017     This patch adds support for the MX31ADS evaluation board from Freescale,
32018     initialization code is copied from RedBoot sources, also provided by
32019     Freescale.
32020
32021     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32022
32023 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
32024 Author: Stefan Roese <sr@denx.de>
32025 Date:   Tue Apr 8 10:33:29 2008 +0200
32026
32027     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
32028
32029     Signed-off-by: Stefan Roese <sr@denx.de>
32030
32031 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
32032 Author: Stefan Roese <sr@denx.de>
32033 Date:   Tue Apr 8 10:33:28 2008 +0200
32034
32035     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
32036
32037     Signed-off-by: Stefan Roese <sr@denx.de>
32038
32039 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
32040 Author: Stefan Roese <sr@denx.de>
32041 Date:   Tue Apr 8 10:33:27 2008 +0200
32042
32043     ppc4xx: Add Glacier NAND booting target
32044
32045     Signed-off-by: Stefan Roese <sr@denx.de>
32046
32047 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
32048 Author: Stefan Roese <sr@denx.de>
32049 Date:   Tue Apr 8 10:31:00 2008 +0200
32050
32051     nand_spl: Update nand_spl to support 2k page size NAND devices
32052
32053     This patch adds support for booting from 2k page sized NAND device
32054     (e.g. Micron 29F2G08AAC).
32055
32056     Tested on AMCC Canyonlands.
32057
32058     Signed-off-by: Stefan Roese <sr@denx.de>
32059
32060 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
32061 Author: Anatolij Gustschin <agust@denx.de>
32062 Date:   Thu Apr 17 18:18:00 2008 +0200
32063
32064     Fix crash on sequoia in ppc_4xx_eth_init
32065
32066     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
32067     with cache enabled (TLB Parity exeption). This patch
32068     fixes the problem.
32069
32070     Signed-off-by: Anatolij Gustschin <agust@denx.de>
32071
32072 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
32073 Author: Anatolij Gustschin <agust@denx.de>
32074 Date:   Thu Apr 17 18:15:27 2008 +0200
32075
32076     ppc4xx: Fix crash on sequoia with cache enabled
32077
32078     Currently U-Boot crashes on sequoia board in CPU POST if
32079     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
32080     won't be disabled by change_tlb before CPU POST because
32081     there is an insufficient adress range check since
32082     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
32083     this problem.
32084
32085     Signed-off-by: Anatolij Gustschin <agust@denx.de>
32086
32087 commit 43c509254fab375c49936498da944658117ed07c
32088 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32089 Date:   Thu Apr 17 23:35:13 2008 +0900
32090
32091     Use jr as register jump instruction
32092
32093     Current assembler codes are inconsistent in the way of register jump
32094     instruction usage; some use jr, some use j. Of course GNU as allows both
32095     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
32096     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
32097     at all.
32098
32099     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32100
32101 commit 7ce63709828d37b08866e537339a169bd0db2bd3
32102 Author: Guennadi Liakhovetski <lg@denx.de>
32103 Date:   Tue Apr 15 14:15:30 2008 +0200
32104
32105     RTC driver for MC13783
32106
32107     MC13783 is a multifunction IS with an SPI interface to the host. This
32108     driver handles the RTC controller in this chip.
32109
32110     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32111
32112 commit 38254f45b0b412332726c90d3184ad47479fcffb
32113 Author: Guennadi Liakhovetski <lg@denx.de>
32114 Date:   Tue Apr 15 14:14:25 2008 +0200
32115
32116     New i.MX31 SPI driver
32117
32118     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
32119     only implemented and tested on i.MX31, can with a modified register layout
32120     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
32121     controllers too.
32122
32123     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32124
32125 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
32126 Author: Magnus Lilja <lilja.magnus@gmail.com>
32127 Date:   Tue Apr 15 19:09:10 2008 +0200
32128
32129     Fix name of i.MX31 boards in config file header
32130
32131     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
32132
32133     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
32134
32135 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
32136 Author: Mike Frysinger <vapier@gentoo.org>
32137 Date:   Sun Apr 13 19:42:19 2008 -0400
32138
32139     allow ports to override go behavior
32140
32141     Split the arch-specific logic out of the common go code and into a dedicated
32142     weak function called do_go_exec() that lives in cpu directories.  This will
32143     need review from i386/nios people to make sure I didn't break them.
32144
32145 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
32146 Author: Mike Frysinger <vapier@gentoo.org>
32147 Date:   Sun Apr 13 19:42:18 2008 -0400
32148
32149     allow ports to override bootelf behavior
32150
32151     Change the bootelf setup function into a dedicated weak function called
32152     do_bootelf_exec.  This way ports can control the behavior however they
32153     like before/after calling the ELF entry point.
32154
32155 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
32156 Author: Ulf Samuelsson <ulf@atmel.com>
32157 Date:   Sat Apr 12 20:56:03 2008 +0200
32158
32159     Reorder ARM boards in Makefile
32160
32161     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
32162     are no longer under ARM92xT header.
32163
32164     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
32165     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32166
32167 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
32168 Author: Ulf Samuelsson <ulf@atmel.com>
32169 Date:   Sat Apr 12 20:29:44 2008 +0200
32170
32171     Clean up dataflash partitioning
32172
32173     This patch removes the board dependent parts from
32174     "drivers/mtd/dataflash.c".
32175     Each board relying on this, will have the appropriate
32176     code in a new file, "partition.c" in the board directory.
32177     board Makefiles updated to use the file.
32178
32179     The dataflash partitions are aligned on sector/page boundaries.
32180
32181     The CONFIG_NEW_DF_PARTITION was used to create named partitions
32182     This is now the default operation, and the CONFIG variable is removed.
32183
32184     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
32185
32186 commit 51ecde946fec511a16346e498204ca10ad71080d
32187 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32188 Date:   Sat Apr 12 14:08:45 2008 +0200
32189
32190     gitignore: udpate stgit generated and .patch file
32191
32192     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32193
32194 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
32195 Author: Wolfgang Denk <wd@denx.de>
32196 Date:   Fri Apr 18 00:15:36 2008 -0700
32197
32198     Get rid of redundant copy of renamed header file.
32199
32200     Signed-off-by: Wolfgang Denk <wd@denx.de>
32201
32202 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
32203 Author: Vlad Lungu <vlad@comsys.ro>
32204 Date:   Fri Apr 11 21:20:14 2008 +0300
32205
32206     Fix dependency generation for older gcc versions
32207
32208      With gcc 3.3.3 at least, compilation fails with
32209
32210     Generating include/autoconf.mk
32211     gcc: compilation of header file requested
32212     make: *** [include/autoconf.mk] Error 1
32213
32214     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
32215
32216     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
32217
32218 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
32219 Author: Marian Balakowicz <m8@semihalf.com>
32220 Date:   Fri Apr 11 11:07:49 2008 +0200
32221
32222     Restore the ability to continue booting after legacy image overwrite
32223
32224     Before new uImage code was merged, bootm code allowed for the kernel image to
32225     get overwritten during decompresion. new uImage introduced a check for image
32226     overwrites and refused to boot the image that got overwritten. This patch
32227     restores the old behavior. It also adds a warning when the image overwriten is
32228     a multi-image file, because in such case accessing componentes other than the
32229     first one will fail.
32230
32231     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32232
32233 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
32234 Author: Marian Balakowicz <m8@semihalf.com>
32235 Date:   Fri Apr 11 11:07:43 2008 +0200
32236
32237     ppc: Fix ftd_blob variable init when processing raw blob
32238
32239     Set fdt_blob variable before its value is printed out.
32240
32241     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32242
32243 commit 3d36be030043cd841a2551d00a395135e363a64b
32244 Author: Jason Wessel <jason.wessel@windriver.com>
32245 Date:   Thu Apr 10 14:30:16 2008 -0500
32246
32247     Remove all the search paths from the .lds files.
32248
32249     The cross compiler is responsible for providing the correct libraries
32250     and the logic to find the linking libraries.
32251
32252     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
32253
32254 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
32255 Author: Bartlomiej Sieka <tur@semihalf.com>
32256 Date:   Mon Apr 14 15:44:16 2008 +0200
32257
32258     Boot-related documentation update
32259
32260     - document 'bootm_low' and 'bootm_size' environment variables
32261     - update inaccurate CFG_BOOTMAPSZ entry
32262
32263     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
32264
32265 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
32266 Author: Guennadi Liakhovetski <lg@denx.de>
32267 Date:   Wed Apr 9 17:34:08 2008 +0200
32268
32269     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
32270
32271     Restore logic reverted by commit
32272
32273     commit 80767a6cead9990d9e77e62be947843c2c72f469
32274     Author: Peter Pearse <peter.pearse@arm.com>
32275     Date:   Wed Sep 5 16:04:41 2007 +0100
32276
32277         Changed API name to coloured_led.h
32278         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
32279         Tidied other cpu/arm920t/start.S code
32280
32281     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32282
32283 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
32284 Author: Mike Frysinger <vapier@gentoo.org>
32285 Date:   Tue Apr 8 10:24:24 2008 -0400
32286
32287     Remove conflicting NAND ID
32288
32289     There are two NAND entries with ID 0xDC and this obviously causes problems.
32290     In the kernel, they punted the first entry, so we should do the same.
32291
32292     See this upstream e-mail for more info:
32293     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
32294
32295     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
32296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32297
32298 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
32299 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32300 Date:   Tue Apr 8 16:20:35 2008 +0900
32301
32302     cpu/mips/cpu.c: Fix flush_cache bug
32303
32304     Cache operations have to take line address (addr), not start_addr.
32305     I noticed this bug when debugging ping failure.
32306
32307     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32308
32309 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
32310 Author: Martin Krause <martin.krause@tqs.de>
32311 Date:   Thu Apr 3 14:29:01 2008 +0200
32312
32313     TQM5200: fix default IDE reset level
32314
32315     Before the first call of ide_reset(), the level of the IDE reset
32316     signal on the TQM5200 is low (reset asserted). This patch sets the
32317     default value to high (reset not asserted).
32318
32319     Currently this patch fixes no real problem, but it is cleaner to
32320     assert the reset signal only on demand, and not permanently.
32321
32322     Signed-off-by: Martin Krause <martin.krause@tqs.de>
32323
32324 commit c61e033d6e8abb7b4060ee36060961e1399f6079
32325 Author: Detlev Zundel <dzu@denx.de>
32326 Date:   Thu Apr 3 14:18:48 2008 +0200
32327
32328     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
32329
32330     Signed-off-by: Detlev Zundel <dzu@denx.de>
32331
32332 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
32333 Author: Detlev Zundel <dzu@denx.de>
32334 Date:   Thu Apr 3 14:18:47 2008 +0200
32335
32336     mgcoge, mgsuv: rename 'addcon' to 'addcons'
32337
32338     The latter name with 13 users is already established, so we will use
32339     that.
32340
32341     Signed-off-by: Detlev Zundel <dzu@denx.de>
32342
32343 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
32344 Author: Martin Krause <martin.krause@tqs.de>
32345 Date:   Thu Apr 3 13:37:56 2008 +0200
32346
32347     IDE: fix bug in reset sequence
32348
32349     According to the ata (ata5) specification the RESET- signal
32350     shall be asserted for at least 25 us. Without this patch,
32351     the RESET- signal is asserted on some boards for only < 1 us
32352     (e. g. on the TQM5200). This patch adds a general delay of
32353     25 us to the RESET- signal.
32354
32355     Without this patch a Platinum 4 GiB CF card is not recognised
32356     properly on boards with a TQM5200 (STK52xx, TB5200).
32357
32358     Signed-off-by: Martin Krause <martin.krause@tqs.de>
32359
32360 commit 813bea96a960916c72b4a3a7df840151529c26ce
32361 Author: Sascha Laue <Sascha.Laue@gmx.biz>
32362 Date:   Thu Apr 3 14:43:11 2008 +0200
32363
32364     lwmon5: disable CONFIG_ZERO_BOOTDELAY
32365
32366     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
32367
32368 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
32369 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32370 Date:   Wed Apr 2 08:03:58 2008 +0200
32371
32372     ds174x: Fix warning on return in rtc_get and rtc_set functions
32373
32374     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32375
32376 commit a253b38bf50c85227c33ca0febc870ee49d1588e
32377 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32378 Date:   Wed Apr 2 08:03:57 2008 +0200
32379
32380     cmd_log.c: Fix assignment differ in signedness
32381
32382     In function 'logbuff_init_ptrs':
32383     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
32384
32385     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32386
32387 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
32388 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
32389 Date:   Wed Apr 2 11:04:43 2008 +0530
32390
32391     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
32392
32393     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
32394
32395 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
32396 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32397 Date:   Tue Apr 1 14:07:10 2008 +0200
32398
32399     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
32400
32401     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32402
32403 commit c08fb3ea36d19b1640b7906264581e9105534399
32404 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32405 Date:   Tue Apr 15 10:24:14 2008 +0200
32406
32407     Additional PCI IDs for IDE and network controllers
32408
32409     These PCI IDs are required by the Linkstation platforms.
32410
32411     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32412
32413 commit c0559be371b2a64b1a817088c3308688e2182f93
32414 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
32415 Date:   Mon Apr 14 23:01:50 2008 +0200
32416
32417     Change env_get_char from a global function ptr to a function.
32418
32419     This avoids an early global data reference.
32420
32421     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
32422
32423 commit 3e0f331c05d72f140715c1e9fca991927e44d422
32424 Author: Guennadi Liakhovetski <lg@denx.de>
32425 Date:   Tue Apr 29 12:35:08 2008 +0000
32426
32427     Clean up smsc911x driver
32428
32429     Replace direct register address derefencing with accessor functions.
32430     Restrict explicitly 32-bit bus-width, extend affected configurations
32431     respectively.
32432
32433     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32434     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32435
32436 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
32437 Author: Sascha Hauer <s.hauer@pengutronix.de>
32438 Date:   Tue Apr 15 00:08:20 2008 -0400
32439
32440     This patch adds a driver for the following smsc network controllers:
32441     LAN9115
32442     LAN9116
32443     LAN9117
32444     LAN9215
32445     LAN9216
32446     LAN9217
32447
32448     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32449     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
32450     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32451
32452 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
32453 Author: Sascha Laue <Sascha.Laue@gmx.biz>
32454 Date:   Tue Apr 1 15:13:03 2008 +0200
32455
32456     Fix watchdog POST for lwmon5
32457
32458     If the hardware watchdog detects a voltage error, the watchdog sets
32459     GPIO62 to low. The watchdog POST has to detect this low level.
32460
32461     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
32462
32463 commit 24b448448a917e52806f82660a5c9d47608894fb
32464 Author: Dave Liu <r63238@freescale.com>
32465 Date:   Tue Apr 1 15:22:11 2008 +0800
32466
32467     ata: update the libata.h from ata.h of linux kernel
32468
32469     Current libata.h of u-boot is out of sync from linux kernel,
32470     this patch make it be consistent with linux kernel.
32471
32472     Signed-off-by: Dave Liu <daveliu@freescale.com>
32473     Signed-off-by: Tor Krill <tor@excito.com>
32474
32475 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
32476 Author: Kumar Gala <galak@kernel.crashing.org>
32477 Date:   Mon Mar 31 11:59:27 2008 -0500
32478
32479     Allow use of ARCH=powerpc when building
32480
32481     The linux kernel is now mostly ARCH=powerpc, so to make life easier
32482     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
32483
32484     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32485
32486 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
32487 Author: Kyungmin Park <kmpark@infradead.org>
32488 Date:   Mon Mar 31 10:40:54 2008 +0900
32489
32490     Add apollon board MAINTAINERS entry
32491
32492     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
32493
32494 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
32495 Author: Kyungmin Park <kmpark@infradead.org>
32496 Date:   Mon Mar 31 10:40:36 2008 +0900
32497
32498     Fix OneNAND read
32499
32500     It should access with 16-bit instead of 8-bit
32501
32502     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
32503
32504     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
32505
32506 commit a9da2b41079d230db3a5641625311983f85ce1fb
32507 Author: Kyungmin Park <kmpark@infradead.org>
32508 Date:   Mon Mar 31 10:40:19 2008 +0900
32509
32510     Fix OneNAND erase command
32511
32512     It mis-calculates the block address.
32513     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
32514
32515     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
32516
32517 commit 61525f2ffa156665a66908fda47dbf29d65ea579
32518 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32519 Date:   Mon Mar 31 01:32:15 2008 +0200
32520
32521     Support for LinkStation / KuroBox HD and HG PPC models
32522
32523     This patch is based on the port by Mihai Georgian (see linkstation.c for
32524     Copyright information) and implements support for LinkStation / KuroBox HD
32525     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
32526     the moment, pending network driver fixing.
32527
32528     Notice to users: this is pretty much a barebone port. Support for network
32529     on HG models is already in the U-Boot mainline, but you might also want
32530     patches to switch fan / phy modes depending on the negotiated ethernet
32531     parameters. This patch also doesn't support console switching, booting EM
32532     mode, Buffalo specific ext2 magic number. So, if you want to use any of
32533     those, you need additional patches. Otherwise this patche provides a fully
32534     functional u-boot with a network console on your system.
32535
32536     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32537
32538 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
32539 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32540 Date:   Sun Mar 30 01:22:13 2008 -0500
32541
32542     Add CONFIG_MII_INIT support to related boards
32543
32544     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
32545     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
32546     that use mii_init() in cmd_init.c.
32547
32548     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32549     Acked-by: Ben Warren <biggerbadderben@gmail.com>
32550
32551 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
32552 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32553 Date:   Sun Mar 30 01:19:06 2008 -0500
32554
32555     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
32556
32557     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
32558     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
32559
32560     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32561
32562 commit e99ccb488181d012248c6be30b2093e950319fc5
32563 Author: Kumar Gala <galak@kernel.crashing.org>
32564 Date:   Thu Mar 27 11:46:38 2008 -0500
32565
32566     Introduce phys_size_t and move phys_addr_t into asm/types.h
32567
32568     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
32569     that have larger physical addresses like 44x, 85xx, and 86xx.
32570
32571     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32572
32573 commit 20a14a42a25f72e379f38460b8a8484667536795
32574 Author: Andy Fleming <afleming@freescale.com>
32575 Date:   Wed Apr 2 16:19:07 2008 -0500
32576
32577     Rename include/md5.h to include/u-boot/md5.h
32578
32579     Some systems have md5.h installed in /usr/include/. This isn't the
32580     desired file (we want the one in include/md5.h). This will avoid the
32581     conflict. This fixes the host tools building problem by creating a new
32582     directory for U-Boot specific header files.
32583
32584     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
32585     Denk]
32586
32587     Signed-off-by: Wolfgang Denk <wd@denx.de>
32588     Signed-off-by: Andy Fleming <afleming@freescale.com>
32589     Acked-by: Timur Tabi <timur@freescale.com>
32590
32591 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
32592 Author: Dave Liu <r63238@freescale.com>
32593 Date:   Thu Mar 27 18:51:17 2008 +0800
32594
32595     drivers: code clean up
32596
32597     Signed-off-by: Dave Liu <daveliu@freescale.com>
32598
32599 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
32600 Author: Dave Liu <r63238@freescale.com>
32601 Date:   Thu Mar 27 18:50:41 2008 +0800
32602
32603     drivers: clean up the ata_piix.h
32604
32605     Signed-off-by: Dave Liu <daveliu@freescale.com>
32606
32607 commit e8f7ba404f1409606962815ecc955a06984b08b3
32608 Author: Dave Liu <r63238@freescale.com>
32609 Date:   Thu Mar 27 18:49:56 2008 +0800
32610
32611     doc: english polishing for README.sata
32612
32613     according to gvb's suggestion, polishing for the doc.
32614
32615     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
32616     Signed-off-by: Dave Liu <daveliu@freescale.com>
32617
32618 commit 3e3f766a5274d204780460e1879723b565296d34
32619 Author: Kumar Gala <galak@kernel.crashing.org>
32620 Date:   Wed Mar 26 18:53:28 2008 -0500
32621
32622     Fix warnings introduced by I2C bus speed setting patch
32623
32624     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32625
32626 commit 3c735e7437150e8615f26930c7819db85634276d
32627 Author: eran liberty <eran.liberty@gmail.com>
32628 Date:   Thu Mar 27 00:50:49 2008 +0100
32629
32630     Altera Stratix II support
32631
32632     Adds Support for Altera's Stratix II.
32633
32634     Within your board specific init file you will have to call
32635
32636     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
32637     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
32638
32639     Altera_desc* contines (for example):
32640         {
32641          Altera_StratixII,      /* part type */
32642          passive_serial,        /* interface type */
32643          1,                     /* bytes of data part can accept */
32644          (void *)(&funcs),      /* interface function table */
32645          0L,                    /* base interface address */
32646          0                      /* implementation specific cookie */
32647          }
32648
32649     funcs is the interface. It is of type altera_board_specific_func.
32650     It looks like this:
32651     altera_board_specific_func func = {
32652         pre_fn,
32653         config_fn,
32654         status_fn,
32655         done_fn,
32656         clk_fn,
32657         data_fn,
32658         abort_fn,
32659         post_fn,
32660     };
32661
32662     you will have to implement these functions, which is usually bit
32663     banging some gpio.
32664
32665     Signed-off-by: Eran Liberty <liberty@extricom.com>
32666
32667 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
32668 Author: Wolfgang Denk <wd@denx.de>
32669 Date:   Sun Apr 13 14:32:54 2008 -0700
32670
32671     Update CHANGELOG
32672
32673     Signed-off-by: Wolfgang Denk <wd@denx.de>
32674
32675 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
32676 Author: Sascha Hauer <s.hauer@pengutronix.de>
32677 Date:   Wed Mar 26 20:41:17 2008 +0100
32678
32679     Phytec Phycore-i.MX31 support
32680
32681     This patch adds support for the Phytec Phycore-i.MX31 board
32682
32683     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32684     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32685
32686 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
32687 Author: Sascha Hauer <s.hauer@pengutronix.de>
32688 Date:   Wed Mar 26 20:41:09 2008 +0100
32689
32690     mx31 litekit support
32691
32692     This patch adds support for the mx31 litekit board
32693
32694     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32695     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32696
32697 commit cdace0661208754a53019ea0dc7b803a040e0939
32698 Author: Sascha Hauer <s.hauer@pengutronix.de>
32699 Date:   Wed Mar 26 20:40:49 2008 +0100
32700
32701     add an i2c driver for mx31
32702
32703     This patch adds an i2c driver for Freescale i.MX processors
32704
32705     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32706     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32707
32708 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
32709 Author: Sascha Hauer <s.hauer@pengutronix.de>
32710 Date:   Wed Mar 26 20:40:42 2008 +0100
32711
32712     core support for Freescale mx31
32713
32714     This patch adds the core support for Freescale mx31
32715
32716     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32717     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32718
32719 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
32720 Author: Wolfgang Denk <wd@denx.de>
32721 Date:   Sun Apr 13 14:19:23 2008 -0700
32722
32723     Fix compile error
32724
32725     ...as suggested by Peter Pearse
32726
32727     Signed-off-by: Wolfgang Denk <wd@denx.de>
32728
32729 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
32730 Author: Sascha Hauer <s.hauer@pengutronix.de>
32731 Date:   Wed Mar 26 20:40:36 2008 +0100
32732
32733     Separate omap24xx specific code from arm1136
32734
32735     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
32736     to cpu/arm1136/omap24xx.
32737
32738     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32739     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32740
32741 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
32742 Author: Mike Frysinger <vapier@gentoo.org>
32743 Date:   Tue Jan 29 18:21:05 2008 -0500
32744
32745     disable caches before booting an app for Blackfin apps
32746
32747     It isn't generally save to execute applications outside of U-Boot with caches
32748     enabled due to the way the Blackfin processor handles caches (requires
32749     software assistance).  This patch disables caches before booting an ELF or
32750     just booting raw code.  The previous discussion on the patch was that we
32751     wanted to use weaks instead, but that proved to not be feasible when multiple
32752     symbols are involved, which puts us back at the ifdef solution.  I've
32753     minimized the ugliness by moving the setup step outside of the main function.
32754
32755     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32756
32757 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
32758 Author: Wolfgang Denk <wd@denx.de>
32759 Date:   Sun Apr 13 10:03:54 2008 -0700
32760
32761     ppc: Get rid of unused machine type definitions
32762
32763     Signed-off-by: Wolfgang Denk <wd@denx.de>
32764
32765 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
32766 Author: Wolfgang Denk <wd@denx.de>
32767 Date:   Sun Apr 13 09:59:26 2008 -0700
32768
32769     Coding Style cleanup; update CHANGELOG
32770
32771     Signed-off-by: Wolfgang Denk <wd@denx.de>
32772
32773 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
32774 Author: Larry Johnson <lrj@acm.org>
32775 Date:   Thu Feb 21 13:58:11 2008 -0500
32776
32777     LM73 bug fix for negative temperatures and cleanup
32778
32779     When the LM73 temperature sensor measures a temperature below 0 C, the
32780     current driver does not perform sign extension, so the result returned is
32781     512 C too high.  This patch fixes the problem, and does general cleanup
32782     of the code.
32783
32784     Signed-off-by: Larry Johnson <lrj@acm.org>
32785
32786 commit 96ef831f713289afba19da0c8f905e99da2b23e0
32787 Author: Guennadi Liakhovetski <lg@denx.de>
32788 Date:   Thu Apr 3 13:36:02 2008 +0200
32789
32790     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
32791
32792     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
32793     series require different addresses for buffered write commands. Define a
32794     configuration option to support buffered writes on those chips. A more
32795     elegant solution would be to automatically detect those chips by parsing
32796     their CFI records, but that would require introduction of a fixup table
32797     into the cfi_flash driver.
32798
32799     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32800
32801 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
32802 Author: Lee Nipper <lee.nipper@freescale.com>
32803 Date:   Thu Apr 10 09:35:06 2008 -0500
32804
32805     mpc83xx: Update DIMM data bus width test to support 40-bit width
32806
32807     32-bit wide ECC memory modules report 40-bit width.
32808     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
32809
32810     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
32811     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32812
32813 commit 5fb5a689d822ca61e814bd523fc930af335242fa
32814 Author: Dave Liu <r63238@freescale.com>
32815 Date:   Mon Mar 31 17:05:12 2008 +0800
32816
32817     mpc83xx: Fix the bug of serdes initialization
32818
32819     Currently the serdes will not be initializated due to the
32820     partid's error.
32821
32822     Signed-off-by: Dave Liu <daveliu@freescale.com>
32823     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32824
32825 commit 2000784818f043db7ca60e2846a72d097766b894
32826 Author: Dave Liu <r63238@freescale.com>
32827 Date:   Thu Apr 3 16:28:29 2008 +0800
32828
32829     mpc83xx: Fix the SATA clock setting of 837x targets
32830
32831     Currently the SATA controller clock is configured as CSB clock,
32832     usually the CSB clock is 400/333/266MHz.
32833
32834     However, The SATA IP block is only guaranteed to operate up to
32835     200 MHz as stated in the HW spec.
32836
32837     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
32838
32839     This patch makes the SATA clock as half of CSB clock.
32840
32841     Signed-off-by: Dave Liu <daveliu@freescale.com>
32842     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32843
32844 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
32845 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32846 Date:   Wed Apr 2 13:41:21 2008 +0200
32847
32848     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
32849
32850     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32851     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32852
32853 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
32854 Author: Kumar Gala <galak@kernel.crashing.org>
32855 Date:   Wed Apr 9 04:20:57 2008 -0500
32856
32857     85xx: Fix detection of MP cpu spin up
32858
32859     We were looking at the wrong memory offset to determine of a secondary
32860     cpu had been spun up or not.  Also added a warning message if the
32861     all the secondary cpus we expect don't spin up.
32862
32863     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32864
32865 commit f3e04bdc3f360c66801a9048956e61e41a16edba
32866 Author: Kumar Gala <galak@kernel.crashing.org>
32867 Date:   Tue Apr 8 10:45:50 2008 -0500
32868
32869     85xx: Use SVR_SOC_VER instead of SVR_VER
32870
32871     The recent change introduced by 'Update SVR numbers to expand support'
32872     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
32873     to compare against a particular processor id.
32874
32875     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32876
32877 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
32878 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
32879 Date:   Fri Apr 11 10:00:35 2008 -0400
32880
32881     ppc4xx: Fix power mgt definitions for PPC440
32882
32883     Corrected DCR addresses of PPC440EP power management registers.
32884
32885     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
32886
32887 commit 950a392464e616b4590bc4501be46e2d7d162dea
32888 Author: Wolfgang Denk <wd@denx.de>
32889 Date:   Fri Apr 11 15:11:26 2008 +0200
32890
32891     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
32892
32893     Reverting became necessary after it turned out that the patches in
32894     the u-boot-arm repo were modified, and in some cases corrupted.
32895
32896     This reverts the following commits:
32897
32898         066bebd6353e33af3adefc3404560871699e9961
32899         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
32900         c88ae20580b2b01487b4cdcc8b2a113f551aee36
32901         a147e56f03871bba4f05058d5e04ce7deb010b04
32902         d6674e0e2a6a1f033945f78838566210d3f28c95
32903         8c8463cce44d849e37744749b32d38e1dfb12e50
32904         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
32905         8bf69d81782619187933a605f1a95ee1d069478d
32906         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
32907         a574a73852a527779234e73e17e7597fd8128882
32908         1377b5583a48021d983e1fd565f7d40c89e84d63
32909         1704dc20917b4f71e373e2c888497ee666d40380
32910
32911     Signed-off-by: Wolfgang Denk <wd@denx.de>
32912
32913 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
32914 Author: Stefan Roese <sr@denx.de>
32915 Date:   Fri Apr 11 07:02:29 2008 +0200
32916
32917     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
32918
32919     This patch reworks the default environment on Kilauea/Haleakala. Now
32920     "net_nfs" for exmaple uses the device-tree style booting formerly know
32921     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
32922     new image booting support, which check for image overwriting. So the
32923     addresses needed togeet adjusted.
32924
32925     Signed-off-by: Stefan Roese <sr@denx.de>
32926
32927 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
32928 Author: Stefan Roese <sr@denx.de>
32929 Date:   Wed Apr 9 11:58:02 2008 +0200
32930
32931     ppc4xx: Fix Canyonlands default environment to work with new image support
32932
32933     Since the new image support checks for image overwriting, the default
32934     environment needs to get adjusted to use correct addresses.
32935
32936     Signed-off-by: Stefan Roese <sr@denx.de>
32937
32938 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
32939 Author: Stefan Roese <sr@denx.de>
32940 Date:   Wed Apr 9 11:54:11 2008 +0200
32941
32942     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
32943
32944     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
32945     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
32946     on 4xx systems _start currently cannot be used for this calculation.
32947     So revert back to the original version for now.
32948
32949     Signed-off-by: Stefan Roese <sr@denx.de>
32950
32951 commit f91374f65eae8b42cac329e06ba1c54728278efb
32952 Author: Michal Simek <monstr@monstr.eu>
32953 Date:   Fri Mar 28 12:49:52 2008 +0100
32954
32955     microblaze: Sort microblaze boards in MAKEALL script
32956
32957 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
32958 Author: Michal Simek <monstr@monstr.eu>
32959 Date:   Fri Mar 28 11:58:45 2008 +0100
32960
32961     microblaze: clean microblaze_config.mk
32962
32963     FLAGS are generated by U-BOOT generator.
32964     Board specific FLAGS are in board directory
32965
32966     Signed-off-by: Michal Simek <monstr@monstr.eu>
32967
32968 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
32969 Author: Michal Simek <monstr@monstr.eu>
32970 Date:   Fri Mar 28 12:47:19 2008 +0100
32971
32972     microblaze: xupv2p fix config file for supporting FDT
32973
32974 commit 188dc16b189143573b1ed90e584bf866d75cdd12
32975 Author: Michal Simek <monstr@monstr.eu>
32976 Date:   Fri Mar 28 11:53:02 2008 +0100
32977
32978     microblaze: ml401 fix config file for supporting FDT
32979
32980     Signed-off-by: Michal Simek <monstr@monstr.eu>
32981
32982 commit 4c6a6f02e239236261333759997eeaf86b30b54c
32983 Author: Michal Simek <monstr@monstr.eu>
32984 Date:   Fri Mar 28 11:22:48 2008 +0100
32985
32986     microblaze: ml401 - add ifdef for GPIO
32987
32988     Signed-off-by: Michal Simek <monstr@monstr.eu>
32989
32990 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
32991 Author: Michal Simek <monstr@monstr.eu>
32992 Date:   Fri Mar 28 12:13:03 2008 +0100
32993
32994     microblaze: clean uart16550 and uartlite handling
32995
32996     Signed-off-by: Michal Simek <monstr@monstr.eu>
32997
32998 commit 0b20f250877441460fb79d72192954abe8498834
32999 Author: Michal Simek <monstr@monstr.eu>
33000 Date:   Fri Mar 28 11:08:31 2008 +0100
33001
33002     microblaze: Add Emaclite driver to Makefile
33003
33004     Signed-off-by: Michal Simek <monstr@monstr.eu>
33005
33006 commit 868cde5310f88234b774878e4f06e79df10a88b3
33007 Author: Michal Simek <monstr@monstr.eu>
33008 Date:   Fri Mar 28 11:08:01 2008 +0100
33009
33010     microblaze: Add Emac driver to Makefile
33011
33012     Signed-off-by: Michal Simek <monstr@monstr.eu>
33013
33014 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
33015 Author: Michal Simek <monstr@monstr.eu>
33016 Date:   Fri Mar 28 12:42:29 2008 +0100
33017
33018     microblaze: add Emac ethernet driver
33019
33020 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
33021 Author: Michal Simek <monstr@monstr.eu>
33022 Date:   Fri Mar 28 12:41:56 2008 +0100
33023
33024     microblaze: add Emaclite ethernet driver
33025
33026 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
33027 Author: Michal Simek <monstr@monstr.eu>
33028 Date:   Fri Mar 28 11:04:01 2008 +0100
33029
33030     microblaze: ML401 and XUPV2P remove emac and emaclite reference
33031
33032     Signed-off-by: Michal Simek <monstr@monstr.eu>
33033
33034 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
33035 Author: Michal Simek <monstr@monstr.eu>
33036 Date:   Fri Mar 28 10:59:32 2008 +0100
33037
33038     microblaze: remove old setting for emac driver
33039
33040     Signed-off-by: Michal Simek <monstr@monstr.eu>
33041
33042 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
33043 Author: Michal Simek <monstr@monstr.eu>
33044 Date:   Fri Mar 28 10:58:15 2008 +0100
33045
33046     microblaze: Clean Makefile from ancient emac driver
33047
33048     Signed-off-by: Michal Simek <monstr@monstr.eu>
33049
33050 commit ab68f921d9c741830f721c3d879c13a0c5597183
33051 Author: Daniel Hellstrom <daniel@gaisler.com>
33052 Date:   Fri Mar 28 10:20:43 2008 +0100
33053
33054     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
33055
33056     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33057
33058 commit 6ed8a43a19bb0275501bc286007daafa923552cf
33059 Author: Daniel Hellstrom <daniel@gaisler.com>
33060 Date:   Wed Mar 26 23:38:48 2008 +0100
33061
33062     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.
33063
33064     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33065
33066 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
33067 Author: Daniel Hellstrom <daniel@gaisler.com>
33068 Date:   Wed Mar 26 23:34:47 2008 +0100
33069
33070     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
33071
33072     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33073
33074 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
33075 Author: Daniel Hellstrom <daniel@gaisler.com>
33076 Date:   Fri Mar 28 10:06:52 2008 +0100
33077
33078     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
33079
33080     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33081
33082 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
33083 Author: Daniel Hellstrom <daniel@gaisler.com>
33084 Date:   Wed Mar 26 23:26:48 2008 +0100
33085
33086     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
33087
33088     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33089
33090 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
33091 Author: Daniel Hellstrom <daniel@gaisler.com>
33092 Date:   Fri Mar 28 10:00:33 2008 +0100
33093
33094     SPARC: Added support for SPARC LEON2 SOC Processor.
33095
33096     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33097
33098 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
33099 Author: Daniel Hellstrom <daniel@gaisler.com>
33100 Date:   Wed Mar 26 23:00:38 2008 +0100
33101
33102     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.
33103
33104     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33105
33106 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
33107 Author: Daniel Hellstrom <daniel@gaisler.com>
33108 Date:   Wed Mar 26 22:51:29 2008 +0100
33109
33110     SPARC: Added support for SPARC LEON3 SOC processor.
33111
33112     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33113
33114 commit bf3d8b31169546fcddb4737391e1893fb12d033a
33115 Author: Daniel Hellstrom <daniel@gaisler.com>
33116 Date:   Fri Mar 28 08:29:26 2008 +0100
33117
33118     SPARC: added SPARC support for new uimage in common code.
33119
33120     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33121
33122 commit 00ab32c85405a4fe65fd4128243086210fc90a21
33123 Author: Daniel Hellstrom <daniel@gaisler.com>
33124 Date:   Wed Mar 26 22:36:03 2008 +0100
33125
33126     SPARC: added SPARC board information to the command bdinfo.
33127
33128     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33129
33130 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
33131 Author: Daniel Hellstrom <daniel@gaisler.com>
33132 Date:   Fri Mar 28 09:47:00 2008 +0100
33133
33134     SPARC: Added generic support for SPARC architecture.
33135
33136     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33137
33138 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
33139 Author: Stefan Roese <sr@denx.de>
33140 Date:   Thu Apr 3 14:50:34 2008 +0200
33141
33142     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
33143
33144     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
33145     has 2 RGMII instances and we need to configure the 2nd RGMII instance
33146     for the EMAC2+3 channels.
33147
33148     Signed-off-by: Stefan Roese <sr@denx.de>
33149
33150 commit c2a545ce33b26d80337f80b533828839249fb1c9
33151 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33152 Date:   Wed Apr 2 08:03:56 2008 +0200
33153
33154     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
33155
33156     fdt.c: In function 'ft_cpu_setup':
33157     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
33158     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
33159     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
33160     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
33161
33162     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33163
33164 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
33165 Author: Andy Fleming <afleming@freescale.com>
33166 Date:   Mon Mar 31 20:45:56 2008 -0500
33167
33168     Fix fdt set command to conform to dts spec
33169
33170     The fdt set command was treating properties specified as <00> and <0011>
33171     as byte streams, rather than as an array of cells.  As we already have
33172     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
33173     we should use the <> syntax to describe arrays of cells, which are always
33174     32-bits per element.  If we imagine this likely (IMHO) scenario:
33175
33176     > fdt set /ethernet-phy@1 reg <1>
33177
33178     With the old code, this would create a bad fdt, since the reg cell would be
33179     made to be one byte in length.  But the cell must be 4 bytes, so this would
33180     break mysteriously.
33181
33182     Also, the dts spec calls for constants inside the angle brackets (<>)
33183     to conform to C constant standards as they pertain to base.
33184     Take this scenario:
33185
33186     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
33187
33188     The old fdt command would complain that it couldn't parse that.  Or, if you
33189     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
33190     do this:
33191
33192     > fdt set /mydev clock <1f78a40>
33193
33194     Whereas the new code will accept decimal numbers.
33195
33196     While I was in there, I extended the fdt command parser to handle property
33197     strings which are split across multiple arguments:
33198
33199     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
33200     > fdt p /ethernet@f00
33201     ethernet@f00 {
33202         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
33203     };
33204
33205     Lastly, the fdt print code was rearranged slightly to print arrays of cells
33206     if the length of the property is a multiple of 4 bytes, and to not print
33207     leading zeros.
33208
33209     Signed-off-by: Andy Fleming <afleming@freescale.com>
33210
33211 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
33212 Author: Stefan Roese <sr@denx.de>
33213 Date:   Wed Apr 2 08:39:33 2008 +0200
33214
33215     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
33216
33217     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
33218     interface. This usage can be configured with the jumper J6. This patch
33219     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
33220     is installed.
33221
33222     Signed-off-by: Stefan Roese <sr@denx.de>
33223
33224 commit 6fe2946f198481254a6ee9600d7456b8316a4083
33225 Author: Kim Phillips <kim.phillips@freescale.com>
33226 Date:   Fri Mar 28 17:37:49 2008 -0500
33227
33228     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
33229
33230     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
33231     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
33232     started.
33233
33234     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33235
33236 commit b5873f1732b92a25690e1513b90dfb0d644f6697
33237 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33238 Date:   Tue Apr 1 07:30:51 2008 +0200
33239
33240     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
33241
33242     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33243
33244 commit 2d934ea51f276522b532f870a820e844ff480b5b
33245 Author: Tor Krill <tor@excito.com>
33246 Date:   Fri Mar 28 15:29:45 2008 +0100
33247
33248     Add Vitesse 8601 support to TSEC driver
33249
33250     Add phy_info for Vitesse VSC8601.
33251     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
33252
33253     Signed-off-by: Tor Krill <tor@excito.com>
33254     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
33255     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33256
33257 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
33258 Author: Daniel Hellstrom <daniel@gaisler.com>
33259 Date:   Mon Mar 31 14:25:00 2008 +0000
33260
33261     SPARC: added SMC91111 driver in and out macros for LEON processors.
33262
33263     This patch makes SPARC/LEON processors able to read and write
33264     to the SMC91111 chip using the chip external I/O bus of the memory
33265     controller. This patchs defines the standard in and out macros
33266     expected by the SMC9111 driver.
33267
33268     To access that I/O bus one must set up the memory controller
33269     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
33270     up this correctly when the other MCTRL parameters are set up. It
33271     can be set up from the board configuration header file.
33272
33273     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33274     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33275
33276 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
33277 Author: Stelian Pop <stelian@popies.net>
33278 Date:   Wed Mar 26 18:52:34 2008 +0100
33279
33280     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
33281
33282     Signed-off-by: Stelian Pop <stelian@popies.net>
33283
33284 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
33285 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33286 Date:   Mon Mar 31 21:31:04 2008 +0200
33287
33288     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
33289
33290     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33291
33292 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
33293 Author: Stelian Pop <stelian@popies.net>
33294 Date:   Wed Mar 26 18:52:33 2008 +0100
33295
33296     Add support for AT91SAM9260EK
33297
33298     Support for booting from internal DataFlash, external DataFlash card
33299     or NAND flash is available.
33300
33301     Signed-off-by: Stelian Pop <stelian@popies.net>
33302
33303 commit 1762f13b4aab88b685b1722f17dada247945624b
33304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33305 Date:   Mon Mar 31 21:20:49 2008 +0200
33306
33307     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
33308
33309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33310
33311 commit 761712188b353494defb2b644491ff73d0daaa6f
33312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33313 Date:   Mon Mar 31 21:12:17 2008 +0200
33314
33315     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
33316
33317     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33318
33319 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
33320 Author: Stelian Pop <stelian@popies.net>
33321 Date:   Wed Mar 26 20:52:32 2008 +0100
33322
33323     Port AT91CAP9 to the new headers
33324
33325     Adapt the existing AT91CAP9 code to the new headers and APIs.
33326
33327     Signed-off-by: Stelian Pop <stelian@popies.net>
33328
33329 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
33330 Author: Stelian Pop <stelian@popies.net>
33331 Date:   Wed Mar 26 19:52:31 2008 +0100
33332
33333     Finish header files reworking
33334
33335     Replace AT91CAP9.h file with several splitted header files coming
33336     from the Linux kernel.
33337
33338     This is part 2 of the replacement: more header imports and edits.
33339
33340     Signed-off-by: Stelian Pop <stelian@popies.net>
33341
33342 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
33343 Author: Stelian Pop <stelian@popies.net>
33344 Date:   Wed Mar 26 19:52:30 2008 +0100
33345
33346     Import several header files from Linux
33347
33348     Replace AT91CAP9.h file with several splitted header files coming
33349     from the Linux kernel.
33350
33351     This is part 1 of the replacement: pristine header files import.
33352
33353     Signed-off-by: Stelian Pop <stelian@popies.net>
33354
33355 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
33356 Author: Stelian Pop <stelian@popies.net>
33357 Date:   Wed Mar 26 20:52:28 2008 +0100
33358
33359     Move at91cap9 specific files to at91sam9 directory
33360
33361     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
33362     common infrastructure can be used. Let this infrastructure be
33363     named after the AT91SAM9 family, and move the existing AT91CAP9
33364     files to the new place.
33365
33366     Signed-off-by: Stelian Pop <stelian@popies.net>
33367
33368 commit 61106a565870ff503f92b251b94bd7afef889a04
33369 Author: Stelian Pop <stelian@popies.net>
33370 Date:   Wed Mar 26 21:52:27 2008 +0100
33371
33372     Use timer_init() instead of board supplied interrupt_init()
33373
33374     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
33375     the board, so use timer_init() instead of interrupt_init().
33376
33377     Signed-off-by: Stelian Pop <stelian@popies.net>
33378
33379 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
33380 Author: Stelian Pop <stelian@popies.net>
33381 Date:   Wed Mar 26 21:52:36 2008 +0100
33382
33383     Cleanup DataFlash partition handling
33384
33385     DataFlash partition information has become a mess. This patch
33386     defines a single partition scheme for Atmel DataFlashes. This partition
33387     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
33388
33389     Signed-off-by: Stelian Pop <stelian@popies.net>
33390
33391 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
33392 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33393 Date:   Fri Mar 28 08:47:45 2008 -0500
33394
33395     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
33396
33397     When the version_string function in start.S is not 4-byte align,
33398     it will cause the compiler generates "unaligned opcodes detected
33399     in executable segment". This issue affects all ColdFire CPUs.
33400     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
33401     it is not aligned.
33402
33403     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33404     Acked-by: John Rigby <jrigby@freescale.com>
33405
33406 commit bae61eefe15b4d454060a7140e49ae58322be803
33407 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33408 Date:   Tue Mar 25 15:41:15 2008 -0500
33409
33410     ColdFire: Add dspi and serial flash support for MCF5445x
33411
33412     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33413     Acked-by: John Rigby <jrigby@freescale.com>
33414
33415 commit 48ead7a7a922fceaf494e352abfab8216a41b417
33416 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33417 Date:   Tue Mar 18 17:37:01 2008 -0500
33418
33419     ColdFire: Remove R5200 board
33420
33421     This board never went into production
33422
33423     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
33424     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33425     Acked-by: John Rigby <jrigby@freescale.com>
33426
33427 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
33428 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
33429 Date:   Thu Jan 24 14:02:32 2008 -0600
33430
33431     ColdFire: Added M5275EVB support.
33432
33433     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
33434     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33435     Acked-by: John Rigby <jrigby@freescale.com>
33436
33437 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
33438 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
33439 Date:   Mon Feb 4 15:38:20 2008 -0600
33440
33441     ColdFire: Added MCF5275 cpu support.
33442
33443     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
33444     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33445     Acked-by: John Rigby <jrigby@freescale.com>
33446
33447 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
33448 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33449 Date:   Mon Mar 17 12:14:11 2008 -0500
33450
33451     ColdFire: Define bootdelay in configuration file for M52277EVB
33452
33453     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
33454     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33455     Acked-by: John Rigby <jrigby@freescale.com>
33456
33457 commit 77878f16cedee17161ff2336990970fffc6cea35
33458 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33459 Date:   Mon Mar 17 12:09:07 2008 -0500
33460
33461     ColdFire: Fix second memory Chipselect for M5475EVB
33462
33463     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33464     Acked-by: John Rigby <jrigby@freescale.com>
33465
33466 commit 43d60642395a550956cb21d287c8cfa563913d28
33467 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33468 Date:   Thu Mar 13 14:26:32 2008 -0500
33469
33470     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
33471
33472     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33473     Acked-by: John Rigby <jrigby@freescale.com>
33474
33475 commit eb14ebe813a0cb5d47905228da446a5ad692473b
33476 Author: Larry Johnson <lrj@acm.org>
33477 Date:   Sun Mar 30 20:33:04 2008 -0500
33478
33479     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
33480
33481     Signed-off-by: Larry Johnson <lrj@acm.org>
33482
33483 commit 02e3892021112f21067d9ed1d04ae4182725ba52
33484 Author: Stefan Roese <sr@denx.de>
33485 Date:   Mon Mar 31 12:20:48 2008 +0200
33486
33487     ppc4xx: Small whitespace fix of esd patches
33488
33489     Signed-off-by: Stefan Roese <sr@denx.de>
33490
33491 commit 034394abb524785047c815f00dde8cdbdc1593c5
33492 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33493 Date:   Sun Mar 30 18:52:44 2008 +0200
33494
33495     ppc4xx: Cleanup PMC440 board support
33496
33497     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33498
33499 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
33500 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33501 Date:   Sun Mar 30 18:52:06 2008 +0200
33502
33503     ppc4xx: Add ptm configuration variables for PMC440
33504
33505     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
33506     environment variables.
33507
33508     Cleanup pci_target_init.
33509
33510     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33511
33512 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
33513 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33514 Date:   Sun Mar 30 18:01:15 2008 +0200
33515
33516     ppc4xx: Minor updates for DU440 boards
33517
33518     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33519
33520 commit d5bffeb868d6b4d462f558dac43011027b6644b7
33521 Author: Mike Frysinger <vapier@gentoo.org>
33522 Date:   Tue Feb 19 00:54:20 2008 -0500
33523
33524     Blackfin: cleanup and overhaul common board init functions
33525
33526     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33527
33528 commit b86b3416f874358acaf07519e7620cdb2145f75b
33529 Author: Mike Frysinger <vapier@gentoo.org>
33530 Date:   Tue Feb 19 00:50:58 2008 -0500
33531
33532     Blackfin: cleanup lib_blackfin/cache.c
33533
33534     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33535
33536 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
33537 Author: Mike Frysinger <vapier@gentoo.org>
33538 Date:   Sun Mar 30 15:46:13 2008 -0400
33539
33540     Blackfin: unify cpu and boot modes
33541
33542     All of the duplicated code for Blackfin processors and boot modes have been
33543     unified.  After all, the core is the same for all processors, just the
33544     peripheral set differs (which gets handled in the drivers).
33545
33546     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33547
33548 commit 880cc4381ea8360248cddcdf87a64566745a5724
33549 Author: Stelian Pop <stelian@popies.net>
33550 Date:   Wed Mar 26 22:52:35 2008 +0100
33551
33552     Fix CFG_NO_FLASH compilation.
33553
33554     Many Atmel boards have no "real" (NOR) flash on board, and rely only
33555     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
33556     be present in a board configuration file, while still enabling flash
33557     commands like 'flinfo', 'protect', etc.
33558
33559     Signed-off-by: Stelian Pop <stelian@popies.net>
33560
33561 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
33562 Author: Mike Frysinger <vapier@gentoo.org>
33563 Date:   Tue Feb 19 00:58:13 2008 -0500
33564
33565     Blackfin: BF537-stamp: cleanup spi flash driver
33566
33567     This punts the old spi flash driver for a new/generalized one until the
33568     common one can be integrated.
33569
33570     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33571
33572 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
33573 Author: Ben Warren <biggerbadderben@gmail.com>
33574 Date:   Sun Mar 30 11:34:34 2008 -0400
33575
33576     Fix macro typo in common/cmd_mii.c
33577
33578     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
33579     actually applied the wrong patch.
33580
33581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33582
33583 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
33584 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33585 Date:   Sun Mar 30 16:39:53 2008 +0200
33586
33587     use correct at91rm9200 register name in m501sk board
33588
33589     This fixes a naming bug for at91rm9200 lowlevel init code:
33590     NOR boot flash is on chipselect 0, not chipselect 2.  This
33591     makes code use the register name from chip datasheets.
33592
33593     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33594
33595 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
33596 Author: David Brownell <david-b@pacbell.net>
33597 Date:   Fri Jan 18 12:55:00 2008 -0800
33598
33599     use correct at91rm9200 register name
33600
33601     This fixes a naming bug for at91rm9200 lowlevel init code:
33602     NOR boot flash is on chipselect 0, not chipselect 2.  This
33603     makes code use the register name from chip datasheets.
33604
33605     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
33606
33607 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
33608 Author: David Brownell <david-b@pacbell.net>
33609 Date:   Fri Jan 18 12:45:45 2008 -0800
33610
33611     add missing ARM boards to MAKEALL
33612
33613     Add some missing ARM boards to MAKEALL.  These build correctly,
33614     unlike several of the boards already listed.
33615
33616     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
33617
33618 commit 066bebd6353e33af3adefc3404560871699e9961
33619 Author: Peter Pearse <peter.pearse@arm.com>
33620 Date:   Sun Mar 30 11:34:09 2008 +0100
33621
33622     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
33623     to prevent compilation error.
33624
33625     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
33626
33627 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
33628 Author: Guennadi Liakhovetski <[lg@denx.de]>
33629 Date:   Sun Mar 30 11:32:30 2008 +0100
33630
33631     Support for the MX31ADS evaluation board from Freescale
33632
33633     This patch adds support for the MX31ADS evaluation board from Freescale,
33634     initialization code is copied from RedBoot sources, also provided by Freescale.
33635
33636     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33637
33638 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
33639 Author: Sascha Hauer <s.hauer@pengutronix.de>
33640 Date:   Sun Mar 30 11:32:27 2008 +0100
33641
33642     Phytec Phycore-i.MX31 support
33643
33644     This patch adds support for the Phytec Phycore-i.MX31 board
33645
33646     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33647     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33648
33649 commit a147e56f03871bba4f05058d5e04ce7deb010b04
33650 Author: Sascha Hauer <s.hauer@pengutronix.de>
33651 Date:   Sun Mar 30 11:32:24 2008 +0100
33652
33653     mx31 litekit support
33654
33655     This patch adds support for the mx31 litekit board
33656
33657     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33658     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33659
33660 commit d6674e0e2a6a1f033945f78838566210d3f28c95
33661 Author: Sascha Hauer <s.hauer@pengutronix.de>
33662 Date:   Sun Mar 30 11:32:21 2008 +0100
33663
33664     add SMSC LAN9x1x Network driver
33665
33666     This patch adds a driver for the following smsc network controllers:
33667     LAN9115
33668     LAN9116
33669     LAN9117
33670     LAN9215
33671     LAN9216
33672     LAN9217
33673
33674     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33675     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33676
33677 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
33678 Author: Sascha Hauer <s.hauer@pengutronix.de>
33679 Date:   Sun Mar 30 11:32:16 2008 +0100
33680
33681     add an i2c driver for mx31
33682
33683     This patch adds an i2c driver for Freescale i.MX processors
33684
33685     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33686     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33687
33688 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
33689 Author: Sascha Hauer <s.hauer@pengutronix.de>
33690 Date:   Sun Mar 30 11:30:43 2008 +0100
33691
33692     core support for Freescale mx31
33693
33694     This patch adds the core support for Freescale mx31
33695
33696     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33697     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33698
33699 commit 8bf69d81782619187933a605f1a95ee1d069478d
33700 Author: Sascha Hauer <s.hauer@pengutronix.de>
33701 Date:   Sun Mar 30 11:28:46 2008 +0100
33702
33703     Separate omap24xx specific code from arm1136
33704
33705     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
33706
33707     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
33708     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
33709
33710 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
33711 Author: Peter Pearse <peter.pearse@arm.com>
33712 Date:   Sun Mar 30 11:23:05 2008 +0100
33713
33714     Add pmdra into MAKEALL
33715
33716     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
33717
33718 commit a574a73852a527779234e73e17e7597fd8128882
33719 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
33720 Date:   Sun Mar 30 11:21:58 2008 +0100
33721
33722     Adds support for the Prodrive PMDRA board, based on a DM6441
33723
33724     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
33725
33726 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
33727 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
33728 Date:   Sun Mar 30 11:11:34 2008 +0100
33729
33730     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
33731
33732     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
33733
33734 commit 1704dc20917b4f71e373e2c888497ee666d40380
33735 Author: Dirk Behme <dirk.behme@gmail.com>
33736 Date:   Sun Mar 30 11:09:01 2008 +0100
33737
33738     - Remove *_masked() functions as noted by Wolfgang
33739     - Adapt register naming to recent TI spec (sprue26, March 2007)
33740     - Fix reset_timer() handling
33741     - As reported by Pieter [1] the overflow fix introduced a
33742     delay of factor 16 (e.g 2 seconds became 32). While the
33743     overflow fix is basically okay, it missed to divide udelay by
33744     16, too. Fix this.
33745     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
33746     - Remove software division of timer count value (DIV(x)
33747     macro) and do it in hardware (TIM_CLK_DIV).
33748     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
33749     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
33750     the hints & testing!
33751
33752     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33753
33754     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
33755
33756 commit ac3315c26e143c31680750c9c13f027efbcc887e
33757 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33758 Date:   Thu Mar 6 16:45:44 2008 +0100
33759
33760     new PHY @ e1000 - 2nd try
33761
33762     Add 82541ER device with latest integrated IGP2 PHY.
33763     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
33764
33765     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33766     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33767
33768 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
33769 Author: Daniel Hellstrom <daniel@gaisler.com>
33770 Date:   Fri Mar 28 20:22:53 2008 +0100
33771
33772     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
33773
33774     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
33775     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
33776     available at www.gaisler.com.
33777
33778     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
33779     offloading etc.) can be determined by a bit in the control register.
33780     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
33781
33782     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33783     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33784
33785 commit 233a8bcd94997f3f345833a3b82e836222f2a206
33786 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
33787 Date:   Mon Mar 17 17:08:22 2008 -0500
33788
33789     Add CONFIG_MII_INIT in cmd_mii.c
33790
33791     Provide common configuration in do_mii() to execute mii_init()
33792     for all cpu architectures
33793
33794     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33795     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33796
33797 commit f605479de2deb11e834f31dfdb0af107c86aced6
33798 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
33799 Date:   Mon Mar 17 17:08:16 2008 -0500
33800
33801     ColdFire: Fix FEC transmit issue for MCF5275
33802
33803     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33804     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33805
33806 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
33807 Author: Aras Vaichas <arasv@magtech.com.au>
33808 Date:   Wed Mar 26 09:43:57 2008 +1100
33809
33810     DHCP request fix for Windows Server 2003
33811
33812     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
33813     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
33814     interoperability problems with Windows Server 200x DHCP server when U-Boot
33815     client responds too fast for server to handle.
33816
33817     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
33818     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33819
33820 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
33821 Author: Daniel Hellstrom <daniel@gaisler.com>
33822 Date:   Fri Mar 28 20:40:19 2008 +0100
33823
33824     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
33825
33826     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
33827     SPARC CPUs implement flash_read64 which calls __raw_readq.
33828
33829     For current SPARC architectures (LEON2 and LEON3) each read from the
33830     FLASH must lead to a cache miss. This is because FLASH can not be set
33831     non-cacheable since program code resides there, and alternatively disabling
33832     cache is poor from performance view, or doing a cache flush between each
33833     read is even poorer.
33834
33835     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
33836     load alternative space, the alternative space number (ASI) is processor
33837     implementation spcific and can be found by including <asm/processor.h>.
33838
33839     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33840
33841 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
33842 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33843 Date:   Fri Mar 28 15:41:25 2008 +0100
33844
33845     Make MPC83xx one step closer to full relocation.
33846
33847     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
33848     and use GOT relative reference.
33849
33850     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33851     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33852
33853 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
33854 Author: Michael Barkowski <michael.barkowski@freescale.com>
33855 Date:   Thu Mar 27 14:34:43 2008 -0400
33856
33857     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
33858
33859     This patch fixes eeprom page size so that you can now write more than
33860     64 bytes at a time.
33861
33862     It also makes the board take MAC addresses, if found, from EEPROM.
33863
33864     User should place up to 4 addresses at offset 0x7f00, for
33865     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
33866     four six-byte values should have it's CRC at the end.  crc32 and
33867     eeprom commands can be used to accomplish this.
33868
33869     If CRC fails, MAC addresses come from the environment.  If CRC
33870     succeeds, the environment is overwritten at startup.
33871
33872     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33873     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33874
33875 commit 8f325cff31f6e745e6540014b131b9a97f61944c
33876 Author: Michael Barkowski <michael.barkowski@freescale.com>
33877 Date:   Fri Mar 28 15:15:38 2008 -0400
33878
33879     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
33880
33881     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
33882     controller on the PCI bus in Linux on the MPC8323ERDB.
33883
33884     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
33885     config file.
33886
33887     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33888     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33889
33890 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
33891 Author: Kim Phillips <kim.phillips@freescale.com>
33892 Date:   Fri Mar 28 10:19:07 2008 -0500
33893
33894     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
33895
33896     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
33897     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
33898     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
33899     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
33900     convenience macros.
33901
33902     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33903
33904 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
33905 Author: Kim Phillips <kim.phillips@freescale.com>
33906 Date:   Fri Mar 28 10:18:53 2008 -0500
33907
33908     mpc83xx: display ddr frequency in board_add_ram_info banner
33909
33910     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33911
33912 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
33913 Author: Kim Phillips <kim.phillips@freescale.com>
33914 Date:   Fri Mar 28 10:18:40 2008 -0500
33915
33916     mpc83xx: unreinvent mem_clk
33917
33918     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
33919     mem_*_clk for consistency's sake.
33920
33921     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33922
33923 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
33924 Author: Kim Phillips <kim.phillips@freescale.com>
33925 Date:   Fri Mar 28 14:31:23 2008 -0500
33926
33927     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
33928
33929     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33930
33931 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
33932 Author: Dave Liu <r63238@freescale.com>
33933 Date:   Wed Mar 26 22:57:19 2008 +0800
33934
33935     mpc83xx: enable the SATA interface on mpc837xemds board
33936
33937     Enable the first two SATA interfaces on MPC837xEMDS board,
33938     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
33939
33940     Signed-off-by: Dave Liu <daveliu@freescale.com>
33941     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33942
33943 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
33944 Author: Dave Liu <r63238@freescale.com>
33945 Date:   Wed Mar 26 22:56:36 2008 +0800
33946
33947     mpc83xx: initialize serdes for MPC837xEMDS boards
33948
33949     This patch is stolen from Anton Vorontsov's patch
33950     for mpc837xerdb boards.
33951
33952     The reference clk and xcorevdd voltage of serdes1/2
33953     is same between mpc837xemds and mpc837xerdb.
33954
33955     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
33956     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
33957     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
33958
33959     Signed-off-by: Dave Liu <daveliu@freescale.com>
33960     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33961
33962 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
33963 Author: Stefan Roese <sr@denx.de>
33964 Date:   Fri Mar 28 14:09:04 2008 +0100
33965
33966     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
33967
33968     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
33969     interface. This usage can be configured with the jumper J6. This patch
33970     displays the current configuration upon bootup and changes the PCIe
33971     init loop, to only initialize the availabel PCIe slots.
33972
33973     Signed-off-by: Stefan Roese <sr@denx.de>
33974
33975 commit 90447ecbbac8572457b6d8903073ac3f120995ba
33976 Author: Tor Krill <tor@excito.com>
33977 Date:   Fri Mar 28 11:29:10 2008 +0100
33978
33979     MTD/CFI: Add support for 16bit legacy AMD flash
33980
33981     Add entry for 512Kx16 AMD flash to jedec_table.
33982     Read out 16bit device id if chipwidth is 16bit.
33983     Fixed coding style after Stefans feedback
33984
33985     Signed-off-by: Tor Krill <tor@excito.com>
33986
33987 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
33988 Author: Stefan Roese <sr@denx.de>
33989 Date:   Fri Mar 28 11:02:53 2008 +0100
33990
33991     ppc: Small change to CFG_MEM_TOP_HIDE description
33992
33993     Signed-off-by: Stefan Roese <sr@denx.de>
33994
33995 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
33996 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33997 Date:   Thu Mar 27 15:44:12 2008 +0900
33998
33999     sh: Add support stat structure and stat.h
34000
34001     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34002
34003 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
34004 Author: Mark Jonas <toertel@gmail.com>
34005 Date:   Sat Mar 22 19:27:52 2008 +0100
34006
34007     sh: Removed warning when compiling drivers/serial/serial_sh.c.
34008
34009     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
34010     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34011
34012 commit f309fa38929ffba71230c02330ffa42f4bba6333
34013 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34014 Date:   Wed Mar 12 18:02:57 2008 +0900
34015
34016     sh: Remove disable_ctrlc function from R7780MP
34017
34018     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34019
34020 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
34021 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34022 Date:   Wed Mar 12 17:55:15 2008 +0900
34023
34024     sh: Add maintainer of R7780MP to MAINTAINER file
34025
34026     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
34027
34028     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34029
34030 commit f5e2466f7baa887a7df0c536333eea8231333497
34031 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34032 Date:   Tue Mar 25 17:11:24 2008 +0900
34033
34034     sh: Add support Renesas Solutions R2D plus board
34035
34036     R2D plus is SH reference board used with SH7751R.
34037     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
34038     one PCI bus, VGA, and two Ethernet controller.
34039
34040     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34041
34042 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
34043 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34044 Date:   Wed Mar 12 12:15:29 2008 +0900
34045
34046     sh: Add support SH4 cache control
34047
34048     Add support SH4 cache control and flash_cache function
34049
34050     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34051
34052 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
34053 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34054 Date:   Mon Mar 24 01:53:01 2008 +0900
34055
34056     sh: Add support PCI host driver for SH7751/SH7751R
34057
34058     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34059
34060 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
34061 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34062 Date:   Mon Mar 24 02:11:26 2008 +0900
34063
34064     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
34065
34066     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34067
34068 commit 566933278101c144d75361ea682678a326c1290d
34069 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34070 Date:   Wed Mar 12 12:10:28 2008 +0900
34071
34072     sh: Add support SuperH SH7751/SH7751R
34073
34074     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34075
34076 commit 3313e0e26224fc9a0c445124f3455058c696df84
34077 Author: Mark Jonas <toertel@gmail.com>
34078 Date:   Mon Mar 10 11:37:10 2008 +0100
34079
34080     sh: Added support for SH7720 based board MPR2.
34081
34082     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
34083     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34084
34085 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
34086 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34087 Date:   Thu Mar 6 14:05:53 2008 +0900
34088
34089     sh: Fix receive FIFO level register of SH4A
34090
34091     Receive FIFO level register is different in SH4A.
34092     Because register is different, cannot occasionally receive data.
34093
34094     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34095
34096 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
34097 Author: Yusuke Goda <goda.yusuke@renesas.com>
34098 Date:   Tue Mar 11 12:55:12 2008 +0900
34099
34100     sh: Add support Renesas Solutions R7780MP
34101
34102     Renesas Solutions R7780MP is a reference board on SH7780.
34103     This board has serial, 10/100 base Ethernet deivice, CF slot
34104     and VGA devices. This board can set extension board.
34105     Extension board has 10/100/1000 base Ethernet device, PCI slot,
34106     S-ATA, iDVR slot.
34107
34108     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34109     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34110
34111 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
34112 Author: Yusuke Goda <goda.yusuke@renesas.com>
34113 Date:   Wed Mar 5 14:30:02 2008 +0900
34114
34115     sh: Add support PCI of SuperH and SH7780
34116
34117     This patch add support PCI of SuperH base code and SH7780 specific code.
34118
34119     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34120     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34121
34122 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
34123 Author: Yusuke Goda <goda.yusuke@renesas.com>
34124 Date:   Wed Mar 5 14:23:26 2008 +0900
34125
34126     sh: Add support SH7780
34127
34128     SH7780 is CPU of Renesas Technology.
34129     This CPU has
34130      - CPU clock 400MHz
34131      - PCI support
34132      - DDR-SDRAM controller
34133      - etc ...
34134
34135     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34136     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34137
34138 commit c2042f5952a686c414031309b8f244513bf578f0
34139 Author: goda.yusuke <goda.yusuke@renesas.com>
34140 Date:   Fri Jan 25 20:46:36 2008 +0900
34141
34142     sh: Add support Renesas Solutions Migo-R board
34143
34144     Migo-R is a board based on SH7722 and has may devices.
34145     In this patch, supported SCIF, NOR flash and Ethernet.
34146
34147     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34148     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34149
34150 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
34151 Author: Bartlomiej Sieka <tur@semihalf.com>
34152 Date:   Thu Mar 27 15:06:40 2008 +0100
34153
34154     Fix host tool build breakage, take two
34155
34156     Revert commit 87c8431f and fix build breakage so that the build continues
34157     to work on FC systems.
34158
34159     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34160
34161 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
34162 Author: Stefan Roese <sr@denx.de>
34163 Date:   Wed Mar 19 09:36:47 2008 +0100
34164
34165     ppc4xx: Enable ECC on LWMON5
34166
34167     Since all ECC related problems seem to be resolved on LWMON5, this patch
34168     now enables ECC support.
34169
34170     We have to write the ECC bytes by zeroing and flushing in smaller
34171     steps, since the whole 256MByte takes too long for the external
34172     watchdog.
34173
34174     Signed-off-by: Stefan Roese <sr@denx.de>
34175
34176 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
34177 Author: Larry Johnson <lrj@acm.org>
34178 Date:   Mon Mar 17 11:10:35 2008 -0500
34179
34180     ppc4xx: Updates to Korat-specific code
34181
34182     This patch contains updates for changes for the Korat PPC440EPx board.
34183     These changes include:
34184
34185     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
34186     described in the new "doc/README.korat" file;
34187
34188     (2) a new memory map for the registers in the board's CPLD;
34189
34190     (3) a revised format for manufacturer's data in serial EEPROM; and
34191
34192     (4) changes to track updates to U-Boot for the Sequoia board.
34193
34194     Signed-off-by: Larry Johnson <lrj@acm.org>
34195
34196 commit f766cdf89b3a2a7634b8c5869f606150e332036c
34197 Author: Markus Brunner <super.firetwister@gmail.com>
34198 Date:   Thu Mar 27 10:46:25 2008 +0100
34199
34200     ppc4xx: PPC405EP Set EMAC noise filter bits
34201
34202     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
34203     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
34204     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
34205
34206     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
34207     Signed-off-by: Stefan Roese <sr@denx.de>
34208
34209 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
34210 Author: Mike Nuss <mike@terascala.com>
34211 Date:   Wed Feb 20 11:54:20 2008 -0500
34212
34213     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
34214
34215     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
34216     after startup to change the speed of the clocks. This patch adds the
34217     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
34218     initialization code will reconfigure the PLL to run the system with a CPU
34219     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
34220     external EEPROM.
34221
34222     Signed-off-by: Mike Nuss <mike@terascala.com>
34223     Acked-by: Stefan Roese <sr@denx.de>
34224
34225 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
34226 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34227 Date:   Thu Mar 27 09:12:40 2008 +0100
34228
34229     new-image: Fix host tool build breakage
34230
34231     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34232
34233 commit 6fb4b640562a10daff0dbe537638d511b5b48650
34234 Author: Stefan Roese <sr@denx.de>
34235 Date:   Thu Mar 27 10:24:03 2008 +0100
34236
34237     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
34238
34239     Signed-off-by: Stefan Roese <sr@denx.de>
34240
34241 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
34242 Author: Stefan Roese <sr@denx.de>
34243 Date:   Wed Mar 19 10:23:43 2008 +0100
34244
34245     ppc4xx: Add fdt support to Prodrive alpr
34246
34247     Since this board will probably be ported to arch/powerpc in the
34248     near future, we add device tree support now. This way we are
34249     "ready" for arch/powerpc from now on.
34250
34251     Signed-off-by: Stefan Roese <sr@denx.de>
34252
34253 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
34254 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
34255 Date:   Mon Mar 17 09:27:56 2008 +0100
34256
34257     ppc4xx: Enable cache support on the ALPR board
34258
34259     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
34260
34261 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
34262 Author: Stefan Roese <sr@denx.de>
34263 Date:   Wed Mar 26 10:14:11 2008 +0100
34264
34265     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
34266
34267     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
34268     memory area will get subtracted from the top (end) of ram and won't get
34269     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
34270     should gets passed the now "corrected" memory size and won't touch it
34271     either. This should work for arch/ppc and arch/powerpc. Only Linux board
34272     ports in arch/powerpc with bootwrapper support, which recalculate the
34273     memory size from the SDRAM controller setup, will have to get fixed
34274     in Linux additionally.
34275
34276     This patch enables this config option on some PPC440EPx boards as a workaround
34277     for the CHIP 11 errata. Here the description from the AMCC documentation:
34278
34279     CHIP_11: End of memory range area restricted access.
34280     Category: 3
34281
34282     Overview:
34283     The 440EPx DDR controller does not acknowledge any
34284     transaction which is determined to be crossing over the
34285     end-of-memory-range boundary, even if the starting address is
34286     within valid memory space. Any such transaction from any PLB4
34287     master will result in a PLB time-out on PLB4 bus.
34288
34289     Impact:
34290     In case of such misaligned bursts, PLB4 masters will not
34291     retrieve any data at all, just the available data up to the
34292     end of memory, especially the 440 CPU. For example, if a CPU
34293     instruction required an operand located in memory within the
34294     last 7 words of memory, the DCU master would burst read 8
34295     words to update the data cache and cross over the
34296     end-of-memory-range boundary. Such a DCU read would not be
34297     answered by the DDR controller, resulting in a PLB4 time-out
34298     and ultimately in a Machine Check interrupt. The data would
34299     be inaccessible to the CPU.
34300
34301     Workaround:
34302     Forbid any application to access the last 256 bytes of DDR
34303     memory. For example, make your operating system believe that
34304     the last 256 bytes of DDR memory are absent. AMCC has a patch
34305     that does this, available for Linux.
34306
34307     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
34308     lwmon5, korat, sequoia
34309
34310     The other remaining 440EPx board were intentionally not included
34311     since it is not clear to me, if they use the end of ram for some
34312     other purpose. This is unclear, since these boards have CONFIG_PRAM
34313     defined and even comments like this:
34314
34315     PMC440.h:
34316     /* esd expects pram at end of physical memory.
34317      * So no logbuffer at the moment.
34318      */
34319
34320     It is strongly recommended to not use the last 256 bytes on those
34321     boards too. Patches from the board maintainers are welcome.
34322
34323     Signed-off-by: Stefan Roese <sr@denx.de>
34324
34325 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
34326 Author: Stefan Roese <sr@denx.de>
34327 Date:   Thu Mar 27 10:09:05 2008 +0100
34328
34329     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
34330
34331     Signed-off-by: Stefan Roese <sr@denx.de>
34332
34333 commit d56a3ce179688cde61073a3690e21703d68fafd7
34334 Author: Stefan Roese <sr@denx.de>
34335 Date:   Tue Mar 25 17:51:13 2008 +0100
34336
34337     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
34338
34339     The routine ft_board_setup() configures the EBC NOR mappings for the
34340     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
34341     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
34342     problem, we need to pass the corrected address here too.
34343
34344     Signed-off-by: Stefan Roese <sr@denx.de>
34345
34346 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
34347 Author: Stefan Roese <sr@denx.de>
34348 Date:   Wed Mar 19 16:35:12 2008 +0100
34349
34350     ppc4xx: Fix compilation warning in 4xx_enet.c
34351
34352     Signed-off-by: Stefan Roese <sr@denx.de>
34353
34354 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
34355 Author: Stefan Roese <sr@denx.de>
34356 Date:   Wed Mar 19 16:20:49 2008 +0100
34357
34358     ppc4xx: Add AMCC Glacier 406GT eval board support
34359
34360     This patch adds support for the AMCC Glacier 460GT eval board.
34361     The main difference to the Canyonlands board are listed here:
34362
34363     - 4 ethernet ports instead of 2
34364     - no SATA port
34365     - no USB port
34366
34367     Currently EMAC2+3 are not working. This will be fixed in a later
34368     release.
34369
34370     Signed-off-by: Stefan Roese <sr@denx.de>
34371
34372 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
34373 Author: Stefan Roese <sr@denx.de>
34374 Date:   Thu Mar 27 08:47:26 2008 +0100
34375
34376     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
34377
34378     Signed-off-by: Stefan Roese <sr@denx.de>
34379
34380 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
34381 Author: Anatolij Gustschin <agust@denx.de>
34382 Date:   Wed Mar 26 21:05:43 2008 +0100
34383
34384     Fix out of tree building issue
34385
34386     Currently U-Boot building in some external directory
34387     doesn't work. This patch tries to fix the problem.
34388
34389     Signed-off-by: Anatolij Gustschin <agust@denx.de>
34390
34391 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
34392 Author: Anatolij Gustschin <agust@denx.de>
34393 Date:   Wed Mar 26 18:13:33 2008 +0100
34394
34395     README: update documentation (availability, links, etc.)
34396
34397     Fix typo in README
34398
34399     Signed-off-by: Anatolij Gustschin <agust@denx.de>
34400
34401 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
34402 Author: Anatolij Gustschin <agust@denx.de>
34403 Date:   Wed Mar 26 17:47:44 2008 +0100
34404
34405     Fix compilation error in cmd_usb.c
34406
34407     This patch fixes compilation error
34408     cmd_usb.c: In function 'do_usb':
34409     cmd_usb.c:552: error: void value not ignored as it ought to be
34410
34411     Signed-off-by: Anatolij Gustschin <agust@denx.de>
34412
34413 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
34414 Author: Timur Tabi <timur@freescale.com>
34415 Date:   Fri Mar 14 17:45:29 2008 -0500
34416
34417     Add support for setting the I2C bus speed in fsl_i2c.c
34418
34419     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
34420     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
34421     but fsl_i2c.c ignores it and uses conservative value when programming the
34422     I2C bus speed.
34423
34424     Signed-off-by: Timur Tabi <timur@freescale.com>
34425     Acked-by: Andy Fleming <afleming@freescale.com>
34426
34427 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
34428 Author: Wolfgang Denk <wd@denx.de>
34429 Date:   Thu Mar 27 00:03:57 2008 +0100
34430
34431     Coding style cleanup, update CHANGELOG
34432
34433     Signed-off-by: Wolfgang Denk <wd@denx.de>
34434
34435 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
34436 Author: Dave Liu <r63238@freescale.com>
34437 Date:   Wed Mar 26 22:55:32 2008 +0800
34438
34439     drivers: add the support for Freescale SATA controller
34440
34441     Add the Freescale on-chip SATA controller driver to u-boot,
34442     The SATA controller is used on the 837x and 8315 targets,
34443     The driver can be used to load kernel, fs and dtb.
34444
34445     The features list:
34446     - 1.5/3 Gbps link speed
34447     - LBA48, LBA28 support
34448     - DMA and FPDMA support
34449     - Two ports support
34450
34451     Signed-off-by: Dave Liu <daveliu@freescale.com>
34452
34453 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
34454 Author: Dave Liu <r63238@freescale.com>
34455 Date:   Wed Mar 26 22:54:44 2008 +0800
34456
34457     ata: add the readme for SATA command line
34458
34459     Signed-off-by: Dave Liu <daveliu@freescale.com>
34460
34461 commit cd54081cd479e542fc399b8a40651ff11a1ad849
34462 Author: Dave Liu <r63238@freescale.com>
34463 Date:   Wed Mar 26 22:53:24 2008 +0800
34464
34465     ata: enable the sata initialize on boot up
34466
34467     Signed-off-by: Dave Liu <daveliu@freescale.com>
34468
34469 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
34470 Author: Dave Liu <r63238@freescale.com>
34471 Date:   Wed Mar 26 22:52:36 2008 +0800
34472
34473     ata: add the fis struct for SATA
34474
34475     Signed-off-by: Dave Liu <daveliu@freescale.com>
34476
34477 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
34478 Author: Dave Liu <r63238@freescale.com>
34479 Date:   Wed Mar 26 22:51:44 2008 +0800
34480
34481     ata: add the libata support
34482
34483     add simple libata support in u-boot
34484
34485     Signed-off-by: Dave Liu <daveliu@freescale.com>
34486
34487 commit 8e9bb43429e50df55fa41932cbe65841ff579220
34488 Author: Dave Liu <r63238@freescale.com>
34489 Date:   Wed Mar 26 22:50:45 2008 +0800
34490
34491     ata: make the ata_piix driver using new SATA framework
34492
34493     original ata_piix driver is using IDE framework, not real
34494     SATA framework. For now, the ata_piix driver is only used
34495     by x86 sc520_cdp board. This patch makes the ata_piix driver
34496     use the new SATA framework, so
34497
34498     - remove the duplicated command stuff
34499     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
34500     - add the CONFIG_CMD_SATA define to sc520_cdp.h
34501
34502     Signed-off-by: Dave Liu <daveliu@freescale.com>
34503
34504 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
34505 Author: Dave Liu <r63238@freescale.com>
34506 Date:   Wed Mar 26 22:49:44 2008 +0800
34507
34508     ata: add the support for SATA framework
34509
34510     - add the SATA framework
34511     - add the SATA command line
34512
34513     Signed-off-by: Dave Liu <daveliu@freescale.com>
34514
34515 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
34516 Author: Dave Liu <r63238@freescale.com>
34517 Date:   Wed Mar 26 22:48:18 2008 +0800
34518
34519     ata: merge the header of ata_piix driver
34520
34521     move the sata.h from include/ to drivers/block/ata_piix.h
34522
34523     Signed-off-by: Dave Liu <daveliu@freescale.com>
34524
34525 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
34526 Author: Dave Liu <r63238@freescale.com>
34527 Date:   Wed Mar 26 22:47:06 2008 +0800
34528
34529     ata: merge the ata_piix driver
34530
34531     move the cmd_sata.c from common/ to drivers/ata_piix.c,
34532     the cmd_sata.c have some part of ata_piix controller drivers.
34533     consolidate the driver to have better framework.
34534
34535     Signed-off-by: Dave Liu <daveliu@freescale.com>
34536
34537 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
34538 Author: Markus Klotzbuecher <mk@denx.de>
34539 Date:   Wed Mar 26 18:26:43 2008 +0100
34540
34541     USB, Storage: fix a bug introduced in commit
34542     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
34543     to only print only information on one storage device, but not for
34544     multiple.
34545
34546     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34547
34548 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
34549 Author: Anatolij Gustschin <agust@denx.de>
34550 Date:   Wed Mar 26 17:47:44 2008 +0100
34551
34552     Fix compilation error in cmd_usb.c
34553
34554     This patch fixes compilation error
34555     cmd_usb.c: In function 'do_usb':
34556     cmd_usb.c:552: error: void value not ignored as it ought to be
34557
34558     Signed-off-by: Anatolij Gustschin <agust@denx.de>
34559     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34560
34561 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
34562 Author: Kumar Gala <galak@kernel.crashing.org>
34563 Date:   Wed Mar 26 08:53:53 2008 -0500
34564
34565     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
34566
34567     Provide a board_lmb_reserve helper function to ensure we reserve
34568     the page of memory we are using for the boot page translation code.
34569
34570     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34571
34572 commit 79679d80021ab095e639e250ca472fe526da02e2
34573 Author: Kumar Gala <galak@kernel.crashing.org>
34574 Date:   Wed Mar 26 08:34:25 2008 -0500
34575
34576     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
34577
34578     The following changes are needed to be inline with ePAPR v0.81:
34579
34580     * r4, r5 and now always set to 0 on boot release
34581     * r7 is used to pass the size of the initial map area (IMA)
34582     * EPAPR_MAGIC value changed for book-e processors
34583     * changes in the spin table layout
34584     * spin table supports a 64-bit physical release address
34585
34586     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34587
34588 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
34589 Author: Jon Loeliger <jdl@freescale.com>
34590 Date:   Wed Mar 19 15:02:07 2008 -0500
34591
34592     FSL: Clean up board/freescale/common/Makefile
34593
34594     Each file that can be built here now follows some
34595     CONFIG_ option so that they are appropriately built
34596     or not, as needed.  And CONFIG_ defines were added
34597     to various board config files to make sure that happens.
34598
34599     The other board/freescale/*/Makefiles no longer need
34600     to reach up and over into ../common to build their
34601     individually needed files any more.
34602
34603     Boards that are CDS specific were renamed with cds_ prefix.
34604
34605     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34606
34607 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
34608 Author: Kumar Gala <galak@kernel.crashing.org>
34609 Date:   Wed Feb 27 22:00:27 2008 -0600
34610
34611     85xx: Fix merge duplication
34612
34613     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
34614
34615     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34616
34617 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
34618 Author: James Yang <James.Yang@freescale.com>
34619 Date:   Tue Feb 12 16:35:07 2008 -0600
34620
34621     85xx: Expand CCSR space with more DDR controller registers.
34622
34623     Signed-off-by: James Yang <James.Yang@freescale.com>
34624     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34625     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34626
34627 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
34628 Author: James Yang <James.Yang@freescale.com>
34629 Date:   Fri Feb 8 18:05:08 2008 -0600
34630
34631     85xx: Speed up get_ddr_freq() and get_bus_freq()
34632
34633     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
34634     called.  However, get_sys_info() recalculates extraneous information when
34635     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
34636     values from global_data instead.
34637
34638     Signed-off-by: James Yang <James.Yang@freescale.com>
34639     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34640
34641 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
34642 Author: James Yang <James.Yang@freescale.com>
34643 Date:   Fri Feb 8 16:46:27 2008 -0600
34644
34645     85xx: Show DDR memory data rate in addition to the memory clock frequency.
34646
34647     Show the DDR memory data rate in addition to the memory clock
34648     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
34649     memory clock.
34650
34651     Signed-off-by: James Yang <James.Yang@freescale.com>
34652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34653
34654 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
34655 Author: James Yang <James.Yang@freescale.com>
34656 Date:   Fri Feb 8 16:44:53 2008 -0600
34657
34658     85xx: get_tbclk() speed up and rounding fix
34659
34660     Speed up get_tbclk() by referencing pre-computed bus clock
34661     frequency value from global data instead of sys_info_t.  Fix
34662     rounding of result to nearest; previously it was rounding
34663     upwards.
34664
34665     Signed-off-by: James Yang <James.Yang@freescale.com>
34666     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34667
34668 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
34669 Author: Andy Fleming <afleming@freescale.com>
34670 Date:   Wed Feb 6 01:19:40 2008 -0600
34671
34672     Update SVR numbers to expand support
34673
34674     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
34675     is used to distinguish certain variants within an SOC family.  To
34676     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
34677     constants to reflect the larger value.  We also add SVR numbers for all
34678     of the current variants.  Finally, to make things neater, rather than
34679     use an enormous switch statement to print out the CPU type, we create
34680     and array of SVR/name pairs (using a macro), and print out the CPU name
34681     that matches the SVR SOC version.
34682
34683     Signed-off-by: Andy Fleming <afleming@freescale.com>
34684
34685 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
34686 Author: Andy Fleming <afleming@freescale.com>
34687 Date:   Wed Feb 6 01:12:57 2008 -0600
34688
34689     Add the Freescale PCI device IDs
34690
34691     Signed-off-by: Andy Fleming <afleming@freescale.com>
34692
34693 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
34694 Author: Kumar Gala <galak@kernel.crashing.org>
34695 Date:   Thu Feb 14 11:04:23 2008 -0600
34696
34697     85xx: Added support for multicore boot mechanism
34698
34699     Added the cpu command that provides a generic mechanism to get status,
34700     reset, and release secondary cores in multicore processors.
34701
34702     Added support for using the ePAPR defined spin-table mechanism on 85xx.
34703
34704     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34705     Signed-off-by: Andy Fleming <afleming@freescale.com>
34706
34707 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
34708 Author: Kumar Gala <galak@kernel.crashing.org>
34709 Date:   Thu Jan 17 16:48:33 2008 -0600
34710
34711     85xx: Added support for multicore boot mechanism
34712
34713     Added the cpu command that provides a generic mechanism to get status,
34714     reset, and release secondary cores in multicore processors.
34715
34716     Added support for using the ePAPR defined spin-table mechanism on 85xx.
34717
34718     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34719
34720 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
34721 Author: Kumar Gala <galak@kernel.crashing.org>
34722 Date:   Wed Jan 30 14:55:14 2008 -0600
34723
34724     85xx: Add the concept of CFG_CCSRBAR_PHYS
34725
34726     When we go to 36-bit physical addresses we need to keep the concept of
34727     the physical CCSRBAR address seperate from the virtual one.
34728
34729     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
34730
34731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34732
34733 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
34734 Author: Wolfgang Denk <wd@denx.de>
34735 Date:   Wed Mar 26 15:38:47 2008 +0100
34736
34737     Coding style cleanup.
34738
34739     Signed-off-by: Wolfgang Denk <wd@denx.de>
34740
34741 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
34742 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
34743 Date:   Wed Mar 26 13:02:13 2008 +0100
34744
34745     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
34746
34747     The default settings for RTC DS1337 keeps the OSC
34748     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
34749     turn it off.
34750
34751     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
34752
34753 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
34754 Author: Wolfgang Denk <wd@denx.de>
34755 Date:   Wed Mar 26 11:48:46 2008 +0100
34756
34757     Cleanup coding style, update CHANGELOG
34758
34759     Signed-off-by: Wolfgang Denk <wd@denx.de>
34760
34761 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
34762 Author: Wolfgang Denk <wd@denx.de>
34763 Date:   Wed Mar 26 10:40:12 2008 +0100
34764
34765     README: update documentation (availability, links, etc.)
34766
34767     Signed-off-by: Wolfgang Denk <wd@denx.de>
34768
34769 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
34770 Author: Aras Vaichas <arasv@magtech.com.au>
34771 Date:   Tue Mar 25 12:09:07 2008 +1100
34772
34773     USB Storage, add meaningful return value
34774
34775     This patch changes the "usb storage" command to return success if it
34776     finds a USB storage device, otherwise it returns error.
34777
34778     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34779
34780 commit 18e69a35efbb078403db0c0063986470dad7d082
34781 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34782 Date:   Fri Mar 14 23:20:18 2008 +0300
34783
34784     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
34785
34786     Linux understands "host" (default), "peripheral" and "otg" (broken).
34787     Though, U-Boot doesn't restrict dr_mode variable to these values (think
34788     of renames in future).
34789
34790     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34791     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34792
34793 commit c7604783b236e368f225efb7b3efb418fe20b404
34794 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34795 Date:   Fri Mar 14 23:20:30 2008 +0300
34796
34797     tsec: fix link detection for the RTL8211B PHY
34798
34799     RTL8211B sets link state register after autonegotiation complete,
34800     so with bootdelay=0 RTL8211B will report lack of the link.
34801
34802     To fix this, we should wait for aneg to complete, even if the
34803     link is currently down.
34804
34805     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34806     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34807
34808 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
34809 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34810 Date:   Mon Mar 24 20:47:09 2008 +0300
34811
34812     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
34813
34814     device_type = "soc" is being deprecated, newer device trees will use
34815     "fsl,soc" and/or "fsl,immr" for the soc nodes.
34816
34817     This patch also adds clock-frequency property for soc nodes (the same
34818     value as bus-frequency).
34819
34820     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34821
34822 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
34823 Author: Joe D'Abbraccio <ljd015@freescale.com>
34824 Date:   Mon Mar 24 13:00:59 2008 -0400
34825
34826     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
34827
34828     With the original value of 1/2 clock cycle delay, the system ran relatively
34829     stable except when we run benchmarks that are intensive users of memory.
34830     When I run samba connected disk with a HDBENCH test, the system locks-up
34831     or reboots sporadically.
34832
34833     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
34834
34835 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
34836 Author: Scott Wood <scottwood@freescale.com>
34837 Date:   Mon Mar 24 12:44:13 2008 -0500
34838
34839     mpc83xx: Set PCI I/O bus-address base to zero.
34840
34841     The device trees for these boards describe PCI I/O as starting from
34842     address zero from the device's perspective.
34843
34844     Placing I/O elsewhere may cause problems with certain PCI boards, and may
34845     cause problems with Linux.
34846
34847     Signed-off-by: Scott Wood <scottwood@freescale.com>
34848
34849 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
34850 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34851 Date:   Mon Mar 24 20:47:05 2008 +0300
34852
34853     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
34854
34855     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
34856     This patch fixes "system time drifting" problem.
34857
34858     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34859
34860 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
34861 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34862 Date:   Mon Mar 24 20:47:02 2008 +0300
34863
34864     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
34865
34866     This is needed to update /choosen/linux,stdout-path properly.
34867
34868     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34869
34870 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
34871 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34872 Date:   Mon Mar 24 20:47:00 2008 +0300
34873
34874     mpc83xx: MPC8360E-RDK: add dhcp command
34875
34876     Plus modify environment to use it and remove bootfile env variable,
34877     it is internal and CONFIG_BOOTFILE is used for these purposes.
34878
34879     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34880
34881 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
34882 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34883 Date:   Mon Mar 24 20:46:57 2008 +0300
34884
34885     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
34886
34887     Current DDR setup easily causes memory corruption, this patch fixes it.
34888
34889     Also fix TIMING_CFG0_MRS_CYC definition.
34890
34891     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34892
34893 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
34894 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34895 Date:   Mon Mar 24 20:46:53 2008 +0300
34896
34897     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
34898
34899     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
34900     controller and FHCI (QE USB).
34901
34902     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34903
34904 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
34905 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34906 Date:   Mon Mar 24 20:46:51 2008 +0300
34907
34908     mpc83xx: MPC8360E-RDK: add support for NAND
34909
34910     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34911
34912 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
34913 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34914 Date:   Mon Mar 24 20:46:46 2008 +0300
34915
34916     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
34917
34918     This is needed for BCM PHYs to work on this board.
34919
34920     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34921
34922 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
34923 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34924 Date:   Mon Mar 24 20:46:34 2008 +0300
34925
34926     uec: add support for Broadcom BCM5481 Gigabit PHY
34927
34928     This patch adds basic support for Broadcom BCM5481 PHY.
34929
34930     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
34931     Peter Barada <peterb@logicpd.com>.
34932
34933     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34934
34935 commit 6a600c3a1876bc203445df4f0fd6b12648259666
34936 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34937 Date:   Mon Mar 24 20:46:28 2008 +0300
34938
34939     uec: add support for RGMII_RXID interface mode
34940
34941     PHY drivers will use it to setup software delay between RXD and RXC
34942     signals.
34943
34944     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34945
34946 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
34947 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34948 Date:   Mon Mar 24 20:46:24 2008 +0300
34949
34950     uec: add support for gbit mii status readings
34951
34952     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34953
34954 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
34955 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34956 Date:   Mon Mar 24 17:40:47 2008 +0300
34957
34958     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
34959
34960     This is primarily for the early console support.
34961
34962     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34963
34964 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
34965 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34966 Date:   Mon Mar 24 17:40:43 2008 +0300
34967
34968     83xx: initialize serdes for MPC837XRDB boards
34969
34970     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
34971     On the MPC8378ERDB: 2 PCI-E
34972     On the MPC8379ERDB: 4 SATA
34973
34974     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34975
34976 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
34977 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34978 Date:   Mon Mar 24 17:40:32 2008 +0300
34979
34980     83xx: serdes setup routines
34981
34982     This patch adds few routines to configure serdes on 837x targets.
34983
34984     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34985
34986 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
34987 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34988 Date:   Mon Mar 24 17:40:27 2008 +0300
34989
34990     83xx: split COBJS onto separate lines
34991
34992     ..plus get rid of some #ifdefs in the .c files.
34993
34994     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34995
34996 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
34997 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34998 Date:   Mon Mar 24 17:40:23 2008 +0300
34999
35000     83xx: nand support for MPC837XRDB boards
35001
35002     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
35003
35004 commit 82e45a204190593e8613145a928f998fb8c909c4
35005 Author: Jerry Van Baren <gvb.uboot@gmail.com>
35006 Date:   Tue Mar 18 21:44:41 2008 -0400
35007
35008     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
35009
35010     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35011     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35012
35013 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
35014 Author: Michael Barkowski <michael.barkowski@freescale.com>
35015 Date:   Thu Mar 20 13:15:39 2008 -0400
35016
35017     mpc8323erdb: remove RTC and add EEPROM
35018
35019     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
35020
35021     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
35022     Acked-by: Kim Phillips <kim.phillips@freescale.com>
35023
35024 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
35025 Author: Michael Barkowski <michael.barkowski@freescale.com>
35026 Date:   Thu Mar 20 13:15:34 2008 -0400
35027
35028     mpc8323erdb: Improve the system performance
35029
35030     The following changes are based on kernel UCC ethernet performance:
35031
35032     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
35033     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
35034         switch to enable this setting.
35035
35036     The following changes are based on the App Note AN3369 and
35037     verified to improve memory latency using LMbench:
35038
35039     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
35040     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
35041         previously.
35042     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
35043         Twr=15ns, and this was already the setting in DDR_MODE)
35044     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
35045         Trp=15ns)
35046     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
35047         Tras=40ns)
35048     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
35049         Trcd=15ns)
35050     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
35051         Trfc=75ns)
35052     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
35053         on Tfaw=50ns)
35054     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
35055         on CL=3 and WL=2).
35056
35057     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
35058     Acked-by: Kim Phillips <kim.phillips@freescale.com>
35059
35060 commit fc549c871f43933396a5b3e21d897023d4b31b8d
35061 Author: Michael Barkowski <michael.barkowski@freescale.com>
35062 Date:   Thu Mar 20 13:15:28 2008 -0400
35063
35064     mpc8323erdb: use readable DDR config macros
35065
35066     Use available shift/mask macros to define DDR configuration.
35067
35068     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
35069     Acked-by: Kim Phillips <kim.phillips@freescale.com>
35070
35071 commit 89c7784ed90ba50301eec521144f95111e472906
35072 Author: Timur Tabi <timur@freescale.com>
35073 Date:   Fri Feb 8 13:15:55 2008 -0600
35074
35075     83xx: Add Vitesse VSC7385 firmware uploading
35076
35077     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
35078     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
35079     Cleaned up the board header files to make selecting the VSC7385 easier to
35080     control.
35081
35082     Signed-off-by: Timur Tabi <timur@freescale.com>
35083     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35084
35085 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
35086 Author: Timur Tabi <timur@freescale.com>
35087 Date:   Fri Feb 8 13:15:54 2008 -0600
35088
35089     NET: Add Vitesse VSC7385 firmware uploading
35090
35091     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
35092     and other boards.  A small firwmare must be uploaded to its on-board memory
35093     before it can be enabled.  This patch adds the code which uploads firmware
35094     (but not the firmware itself).
35095
35096     Previously, this feature was provided by a U-Boot application that was
35097     made available only on Freescale BSPs.  The VSC7385 firmware must still
35098     be obtained separately, but at least there is no longer a need for a separate
35099     application.
35100
35101     Signed-off-by: Timur Tabi <timur@freescale.com>
35102     Acked-by: Ben Warren <biggerbadderben@gmail.com>
35103
35104 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
35105 Author: Wolfgang Denk <wd@denx.de>
35106 Date:   Wed Mar 26 00:52:10 2008 +0100
35107
35108     Coding Style cleanyp; update CHANGELOG
35109
35110     Signed-off-by: Wolfgang Denk <wd@denx.de>
35111
35112 commit 43ddd9c820fec44816188f53346b464e20b3142d
35113 Author: Jerry Van Baren <gvb.uboot@gmail.com>
35114 Date:   Sat Mar 22 14:23:49 2008 -0400
35115
35116     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
35117
35118     These defines embedded the u-boot env variables and/or the bd_t structure
35119     in the fdt blob.  The conclusion of discussion on the u-boot email list
35120     was that embedding these in the fdt blob is not useful: there are better
35121     ways of passing the data (in fact, the fdt blob itself replaces the
35122     bd_t struct).
35123
35124     The only board that enables these is the stxxtc and they don't appear
35125     to be used by linux.
35126
35127     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35128     Acked-by: Kim Phillips <kim.phillips@freescale.com>
35129
35130 commit 22ed2285743359fd1fe73e411dff914b2256e68f
35131 Author: Stefan Roese <sr@denx.de>
35132 Date:   Mon Mar 17 10:49:25 2008 +0100
35133
35134     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
35135
35136     Signed-off-by: Stefan Roese <sr@denx.de>
35137
35138 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
35139 Author: Kyungmin Park <kmpark@infradead.org>
35140 Date:   Mon Mar 17 08:54:06 2008 +0900
35141
35142     Add Flex-OneNAND booting support
35143
35144     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
35145     using a NOR Flash interface. This on-chip integration enables system designers
35146     to reduce external system logic and use high-density NAND Flash
35147     in applications that would otherwise have to use more NOR components.
35148
35149     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
35150     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
35151     that require low reliability and high density, SLC area of Flex-OneNAND
35152     to store data that need high reliability and high performance. Flex-OneNAND
35153     can let users take advantage of storing these two different types of data
35154     into one chip, which is making Flex-OneNAND more cost- and space-effective.
35155
35156     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
35157
35158 commit c512389cc4a10253249271ff6c887c6dab1f0db2
35159 Author: André Schwarz <andre.schwarz@matrix-vision.de>
35160 Date:   Thu Mar 13 13:50:52 2008 +0100
35161
35162     MPC5200: support setup without FEC
35163
35164     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
35165     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
35166
35167     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
35168     Acked-by: Grant Likely <grant.likely@secretlab.ca>
35169
35170 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
35171 Author: Jon Loeliger <jdl@freescale.com>
35172 Date:   Wed Mar 5 18:05:46 2008 -0600
35173
35174     FSL: Move board/mpc8266ads under board/freescale
35175
35176     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35177
35178 commit 7f1d846e5c5754449c286587d099d85246062772
35179 Author: Jon Loeliger <jdl@freescale.com>
35180 Date:   Wed Mar 5 18:05:47 2008 -0600
35181
35182     FSL: Move board/mpc7448hpc2 under board/freescale
35183
35184     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35185
35186 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
35187 Author: Jon Loeliger <jdl@freescale.com>
35188 Date:   Wed Mar 5 18:05:45 2008 -0600
35189
35190     FSL: Move board/mpc8260ads under board/freescale
35191
35192     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35193
35194 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
35195 Author: goda.yusuke <goda.yusuke@renesas.com>
35196 Date:   Wed Mar 5 17:08:33 2008 +0900
35197
35198     net: Add support AX88796L ethernet device
35199
35200     AX88796L is device of NE2000 compatible.
35201     This patch support AX88796L ethernet device.
35202
35203     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
35204     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35205
35206 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
35207 Author: Wolfgang Denk <wd@denx.de>
35208 Date:   Tue Mar 25 22:50:41 2008 +0100
35209
35210     ne2000 driver: change #ifdef to Makefile conditional compilation
35211
35212     Signed-off-by: Wolfgang Denk <wd@denx.de>
35213
35214 commit e710185aae90c64d39c2d453e40e58ceefe4f250
35215 Author: goda.yusuke <goda.yusuke@renesas.com>
35216 Date:   Wed Mar 5 17:08:20 2008 +0900
35217
35218     net: Divided code of NE2000 ethernet driver
35219
35220     There are more devices of the NE2000 base.
35221     A present code is difficult for us to support more devices.
35222     To support more NE2000 clone devices, separated the function.
35223
35224     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
35225     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35226
35227 commit 395bce4f59a507a60a475f7ee46bed47de9482df
35228 Author: Mike Frysinger <vapier@gentoo.org>
35229 Date:   Sun Feb 24 23:58:13 2008 -0500
35230
35231     net/Blackfin: move on-chip MAC driver into drivers/net/
35232
35233     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
35234     directory, but it is not board specific, so relocate it to the drivers dir
35235     so that other Blackfin ports can utilize it.
35236
35237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35238
35239 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
35240 Author: Mike Frysinger <vapier@gentoo.org>
35241 Date:   Sun Feb 24 23:52:35 2008 -0500
35242
35243     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
35244
35245     Since the "ssync" instruction may have hardware anomalies associated with
35246     it, have the smc91111 driver use the SSYNC macro rather than invoking it
35247     directly.  We workaround all the anomalies via this macro.
35248
35249     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35250
35251 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
35252 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
35253 Date:   Sun Feb 17 22:57:47 2008 +0000
35254
35255     8xx: Update OF support on 8xx
35256
35257     This patch does some shifting around of OF support on 8xx.
35258
35259     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
35260
35261 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
35262 Author: Kumar Gala <galak@kernel.crashing.org>
35263 Date:   Fri Feb 15 15:16:18 2008 -0600
35264
35265     ppc: Allow boards to specify how much memory they can map
35266
35267     For historical reasons we limited the stack to 256M because some boards
35268     could only map that much via BATS.  However newer boards are capable of
35269     mapping more memory (for example 85xx is capble of doing up to 2G).
35270
35271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35272
35273 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
35274 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
35275 Date:   Fri Feb 15 01:05:58 2008 +0000
35276
35277     8xx : Add OF support to Adder875 board port - resubmit
35278
35279     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
35280
35281 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
35282 Author: Kumar Gala <galak@kernel.crashing.org>
35283 Date:   Thu Feb 14 20:44:42 2008 -0600
35284
35285     Add setexpr command
35286
35287     Add a simple expr style command that will set an env variable as the result
35288     of the command.  This allows us to do simple math in shell.  The following
35289     operations are supported: &, |, ^, +, -, *, /.
35290
35291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35292
35293 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
35294 Author: Jon Loeliger <jdl@freescale.com>
35295 Date:   Wed Mar 5 17:27:48 2008 -0600
35296
35297     FSL: Move board/mpc7448hpc2 under board/freescale
35298
35299     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35300
35301 commit 449c703374a8868453425e15da7e2f76221b72e4
35302 Author: Jon Loeliger <jdl@freescale.com>
35303 Date:   Wed Mar 5 17:21:43 2008 -0600
35304
35305     FSL: Move board/mpc8266ads under board/freescale
35306
35307     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35308
35309 commit 5863577989ad689427bb750107e9a75f1c1645d2
35310 Author: Jon Loeliger <jdl@freescale.com>
35311 Date:   Wed Mar 5 16:41:41 2008 -0600
35312
35313     FSL: Move board/mpc8260ads under board/freescale
35314
35315     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35316
35317 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
35318 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35319 Date:   Tue Mar 25 21:30:08 2008 +0900
35320
35321     [MIPS] Move gth2_config from ARM section to MIPS
35322
35323     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35324
35325 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
35326 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35327 Date:   Tue Mar 25 21:30:07 2008 +0900
35328
35329     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
35330
35331     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35332
35333 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
35334 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35335 Date:   Tue Mar 25 21:30:07 2008 +0900
35336
35337     [MIPS] Fix dcache_status()
35338
35339     You can't judge UNCACHED by Config.K0 LSB.
35340
35341     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35342
35343 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
35344 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35345 Date:   Tue Mar 25 21:30:07 2008 +0900
35346
35347     [MIPS] Introduce _machine_restart
35348
35349     Handles machine specific functions by using weak functions.
35350
35351     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35352
35353 commit decaba6f5cf386d569ac3997bebb871b966c6b18
35354 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35355 Date:   Tue Mar 25 21:30:07 2008 +0900
35356
35357     [MIPS] Cleanup CP0 Status initialization
35358
35359     Add setup_c0_status from Linux. For the moment we disable interrupts, set
35360     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
35361     reset-time configuration and will work well across most processors.
35362
35363     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35364
35365 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
35366 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35367 Date:   Tue Mar 25 21:30:07 2008 +0900
35368
35369     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
35370
35371     Without this change, we'll be suffering from deffered WATCH exception
35372     once Status.EXL is cleared. Make sure Cause.WP is cleared.
35373
35374     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35375
35376 commit 26138623230ca2bad3c78e05a65527ea70c8b688
35377 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35378 Date:   Tue Mar 25 21:30:07 2008 +0900
35379
35380     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
35381
35382     Move things to appropriate place.
35383
35384     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35385
35386 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
35387 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35388 Date:   Tue Mar 25 21:30:06 2008 +0900
35389
35390     [MIPS] Implement flush_cache()
35391
35392     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
35393     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
35394     function is used not only in U-Boot specfic programs but also at loading
35395     target binaries.
35396
35397     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35398
35399 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
35400 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35401 Date:   Tue Mar 25 21:30:06 2008 +0900
35402
35403     [MIPS] Fix I-/D-cache initialization loops
35404
35405     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
35406     again per a loop for I-cache initialization. But according to 'See MIPS
35407     Run', we're encouraged to use three separate loops rather than combining
35408     them *for both I- and D-cache*. This patch tries to fix this.
35409
35410     In accordance with fixing above, mips_init_[id]cache are separated from
35411     mips_cache_reset(), and rewrite cache loops are completely rewritten with
35412     useful macros.
35413
35414     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35415
35416 commit 1898840797c7f50799377bd5b285a8a93a82c419
35417 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35418 Date:   Tue Mar 25 21:30:06 2008 +0900
35419
35420     [MIPS] Replace memory clearance code with f_fill64
35421
35422     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
35423
35424     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35425
35426 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
35427 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35428 Date:   Tue Mar 25 21:30:06 2008 +0900
35429
35430     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
35431
35432     This patch replaces the current function definitions with NESTED, LEAF
35433     and END macro. They specify some more additional information about the
35434     function; an alignment of symbol, type of symbol, stack frame usage, etc.
35435     These information explicitly tells the assembler and the debugger about
35436     the types of code we want to generate.
35437
35438     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35439
35440 commit 282223a607c611425fa33f5428f8eae6636972bb
35441 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35442 Date:   Tue Mar 25 11:43:17 2008 +0900
35443
35444     [MIPS] asm headers' updates
35445
35446     Make some asm headers adjusted to the latest Linux kernel.
35447
35448     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35449
35450 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
35451 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35452 Date:   Tue Mar 25 11:39:29 2008 +0900
35453
35454     [MIPS] Request for the 'mips_cache_lock()' removal
35455
35456     The initial intension of having mips_cache_lock() was to use the cache
35457     as memory for temporary stack use so that a C environment can be set up
35458     as early as possible.
35459
35460     But now mips_cache_lock() follow lowlevel_init(). We've already have the
35461     real memory initilaized at this point, therefore we could/should use it.
35462     No reason to lock at all.
35463
35464     Other problems:
35465
35466     Cache locking is not consistent across MIPS implementaions. Some imple-
35467     mentations don't support locking at all. The style of locking varies -
35468     some support per line locking, others per way, etc. Some parts use bits
35469     in status registers instead of cache ops. Current mips_cache_lock() is
35470     not necessarily general-purpose.
35471
35472     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
35473     they are never get unlocked, so the code relies on whatever gets loaded
35474     after U-Boot to re-initialize the cache and clear the locks. We're sup-
35475     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
35476     but leave the situation as it is for a long time.
35477
35478     For these reasons, I proposed the removal of mips_cache_lock() from the
35479     global start-up code.
35480
35481     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
35482     *things have changed*. If he wants the same behavior as before, he needs
35483     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
35484
35485     If we don't have any regression report through several releases, then
35486     we'll remove codes entirely.
35487
35488     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35489     Acked-by: Andrew Dyer <amdyer@gmail.com>
35490
35491 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
35492 Author: Yuri Tikhonov <yur@emcraft.com>
35493 Date:   Mon Mar 24 11:30:54 2008 +0100
35494
35495     lwmon5 SYSMON POST: fix backlight control
35496
35497     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
35498     run on the board, then the SYSMON POST controls the display backlight
35499     (doesn't switch backlight ON if POST FAILED, and does switch the
35500     backlight ON if PASSED).
35501
35502     If not, then the video driver controls the display backlight (just
35503     switch ON the backlight upon initialization).
35504
35505     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35506
35507 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
35508 Author: Yuri Tikhonov <yur@emcraft.com>
35509 Date:   Mon Mar 24 11:29:14 2008 +0100
35510
35511     lwmon5 SYSMON POST: fix handling of negative temperatures
35512
35513     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
35514
35515     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35516
35517 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
35518 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35519 Date:   Fri Mar 7 16:04:25 2008 +0900
35520
35521     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
35522
35523     In current source code, when the device number of PCI is 0, process PCI
35524     bridge without fail. However, when the device number is 0, it is not PCI
35525     always bridge. There are times when device of PCI allocates.
35526
35527     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
35528     use this patch.
35529
35530     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35531     Acked-by: Stefan Roese <sr@denx.de>
35532
35533 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
35534 Author: Yuri Tikhonov <yur@emcraft.com>
35535 Date:   Fri Mar 21 09:18:40 2008 +0100
35536
35537     LWMON5: fix dsPIC POST
35538
35539     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
35540
35541     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
35542
35543 commit 388b82fddc7c05596f3f615f190da0448227dc82
35544 Author: Bartlomiej Sieka <tur@semihalf.com>
35545 Date:   Thu Mar 20 23:23:13 2008 +0100
35546
35547     [new uImage] Enable new uImage support for the pcs440ep board.
35548
35549     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35550
35551 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
35552 Author: Bartlomiej Sieka <tur@semihalf.com>
35553 Date:   Thu Mar 20 23:23:13 2008 +0100
35554
35555     [new uImage] Do not compile new uImage format support by default
35556
35557     Disable default building of new uImage format support in preparation
35558     for merge with the master. Support for new format can be enabled on
35559     a per-board basis, by defining the following in the board's config file:
35560
35561     #define CONFIG_FIT             1
35562     #define CONFIG_OF_LIBFDT       1
35563
35564     This can be optionally defined to give more verbose output:
35565
35566     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
35567
35568     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35569
35570 commit dafaede8a46c7159310239e036c93e31c6374487
35571 Author: Bartlomiej Sieka <tur@semihalf.com>
35572 Date:   Thu Mar 20 23:20:31 2008 +0100
35573
35574     [new uImage] Disable debuging output in preparation for merge with master
35575
35576     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35577
35578 commit fbe7a155027beacebaee9b32e1ada781fe924bca
35579 Author: Bartlomiej Sieka <tur@semihalf.com>
35580 Date:   Thu Mar 20 19:38:45 2008 +0100
35581
35582     [new uImage] Compilation and new uImage handling fixes for imxtract
35583
35584     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
35585     include/config_cmd_default.h. Fix few warnings and handling of new format
35586     images.
35587
35588     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35589
35590 commit 36cc8cbb3379d5166f882641123521735c469f92
35591 Author: Bartlomiej Sieka <tur@semihalf.com>
35592 Date:   Thu Mar 20 23:10:19 2008 +0100
35593
35594     [new uImage] Fix autoscr command used with new uImage format
35595
35596     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35597
35598 commit 43142e817f0597be412e7cbe19413f5532eafa5d
35599 Author: Bartlomiej Sieka <tur@semihalf.com>
35600 Date:   Thu Mar 20 23:10:19 2008 +0100
35601
35602     [new uImage] Fix *.its files location in documentation
35603
35604     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35605
35606 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
35607 Author: Wolfgang Denk <wd@denx.de>
35608 Date:   Thu Mar 20 22:01:38 2008 +0100
35609
35610     lwmon5 POST: remove unreachable code
35611
35612     plus some coding style cleanup
35613
35614     Signed-off-by: Wolfgang Denk <wd@denx.de>
35615
35616 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
35617 Author: Yuri Tikhonov <yur@emcraft.com>
35618 Date:   Thu Mar 20 17:56:04 2008 +0300
35619
35620     LWMON5: POST RTC fix
35621
35622     Modify the RTC API to provide one a status for the time reported by
35623     the rtc_get() function:
35624       0 - a reliable time is guaranteed,
35625     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
35626           and so on).
35627
35628     The RTC chip drivers are responsible for providing this info if the
35629     corresponding chip supports such functionality. If not - always
35630     report that the time is reliable.
35631
35632     The POST RTC test was modified to detect the RTC faults utilizing
35633     this new rtc_get() feature.
35634
35635     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35636
35637 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
35638 Author: Martin Krause <martin.krause@tqs.de>
35639 Date:   Wed Mar 19 14:25:14 2008 +0100
35640
35641     TQM5200B: update MTD partition layout
35642
35643     - insert partition for dtb blob to TQM5200B MTD layout
35644     - set env variables dependent on the configured board
35645       (TQM5200 or TQM5200B)
35646
35647     Signed-off-by: Martin Krause <martin.krause@tqs.de>
35648
35649 commit f0105727d132f56a21fa3ed8b162309cca6cac44
35650 Author: Stefan Roese <sr@denx.de>
35651 Date:   Wed Mar 19 07:09:26 2008 +0100
35652
35653     CFI: Small cleanup for FLASH_SHOW_PROGRESS
35654
35655     With this patch we don't need that many #ifdef's in the code. It moves
35656     the subtraction into the macro and defines a NOP-macro when
35657     CONFIG_FLASH_SHOW_PROGRESS is not defined.
35658
35659     Signed-off-by: Stefan Roese <sr@denx.de>
35660     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
35661
35662 commit 9a042e9ca512beaaa2cb450274313fc477141241
35663 Author: Jerry Van Baren <gvb.uboot@gmail.com>
35664 Date:   Sat Mar 8 13:48:01 2008 -0500
35665
35666     Flash programming progress countdown.
35667
35668     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35669
35670 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
35671 Author: Bartlomiej Sieka <tur@semihalf.com>
35672 Date:   Wed Mar 19 10:00:06 2008 +0100
35673
35674     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
35675
35676     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35677
35678 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
35679 Author: David Gibson <david@gibson.dropbear.id.au>
35680 Date:   Mon Feb 18 18:09:04 2008 +1100
35681
35682     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
35683
35684     Since fdt_node_offset_by_compatible() was converted to the new
35685     fdt_next_node() iterator, a chunk of initialization code became
35686     redundant, but was not removed by oversight.  This patch cleans it up.
35687
35688     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35689
35690 commit d0ccb9b140b472039732de102fc14597eedb14df
35691 Author: David Gibson <david@gibson.dropbear.id.au>
35692 Date:   Mon Feb 18 18:06:31 2008 +1100
35693
35694     libfdt: Trivial cleanup for CHECK_HEADER)
35695
35696     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
35697     However, there are a handful of functions (fdt_move, rw_check_header,
35698     fdt_open_into) from other files which could also use it (currently
35699     they open-code something more-or-less identical).  Therefore, this
35700     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
35701     places.
35702
35703     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35704
35705 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
35706 Author: Kumar Gala <galak@kernel.crashing.org>
35707 Date:   Wed Feb 20 14:32:36 2008 -0600
35708
35709     Fix fdt boardsetup command parsing
35710
35711     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
35712
35713     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35714
35715 commit 804887e6001e2f00bea11431bf34d6d472512cda
35716 Author: Kumar Gala <galak@kernel.crashing.org>
35717 Date:   Fri Feb 15 03:34:36 2008 -0600
35718
35719     Add sub-commands to fdt
35720
35721     fdt header                          - Display header info
35722     fdt bootcpu <id>                    - Set boot cpuid
35723     fdt memory <addr> <size>            - Add/Update memory node
35724     fdt rsvmem print                    - Show current mem reserves
35725     fdt rsvmem add <addr> <size>        - Add a mem reserve
35726     fdt rsvmem delete <index>           - Delete a mem reserves
35727
35728     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35729
35730 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
35731 Author: David Gibson <david@gibson.dropbear.id.au>
35732 Date:   Thu Feb 14 16:50:34 2008 +1100
35733
35734     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
35735
35736     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
35737     node which has NOP tags interspersed with its properties.  In this
35738     case fdt_add_subnode_namelen() will put the new subnode before the
35739     first NOP tag, even if there are properties after it, which will
35740     result in an invalid blob.
35741
35742     This patch fixes the bug, and adds a testcase for it.
35743
35744     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35745
35746 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
35747 Author: David Gibson <david@gibson.dropbear.id.au>
35748 Date:   Tue Feb 12 11:58:31 2008 +1100
35749
35750     libfdt: Add and use a node iteration helper function.
35751
35752     This patch adds an fdt_next_node() function which can be used to
35753     iterate through nodes of the tree while keeping track of depth.  This
35754     function is used to simplify the iteration code in a lot of other
35755     functions, and is also exported for use by library users.
35756
35757     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35758
35759 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
35760 Author: David Gibson <david@gibson.dropbear.id.au>
35761 Date:   Fri Jan 11 14:55:05 2008 +1100
35762
35763     libfdt: Add fdt_set_name() function
35764
35765     This patch adds an fdt_set_name() function to libfdt, mirroring
35766     fdt_get_name().  This is a r/w function which alters the name of a
35767     given device tree node.
35768
35769     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
35770
35771 commit 23e20aa6488e6c0622496549861bfdc74108debe
35772 Author: Yuri Tikhonov <yur@pollux.denx.de>
35773 Date:   Tue Mar 18 13:33:30 2008 +0100
35774
35775     lwmon5: Fix register test logic to match the specific GDC h/w.
35776
35777     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35778     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35779
35780 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
35781 Author: Yuri Tikhonov <yur@pollux.denx.de>
35782 Date:   Tue Mar 18 13:27:57 2008 +0100
35783
35784     Fix backlight in the lwmon5 POST.
35785
35786     Backlight was switched on even when temperature was too low.
35787
35788     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35789     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35790
35791 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
35792 Author: Yuri Tikhonov <yur@pollux.denx.de>
35793 Date:   Wed Feb 6 18:48:36 2008 +0100
35794
35795     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).
35796
35797      To enable this, alternative, configuration the U-Boot board configuration
35798     file for lwmon5 includes the definitions of alternative addresses for header
35799     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
35800
35801      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
35802     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
35803     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
35804
35805     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35806
35807 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
35808 Author: Yuri Tikhonov <yur@pollux.denx.de>
35809 Date:   Mon Feb 4 17:11:53 2008 +0100
35810
35811     Add support for the lwmon5 board reset via GPIO58.
35812
35813     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35814     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35815
35816 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
35817 Author: Yuri Tikhonov <yur@pollux.denx.de>
35818 Date:   Mon Feb 4 17:09:55 2008 +0100
35819
35820     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
35821
35822     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35823     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35824
35825 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
35826 Author: Yuri Tikhonov <yur@pollux.denx.de>
35827 Date:   Mon Feb 4 14:11:03 2008 +0100
35828
35829     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.
35830
35831     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35832     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35833
35834 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
35835 Author: Yuri Tikhonov <yur@pollux.denx.de>
35836 Date:   Mon Feb 4 14:10:42 2008 +0100
35837
35838     The patch adds new POST tests for the Lwmon5 board. These are:
35839
35840     * External Watchdog test;
35841     * dsPIC tests;
35842     * FPGA test;
35843     * GDC test;
35844     * Sysmon tests.
35845
35846     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35847     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35848
35849 commit c2ed33efbfff5767bca236828e021c55fd547b6c
35850 Author: Yuri Tikhonov <yur@pollux.denx.de>
35851 Date:   Mon Feb 4 14:10:01 2008 +0100
35852
35853     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
35854
35855     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35856
35857 commit 3a5d1e7f1309998791702b2a559e3126781746b9
35858 Author: Yuri Tikhonov <yur@pollux.denx.de>
35859 Date:   Tue Mar 18 13:33:30 2008 +0100
35860
35861     lwmon5: Fix register test logic to match the specific GDC h/w.
35862
35863     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35864     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35865
35866 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
35867 Author: Yuri Tikhonov <yur@pollux.denx.de>
35868 Date:   Tue Mar 18 13:27:57 2008 +0100
35869
35870     Fix backlight in the lwmon5 POST.
35871
35872     Backlight was switcehd on even when temperature was too low.
35873
35874     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35875     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35876
35877 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
35878 Author: Yuri Tikhonov <yur@pollux.denx.de>
35879 Date:   Wed Feb 6 18:48:36 2008 +0100
35880
35881      The patch introduces the alternative configuration of the log buffer for
35882     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
35883     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
35884     PPC440EPX_GPT0_COMP5).
35885
35886      To enable this, alternative, configuration the U-Boot board configuration
35887     file for lwmon5 includes the definitions of alternative addresses for header
35888     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
35889
35890      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
35891     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
35892     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
35893
35894     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35895
35896 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
35897 Author: Yuri Tikhonov <yur@pollux.denx.de>
35898 Date:   Mon Feb 4 17:11:53 2008 +0100
35899
35900     Add support for the lwmon5 board reset via GPIO58.
35901
35902     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35903     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35904
35905 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
35906 Author: Yuri Tikhonov <yur@pollux.denx.de>
35907 Date:   Mon Feb 4 17:09:55 2008 +0100
35908
35909     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
35910     Disable external watch-dog for now.
35911
35912     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35913     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35914
35915 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
35916 Author: Yuri Tikhonov <yur@pollux.denx.de>
35917 Date:   Mon Feb 4 14:11:03 2008 +0100
35918
35919     The patch introduces the CRITICAL feature of POST tests. If the test
35920     marked as POST_CRITICAL fails then the alternative, post_critical,
35921     boot-command is used. If this command is not defined then U-Boot
35922     enters into interactive mode.
35923
35924     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35925     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35926
35927 commit 65b20dcefc89618193fa51947968dada91e4c778
35928 Author: Yuri Tikhonov <yur@pollux.denx.de>
35929 Date:   Mon Feb 4 14:10:42 2008 +0100
35930
35931     The patch adds new POST tests for the Lwmon5 board.
35932     These are:
35933
35934     * External Watchdog test;
35935     * dsPIC tests;
35936     * FPGA test;
35937     * GDC test;
35938     * Sysmon tests.
35939
35940     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35941     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35942
35943 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
35944 Author: Yuri Tikhonov <yur@pollux.denx.de>
35945 Date:   Mon Feb 4 14:10:01 2008 +0100
35946
35947     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
35948
35949     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35950
35951 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
35952 Author: Wolfgang Denk <wd@denx.de>
35953 Date:   Tue Mar 18 17:35:51 2008 +0100
35954
35955     HMI1001: fix compile problem.
35956
35957     Signed-off-by: Wolfgang Denk <wd@denx.de>
35958
35959 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
35960 Author: Mike Frysinger <vapier@gentoo.org>
35961 Date:   Mon Feb 18 05:32:30 2008 -0500
35962
35963     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
35964
35965     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
35966     for the board specific driver at all.  Just use the common CFI driver.
35967
35968     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35969
35970 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
35971 Author: Mike Frysinger <vapier@gentoo.org>
35972 Date:   Tue Feb 19 00:36:14 2008 -0500
35973
35974     Blackfin: add proper ELF markings to some assembly functions
35975
35976     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35977
35978 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
35979 Author: Mike Frysinger <vapier@gentoo.org>
35980 Date:   Tue Feb 19 00:35:17 2008 -0500
35981
35982     Blackfin: new cplbinfo command for viewing cplb tables
35983
35984     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35985
35986 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
35987 Author: Mike Frysinger <vapier@gentoo.org>
35988 Date:   Mon Feb 18 05:37:51 2008 -0500
35989
35990     Blackfin: update MAINTAINERS list
35991
35992     Add maintainer information for the Blackfin boards.
35993
35994     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35995
35996 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
35997 Author: Mike Frysinger <vapier@gentoo.org>
35998 Date:   Mon Feb 18 05:26:48 2008 -0500
35999
36000     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
36001
36002     Stop tying things to the processor that should be tied to other defines and
36003     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
36004     system to select the -mcpu option.
36005
36006     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
36007
36008 commit 86a20fb920bd198105acf7b1191117f566d637ed
36009 Author: Mike Frysinger <vapier@gentoo.org>
36010 Date:   Sat Feb 16 07:40:36 2008 -0500
36011
36012     Blackfin: move bootldr command to common code
36013
36014     This moves the Blackfin-common bootldr command out of the BF537-STAMP
36015     specific board directory and into the common directory so that all Blackfin
36016     boards may utilize it.
36017
36018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
36019
36020 commit decbe029b2a9d3333d02c433389b1c821eea96d7
36021 Author: Heiko Schocher <hs@denx.de>
36022 Date:   Fri Mar 14 11:05:20 2008 +0100
36023
36024     mgcoge: update configuration
36025
36026     Fix configuration for mgcoge board
36027
36028     Signed-off-by: Heiko Schocher <hs@denx.de>
36029
36030 commit c136724cda0219c49f1d4b346f00da29b14fdf14
36031 Author: Wolfgang Denk <wd@denx.de>
36032 Date:   Sun Mar 16 01:22:59 2008 +0100
36033
36034     drivers/rtc/Makefile: keep list sorted
36035
36036     Signed-off-by: Wolfgang Denk <wd@denx.de>
36037
36038 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
36039 Author: Tor Krill <tor@excito.com>
36040 Date:   Sat Mar 15 15:40:26 2008 +0100
36041
36042     Add support for Intersil isl1208 RTC
36043
36044     Signed-off-by: Tor Krill <tor@excito.com>
36045
36046 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
36047 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36048 Date:   Sat Mar 15 17:36:41 2008 +0100
36049
36050     cramfs: Fix ifdef
36051
36052     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36053
36054 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
36055 Author: Wolfgang Denk <wd@denx.de>
36056 Date:   Sun Mar 16 01:12:58 2008 +0100
36057
36058     Conding style cleanup
36059
36060     Signed-off-by: Wolfgang Denk <wd@denx.de>
36061
36062 commit 41712b4e8c95dff23354bcd620e1f9477160c190
36063 Author: Stefan Roese <sr@denx.de>
36064 Date:   Wed Mar 5 12:31:53 2008 +0100
36065
36066     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
36067
36068     This patch adds USB OHCI support to the Canyonlands board port. It also
36069     enables EXT2 support.
36070
36071     Signed-off-by: Stefan Roese <sr@denx.de>
36072
36073 commit 2596f5b9d353ff3e4387a3325d05740f16958038
36074 Author: Stefan Roese <sr@denx.de>
36075 Date:   Wed Mar 5 12:29:32 2008 +0100
36076
36077     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
36078
36079     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
36080     way a board just needs to define this new option to enable the "force
36081     NoPowerSwitching mode" instead of adding new CPU/architecture defines
36082     to the USB source itself.
36083
36084     This new option will be used first with the new AMCC 460EX Canyonlands
36085     board port, which will be posted in a few days.
36086
36087     This patch also fixes a small compilation problem when DEBUG is enabled.
36088
36089     Signed-off-by: Stefan Roese <sr@denx.de>
36090
36091 commit 71665ebf88408ff2acb762af47989fd4365b321a
36092 Author: Stefan Roese <sr@denx.de>
36093 Date:   Mon Mar 3 17:27:02 2008 +0100
36094
36095     ppc4xx: Add Canyonlands NAND booting support
36096
36097     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
36098     NAND devices. The only bootstrap option for NAND booting is option F for
36099     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
36100     EEPROM needs to be programmed accordingly.
36101
36102     This patch adds basic NAND booting support for the AMCC Canyonlands aval
36103     board and also adds support to the "bootstrap" command, to enable NAND
36104     booting I2C setting.
36105
36106     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
36107
36108     Signed-off-by: Stefan Roese <sr@denx.de>
36109
36110 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
36111 Author: Stefan Roese <sr@denx.de>
36112 Date:   Tue Mar 11 16:53:00 2008 +0100
36113
36114     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
36115
36116     This patch adds support for the AMCC Canyonlands 460EX evaluation
36117     board.
36118
36119     Signed-off-by: Stefan Roese <sr@denx.de>
36120
36121 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
36122 Author: Stefan Roese <sr@denx.de>
36123 Date:   Tue Mar 11 16:52:24 2008 +0100
36124
36125     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
36126
36127     This patch adds support for the AMCC Canyonlands 460EX evaluation
36128     board.
36129
36130     Signed-off-by: Stefan Roese <sr@denx.de>
36131
36132 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
36133 Author: Stefan Roese <sr@denx.de>
36134 Date:   Tue Mar 11 16:51:17 2008 +0100
36135
36136     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
36137
36138     This patch adds support for the AMCC Canyonlands 460EX evaluation
36139     board.
36140
36141     Signed-off-by: Stefan Roese <sr@denx.de>
36142
36143 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
36144 Author: Stefan Roese <sr@denx.de>
36145 Date:   Tue Mar 11 15:11:43 2008 +0100
36146
36147     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
36148
36149     This patch adds basic support for the AMCC 460EX/460GT PPC's.
36150
36151     Signed-off-by: Stefan Roese <sr@denx.de>
36152
36153 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
36154 Author: Stefan Roese <sr@denx.de>
36155 Date:   Tue Mar 11 15:11:18 2008 +0100
36156
36157     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
36158
36159     This patch adds basic support for the AMCC 460EX/460GT PPC's.
36160
36161     Signed-off-by: Stefan Roese <sr@denx.de>
36162
36163 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
36164 Author: Stefan Roese <sr@denx.de>
36165 Date:   Tue Mar 11 15:07:10 2008 +0100
36166
36167     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
36168
36169     This patch adds basic support for the AMCC 460EX/460GT PPC's.
36170
36171     Signed-off-by: Stefan Roese <sr@denx.de>
36172
36173 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
36174 Author: Stefan Roese <sr@denx.de>
36175 Date:   Tue Mar 11 15:05:50 2008 +0100
36176
36177     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
36178
36179     This patch adds basic support for the AMCC 460EX/460GT PPC's.
36180
36181     Signed-off-by: Stefan Roese <sr@denx.de>
36182
36183 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
36184 Author: Stefan Roese <sr@denx.de>
36185 Date:   Tue Mar 11 15:05:26 2008 +0100
36186
36187     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
36188
36189     This patch adds basic support for the AMCC 460EX/460GT PPC's.
36190
36191     Signed-off-by: Stefan Roese <sr@denx.de>
36192
36193 commit 56e410178375d9f20be25fb24e180974f0ae120b
36194 Author: Stefan Roese <sr@denx.de>
36195 Date:   Tue Feb 19 22:07:57 2008 +0100
36196
36197     ppc4xx: interrupt.c reworked
36198
36199     This patch is a rework of the 4xx interrupt handling done while
36200     adding the 460EX/GT support. Interrupts are needed on 4xx for the
36201     EMAC driver.
36202
36203     Signed-off-by: Stefan Roese <sr@denx.de>
36204
36205 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
36206 Author: Stefan Roese <sr@denx.de>
36207 Date:   Tue Feb 19 22:01:57 2008 +0100
36208
36209     ppc4xx: program_tlb now uses 64bit physical addess
36210
36211     This patch changes the physical addess parameter from 32bit to 64bit.
36212     This is needed for 36bit 4xx platforms to access areas located
36213     beyond the 4GB border, like SoC peripherals (EBC etc.).
36214
36215     Signed-off-by: Stefan Roese <sr@denx.de>
36216
36217 commit c3307fa186af85771924c434997089b8104c0a46
36218 Author: Stefan Roese <sr@denx.de>
36219 Date:   Tue Feb 19 21:58:25 2008 +0100
36220
36221     ppc4xx: miiphy.c reworked
36222
36223     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
36224     badly neede some cleanup.
36225
36226     Signed-off-by: Stefan Roese <sr@denx.de>
36227
36228 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
36229 Author: Stefan Roese <sr@denx.de>
36230 Date:   Tue Feb 19 16:21:49 2008 +0100
36231
36232     rtc: Add M41T62 support
36233
36234     This patch add support for the STM M41T62 RTC. It is used and tested
36235     on the AMCC Canyonlands 406EX platform.
36236
36237     Signed-off-by: Stefan Roese <sr@denx.de>
36238
36239 commit 217d383e201adc7f2271145ae345ea5eae2b7170
36240 Author: Niklaus Giger <niklaus.giger@netstal.com>
36241 Date:   Mon Feb 25 18:46:43 2008 +0100
36242
36243     ppc4xx: Add 405GPr based MCU25 board specific files
36244
36245     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36246
36247 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
36248 Author: Niklaus Giger <niklaus.giger@netstal.com>
36249 Date:   Mon Feb 25 18:46:42 2008 +0100
36250
36251     ppc4xx: Add 405GPr based MCU25 board config file
36252
36253     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36254
36255 commit b05f35436b733a240559e77e46bed8439665ecc5
36256 Author: Niklaus Giger <niklaus.giger@netstal.com>
36257 Date:   Mon Feb 25 18:46:41 2008 +0100
36258
36259     ppc4xx: Add 405GPr based MCU25 board. Global files
36260
36261     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36262
36263 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
36264 Author: Niklaus Giger <niklaus.giger@netstal.com>
36265 Date:   Mon Feb 25 18:37:02 2008 +0100
36266
36267     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
36268
36269     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36270
36271 commit a079494853cc2bfeddb26673219db0b4b2b31566
36272 Author: Niklaus Giger <niklaus.giger@netstal.com>
36273 Date:   Mon Feb 25 18:37:01 2008 +0100
36274
36275     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
36276
36277     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
36278     the FLASH_CFI_LEGACY et al. config options.
36279
36280     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36281
36282 commit e4170e5a50c8110f792bc37472833ae669d69951
36283 Author: Stefan Roese <sr@denx.de>
36284 Date:   Tue Mar 11 13:52:25 2008 +0100
36285
36286     ppc4xx: Fix comment in 405EX DDR2 init code
36287
36288     Signed-off-by: Stefan Roese <sr@denx.de>
36289
36290 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
36291 Author: Bartlomiej Sieka <tur@semihalf.com>
36292 Date:   Fri Mar 14 16:22:34 2008 +0100
36293
36294     Add MD5 support to the new uImage format
36295
36296     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36297
36298 commit 0ede0c383530a418cf98be9122371a86573cd0db
36299 Author: Bartlomiej Sieka <tur@semihalf.com>
36300 Date:   Fri Mar 14 16:22:34 2008 +0100
36301
36302     Add the MD5 algorithm
36303
36304     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
36305     calculated using the md5() function -- see include/md5.h for details.
36306
36307     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36308
36309 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
36310 Author: Wolfgang Denk <wd@denx.de>
36311 Date:   Fri Mar 14 16:04:54 2008 +0100
36312
36313     tools/setlocalversion: use a git-describe-ish format
36314
36315     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
36316     where 'nnnnn' is the number of commits since the last tag (i.e.,
36317     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
36318     and to see how much has been changed since the referenced tag.
36319
36320     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
36321
36322     Signed-off-by: Wolfgang Denk <wd@denx.de>
36323
36324 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
36325 Author: Wolfgang Denk <wd@denx.de>
36326 Date:   Thu Mar 13 14:32:03 2008 +0100
36327
36328     HMI1001: add support for MPC5200 Rev. B processors.
36329
36330     Signed-off-by: Wolfgang Denk <wd@denx.de>
36331
36332 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
36333 Author: Wolfgang Denk <wd@denx.de>
36334 Date:   Thu Mar 13 14:29:49 2008 +0100
36335
36336     TQM5200: remove dead code
36337
36338     This board never used a MGT5100 processor.
36339
36340     Signed-off-by: Wolfgang Denk <wd@denx.de>
36341
36342 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
36343 Author: Marian Balakowicz <m8@semihalf.com>
36344 Date:   Wed Mar 12 12:14:15 2008 +0100
36345
36346     [new uImage] Fix build issue on ARM
36347
36348     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
36349
36350     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36351
36352 commit 3310c549a73a949430bfda90876df7552a1dab0c
36353 Author: Marian Balakowicz <m8@semihalf.com>
36354 Date:   Wed Mar 12 12:13:13 2008 +0100
36355
36356     [new uImage] Add new uImage format documentation and examples
36357
36358     Create doc/uImage.FIT documentation directory with the following files:
36359     - command_syntax_extensions.txt : extended command syntax description
36360     - howto.txt                     : short usage howto
36361     - source_file_format.txt        : internal new uImage format description
36362
36363     Add example image source files:
36364     - kernel.its
36365     - kernel_fdt.its
36366     - multi.its
36367
36368     Update README appropriately.
36369
36370     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36371     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36372
36373 commit 1ec73761d2e247078f4520a265d463e8b73391a2
36374 Author: Marian Balakowicz <m8@semihalf.com>
36375 Date:   Wed Mar 12 10:35:52 2008 +0100
36376
36377     [new uImage] Fix definition of common bootm_headers_t fields
36378
36379     verify, autostart and lmb fields are used regardless of CONFIG_FIT
36380     setting, move their definitions to common section.
36381
36382     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36383
36384 commit 1d1cb4270edc6a99276834064069717f9782c491
36385 Author: Marian Balakowicz <m8@semihalf.com>
36386 Date:   Wed Mar 12 10:35:51 2008 +0100
36387
36388     [new uImage] Fix build problems on trab board
36389
36390     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36391
36392 commit f773bea8e11f4a11c388dcee956b2444203e6b65
36393 Author: Marian Balakowicz <m8@semihalf.com>
36394 Date:   Wed Mar 12 10:35:46 2008 +0100
36395
36396     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
36397
36398     Save FIT configuration provied in the first bootm argument and use it
36399     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
36400     arguments are not specified.
36401
36402     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36403
36404 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
36405 Author: Marian Balakowicz <m8@semihalf.com>
36406 Date:   Wed Mar 12 10:33:01 2008 +0100
36407
36408     [new uImage] More verbose kernel image uncompress error message
36409
36410     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36411
36412 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
36413 Author: Marian Balakowicz <m8@semihalf.com>
36414 Date:   Wed Mar 12 10:33:01 2008 +0100
36415
36416     [new uImage] Use show_boot_progress() for new uImage format
36417
36418     This patch allocates a set of show_boot_progress() IDs for new uImage format
36419     and adds show_boot_progress() calls in new uImage format handling code.
36420
36421     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36422
36423 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
36424 Author: Marian Balakowicz <m8@semihalf.com>
36425 Date:   Wed Mar 12 10:33:01 2008 +0100
36426
36427     [new uImage] Add new uImage fromat support to fpga command
36428
36429     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36430
36431 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
36432 Author: Marian Balakowicz <m8@semihalf.com>
36433 Date:   Wed Mar 12 10:33:01 2008 +0100
36434
36435     [new uImage] Add new uImage format handling to other bootm related commands
36436
36437     Updated commands:
36438
36439     docboot  - cmd_doc.c
36440     fdcboot  - cmd_fdc.c
36441     diskboot - cmd_ide.c
36442     nboot    - cmd_nand.c
36443     scsiboot - cmd_scsi.c
36444     usbboot  - cmd_usb.c
36445
36446     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36447
36448 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
36449 Author: Marian Balakowicz <m8@semihalf.com>
36450 Date:   Wed Mar 12 10:33:00 2008 +0100
36451
36452     [new uImage] Add new uImage format support to imgextract command
36453
36454     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36455
36456 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
36457 Author: Marian Balakowicz <m8@semihalf.com>
36458 Date:   Wed Mar 12 10:33:00 2008 +0100
36459
36460     [new uImage] Add new uImage format support to autoscript routine
36461
36462     autoscript() routine is updated to accept second argument, which
36463     is only used for FIT images and provides a FIT subimage unit name.
36464
36465     autoscript() routine callers must now pass two arguments. For
36466     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
36467     variable 'autoscript_uname' is introduced and used as a FIT
36468     subimage unit name source.
36469
36470     autoscript command accepts extended syntax of the addr argument:
36471     addr:<subimg_uname>
36472
36473     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36474
36475 commit cd7c596e9f561dbbc17b717277438aee78cde14f
36476 Author: Marian Balakowicz <m8@semihalf.com>
36477 Date:   Wed Mar 12 10:33:00 2008 +0100
36478
36479     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
36480
36481     This patch updates architecture specific implementations of
36482     do_bootm_linux() adding new uImage format handling for
36483     operations like get kernel entry point address, get kernel
36484     image data start address.
36485
36486     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36487
36488 commit 3dfe110149311425919e6d6a14b561b4207498f1
36489 Author: Marian Balakowicz <m8@semihalf.com>
36490 Date:   Wed Mar 12 10:32:59 2008 +0100
36491
36492     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
36493
36494     This patch adds new node offset fields to struct bootm_headers
36495     and updates bootm_headers processing code to make use of them.
36496     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
36497
36498     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36499
36500 commit bc8ed486b125452ba3bd8344f052f437329150c5
36501 Author: Marian Balakowicz <m8@semihalf.com>
36502 Date:   Wed Mar 12 10:32:53 2008 +0100
36503
36504     [new uImage] ppc: Add new uImage format support to FDT handling routines
36505
36506     Support for new (FIT) format uImages is added to powerpc specific
36507     boot_get_fdt() routine which now recognizes, sanity checks FIT image
36508     and is able to access data sections of the requested component image.
36509
36510     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36511
36512 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
36513 Author: Marian Balakowicz <m8@semihalf.com>
36514 Date:   Wed Mar 12 10:14:57 2008 +0100
36515
36516     [new uImage] Re-enable interrupts for non automatic booting
36517
36518     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
36519     environment variable is not set to 'yes'.
36520
36521     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36522
36523 commit d985c8498c4e47095820da97aa722381d39172c5
36524 Author: Marian Balakowicz <m8@semihalf.com>
36525 Date:   Wed Mar 12 10:14:38 2008 +0100
36526
36527     [new uImage] Remove unnecessary arguments passed to ramdisk routines
36528
36529     boot_get_ramdisk() and image_get_ramdisk() do not need all
36530     cmdtp, flag, argc and argv arguments. Simplify routines definition.
36531
36532     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36533
36534 commit c87796483bc7c2900470dc747c367f602577608d
36535 Author: Marian Balakowicz <m8@semihalf.com>
36536 Date:   Wed Mar 12 10:12:37 2008 +0100
36537
36538     [new uImage] Add new uImage format support for ramdisk handling
36539
36540     This patch updates boot_get_ramdisk() routine adding format
36541     verification and handling for new (FIT) uImages.
36542
36543     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36544
36545 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
36546 Author: Marian Balakowicz <m8@semihalf.com>
36547 Date:   Wed Mar 12 10:01:05 2008 +0100
36548
36549     [new uImage] Add new uImage format support for kernel booting
36550
36551     New format uImages are recognized by the bootm command,
36552     validity of specified kernel component image is checked and
36553     its data section located and used for further processing
36554     (uncompress, load, etc.)
36555
36556     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36557
36558 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
36559 Author: Marian Balakowicz <m8@semihalf.com>
36560 Date:   Tue Mar 11 12:35:20 2008 +0100
36561
36562     [new uImage] Add new uImage format support for imls and iminfo commands
36563
36564     imls and iminfo can now recognize nad print out contents of the new (FIT)
36565     format uImages.
36566
36567     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36568
36569 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
36570 Author: Bartlomiej Sieka <tur@semihalf.com>
36571 Date:   Tue Mar 11 12:34:47 2008 +0100
36572
36573     [new uImage] Add support for new uImage format to mkimage tool
36574
36575     Support for the new uImage format (FIT) is added to mkimage tool.
36576     Commandline syntax is appropriately extended:
36577
36578     mkimage [-D dtc_options] -f fit-image.its fit-image
36579
36580     mkimage (together with dtc) takes fit-image.its and referenced therein
36581     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
36582     final image that can be transferred to the target (e.g., via tftp) and then
36583     booted using the bootm command in U-Boot.
36584
36585     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36586
36587 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
36588 Author: Marian Balakowicz <m8@semihalf.com>
36589 Date:   Mon Mar 10 17:53:49 2008 +0100
36590
36591     [new uImage] Make node unit names const in struct bootm_headers
36592
36593     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36594
36595 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
36596 Author: Marian Balakowicz <m8@semihalf.com>
36597 Date:   Fri Feb 29 21:24:06 2008 +0100
36598
36599     [new uImage] New uImage low-level API
36600
36601     Add FDT-based functions for handling new format component images,
36602     configurations, node operations, property get/set, etc.
36603
36604     fit_        - routines handling global new format uImage operations
36605                   like get/set top level property, process all nodes, etc.
36606     fit_image_  - routines handling component images subnodes
36607     fit_conf_   - routines handling configurations node
36608
36609     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36610     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36611
36612 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
36613 Author: Wolfgang Denk <wd@denx.de>
36614 Date:   Sun Mar 9 16:20:02 2008 +0100
36615
36616     Release v1.3.2
36617
36618     Update CHANGELOG for release.
36619
36620     Signed-off-by: Wolfgang Denk <wd@denx.de>
36621
36622 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
36623 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36624 Date:   Sun Mar 9 14:52:11 2008 +0100
36625
36626     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
36627
36628     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36629     Signed-off-by: Wolfgang Denk <wd@denx.de>
36630
36631 commit db695b78515ddb88a2d4f3357c120345efbf59ec
36632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36633 Date:   Sun Mar 9 10:44:01 2008 +0100
36634
36635     scb9328: Fix flash warning: type qualifiers ignored on function return type
36636
36637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36638
36639 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
36640 Author: Wolfgang Denk <wd@denx.de>
36641 Date:   Sun Mar 9 10:50:41 2008 +0100
36642
36643     esd/common/fpga.c: fix indentation.
36644
36645     Signed-off-by: Wolfgang Denk <wd@denx.de>
36646
36647 commit cc3843e36453e2b8db65d7e56de938ba045016a0
36648 Author: Wolfgang Denk <wd@denx.de>
36649 Date:   Sun Mar 9 10:33:31 2008 +0100
36650
36651     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
36652
36653     and get rid of a couple of unneeded casts.
36654
36655     Signed-off-by: Wolfgang Denk <wd@denx.de>
36656
36657 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
36658 Author: Wolfgang Denk <wd@denx.de>
36659 Date:   Sun Mar 9 10:09:53 2008 +0100
36660
36661     esd/common/fpga.c: fix 'assignment of read-only location' error
36662
36663     Signed-off-by: Wolfgang Denk <wd@denx.de>
36664
36665 commit c6fe4dabac066e8758345d249032768496983a3e
36666 Author: Wolfgang Denk <wd@denx.de>
36667 Date:   Sun Mar 9 02:13:19 2008 +0100
36668
36669     Makefile: make build silently again.
36670
36671     Signed-off-by: Wolfgang Denk <wd@denx.de>
36672
36673 commit 76babc86576f092573599334c85ec543fdbc6015
36674 Author: Wolfgang Denk <wd@denx.de>
36675 Date:   Sun Mar 9 02:07:49 2008 +0100
36676
36677     m501sk: Fix out of tree building
36678
36679     Signed-off-by: Wolfgang Denk <wd@denx.de>
36680
36681 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
36682 Author: Wolfgang Denk <wd@denx.de>
36683 Date:   Sun Mar 9 00:06:09 2008 +0100
36684
36685     ADS5121: fix out of tree build
36686
36687     and simplify Makefile a bit.
36688
36689     Signed-off-by: Wolfgang Denk <wd@denx.de>
36690
36691 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
36692 Author: Wolfgang Denk <wd@denx.de>
36693 Date:   Sat Mar 8 22:35:31 2008 +0100
36694
36695     Release v1.3.2
36696
36697     Signed-off-by: Wolfgang Denk <wd@denx.de>
36698
36699 commit 78a90f827df74520e939c794fc7413dace21c4db
36700 Author: Wolfgang Denk <wd@denx.de>
36701 Date:   Sat Mar 8 22:35:04 2008 +0100
36702
36703     Update CHANGELOG
36704
36705     Signed-off-by: Wolfgang Denk <wd@denx.de>
36706
36707 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
36708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36709 Date:   Sat Mar 8 21:30:04 2008 +0100
36710
36711     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
36712
36713     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36714
36715 commit d75469d48c05795144f4b8ba76addbb4920a7bba
36716 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
36717 Date:   Sat Mar 8 09:25:49 2008 +0900
36718
36719     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
36720
36721     When rtl_recv() of rtl8169 is called, OWNbit of status register
36722     is not enable occasionally.
36723     rtl_recv() doesn't work normally when the driver doesn't do
36724     appropriate processing.
36725     This patch fix this problem.
36726
36727     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
36728
36729 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
36730 Author: Heiko Schocher <hs@denx.de>
36731 Date:   Fri Mar 7 08:15:28 2008 +0100
36732
36733     mgsuvd: update board configuration
36734
36735     initialize the UPIOx controller.
36736
36737     Signed-off-by: Heiko Schocher <hs@denx.de>
36738
36739 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
36740 Author: Heiko Schocher <hs@denx.de>
36741 Date:   Fri Mar 7 08:13:41 2008 +0100
36742
36743     mgcoge: update board configuration
36744
36745     add support for the config Flash.
36746     initialize the UPIOx controller.
36747
36748     Signed-off-by: Heiko Schocher <hs@denx.de>
36749
36750 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
36751 Author: Kim Phillips <kim.phillips@freescale.com>
36752 Date:   Fri Mar 7 12:27:31 2008 -0600
36753
36754     mpc83xx: make dtb basename file references equal those of linux
36755
36756     the dts file basenames were updated in linux - this helps avoid
36757     inadvertently loading any old dtbs laying around.
36758
36759     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36760
36761 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
36762 Author: Kim Phillips <kim.phillips@freescale.com>
36763 Date:   Wed Feb 27 16:08:22 2008 -0600
36764
36765     net: uec_phy: actually increment the timeout counter
36766
36767     allow u-boot to recover (and, e.g., switch to another interface) in the
36768     case where a PHY does not report autonegotiation is complete within its
36769     two second timeout value.
36770
36771     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36772
36773 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
36774 Author: Markus Brunner <super.firetwister@googlemail.com>
36775 Date:   Wed Mar 5 21:38:12 2008 +0100
36776
36777     fix taihu soft spi_read
36778
36779     The taihu board used gpio_read_out_bit which reads the output register and not
36780     the pin state.
36781
36782     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
36783
36784 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
36785 Author: Stefan Roese <sr@denx.de>
36786 Date:   Fri Mar 7 08:01:43 2008 +0100
36787
36788     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
36789
36790     Signed-off-by: Stefan Roese <sr@denx.de>
36791
36792 commit bd4458cb47abecabd406b1210457be96c69fc49d
36793 Author: Dave Liu <r63238@freescale.com>
36794 Date:   Tue Mar 4 16:59:22 2008 +0800
36795
36796     837xEMDS: Improve the system performance
36797
36798     1. Make the CSB bus pipeline depth as 4, and enable
36799        the repeat mode;
36800     2. Raise the eTSEC emergency priority;
36801     3. Use the highest IP blocks clock.
36802
36803     Signed-off-by: Dave Liu <daveliu@freescale.com>
36804
36805 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
36806 Author: Detlev Zundel <dzu@denx.de>
36807 Date:   Thu Mar 6 16:45:53 2008 +0100
36808
36809     Replace "run load; run update" with conditionalized "run load update".
36810
36811     The latter version stops when "run load" fails for whatever reasons
36812     rendering the combination *a lot* more secure.
36813
36814     Signed-off-by: Detlev Zundel <dzu@denx.de>
36815
36816 commit 6bc113886d7d316df1a4e459bec8baf027518551
36817 Author: Stefan Roese <sr@denx.de>
36818 Date:   Tue Mar 4 17:40:41 2008 +0100
36819
36820     net: Print error message upon net usage when no ethernet-interface is found
36821
36822     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
36823     defined. Then no ethernet interface is available but a simple "tftp"
36824     command will return without any error message which is quite confusing.
36825
36826     Signed-off-by: Stefan Roese <sr@denx.de>
36827
36828 commit a30a549a3553032d809e0356306b62de0b125901
36829 Author: Jon Loeliger <jdl@freescale.com>
36830 Date:   Tue Mar 4 10:03:03 2008 -0600
36831
36832     Remove erroneous or extra spd.h #includers.
36833
36834     Many of the spd.h #includers don't need it,
36835     and wanted to have spd_sdram() declared instead.
36836     Since they didn't get that, some also had open
36837     coded extern declarations of it instead or as well.
36838     Fix it all up by using spd_sdram.h where needed.
36839
36840     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36841
36842 commit a4475386cef14af3fd88f0518b688e755669486d
36843 Author: Wolfgang Denk <wd@denx.de>
36844 Date:   Tue Mar 4 17:41:28 2008 +0100
36845
36846     PCS440EP: fix build problems (redundant #define)
36847
36848     Signed-off-by: Wolfgang Denk <wd@denx.de>
36849
36850 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
36851 Author: Stefan Roese <sr@denx.de>
36852 Date:   Tue Mar 4 17:39:25 2008 +0100
36853
36854     net: Print error message upon net usage when no ethernet-interface is found
36855
36856     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
36857     defined. Then no ethernet interface is available but a simple "tftp"
36858     command will return without any error message which is quite confusing.
36859
36860     Signed-off-by: Stefan Roese <sr@denx.de>
36861
36862 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
36863 Author: Wolfgang Denk <wd@denx.de>
36864 Date:   Tue Mar 4 17:38:50 2008 +0100
36865
36866     W7OLMC/W7OLMG: fix build problems (redundant #define)
36867
36868     Signed-off-by: Wolfgang Denk <wd@denx.de>
36869
36870 commit f9301e1cda296245ba052d7b08321199c3d0af9d
36871 Author: Wolfgang Denk <wd@denx.de>
36872 Date:   Tue Mar 4 14:58:31 2008 +0100
36873
36874     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
36875
36876     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
36877     problem for out-of-tree builds which caused "make clean" to fail.
36878
36879     Signed-off-by: Wolfgang Denk <wd@denx.de>
36880
36881 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
36882 Author: Wolfgang Denk <wd@denx.de>
36883 Date:   Tue Mar 4 11:58:26 2008 +0100
36884
36885     examples/Makefile: build "hello_world" on 8xx, too.
36886
36887     Signed-off-by: Wolfgang Denk <wd@denx.de>
36888
36889 commit 74eb0222594fd23aafdf168e60e872814eea8b62
36890 Author: Mike Nuss <mike@terascala.com>
36891 Date:   Mon Mar 3 15:27:05 2008 -0500
36892
36893     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
36894
36895     Every now and then a Sequoia board (or equivalent hardware) had
36896     problems connecting to a Gigabit capable network interface.
36897
36898     There were differences in the PHY setup between Linux and U-Boot.
36899
36900     This patch fixes the problem. Apparently "remote fault" is being set,
36901     which signals to some devices (on the other end of the cable) that a
36902     fault has occurred, while other devices ignore it. I believe the RF bit
36903     was causing the issue, but I removed T4 also, to match up with Linux.
36904
36905     Signed-off-by: Mike Nuss <mike@terascala.com>
36906
36907 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
36908 Author: Timur Tabi <timur@freescale.com>
36909 Date:   Mon Mar 3 09:58:52 2008 -0600
36910
36911     fix QE firmware uploading limit
36912
36913     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
36914     systems with more than one RISC core.
36915
36916     Signed-off-by: Timur Tabi <timur@freescale.com>
36917
36918 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
36919 Author: Bernhard Nemec <bnemec@ganssloser.com>
36920 Date:   Mon Mar 3 11:57:23 2008 +0000
36921
36922     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
36923
36924     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
36925     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
36926
36927     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
36928
36929 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
36930 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
36931 Date:   Mon Mar 3 10:39:13 2008 +0200
36932
36933     fix copy from ram to dataflash
36934
36935     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
36936     routines instead of dataflash. This is because it checks "if source
36937     address is not dataflash" instead of target address.
36938
36939     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
36940
36941 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
36942 Author: Wolfgang Denk <wd@denx.de>
36943 Date:   Mon Mar 3 12:16:44 2008 +0100
36944
36945     Fix quoting problem (preboot setting) in many board config files.
36946
36947     Signed-off-by: Wolfgang Denk <wd@denx.de>
36948
36949 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
36950 Author: Wolfgang Denk <wd@denx.de>
36951 Date:   Mon Mar 3 12:36:49 2008 +0100
36952
36953     ADS5121: Fix default environment.
36954
36955     Signed-off-by: Wolfgang Denk <wd@denx.de>
36956
36957 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
36958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36959 Date:   Sun Mar 2 16:12:31 2008 +0100
36960
36961     Makefile: Fix missing unconfig and mkconfig use
36962
36963     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36964
36965 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
36966 Author: michael <trimarchi@gandalf.sssup.it>
36967 Date:   Sun Mar 2 23:33:46 2008 +0100
36968
36969     Fix checking fat32 cluster size.
36970
36971     This fixes the cluster size tests in the FAT32 file system.
36972     The current implementation of VFAT support doesn't work if the
36973     referred cluster has an offset > 16bit representation, causing
36974     "fatload" and "fatls" commands etc. to fail.
36975
36976     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
36977
36978 commit 661bad63a076a96c39c64f136915f146725af92b
36979 Author: Wolfgang Denk <wd@denx.de>
36980 Date:   Sun Mar 2 22:57:23 2008 +0100
36981
36982     Prepare v1.3.2-rc2 release candidate
36983
36984     Signed-off-by: Wolfgang Denk <wd@denx.de>
36985
36986 commit 76957cb3d621bf664311908e5962e151c633c285
36987 Author: Stefan Roese <sr@denx.de>
36988 Date:   Sat Mar 1 12:11:40 2008 +0100
36989
36990     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
36991
36992     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
36993     currently 4k/2k is configured. This patch fixes this issue.
36994
36995     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
36996
36997     Signed-off-by: Stefan Roese <sr@denx.de>
36998
36999 commit 118978c8eb43803e2794233922df4249fa278b83
37000 Author: Woodruff, Richard <r-woodruff2@ti.com>
37001 Date:   Fri Feb 29 17:34:35 2008 -0600
37002
37003     Fix alignment error on ARM for modules
37004
37005     Fix alignment fault on ARM when running modules.  With out an explicit
37006     linker file gcc4.2.1 will half word align __bss_start's value.  The word
37007     dereference will crash hello_world.
37008
37009     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
37010
37011 commit ce1120dd703e6f12c59e4eba9962356a0300b832
37012 Author: Dave Liu <r63238@freescale.com>
37013 Date:   Fri Feb 29 17:45:31 2008 +0800
37014
37015     fs: Fix ext2 read issue
37016
37017     The ext2 aligned process will corrupt the key
37018     data struct, the patch fix this.
37019
37020     Signed-off-by: Dave Liu <daveliu@freescale.com>
37021
37022 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
37023 Author: Wolfgang Denk <wd@denx.de>
37024 Date:   Sun Mar 2 22:45:33 2008 +0100
37025
37026     Makefile: cleanup "clean" target
37027
37028     Make sure CDPATH settings cannot interfere.
37029     Update CHANGELOG.
37030
37031     Signed-off-by: Wolfgang Denk <wd@denx.de>
37032
37033 commit ffda586fc1373243c9794babde69500f6293a8d8
37034 Author: Li Yang <leoli@freescale.com>
37035 Date:   Fri Feb 29 11:46:05 2008 +0800
37036
37037     add cscope build target
37038
37039     Add cscope build target to generate cscope database for code browsing.
37040
37041     Signed-off-by: Li Yang <leoli@freescale.com>
37042
37043 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
37044 Author: Kim Phillips <kim.phillips@freescale.com>
37045 Date:   Wed Feb 27 15:06:39 2008 -0600
37046
37047     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
37048
37049     erratum 5.6 states the autoneg completion bit is functional only if the
37050     autoneg bit is asserted.
37051
37052     This fixes any secondarily-issued networking commands on non-gigabit
37053     links on the mpc8360 mds board.
37054
37055     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37056
37057 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
37058 Author: John Rigby <jrigby@freescale.com>
37059 Date:   Tue Feb 26 09:38:14 2008 -0700
37060
37061     MPC5121e ADS PCI support take 3
37062
37063     Adds PCI support for MPC5121
37064
37065     Tested with drivers/net/rtl8139.c
37066
37067     Support is conditional since PCI on old silicon does not work.
37068
37069     ads5121_PCI_config turns on PCI
37070
37071     In this version, condition compilation of PCI code has been moved
37072     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
37073     suggested by Jean-Christophe PLAGNIOL-VILLARD
37074
37075     Signed-off-by: John Rigby <jrigby@freescale.com>
37076
37077 commit 44b4dbed4133f657705b7c5193209da9978243a7
37078 Author: Anatolij Gustschin <agust@denx.de>
37079 Date:   Mon Feb 25 23:53:07 2008 +0100
37080
37081     Fix warnings while compilation of post/drivers/memory.c
37082
37083     Fix warnings while compilation with new gcc in eldk-4.2
37084
37085     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37086
37087 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
37088 Author: Anatolij Gustschin <agust@denx.de>
37089 Date:   Mon Feb 25 20:54:04 2008 +0100
37090
37091     ppc4xx: Fix problem in 4xx_enet.c driver
37092
37093     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
37094     enabled. To reproduce the problem ensure that 'ethrotate'
37095     environment variable isn't set to "no" and then run
37096     "tftp 200000 not_existent_file".
37097     This patch tries to fix the issue.
37098
37099     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37100
37101 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
37102 Author: Anatolij Gustschin <agust@denx.de>
37103 Date:   Mon Feb 25 20:04:20 2008 +0100
37104
37105     POST: Disable cache while SPR POST
37106
37107     Currently (since commit b2e2142c) u-boot crashes on
37108     sequoia board while SPR test if CONFIG_4xx_DCACHE is
37109     enabled. This patch disables the cache while SPR test.
37110
37111     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37112
37113 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
37114 Author: Martin Krause <martin.krause@tqs.de>
37115 Date:   Mon Feb 25 17:52:40 2008 +0100
37116
37117     TQM5200: use automatic fdt memory fixup (part 2)
37118
37119     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
37120     TB5200 and TB5200_B to fixup the /memory node with the memory values
37121     detected by U-Boot.
37122
37123     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37124
37125 commit 44ceec253ea941b301abf4b079d52324def69d92
37126 Author: Martin Krause <martin.krause@tqs.de>
37127 Date:   Mon Feb 25 15:17:05 2008 +0100
37128
37129     TQM5200: use automatic fdt memory fixup
37130
37131     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
37132     TB5200 and TB5200_B to fixup the /memory node with the memory values
37133     detected by U-Boot.
37134
37135     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37136
37137 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
37138 Author: Martin Krause <martin.krause@tqs.de>
37139 Date:   Mon Feb 25 13:27:52 2008 +0100
37140
37141     TQM5200: fix bug in SDRAM initialization code
37142
37143     This patch fixes a bug in the SDRAM initialization code for the
37144     TQM5200. The hi_addr bit is now set correctly. Without this patch
37145     the hi_addr bit is always set to 1, if the second SDRAM bank is
37146     not populated.
37147
37148     For other MPC5200 boards a correspondig patch has already been applied
37149     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
37150
37151     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37152     --
37153     Forget the first patch please. I confused flash with SDRAM in
37154     the comment ...
37155
37156 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
37157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37158 Date:   Mon Feb 25 00:03:12 2008 +0100
37159
37160     mx1fs2/flash: Fix multiple compiler warnings
37161
37162     "pointer targets in assignment differ in signedness"
37163
37164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37165
37166 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
37167 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37168 Date:   Mon Feb 25 00:03:11 2008 +0100
37169
37170     arm-imx: Fix register definitions
37171
37172     Sync register definitions with linux
37173
37174     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37175
37176 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
37177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37178 Date:   Mon Feb 25 00:03:10 2008 +0100
37179
37180     actua1/actua2/actua3: Fix multiple unused variable warnings
37181
37182     - actua1:
37183         actux1.c: In function 'checkboard':
37184         actux1.c:92: warning: unused variable 'revision'
37185
37186     - actua2:
37187         actux2.c: In function 'checkboard':
37188         actux2.c:100: warning: unused variable 's'
37189         actux2.c:99: warning: unused variable 'revision'
37190         actux2.c: In function 'reset_phy':
37191         actux2.c:130: warning: unused variable 'i'
37192
37193     - actua3:
37194         actux3.c: In function 'checkboard':
37195         actux3.c:114: warning: unused variable 'revision'
37196
37197     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37198
37199 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
37200 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37201 Date:   Sun Feb 24 11:44:29 2008 +0900
37202
37203     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
37204
37205     The previous patch was lacking of i386, microblaze, nios and nios2. This
37206     patch tries to fix them.
37207
37208     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37209
37210 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
37211 Author: Marian Balakowicz <m8@semihalf.com>
37212 Date:   Fri Feb 29 22:22:46 2008 +0100
37213
37214     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
37215
37216     Do not use global fdt blob pointer, calculate blob size from routine
37217     argument blob pointer.
37218
37219     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37220
37221 commit d1cc52879c8966507dad9fb575481e6d3985e64e
37222 Author: David Gibson <david@gibson.dropbear.id.au>
37223 Date:   Tue Feb 12 00:58:31 2008 +1100
37224
37225     libfdt: Add and use a node iteration helper function.
37226
37227     This patch adds an fdt_next_node() function which can be used to
37228     iterate through nodes of the tree while keeping track of depth.  This
37229     function is used to simplify the iteration code in a lot of other
37230     functions, and is also exported for use by library users.
37231
37232     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
37233
37234 commit 8cf30809a82902a471866d2f07725ce3b8a22291
37235 Author: Bartlomiej Sieka <tur@semihalf.com>
37236 Date:   Fri Feb 29 16:00:24 2008 +0100
37237
37238     [new uImage] Add libfdt support to mkimage
37239
37240     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37241
37242 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
37243 Author: Bartlomiej Sieka <tur@semihalf.com>
37244 Date:   Fri Feb 29 16:00:23 2008 +0100
37245
37246     [new uImage] Add sha1.o object to mkimage binary build
37247
37248     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37249
37250 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
37251 Author: Marian Balakowicz <m8@semihalf.com>
37252 Date:   Fri Feb 29 16:00:06 2008 +0100
37253
37254     [new uImage] Fix component handling for legacy multi component images
37255
37256     Use uint32_t when accessing size table in image_multi_count() and
37257     image_multi_getimg() for multi component images.
37258
37259     Add missing uimage_to_cpu() endianness conversion.
37260
37261     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37262
37263 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
37264 Author: Marian Balakowicz <m8@semihalf.com>
37265 Date:   Fri Feb 29 15:59:59 2008 +0100
37266
37267     [new uImage] Share common uImage code between mkimage and U-boot
37268
37269     This patch adds the following common routines:
37270
37271     1) Dedicated mkimage print_header() is replaced with common
37272     image_print_contents()
37273     image_print_contents_noindent()
37274
37275     2) Common os/arch/type/comp fields name <--> id translation routines
37276     genimg_get_os_name()
37277     genimg_get_arch_name()
37278     genimg_get_type_name()
37279     genimg_get_comp_name()
37280     genimg_get_os_id()
37281     genimg_get_arch_id()
37282     genimg_get_type_id()
37283     genimg_get_comp_id()
37284
37285     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37286
37287 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
37288 Author: Marian Balakowicz <m8@semihalf.com>
37289 Date:   Fri Feb 29 14:58:34 2008 +0100
37290
37291     [new uImage] Update naming convention for bootm/uImage related code
37292
37293     This patch introduces the following prefix convention for the
37294     image format handling and bootm related code:
37295
37296     genimg_             - dual format shared code
37297     image_              - legacy uImage format specific code
37298     fit_                - new uImage format specific code
37299     boot_               - booting process related code
37300
37301     Related routines are renamed and a few pieces of code are moved around and
37302     re-grouped.
37303
37304     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37305
37306 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
37307 Author: Kumar Gala <galak@kernel.crashing.org>
37308 Date:   Wed Feb 27 21:51:51 2008 -0600
37309
37310     [new uImage] Respect autostart setting in linux bootm
37311
37312     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37313     Acked-by: Marian Balakowicz <m8@semihalf.com>
37314
37315 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
37316 Author: Kumar Gala <galak@kernel.crashing.org>
37317 Date:   Wed Feb 27 21:51:50 2008 -0600
37318
37319     [new uImage] Provide ability to restrict region used for boot images
37320
37321     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
37322     to restrict what memory range is used for bootm.
37323
37324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37325     Acked-by: Marian Balakowicz <m8@semihalf.com>
37326
37327 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
37328 Author: Kumar Gala <galak@kernel.crashing.org>
37329 Date:   Wed Feb 27 21:51:49 2008 -0600
37330
37331     [new uImage] Use lmb for bootm allocations
37332
37333     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
37334     functions over to using lmb for allocation of the ramdisk, command line
37335     and kernel bd info.
37336
37337     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
37338     tree.
37339
37340     Provided a weak function that board code can call to do additional
37341     lmb reserves if needed.
37342
37343     Also introduce the concept of bootmap_base to specify the offset in
37344     physical memory that the bootmap is located at.  This is used for
37345     allocations of the cmdline, kernel bd, and device tree as they should
37346     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
37347
37348     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37349
37350 commit f5614e7926863bf0225ec860d9b319741a9c4004
37351 Author: Kumar Gala <galak@kernel.crashing.org>
37352 Date:   Wed Feb 27 21:51:48 2008 -0600
37353
37354     [new uImage] Add autostart flag to bootm_headers structure
37355
37356     The autostart env variable was dropped as part of the initial new uImage
37357     cleanup.  Add it back here so the arch specific code can decide if it
37358     wants to really boot or not.
37359
37360     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37361     Acked-by: Marian Balakowicz <m8@semihalf.com>
37362
37363 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
37364 Author: Kumar Gala <galak@kernel.crashing.org>
37365 Date:   Wed Feb 27 21:51:47 2008 -0600
37366
37367     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
37368
37369     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
37370     the memory spaces used by various boot images and structures.  This code
37371     will allow us to simplify the code in bootm and its support functions.
37372
37373     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37374
37375 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
37376 Author: Kumar Gala <galak@kernel.crashing.org>
37377 Date:   Tue Feb 19 22:03:47 2008 -0600
37378
37379     [new uImage] ppc: Allow boards to specify effective amount of memory
37380
37381     For historical reasons we limited the stack to 256M because some boards
37382     could only map that much via BATS.  However newer boards are capable of
37383     mapping more memory (for example 85xx is capable of doing up to 2G).
37384
37385     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37386     Acked-by: Marian Balakowicz <m8@semihalf.com>
37387
37388 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
37389 Author: Kumar Gala <galak@kernel.crashing.org>
37390 Date:   Wed Feb 27 21:51:46 2008 -0600
37391
37392     [new uImage] rework error handling so common functions don't reset
37393
37394     Changed image_get_ramdisk() to just return NULL on error and have
37395     get_ramdisk() propogate that error to the caller.  It's left to the
37396     caller to call do_reset() if it wants to.
37397
37398     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
37399     to a common location.  In the future we will change get_fdt() and
37400     fdt_relocate() to return success/failure and not call do_reset() at all.
37401
37402     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37403     Acked-by: Marian Balakowicz <m8@semihalf.com>
37404
37405 commit d2bc095a639672def11d5d043b5688d0dbd692ec
37406 Author: Kumar Gala <galak@kernel.crashing.org>
37407 Date:   Wed Feb 27 21:51:45 2008 -0600
37408
37409     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
37410
37411     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
37412     however it does mean we have to go in and fixup the initrd info since
37413     we don't know where it will be.
37414
37415     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37416
37417 commit 27953493ef025fb698d68c5dee39b36f01f4d530
37418 Author: Kumar Gala <galak@kernel.crashing.org>
37419 Date:   Wed Feb 27 21:51:44 2008 -0600
37420
37421     [new uImage] ppc: Determine if we are booting an OF style
37422
37423     If we are bootin OF style than we can skip setting up some things
37424     that are used for the old boot method.
37425
37426     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37427     Acked-by: Marian Balakowicz <m8@semihalf.com>
37428
37429 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
37430 Author: Kumar Gala <galak@kernel.crashing.org>
37431 Date:   Wed Feb 27 21:51:43 2008 -0600
37432
37433     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
37434
37435     We don't actually need the kdb param as we are just using it to get
37436     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
37437     boot via OF we might not actually fill out a kdb.
37438
37439     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37440     Acked-by: Marian Balakowicz <m8@semihalf.com>
37441
37442 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
37443 Author: Kumar Gala <galak@kernel.crashing.org>
37444 Date:   Wed Feb 27 16:30:47 2008 -0600
37445
37446     85xx: Don't icbi when unlocking the cache
37447
37448     There is no reason to icbi when invalidating the temporary stack in
37449     the d-cache.  Its impossible on e500 to have the i-cache contain
37450     any addresses in the temp stack and it can be problematic in generating
37451     transactions on the bus to non-valid addresses.
37452
37453     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37454
37455 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
37456 Author: Andy Fleming <afleming@freescale.com>
37457 Date:   Wed Feb 27 15:50:50 2008 -0600
37458
37459     Fix source for ECM error IVPR
37460
37461     The source vector for the ECM was being set to 2,
37462     but that's what the source vector for DDR was being
37463     set to.  Change it to 1.
37464
37465     Signed-off-by: Andy Fleming <afleming@freescale.com>
37466
37467 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
37468 Author: Andy Fleming <afleming@freescale.com>
37469 Date:   Wed Feb 27 14:29:58 2008 -0600
37470
37471     Invalidate INIT_RAM TLB mappings
37472
37473     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
37474     mappings to be unguarded.  This collided with an existing "bug"
37475     where the mappings for the INIT_RAM were being kept around.
37476     This meant that speculative loads to those addresses were
37477     succeeding in the TLB, and going out to the bus, where they
37478     were causing an exception (there's nothing at that address). The
37479     Flash code was coincidentally causing such a speculative load.
37480     Rather than go back to mapping the INIT RAM as guarded, we fix
37481     it so that the entries for the INIT_RAM are invalidated.  Thus
37482     the speculative loads will fail in the TLB, and have no effect.
37483
37484     Signed-off-by: Andy Fleming <afleming@freescale.com>
37485
37486 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
37487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37488 Date:   Sun Feb 17 22:56:17 2008 +0100
37489
37490     sbc8548: Fix Revision reading and unused variable 'path'
37491
37492     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37493
37494 commit 495d162374c472f46454453553382ad0735dc725
37495 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37496 Date:   Sun Feb 17 22:56:16 2008 +0100
37497
37498     sbc8548: Fix cfi flash bank declaration
37499
37500     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37501
37502 commit 4efbe9dbb129f857f27856936112c8c02f016be6
37503 Author: Marian Balakowicz <m8@semihalf.com>
37504 Date:   Wed Feb 27 11:02:26 2008 +0100
37505
37506     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
37507
37508     Dual format image code must properly handle all three FDT passing methods:
37509     - raw FDT blob passed
37510     - FDT blob embedded in the legacy uImage
37511     - FDT blob embedded in the new uImage
37512
37513     This patch enables proper raw FDT handling when no FIT imaeg support
37514     is compiled in. This is a bit tricky as we must dected FIT format even
37515     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
37516     blobs use tha same low level format (libfdt).
37517
37518     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37519
37520 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
37521 Author: Marian Balakowicz <m8@semihalf.com>
37522 Date:   Wed Feb 27 11:02:26 2008 +0100
37523
37524     [new uImage] POWERPC: Add image_get_fdt() routine
37525
37526     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
37527     (3) or embedded in the new uImage. For the (2) case embedding image must be
37528     verified before we get FDT from it. This patch factors out legacy image
37529     specific verification routine to the separate helper routine.
37530
37531     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37532     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37533
37534 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
37535 Author: Marian Balakowicz <m8@semihalf.com>
37536 Date:   Wed Feb 27 11:02:07 2008 +0100
37537
37538     [new uImage] Add image_get_kernel() routine
37539
37540     Legacy image specific verification is factored out to a separate helper
37541     routine to keep get_kernel() generic and simple.
37542
37543     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37544     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37545
37546 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
37547 Author: Marian Balakowicz <m8@semihalf.com>
37548 Date:   Wed Feb 27 11:01:04 2008 +0100
37549
37550     [new uImage] Move image verify flag to bootm_headers structure
37551
37552     Do not pass image verification flag directly to related routines.
37553     Simplify argument passing and move it to the bootm_header structure which
37554     contains curently processed image specific data and is already being passed
37555     on the argument list.
37556
37557     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37558     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37559
37560 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
37561 Author: Marian Balakowicz <m8@semihalf.com>
37562 Date:   Wed Feb 27 11:00:47 2008 +0100
37563
37564     [Makefile] Sort COBJS in lib_<arch> Makefiles
37565
37566     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37567
37568 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
37569 Author: Marian Balakowicz <m8@semihalf.com>
37570 Date:   Wed Feb 27 11:00:47 2008 +0100
37571
37572     [new uImage] Optimize gen_get_image() flow control
37573
37574     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
37575     to do, update its control flow to better reflect that simple case.
37576
37577     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37578     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37579
37580 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
37581 Author: Marian Balakowicz <m8@semihalf.com>
37582 Date:   Mon Feb 4 08:28:17 2008 +0100
37583
37584     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
37585
37586     PPC specific FDT blob handling code is divided into two separate routines:
37587
37588     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
37589     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
37590
37591     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37592     Acked-by: Kumar Gala <galak@kernel.crashing.org>
37593
37594 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
37595 Author: Jon Loeliger <jdl@freescale.com>
37596 Date:   Mon Feb 25 13:13:37 2008 -0600
37597
37598     86xx: Fix renamed GUR symbols in sbc8641d board.
37599
37600     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
37601     (86xx: Fix GUR PCI config registers properly), we should have
37602     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
37603     symbols in the sbc8641d board as well.  Fix this oversight.
37604
37605     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37606
37607 commit 64cd594e623c39f73964d18787763e4533f791f7
37608 Author: Stefan Roese <sr@denx.de>
37609 Date:   Mon Feb 25 16:50:48 2008 +0100
37610
37611     ppc4xx: Fix acadia_nand build problem
37612
37613     Don't include testdram() on NAND-booting target acadia_nand. This saves
37614     a few bytes and makes the target build clean again.
37615
37616     Signed-off-by: Stefan Roese <sr@denx.de>
37617
37618 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
37619 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37620 Date:   Sun Feb 24 23:03:12 2008 +0000
37621
37622     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
37623
37624     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37625
37626 commit 724902c8464e610642b3a170278b99710325888e
37627 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37628 Date:   Sun Feb 24 23:03:11 2008 +0000
37629
37630     arm-imx: Fix registers definition
37631
37632     Sync registers definition with linux
37633
37634     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37635
37636 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
37637 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37638 Date:   Sun Feb 24 23:03:10 2008 +0000
37639
37640     actua1/actua2/actua3: Fix multipleunused variable
37641
37642     - actua1:
37643         actux1.c: In function 'checkboard':
37644         actux1.c:92: warning: unused variable 'revision'
37645
37646     - actua2:
37647         actux2.c: In function 'checkboard':
37648         actux2.c:100: warning: unused variable 's'
37649         actux2.c:99: warning: unused variable 'revision'
37650         actux2.c: In function 'reset_phy':
37651         actux2.c:130: warning: unused variable 'i'
37652
37653     - actua3:
37654         actux3.c: In function 'checkboard':
37655         actux3.c:114: warning: unused variable 'revision'
37656
37657     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37658
37659 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
37660 Author: Marian Balakowicz <m8@semihalf.com>
37661 Date:   Mon Feb 4 08:28:09 2008 +0100
37662
37663     [new uImage] Add dual format uImage support framework
37664
37665     This patch adds framework for dual format images. Format detection is added
37666     and the bootm controll flow is updated to include cases for new FIT format
37667     uImages.
37668
37669     When the legacy (image_header based) format is detected appropriate
37670     legacy specific handling is invoked. For the new (FIT based) format uImages
37671     dual boot framework has a minial support, that will only print out a
37672     corresponding debug messages. Implementation of the FIT specific handling will
37673     be added in following patches.
37674
37675     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37676
37677 commit b29661fc1151077776454288051bc9a488351ce8
37678 Author: Wolfgang Denk <wd@denx.de>
37679 Date:   Sun Feb 24 15:21:36 2008 +0100
37680
37681     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
37682
37683     Signed-off-by: Wolfgang Denk <wd@denx.de>
37684
37685 commit 00b48a48424894daa589d166d73277830b1c6ac4
37686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37687 Date:   Sat Feb 23 12:15:56 2008 +0100
37688
37689     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
37690
37691     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37692
37693 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
37694 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37695 Date:   Sat Feb 23 17:24:16 2008 +0900
37696
37697     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
37698
37699     ----------------------------------------------------------------
37700     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
37701
37702     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
37703     32bit targets.
37704
37705     GCC can be made to warn about usage of long long types with ISO C90
37706     (-ansi), but only with -pedantic.  You can write this in a way that even
37707     then it doesn't cause warnings, namely by:
37708
37709     #ifdef __GNUC__
37710     __extension__ typedef __signed__ long long __s64;
37711     __extension__ typedef unsigned long long __u64;
37712     #endif
37713
37714     The __extension__ keyword in front of this switches off any pedantic
37715     warnings for this expression.
37716
37717     Signed-off-by: Olaf Hering <olh@suse.de>
37718     Cc: <linux-arch@vger.kernel.org>
37719     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
37720     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
37721     ----------------------------------------------------------------
37722
37723     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37724
37725 commit 208acd112e6517b21fc30c420396902b103563ac
37726 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37727 Date:   Sat Feb 23 17:07:57 2008 +0900
37728
37729     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
37730
37731     This will reduce the build time.
37732
37733     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37734
37735 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
37736 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37737 Date:   Sat Feb 23 17:05:00 2008 +0900
37738
37739     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
37740
37741     This will reduce the build time.
37742
37743     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37744
37745 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
37746 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37747 Date:   Sat Feb 23 16:58:41 2008 +0900
37748
37749     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
37750
37751     This reduces the build time by ~10%. Here's the gth2_config example.
37752
37753             BEFORE       AFTER
37754     real    0m31.441s    0m27.833s
37755     user    0m24.766s    0m23.045s
37756     sys     0m10.425s    0m7.468s
37757
37758     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37759
37760 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
37761 Author: Marcel Moolenaar <marcelm@juniper.net>
37762 Date:   Fri Feb 22 10:48:07 2008 -0800
37763
37764     make define2mk.sed work on FreeBSD
37765
37766     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
37767     the define2mk.sed script was identified as the source of the link
37768     failure on FreeBSD. The problem is that sed(1) does not always support
37769     the '+' operator. It isn't on FreeBSD. The attach patch implements the
37770     equivalent, using the '*' operator instead and should work everywhere.
37771
37772     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
37773
37774 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
37775 Author: Detlev Zundel <dzu@denx.de>
37776 Date:   Fri Feb 22 17:21:32 2008 +0100
37777
37778     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
37779
37780     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
37781     final traces of long-deprecated "ramdisk" kernel parm") makes these
37782     changes neccessary.
37783
37784     Signed-off-by: Detlev Zundel <dzu@denx.de>
37785
37786 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
37787 Author: Larry Johnson <lrj@acm.org>
37788 Date:   Thu Feb 21 13:58:16 2008 -0500
37789
37790     LM75 bug fix for negative temperatures
37791
37792     When the LM75 temperature sensor measures a temperature below 0 C, the
37793     current driver does not perform sign extension, so the result returned is
37794     256 C too high.  This patch fixes the problem.
37795
37796     Signed-off-by: Larry Johnson <lrj@acm.org>
37797
37798 commit 5a910c224b13e413bda41922379add6d75c32da3
37799 Author: Heiko Schocher <hs@denx.de>
37800 Date:   Thu Feb 21 18:33:45 2008 +0100
37801
37802     IDS8247: update MAINTAINER entry.
37803
37804     Signed-off-by: Heiko Schocher <hs@denx.de>
37805
37806 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
37807 Author: Heiko Schocher <hs@denx.de>
37808 Date:   Thu Feb 21 18:31:15 2008 +0100
37809
37810     Fix device tree for mgsuvd board.
37811
37812     Rename the "scc" node in "ethernet" for the mgsuvd board.
37813
37814     Signed-off-by: Heiko Schocher <hs@denx.de>
37815
37816 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
37817 Author: Yuri Tikhonov <yur@emcraft.com>
37818 Date:   Thu Feb 21 14:23:42 2008 +0100
37819
37820     lwmon5: enable hardware watchdog
37821
37822     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
37823     causing it to reboot the board if U-Boot does a long busy-wait with
37824     udelay(). Thus, for these boards we have to restart WD more
37825     frequently.
37826
37827     This patch splits the busy-wait udelay() into smaller, predefined,
37828     intervals, so that the watchdog timer may be resetted with the
37829     configurable (CONFIG_WD_PERIOD) interval.
37830
37831     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37832
37833 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
37834 Author: Anatolij Gustschin <agust@denx.de>
37835 Date:   Thu Feb 21 12:52:29 2008 +0100
37836
37837     ppc4xx: Support for ATI Radeon 9200 card on sequoia
37838
37839     Adds configuration option for ATI Radeon 9200 card
37840     support to sequoia config file. If CONFIG_VIDEO
37841     is enabled, TEXT_BASE should be changed to 0xFFF80000.
37842
37843     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37844
37845 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
37846 Author: Kumar Gala <galak@kernel.crashing.org>
37847 Date:   Mon Feb 18 08:18:07 2008 -0600
37848
37849     Remove duplicate defines for ARRAY_SIZE
37850
37851     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
37852     the define in common.h.
37853
37854     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37855
37856 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
37857 Author: Kumar Gala <galak@kernel.crashing.org>
37858 Date:   Mon Feb 18 08:09:37 2008 -0600
37859
37860     ppc: Allow boards to specify effective amount of memory
37861
37862     For historical reasons we limited the stack to 256M because some boards
37863     could only map that much via BATS.  However newer boards are capable of
37864     mapping more memory (for example 85xx is capable of doing up to 2G).
37865
37866     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37867
37868 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
37869 Author: Mike Frysinger <vapier@gentoo.org>
37870 Date:   Mon Feb 18 05:24:13 2008 -0500
37871
37872     include autoconf.mk before any other .mk files
37873
37874     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
37875     those .mk files can have make if statements based on the current config.
37876
37877     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37878
37879 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
37880 Author: Mike Frysinger <vapier@gentoo.org>
37881 Date:   Mon Feb 18 05:10:07 2008 -0500
37882
37883     error check autoconf.mk generation
37884
37885     If any of the steps for generating autoconf.mk fail currently, they go
37886     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
37887     This is simpler and more robust than placing '|| exit $$?' after every line.
37888
37889     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37890
37891 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
37892 Author: Stefano Babic <sbabic@denx.de>
37893 Date:   Mon Feb 18 08:03:51 2008 +0100
37894
37895     Fix bug in dependency checking
37896
37897     By adding VERSION_FILE to the PHONY targets the script
37898     /tools/setlocalversion is always called and version_autogenerated.h
37899     is replaced only if the script find a modified source file.
37900
37901     Signed-off-by: Stefano Babic <sbabic@denx.de>
37902
37903 commit 98ba144ccc912eee90dd42699f023c497ce774c6
37904 Author: Kyungmin Park <kmpark@infradead.org>
37905 Date:   Mon Feb 18 14:35:43 2008 +0900
37906
37907     Fix GPMC CS2 memory setup at apollon
37908
37909     It disables the current map first
37910
37911     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
37912
37913 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
37914 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37915 Date:   Sun Feb 17 23:52:46 2008 +0100
37916
37917     uli526x: Fix multiple differ in signedness and parentheses around comparison
37918
37919     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37920
37921 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
37922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37923 Date:   Sun Feb 17 16:58:04 2008 +0100
37924
37925     MIPS: Fix CFG_NO_FLASH support
37926
37927     - Fix flash_init call when CFG_NO_FLASH is used
37928     - Remove no more needed flash.c for qemu-mips
37929
37930     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37931
37932 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
37933 Author: Mike Frysinger <vapier@gentoo.org>
37934 Date:   Sat Feb 16 02:40:18 2008 -0500
37935
37936     easylogo: clean up some more and add -r (rgb) support
37937
37938     Michael Hennerich added support for outputting an image in RGB format rather
37939     than forcing YUYV all the time.  This makes obvious sense if the display you
37940     have takes RGB input rather than YUYV.
37941
37942     Rather than hack in support for options, I've converted it to use getopt and
37943     cleaned up the argument parsing in the process.
37944
37945     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
37946     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37947
37948 commit f65c98129ccada3f7caf97d80395a95b84e911de
37949 Author: Mike Frysinger <vapier@gentoo.org>
37950 Date:   Sat Feb 16 02:12:37 2008 -0500
37951
37952     Makefile: add target for $(LDSCRIPT)
37953
37954     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
37955     then change into the board directory and try and create it.  This allows you
37956     to generate the linker script on the fly based upon board defines (like the
37957     Blackfin boards do).
37958
37959     There should be no regressions due to this change as the normal case is to
37960     already have a u-boot.lds file.  If that's the case, then there's nothing to
37961     generate, and so make will always exit.  The fix here is that if the linker
37962     script does not exist, the implicit rules take over and attempt to guess how
37963     to generate the file.
37964
37965     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37966
37967 commit 5583cbf736474ef754e128a54fb78632f57b48fd
37968 Author: Marian Balakowicz <m8@semihalf.com>
37969 Date:   Thu Feb 21 17:27:49 2008 +0100
37970
37971     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
37972
37973     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37974
37975 commit 2242f5369822bc7780db95c47985bb408ea9157b
37976 Author: Marian Balakowicz <m8@semihalf.com>
37977 Date:   Thu Feb 21 17:27:41 2008 +0100
37978
37979     [new uImage] Rename and move print_image_hdr() routine
37980
37981     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37982
37983 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
37984 Author: Marian Balakowicz <m8@semihalf.com>
37985 Date:   Thu Feb 21 17:20:20 2008 +0100
37986
37987     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
37988
37989     Introducing routines for parsing new uImage format bootm arguments:
37990     [<addr>]#<conf>             - configuration specification
37991     [<addr>]:<subimg>   - subimage specification
37992
37993     New format images can contain multiple subimages of the same type. For example
37994     a single new format image file can contain three kernels, two ramdisks and a
37995     couple of FDT blobs. Subimage and configuration specifications are extensions
37996     to bootm (and other image-related commands) arguments' syntax that allow to
37997     specify which particular subimage should be operated on.
37998
37999     Subimage specification is used to denote a particular subimage. Configurations
38000     are a bit more complex -- they are used to define a particualr booting setup,
38001     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
38002     etc.
38003
38004     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38005
38006 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
38007 Author: Marian Balakowicz <m8@semihalf.com>
38008 Date:   Thu Feb 21 17:20:19 2008 +0100
38009
38010     [new uImage] Add gen_get_image() routine
38011
38012     This routine assures that image (whether legacy or FIT) is not
38013     in a special dataflash storage.
38014
38015     If image address is a dataflash address image is moved to system RAM.
38016
38017     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38018
38019 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
38020 Author: Marian Balakowicz <m8@semihalf.com>
38021 Date:   Thu Feb 21 17:20:18 2008 +0100
38022
38023     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
38024
38025     New uImage format (Flattened Image Tree) requires libfdt
38026     functionality, print out error message if CONFIG_OF_LIBFDT
38027     is not defined.
38028
38029     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
38030     This commit turns it on by default.
38031
38032     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38033
38034 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
38035 Author: Michael Schwingen <michael@schwingen.org>
38036 Date:   Mon Feb 18 23:16:35 2008 +0100
38037
38038     CFI: Do not use uninitialized cmd_reset
38039
38040     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
38041     commands instead
38042
38043     From a short test, it looks like AMD-style flash roms treat *any* unknown
38044     command write as a reset, at least when in CFI Query mode, so issuing the
38045     Intel reset command to AMD-style flashs seems safe (from the small sample I
38046     have), plus the 3-cycle magic sequence should kick the state machine into
38047     the right state even without a reset command. Since the AMD-style flashs
38048     require the unlock sequence for real operation, I chose to try the AMD reset
38049     command first, so that Intel flashs do no see an invalid command prior to
38050     the CFI query.
38051
38052     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
38053     plus Intel StrataFlash.
38054
38055     Signed-off-by: Michael Schwingen <michael@schwingen.org>
38056     Signed-off-by: Stefan Roese <sr@denx.de>
38057
38058 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
38059 Author: Rafal Jaworowski <raj@semihalf.com>
38060 Date:   Thu Feb 21 11:56:44 2008 +0100
38061
38062     API: Add (c) and licensing notice to the public API header.
38063
38064     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
38065
38066 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
38067 Author: Yuri Tikhonov <yur@emcraft.com>
38068 Date:   Thu Feb 21 11:06:07 2008 +0100
38069
38070     Fix CPU POST test failure
38071
38072     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
38073     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
38074     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
38075     This patch just saves the CR value before running the test code, so allowing
38076     it to do anything it wants with CR.
38077
38078     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
38079     Acked-by: Yuri Tikhonov <yur@emcraft.com>
38080     --
38081
38082 commit d5908b093955415f3d340706378b991f911af671
38083 Author: Jon Loeliger <jdl@freescale.com>
38084 Date:   Wed Feb 20 15:26:51 2008 -0600
38085
38086     8610HPCD: Document the flashbank selection switches.
38087
38088     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38089
38090 commit a551cee99ad1d1da20fd23ad265de47448852f56
38091 Author: Jon Loeliger <jdl@freescale.com>
38092 Date:   Wed Feb 20 14:22:26 2008 -0600
38093
38094     86xx: Fix GUR PCI config registers properly.
38095
38096     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
38097     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
38098     botched it due to not realizing that 8610 and 8641 had different
38099     Global Utility Register defintions, one of which was like 85xx,
38100     and the other wasn't.  Correct this problem by introducing two
38101     symbols, one for each 86xx SoC, but neither of which is named
38102     anything like 85xx.
38103
38104     My bad.  Lovely Wednesday with git bisect.  You know.
38105
38106     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38107
38108 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
38109 Author: Jon Loeliger <jdl@freescale.com>
38110 Date:   Wed Feb 20 12:24:11 2008 -0600
38111
38112     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
38113
38114     Without an actual supported video card hooked up, enabling
38115     the CONFIG_VIDEO by default just makes it look broken by
38116     routing all console output to the video card.   Don't.
38117
38118     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38119
38120 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
38121 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
38122 Date:   Wed Jan 30 15:08:15 2008 -0600
38123
38124     ColdFire: Fix missing code flash size for M5485EVB
38125
38126     Signed-off-by: James Mahan <kmahan@freescale.com>
38127     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38128
38129 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
38130 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
38131 Date:   Wed Jan 30 15:04:42 2008 -0600
38132
38133     ColdFire: Fix 5282 and 5271 interrupt mask bit
38134
38135     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38136
38137 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
38138 Author: Jon Loeliger <jdl@freescale.com>
38139 Date:   Tue Feb 19 12:31:08 2008 -0600
38140
38141     8610HPCD: Fix typos in two PCI setup registers.
38142
38143     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
38144     were erroneously present as 85xx names and values, leftover from
38145     the clone wars.  Fix this by removing the 85xx cruft from the
38146     86xx codebase.
38147
38148     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38149
38150 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
38151 Author: Jon Loeliger <jdl@freescale.com>
38152 Date:   Mon Feb 18 14:01:56 2008 -0600
38153
38154     86xx: Convert sbc8641d to use libfdt.
38155
38156     This is the proper fix for a missing closing brace in the function
38157     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
38158     The ft_cpu_setup() function in mpc8641hpcn.c should have been
38159     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
38160     but was missed.  Only, the sbc8641d was nominally still using it.
38161     It all got ripped out, and the funcality that was in ft_board_setup()
38162     was refactored to remove the CPU portions into the new file
38163     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
38164
38165     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
38166
38167     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38168
38169 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
38170 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38171 Date:   Sun Feb 17 23:35:31 2008 +0100
38172
38173     mpc86xx: Fix unused variable 'config' and 'immap'
38174
38175     and remove useless CONFIG_DDR_INTERLEAVE
38176
38177     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38178
38179 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
38180 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38181 Date:   Sun Feb 17 23:03:36 2008 +0100
38182
38183     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
38184
38185     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38186
38187 commit b6f29c84c208a091f95a10cbc9852d729659ba20
38188 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38189 Date:   Sun Feb 17 14:15:31 2008 +0100
38190
38191     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
38192
38193     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38194
38195 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
38196 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38197 Date:   Sun Feb 17 14:15:32 2008 +0100
38198
38199     pxa: fix assignment from incompatible pointer type
38200
38201     fix mmc_bread function prototype
38202
38203     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38204
38205 commit 64d792063fff90b8118179b092feee09fe5cae13
38206 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38207 Date:   Sun Feb 17 14:15:30 2008 +0100
38208
38209     at91cap9adk: fix implicit declaration of function 'eth_init'
38210
38211     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38212
38213 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
38214 Author: Wolfgang Denk <wd@denx.de>
38215 Date:   Sun Feb 17 15:43:44 2008 +0100
38216
38217     Remove files added by mistake, update CHANGELOG.
38218
38219     Signed-off-by: Wolfgang Denk <wd@denx.de>
38220
38221 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
38222 Author: Mike Nuss <mike@terascala.com>
38223 Date:   Wed Feb 6 11:10:11 2008 -0500
38224
38225     PPC440EPx: Optionally enable second I2C bus
38226
38227     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
38228     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
38229     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
38230
38231     Signed-off-by: Mike Nuss <mike@terascala.com>
38232     Cc: Stefan Roese <sr@denx.de>
38233
38234 commit ef5b4f221c22d05770878513951745f236b5b43f
38235 Author: Niklaus Giger <niklaus.giger@netstal.com>
38236 Date:   Tue Feb 5 10:26:44 2008 +0100
38237
38238     ppc4xx: HCU4/5. Cleanup configs
38239
38240     - hcu4.h: Removed define of CONFIG_PPC405GPr
38241     - Corrected phy addresses
38242     - Fix boot variables
38243     - Respect line length of 80 chars
38244
38245     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38246
38247 commit 74973126d1be63ac75bdc192f46234dca3a7c421
38248 Author: Niklaus Giger <niklaus.giger@netstal.com>
38249 Date:   Tue Feb 5 11:31:28 2008 +0100
38250
38251     ppc4xx: HCU4/5. Cleanups
38252
38253     - Fix some coding style violations.
38254     - Use in/out_u16/32 where appropriate.
38255     - Use register names from ppc405.h.
38256     - Fix trace useage for Lauterbach.
38257     - Remove obsolete generation HCU2.
38258     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
38259
38260     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38261
38262 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
38263 Author: Niklaus Giger <niklaus.giger@netstal.com>
38264 Date:   Tue Feb 5 10:26:41 2008 +0100
38265
38266     ppc4xx: PPC405GPr fix missing register definitions
38267
38268     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38269
38270 commit 214398d9cb22268d9d4f7563359edca0f78297a2
38271 Author: Larry Johnson <lrj@acm.org>
38272 Date:   Fri Jan 18 21:49:05 2008 -0500
38273
38274     ppc4xx: Beautify configuration files for Sequoia and Korat boards
38275
38276     Signed-off-by: Larry Johnson <lrj@acm.org>
38277
38278 commit 30c6a241e88499f536e86d325759e29ba00ff67f
38279 Author: Anatolij Gustschin <agust@denx.de>
38280 Date:   Fri Feb 15 20:09:01 2008 +0100
38281
38282     Wipe out assembler warnings while compiling x86 biosemu
38283
38284     This patch tries to get rid of some assembler warnings about
38285     changed .got2 section type while compiling x86 bios emulator
38286     code.
38287
38288     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38289
38290 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
38291 Author: Wolfgang Denk <wd@denx.de>
38292 Date:   Fri Feb 15 00:57:09 2008 +0100
38293
38294     Prepare v1.3.2-rc1 release candidate
38295
38296 commit f33e9653c9c09868995d788511d573771c209fe5
38297 Author: Anatolij Gustschin <agust@denx.de>
38298 Date:   Fri Feb 15 00:13:20 2008 +0100
38299
38300     Fix compile warning on lib_ppc/board.c
38301
38302     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38303
38304 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
38305 Author: Anatolij Gustschin <agust@denx.de>
38306 Date:   Thu Feb 14 18:22:04 2008 +0100
38307
38308     Add Radeon Mobility 9200 pci device id to the radeon driver
38309
38310     This patch extends PCI device id table of the
38311     radeon driver so that the driver will also support
38312     Radeon Mobility 9200 (M9+) based boards.
38313
38314     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38315
38316 commit 1b8607e1f7143548c6062c28371449ec69588c00
38317 Author: Anatolij Gustschin <agust@denx.de>
38318 Date:   Thu Feb 14 18:19:50 2008 +0100
38319
38320     Extend ATI Radeon driver to support more video modes
38321
38322     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
38323     800x600, 640x480 at 24, 16 and 8 bpp.
38324
38325     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38326
38327 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
38328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38329 Date:   Sun Feb 10 17:05:20 2008 +0100
38330
38331     xsengine: fix typo and few coding style
38332
38333     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38334
38335 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
38336 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38337 Date:   Fri Feb 8 21:25:58 2008 +0100
38338
38339     Fix wrong memory limit calculation in memory-test
38340
38341     If the length of the memory address range passed to the "mtest" command is
38342     not of the form 2^x - 1, not all address lines are tested. This bug is
38343     inherited from the original software at
38344     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
38345     this.
38346
38347     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38348
38349 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
38350 Author: Wolfgang Denk <wd@denx.de>
38351 Date:   Fri Feb 15 00:11:39 2008 +0100
38352
38353     Coding STyle cleanup.
38354
38355     Signed-off-by: Wolfgang Denk <wd@denx.de>
38356
38357 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
38358 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
38359 Date:   Tue Feb 5 13:30:43 2008 +0900
38360
38361     sh: Fix register address of SH7722
38362
38363     The address of SH7722 is wrong by old document.
38364     This patch fixes this problem.
38365
38366     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
38367
38368 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
38369 Author: Mike Frysinger <vapier@gentoo.org>
38370 Date:   Mon Feb 4 17:44:23 2008 -0500
38371
38372     only update version header as needed
38373
38374     Constantly rebuilding the version header will force useless relinking, so we
38375     simply need to compare the new header with the existing one before updating
38376     it.
38377
38378     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38379
38380 commit 208447f8e953f347425eb92c8e28d59e6d911363
38381 Author: Mike Frysinger <vapier@gentoo.org>
38382 Date:   Mon Jan 28 05:56:19 2008 -0500
38383
38384     Do not specify a CROSS_COMPILE default when executing size
38385
38386     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38387
38388 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
38389 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38390 Date:   Wed Feb 13 11:19:19 2008 +0100
38391
38392     Fix return value of mtest when CFG_ALT_MEMTEST set
38393
38394     Fix a missing return statement from a non-void function.
38395
38396     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
38397
38398 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
38399 Author: Timur Tabi <timur@freescale.com>
38400 Date:   Wed Jan 9 14:35:26 2008 -0600
38401
38402     85xx, 86xx: Determine I2C clock frequencies and store in global_data
38403
38404     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
38405
38406     Update the get_clocks() function in 85xx and 86xx to determine the I2C
38407     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
38408
38409     Signed-off-by: Timur Tabi <timur@freescale.com>
38410
38411 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
38412 Author: Wolfgang Denk <wd@denx.de>
38413 Date:   Thu Feb 14 23:18:01 2008 +0100
38414
38415     TQM834x: clean up configuration
38416
38417     Get board name consistent with Linux and elsewhere;
38418     get rid of local network definitions etc.
38419
38420     Signed-off-by: Wolfgang Denk <wd@denx.de>
38421
38422 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
38423 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38424 Date:   Thu Feb 14 08:02:12 2008 +0100
38425
38426     TFTP: fix search of ':' in BootFile
38427
38428     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38429
38430 commit 0bc9efada170096c6b273f19165e32936d330d80
38431 Author: Wolfgang Denk <wd@denx.de>
38432 Date:   Thu Feb 14 22:46:55 2008 +0100
38433
38434     Coding style cleanup; update CHANGELOG.
38435
38436     Signed-off-by: Wolfgang Denk <wd@denx.de>
38437
38438 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
38439 Author: Wolfgang Denk <wd@denx.de>
38440 Date:   Thu Feb 14 22:43:22 2008 +0100
38441
38442     PPC: Use r2 instead of r29 as global data pointer
38443
38444     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
38445     will refuse to use load/store multiple insns; instead, it issues a
38446     list of simple load/store instructions upon function entry and exit,
38447     resulting in bigger code size, which in turn makes the build for a
38448     few boards fail.
38449
38450     Use r2 instead.
38451
38452     Signed-off-by: Wolfgang Denk <wd@denx.de>
38453
38454 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
38455 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
38456 Date:   Wed Jan 30 09:08:49 2008 +0100
38457
38458     ARM: make the machid configurable via the environment
38459
38460     If the variable "machid" exists, let do_bootm_linux use that instead
38461     of bd->bi_arch_number.
38462
38463     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
38464
38465 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
38466 Author: Vlad Lungu <vlad@comsys.ro>
38467 Date:   Wed Jan 23 16:34:46 2008 +0200
38468
38469     Use #ifdef CONFIG_FSLDMAFEC
38470
38471     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
38472     fails
38473
38474     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
38475
38476 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
38477 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38478 Date:   Sat Jan 19 10:25:59 2008 +0900
38479
38480     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
38481
38482     Current MII_DEBUG is confusing in two ways. One is useless define-then-
38483     undef at the top of the file. The other is there is only one debug() in
38484     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
38485     While there are many useful printf()/puts() debug codes, but they are for
38486     DEBUG, not for MII_DEBUG.
38487
38488     This patch tries to put them all together into MII_DEBUG and debug().
38489
38490     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
38491
38492 commit 751b9b5189f3274b03c809172631316d6b002c82
38493 Author: Kyungmin Park <kmpark@infradead.org>
38494 Date:   Thu Jan 17 16:43:25 2008 +0900
38495
38496     OneNAND Initial Program Loader (IPL) support
38497
38498     This patch enables the OneNAND boot within U-Boot.
38499     Before this work, we used another OneNAND IPL called X-Loader based
38500     on open source. With this work, we can build the oneboot.bin image
38501     without other program.
38502
38503     The build sequence is simple.
38504     First, it compiles the u-boot.bin
38505     Second, it compiles OneNAND IPL
38506     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
38507     The mechanism is similar with NAND boot except it boots from itself.
38508
38509     Another thing is that you can only use the OneNAND IPL only to work
38510     other bootloader such as RedBoot and so on.
38511
38512     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38513
38514 commit 21f6f9636f0e978397548751347425fbf8d42bb3
38515 Author: Andy Fleming <afleming@freescale.com>
38516 Date:   Wed Jan 16 13:06:59 2008 -0600
38517
38518     Fix CONFIG_MMC usage in fat code
38519
38520     A #if statement in fat.c depended on CONFIG_MMC, instead of
38521     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
38522     as "1" rather than just defined.  Now it's better.
38523
38524     Signed-off-by: Andy Fleming <afleming@freescale.com>
38525
38526 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
38527 Author: Rafal Jaworowski <raj@semihalf.com>
38528 Date:   Tue Jan 15 12:52:31 2008 +0100
38529
38530     ppc: Refactor cache routines, so there is only one common set.
38531
38532     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
38533
38534 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
38535 Author: Jon Loeliger <jdl@jdl.com>
38536 Date:   Wed Jan 23 15:55:02 2008 -0600
38537
38538     86xx: Fix compilation warning in sys_eprom.c
38539
38540     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
38541
38542     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38543
38544 commit 65230107025733e89e28fd5e5cfd916d4953c28a
38545 Author: Haavard Skinnemoen <hskinnemoen at>
38546 Date:   Fri Feb 22 11:40:50 2008 +0000
38547
38548     Move AT91RM9200DK board support under board/atmel
38549
38550     We already have a vendor subdir for Atmel, so we should use it.
38551
38552     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
38553
38554 commit 6d0943a6be99977d6d853d51749e9963d68eb192
38555 Author: Andreas Engel <andreas.engel@ericsson.com>
38556 Date:   Mon Jan 14 09:06:52 2008 +0000
38557
38558     ARM: cleanup duplicated exception handlingcode
38559
38560     Move duplicated exception handling code into lib_arm.
38561
38562     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
38563
38564 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
38565 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
38566 Date:   Fri Feb 1 10:09:03 2008 +0000
38567
38568     Support for Artila M-501 starter kit
38569
38570     Kimmo Leppala / Sysart and
38571     Timo Tuunainen / Sysart
38572
38573 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
38574 Author: Stelian Pop <stelian@popies.net>
38575 Date:   Mon Feb 11 10:50:19 2008 +0000
38576
38577     AT91CAP9 support
38578
38579     ---------------------------------
38580
38581     read_dataflash() takes a signed char pointer as a parameter. Silence a
38582     few warnings dues to incorrect parameter types in env_dataflash.c.
38583
38584     Signed-off-by: Stelian Pop <stelian@popies.net>
38585
38586 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
38587 Author: Stelian Pop <stelian@popies.net>
38588 Date:   Thu Feb 7 09:42:57 2008 +0000
38589
38590     AT91CAP9 support : move board files to Atmel vendor directory.
38591
38592     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
38593
38594     Signed-off-by: Stelian Pop <stelian@popies.net>
38595
38596 commit 7263ef191b87da94768f762c7093bedeb70db98f
38597 Author: Stelian Pop <stelian at>
38598 Date:   Thu Jan 3 21:15:56 2008 +0000
38599
38600     AT91CAP9 support : MACB changes
38601
38602     Signed-off-by: Stelian Pop <stelian <at> popies.net>
38603     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
38604
38605 commit 6afcabf11d7321850f4feaadfee841488ace54c5
38606 Author: Stelian Pop <stelian@popies.net>
38607 Date:   Thu Feb 7 16:37:54 2008 +0000
38608
38609     AT91CAP9 support : board/ files
38610
38611     Signed-off-by: Stelian Pop <stelian@popies.net>
38612
38613 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
38614 Author: Stelian Pop <stelian at>
38615 Date:   Wed Jan 30 21:15:54 2008 +0000
38616
38617     AT91CAP9 support : cpu/ files
38618
38619     Signed-off-by: Stelian Pop <stelian <at> popies.net>
38620
38621 commit fa506a926cec348805143576c941f8e61b333cc0
38622 Author: Stelian Pop <stelian@popies.net>
38623 Date:   Thu Jan 31 21:15:53 2008 +0000
38624
38625     AT91CAP9 support : include/ files
38626
38627     Signed-off-by: Stelian Pop <stelian@popies.net>
38628
38629 commit 20b197c6f2799af399a68f96a1aff543a75621b8
38630 Author: Stelian Pop <stelian@popies.net>
38631 Date:   Sun Jan 20 19:49:21 2008 +0000
38632
38633     AT91CAP9 support : build integration
38634
38635     Signed-off-by: Stelian Pop <stelian@popies.net>
38636
38637 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
38638 Author: Stelian Pop <stelian@popies.net>
38639 Date:   Sun Jan 20 21:07:00 2008 +0000
38640
38641     Improve DataFlash CS definition.
38642
38643     Use a structure instead of the error prone unnamed array to
38644     define the possible dataflash banks.
38645
38646     Signed-off-by: Stelian Pop <stelian@popies.net>
38647
38648 commit a6cdd21b56014208706238712a853a9e9a0a2290
38649 Author: Stelian Pop <stelian@popies.net>
38650 Date:   Sat Jan 19 21:09:35 2008 +0000
38651
38652     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
38653
38654     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
38655
38656     cpu/arm926ejs/start.o: In function `cpu_init_crit':
38657     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
38658
38659     Signed-off-by: Stelian Pop <stelian@popies.net>
38660
38661 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
38662 Author: Peter Pearse <peter.pearse@arm.com>
38663 Date:   Fri Feb 1 16:50:24 2008 +0000
38664
38665     Fix timer overflow in DaVinci
38666     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38667
38668 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
38669 Author: Peter Pearse <peter.pearse@arm.com>
38670 Date:   Fri Feb 1 16:49:08 2008 +0000
38671
38672     Update board NetStar
38673     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
38674
38675 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
38676 Author: Niklaus Giger <niklaus.giger@netstal.com>
38677 Date:   Tue Feb 5 10:26:42 2008 +0100
38678
38679     ppc4xx: HCU4/5. Fix make O=../xx
38680
38681     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38682
38683 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
38684 Author: Larry Johnson <lrj@acm.org>
38685 Date:   Tue Jan 22 08:51:59 2008 -0500
38686
38687     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
38688
38689     Signed-off-by: Larry Johnson <lrj@acm.org>
38690
38691 commit fe891ecf4d187e9d11dde869ed4623af52b54451
38692 Author: Hiroshi Ito <ito@mlb.co.jp>
38693 Date:   Thu Jan 31 18:35:04 2008 +0900
38694
38695     NFS Timeout with large files.
38696
38697     Retry to send NFS packet before reaching timeout.
38698
38699     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
38700
38701 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
38702 Author: Johannes Stezenbach <js@sig21.net>
38703 Date:   Tue Jan 29 00:11:25 2008 +0100
38704
38705     Add dependencies to avoid race conditions with parallel make.
38706
38707     Signed-off-by: Johannes Stezenbach <js@sig21.net>
38708
38709 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
38710 Author: Mike Frysinger <vapier@gentoo.org>
38711 Date:   Mon Jan 28 05:46:01 2008 -0500
38712
38713     Mark board_init_[fr] as noreturn
38714
38715     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38716
38717 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
38718 Author: Mike Frysinger <vapier@gentoo.org>
38719 Date:   Mon Jan 28 05:28:50 2008 -0500
38720
38721     Only use TEXT_BASE if defined by the board
38722
38723     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38724
38725 commit 1b769881750030f10743808b9d6013e11f559350
38726 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38727 Date:   Fri Jan 25 07:54:47 2008 +0100
38728
38729     Fix remaining CONFIG_COMMANDS
38730
38731     update comments
38732     Fix coding style
38733
38734     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38735
38736 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
38737 Author: Niklaus Giger <niklaus.giger@netstal.com>
38738 Date:   Mon Jan 21 16:46:00 2008 +0100
38739
38740     Add *~ to .gitignore
38741
38742     One should never add a backup file ending in with ~ to the git repository.
38743
38744     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
38745
38746 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
38747 Author: Kumar Gala <galak@kernel.crashing.org>
38748 Date:   Thu Jan 17 00:02:10 2008 -0600
38749
38750     Remove duplicate defines for ARRAY_SIZE
38751
38752     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38753
38754 commit c77ce474b1c57b13e9d36d9830f147966c143694
38755 Author: Stelian Pop <stelian@popies.net>
38756 Date:   Mon Jan 14 22:08:14 2008 +0100
38757
38758     Fix incorrect address test in AT91F_DataflashSelect().
38759
38760     Signed-off-by: Stelian Pop <stelian@popies.net>
38761
38762 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
38763 Author: Kumar Gala <galak@kernel.crashing.org>
38764 Date:   Wed Feb 13 15:09:58 2008 -0600
38765
38766     Fix building of fdt_support.c if DEBUG set
38767
38768     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38769
38770 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
38771 Author: Jon Loeliger <jdl@freescale.com>
38772 Date:   Tue Feb 12 14:53:28 2008 -0600
38773
38774     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
38775
38776     These replace direct structure references for IMMR sections.
38777
38778     Signed-off-by: Jon Loeliger <jdl@freescale.com>
38779
38780 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
38781 Author: Wolfgang Denk <wd@denx.de>
38782 Date:   Tue Feb 12 00:45:06 2008 +0100
38783
38784     Get rid of "#undef DEBUG" from board config files.
38785
38786     Signed-off-by: Wolfgang Denk <wd@denx.de>
38787
38788 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
38789 Author: Timur Tabi <timur@freescale.com>
38790 Date:   Tue Jan 15 17:09:41 2008 -0600
38791
38792     Remove #undef DEBUG from MPC83xx board header files
38793
38794     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
38795     The inclusion of this line makes it impossible to enable debug code in
38796     other source files, because "#define DEBUG" typically needs to be defined
38797     before any header files are included.
38798
38799     Signed-off-by: Timur Tabi <timur@freescale.com>
38800
38801 commit 69018ce2e086e9caf35b914d675b82bc4888f077
38802 Author: Kumar Gala <galak@kernel.crashing.org>
38803 Date:   Thu Jan 17 08:25:45 2008 -0600
38804
38805     QE: Move FDT support into a common file
38806
38807     Move the flat device tree setup for QE related devices into
38808     a common file shared between 83xx & 85xx platforms that have QE's.
38809
38810     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38811
38812 commit 5cf746c303710329f8040d9c62ee354313e3e91f
38813 Author: Marian Balakowicz <m8@semihalf.com>
38814 Date:   Thu Jan 31 13:59:09 2008 +0100
38815
38816     [new uImage] Move kernel data find code to get_kernel() routine
38817
38818     Verification of the kernel image (in old format) and finding kernel
38819     data is moved to a dedicated routine. The routine will also hold
38820     support for, to be added, new image format.
38821
38822     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38823
38824 commit 7b325454fd231d4273de3fe373850f777fb086bf
38825 Author: Marian Balakowicz <m8@semihalf.com>
38826 Date:   Thu Jan 31 13:58:20 2008 +0100
38827
38828     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
38829
38830     Move FDT blob finding and relocation to a dedicated
38831     get_fdt() routine. It increases code readability and
38832     will make adding support for new uImage format easier.
38833
38834     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38835
38836 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
38837 Author: Marian Balakowicz <m8@semihalf.com>
38838 Date:   Thu Jan 31 13:58:13 2008 +0100
38839
38840     [new uImage] Cleanup do_botm_linux() boot allocations
38841
38842     This patch moves common pre-boot allocation steps shared between PPC
38843     and M68K to a helper routines:
38844
38845     common:
38846     - get_boot_sp_limit()
38847     - get_boot_cmline()
38848     - get_boot_kbd()
38849
38850     platform:
38851     - set_clocks_in_mhz()
38852
38853     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38854
38855 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
38856 Author: Marian Balakowicz <m8@semihalf.com>
38857 Date:   Thu Jan 31 13:57:17 2008 +0100
38858
38859     [new uImage] Move ramdisk loading to a common routine
38860
38861     Ramdisk loading code, including initrd_high variable handling,
38862     was duplicated for PPC and M68K platforms. This patch creates
38863     common helper routine that is being called from both platform
38864     do_bootm_linux() routines.
38865
38866     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38867
38868 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
38869 Author: Marian Balakowicz <m8@semihalf.com>
38870 Date:   Thu Jan 31 13:55:53 2008 +0100
38871
38872     [new uImage] Removed dead ramdisk code on microblaze architectures
38873
38874     Microblaze do_bootm_linux() includes ramdisk processing code but
38875     the ramdisk does not get used anywhere later on.
38876
38877     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38878
38879 commit 5ad03eb3854c162684222a718b44c0716ea0db03
38880 Author: Marian Balakowicz <m8@semihalf.com>
38881 Date:   Thu Jan 31 13:55:39 2008 +0100
38882
38883     [new uImage] Factor out common image_get_ramdisk() routine
38884
38885     Architecture specific do_bootm_linux() routines share common
38886     ramdisk image processing code. Move this code to a common
38887     helper routine.
38888
38889     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38890
38891 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
38892 Author: Marian Balakowicz <m8@semihalf.com>
38893 Date:   Thu Jan 31 13:20:08 2008 +0100
38894
38895     [new uImage] Move FDT error printing to common fdt_error() routine
38896
38897     FDT error handling in PPC do_bootm_linux() shares the same message format.
38898     This patch moves error message printing to a helper fdt_error() routine.
38899
38900     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38901     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38902
38903 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
38904 Author: Marian Balakowicz <m8@semihalf.com>
38905 Date:   Thu Jan 31 13:20:07 2008 +0100
38906
38907     [new uImage] Factor out common routines for getting os/arch/type/comp names
38908
38909     Move numeric-id to name translation for image os/arch/type/comp header
38910     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
38911     image_get_type_name(), image_get_comp_name().
38912
38913     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38914
38915 commit e99c26694a384221d336f6448c06a57479c0baa4
38916 Author: Marian Balakowicz <m8@semihalf.com>
38917 Date:   Thu Jan 31 13:20:07 2008 +0100
38918
38919     [new uImage] Remove standalone applications handling from boootm
38920
38921     Standalone applications are supposed to be run using the "go" command.
38922     This patch removes standalone images handling from the do_bootm().
38923
38924     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38925
38926 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
38927 Author: Marian Balakowicz <m8@semihalf.com>
38928 Date:   Thu Jan 31 13:20:07 2008 +0100
38929
38930     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
38931
38932     Support for OF_FLAT_TREE is to be obsoleted in the near future,
38933     remove related code from the bootm routines.
38934
38935     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38936
38937 commit 82850f3d32a2661868ec6876bed7a22c55cef718
38938 Author: Marian Balakowicz <m8@semihalf.com>
38939 Date:   Thu Jan 31 13:20:06 2008 +0100
38940
38941     [new uImage] Use image API in SH do_bootm_linux() routine
38942
38943     Introduce image handling API for lately added Hitachi SH architecture.
38944
38945     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38946
38947 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
38948 Author: Marian Balakowicz <m8@semihalf.com>
38949 Date:   Thu Jan 31 13:20:06 2008 +0100
38950
38951     [new uImage] Rename architecture specific bootm code files
38952
38953     Implementation of the do_bootm_linux() and other bootm helper routines is
38954     architecture specific code. As such it resides in lib_<arch> directories
38955     in files named <arch>_linux.c
38956
38957     This patch renames those files to a more clear and accurate
38958     lib_<arch>/bootm.c form.
38959
38960     List of the renamed files:
38961        lib_arm/armlinux.c -> lib_arm/bootm.c
38962        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
38963        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
38964        lib_i386/i386_linux.c -> lib_i386/bootm.c
38965        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
38966        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
38967        lib_mips/mips_linux.c -> lib_mips/bootm.c
38968        lib_nios/nios_linux.c -> lib_nios/bootm.c
38969        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
38970        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
38971        lib_sh/sh_linux.c -> lib_sh/bootm.c
38972
38973     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38974
38975 commit 7582438c285bf0cef82909d0f232de64ec567a8a
38976 Author: Marian Balakowicz <m8@semihalf.com>
38977 Date:   Thu Jan 31 13:20:06 2008 +0100
38978
38979     [new uImage] Return error on image move/uncompress overwrites
38980
38981     Check for overwrites during image move/uncompress, return with error
38982     when the original image gets corrupted. Report clear message to the user
38983     and prevent further troubles when pointer to the corrupted images is passed
38984     to do_bootm_linux routine.
38985
38986     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38987
38988 commit f13e7b2e993c61fed1f607962501e051940d6e80
38989 Author: Marian Balakowicz <m8@semihalf.com>
38990 Date:   Tue Jan 8 18:12:17 2008 +0100
38991
38992     [new uImage] Cleanup image header pointer use in bootm code
38993
38994     - use single image header pointer instead of a set of auxilliary variables.
38995     - add multi component image helper routines: get component size/data address
38996
38997     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38998
38999 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
39000 Author: Marian Balakowicz <m8@semihalf.com>
39001 Date:   Tue Jan 8 18:17:10 2008 +0100
39002
39003     [new uImage] Cleanup cmd_bootm.c
39004
39005     - sort and cleanup headers, declarations, etc.
39006     - group related routines
39007     - cleanup indentation, white spaces
39008
39009     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39010
39011 commit af13cdbc01eaf88880978bfb4f603e012818ba24
39012 Author: Marian Balakowicz <m8@semihalf.com>
39013 Date:   Tue Jan 8 18:11:45 2008 +0100
39014
39015     [new uImage] Add memmove_wd() common routine
39016
39017     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
39018
39019     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39020
39021 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
39022 Author: Marian Balakowicz <m8@semihalf.com>
39023 Date:   Tue Jan 8 18:11:44 2008 +0100
39024
39025     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
39026
39027     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39028
39029 commit 15158971f49255ccef54f0979a942cfd3de2ae52
39030 Author: Marian Balakowicz <m8@semihalf.com>
39031 Date:   Tue Jan 8 18:11:44 2008 +0100
39032
39033     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
39034
39035     Use image header copy instead of a (possibly corrupted) pointer to
39036     a initial image location.
39037
39038     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39039
39040 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
39041 Author: Marian Balakowicz <m8@semihalf.com>
39042 Date:   Tue Jan 8 18:11:44 2008 +0100
39043
39044     [new uImage] Remove I386 uImage fake_header() routine
39045
39046     I386 targets are not using a uImage format, instead fake header
39047     is added to ram image before it is further processed by bootm.
39048
39049     Remove this fixup and force proper uImage use for I386.
39050
39051     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39052
39053 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
39054 Author: Marian Balakowicz <m8@semihalf.com>
39055 Date:   Tue Jan 8 18:11:44 2008 +0100
39056
39057     [new uImage] Move CHUNKSZ definition to image.h
39058
39059     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
39060     move this definition to a common header.
39061
39062     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39063
39064 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
39065 Author: Marian Balakowicz <m8@semihalf.com>
39066 Date:   Tue Jan 8 18:11:43 2008 +0100
39067
39068     [new uImage] Move gunzip() common code to common/gunzip.c
39069
39070     Move gunzip(), zalloc() and zfree() to a separate file.
39071     Share zalloc() and zfree() with cramfs uncompress routine.
39072
39073     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39074
39075 commit d45d5a18b6b36688f2365623f9d550566c664b5b
39076 Author: Marian Balakowicz <m8@semihalf.com>
39077 Date:   Tue Jan 8 18:11:43 2008 +0100
39078
39079     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
39080
39081     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
39082     readable in PPC variant of do_bootm_linux() routine.
39083
39084     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39085
39086 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
39087 Author: Marian Balakowicz <m8@semihalf.com>
39088 Date:   Tue Jan 8 18:11:43 2008 +0100
39089
39090     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
39091
39092     PPC implementation of do_bootm_linux() routine is moved to
39093     a dedicated file lib_ppc/ppc_linux.c
39094
39095     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39096
39097 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
39098 Author: Marian Balakowicz <m8@semihalf.com>
39099 Date:   Tue Jan 8 18:14:09 2008 +0100
39100
39101     [new uImage] Define a API for image handling operations
39102
39103     - Add inline helper macros for basic header processing
39104     - Move common non inline code common/image.c
39105     - Replace direct header access with the API routines
39106     - Rename IH_CPU_* to IH_ARCH_*
39107
39108     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39109
39110 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
39111 Author: Marian Balakowicz <m8@semihalf.com>
39112 Date:   Thu Jan 31 13:19:58 2008 +0100
39113
39114     Add missing cmd_ximg.o to common/Makefile
39115
39116     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39117
39118 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
39119 Author: Grzegorz Bernacki <gjb@semihalf.com>
39120 Date:   Mon Jan 28 10:15:02 2008 +0100
39121
39122     ADS5121e: DDR2 init/timing update.
39123
39124     Signed-off-by: John Rigby <jrigby@freescale.com>
39125     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39126
39127 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
39128 Author: John Rigby <jrigby@freescale.com>
39129 Date:   Wed Jan 30 13:36:57 2008 -0700
39130
39131     Device tree updates
39132
39133     Changes to match 5121 device tree going mainline in 2.6.25.
39134
39135     Change OF_SOC from "soc5121" to plain "soc".
39136     Remove unneeded "ref-frequency" fixups.
39137     Remove "address" enetaddr fixup.
39138
39139     Add bus-frequency fixup for old OF_SOC so old
39140     kernels with old device trees will work with new
39141     u-boot with 66MHz IPS clock
39142
39143     Signed-off-by: John Rigby <jrigby@freescale.com>
39144
39145 commit de55d18df3ff2ea614624e74793de7c43520e0e7
39146 Author: John Rigby <jrigby@freescale.com>
39147 Date:   Wed Jan 30 13:36:56 2008 -0700
39148
39149     Change IPS freq to 66MHz
39150
39151     Recommended frequency is 66MHz
39152     Change divider from 4 to 3.
39153
39154     Signed-off-by: John Rigby <jrigby@freescale.com>
39155
39156 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
39157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39158 Date:   Mon Jan 14 22:38:55 2008 +0100
39159
39160     xsengine: rename board_post_init to board_late_init
39161
39162     missing migration from "Cleanup of some init functions"
39163     in c837dcb1a316745092567bfe4fb266d0941884ff
39164
39165     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39166
39167 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
39168 Author: Larry Johnson <lrj@acm.org>
39169 Date:   Sat Jan 12 23:35:33 2008 -0500
39170
39171     Add attribute POST_PREREL to ECC memory POST
39172
39173     Signed-off-by: Larry Johnson <lrj@acm.org>
39174
39175 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
39176 Author: Kumar Gala <galak@kernel.crashing.org>
39177 Date:   Thu Jan 17 08:25:45 2008 -0600
39178
39179     QE: Move FDT support into a common file
39180
39181     Move the flat device tree setup for QE related devices into
39182     a common file shared between 83xx & 85xx platforms that have QE's.
39183
39184     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39185
39186 commit d38da537943cd36356b9d3d9d9b60533554b81d8
39187 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39188 Date:   Wed Jan 23 17:20:14 2008 +0100
39189
39190     AVR32: Make SDRAM refresh rate configurable
39191
39192     The existing code assumes the SDRAM row refresh period should always
39193     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
39194     refresh rate should really be 7.81 us.
39195
39196     Add a refresh_period member to struct sdram_info and initialize it
39197     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
39198     panic() until the refresh_period member is updated properly.
39199
39200     Big thanks to Gerhard Berghofer for pointing out this issue.
39201
39202     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39203
39204 commit 61151cccb660cdb06a07fb283de6089913d7bde0
39205 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39206 Date:   Thu Apr 19 10:10:11 2007 +0200
39207
39208     ATSTK1000: Fix potential flash programming bug
39209
39210     The (now obsolete) atngw100 flash programming code was having problems
39211     programming the onboard at49bv642 chip. The atstk1000 flash
39212     programming code may have the same bug, so import fix for this problem
39213     from the AVR32 Linux BSP.
39214
39215     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39216
39217 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
39218 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39219 Date:   Thu Nov 22 17:04:13 2007 +0100
39220
39221     ATSTK1004: Fix comment about default load address
39222
39223     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
39224     wouldn't have worked anyway since the board can only access 4MB of
39225     SDRAM.
39226
39227     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39228
39229 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
39230 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39231 Date:   Thu Nov 22 17:01:24 2007 +0100
39232
39233     ATSTK1002: Use SDRAM + 4MB as default load address
39234
39235     Many people run into problems when they compile a big kernel and load
39236     the uImage at the default SDRAM + 2MB address as the kernel will
39237     overwrite the uImage as it is being unpacked. Increase the default
39238     load address so that we can load a 4MB kernel image without any
39239     problems.
39240
39241     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39242
39243 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
39244 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39245 Date:   Thu Nov 22 16:51:39 2007 +0100
39246
39247     ATNGW100: Fix default mtest range
39248
39249     Let mtest cover the whole SDRAM except the last megabyte, which is
39250     where u-boot lives.
39251
39252     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39253
39254 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
39255 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39256 Date:   Tue Jan 22 15:31:56 2008 +0900
39257
39258     sh: Fix register address of SH7722.
39259
39260     The address of SH7722 is wrong by old document.
39261     This patch fixes this problem.
39262
39263     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39264
39265 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
39266 Author: Mike Frysinger <vapier@gentoo.org>
39267 Date:   Mon Feb 4 19:26:57 2008 -0500
39268
39269     new command for displaying strings at specified memory locations
39270
39271     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39272
39273 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
39274 Author: Mike Frysinger <vapier@gentoo.org>
39275 Date:   Mon Feb 4 19:26:57 2008 -0500
39276
39277     rewrite/cleanup Blackfin RTC driver
39278
39279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39280
39281 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
39282 Author: Mike Frysinger <vapier@gentoo.org>
39283 Date:   Mon Feb 4 19:26:57 2008 -0500
39284
39285     generate u-boot.ldr for Blackfin targets
39286
39287     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39288
39289 commit b779f7a59530436040f157f7841db7ab796542df
39290 Author: Mike Frysinger <vapier@gentoo.org>
39291 Date:   Mon Feb 4 19:26:57 2008 -0500
39292
39293     scrub unused symbols
39294
39295     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39296
39297 commit cc2977acc3bbbb7850f16645dd1081f95335868d
39298 Author: Mike Frysinger <vapier@gentoo.org>
39299 Date:   Mon Feb 4 19:26:57 2008 -0500
39300
39301     move Blackfin cpu object list to respective cpu directories
39302
39303     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39304
39305 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
39306 Author: Mike Frysinger <vapier@gentoo.org>
39307 Date:   Mon Feb 4 19:26:57 2008 -0500
39308
39309     interface to Blackfin on-chip One-Time-Programmable memory
39310
39311     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39312
39313 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
39314 Author: Mike Frysinger <vapier@gentoo.org>
39315 Date:   Mon Feb 4 19:26:56 2008 -0500
39316
39317     add support for memory commands with Blackfin L1 instruction memory
39318
39319     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39320
39321 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
39322 Author: Mike Frysinger <vapier@gentoo.org>
39323 Date:   Mon Feb 4 19:26:56 2008 -0500
39324
39325     use C code rather than inline assembly
39326
39327     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39328
39329 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
39330 Author: Mike Frysinger <vapier@gentoo.org>
39331 Date:   Mon Feb 4 19:26:56 2008 -0500
39332
39333     add Blackfin-specific reginfo command
39334
39335     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39336
39337 commit 0858b835e7ea501ea084d34cef75932f098342bb
39338 Author: Mike Frysinger <vapier@gentoo.org>
39339 Date:   Mon Feb 4 19:26:55 2008 -0500
39340
39341     add support for Blackfin symbol prefixes to examples
39342
39343     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39344
39345 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
39346 Author: Mike Frysinger <vapier@gentoo.org>
39347 Date:   Mon Feb 4 19:26:55 2008 -0500
39348
39349     add Blackfin-specific bdinfo command
39350
39351     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39352
39353 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
39354 Author: Mike Frysinger <vapier@gentoo.org>
39355 Date:   Mon Feb 4 19:26:55 2008 -0500
39356
39357     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
39358
39359     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39360
39361 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
39362 Author: Mike Frysinger <vapier@gentoo.org>
39363 Date:   Mon Feb 4 19:26:55 2008 -0500
39364
39365     unify the Blackfin board targets
39366
39367     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39368
39369 commit d4d7730853e5d675f76ec666807da3028c91d592
39370 Author: Mike Frysinger <vapier@gentoo.org>
39371 Date:   Mon Feb 4 19:26:55 2008 -0500
39372
39373     punt Blackfin VDSP headers and import sanitized/auto-generated ones
39374
39375     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39376
39377 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
39378 Author: Mike Frysinger <vapier@gentoo.org>
39379 Date:   Mon Feb 4 19:26:54 2008 -0500
39380
39381     always pull in asm/blackfin.h for Blackfin ports
39382
39383     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39384
39385 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
39386 Author: Mike Frysinger <vapier@gentoo.org>
39387 Date:   Mon Feb 4 19:26:54 2008 -0500
39388
39389     add missing __raw versions of Blackfin read/write io functions
39390
39391     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39392
39393 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
39394 Author: Mike Frysinger <vapier@gentoo.org>
39395 Date:   Mon Feb 4 19:26:54 2008 -0500
39396
39397     add the default Blackfin logo used by Blackfin boards with splash screens
39398
39399     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39400
39401 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
39402 Author: Mike Frysinger <vapier@gentoo.org>
39403 Date:   Mon Feb 4 19:26:54 2008 -0500
39404
39405     add some more Blackfin docs
39406
39407     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39408
39409 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
39410 Author: Mike Frysinger <vapier@gentoo.org>
39411 Date:   Mon Feb 4 19:26:54 2008 -0500
39412
39413     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
39414
39415     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39416
39417 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
39418 Author: Mike Frysinger <vapier@gentoo.org>
39419 Date:   Mon Feb 4 19:26:54 2008 -0500
39420
39421     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
39422
39423     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39424
39425 commit b45264ee85cbd92020640a32e02fb434fd557108
39426 Author: Mike Frysinger <vapier@gentoo.org>
39427 Date:   Mon Feb 4 19:26:53 2008 -0500
39428
39429     add gitignores for Blackfin pieces
39430
39431     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39432
39433 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
39434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39435 Date:   Fri Jan 18 01:14:03 2008 +0100
39436
39437     TFTP: add host ip addr support
39438
39439     allow to use a different server as set in serverip
39440     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
39441     if not defined the max length will be at 128
39442
39443     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39444
39445 commit e56b4b494cd92def577969f9678395aa22d34c9f
39446 Author: Timur Tabi <timur@freescale.com>
39447 Date:   Wed Jan 9 14:35:26 2008 -0600
39448
39449     85xx,86xx: Determine I2C clock frequencies and store in global_data
39450
39451     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
39452
39453     Update the get_clocks() function in 85xx and 86xx to determine the I2C
39454     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
39455
39456     Signed-off-by: Timur Tabi <timur@freescale.com>
39457
39458 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
39459 Author: Wolfgang Denk <wd@denx.de>
39460 Date:   Thu Dec 27 10:56:54 2007 +0100
39461
39462     OMAP5912: fix FIFO handling in UART driver
39463
39464     According to the OMAP5912 Serial Interfaces Reference Guide (see
39465     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
39466     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
39467     changed when the baud clock is not running, i. e. when both DLL and
39468     DLH are set to 0.
39469
39470     Thus make sure that DLL and DLH are 0 when writing the FCR.
39471
39472     Signed-off-by: Wolfgang Denk <wd@denx.de>
39473
39474 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
39475 Author: Harald Welte <laforge@openmoko.org>
39476 Date:   Wed Dec 19 15:10:52 2007 +0100
39477
39478     ARM: S3C24x0 SoC NAND controller support
39479
39480     This patch adds NAND support to the S3C24x0 SoC code in u-boot
39481
39482     Signed-off-by: Harald Welte <laforge@openmoko.org>
39483
39484 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
39485 Author: Harald Welte <laforge@openmoko.org>
39486 Date:   Wed Dec 19 14:24:40 2007 +0100
39487
39488     ARM: s3c24xx: Multiple serial port support
39489
39490     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
39491
39492     Signed-off-by: Harald Welte <laforge@openmoko.org>
39493
39494 commit a25f72f1f73a11de68251fb88c89991e202e68fa
39495 Author: Harald Welte <laforge@openmoko.org>
39496 Date:   Wed Dec 19 14:16:57 2007 +0100
39497
39498     ARM: arm920t: Allow use of 'gd' pointer from IRQ
39499
39500     This patch allows us to use the 'gd' pointer (and thus environment
39501     and everything else associated with it) from interrupt context on
39502     arm920t.
39503
39504     Signed-off-by: Harald Welte <laforge@openmoko.org>
39505
39506 commit be19bd5cd0f454b63298844a0b5377e029b2caad
39507 Author: Harald Welte <laforge@openmoko.org>
39508 Date:   Wed Dec 19 14:19:38 2007 +0100
39509
39510     ARM: arm920/s3c24xx: IRQ demulitplexer callback
39511
39512     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
39513     plus a stub implementation of it for the S3C2410.
39514
39515     The purpose is to allow arm920t implementations such as the s3c24x0 to
39516     implement interrupt handlers in u-boot without having to touch core
39517     arm920t code.
39518
39519     Signed-off-by: Harald Welte <laforge@openmoko.org>
39520
39521 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
39522 Author: Hebbar <gururajakr@sanyo.co.in>
39523 Date:   Tue Dec 18 16:03:07 2007 -0800
39524
39525     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
39526
39527     Add ifdef to bdinfo command to display ethernet information
39528     only if CONFIG_CMD_NET is defined for arm modules.
39529
39530     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
39531
39532 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
39533 Author: Hebbar <gururajakr@sanyo.co.in>
39534 Date:   Tue Dec 18 16:00:54 2007 -0800
39535
39536     ARM: add I2C init function call in lib_arm/board.c
39537
39538     Adds I2C init func call to init sequence for ARM boards. This is
39539     present in ppc,blackfin and other processor init sequence.
39540
39541     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
39542
39543 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
39544 Author: Stefan Roese <sr@denx.de>
39545 Date:   Fri Feb 1 09:38:29 2008 +0100
39546
39547     ppc4xx: Fix ndfc HW ECC byte order
39548
39549     The current ndfc HW ECC implementation swaps the first two ECC bytes.
39550     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
39551     so this swapping in the HW ECC driver is bogus. This patch fixes this
39552     problem and now really uses the SMC ECC byte order.
39553
39554     Thanks to Sean MacLennan for pointing this out.
39555
39556     Signed-off-by: Stefan Roese <sr@denx.de>
39557
39558 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
39559 Author: Stefan Roese <sr@denx.de>
39560 Date:   Wed Jan 30 15:35:50 2008 +0100
39561
39562     ppc4xx: Fix GPIO configuration for pcs440ep
39563
39564     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
39565     49-63 for GPIO. They have been configured as trace signals. This patch
39566     fixes this by clearing the corresponding bit.
39567
39568     Signed-off-by: Stefan Roese <sr@denx.de>
39569
39570 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
39571 Author: Stefan Roese <sr@denx.de>
39572 Date:   Wed Jan 30 14:48:28 2008 +0100
39573
39574     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
39575
39576     Signed-off-by: Stefan Roese <sr@denx.de>
39577
39578 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
39579 Author: Ladislav Michl <ladis@linux-mips.org>
39580 Date:   Fri Dec 7 00:42:32 2007 +0100
39581
39582     ARM: Board voiceblue update
39583
39584     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
39585
39586 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
39587 Author: Ladislav Michl <ladis@linux-mips.org>
39588 Date:   Thu Dec 6 23:24:57 2007 +0100
39589
39590     ARM: AT91RM9200 based boards config cleanup
39591
39592     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
39593
39594     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
39595     indentation.
39596
39597 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
39598 Author: Ladislav Michl <ladis@linux-mips.org>
39599 Date:   Thu Dec 6 22:59:16 2007 +0100
39600
39601     ARM: Fix at91rm9200dk base address
39602
39603     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
39604     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
39605     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
39606     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
39607     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
39608     I'm sending this patch 4th (!) time in hope it produces at least some
39609     reaction.
39610
39611     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
39612
39613     Fix at91rm9200dk base and environment address.
39614
39615 commit c95219fae2a7add7daa2f91aedca65b1698465c7
39616 Author: stefano babic <sbabic@denx.de>
39617 Date:   Tue Nov 20 10:40:24 2007 +0100
39618
39619     MMC for PXA 27X (resubmit)
39620
39621     MMC support for X_Scale PXA is broken and does not work.
39622     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
39623     There were already some patches around the world but none of them was
39624     merged into the official u-boot tree.
39625
39626     This patch makes order fixing this issue. Resubmit after code cleanup.
39627
39628     Applied and tested on PXA 270 (TrizepsIV module).
39629
39630     Signed-off-by: Stefano Babic <sbabic@denx.de>
39631
39632 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
39633 Author: stefano babic <sbabic@denx.de>
39634 Date:   Tue Nov 20 10:37:04 2007 +0100
39635
39636     Fix gcc issues in pxa-regs.h
39637
39638     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
39639     issues generates wrong code.
39640     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
39641     This patch fixes the problem and solves the gcc-4 issues as the linux
39642     kernel does.
39643
39644     Signed-off-by: Stefano Babic <sbabic@denx.de>
39645     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
39646
39647 commit 7047b388876e7b905b2ec4edb8010543e3641b85
39648 Author: Jens Gehrlein <sew_s@tqs.de>
39649 Date:   Tue Jan 29 08:45:03 2008 +0100
39650
39651     TQM834x: enable DHCP
39652
39653     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
39654     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39655
39656 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
39657 Author: Jens Gehrlein <sew_s@tqs.de>
39658 Date:   Tue Jan 29 08:45:02 2008 +0100
39659
39660     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
39661
39662     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
39663     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39664
39665 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
39666 Author: Ben Warren <biggerbadderben@gmail.com>
39667 Date:   Sat Jan 26 23:41:19 2008 -0500
39668
39669     Fix conditional compilation of mpx8xxx_spi driver
39670
39671     This driver should only compile if CONFIG_MPC8XXX_SPI is set
39672
39673     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39674     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39675
39676 commit 63f732d3d3880feb531f48af247c025bf01462b0
39677 Author: Rafal Jaworowski <raj@semihalf.com>
39678 Date:   Tue Jan 29 17:00:34 2008 +0100
39679
39680     API: Provide dummy halt() in the glue layer.
39681
39682     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
39683
39684     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39685
39686 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
39687 Author: Rafal Jaworowski <raj@semihalf.com>
39688 Date:   Tue Jan 29 16:57:38 2008 +0100
39689
39690     API: Convert conditional building to the new scheme.
39691
39692     This fixes a build breakage with CONFIG_API enabled, which appeared after
39693     the recent changes in the U-Boot build system.
39694
39695     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39696
39697 commit 98b742489c09780be6a832eeaa4e5eff824792bb
39698 Author: Wolfgang Denk <wd@denx.de>
39699 Date:   Fri Jan 25 09:56:17 2008 +0100
39700
39701     inka4x0: remove dead code
39702
39703     Signed-off-by: Wolfgang Denk <wd@denx.de>
39704
39705 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
39706 Author: Becky Bruce <becky.bruce@freescale.com>
39707 Date:   Wed Jan 23 16:31:06 2008 -0600
39708
39709     86xx: Add reginfo command
39710
39711     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39712
39713 commit ddcebcb638715a6278da93b553d5016f99823816
39714 Author: Becky Bruce <becky.bruce@freescale.com>
39715 Date:   Wed Jan 23 16:31:05 2008 -0600
39716
39717     86xx: Add print_laws function to fsl_law.c
39718
39719     This can be used for debug, and will be used by board code
39720     to help implement reginfo.
39721
39722     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39723
39724 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
39725 Author: Becky Bruce <becky.bruce@freescale.com>
39726 Date:   Wed Jan 23 16:31:04 2008 -0600
39727
39728     86xx: Remove old-style law setup code
39729
39730     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
39731
39732     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39733
39734 commit 713d8186649dae874613d495b0cecaa039a98b30
39735 Author: Becky Bruce <becky.bruce@freescale.com>
39736 Date:   Wed Jan 23 16:31:03 2008 -0600
39737
39738     86xx: Convert sbc8641d to use new law setup code.
39739
39740     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39741
39742 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
39743 Author: Becky Bruce <becky.bruce@freescale.com>
39744 Date:   Wed Jan 23 16:31:02 2008 -0600
39745
39746     86xx: Convert mpc8610hpcd to new law setup method.
39747
39748     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39749
39750 commit 4933b91f8a49e436681f163df3173beb91cac44a
39751 Author: Becky Bruce <becky.bruce@freescale.com>
39752 Date:   Wed Jan 23 16:31:01 2008 -0600
39753
39754     86xx: Support new law setup method and convert mpc8641
39755
39756     Adds the support code in cpu/mpc86xx for the new law setup code
39757     recently created fsl_law.c, and changes the MPC8641HPCN config
39758     to use this code.
39759
39760     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39761
39762 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
39763 Author: Becky Bruce <becky.bruce@freescale.com>
39764 Date:   Wed Jan 23 16:31:00 2008 -0600
39765
39766     86xx: Rearrange the sequence in start.S
39767
39768     * split the BAT initialization so that only 2 BATs (for the boot page
39769     and stack) are programmed very early on.  The rest are initialized later.
39770     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
39771     after translation has been enabled.
39772
39773     These changes will facilitate the moving of law and BAT initialization
39774     to C code, and will aid with 36-bit physical addressing support.
39775
39776     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39777
39778 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
39779 Author: Wolfgang Denk <wd@denx.de>
39780 Date:   Wed Jan 23 14:41:37 2008 +0100
39781
39782     Coding Style Cleanup; update CHANGELOG
39783
39784     Signed-off-by: Wolfgang Denk <wd@denx.de>
39785
39786 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
39787 Author: Wolfgang Denk <wd@denx.de>
39788 Date:   Wed Jan 23 14:31:17 2008 +0100
39789
39790     Coding Style Cleanup; update CHANGELOG
39791
39792     Signed-off-by: Wolfgang Denk <wd@denx.de>
39793
39794 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
39795 Author: Dave Liu <r63238@freescale.com>
39796 Date:   Fri Jan 18 10:07:04 2008 +0800
39797
39798     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
39799
39800     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
39801     cause the 83xx immap broken, so the DMA and PCI will
39802     be failed.
39803
39804     The patch fix the struct spi8xxx and rm struct spi83xx.
39805
39806     Signed-off-by: Dave Liu <daveliu@freescale.com>
39807     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39808
39809 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
39810 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39811 Date:   Sat Apr 14 17:11:49 2007 +0200
39812
39813     AVR32: ATNGW100 board support
39814
39815     Add support for the ATNGW100 Network Gateway reference design,
39816     including flash, ethernet and MMC support.
39817
39818     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39819
39820 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
39821 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39822 Date:   Sat Nov 24 18:15:31 2007 +0100
39823
39824     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
39825
39826     I don't know why the relevant layers can't do this by itself, but this
39827     is what ppc does.
39828
39829     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39830
39831 commit 799891ef7b1b3432032ec23466df6b665a797fa4
39832 Author: Michael Schwingen <michael@schwingen.org>
39833 Date:   Fri Jan 18 00:04:28 2008 +0100
39834
39835     Add AcTux board support
39836
39837     Hi,
39838
39839     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
39840     files that
39841     contain changes for multiple boards, the board-specific files follow as
39842     separate patches.
39843
39844     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39845
39846 commit 66a4344a4d910a11125df7768899ad529719855e
39847 Author: Michael Schwingen <michael@schwingen.org>
39848 Date:   Wed Jan 16 19:53:23 2008 +0100
39849
39850     add AcTux-4 board support
39851
39852     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39853
39854 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
39855 Author: Michael Schwingen <michael@schwingen.org>
39856 Date:   Wed Jan 16 19:51:55 2008 +0100
39857
39858     add AcTux-3 board support
39859
39860     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39861
39862 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
39863 Author: Michael Schwingen <michael@schwingen.org>
39864 Date:   Wed Jan 16 19:51:14 2008 +0100
39865
39866     add AcTux-2 board support
39867
39868     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39869
39870 commit ea99e8f05b7240fd657739e286664664ae160abe
39871 Author: Michael Schwingen <michael@schwingen.org>
39872 Date:   Wed Jan 16 19:50:37 2008 +0100
39873
39874     add AcTux-1 board support
39875
39876     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39877
39878 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
39879 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39880 Date:   Mon Jan 14 19:20:08 2008 +0100
39881
39882     ARM: remove useless function board_post_init
39883
39884     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39885
39886 commit 96bd462942022e4569b582c072a0ed26de1cd19b
39887 Author: Michael Schwingen <michael@schwingen.org>
39888 Date:   Thu Jan 10 14:59:46 2008 +0100
39889
39890     IXP: enable RTS
39891
39892     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
39893     No handshaking is done, but the active RTS signal allows to
39894     connect to the target using a PC which is using RTS/CTS
39895     handshake, and does no harm if the PC is set to ignore RTS.
39896
39897     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39898
39899 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
39900 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39901 Date:   Mon Jan 7 08:41:34 2008 +0100
39902
39903     IXP: add dynamic microcode addr
39904
39905     allow to load the microde from flash or ram by download it through
39906     the serial or other.
39907
39908     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39909     Acked-by: Stefan Roese <sr@denx.de>
39910
39911 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
39912 Author: Michael Schwingen <michael@schwingen.org>
39913 Date:   Sat Nov 10 15:44:12 2007 +0100
39914
39915     load ixp42x NPE firmware from separate flash block, remove dead code
39916
39917     Hi,
39918
39919     the following patch adds support to move the IXP42X NPE firmware to a
39920     separate flash block, whose start address is defined in
39921     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
39922     NPE-enabled u-boot without copyright problems due to the NPE firmware.
39923
39924     I hope the patch applies, I get whitespace-related differences in the NPE
39925     files due to trailing whitespace in the original versions.
39926
39927     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39928     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39929
39930 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
39931 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39932 Date:   Tue Jan 15 14:15:46 2008 -0600
39933
39934     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
39935
39936     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39937     Signed-off by: John Rigby <jrigby@freescale.com>
39938
39939 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
39940 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39941 Date:   Tue Jan 15 14:02:49 2008 -0600
39942
39943     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
39944
39945     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39946     Signed-off by: John Rigby <jrigby@freescale.com>
39947
39948 commit 777d1abd9796f1c2e148417cc10657e847d318ce
39949 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39950 Date:   Tue Jan 15 14:00:25 2008 -0600
39951
39952     ColdFire: Add MCF547x_8x FEC driver
39953
39954     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39955     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39956     Signed-off by: John Rigby <jrigby@freescale.com>
39957
39958 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
39959 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39960 Date:   Tue Jan 15 13:54:09 2008 -0600
39961
39962     ColdFire: Add MCF547x_8x dma code and header files
39963
39964     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39965     Signed-off by: John Rigby <jrigby@freescale.com>
39966
39967 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
39968 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39969 Date:   Tue Jan 15 13:52:03 2008 -0600
39970
39971     ColdFire: Add MCF547x_8x dma code - 2
39972
39973     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39974     Signed-off by: John Rigby <jrigby@freescale.com>
39975
39976 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
39977 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39978 Date:   Tue Jan 15 13:48:52 2008 -0600
39979
39980     ColdFire: Add MCF547x_8x dma code - 1
39981
39982     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39983     Signed-off by: John Rigby <jrigby@freescale.com>
39984
39985 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
39986 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39987 Date:   Tue Jan 15 13:39:44 2008 -0600
39988
39989     ColdFire: Add MCF547x_8x related header files
39990
39991     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39992     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39993     Signed-off by: John Rigby <jrigby@freescale.com>
39994
39995 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
39996 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39997 Date:   Tue Jan 15 13:37:34 2008 -0600
39998
39999     ColdFire: Add MCF547x_8x cpu arch
40000
40001     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40002     Signed-off by: John Rigby <jrigby@freescale.com>
40003
40004 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
40005 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40006 Date:   Mon Jan 14 17:47:23 2008 -0600
40007
40008     ColdFire: Add MCF5227x cpu and M52277EVB support-3
40009
40010     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40011     Signed-off by: John Rigby <jrigby@freescale.com>
40012
40013 commit c87581027994c148131b2f11aa75501f782ec19a
40014 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40015 Date:   Mon Jan 14 17:46:19 2008 -0600
40016
40017     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
40018
40019     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40020     Signed-off by: John Rigby <jrigby@freescale.com>
40021
40022 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
40023 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40024 Date:   Mon Jan 14 17:43:33 2008 -0600
40025
40026     ColdFire: Add MCF5227x cpu and M52277EVB support-1
40027
40028     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40029     Signed-off by: John Rigby <jrigby@freescale.com>
40030
40031 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
40032 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40033 Date:   Mon Jan 14 17:35:44 2008 -0600
40034
40035     ColdFire: Fix CFI Flash low level Read/Write macro
40036
40037     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40038     Signed-off by: John Rigby <jrigby@freescale.com>
40039
40040 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
40041 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40042 Date:   Mon Jan 14 17:23:08 2008 -0600
40043
40044     ColdFire: Add M5373EVB platform support - 2
40045
40046     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40047     Signed-off by: John Rigby <jrigby@freescale.com>
40048
40049 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
40050 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40051 Date:   Mon Jan 14 17:19:54 2008 -0600
40052
40053     ColdFire: Add M5373EVB platform support - 1
40054
40055     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40056     Signed-off by: John Rigby <jrigby@freescale.com>
40057
40058 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
40059 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40060 Date:   Mon Jan 14 17:17:03 2008 -0600
40061
40062     ColdFire: Update FlexBus CS for MCF532x
40063
40064     Definition update and change from 16bit to 32bit
40065
40066     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40067     Signed-off by: John Rigby <jrigby@freescale.com>
40068
40069 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
40070 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40071 Date:   Mon Jan 14 17:11:47 2008 -0600
40072
40073     ColdFire: PCI and misc updates for MCF5445x
40074
40075     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40076     Signed-off by: John Rigby <jrigby@freescale.com>
40077
40078 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
40079 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40080 Date:   Mon Jan 14 17:06:55 2008 -0600
40081
40082     ColdFire: MCF5445x header files cleanup
40083
40084     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40085     Signed-off by: John Rigby <jrigby@freescale.com>
40086
40087 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
40088 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40089 Date:   Mon Jan 14 16:59:42 2008 -0600
40090
40091     ColdFire: MCF532x header files cleanup
40092
40093     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40094     Signed-off by: John Rigby <jrigby@freescale.com>
40095
40096 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
40097 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40098 Date:   Mon Jan 14 15:30:15 2008 -0600
40099
40100     ColdFire: Add modules header files
40101
40102     Add CF specific modules header files
40103
40104     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40105     Signed-off-by: John Rigby <jrigby@freescale.com>
40106
40107 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
40108 Author: Kim Phillips <kim.phillips@freescale.com>
40109 Date:   Thu Jan 17 12:48:00 2008 -0600
40110
40111     codingstyle cleanup for spi driver
40112
40113     ..and rm unused CONFIG_FSL_SPI define
40114
40115     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40116
40117 commit d59feffb42c9f174116db7a82a311df98983dfce
40118 Author: Haiying Wang <Haiying.Wang@freescale.com>
40119 Date:   Wed Jan 16 17:12:12 2008 -0500
40120
40121     FSL: Fix common EEPROM_data structure definition
40122
40123     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
40124     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
40125       bd->bi_ethaddr.
40126
40127     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40128
40129 commit 6bee764bd6da510a4aad614880300c968bc7318d
40130 Author: Timur Tabi <timur@freescale.com>
40131 Date:   Wed Jan 16 15:48:12 2008 -0600
40132
40133     86xx: enable command-line editing
40134
40135     Enable command-line editing for all MPC86xx boards.
40136
40137     Signed-off-by: Timur Tabi <timur@freescale.com>
40138
40139 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
40140 Author: Ben Warren <biggerbadderben@gmail.com>
40141 Date:   Wed Jan 16 22:37:42 2008 -0500
40142
40143     Implement hard SPI driver on MPC8349EMDS
40144
40145     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
40146     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
40147
40148     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40149     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40150
40151 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
40152 Author: Ben Warren <biggerbadderben@gmail.com>
40153 Date:   Wed Jan 16 22:37:35 2008 -0500
40154
40155     Add support for a Freescale non-CPM SPI controller
40156
40157     This patch adds support for the SPI controller found on Freescale PowerPC
40158     processors such as the MCP834x family.  Additionally, a new config option,
40159     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
40160
40161     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40162     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40163
40164 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
40165 Author: Dave Liu <r63238@freescale.com>
40166 Date:   Thu Jan 17 18:23:19 2008 +0800
40167
40168     mpc83xx: Fix the fatal conflict of merge
40169
40170     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
40171     will cause the mpc8315erdb board can't boot up.
40172
40173     The patch fix that bug, and remove the duplicated #ifdef
40174     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
40175     MPC8313E processor.
40176
40177     Signed-off-by: Dave Liu <daveliu@freescale.com>
40178     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40179
40180 commit 3259eeaa4148125a81417477f62c05bd67f60587
40181 Author: Larry Johnson <lrj@acm.org>
40182 Date:   Thu Jan 17 08:50:09 2008 -0500
40183
40184     Merge Sequoia beautification into Korat code
40185
40186     Signed-off-by: Larry Johnson <lrj@acm.org>
40187
40188 commit e16925773211291b562e77187061e9dd1d757217
40189 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40190 Date:   Thu Jan 17 07:45:05 2008 +0100
40191
40192     net: add 'ethrotate' environment variable
40193
40194     [PATCH] net: add 'ethrotate' environment variable
40195
40196     This patch replaces the buildtime configuration option
40197     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
40198     configuration veriable. See README.
40199
40200     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40202
40203 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
40204 Author: Stefan Roese <sr@denx.de>
40205 Date:   Thu Jan 17 14:29:04 2008 +0100
40206
40207     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
40208
40209     Signed-off-by: Stefan Roese <sr@denx.de>
40210
40211 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
40212 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40213 Date:   Thu Jan 17 18:07:32 2008 +0900
40214
40215     sh: Remove CONFIG_COMMANDS from MS7720SE config file
40216
40217     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40218
40219 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
40220 Author: Niklaus Giger <niklaus.giger@netstal.com>
40221 Date:   Wed Jan 16 18:39:20 2008 +0100
40222
40223     ppc4xx: Netstal HCU4 board: added various fixes and POST
40224
40225     - Moved some common code to netstal/common/nm_bsp.c.
40226     - sdram initialisation goes go netstal/common/fixed_sdram.c.
40227     - Added support for POST.
40228     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
40229
40230     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40231
40232 commit 69b0634a4ee98c9791815600d43b99f626a952f3
40233 Author: Niklaus Giger <niklaus.giger@netstal.com>
40234 Date:   Thu Jan 17 12:53:56 2008 +0100
40235
40236     ppc4xx: netstal/common define routines used by all boards
40237
40238     Added some routines used by all Netstal boards:
40239     - nm_bsp.c: - nm_show_print and
40240             -  common_misc_init_r
40241             - set_params_for_sw_install. Very specific code to handle our SW
40242               installation procedure
40243     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
40244       to handle sdram initialization.
40245     - nm.h: Common header
40246
40247     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40248
40249 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
40250 Author: Niklaus Giger <niklaus.giger@netstal.com>
40251 Date:   Wed Jan 16 18:39:18 2008 +0100
40252
40253     ppc4xx: Netstal HCU5 board: added various fixes and POST
40254
40255     - Moved some common code to nestal/common/nm_bsp.c.
40256     - Added support for the vxWorks EDR.
40257     - Enable trace for Lauterbach, if present.
40258     - Added support for POST.
40259     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
40260
40261     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40262
40263 commit 4371090e5da77edc7bf9f296364db4801639d9c4
40264 Author: Niklaus Giger <niklaus.giger@netstal.com>
40265 Date:   Wed Jan 16 18:39:08 2008 +0100
40266
40267     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
40268
40269     - Various fixes
40270     - Reduced rom_size from 384 to 320 kB
40271     - Environment is now in flash
40272     - Added POST
40273     - Support for OF
40274
40275     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40276
40277 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
40278 Author: Niklaus Giger <niklaus.giger@netstal.com>
40279 Date:   Wed Jan 16 18:37:50 2008 +0100
40280
40281     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
40282
40283     - Various fixes
40284     - Reduced rom_size from 384 to 320 kB
40285     - Environment is now in flash
40286     - Added POST
40287     - Support for OF
40288
40289     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40290
40291 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
40292 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40293 Date:   Thu Jan 17 10:53:08 2008 +0100
40294
40295     ppc4xx: Complete DU440 board support
40296
40297     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40298
40299 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
40300 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40301 Date:   Thu Jan 17 10:52:30 2008 +0100
40302
40303     ppc4xx: Add DU440 board support
40304
40305     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40306
40307 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
40308 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40309 Date:   Thu Jan 17 15:53:52 2008 +0900
40310
40311     sh: Update SuperH SCIF driver
40312
40313     This patch fixed wrong SH7720 CPU macro and changed macro that
40314     calculated value of SCBRR register.
40315
40316     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40317
40318 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
40319 Author: Grzegorz Bernacki <gjb@semihalf.com>
40320 Date:   Wed Jan 16 15:12:47 2008 +0100
40321
40322     Set ips dividor to 1/4 of csb clock.
40323
40324     Previous setting cause ips clock to be out of spec. This bug was found by John
40325     Rigby from Freescale.
40326
40327     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
40328
40329 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
40330 Author: Kumar Gala <galak@kernel.crashing.org>
40331 Date:   Thu Jan 17 02:19:18 2008 -0600
40332
40333     85xx: Get ride of old TLB setup code
40334
40335     Now that all boards have been converted, remove old config code and the
40336     config option for the new style.
40337
40338     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40339
40340 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
40341 Author: Kumar Gala <galak@kernel.crashing.org>
40342 Date:   Thu Jan 17 02:02:10 2008 -0600
40343
40344     85xx: Convert TQM85xx to new TLB setup
40345
40346     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40347
40348 commit 74121b470c14f7eaf284ee838bffca6f9521069e
40349 Author: Kumar Gala <galak@kernel.crashing.org>
40350 Date:   Thu Jan 17 01:56:32 2008 -0600
40351
40352     85xx: Convert STXGP3 & STXSSA to new TLB setup
40353
40354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40355
40356 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
40357 Author: Kumar Gala <galak@kernel.crashing.org>
40358 Date:   Thu Jan 17 01:44:34 2008 -0600
40359
40360     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
40361
40362     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40363
40364 commit 818218bac6a11591e2542c344d2330e0f4e1968b
40365 Author: Kumar Gala <galak@kernel.crashing.org>
40366 Date:   Thu Jan 17 01:31:34 2008 -0600
40367
40368     85xx: Convert PM854/PM856 to new TLB setup
40369
40370     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40371
40372 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
40373 Author: Kumar Gala <galak@kernel.crashing.org>
40374 Date:   Thu Jan 17 01:25:33 2008 -0600
40375
40376     85xx: Convert MPC8540EVAL to new TLB setup
40377
40378     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40379
40380 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
40381 Author: Kumar Gala <galak@kernel.crashing.org>
40382 Date:   Thu Jan 17 01:12:22 2008 -0600
40383
40384     85xx: Convert MPC8568 MDS to new TLB setup
40385
40386     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40387
40388 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
40389 Author: Kumar Gala <galak@kernel.crashing.org>
40390 Date:   Thu Jan 17 01:01:09 2008 -0600
40391
40392     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
40393
40394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40395
40396 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
40397 Author: Kumar Gala <galak@kernel.crashing.org>
40398 Date:   Thu Jan 17 00:52:29 2008 -0600
40399
40400     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
40401
40402     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40403
40404 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
40405 Author: Kumar Gala <galak@kernel.crashing.org>
40406 Date:   Thu Jan 17 00:32:17 2008 -0600
40407
40408     85xx: Convert ATUM8548 to new TLB setup
40409
40410     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40411
40412 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
40413 Author: Kumar Gala <galak@kernel.crashing.org>
40414 Date:   Wed Jan 16 23:11:57 2008 -0600
40415
40416     85xx: Convert MPC8544 DS to new TLB setup
40417
40418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40419
40420 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
40421 Author: Kumar Gala <galak@kernel.crashing.org>
40422 Date:   Wed Jan 16 22:38:34 2008 -0600
40423
40424     85xx: Reworked initial processor init
40425
40426     Reworked the initial processor initialzation sequence:
40427     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
40428     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
40429     * Reworked initial asm code to do most of the core init before TLBs
40430
40431     The main reasons for these changes are to allow handling of 36-bit phys
40432     addresses in the future and some of the issues that will exist when we
40433     do that.
40434
40435     There are a few caveats on what can be initialized via the LAW and TLB
40436     static tables:
40437     * TLB entry 14/15 can't be initialized via the TLB table
40438     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
40439       the code that is currently executing.
40440
40441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40442
40443 commit 44a23cfd6360a68eaa41f945190618a55519eac3
40444 Author: Kumar Gala <galak@kernel.crashing.org>
40445 Date:   Wed Jan 16 22:33:22 2008 -0600
40446
40447     85xx: Introduce new tlb API
40448
40449     Add a set of functions to manipulate TLB entries:
40450      * set_tlb() - write a tlb entry
40451      * invalidate_tlb() - invalidate a tlb array
40452      * disable_tlb() - disable a variable size tlb entry
40453      * init_tlbs() - setup initial tlbs based on static table
40454
40455     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40456
40457 commit be88b1699863c262818f3af7f60173b4d48df8fc
40458 Author: Stefan Roese <sr@denx.de>
40459 Date:   Thu Jan 17 07:50:17 2008 +0100
40460
40461     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
40462
40463     Signed-off-by: Stefan Roese <sr@denx.de>
40464
40465 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
40466 Author: Kumar Gala <galak@kernel.crashing.org>
40467 Date:   Wed Jan 16 10:04:42 2008 -0600
40468
40469     85xx: Use proper defines for PCI addresses
40470
40471     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
40472     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
40473     be used for configuring the PCI ATMU.
40474
40475     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40476
40477 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
40478 Author: Kumar Gala <galak@kernel.crashing.org>
40479 Date:   Wed Jan 16 09:22:29 2008 -0600
40480
40481     85xx: Remove old style of LAW init
40482
40483     All boards are now using the new fsl_law code so we can drop the old version.
40484
40485     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40486
40487 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
40488 Author: Kumar Gala <galak@kernel.crashing.org>
40489 Date:   Wed Jan 16 09:15:29 2008 -0600
40490
40491     85xx: convert remaining 85xx boards over to use new LAW init code
40492
40493     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
40494     to use new LAW init code.
40495
40496     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40497
40498 commit 572b13afc42710f2957c382a710360429c0e099b
40499 Author: Kumar Gala <galak@kernel.crashing.org>
40500 Date:   Wed Jan 16 09:11:53 2008 -0600
40501
40502     85xx: convert STXGP3/STXSSA over to use new LAW init code
40503
40504     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40505
40506 commit 45f2166ac0233a9263058378f39612bd11f61196
40507 Author: Kumar Gala <galak@kernel.crashing.org>
40508 Date:   Wed Jan 16 09:06:48 2008 -0600
40509
40510     85xx: convert PM854/PM856 over to use new LAW init code
40511
40512     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40513
40514 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
40515 Author: Kumar Gala <galak@kernel.crashing.org>
40516 Date:   Wed Jan 16 09:05:27 2008 -0600
40517
40518     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
40519
40520     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40521
40522 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
40523 Author: Kumar Gala <galak@kernel.crashing.org>
40524 Date:   Wed Jan 16 01:45:10 2008 -0600
40525
40526     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
40527
40528     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40529
40530 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
40531 Author: Kumar Gala <galak@kernel.crashing.org>
40532 Date:   Wed Jan 16 01:32:06 2008 -0600
40533
40534     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
40535
40536     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40537
40538 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
40539 Author: Kumar Gala <galak@kernel.crashing.org>
40540 Date:   Wed Jan 16 01:16:16 2008 -0600
40541
40542     85xx: convert MPC8544 DS over to use new LAW init code
40543
40544     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40545
40546 commit 83d40dfd79fe868796275802f60116d84b9e4395
40547 Author: Kumar Gala <galak@kernel.crashing.org>
40548 Date:   Wed Jan 16 01:13:58 2008 -0600
40549
40550     85xx: Move LAW init code into C
40551
40552     Move the initialization of the LAWs into C code and provide an API
40553     to allow modification of LAWs after init.
40554
40555     Board code is responsible to provide a law_table and num_law_entries.
40556
40557     We should be able to use the same code on 86xx as well.
40558
40559     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40560
40561 commit bed8ce838a609aaab136d43b25e6df2a520bc854
40562 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40563 Date:   Sat Dec 22 15:03:12 2007 +0100
40564
40565     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
40566
40567     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40568
40569 commit 0764c164fed6277d359cf132d55187ea34290114
40570 Author: Vlad Lungu <vlad@comsys.ro>
40571 Date:   Wed Jan 16 19:27:51 2008 +0200
40572
40573     MIPS:Target support for qemu -M mips
40574
40575     With serial, NE2000, IDE support. Tested in big-endian mode.
40576     Memory size hard-coded to 128M for now, so don't play with
40577     the -m option.
40578
40579     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
40580
40581 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
40582 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40583 Date:   Fri Jan 11 00:01:37 2008 +0100
40584
40585     Fix nfs command help to reflect that the serverip is optional
40586
40587     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40588     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40589
40590 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
40591 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40592 Date:   Mon Dec 10 22:32:14 2007 +0100
40593
40594     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
40595
40596     and move is_valid_ether_addr board file
40597
40598     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40599     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40600
40601 commit c2f896b8fc4722e36915903e1942e138e68ce804
40602 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40603 Date:   Wed Jan 16 16:13:31 2008 +0900
40604
40605     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
40606
40607     rx_status on the memory is basically in LE, but needs to be handled in CPU
40608     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
40609     it'll work fine.
40610
40611     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40612     Cc: Masami Komiya <mkomiya@sonare.it>
40613     Cc: Lucas Jin <lucasjin@gmail.com>
40614     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40615
40616 commit 96a236746fe6a7b84802afb4ed31536696d34812
40617 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40618 Date:   Wed Jan 16 16:12:26 2008 +0900
40619
40620     drivers/net/rtl8139.c: Fix cache coherency issues
40621
40622     Current driver is meant for cache coherent systems. This patch adds
40623     flush_cache() routines to support cache non-coherent systems.
40624
40625     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40626     Cc: Masami Komiya <mkomiya@sonare.it>
40627     Cc: Lucas Jin <lucasjin@gmail.com>
40628     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40629
40630 commit d1276c76c1e2b5035296689280ba1acb2c425104
40631 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40632 Date:   Wed Jan 16 16:11:14 2008 +0900
40633
40634     drivers/net/rtl8139.c: Fix tx timeout
40635
40636     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
40637     does, the condition "(currticks() < to)" becomes invalid and immediately
40638     leads to tx timeout error. This patch introduces the fine-graded udely(10)
40639     loops to ease the impact of wrapping around.
40640
40641     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40642     Cc: Masami Komiya <mkomiya@sonare.it>
40643     Cc: Lucas Jin <lucasjin@gmail.com>
40644     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40645
40646 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
40647 Author: Dave Liu <r63238@freescale.com>
40648 Date:   Fri Jan 11 18:45:28 2008 +0800
40649
40650     TSEC: Add the support for RealTek RTL8211B PHY
40651
40652     Add the support of RealTek RTL8211B PHY, the RTL8211B
40653     PHY only supports RGMII and MII mode.
40654
40655     Signed-off-by: Dave Liu <daveliu@freescale.com>
40656     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40657
40658 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
40659 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40660 Date:   Wed Jan 16 09:40:41 2008 +0100
40661
40662     Remove annoying debug printout for PHY less boards.
40663
40664     PHY less board prints out lots of "read wrong ...":
40665     read wrong value : mii_id 3,mii_reg 2, base e0102320
40666     read wrong value : mii_id 3,mii_reg 3, base e0102320
40667     UEC: PHY is Generic MII (ffffffff)
40668     read wrong value : mii_id 3,mii_reg 4, base e0102320
40669     read wrong value : mii_id 3,mii_reg 0, base e0102320
40670     read wrong value : mii_id 3,mii_reg 1, base e0102320
40671     read wrong value : mii_id 3,mii_reg 1, base e0102320
40672     read wrong value : mii_id 3,mii_reg 5, base e0102320
40673     read wrong value : mii_id 3,mii_reg 1, base e0102320
40674     read wrong value : mii_id 3,mii_reg 1, base e0102320
40675     read wrong value : mii_id 3,mii_reg 5, base e0102320
40676     FSL UEC0: Full Duplex
40677     FSL UEC0: Speed 100BT
40678     FSL UEC0: Link is up
40679     Using FSL UEC0 device
40680
40681     Make this printout depend on UEC_VERBOSE_DEBUG and
40682     remove its definition in uec_phy.c
40683
40684     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40685     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40686
40687 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
40688 Author: Kim Phillips <kim.phillips@freescale.com>
40689 Date:   Tue Jan 15 14:11:00 2008 -0600
40690
40691     net: reduce boot latency on QE UEC based boards
40692
40693     actually polling for PHY autonegotiation to finish enables us to remove the
40694     5 second boot prompt latency present on QE based boards.
40695
40696     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
40697     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
40698     code shamelessly stolen from tsec driver.
40699
40700     also rm unused CONFIG_RMII_MODE code.
40701
40702     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40703     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
40704     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40705
40706 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
40707 Author: michael.firth@bt.com <michael.firth@bt.com>
40708 Date:   Wed Jan 16 11:40:51 2008 +0000
40709
40710     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
40711
40712     The current TSEC driver limits MDIO access to the devices that have been configured as attached
40713     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
40714
40715     Signed-off-by: Michael Firth <michael.firth@bt.com>
40716     Acked-by: Andy Fleming <afleming@freescale.com>
40717     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40718
40719 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
40720 Author: Kim Phillips <kim.phillips@freescale.com>
40721 Date:   Wed Jan 16 00:38:05 2008 -0600
40722
40723     Add support for the MPC837xERDB
40724
40725     MPC837xERDB board support includes:
40726     * DDR2 330MHz hardcoded (soldered on the board)
40727     * Local Bus NOR Flash
40728     * I2C, UART and RTC
40729     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
40730     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
40731     *                  load)
40732
40733     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
40734     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
40735     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40736
40737 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
40738 Author: Kim Phillips <kim.phillips@freescale.com>
40739 Date:   Wed Jan 16 12:06:16 2008 -0600
40740
40741     mpc83xx: add support for more system clock performance controls
40742
40743     System registers that are modified are the Arbiter Configuration
40744     Register (ACR), the System Priority Control Register (SPCR), and the
40745     System Clock Configuration Register (SCCR).
40746
40747     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
40748     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
40749     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40750
40751 commit 16c3cde050e2d243e62b37486f1558570787beb8
40752 Author: James Yang <james.yang@freescale.com>
40753 Date:   Wed Jan 16 11:58:08 2008 -0600
40754
40755     FSL: Generalize PIXIS reset command parsing.
40756
40757     Before, the order of arguments to the pixis_reset
40758     command needed to be supplied in a hard-coded order.
40759     Generalize the command parsing to allow any order.
40760
40761     Signed-off-by: James Yang <james.yang@freescale.com>
40762     Acked-by: Jon Loeliger <jdl@freescale.com>
40763
40764 commit ad8f8687b78c3e917b173f038926695383c55555
40765 Author: Jon Loeliger <jdl@freescale.com>
40766 Date:   Tue Jan 15 13:42:41 2008 -0600
40767
40768     FSL: Convert board/freescale/common/Makefile to use CONFIG_
40769
40770     Convert the board/freescale/common/Makefile to use
40771     CONFIG_* options to select which files to conditionally
40772     compile into the board/freescale/common library rather
40773     than conditionally compiling entire files.
40774
40775     Now handles::
40776         CONFIG_FSL_PIXIS
40777         CONFIG_FSL_DIU_FB
40778         CONFIG_PQ_MDS_PIB
40779
40780     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
40781
40782     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40783
40784 commit 7c2221eb230372a9e537c4f6636b147b0909325f
40785 Author: Roy Zang <tie-fei.zang@freescale.com>
40786 Date:   Tue Jan 15 16:38:38 2008 +0800
40787
40788     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
40789
40790     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
40791     Remove unused ethernet CONFIG_ options.
40792
40793     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40794     Acked-by: Jon Loeliger <jdl@freescale.com>
40795
40796 commit 711a7946277d2e29af481011e8635e9975c54e45
40797 Author: Kim Phillips <kim.phillips@freescale.com>
40798 Date:   Tue Jan 15 14:05:14 2008 -0600
40799
40800     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
40801
40802     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
40803
40804     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40805
40806 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
40807 Author: Kim Phillips <kim.phillips@freescale.com>
40808 Date:   Tue Jan 15 09:51:12 2008 -0600
40809
40810     mpc83xx: clean up mpc8360emds.c warnings
40811
40812     mpc8360emds.c: In function 'ft_board_setup':
40813     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
40814     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
40815     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
40816     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
40817     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
40818     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
40819
40820     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40821
40822 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
40823 Author: Kim Phillips <kim.phillips@freescale.com>
40824 Date:   Mon Jan 14 16:14:46 2008 -0600
40825
40826     mpc83xx: fix phy-connection-type fixup code
40827
40828     use tree passed to us in local blob, not global fdt.
40829
40830     Also use fdt_path_offset to convert to relative offset, since absolute
40831     reference is needed to check for rgmii-id mode string value.
40832
40833     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40834
40835 commit 2b4c952be7c4357a13e839d48df80853820c33eb
40836 Author: Kumar Gala <galak@kernel.crashing.org>
40837 Date:   Mon Jan 14 09:01:40 2008 -0600
40838
40839     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
40840
40841     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40842     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40843
40844 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
40845 Author: Poonam Aggrwal <b10812@freescale.com>
40846 Date:   Mon Jan 14 09:41:14 2008 +0530
40847
40848     Changes in uboot DDR configuration for MPC8313eRDB
40849
40850     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
40851     DDR configuration in u-boot code. Some are related to performance, some
40852     affect stability and some correct few basic errors in the current
40853     configuration.
40854
40855     The changes have been tested and found to give better memory latency
40856     figures on MPC8313eRDB.LMBench figures prove it.
40857
40858     The changes are:
40859
40860     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
40861       (this may improve performance for application with many read
40862       or write to open pages).
40863     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
40864       001 (activating all the CS when only one is used may cause
40865       unwanted noise on the system)
40866
40867     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
40868       Tras=45ns)
40869     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
40870
40871     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
40872       comply with the 3 ODT clk requirements)
40873     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
40874     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
40875
40876     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
40877     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
40878
40879     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
40880     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
40881
40882     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
40883     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
40884
40885     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
40886     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
40887     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
40888     Cc: Josep P J <PJ.Joseph@freescale.com>
40889     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40890
40891 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
40892 Author: Jerry Van Baren <gvb.uboot@gmail.com>
40893 Date:   Sat Jan 12 13:24:14 2008 -0500
40894
40895     Enable the isdram command on the MPC8360EMDS board
40896
40897     The isdram command prints out decoded information the "serial presence
40898     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
40899     debugging memory configuration problems.
40900
40901     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40902     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40903
40904 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
40905 Author: Dave Liu <r63238@freescale.com>
40906 Date:   Fri Jan 11 18:48:24 2008 +0800
40907
40908     mpc83xx: Add the support for MPC8315ERDB board
40909
40910     The features list:
40911     - Boot from NOR Flash
40912     - DDR2 266MHz hardcoded configuration
40913     - Local bus NOR Flash R/W operation
40914     - I2C, UART, MII and RTC
40915     - eTSEC0/1 support
40916     - PCI host
40917
40918     Signed-off-by: Dave Liu <daveliu@freescale.com>
40919     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40920
40921 commit b05884efa614e4d8a9413158fc228e0dc02ab704
40922 Author: Dave Liu <r63238@freescale.com>
40923 Date:   Fri Jan 11 18:46:50 2008 +0800
40924
40925     mpc83xx: Add config of eTSEC emergency priority in SPCR
40926
40927     The TSEC emergency priority definition of 831x/837x
40928     is different than the definition of 834x in SPCR register.
40929
40930     Add the other config of TSEC emergency priority into
40931     cpu_init.c
40932
40933     Signed-off-by: Dave Liu <daveliu@freescale.com>
40934     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40935
40936 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
40937 Author: Dave Liu <r63238@freescale.com>
40938 Date:   Fri Jan 11 18:42:19 2008 +0800
40939
40940     mpc83xx: Remove cache config from MPC8360ERDK.h
40941
40942     The MPC8360ERDK board support patch is added before
40943     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
40944     so, miss clean up it.
40945
40946     The patch clean up the miss cache config.
40947
40948     Signed-off-by: Dave Liu <daveliu@freescale.com>
40949     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40950
40951 commit cd9d23053d435c08fc8695017b5cb9003fcda786
40952 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40953 Date:   Mon Jan 14 23:09:32 2008 +0300
40954
40955     nand: FSL UPM NAND driver
40956
40957     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40958
40959 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
40960 Author: Kyungmin Park <kmpark@infradead.org>
40961 Date:   Tue Jan 15 08:59:44 2008 +0900
40962
40963     OneNAND: Separate U-Boot dependent code from OneNAND
40964
40965     OneNAND: Separate U-Boot dependent code from OneNAND
40966
40967     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40968
40969 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
40970 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40971 Date:   Wed Jan 16 10:33:46 2008 +0100
40972
40973     ppc4xx: Sequoia coding style cleanup and beautification
40974
40975     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40976
40977 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
40978 Author: Larry Johnson <lrj@acm.org>
40979 Date:   Tue Jan 15 14:35:58 2008 -0500
40980
40981     ppc4xx: Refactor ECC POST for AMCC Denali core
40982
40983     The ECC POST reported intermittent failures running after power-up on
40984     the Korat PPC440EPx board.  Even when the test passed, the debugging
40985     output occasionally reported additional unexpected ECC errors.
40986
40987     This refactoring has three main objectives: (1) minimize the code
40988     executed with ECC enabled during the tests, (2) add more checking of the
40989     results so any unexpected ECC errors would cause the test to fail, and
40990     (3) use synchronization (only) where required by the processor.
40991
40992     Signed-off-by: Larry Johnson <lrj@acm.org>
40993
40994 commit 2465665b73ac2f688af945b1ed510752afa816a4
40995 Author: David Saada <David.Saada@ecitele.com>
40996 Date:   Tue Jan 15 10:40:24 2008 +0200
40997
40998     QE UEC: Extend number of supported UECs to 4
40999
41000     This patch extends the number of supported UECs to 4. Note that the
41001     problem of QE thread resources exhaustion is resolved by setting the
41002     correct number of QE threads according to Ethernet type (GBE or FE).
41003
41004     Signed-off-by: David Saada <david.saada@ecitele.com>
41005     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41006
41007 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
41008 Author: Wolfgang Denk <wd@denx.de>
41009 Date:   Wed Jan 16 00:01:01 2008 +0100
41010
41011     LWMON5: enable hush shell as command line parser
41012
41013     Signed-off-by: Wolfgang Denk <wd@denx.de>
41014
41015 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
41016 Author: Wolfgang Denk <wd@denx.de>
41017 Date:   Tue Jan 15 17:22:28 2008 +0100
41018
41019     ADS5121: disable watchdog; enable image timestamps
41020
41021     Signed-off-by: Wolfgang Denk <wd@denx.de>
41022
41023 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
41024 Author: Wolfgang Denk <wd@denx.de>
41025 Date:   Tue Jan 15 17:21:28 2008 +0100
41026
41027     TK885D: fixes for bigger flash sector sizes on new modules;
41028     adjust default environment;
41029     disable SCC ethernet (not used on this board).
41030
41031     Signed-off-by: Wolfgang Denk <wd@denx.de>
41032
41033 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
41034 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41035 Date:   Tue Jan 15 17:48:13 2008 +0900
41036
41037     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
41038
41039     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41040
41041 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
41042 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41043 Date:   Tue Jan 15 23:25:25 2008 +0900
41044
41045     sh: Add support SH7710/SH7712
41046
41047     SH7710/SH7712 of SH3 CPU are supported.
41048     SH771X is called SH-Ether, and has the Ether controller in CPU.
41049     The driver of Ether is not included in this patch.
41050
41051     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41052
41053 commit 63a11be68306870e04d3851ed9fa41955cdf4894
41054 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41055 Date:   Tue Jan 15 23:06:17 2008 +0900
41056
41057     sh: Add support of map_physmem() and unmap_physmem() to SuperH
41058
41059     This patch add the support of map_physmem() and unmap_physmem()
41060     used with Common Flash Interface(CFI) driver.
41061
41062     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41063
41064 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
41065 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41066 Date:   Wed Jan 9 14:42:27 2008 +0900
41067
41068     sh: Add maintainer of MS7720SE to the MAINTAINER file
41069
41070     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41071
41072 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
41073 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41074 Date:   Wed Jan 9 14:39:58 2008 +0900
41075
41076     sh: Fix board name in MS7720SE's config.mk
41077
41078     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41079
41080 commit c0a04d93734d768b39dbb72fb501b65614c8615d
41081 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41082 Date:   Wed Jan 9 14:37:36 2008 +0900
41083
41084     sh: Add MS7720SE to MAKEALL
41085
41086     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41087
41088 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
41089 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41090 Date:   Mon Dec 3 22:58:50 2007 +0900
41091
41092     sh: Add support for MS7720RP02 board
41093
41094     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41095     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41096     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41097
41098 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
41099 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41100 Date:   Wed Jan 9 14:30:02 2008 +0900
41101
41102     sh: Add support for SH7720 in serial_sh driver.
41103
41104     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41105     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41106     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41107
41108 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
41109 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41110 Date:   Mon Dec 3 22:58:45 2007 +0900
41111
41112     sh: Add support SH3 and SH7720
41113
41114     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41115     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41116     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41117
41118 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
41119 Author: Stefan Roese <sr@denx.de>
41120 Date:   Tue Jan 15 10:11:02 2008 +0100
41121
41122     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
41123
41124     Signed-off-by: Stefan Roese <sr@denx.de>
41125
41126 commit 17bef68097ab3692500a36fb31115bff7910aa99
41127 Author: Niklaus Giger <niklausgiger@gmx.ch>
41128 Date:   Mon Jan 14 14:04:42 2008 +0100
41129
41130     ppc_4xx: Fix post spr.c for PPC405
41131
41132     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
41133     for PPC440 and derivates processor.
41134
41135     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
41136
41137 commit 06c428bcd4413014b43236e77765022071424fa6
41138 Author: Dave Liu <r63238@freescale.com>
41139 Date:   Mon Jan 14 11:12:01 2008 +0800
41140
41141     QE: fix compile warning
41142
41143     qe.c: In function 'qe_upload_firmware':
41144     qe.c:390: warning: pointer targets in passing argument 2
41145     uec.c: In function 'uec_initialize':
41146     uec.c:1236: warning: 'uec_info' may be used uninitialized
41147
41148     Signed-off-by: Dave Liu <daveliu@freescale.com>
41149
41150 commit a0dd99d51efa55fe023e19c97ead92683725eb11
41151 Author: Stefan Roese <sr@denx.de>
41152 Date:   Mon Jan 14 10:05:05 2008 +0100
41153
41154     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
41155
41156     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
41157     to remove the USB PHY reset after powerup. The CPLD will keep the
41158     USB PHY in reset (active low) until the bit is set to 1 in
41159     board_early_init_f().
41160
41161     Signed-off-by: Stefan Roese <sr@denx.de>
41162
41163 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
41164 Author: Wolfgang Denk <wd@denx.de>
41165 Date:   Sun Jan 13 23:26:45 2008 +0100
41166
41167     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
41168
41169     Signed-off-by: Wolfgang Denk <wd@denx.de>
41170
41171 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
41172 Author: Wolfgang Denk <wd@denx.de>
41173 Date:   Sun Jan 13 23:37:50 2008 +0100
41174
41175     ADS5121: Fix typo in ads5121.c, adjust default environment
41176
41177     Signed-off-by: Wolfgang Denk <wd@denx.de>
41178
41179 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
41180 Author: John Rigby <jrigby@freescale.com>
41181 Date:   Fri Aug 24 18:18:43 2007 -0600
41182
41183     ADS5121: MAX slew rate for PATA pins
41184
41185     Signed-off-by: John Rigby <jrigby@freescale.com>
41186
41187 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
41188 Author: Wolfgang Denk <wd@denx.de>
41189 Date:   Sun Jan 13 21:05:52 2008 +0100
41190
41191     Fix Makefile dependency problem with parallel builds.
41192
41193     Signed-off-by: Wolfgang Denk <wd@denx.de>
41194
41195 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
41196 Author: Wolfgang Denk <wd@denx.de>
41197 Date:   Sun Jan 13 19:51:39 2008 +0100
41198
41199     MPC8544DS: fix board Makefile for silent build (with -s)
41200
41201     Signed-off-by: Wolfgang Denk <wd@denx.de>
41202
41203 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
41204 Author: Wolfgang Denk <wd@denx.de>
41205 Date:   Sun Jan 13 16:44:08 2008 +0100
41206
41207     PMC440 board: fix board Makefile for out-of-tree building
41208
41209     Signed-off-by: Wolfgang Denk <wd@denx.de>
41210
41211 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
41212 Author: Wolfgang Denk <wd@denx.de>
41213 Date:   Sun Jan 13 16:07:44 2008 +0100
41214
41215     Makalu: fix compile warning
41216
41217     Signed-off-by: Wolfgang Denk <wd@denx.de>
41218
41219 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
41220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41221 Date:   Sun Jan 13 12:36:12 2008 +0100
41222
41223     cmd_nand : fix compiler warning.
41224
41225     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41226
41227 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
41228 Author: Michael Schwingen <rincewind@discworld.dascon.de>
41229 Date:   Sat Jan 12 20:29:47 2008 +0100
41230
41231     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
41232
41233     Signed-off-by: Michael Schwingen <michael@schwingen.org>
41234     Acked-by: Stefan Roese <sr@denx.de>
41235
41236 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
41237 Author: Wolfgang Denk <wd@denx.de>
41238 Date:   Sun Jan 13 02:19:44 2008 +0100
41239
41240     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
41241
41242     Signed-off-by: Wolfgang Denk <wd@denx.de>
41243
41244 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
41245 Author: Wolfgang Denk <wd@denx.de>
41246 Date:   Sun Jan 13 02:19:13 2008 +0100
41247
41248     MPC8xx FEC driver: fix compiler warning.
41249
41250     Signed-off-by: Wolfgang Denk <wd@denx.de>
41251
41252 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
41253 Author: Wolfgang Denk <wd@denx.de>
41254 Date:   Sun Jan 13 00:59:21 2008 +0100
41255
41256     Fix Makefile dependencies issues; allow silent build
41257
41258     - get rid of "version" target whichdidn't really work
41259     - make autoconf.mk depend on version_autogenerated.h to make sure
41260       to rebuild files as needed
41261     - add XECHO macro to allow for silent build using "make -s"
41262
41263     Signed-off-by: Wolfgang Denk <wd@denx.de>
41264
41265 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
41266 Author: Wolfgang Denk <wd@denx.de>
41267 Date:   Sun Jan 13 00:55:47 2008 +0100
41268
41269     ADS5121e: fix compile warning
41270
41271     Signed-off-by: Wolfgang Denk <wd@denx.de>
41272
41273 commit f2b6f4610627fe3d607620e25082916a01538875
41274 Author: Wolfgang Denk <wd@denx.de>
41275 Date:   Sun Jan 13 00:55:18 2008 +0100
41276
41277     MUNICes: fix board Makefile for remote build directory
41278
41279     Signed-off-by: Wolfgang Denk <wd@denx.de>
41280
41281 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
41282 Author: Oliver Weber <almoeli@gmx.de>
41283 Date:   Wed Jan 9 17:04:38 2008 +0100
41284
41285     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
41286
41287     Signed-off-by: Oliver Weber <almoeli@gmx.de>
41288
41289 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
41290 Author: Andreas Engel <andreas.engel@ericsson.com>
41291 Date:   Wed Jan 9 17:10:56 2008 +0100
41292
41293     Make bootretry work when command line editing is enabled
41294
41295     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
41296     This patch fixes the problem.
41297
41298     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
41299
41300 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
41301 Author: Larry Johnson <lrj@acm.org>
41302 Date:   Fri Jan 11 23:26:18 2008 -0500
41303
41304     Refactor code for "i2c sdram" command
41305
41306     Signed-off-by: Larry Johnson <lrj@acm.org>
41307
41308 commit 0df6b8446c4721b91ce311548114891130371083
41309 Author: Larry Johnson <lrj@acm.org>
41310 Date:   Thu Jan 10 22:23:39 2008 -0500
41311
41312     Fix "i2c sdram" command for DDR2 DIMMs
41313
41314     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
41315     "i2c sdram" command.  This patch provides correct alternative
41316     interpretations when DDR2 memory is detected.
41317
41318     Signed-off-by: Larry Johnson <lrj@acm.org>
41319
41320 commit 64134f011254123618798ff77c42ba196b2ec485
41321 Author: Wolfgang Denk <wd@denx.de>
41322 Date:   Sat Jan 12 20:31:39 2008 +0100
41323
41324     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
41325
41326     With recent toolchain versions, some boards would not build because
41327     or errors like this one (here for ocotea board when building with
41328     ELDK 4.2 beta):
41329     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
41330
41331     For many boards, the .bss section is big enough that it wraps around
41332     at the end of the address space (0xFFFFFFFF), so the problem will not
41333     be visible unless you use a 64 bit tool chain for development. On
41334     some boards however, changes to the code size (due to different
41335     optimizations) we bail out with section overlaps like above.
41336
41337     The fix is to add the NOLOAD attribute to the .bss and .sbss
41338     sections, telling the linker that .bss does not consume any space in
41339     the image.
41340
41341     Signed-off-by: Wolfgang Denk <wd@denx.de>
41342
41343 commit 3afac79ec27b91df185f090b31dad9620779f440
41344 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41345 Date:   Fri Jan 11 20:42:58 2008 -0600
41346
41347     USB: Add Philips 1561 PCI-OHCI ids
41348     (needed for M5475EVB)
41349
41350     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41351
41352 commit 5e8def6731cd7bec74bff42a16b139de04010353
41353 Author: Wolfgang Denk <wd@denx.de>
41354 Date:   Sat Jan 12 15:51:34 2008 +0100
41355
41356     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
41357     boards.
41358
41359     Signed-off-by: Heiko Schocher <hs@denx.de>
41360     Signed-off-by: Wolfgang Denk <wd@denx.de>
41361
41362 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
41363 Author: Grzegorz Bernacki <gjb@semihalf.com>
41364 Date:   Fri Jan 11 12:03:43 2008 +0100
41365
41366     MPC512X: Cleanup bus clock names.
41367
41368     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41369
41370 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
41371 Author: Grzegorz Bernacki <gjb@semihalf.com>
41372 Date:   Tue Jan 8 17:16:59 2008 +0100
41373
41374     MPC512X: Fixed typo in macro name.
41375
41376     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41377
41378 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
41379 Author: Grzegorz Bernacki <gjb@semihalf.com>
41380 Date:   Tue Jan 8 17:16:15 2008 +0100
41381
41382     ads5121: Added support for FDT.
41383
41384     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41385
41386 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
41387 Author: Wolfgang Denk <wd@denx.de>
41388 Date:   Sat Jan 12 01:05:50 2008 +0100
41389
41390     Coding Style cleanup; update CHANGELOG.
41391
41392     Signed-off-by: Wolfgang Denk <wd@denx.de>
41393
41394 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
41395 Author: Heiko Schocher <hs@denx.de>
41396 Date:   Fri Jan 11 15:15:17 2008 +0100
41397
41398     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
41399
41400     Signed-off-by: Timur Tabi <timur@freescale.com>
41401     Signed-off-by: Heiko Schocher <hs@denx.de>
41402
41403 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
41404 Author: Heiko Schocher <hs@denx.de>
41405 Date:   Fri Jan 11 15:15:16 2008 +0100
41406
41407     MUNICes: Set the right CFG_DEFAULT_MBAR value.
41408
41409     Signed-off-by: Heiko Schocher <hs@denx.de>
41410
41411 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
41412 Author: Heiko Schocher <hs@denx.de>
41413 Date:   Fri Jan 11 15:15:15 2008 +0100
41414
41415     added the config File for the MUNICes board.
41416
41417     Signed-off-by: Heiko Schocher <hs@denx.de>
41418
41419 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
41420 Author: Heiko Schocher <hs@denx.de>
41421 Date:   Fri Jan 11 15:15:14 2008 +0100
41422
41423     added basic support for the MUNICes board.
41424
41425     Signed-off-by: Heiko Schocher <hs@denx.de>
41426
41427 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
41428 Author: Wolfgang Denk <wd@denx.de>
41429 Date:   Sat Jan 12 00:39:37 2008 +0100
41430
41431     Update CHANGELOG and MAINTAINERS files.
41432
41433     Signed-off-by: Wolfgang Denk <wd@denx.de>
41434
41435 commit 5ba7390c3cb579172be66888a371707b47b5be4e
41436 Author: Anatolij Gustschin <agust@denx.de>
41437 Date:   Fri Jan 11 02:15:02 2008 +0100
41438
41439     Fix compilation problem in common/cmd_bmp.c
41440
41441     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
41442     isn't defined. This patch fix this.
41443
41444     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41445
41446 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
41447 Author: Heiko Schocher <hs@denx.de>
41448 Date:   Fri Jan 11 01:12:09 2008 +0100
41449
41450     Fix defaultconfig for the mgcoge board.
41451
41452     Signed-off-by: Heiko Schocher <hs@denx.de>
41453
41454 commit ac9db066b26935f31bff15c98168b19faeb603f3
41455 Author: Heiko Schocher <hs@denx.de>
41456 Date:   Fri Jan 11 01:12:08 2008 +0100
41457
41458     Added support for the mgcoge board from keymile.
41459
41460     Signed-off-by: Heiko Schocher <hs@denx.de>
41461
41462 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
41463 Author: Heiko Schocher <hs@denx.de>
41464 Date:   Fri Jan 11 01:12:07 2008 +0100
41465
41466     Enable SMC microcode relocation patch for SMC1.
41467
41468     Signed-off-by: Heiko Schocher <hs@denx.de>
41469
41470 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
41471 Author: Heiko Schocher <hs@denx.de>
41472 Date:   Fri Jan 11 01:12:06 2008 +0100
41473
41474     Added support for the mgsuvd board from keymile.
41475
41476     Signed-off-by: Heiko Schocher <hs@denx.de>
41477
41478 commit bf05293973b348f6946c9df92cd3c65ece42d0be
41479 Author: James Yang <james.yang@freescale.com>
41480 Date:   Thu Jan 10 16:02:07 2008 -0600
41481
41482     Fix 64-bit vsprintf.
41483
41484     There were some size and unsigned problems.
41485     Also add support for "ll" size modifier in format string like glibc
41486
41487     Signed-off-by: James Yang <James.Yang@freescale.com>
41488     Acked-by: Jon Loeliger <jdl@freescale.com>
41489
41490 commit 92fa37eac530860643afa26ae347af3d23d67309
41491 Author: Larry Johnson <lrj@acm.org>
41492 Date:   Wed Jan 9 12:42:35 2008 -0500
41493
41494     Remove superfluous preprocessor conditionals from LM73 driver
41495
41496     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
41497
41498     (2) Use conditional Makefile.o.
41499
41500     Signed-off-by: Larry Johnson <lrj@acm.org>
41501
41502 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
41503 Author: Guennadi Liakhovetski <lg@denx.de>
41504 Date:   Thu Jan 10 17:59:07 2008 +0100
41505
41506     Add support for the TK885D baseboard from TELE-DATA
41507
41508     The TK885D board uses a TQM885D module from TQ, this port adds an
41509     own configuration file and adds a last_stage_init() method to
41510     configure the two PHYs, depending on the phy_auto_nego environment
41511     variable.
41512
41513     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41514
41515 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
41516 Author: Kumar Gala <galak@kernel.crashing.org>
41517 Date:   Thu Jan 10 02:22:05 2008 -0600
41518
41519     Fix compiler warning
41520
41521     main.c: In function 'readline_into_buffer':
41522     main.c:927: warning: unused variable 'p_buf'
41523
41524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41525
41526 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
41527 Author: Anatolij Gustschin <agust@denx.de>
41528 Date:   Fri Jan 11 14:30:01 2008 +0100
41529
41530     Add Fujitsu CoralP/Lime video driver
41531
41532     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41533     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
41534
41535 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
41536 Author: Anatolij Gustschin <agust@denx.de>
41537 Date:   Fri Jan 11 02:39:47 2008 +0100
41538
41539     Fix video console newline and carriage return handling
41540
41541     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
41542     are not displayed correctly. This is an attempt to fix
41543     this issue. Also add carriage return handling.
41544
41545     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41546     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
41547
41548 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
41549 Author: Stefan Roese <sr@denx.de>
41550 Date:   Fri Jan 11 15:53:58 2008 +0100
41551
41552     ppc4xx: Fix sdram init on Sequoia boards
41553
41554     Clear possible errors in MCSR resulting from data-eye-search.
41555     If not done, then we could get an interrupt later on when
41556     exceptions are enabled.
41557
41558     Signed-off-by: Stefan Roese <sr@denx.de>
41559
41560 commit d610a60730b7464f6f659db49d264d89a7c71061
41561 Author: Anatolij Gustschin <agust@denx.de>
41562 Date:   Fri Jan 11 15:31:09 2008 +0100
41563
41564     ppc4xx: Rework Lime support for lwmon5
41565
41566     Rework Lime support for lwmon5 using new video driver
41567
41568     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41569
41570 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
41571 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41572 Date:   Fri Jan 11 14:55:16 2008 +0100
41573
41574     ppc4xx: Update PMC440 config file
41575
41576     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41577
41578 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
41579 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41580 Date:   Fri Jan 11 14:55:08 2008 +0100
41581
41582     ppx4xx: Fix sdram init on PMC440 boards
41583
41584     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41585
41586 commit 061aad4d320dddce26247699dcf2875ee2ea1366
41587 Author: Dave Liu <r63238@freescale.com>
41588 Date:   Thu Jan 10 23:09:33 2008 +0800
41589
41590     mpc83xx: Fix the bug of 266MHz data rate DDR
41591
41592     The DDR doesn't work on the 266MHz data rate,
41593     the patch fix the bug.
41594
41595     Signed-off-by: Dave Liu <daveliu@freescale.com>
41596     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41597
41598 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
41599 Author: Dave Liu <r63238@freescale.com>
41600 Date:   Thu Jan 10 23:08:26 2008 +0800
41601
41602     mpc83xx: Make the code more readable
41603
41604     Format the code, make it more readable
41605
41606     Signed-off-by: Dave Liu <daveliu@freescale.com>
41607     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41608
41609 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
41610 Author: Dave Liu <r63238@freescale.com>
41611 Date:   Thu Jan 10 23:07:23 2008 +0800
41612
41613     mpc83xx: Reduce the latency of DDR
41614
41615     Reduce the AL from 2 to 1 clock to improve the performance.
41616
41617     Signed-off-by: Dave Liu <daveliu@freescale.com>
41618     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41619
41620 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
41621 Author: Dave Liu <r63238@freescale.com>
41622 Date:   Thu Jan 10 23:06:05 2008 +0800
41623
41624     mpc83xx: Fix the wrong definition of MPC8315E
41625
41626     According to the latest user manual of MPC8315E,
41627     1) The SVCOD of HRCWL is different than 837x
41628     2) The SCCR has changes
41629
41630     Signed-off-by: Dave Liu <daveliu@freescale.com>
41631     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41632
41633 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
41634 Author: Dave Liu <r63238@freescale.com>
41635 Date:   Thu Jan 10 23:05:00 2008 +0800
41636
41637     mpc83xx: Fix the typo in mpc83xx.h
41638
41639     The SPCR about TSEC priority is wrong.
41640
41641     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
41642     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
41643     Signed-off-by: Dave Liu <daveliu@freescale.com>
41644     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41645
41646 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
41647 Author: Dave Liu <r63238@freescale.com>
41648 Date:   Thu Jan 10 23:04:13 2008 +0800
41649
41650     mpc83xx: Fix the typo in global data struct
41651
41652     Fix the typo in global_data.h
41653
41654     Signed-off-by: Dave Liu <daveliu@freescale.com>
41655     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41656
41657 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
41658 Author: Dave Liu <r63238@freescale.com>
41659 Date:   Thu Jan 10 23:03:03 2008 +0800
41660
41661     mpc83xx: Remove cache config from config.h
41662
41663     clean up the cache config from configs.h of board
41664
41665     Signed-off-by: Dave Liu <daveliu@freescale.com>
41666     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41667
41668 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
41669 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41670 Date:   Wed Jan 9 20:57:47 2008 +0300
41671
41672     mpc83xx: add support for the MPC8360E-RDK
41673
41674     This is MPC8360E based board with:
41675     - 256MB fixed SDRAM;
41676     - 8MB Intel Strata NOR flash;
41677     - StMICRO 64MiB NAND flash;
41678     - two 10/100/1000 ethernet ports connected via Broadcom
41679       BCM5481 PHYs;
41680     - two 10/100 ethernet ports connected via National
41681       DP83848 PHYs;
41682     - one PCI and one miniPCI slots;
41683     - four serial ports (two NS16550-compatible, two UCCs);
41684     - four USB ports working through MPC8360E "FHCI" USB controller;
41685     - Fujitsu MB86277 graphics controller;
41686     - Analog to Digital Converter/Touchscreen controller, AD7843
41687       connected to SPI.
41688
41689     Features not supported in this patch are:
41690     - StMICRO 64MiB NAND flash (patch sent);
41691     - MINT framebuffer initialization (patch is pending);
41692     - Fetching production information from the EEPROM via I2C;
41693     - FHCI USB;
41694     - Two slow UCCs used as RS-485 UARTs.
41695
41696     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41697     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41698
41699 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
41700 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41701 Date:   Wed Jan 9 20:57:40 2008 +0300
41702
41703     mpc83xx: add "fsl, qe" compatible fixups
41704
41705     New device trees will use "fsl,qe" compatible properties.
41706
41707     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41708     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41709
41710 commit 977b57583a7c34010e566a09a679ec3c1836f996
41711 Author: Kim Phillips <kim.phillips@freescale.com>
41712 Date:   Wed Jan 9 15:24:06 2008 -0600
41713
41714     mpc83xx: add missing CONFIG_HAS_ETH0 defines
41715
41716     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
41717     is defined; add the define to the missing board configs.
41718
41719     Thanks to Emilian Medve for finding this.
41720
41721     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41722
41723 commit b830b7f1635984ba607219fcbd78597c28eeb529
41724 Author: Becky Bruce <bgill@freescale.com>
41725 Date:   Thu Jan 10 14:00:28 2008 -0600
41726
41727     86xx: Support 2GB DIMMs
41728
41729     Configure the number of bits used to address the banks inside the SDRAM
41730     device.  The default register value of 0 means 2 bits to address 4 banks.
41731     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
41732
41733     Signed-off-by: Becky Bruce <bgill@freescale.com>
41734
41735 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
41736 Author: Niklaus Giger <niklausgiger@gmx.ch>
41737 Date:   Thu Jan 10 18:50:33 2008 +0100
41738
41739     ppc4xx: Make Sequoia boot vxWorks
41740
41741     vxWorks expects in
41742     TLB 0 a entry for the Machine Check interrupt
41743     TLB 1 a entry for the RAM
41744     TLB 2 a entry for the EBC
41745     TLB 3 a entry for the boot flash
41746
41747     After changing the baudrate to 9600 I had no problems to boot the
41748     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
41749     June 18, 2007)
41750
41751     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
41752
41753 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
41754 Author: Larry Johnson <lrj@arlinx.com>
41755 Date:   Wed Jan 9 23:10:27 2008 -0500
41756
41757     ppc4xx: Fix dflush() to restore DVLIM register
41758
41759     Signed-off-by: Larry Johnson <lrj@acm.org>
41760
41761 commit 252f60b068d1f94190b5bcfda169db582387e15e
41762 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41763 Date:   Thu Jan 10 03:52:44 2008 -0500
41764
41765     Nios2: remove common/cmd_bdinfo.c unused variable.
41766
41767     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41768     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
41769
41770 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
41771 Author: Ben Warren <biggerbadderben@gmail.com>
41772 Date:   Wed Jan 9 18:15:53 2008 -0500
41773
41774     Fix Ethernet init() return codes
41775
41776     Change return values of init() functions in all Ethernet drivers to conform
41777     to the following:
41778
41779         >=0: Success
41780         <0:  Failure
41781
41782     All drivers going forward should return 0 on success.  Current drivers that
41783     return 1 on success were left as-is to minimize changes.
41784
41785     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41786     Acked-by: Stefan Roese <sr@denx.de>
41787     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41788     Acked-by: Kim Phillips <kim.phillips@freescale.com>
41789     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41790     Acked-By: Timur Tabi <timur@freescale.com>
41791
41792 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
41793 Author: Wolfgang Denk <wd@denx.de>
41794 Date:   Thu Jan 10 00:55:14 2008 +0100
41795
41796     Coding Style cleanup; update CHANGELOG
41797
41798     Signed-off-by: Wolfgang Denk <wd@denx.de>
41799
41800 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
41801 Author: Kim Phillips <kim.phillips@freescale.com>
41802 Date:   Wed Jan 9 16:56:54 2008 -0600
41803
41804     Add QE brg freq and correct qe bus freq fdt update code
41805
41806     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41807     Signed-off-by: Andy Fleming <afleming@freescale.com>
41808
41809 commit 890dfef06c2d169a3356359596890754dfb8ee1c
41810 Author: Andy Fleming <afleming@freescale.com>
41811 Date:   Wed Jan 9 16:34:51 2008 -0600
41812
41813     Remove cache config from ATUM8548 and sbc8548 configs
41814
41815     These boards weren't updated by Kumar's config patch because they
41816     weren't in the tree, yet.
41817
41818     Signed-off-by: Andy Fleming <afleming@freescale.com>
41819
41820 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
41821 Author: Timur Tabi <timur@freescale.com>
41822 Date:   Mon Jan 7 13:31:19 2008 -0600
41823
41824     85xx: add ability to upload QE firmware
41825
41826     Define the layout of a binary blob that contains a QE firmware and instructions
41827     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
41828     perform the actual upload.  Add command-line command "qe fw" to take a firmware
41829     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
41830     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
41831     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
41832
41833     Signed-off-by: Timur Tabi <timur@freescale.com>
41834
41835 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
41836 Author: Kumar Gala <galak@kernel.crashing.org>
41837 Date:   Tue Jan 8 01:22:21 2008 -0600
41838
41839     85xx: Remove cache config from configs.h
41840
41841     Either use the standard defines in asm/cache.h or grab the information
41842     at runtime from the L1CFG SPR.
41843
41844     Also, minor cleanup in cache.h to make the code a bit more readable.
41845
41846     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41847
41848 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
41849 Author: robert lazarski <robertlazarski@gmail.com>
41850 Date:   Fri Dec 21 10:39:27 2007 -0500
41851
41852     mpc85xx: Add support for ATUM8548 (updated)
41853
41854     Add support for Instituto Atlantico's ATUM8548 board
41855
41856     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
41857     Signed-off-by: Andy Fleming <afleming@freescale.com>
41858
41859 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
41860 Author: robert lazarski <robertlazarski@gmail.com>
41861 Date:   Fri Dec 21 10:36:37 2007 -0500
41862
41863     mpc85xx: Add support for ATUM8548 (updated)
41864
41865     Add support for Instituto Atlantico's ATUM8548 board
41866
41867     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
41868
41869 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
41870 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
41871 Date:   Thu Dec 13 06:45:14 2007 -0600
41872
41873     mpc85xx: Add support for SBC8548 (updated)
41874
41875     Add support for Wind River's SBC8548 reference board.
41876
41877     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
41878
41879 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
41880 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
41881 Date:   Thu Dec 13 06:45:08 2007 -0600
41882
41883     mpc85xx: Add support for SBC8548 (updated)
41884
41885     Add support for Wind River's SBC8548 reference board.
41886
41887     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
41888     Signed-off by: Andy Fleming <afleming@freescale.com>
41889
41890 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
41891 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41892 Date:   Mon Oct 22 19:58:19 2007 +0400
41893
41894     MPC8568E-MDS: set up QE pario for UART1
41895
41896     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
41897     be set up appropriately.
41898
41899     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41900
41901 commit ad162249cb371e9e38971676f09be791e5f3cf4a
41902 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41903 Date:   Mon Oct 22 18:12:46 2007 +0400
41904
41905     MPC8568E-MDS: reset UCCs to use them reliably
41906
41907     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
41908     UCCs.
41909
41910     p.s Similar code exists in the Linux kernel board file (for capability
41911     reasons with older U-Boots), but should be removed some day.
41912
41913     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41914
41915 commit 2146cf56821c3364786ca94a7306008c5824b238
41916 Author: Kumar Gala <galak@kernel.crashing.org>
41917 Date:   Wed Dec 19 01:18:15 2007 -0600
41918
41919     Reworked FSL Book-E TLB macros to be more readable
41920
41921     The old macros made it difficult to know what WIMGE and perm bits
41922     were set for a TLB entry.  Actually use the bit masks for these items
41923     since they are only a single bit.
41924
41925     Also moved the macros into mmu.h out of e500.h since they aren't specific
41926     to e500.
41927
41928     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41929
41930 commit 1d47273d46925929f8f2c1913cd96d7257aade88
41931 Author: Kumar Gala <galak@kernel.crashing.org>
41932 Date:   Tue Dec 18 23:21:51 2007 -0600
41933
41934     Use FSL Book-E MMU macros from Linux Kernel
41935
41936     Grab the FSL Book-E MAS register macros from Linux.  Also added
41937     defines for page sizes up to 4TB and removed SHAREN since it doesnt
41938     really exist.
41939
41940     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41941
41942 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
41943 Author: Andy Fleming <afleming@freescale.com>
41944 Date:   Wed Jan 9 13:51:32 2008 -0600
41945
41946     Fix my own merge stupidity
41947
41948     Way back in August I merged Heiko's patch:
41949     566a494f592: [PCS440EP] upgrade the PCS440EP board
41950
41951     with Jon's CONFIG_COMMANDS patches.
41952
41953     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
41954
41955     However, in the process, I left out some of Heiko's good changes.
41956
41957     Now Heiko's and Jon's patches are properly merged in fat_register_device()
41958
41959     Signed-off-by: Andy Fleming <afleming@freescale.com>
41960
41961 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
41962 Author: James Yang <James.Yang@freescale.com>
41963 Date:   Wed Jan 9 11:17:49 2008 -0600
41964
41965     Expose parse_line() globally.
41966
41967     Add new function readline_into_buffer() that allows the
41968     output of readline to be put into a pointer to char buffer.
41969
41970     This refactoring allows other functions besides the
41971     main command loop to also use the same input mechanism.
41972
41973     Signed-off-by: James Yang <James.Yang@freescale.com>
41974     Acked-by: Jon Loeliger <jdl@freescale.com>
41975
41976 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
41977 Author: Guennadi Liakhovetski <lg@denx.de>
41978 Date:   Wed Jan 9 01:15:25 2008 +0100
41979
41980     trivial: fix consequences of a bad merge
41981
41982     Fix what looks like a merge artifact.
41983
41984     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41985
41986 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
41987 Author: Zhang Wei <wei.zhang@freescale.com>
41988 Date:   Thu Jan 3 10:51:15 2008 +0800
41989
41990     Add Ctrl combo key support to usb keyboard driver.
41991
41992     Ctrl combo key support is added, which is very useful to input Ctrl-C
41993     for interrupt current job.
41994     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
41995     key input when tstc() is called.
41996
41997     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41998
41999 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
42000 Author: Marcel Ziswiler <marcel@ziswiler.com>
42001 Date:   Sun Dec 30 03:30:56 2007 +0100
42002
42003     fix various comments
42004
42005     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42006
42007 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
42008 Author: Marcel Ziswiler <marcel@ziswiler.com>
42009 Date:   Sun Dec 30 03:30:46 2007 +0100
42010
42011     fix comments with new drivers organization
42012
42013     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42014
42015 commit a9b410dc7d2a4721c408b13abfc037988150f145
42016 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42017 Date:   Fri Dec 28 12:50:59 2007 +0900
42018
42019     Remove the obsolete terse version of do_mii()
42020
42021     We now have more useful version of do_mii() and everybody use it.
42022     Gerald Van Baren says:
42023
42024     > When I originally wrote the mii command 6(!) years ago, I wrote a
42025     > verbose version that printed human readable decomposition of the flags,
42026     > etc., and a terse one that didn't print as much stuff and thus had a
42027     > smaller memory footprint.
42028     >
42029     > It sounds like the terse version has withered and died, apparently
42030     > people are only using the verbose version (which is very understandable,
42031     > I do myself).
42032
42033     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42034     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42035
42036 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
42037 Author: Mike Frysinger <vapier@gentoo.org>
42038 Date:   Thu Dec 27 13:42:56 2007 -0500
42039
42040     Do not reference sha1.c when building mkimage.
42041
42042     remove sha1.o from mkimage linking since it isn't actually used.
42043
42044     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
42045
42046 commit b9173af73e524d37c812f210173cf83385c5171a
42047 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42048 Date:   Thu Dec 27 15:39:54 2007 +0900
42049
42050     common/cmd_mii.c: Add sanity argc check
42051
42052     If type mii command without arguments, we suffer from uninitialized argv[]
42053     entries; for example we MIPS get stuck by TLB error.
42054
42055     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42056
42057 commit 500856eb1707ed17d9204baa61dd59948d3b2899
42058 Author: Rafal Jaworowski <raj@semihalf.com>
42059 Date:   Wed Jan 9 19:39:36 2008 +0100
42060
42061     API for external applications.
42062
42063     This is an API for external (standalone) applications running on top of
42064     U-Boot, and is meant to be more extensible and robust than the existing
42065     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
42066     for more details.
42067
42068     Included is the demo application using this new framework (api_examples).
42069
42070     Please note this is still an experimental feature, and is turned off by
42071     default.
42072
42073     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
42074
42075 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
42076 Author: Jon Loeliger <jdl@freescale.com>
42077 Date:   Wed Jan 9 12:14:55 2008 -0600
42078
42079     86xx: Remove cache config from configs.h
42080
42081     Just use the standard defines in asm/cache.h.
42082
42083     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42084
42085 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
42086 Author: Rafal Jaworowski <raj@semihalf.com>
42087 Date:   Wed Jan 9 18:05:27 2008 +0100
42088
42089     Globalize envmatch()
42090
42091     The newly introduced API (routines related to env vars) will need to call
42092     it.
42093
42094     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
42095
42096 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
42097 Author: Jon Loeliger <jdl@freescale.com>
42098 Date:   Fri Jan 4 12:07:27 2008 -0600
42099
42100     Convert MPC8610HPCD to use libfdt.
42101
42102     Assumes the presence of the aliases node in the DTS to
42103     locate the pci and serial nodes for fixups.
42104
42105     Use consistent fdtaddr and fdtfile in environment variables.
42106
42107     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42108
42109 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
42110 Author: Jon Loeliger <jdl@freescale.com>
42111 Date:   Fri Jan 4 11:58:23 2008 -0600
42112
42113     8610: Fix lingering compile warnings.
42114
42115     Turn off DEBUG.
42116
42117     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42118
42119 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
42120 Author: Wolfgang Denk <wd@denx.de>
42121 Date:   Wed Jan 9 15:14:46 2008 +0100
42122
42123     Coding Style cleanup, update CHANGELOG
42124
42125     Signed-off-by: Wolfgang Denk <wd@denx.de>
42126
42127 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
42128 Author: Mike Frysinger <vapier@gentoo.org>
42129 Date:   Tue Dec 18 04:29:55 2007 -0500
42130
42131     fix easylogo on big endian dev systems
42132
42133     didnt realize how out of shape easylogo actually was until i tried using it.
42134     this patch does byte swapping as need be on the input tga header since the tga
42135     is in little endian but the host could just as well be big endian.  i didnt
42136     bother using bswap macros or such stuff from system headers as nothing in
42137     POSIX dictates byte swapping functionality.
42138
42139     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
42140
42141 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
42142 Author: Mike Frysinger <vapier@gentoo.org>
42143 Date:   Tue Dec 18 03:23:25 2007 -0500
42144
42145     cleanup easylogo
42146
42147     - make the Makefile not suck
42148     - include proper headers for prototypes
42149     - fix obvious broken handling of strchr() when handling '.' in filenames
42150
42151     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
42152
42153 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
42154 Author: raptorbrino@aim.com <raptorbrino@aim.com>
42155 Date:   Thu Dec 13 21:23:28 2007 -0500
42156
42157     Fix build problems under Cygwin
42158
42159     This patch allows u-boot to build without error in a cygwin
42160     environment.  Cygwin does not define __u64 in it's
42161     include/asm/types.h file.  The -idirafter flag in the u-boot
42162     build causes the inclusion of the cygwin types.h file as opposed
42163     to u-bot/include/asm/types.h file which does define __u64.
42164     Subsequently, sha1.c compile fails due to unknown symbol.
42165
42166     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
42167
42168 commit 43ef1c381f9195504a2488f5cb909227eb97d475
42169 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
42170 Date:   Fri Nov 30 17:29:59 2007 +0100
42171
42172     cmd_bmp: Add support for displaying gzip compressed bmps
42173
42174     The existing code can show information about a gzip compressed BMP
42175     image, but can't actually display it.
42176
42177     Therefore, move the decompression code out of bmp_info() and use it in
42178     bmp_display() as well in order to display a compressed BMP image.
42179
42180     Also, clean things up a bit and fix a memory leak while we're at it.
42181
42182     [hskinnemoen@atmel.com: a bit of refactoring]
42183     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42184
42185 commit d197ffd8172c6fdef38733424640a9a47295d6e9
42186 Author: Guennadi Liakhovetski <lg@denx.de>
42187 Date:   Thu Nov 29 21:15:56 2007 +0100
42188
42189     Fix and optimize MII operations on FEC (MPC8xx) controllers
42190
42191     This patch fixes several issues at least on a MPC885 based system with two
42192     FEC interfaces used in MII mode.
42193
42194     1. PHY discovery should first read PHY_PHYIDR2 register and only then
42195        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
42196        otherwise the values read are wrong. Also notice, that PHY discovery
42197        cannot work on MPC88x / MPC87x in setups with both FECs active at all
42198        in its present form, because for both interfaces the registers from FEC
42199        1 are used to communicate over MII.
42200
42201     2. Remove code duplication for resetting the FEC by isolating it into a
42202        separate function.
42203
42204     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
42205
42206     4. Optimize mii_init() to only reset the FEC 1 controller once.
42207
42208     5. Fix a typo in mii_init() using index i instead of j thus potentially
42209        leading to unpredictable results.
42210
42211     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42212
42213 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
42214 Author: Guennadi Liakhovetski <lg@denx.de>
42215 Date:   Tue Nov 20 13:14:20 2007 +0100
42216
42217     Fix endianness conversions in rtl8169 driver
42218
42219     It is unclear on what platforms this driver has been tested, since
42220     noone up to now defines CONFIG_RTL8169 in the board configuration
42221     header. Now it has been fixed for a big-endian mpc8241 based
42222     linkstation platform. This patch presents the necessary endianness
42223     conversion fixes.
42224
42225     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42226
42227 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
42228 Author: Zhang Wei <wei.zhang@freescale.com>
42229 Date:   Thu Jan 3 10:51:15 2008 +0800
42230
42231     Add Ctrl combo key support to usb keyboard driver.
42232
42233     Ctrl combo key support is added, which is very useful to input Ctrl-C
42234     for interrupt current job.
42235     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
42236     key input when tstc() is called.
42237
42238     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42239     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42240
42241 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
42242 Author: Wolfgang Denk <wd@denx.de>
42243 Date:   Wed Jan 9 13:43:38 2008 +0100
42244
42245     Coding Style clenaup; update CHANGELOG
42246
42247     Signed-off-by: Wolfgang Denk <wd@denx.de>
42248
42249 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
42250 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42251 Date:   Thu Dec 27 17:13:11 2007 +0100
42252
42253     Remove bit swapping in Xilinx Spartan bitfile loading
42254
42255     This patch removes the unnecessary bit swapping when
42256     booting .bit files with the 'fpga loadb' command.
42257
42258     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42259
42260 commit 437fc7327f0611f82937858f2d80e4cd61b40984
42261 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42262 Date:   Thu Dec 27 17:13:05 2007 +0100
42263
42264     Fix MSB check in Xilinx Spartan slave serial mode
42265
42266     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42267
42268 commit 3bff4ffa33729a42645e328a21e8d16488872958
42269 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42270 Date:   Thu Dec 27 17:12:56 2007 +0100
42271
42272     Add new Xilinx Spartan FPGA types
42273
42274     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42275
42276 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
42277 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42278 Date:   Thu Dec 27 17:12:43 2007 +0100
42279
42280     Add pre and post configuration callbacks for Spartan FPGAs
42281
42282     This patch adds a post configuration callback for Spartan2/3 FPGAs.
42283     pre and post configuration callback are now optional and
42284     not called when the function pointer is set to NULL.
42285
42286     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42287
42288 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
42289 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42290 Date:   Thu Dec 27 17:12:34 2007 +0100
42291
42292     Improve configuration of FPGA subsystem
42293
42294     This patch removes the FPGA subsystem configuration through
42295     the CONFIG_FPGA bitmask configuration option.
42296
42297     See README for the new options:
42298
42299         CONFIG_FPGA,
42300         CONFIG_FPGA_<vendor>,
42301         CONFIG_FPGA_<family>
42302
42303     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42304
42305 commit 95c6bc7d4a3588b452baca610f8c795a83630477
42306 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42307 Date:   Thu Dec 27 16:55:17 2007 +0100
42308
42309     Add Epson RX8025 RTC support
42310
42311     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42312
42313 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
42314 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42315 Date:   Thu Dec 27 16:57:23 2007 +0100
42316
42317     serial: Make default_serial_console() a weak function
42318
42319     With this patch it is possible to reimplement default_serial_console()
42320     in board specific code. This will be done in the upcomming PMC440
42321     U-Boot port. This also allows the lwmon board maintainer to
42322     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
42323
42324     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42325
42326 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
42327 Author: Harald Welte <laforge@openmoko.org>
42328 Date:   Wed Dec 19 14:14:47 2007 +0100
42329
42330     add 'terminal program' functionality
42331
42332     This patch adds a 'cu' like serial terminal command to u-boot
42333     using which you can access other serial ports from the system console.
42334
42335     OpenMoko uses this in their Neo1973 phones to get access to the GSM
42336     Modem and GPS chip from the bootloader.
42337
42338     Signed-off-by: Harald Welte <laforge@openmoko.org>
42339
42340 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
42341 Author: Harald Welte <laforge@openmoko.org>
42342 Date:   Wed Dec 19 14:12:53 2007 +0100
42343
42344     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
42345     that used to exist with the legacy NAND code
42346
42347     Signed-off-by: Harald Welte <laforge@openmoko.org>
42348
42349 commit f540c42d9564854b19ce9bbb70affe172529fe70
42350 Author: Harald Welte <laforge@openmoko.org>
42351 Date:   Wed Dec 19 14:09:58 2007 +0100
42352
42353     Fix building with CRAMFS but not JFFS2 support
42354
42355     Signed-off-by: Harald Welte <laforge@openmoko.org>
42356
42357 commit 23d0baf967fecdaf1804f045f6339337c5607eec
42358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42359 Date:   Sat Dec 22 15:52:58 2007 +0100
42360
42361     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
42362
42363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
42364     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42365
42366 commit 23776ff292966a85d811126933830bed48211826
42367 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42368 Date:   Tue Dec 11 10:53:12 2007 +0100
42369
42370     ARM: support board-specific ethernet PHY init
42371
42372     Add until the new phylib will be arrived
42373
42374     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42375
42376 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
42377 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42378 Date:   Sat Dec 8 16:34:08 2007 +0100
42379
42380     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
42381
42382     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42383
42384 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
42385 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42386 Date:   Sun Dec 9 11:01:10 2007 +0100
42387
42388     Add missing file in gitignore and comments
42389
42390     based on Linux source tree's .gitignore files
42391
42392     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42393
42394 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
42395 Author: Wolfgang Denk <wd@denx.de>
42396 Date:   Wed Jan 9 11:36:21 2008 +0100
42397
42398     Coding Style cleanup, update CHANGELOG
42399
42400     Signed-off-by: Wolfgang Denk <wd@denx.de>
42401
42402 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
42403 Author: Stefan Roese <sr@denx.de>
42404 Date:   Wed Jan 9 10:38:58 2008 +0100
42405
42406     POST: Execute SPR test after relocation
42407
42408     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
42409     self modifying code and this doesn't work with stack in d-cache, since
42410     I can't move the code from d-cache to i-cache. We move the SPR test to
42411     be executed a little later, after relocation. Then stack is located in
42412     SDRAM and this self-modifying code is no problem anymore.
42413
42414     Signed-off-by: Stefan Roese <sr@denx.de>
42415
42416 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
42417 Author: Stefan Roese <sr@denx.de>
42418 Date:   Wed Jan 9 10:28:20 2008 +0100
42419
42420     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
42421
42422     This patch configures the LWMON5 port to use d-cache as init-ram and
42423     the unused GPT0_COMP6 as POST WORD storage.
42424
42425     Signed-off-by: Stefan Roese <sr@denx.de>
42426
42427 commit 1754f50b710194f886b6f2831803d8960171a14d
42428 Author: Stefan Roese <sr@denx.de>
42429 Date:   Wed Jan 9 10:25:46 2008 +0100
42430
42431     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
42432
42433     The privious 4xx POST implementation only supported storing the POST
42434     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
42435     we need to store the POST WORD in some other non volatile location.
42436     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
42437     a location.
42438
42439     Signed-off-by: Stefan Roese <sr@denx.de>
42440
42441 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
42442 Author: Stefan Roese <sr@denx.de>
42443 Date:   Wed Jan 9 10:23:16 2008 +0100
42444
42445     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
42446
42447     This patch adds support for locking the init-ram/stack in d-cache,
42448     so that other regions may use d-cache as well
42449
42450     Note, that this current implementation locks exactly 4k of d-cache,
42451     so please make sure that you don't define a bigger init-ram area. Take
42452     a look at the lwmon5 440EPx implementation as a reference.
42453
42454     Signed-off-by: Stefan Roese <sr@denx.de>
42455
42456 commit 0ddb89601a8d29e808db450366752ffdc6267c53
42457 Author: Wolfgang Denk <wd@denx.de>
42458 Date:   Wed Jan 9 10:16:33 2008 +0100
42459
42460     Fix memset bug in ext2fs_read_file()
42461
42462     ext2fs_read_file() had the function arguments swapped.
42463
42464     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
42465
42466     Signed-off-by: Wolfgang Denk <wd@denx.de>
42467
42468 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
42469 Author: Markus Klotzbücher <mk@denx.de>
42470 Date:   Tue Jan 5 08:17:15 1988 +0100
42471
42472     Fix problems with usb storage devices on MPC5200 /TQM5200
42473
42474     The MPC5200 OHCI controller operates in big endian, so
42475     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
42476
42477     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42478
42479 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
42480 Author: Wolfgang Denk <wd@denx.de>
42481 Date:   Tue Jan 8 22:58:27 2008 +0100
42482
42483     Fix compile problem with new env code.
42484
42485     Signed-off-by: Wolfgang Denk <wd@denx.de>
42486
42487 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
42488 Author: Markus Klotzbücher <mk@denx.de>
42489 Date:   Tue Nov 27 10:23:20 2007 +0100
42490
42491     tools: fix fw_printenv tool to compile again
42492
42493     This patch updates the fw_printenv/fw_setenv userspace tool to include
42494     the correct MTD header in order to compile against current kernel
42495     headers. Backward compatibility is preserved by introducing an option
42496     MTD_VERSION which can be set to "old" for compilation using the old MTD
42497     headers. Along with this a number of warnings are fixed.
42498
42499     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42500
42501 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
42502 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42503 Date:   Tue Jan 8 15:40:09 2008 +0100
42504
42505     ppc4xx: assign PCI interrupts on seuqoia boards
42506
42507     Some operating systems rely on assigned PCI interrupts.
42508
42509     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42510
42511 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
42512 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42513 Date:   Tue Jan 8 15:50:49 2008 +0100
42514
42515     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
42516
42517     This patch allows the use of 4xx interrupt vector number defines
42518     in board specific code outside cpu/ppc4xx.
42519
42520     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42521
42522 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
42523 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42524 Date:   Tue Jan 8 15:39:01 2008 +0100
42525
42526     ppc4xx: Fix UIC2 vector number base
42527
42528     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42529
42530 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
42531 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42532 Date:   Tue Jan 8 12:49:58 2008 +0100
42533
42534     ppc4xx: Update PLB/PCI divider for PMC440 board
42535
42536     This patch updates the PLB/PCI divider when running at
42537     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
42538
42539     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42540
42541 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
42542 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42543 Date:   Tue Jan 8 11:13:09 2008 +0100
42544
42545     ppc4xx: Disable error message when no NAND chip is installed on PMC440
42546
42547     Add CFG_NAND_QUIET_TEST option to disable error message when
42548     no NAND chip is installed on PMC440 boards.
42549
42550     Disable a couple of config defines that are only used for NAND_U_BOOT.
42551
42552     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42553
42554 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
42555 Author: Wolfgang Denk <wd@denx.de>
42556 Date:   Tue Jan 8 22:58:27 2008 +0100
42557
42558     Fix compile problem with new env code.
42559
42560     Signed-off-by: Wolfgang Denk <wd@denx.de>
42561
42562 commit 6de66b35426312a21174a9bf0576a094e2904bea
42563 Author: Markus Klotzbücher <mk@denx.de>
42564 Date:   Tue Nov 27 10:23:20 2007 +0100
42565
42566     tools: fix fw_printenv tool to compile again
42567
42568     This patch updates the fw_printenv/fw_setenv userspace tool to include
42569     the correct MTD header in order to compile against current kernel
42570     headers. Backward compatibility is preserved by introducing an option
42571     MTD_VERSION which can be set to "old" for compilation using the old MTD
42572     headers. Along with this a number of warnings are fixed.
42573
42574     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42575
42576 commit ad3006fe7e84667021753b74247b0bafd97ba35f
42577 Author: Gerald Van Baren <vanbaren@cideas.com>
42578 Date:   Mon Jan 7 23:47:32 2008 -0500
42579
42580     LIBFDT: use memmove() instead of memcpy()
42581
42582     This is partial patch from the DTC/libfdt
42583     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
42584     Author: David Gibson <david@gibson.dropbear.id.au>
42585     Date:   Wed Nov 21 11:56:14 2007 +1100
42586
42587         The patch also fixes one genuine bug caught by valgrind -
42588         _packblocks() in fdt_rw.c was using memcpy() where it should have been
42589         using memmove().
42590
42591     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42592
42593 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
42594 Author: David Gibson <david@gibson.dropbear.id.au>
42595 Date:   Mon Dec 17 14:42:07 2007 +1100
42596
42597     libfdt: Add more documentation (patch the seventh)
42598
42599     This patch adds more documenting comments to libfdt.h.  Specifically,
42600     these document the read/write functions (not including fdt_open_into()
42601     and fdt_pack(), for now).
42602
42603     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42604
42605 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
42606 Author: David Gibson <david@gibson.dropbear.id.au>
42607 Date:   Mon Dec 17 14:41:52 2007 +1100
42608
42609     libfdt: Add more documentation (patch the sixth)
42610
42611     This patch adds some more documenting comments to libfdt.h.
42612     Specifically this documents all the write-in-place functions.
42613
42614     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
42615
42616 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
42617 Author: Gerald Van Baren <vanbaren@cideas.com>
42618 Date:   Sat Dec 29 22:45:27 2007 -0500
42619
42620     Fine grained per property /chosen updating.
42621
42622     Implement a suggestion by Scott Wood to make the /chosen handling fine
42623     grained.  Don't overwrite pre-existing properties on a per-property basis,
42624     so if /chosen exists but a necessary /chosen/property doesn't, it gets
42625     created.  If a /chosen property exists, it is NOT overwritten unless the
42626     "force" flag is true.
42627
42628     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42629
42630 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
42631 Author: Gerald Van Baren <vanbaren@cideas.com>
42632 Date:   Sat Jan 5 15:33:29 2008 -0500
42633
42634     Improve the FDT help message.
42635
42636     Add a note that "fdt copy" makes the new address active.
42637     Remove most of the extra hints at the end of the fdt help.
42638
42639     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42640
42641 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
42642 Author: Gerald Van Baren <vanbaren@cideas.com>
42643 Date:   Sat Jan 5 14:52:04 2008 -0500
42644
42645     Support setting FDT properties with optional values.
42646
42647     Fix a bug found and documented by Bartlomiej Sieka where the optional
42648     value on "fdt set <path> <prop> [<val>]" wasn't optional.
42649
42650     => fdt mknode / testnode
42651     => fdt print /testnode
42652     testnode {
42653     };
42654     => fdt set /testnode testprop
42655     => fdt print /testnode
42656     testnode {
42657             testprop;
42658     };
42659
42660     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
42661
42662 commit 22fb2246df91bfc840d87f0c5910818bad55577a
42663 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42664 Date:   Fri Dec 28 11:56:30 2007 +0100
42665
42666     Add fdt_find_and_setprop() to fdt_support.h
42667
42668     fdt_find_and_setprop() is used by several 4xx boards and it's
42669     missing in the appropriate header. This patch eliminates a
42670     warning when building U-Boot for such boards.
42671
42672     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42673     Acked-by: Stefan Roese <sr@denx.de>
42674
42675 commit 802b769bac17b0560d3535a42c502469ee190cd1
42676 Author: Stefan Roese <sr@denx.de>
42677 Date:   Tue Jan 8 18:39:30 2008 +0100
42678
42679     ppc4xx: Return 0 on success in 4xx ethernet driver
42680
42681     Signed-off-by: Stefan Roese <sr@denx.de>
42682
42683 commit 6775c68683a53c7abc778774641aac6f833a2cbf
42684 Author: Kim Phillips <kim.phillips@freescale.com>
42685 Date:   Tue Jan 8 09:59:49 2008 -0600
42686
42687     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
42688
42689     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42690
42691 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
42692 Author: Kim Phillips <kim.phillips@freescale.com>
42693 Date:   Thu Dec 20 16:28:34 2007 -0600
42694
42695     mpc83xx: rm remaining FLAT_TREE code
42696
42697     ..in board pci.c files
42698
42699     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42700
42701 commit b3458d2cd55d01732e30a76d898afd99e871cd67
42702 Author: Kim Phillips <kim.phillips@freescale.com>
42703 Date:   Thu Dec 20 15:57:28 2007 -0600
42704
42705     mpc83xx: remove FLAT_TREE code
42706
42707     need to rm it from pci code, too!
42708
42709     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42710
42711 commit 5b8bc606c61456566af6912f818a153b6b06f242
42712 Author: Kim Phillips <kim.phillips@freescale.com>
42713 Date:   Thu Dec 20 14:09:22 2007 -0600
42714
42715     mpc83xx: convert to using do_fixup_*()
42716
42717     convert to using simpler mpc85xx style fdt update code; streamline by
42718     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
42719     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
42720     converted over to using libfdt).
42721
42722     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42723
42724 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
42725 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42726 Date:   Thu Dec 20 12:58:51 2007 -0500
42727
42728     sbc8349: enable libfdt by default on WRS SBC8349 board.
42729
42730     Make libfdt the default for the WRS SBC8349 board.
42731     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
42732     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
42733
42734     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
42735
42736 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
42737 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42738 Date:   Thu Dec 20 12:58:16 2007 -0500
42739
42740     sbc8349: migrate board to libfdt
42741
42742     This adds libfdt support code for the Wind River sbc8349 board.
42743
42744     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
42745     the other Freescale 83xx boards.
42746
42747     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
42748
42749 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
42750 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42751 Date:   Thu Dec 20 12:56:19 2007 -0500
42752
42753     sbc8349: Remove board specific ECC code
42754
42755     ECC code is now shared for all 83xx boards, so remove board specific one.
42756     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
42757
42758     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
42759
42760 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
42761 Author: Kim Phillips <kim.phillips@freescale.com>
42762 Date:   Thu Dec 20 01:30:48 2007 -0600
42763
42764     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
42765
42766     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
42767
42768     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42769
42770 commit ccf21c311e68d48399eff1e72936052885f6e3f7
42771 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42772 Date:   Thu Dec 6 16:43:40 2007 +0100
42773
42774     Add support CONFIG_UEC_ETH3 in MPC83xx
42775
42776     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42777
42778 commit e6af9932d31171e35db880e7b2f29f903b1b7660
42779 Author: Kumar Gala <galak@kernel.crashing.org>
42780 Date:   Mon Nov 26 11:00:54 2007 -0600
42781
42782     Remove CONFIG options related to OF that we dont use
42783
42784     The MPC8360E MDS config defined:
42785         CONFIG_OF_HAS_BD_T
42786         CONFIG_OF_HAS_UBOOT_ENV
42787
42788     Which we don't use or ever needed.  This seems like copy-paste feature creep.
42789
42790     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42791
42792 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
42793 Author: Kim Phillips <kim.phillips@freescale.com>
42794 Date:   Mon Dec 10 14:16:22 2007 -0600
42795
42796     mpc83xx: supress compiler warning
42797
42798     mpc8360emds.c: In function â€˜ft_board_setup’:
42799     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
42800     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
42801
42802     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42803
42804 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
42805 Author: Kim Phillips <kim.phillips@freescale.com>
42806 Date:   Tue Nov 27 14:17:29 2007 -0600
42807
42808     mpc83xx: fix remaining fdt_find_node_by_path references
42809
42810     rename to fdt_path_offset
42811
42812     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42813
42814 commit 921d4b19ad1be704df58725485d9292dc0414adf
42815 Author: Kim Phillips <kim.phillips@freescale.com>
42816 Date:   Mon Nov 19 12:30:09 2007 -0600
42817
42818     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
42819
42820     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
42821     This change guarantees that the environment will be located on the
42822     first flash sector after the U-Boot image.
42823
42824     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42825
42826 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
42827 Author: Kim Phillips <kim.phillips@freescale.com>
42828 Date:   Fri Nov 9 14:28:08 2007 -0600
42829
42830     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
42831
42832     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
42833     properties in the device tree so the PHY gets configured for internal delay on
42834     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
42835
42836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42837
42838 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
42839 Author: Dave Liu <r63238@freescale.com>
42840 Date:   Tue Sep 18 12:41:15 2007 +0800
42841
42842     mpc83xx: update the CREDITS and MAINTAINERS
42843
42844     update the CREDITS and MAINTAINERS.
42845
42846     Signed-off-by: Dave Liu <daveliu@freescale.com>
42847
42848 commit b21add4b42af7b767448251b599b91066a160e0d
42849 Author: Dave Liu <r63238@freescale.com>
42850 Date:   Tue Sep 18 12:40:21 2007 +0800
42851
42852     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
42853
42854     Add the MAINTAINER and MAKEALL entries for mpc837xemds
42855
42856     Signed-off-by: Dave Liu <daveliu@freescale.com>
42857
42858 commit f8900ce9094c462355eb792eea264ff16ac8fd16
42859 Author: Dave Liu <r63238@freescale.com>
42860 Date:   Tue Sep 18 12:38:53 2007 +0800
42861
42862     mpc83xx: Add the MPC837xEMDS board readme
42863
42864     Add the README.mpc837xemds to /doc
42865
42866     Signed-off-by: Dave Liu <daveliu@freescale.com>
42867
42868 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
42869 Author: Dave Liu <r63238@freescale.com>
42870 Date:   Tue Sep 18 12:37:57 2007 +0800
42871
42872     mpc83xx: Add the support of MPC837xEMDS board
42873
42874     The MPC837xEMDS board support:
42875     * DDR2 400MHz hardcoded and SPD init
42876     * Local bus NOR Flash
42877     * I2C, UART, MII and RTC
42878     * eTSEC RGMII
42879     * PCI host
42880
42881     Signed-off-by: Dave Liu <daveliu@freescale.com>
42882
42883 commit 555da61702771fe0f76f3de23b4e7590f3704161
42884 Author: Dave Liu <r63238@freescale.com>
42885 Date:   Tue Sep 18 12:36:58 2007 +0800
42886
42887     mpc83xx: Add the support of MPC8315E SoC
42888
42889     The MPC8315E SoC including e300c3 core and new IP blocks,
42890     such as TDM, PCI Express and SATA controller.
42891
42892     Signed-off-by: Dave Liu <daveliu@freescale.com>
42893
42894 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
42895 Author: Dave Liu <r63238@freescale.com>
42896 Date:   Tue Sep 18 12:36:11 2007 +0800
42897
42898     mpc83xx: Add the support of MPC837x SoC
42899
42900     The MPC837x SoC including e300c4 core and new IP blocks,
42901     such as SDHC, PCI Express and SATA controller.
42902
42903     Signed-off-by: Dave Liu <daveliu@freescale.com>
42904
42905 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
42906 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42907 Date:   Wed Nov 14 18:54:53 2007 +0300
42908
42909     MPC8360E-MDS: configure and enable second UART
42910
42911     Despite user manual, BCSR9.7 is negated (high) on HRST, so
42912     UART2 is disabled. Fix that and configure QE pins properly.
42913
42914     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42915
42916 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
42917 Author: Timur Tabi <timur@freescale.com>
42918 Date:   Mon Nov 5 09:34:06 2007 -0600
42919
42920     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
42921
42922     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
42923     currently-defined 83xx boards.  This change guarantees that the environment
42924     will be located on the first flash sector after the U-Boot image.
42925
42926     Signed-off-by: Timur Tabi <timur@freescale.com>
42927     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42928
42929 commit e05329516a13616b53240cd85b739217c2bf87f1
42930 Author: Larry Johnson <lrj@acm.org>
42931 Date:   Fri Jan 4 13:27:02 2008 -0500
42932
42933     ppc4xx: Remove weak binding from common Denali data-eye search code
42934
42935     Now that there are no board-specific versions of
42936     "denali_core_search_data_eye()", the weak binding on the common version
42937     can be removed.
42938
42939     Signed-off-by: Larry Johnson <lrj@acm.org>
42940
42941 commit 5ba576c01602fd328800a427964c36a0a05c5dce
42942 Author: Stefan Roese <sr@denx.de>
42943 Date:   Sat Jan 5 09:13:46 2008 +0100
42944
42945     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
42946
42947     Signed-off-by: Stefan Roese <sr@denx.de>
42948
42949 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
42950 Author: Stefan Roese <sr@denx.de>
42951 Date:   Sat Jan 5 09:12:41 2008 +0100
42952
42953     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
42954
42955     On Katmai the complete auto-calibration somehow doesn't seem to
42956     produce the best results, meaning optimal values for RQFD/RFFD.
42957     This was discovered by GDA using a high bandwidth scope,
42958     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
42959     so now on Katmai "only" RFFD is auto-calibrated.
42960
42961     This patch also adds RDCC calibration as mentioned on page 7 of
42962     the AMCC PowerPC440SP/SPe DDR2 application note:
42963     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
42964
42965     Signed-off-by: Stefan Roese <sr@denx.de>
42966
42967 commit 49db47b8ae6afff2b898be312948ff501357dc80
42968 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42969 Date:   Wed Jan 2 16:48:42 2008 +0100
42970
42971     ppc4xx: Remove sdram.h from PMC440 board
42972
42973     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42974
42975 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
42976 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42977 Date:   Wed Jan 2 16:48:34 2008 +0100
42978
42979     ppc4xx: use common denali core defines and data eye search code for PMC440
42980
42981     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42982
42983 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
42984 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42985 Date:   Wed Jan 2 12:05:14 2008 +0100
42986
42987     ppc4xx: More cleanup for esd's LCD code
42988
42989     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42990
42991 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
42992 Author: Stefan Roese <sr@denx.de>
42993 Date:   Fri Jan 4 12:00:01 2008 +0100
42994
42995     ppc4xx: Fix Sequoia NAND booting target
42996
42997     The Sequoia NAND booting target now uses the recently extracted
42998     cpu/ppc4xx/denali_data_eye.c file too.
42999
43000     Signed-off-by: Stefan Roese <sr@denx.de>
43001
43002 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
43003 Author: Lawrence R. Johnson <lrj@acm.org>
43004 Date:   Thu Jan 3 15:02:02 2008 -0500
43005
43006     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
43007
43008     Signed-off-by: Larry Johnson <lrj@acm.org>
43009
43010 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
43011 Author: Lawrence R. Johnson <lrj@acm.org>
43012 Date:   Fri Jan 4 02:11:56 2008 -0500
43013
43014     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
43015
43016     Note: this patch changes the configuration of some GPIO registers:
43017
43018        Register      Old Value   New Value
43019     ---------------  ----------  ----------
43020     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
43021     DCR GPIO0_TSRH   0x55005000  0x00000000
43022     DCR GPIO1_TCR    0xC2000000  0xE2000000
43023     DCR GPIO1_TSRL   0x0C000000  0x00200000
43024     DCR GPIO1_ISR2L  0x00050000  0x00110000
43025
43026     Signed-off-by: Larry Johnson <lrj@acm.org>
43027
43028 commit 5ab884b254ca2e707ab50545cd705f30108cf491
43029 Author: Lawrence R. Johnson <lrj@acm.org>
43030 Date:   Thu Jan 3 18:54:00 2008 -0500
43031
43032     ppc4xx: Add functionality to GPIO support
43033
43034     This patch makes two additions to GPIO support:
43035
43036     First, it adds function gpio_read_in_bit() to read the a bit from the
43037     GPIO Input Register (GPIOx_IR) in the same way that function
43038     gpio_read_out_bit() reads a bit from the GPIO Output Register
43039     (GPIOx_OR).
43040
43041     Second, it modifies function gpio_set_chip_configuration() to provide
43042     an additional option for configuring the GPIO from the
43043     "CFG_4xx_GPIO_TABLE".
43044
43045     According to the 440EPx User's Manual, when an alternate output is used,
43046     the three-state control is configured in one of two ways, depending on
43047     the particular output.  The first option is to select the corresponding
43048     alternate three-state control in the GPIOx_TRSH/L registers.  The second
43049     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
43050     the GPIOx_TRSH/L registers, and set the corresponding bit in the
43051     GPIOx_TCR register to enable the output.  For example, the Manual
43052     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
43053     the alternate three-state control (first option), and specifies
43054     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
43055     enabled in the GPIOx_TCR register (second option).
43056
43057     Currently, gpio_set_chip_configuration() configures all alternate signal
43058     outputs to use the first option.  This patch allow the second option to
43059     be selected by setting the "out_val" element in the table entry to
43060     "GPIO_OUT_1".  The first option is used when the "out_val" element is
43061     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
43062     alternate signal is selected, and because all current GPIO tables set
43063     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
43064     not change any existing configurations.
43065
43066     Signed-off-by: Larry Johnson <lrj@acm.org>
43067
43068 commit 196404cdc1de495d6182e84731c200fc5748df15
43069 Author: Larry Johnson <lrj@arlinx.com>
43070 Date:   Sun Dec 30 01:01:54 2007 -0500
43071
43072     PPC4xx: Remove sdram.h from board/lwmon5
43073
43074     These definitions are now in "include/ppc440.h".
43075
43076     Signed-off-by: Larry Johnson <lrj@acm.org>
43077
43078 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
43079 Author: Larry Johnson <lrj@arlinx.com>
43080 Date:   Sun Dec 30 01:01:32 2007 -0500
43081
43082     PPC4xx: Use common code for LWMON5 board SDRAM support
43083
43084     This patch also modifies the functionality of the code so that the data-eye
43085     search is now done with with the cache disabled.
43086
43087     Signed-off-by: Larry Johnson <lrj@acm.org>
43088
43089 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
43090 Author: Larry Johnson <lrj@arlinx.com>
43091 Date:   Sun Dec 30 01:01:14 2007 -0500
43092
43093     PPC4xx: Remove sdram.h from board/amcc/sequoia
43094
43095     These definitions are now in "include/ppc440.h".
43096
43097     Signed-off-by: Larry Johnson <lrj@acm.org>
43098
43099 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
43100 Author: Larry Johnson <lrj@arlinx.com>
43101 Date:   Sun Dec 30 01:00:50 2007 -0500
43102
43103     PPC4xx: Use common code for Sequoia board SDRAM support
43104
43105     Signed-off-by: Larry Johnson <lrj@acm.org>
43106
43107 commit 8b0c5c127690335758100c25eaec2b84db97c101
43108 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43109 Date:   Thu Dec 27 16:58:41 2007 +0100
43110
43111     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
43112
43113     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
43114     networking stack does not automatically switch to
43115     another interface. This patch does not touch the default
43116     behavior.
43117
43118     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43119     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43120
43121 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
43122 Author: Upakul Barkakaty <upakul@gmail.com>
43123 Date:   Thu Nov 29 12:16:13 2007 +0530
43124
43125     NET: Proper return code handling in eth_init() function in file eth.c
43126
43127     This patch modifies the return code handling in the eth_init()
43128     function, to be compatible with the handling of the return codes in
43129     the other network stack files. It now returns a 0 on Success and -1 on
43130     error.
43131
43132     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
43133     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43134
43135 commit 5ca2d0953e4579a80810966cca2077e20d912c97
43136 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
43137 Date:   Mon Nov 19 20:27:04 2007 +0900
43138
43139     net/eth.c: Fix env_enetaddr signed overflow
43140
43141     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
43142     warned as below:
43143
43144       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
43145
43146       DRAM:  256 MB
43147       Flash: 32 MB
43148       In:    serial
43149       Out:   serial
43150       Err:   serial
43151       Net:   NEC-Candy
43152       Warning: NEC-Candy MAC addresses don't match:
43153       Address in SROM is         00:00:4C:80:92:A2
43154       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
43155
43156     This patch changes env_enetaddr type from `char' to `unsigned char'.
43157
43158     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
43159     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
43160     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43161
43162 commit f85b60710571b37293d2233933b76e2aa3db5635
43163 Author: Rafal Jaworowski <raj@semihalf.com>
43164 Date:   Thu Dec 27 18:19:02 2007 +0100
43165
43166     Introduce new eth_receive routine
43167
43168     The purpose of this routine is receiving a single network frame, outside of
43169     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
43170     U-Boot will let them utilise networking facilities. For sending a raw frame
43171     the already existing eth_send() can be used.
43172
43173     The direct consumer of this routine is the newly introduced API layer for
43174     external applications (enabled with CONFIG_API).
43175
43176     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
43177     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
43178     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43179
43180 commit 5c740711f0ea5b51414b341b71597c4a0751be74
43181 Author: Jon Loeliger <jdl@freescale.com>
43182 Date:   Thu Jan 3 10:41:04 2008 -0600
43183
43184     8610: Move include of config.h earlier.
43185
43186     Include config.h earlier in the set of #includes
43187     so as to avoid a incidental and duplicate definition
43188     of CFG_CACHELINE_SIZE.
43189
43190     Signed-off-by: Jon Loeliger
43191
43192 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
43193 Author: Jon Loeliger <jdl@freescale.com>
43194 Date:   Tue Dec 4 10:53:34 2007 -0600
43195
43196     Don't slam #undef DEBUG in the 8641HPCN config file.
43197
43198     Doing so prevents it from being individually set
43199     and useful in other files.
43200
43201     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43202
43203 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
43204 Author: Jon Loeliger <jdl@freescale.com>
43205 Date:   Wed Nov 28 14:47:18 2007 -0600
43206
43207     Convert MPC8641HPCN to use libfdt.
43208
43209     Assumes the presence of the aliases node in the DTS to
43210     locate the ethernet, pci and serial nodes for fixups.
43211
43212     Use consistent fdtaddr and fdtfile in environment variables.
43213
43214     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43215
43216 commit ce37422d0002e10490e268392e0c4e3028e52cec
43217 Author: Stefan Roese <sr@denx.de>
43218 Date:   Wed Jan 2 14:06:26 2008 +0100
43219
43220     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
43221
43222     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
43223     flash chips connected to a 32bit wide port.
43224
43225     Signed-off-by: Stefan Roese <sr@denx.de>
43226
43227 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
43228 Author: Wolfgang Denk <wd@denx.de>
43229 Date:   Wed Jan 2 15:58:44 2008 +0100
43230
43231     Fix compile problem introduced by "cleanup" commit 3dfd708c
43232
43233     Signed-off-by: Wolfgang Denk <wd@denx.de>
43234
43235 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
43236 Author: Wolfgang Denk <wd@denx.de>
43237 Date:   Wed Jan 2 15:54:45 2008 +0100
43238
43239     Make scripts and Makefiles POSIX compliant
43240
43241     The bash builtin versions of the "test" (resp. "[") command allow
43242     using "==" for string comparisons, but POSIX compatible implemen-
43243     tations (like /usr/bin/test) insist on using "=" only. On such systems
43244     you will see:
43245
43246         $ /usr/bin/test a == a && echo OK
43247         /usr/bin/test: ==: binary operator expected
43248
43249     This patch fixes Makefiles and scripts to use POSIX style.
43250
43251     Signed-off-by: Wolfgang Denk <wd@denx.de>
43252
43253 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
43254 Author: Stefan Roese <sr@denx.de>
43255 Date:   Wed Jan 2 14:05:37 2008 +0100
43256
43257     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
43258
43259     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
43260     flash chips connected to a 32bit wide port.
43261
43262     Signed-off-by: Stefan Roese <sr@denx.de>
43263
43264 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
43265 Author: Wolfgang Denk <wd@denx.de>
43266 Date:   Wed Jan 2 12:38:43 2008 +0100
43267
43268     Minor coding style cleanup.
43269
43270     Signed-off-by: Wolfgang Denk <wd@denx.de>
43271
43272 commit e174ac34adf5d5653df12bc3cf19c52063a71269
43273 Author: Stefan Roese <sr@denx.de>
43274 Date:   Fri Dec 28 17:29:56 2007 +0100
43275
43276     ppc4xx: Coding style cleanup
43277
43278     Signed-off-by: Stefan Roese <sr@denx.de>
43279
43280 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
43281 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43282 Date:   Fri Dec 28 17:07:24 2007 +0100
43283
43284     ppc4xx: Complete PMC440 board support
43285
43286     This patch brings the PMC440 board configuration file.
43287     Finally it enables the PMC440 board support.
43288
43289     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43290
43291 commit 407843a582560fc5231299561ab3c2b6b6cd3397
43292 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43293 Date:   Fri Dec 28 17:07:18 2007 +0100
43294
43295     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
43296
43297     This patch adds some BSP commands and FPGA booting support
43298     for esd's PMC440 boards.
43299
43300     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43301
43302 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
43303 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43304 Date:   Fri Dec 28 17:07:14 2007 +0100
43305
43306     ppc4xx: Add initial esd PMC440 board files
43307
43308     This patch adds the first files for the new esd PMC440 boards.
43309     The next two patches will complete the PMC440 board support.
43310
43311     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43312
43313 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
43314 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43315 Date:   Fri Dec 28 17:10:36 2007 +0100
43316
43317     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
43318
43319     - add EEPROM write protection for esd PLU405 boards.
43320     - initialize NAND GPIOs
43321     - use correct io accessors
43322     - cleanup
43323
43324     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43325
43326 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
43327 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43328 Date:   Fri Dec 28 17:10:44 2007 +0100
43329
43330     ppc4xx: use correct io accessors for esd's LCD code
43331
43332     This patch fixes esd's LCD dectection code to work correctly with
43333     newer gcc versions.
43334
43335     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43336
43337 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
43338 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43339 Date:   Fri Dec 28 17:10:42 2007 +0100
43340
43341     ppc4xx: Maintenance patch for VOH405 boards
43342
43343     - add EEPROM write protection
43344     - initialize NAND GPIOs
43345     - use correct io accessors
43346     - slow down I2C clock to 100kHz
43347     - enable ext. I2C bus
43348     - cleanup
43349
43350     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43351
43352 commit c05569066dbcba3fdf36d4d1943df265dc316a86
43353 Author: Stefan Roese <sr@denx.de>
43354 Date:   Fri Dec 28 16:08:08 2007 +0100
43355
43356     ppc4xx: Enable 405EP PCI arbiter per default on all boards
43357
43358     In an attmemt to clean up the 4xx start.S file, I removed the enabling
43359     of the internal 405EP PCI arbiter. This is needed for multiple other
43360     405EP platforms, like most of the esd 405EP. Now the internal PCI
43361     arbiter is enabled again per default as it has been before.
43362
43363     Signed-off-by: Stefan Roese <sr@denx.de>
43364     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43365
43366 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
43367 Author: Stefan Roese <sr@denx.de>
43368 Date:   Fri Dec 28 15:53:46 2007 +0100
43369
43370     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
43371
43372     Signed-off-by: Stefan Roese <sr@denx.de>
43373     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43374
43375 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
43376 Author: Stefan Roese <sr@denx.de>
43377 Date:   Fri Dec 28 06:06:04 2007 +0100
43378
43379     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
43380
43381     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
43382     platforms mentioned above.
43383
43384     Signed-off-by: Stefan Roese <sr@denx.de>
43385
43386 commit b568fd25574181a3b12ae3d66b2913903442cb83
43387 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43388 Date:   Thu Dec 27 17:03:46 2007 +0100
43389
43390     Remove CPCI440 board
43391
43392     This board never left prototyping state and it
43393     became a millstone round my neck. So remove it.
43394
43395     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43396
43397 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
43398 Author: Larry Johnson <lrj@arlinx.com>
43399 Date:   Thu Dec 27 11:28:51 2007 -0500
43400
43401     Add support for Korat PPC440EPx board
43402
43403     These patches add support for the PPC440EPx-based "Korat" board to
43404     U-Boot.  They are based primarily on support for the Sequoia board.
43405
43406     Signed-off-by: Larry Johnson <lrj@acm.org>
43407
43408 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
43409 Author: Larry Johnson <lrj@arlinx.com>
43410 Date:   Sat Dec 22 15:16:25 2007 -0500
43411
43412     Add configuration file for Korat board
43413
43414     This patch supplies the configuration file for the Korat PPC440EPx-
43415     processor board.
43416
43417     Signed-off-by: Larry Johnson <lrj@acm.org>
43418
43419 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
43420 Author: Larry Johnson <lrj@arlinx.com>
43421 Date:   Sat Dec 22 15:16:11 2007 -0500
43422
43423     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
43424
43425     Signed-off-by: Larry Johnson <lrj@acm.org>
43426
43427 commit aba19604d848b2838cfb9ebe818909e6a216058e
43428 Author: Larry Johnson <lrj@arlinx.com>
43429 Date:   Thu Dec 27 10:54:48 2007 -0500
43430
43431     Add 440EPx DDR2 SPD DIMM support
43432
43433     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
43434     controller.  It should also work on the 440GRx.  It is based on the DDR2
43435     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
43436
43437     This code has been tested on prototype Korat boards with three Kingston
43438     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
43439     (two ranks).  The Korat board has a single DIMM socket, but support has
43440     been provided (though not tested) for boards with two DIMM sockets.
43441
43442     Signed-off-by: Larry Johnson <lrj@acm.org>
43443
43444 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
43445 Author: Larry Johnson <lrj@arlinx.com>
43446 Date:   Sat Dec 22 15:15:30 2007 -0500
43447
43448     Copy 440EPx/GRx SDRAM data-eye search to common directory
43449
43450     This patch creates a non-board-specific file for performing the SDRAM
43451     data-eye search.  It also adds ECC error checking to the test of valid
43452     data on readback when ECC is enabled.
43453
43454     Signed-off-by: Larry Johnson <lrj@acm.org>
43455
43456 commit c46f53333b22b1f9098676bea8884fc7db820cf3
43457 Author: Larry Johnson <lrj@arlinx.com>
43458 Date:   Sat Dec 22 15:15:13 2007 -0500
43459
43460     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
43461
43462     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
43463     It also fixes two typos in the definitions, so the board-specific
43464     "sdram.h" files containing these definitions are also fixed to avoid
43465     compiler warnings.
43466
43467     Signed-off-by: Larry Johnson <lrj@acm.org>
43468
43469 commit c348578bf612d0c56d8d376d23cae16defbd86af
43470 Author: Larry Johnson <lrj@arlinx.com>
43471 Date:   Thu Dec 27 10:50:55 2007 -0500
43472
43473     Add Ethernet 1000BASE-X support for PPC4xx
43474
43475     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
43476     is defined, the PHY will advertise it's capabilities for autonegotiation
43477     based on the capabilities shown in the PHY's status registers, including
43478     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
43479     advertise hard-coded capabilities, as before.
43480
43481     Signed-off-by: Larry Johnson <lrj@acm.org>
43482
43483 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
43484 Author: Larry Johnson <lrj@arlinx.com>
43485 Date:   Thu Dec 27 09:52:17 2007 -0500
43486
43487     Add driver for National Semiconductor LM73 temperature sensor
43488
43489     This driver is based on the driver for the LM75.
43490
43491     Signed-off-by: Larry Johnson <lrj@acm.org>
43492
43493 commit 12618278688ea9b3d76536960a5ad2e3790fac40
43494 Author: Larry Johnson <lrj@arlinx.com>
43495 Date:   Sat Dec 22 15:14:00 2007 -0500
43496
43497     Add driver for STMicroelectronics M41T60 RTC
43498
43499     This driver is based on the driver for the M41T11.  In the intended
43500     application, the RTC will be powered by a large capacitor, rather than a
43501     battery.  The driver therefore checks to see whether the RTC has lost
43502     power.  The chip's OUT bit is normally reset from its power-up state.  If
43503     the OUT bit is read as set, or if the date and time are not valid, then the
43504     RTC is assumed to have lost power, and its date and time are reset to
43505     1900-01-01 00:00:00.
43506
43507     Support for adjusting the speed of the clock to improve accuracy is
43508     provided through an environment variable.
43509
43510     Signed-off-by: Larry Johnson <lrj@acm.org>
43511
43512 commit d3471173e14b7544bb60339eda8d3d3906694b0a
43513 Author: Larry Johnson <lrj@arlinx.com>
43514 Date:   Sat Dec 22 15:34:39 2007 -0500
43515
43516     Use out_be32() and friends to access memory-mapped registers in sequoia.c
43517
43518     Signed-off-by: Larry Johnson <lrj@acm.org>
43519
43520 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
43521 Author: Larry Johnson <lrj@arlinx.com>
43522 Date:   Sat Dec 22 15:34:20 2007 -0500
43523
43524     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
43525
43526     Signed-off-by: Larry Johnson <lrj@acm.org>
43527
43528 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
43529 Author: Larry Johnson <lrj@arlinx.com>
43530 Date:   Sat Dec 22 15:23:50 2007 -0500
43531
43532     Cosmetic changes to ECC POST for AMCC Denali core
43533
43534     Signed-off-by: Larry Johnson <lrj@acm.org>
43535
43536 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
43537 Author: Stefan Roese <sr@denx.de>
43538 Date:   Wed Dec 26 20:20:19 2007 +0100
43539
43540     ppc4xx: Fix compilation problem in 405 cache POST test
43541
43542     Signed-off-by: Stefan Roese <sr@denx.de>
43543
43544 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
43545 Author: Stefan Roese <sr@denx.de>
43546 Date:   Sat Dec 22 12:20:09 2007 +0100
43547
43548     ppc4xx: Move virtual address of POST cache test to bigger address
43549
43550     On Sequoia & LWMON5 the virtual address of the POST cache test is now
43551     moved to a bigger address. This enables usage of more memory on those
43552     boards.
43553
43554     Signed-off-by: Stefan Roese <sr@denx.de>
43555
43556 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
43557 Author: Stefan Roese <sr@denx.de>
43558 Date:   Sat Dec 22 12:18:26 2007 +0100
43559
43560     ppc4xx: Fix problem in 44x cache POST routine
43561
43562     As repoted by Larry Johnson, running "diag run cache" caused a crash
43563     in U-Boot. This problem was introduced by a patch that removed the
43564     TLB entry for the cache test after the test has completed. Since this
43565     TLB was only setup once, a 2nd attempt to run this cache test
43566     failed with a crash. Now this TLB entry is created every time the
43567     routine is called.
43568
43569     Signed-off-by: Stefan Roese <sr@denx.de>
43570
43571 commit b0265b576bb8fa9465f99e99c323768b562fadc2
43572 Author: Stefan Roese <sr@denx.de>
43573 Date:   Fri Dec 21 07:51:29 2007 +0100
43574
43575     ppc4xx: Update Makalu fdt support
43576
43577     Signed-off-by: Stefan Roese <sr@denx.de>
43578
43579 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
43580 Author: Stefan Roese <sr@denx.de>
43581 Date:   Wed Dec 19 09:05:40 2007 +0100
43582
43583     ppc4xx: Add fdt support to AMCC Katmai eval board
43584
43585     Signed-off-by: Stefan Roese <sr@denx.de>
43586
43587 commit 328a340392a5df9aaf00792be989df73e750859e
43588 Author: Stefan Roese <sr@denx.de>
43589 Date:   Tue Dec 18 08:44:51 2007 +0100
43590
43591     ppc4xx: fdt: Cleanup setup of cpu node setup
43592
43593     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
43594     without using the absolute path to the cpu node. This makes it possible
43595     to use this U-Boot version with both versions of cpu-node naming
43596     "cpu@0" and the former "PowerPC,440EPx@0".
43597
43598     Signed-off-by: Stefan Roese <sr@denx.de>
43599
43600 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
43601 Author: Stefan Roese <sr@denx.de>
43602 Date:   Mon Dec 17 17:26:21 2007 +0100
43603
43604     ppc4xx: Fix lwmon5 compilation problem
43605
43606     Now that the 440EPx ECC test is not board specific anymore
43607     remove this Makefile.
43608
43609     Signed-off-by: Stefan Roese <sr@denx.de>
43610
43611 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
43612 Author: Anatolij Gustschin <agustschin@t-online.de>
43613 Date:   Wed Dec 5 17:43:20 2007 +0100
43614
43615     Fix ppc4xx clear_bss() code
43616
43617     ppc4xx clear_bss() fails if BSS segment size is not
43618     divisible by 4 without remainder. This patch provides
43619     fix for this problem.
43620
43621     Signed-off-by: Anatolij Gustschin <agust@denx.de>
43622
43623 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
43624 Author: Niklaus Giger <niklausgiger@gmx.ch>
43625 Date:   Fri Nov 30 18:35:11 2007 +0100
43626
43627     PPC4xx: Minimal changes to add vxWorks support
43628
43629     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
43630
43631 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
43632 Author: Markus Klotzbücher <mk@denx.de>
43633 Date:   Fri Nov 23 13:09:18 2007 +0100
43634
43635     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
43636
43637     When using dhcp/bootp the "netmask" environment variable is not
43638     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
43639     desireable, so the following patch adds this this option to the board
43640     config.
43641
43642     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
43643     Signed-off-by: Stefan Roese <sr@denx.de>
43644
43645 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
43646 Author: Larry Johnson <lrj@arlinx.com>
43647 Date:   Sat Oct 27 12:48:15 2007 -0400
43648
43649     Fix/enhance ECC POST for 440EPx/GRx
43650
43651     This patch allows the ECC POST to be used for different boards with the
43652     PPC440 Denali SDRAM controller.  Modifications include skipping the test
43653     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
43654     to prevent timing errors.
43655
43656     Signed-off-by: Larry Johnson <lrj@acm.org>
43657
43658 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
43659 Author: Larry Johnson <lrj@arlinx.com>
43660 Date:   Sat Oct 27 12:48:05 2007 -0400
43661
43662     PPC4xx: Move/rename ECC POST for 440EPx/GRx
43663
43664     Signed-off-by: Larry Johnson <lrj@acm.org>
43665
43666 commit c29d2d3680046d430022c55e50fcb27f5866517e
43667 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43668 Date:   Fri Dec 14 11:20:33 2007 +0100
43669
43670     ppc4xx: use correct io accessors for 4xx ethernet POST
43671
43672     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43673
43674 commit ba79fde58a48c0a6ff8e2a96caba951594142203
43675 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43676 Date:   Fri Dec 14 11:19:56 2007 +0100
43677
43678     ppc4xx: fix flush + invalidate_dcache_range arguments
43679
43680     flush + invalidate_dcache_range() expect the start and stop+1 address.
43681     So the stop address is the first address behind (!) the range.
43682
43683     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43684
43685 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
43686 Author: Stefan Roese <sr@denx.de>
43687 Date:   Fri Dec 14 08:41:29 2007 +0100
43688
43689     ppc4xx: fdt: use fdt_fixup_ethernet()
43690
43691     By using aliases in the dts file, the ethernet node fixup is
43692     much easier with the recently added functions.
43693
43694     Please note that the dts file needs the aliases for this to work.
43695
43696     Signed-off-by: Stefan Roese <sr@denx.de>
43697
43698 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
43699 Author: Stefan Roese <sr@denx.de>
43700 Date:   Thu Dec 13 14:52:53 2007 +0100
43701
43702     ppc4xx: Bring 4xx fdt support up-to-date
43703
43704     This patch update the 4xx fdt support. It enabled fdt booting
43705     on the AMCC Kilauea and Sequoia for now. More can follow later
43706     quite easily.
43707
43708     Signed-off-by: Stefan Roese <sr@denx.de>
43709
43710 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
43711 Author: Stefan Roese <sr@denx.de>
43712 Date:   Thu Dec 27 07:50:54 2007 +0100
43713
43714     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
43715
43716     The check for an sufficiently erased destination was missing in the
43717     buffered write function of the cfi flash driver (when
43718     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
43719     writing to such a region will fail with the currect error message.
43720
43721     Signed-off-by: Stefan Roese <sr@denx.de>
43722
43723 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
43724 Author: Martin Krause <martin.krause@tqs.de>
43725 Date:   Mon Nov 12 10:56:17 2007 +0100
43726
43727     Some configuration updates for the TQM5200 based TB5200 board:
43728
43729     - enable command line history
43730     - increase malloc space (because of bigger flash sectors)
43731
43732     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43733
43734 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
43735 Author: Martin Krause <martin.krause@tqs.de>
43736 Date:   Thu Sep 27 11:10:08 2007 +0200
43737
43738     TQM8xx: use the CFI flash driver on all TQM8xx boards
43739
43740     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43741
43742 commit 11d9eec479b470eab9242ab937fca70a876d9376
43743 Author: Martin Krause <martin.krause@tqs.de>
43744 Date:   Wed Sep 26 17:55:56 2007 +0200
43745
43746     TQM885D: adjust for doubled flash sector size + some minor fixes
43747
43748     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43749
43750 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
43751 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
43752 Date:   Wed Sep 26 17:55:54 2007 +0200
43753
43754     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
43755
43756     CAS-Latency=2, Write Recovery Time tWR=2
43757     The max. supported bus frequency is 66 MHz. Therefore, changed
43758     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
43759
43760     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43761
43762 commit b988b8cd443989be65161888eea0127ad03f846f
43763 Author: Martin Krause <martin.krause@tqs.de>
43764 Date:   Wed Sep 26 17:55:56 2007 +0200
43765
43766     TQM885D: use calculated cpuclk instead of measuring it
43767
43768     On the TQM885D the measurement of cpuclk with the PIT reference
43769     timer ist not necessary. Since all module variants use the same
43770     external 10 MHz oscillator, the cpuclk only depends on the PLL
43771     configuration - which is readable by software.
43772
43773     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43774
43775 commit 492c7049869348d31168de8dad89651315e468e0
43776 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
43777 Date:   Thu Sep 27 14:54:46 2007 +0200
43778
43779     TQM885D: fix SDRAM refresh
43780
43781     At 133 MHz the current SDRAM refresh rate is too fast
43782     (measured 4 * 1.17 us).
43783     CFG_MAMR_PTA changes from 39 to 128. This result
43784     in a refresh rate of 4 * 7.8 us at the default clock
43785     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
43786     This is a compromise until a new method is found to
43787     adjust the refresh rate.
43788
43789     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43790
43791 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
43792 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
43793 Date:   Thu Sep 27 14:54:46 2007 +0200
43794
43795     TQM860M: Support for 10col SDRAMs, max. 128 MiB
43796
43797     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43798
43799 commit 61fb15c516fef5631e305f1976d7b3a679725856
43800 Author: Wolfgang Denk <wd@denx.de>
43801 Date:   Thu Dec 27 01:52:50 2007 +0100
43802
43803     Fix coding style issues; update CHANGELOG.
43804
43805     Signed-off-by: Wolfgang Denk <wd@denx.de>
43806
43807 commit 467bcee11fe26ad422f2de971aa70866079870f2
43808 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43809 Date:   Fri Dec 14 15:36:18 2007 +0100
43810
43811     cfi_flash: Add manufacturer-specific fixups
43812
43813     Run fixups based on the JEDEC manufacturer ID independent of the
43814     command set ID.
43815
43816     This changes current behaviour: Previously, geometry reversal for AMD
43817     chips were done based on the command set ID, while they are now done
43818     based on the JEDEC manufacturer and device ID.
43819
43820     Also add fixup for top-boot Atmel chips. A fixup is needed for
43821     AT49BV6416(T) too, but since u-boot currently only reads the low byte
43822     of the device ID, there's no way to tell it apart from AT49BV642D,
43823     which should not have this fixup. Since AT49BV642D support is
43824     necessary to get ATNGW100 board support into mainline, I've commented
43825     out the fixup for now.
43826
43827     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43828
43829 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
43830 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43831 Date:   Fri Dec 14 15:36:17 2007 +0100
43832
43833     cfi_flash: Add cmdset-specific init functions
43834
43835     Move things like reading JEDEC IDs and fixing up geometry reversal
43836     into separate functions. The geometry reversal fixup is now performed
43837     by altering the qry structure directly, which makes the sector init
43838     code slightly cleaner.
43839
43840     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43841
43842 commit e23741f4a6d8047520ef0d4971762749b3587d32
43843 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43844 Date:   Fri Dec 14 15:36:16 2007 +0100
43845
43846     cfi_flash: Read whole QRY structure in one go
43847
43848     Read out the whole CFI Standard Query structure after successful cfi
43849     identification. This allows subsequent code to access this information
43850     directly without having to go through flash_read_uchar() and friends.
43851
43852     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43853
43854 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
43855 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43856 Date:   Mon Dec 17 11:02:44 2007 +0100
43857
43858     AVR32: Fix logic inversion in disable_interrupts()
43859
43860     disable_interrupts() should return nonzero if interrupts were
43861     _enabled_ before, not disabled.
43862
43863     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43864
43865 commit acac475212cbedb17b321a363a1c878e2b47b37f
43866 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43867 Date:   Fri Dec 14 16:51:22 2007 +0100
43868
43869     AVR32: Enable interrupts at bootup
43870
43871     The timer code depends on the timer interrupt to keep track of the
43872     upper 32 bits of the cycle counter. This obviously doesn't work when
43873     interrupts are disabled the whole time.
43874
43875     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43876
43877 commit 9570bcd87f4db255514f43b6701746c412f8fef0
43878 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43879 Date:   Thu Nov 15 10:03:45 2007 +0100
43880
43881     AVR32: Fix wrong pin setup for USART3
43882
43883     As reported by Gerhard Berghofer:
43884
43885     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
43886     instead of PB18 and PB19.
43887
43888     which is obviously correct. There's currently no code that uses
43889     USART3, but custom boards may run into problems.
43890
43891     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43892
43893 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
43894 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43895 Date:   Thu Nov 1 12:44:20 2007 +0100
43896
43897     README: Remove ATSTK1000 daughterboard list
43898
43899     As noted by Kim Phillips, these lists tend to become out of date.
43900
43901     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43902
43903 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
43904 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43905 Date:   Tue Oct 30 14:56:36 2007 +0100
43906
43907     Add ATSTK100[234] to MAINTAINERS
43908
43909     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
43910     "mother". Also update the entry for ATSTK1000 to be not only about the
43911     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
43912
43913     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43914
43915 commit 64ff2357b1727213803591813dbc779c924bf772
43916 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43917 Date:   Mon Oct 29 13:02:54 2007 +0100
43918
43919     AVR32: Add support for the ATSTK1004 board
43920
43921     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
43922     which is a derivative of AT32AP7000.
43923
43924     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43925
43926 commit 667568db157f374b85abd7e03596ddd1f0b25681
43927 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43928 Date:   Mon Oct 29 13:02:54 2007 +0100
43929
43930     AVR32: Add support for the ATSTK1003 board
43931
43932     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
43933     which is a derivative of AT32AP7000.
43934
43935     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43936
43937 commit 5fee84a794a51ec830548cda485a770efb018b92
43938 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43939 Date:   Mon Oct 29 13:23:33 2007 +0100
43940
43941     AVR32: Make some AT32AP700x peripherals optional
43942
43943     Add a chip-features file providing definitions of the form
43944
43945     AT32AP700x_CHIP_HAS_<peripheral>
43946
43947     to indicate the availability of the given peripheral on the currently
43948     selected chip.
43949
43950     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43951
43952 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
43953 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43954 Date:   Mon Oct 29 13:09:56 2007 +0100
43955
43956     AVR32: Rename at32ap7000 -> at32ap700x
43957
43958     The SoC-specific code for all the AT32AP700x CPUs is practically
43959     identical; the only difference is that some chips have less features
43960     than others. By doing this rename, we can add support for the AP7000
43961     derivatives simply by making some features conditional.
43962
43963     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43964
43965 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
43966 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43967 Date:   Fri Jun 29 18:22:34 2007 +0200
43968
43969     atmel_mci: Show SR when block read fails
43970
43971     Show controller status as well as card status when an error occurs
43972     during block read.
43973
43974     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43975
43976 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
43977 Author: Stefan Roese <sr@denx.de>
43978 Date:   Thu Dec 13 14:52:53 2007 +0100
43979
43980     ppc4xx: Bring 4xx fdt support up-to-date
43981
43982     This patch update the 4xx fdt support. It enabled fdt booting
43983     on the AMCC Kilauea and Sequoia for now. More can follow later
43984     quite easily.
43985
43986     Signed-off-by: Stefan Roese <sr@denx.de>
43987
43988 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
43989 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43990 Date:   Thu Dec 13 12:56:34 2007 +0100
43991
43992     cfi_flash: Use map_physmem() and unmap_physmem()
43993
43994     Use map_physmem() and unmap_physmem() to convert from physical to
43995     virtual addresses. This gives the arch a chance to provide an uncached
43996     mapping for flash accesses.
43997
43998     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43999
44000 commit 4d7d6936eb29af7cca330937808312aa5f61454d
44001 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44002 Date:   Thu Dec 13 12:56:33 2007 +0100
44003
44004     Introduce map_physmem() and unmap_physmem()
44005
44006     map_physmem() returns a virtual address which can be used to access a
44007     given physical address without involving the cache. unmap_physmem()
44008     should be called when the virtual address returned by map_physmem() is
44009     no longer needed.
44010
44011     This patch adds a stub implementation which simply returns the
44012     physical address cast to a uchar * for all architectures except AVR32,
44013     which converts the physical address to an uncached virtual mapping.
44014     unmap_physmem() is a no-op on all architectures, but if any
44015     architecture needs to do such mappings through the TLB, this is the
44016     hook where those TLB entries can be invalidated.
44017
44018     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44019
44020 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
44021 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44022 Date:   Thu Dec 13 12:56:32 2007 +0100
44023
44024     cfi_flash: Introduce read and write accessors
44025
44026     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
44027     them to access the flash memory. This makes it clearer when the flash
44028     is actually being accessed; merely dereferencing a volatile pointer
44029     looks just like any other kind of access.
44030
44031     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44032
44033 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
44034 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44035 Date:   Thu Dec 13 12:56:31 2007 +0100
44036
44037     Implement __raw_{read,write}[bwl] on all architectures
44038
44039     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
44040     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
44041     from Linux.
44042
44043     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44044
44045 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
44046 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44047 Date:   Sat Oct 6 18:55:36 2007 +0200
44048
44049     cfi_flash: Reorder functions and eliminate extra prototypes
44050
44051     Reorder the functions in cfi_flash.c so that each function only uses
44052     functions that have been defined before it. This allows the static
44053     prototype declarations near the top to be eliminated and might allow
44054     gcc to do a better job inlining functions.
44055
44056     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44057
44058 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
44059 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44060 Date:   Thu Dec 13 12:56:29 2007 +0100
44061
44062     cfi_flash: Make some needlessly global functions static
44063
44064     Make functions not declared in any header file static.
44065
44066     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44067
44068 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
44069 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44070 Date:   Thu Dec 13 12:56:28 2007 +0100
44071
44072     cfi_flash: Break long lines
44073
44074     This patch tries to keep all lines in the cfi_flash driver below 80
44075     columns. There are a few lines left which don't fit this requirement
44076     because I couldn't find any trivial way to break them (i.e. it would
44077     take some restructuring, which I intend to do in a later patch.)
44078
44079     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44080
44081 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
44082 Author: Bartlomiej Sieka <tur@semihalf.com>
44083 Date:   Tue Dec 11 13:59:57 2007 +0100
44084
44085     CFI: synchronize command offsets with Linux CFI driver
44086
44087     Fixes non-working CFI Flash on the Inka4x0 board.
44088
44089     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44090
44091 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
44092 Author: Kumar Gala <galak@kernel.crashing.org>
44093 Date:   Fri Dec 7 12:17:34 2007 -0600
44094
44095     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
44096
44097     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
44098     (MPC8544DS, MPC8548CDS, MPC8568MDS).
44099
44100     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44101
44102 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
44103 Author: Kumar Gala <galak@kernel.crashing.org>
44104 Date:   Fri Dec 7 12:04:30 2007 -0600
44105
44106     Update Freescale MPC85xx ADS/CDS/MDS board config
44107
44108     * Enabled CONFIG_CMD_ELF
44109
44110     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44111
44112 commit d435793229ce29a42797c1edc39f5b34f987f91a
44113 Author: Kumar Gala <galak@kernel.crashing.org>
44114 Date:   Fri Dec 7 04:59:26 2007 -0600
44115
44116     Handle Asynchronous DDR clock on 85xx
44117
44118     The MPC8572 introduces the concept of an asynchronous DDR clock with
44119     regards to the platform clock.
44120
44121     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
44122     mode.
44123
44124     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44125
44126 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
44127 Author: Kumar Gala <galak@kernel.crashing.org>
44128 Date:   Thu Nov 29 10:34:28 2007 -0600
44129
44130     Update Freescale MPC85xx ADS/CDS/MDS board config
44131
44132     * Removed some misc environment setup
44133     * Enabled CONFIG_CMDLINE_EDITING
44134
44135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44136
44137 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
44138 Author: Kumar Gala <galak@kernel.crashing.org>
44139 Date:   Thu Nov 29 10:47:44 2007 -0600
44140
44141     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
44142
44143     Minor path corrections needed to ensure buildability.
44144
44145     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44146
44147 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
44148 Author: Kumar Gala <galak@kernel.crashing.org>
44149 Date:   Thu Nov 29 10:16:18 2007 -0600
44150
44151     Move the MPC8540 ADS board under board/freescale.
44152
44153     Minor path corrections needed to ensure buildability.
44154
44155     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44156
44157 commit 870ceac5b3a3486c109396e005af81ae762b5710
44158 Author: Kumar Gala <galak@kernel.crashing.org>
44159 Date:   Thu Nov 29 10:14:50 2007 -0600
44160
44161     Move the MPC8560 ADS board under board/freescale.
44162
44163     Minor path corrections needed to ensure buildability.
44164
44165     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44166
44167 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
44168 Author: Kumar Gala <galak@kernel.crashing.org>
44169 Date:   Thu Nov 29 10:13:47 2007 -0600
44170
44171     Move the MPC8568 MDS board under board/freescale.
44172
44173     Minor path corrections needed to ensure buildability.
44174
44175     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44176
44177 commit a853d56c59b33415304531443633808736acfc6e
44178 Author: Kumar Gala <galak@kernel.crashing.org>
44179 Date:   Thu Nov 29 02:18:59 2007 -0600
44180
44181     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
44182
44183     We already had defines for LAWAR_TRGT_IF_* that we should use
44184     rather than creating new ones.  Also, added some missing defines for
44185     PCIE targets.
44186
44187     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44188
44189 commit 04db400892da37b76a585e332a0c137954ad2015
44190 Author: Kumar Gala <galak@kernel.crashing.org>
44191 Date:   Thu Nov 29 02:10:09 2007 -0600
44192
44193     Stop using immap_t on 85xx
44194
44195     In the future the offsets to various blocks may not be in same location.
44196     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
44197     instead of getting it via &immap.
44198
44199     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44200
44201 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
44202 Author: Kumar Gala <galak@kernel.crashing.org>
44203 Date:   Thu Nov 29 01:23:09 2007 -0600
44204
44205     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
44206
44207     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44208
44209 commit c480861bf000156e6a3e932c258db59ff2212dd3
44210 Author: Kumar Gala <galak@kernel.crashing.org>
44211 Date:   Thu Nov 29 01:06:19 2007 -0600
44212
44213     Update MPC8568 MDS to use libfdt
44214
44215     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
44216     ethernet, pci, and serial for the various fixups that are done.
44217
44218     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44219
44220 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
44221 Author: Haiying Wang <Haiying.Wang@freescale.com>
44222 Date:   Wed Nov 14 15:52:06 2007 -0500
44223
44224     Add PCI Express support on MPC8568MDS
44225
44226     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
44227     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44228
44229 commit b90d25497625b90ffa3f2911a0895ca237556ff5
44230 Author: Kumar Gala <galak@kernel.crashing.org>
44231 Date:   Thu Nov 29 00:11:44 2007 -0600
44232
44233     Update MPC85xx CDS to use libfdt
44234
44235     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
44236     ethernet, pci, and serial for the various fixups that are done.
44237
44238     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44239
44240 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
44241 Author: Kumar Gala <galak@kernel.crashing.org>
44242 Date:   Wed Nov 28 22:54:27 2007 -0600
44243
44244     Update MPC8540 ADS to use libfdt
44245
44246     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
44247     ethernet, pci, and serial for the various fixups that are done.
44248
44249     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44250
44251 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
44252 Author: Kumar Gala <galak@kernel.crashing.org>
44253 Date:   Wed Nov 28 22:40:31 2007 -0600
44254
44255     Update MPC8560 ADS to use libfdt
44256
44257     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
44258     ethernet, pci, and serial for the various fixups that are done.
44259
44260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44261
44262 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
44263 Author: Kumar Gala <galak@kernel.crashing.org>
44264 Date:   Wed Nov 28 00:36:33 2007 -0600
44265
44266     Stop using immap_t for cpm offset on 85xx
44267
44268     In the future the offsets to various blocks may not be in same location.
44269     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
44270     instead of getting it via &immap->im_cpm.
44271
44272     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44273
44274 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
44275 Author: Kumar Gala <galak@kernel.crashing.org>
44276 Date:   Tue Nov 27 23:25:02 2007 -0600
44277
44278     Stop using immap_t for guts offset on 85xx
44279
44280     In the future the offsets to various blocks may not be in same location.
44281     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
44282     instead of getting it via &immap->im_gur.
44283
44284     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44285
44286 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
44287 Author: Kumar Gala <galak@kernel.crashing.org>
44288 Date:   Tue Nov 27 22:42:34 2007 -0600
44289
44290     Update MPC8544 DS config
44291
44292     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
44293     * Removed some misc environment setup
44294     * Moved to using fdtfile & fdtaddr as fdt env var names
44295     * Enabled CONFIG_CMDLINE_EDITING
44296
44297     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44298
44299 commit addce57e2e4c49e77ffb2020a84690713bb18b47
44300 Author: Kumar Gala <galak@kernel.crashing.org>
44301 Date:   Mon Nov 26 17:12:24 2007 -0600
44302
44303     Update MPC8544DS to use libfdt
44304
44305     Updated the MPC8544DS config to use libfdt and assume use of aliases for
44306     ethernet, pci, and serial for the various fixups that are done.
44307
44308     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44309
44310 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
44311 Author: Kumar Gala <galak@kernel.crashing.org>
44312 Date:   Thu Nov 29 00:15:30 2007 -0600
44313
44314     Add libfdt based ft_cpu_setup for mpc85xx
44315
44316     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44317
44318 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
44319 Author: Stefan Roese <sr@denx.de>
44320 Date:   Tue Dec 11 13:38:19 2007 +0100
44321
44322     ppc4xx: Correct GPIO offset in gpio_config()
44323
44324     Thanks to Gary Jennejohn for pointing this out.
44325
44326     Signed-off-by: Stefan Roese <sr@denx.de>
44327
44328 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
44329 Author: Stefan Roese <sr@denx.de>
44330 Date:   Tue Dec 11 11:46:01 2007 +0100
44331
44332     rtc: Fix merging problem
44333
44334     Signed-off-by: Stefan Roese <sr@denx.de>
44335
44336 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
44337 Author: Stefan Roese <sr@denx.de>
44338 Date:   Sat Dec 8 14:47:34 2007 +0100
44339
44340     ppc4xx: 405EX: Correctly enable USB pins
44341
44342     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
44343     function control) registers. This is done for the AMCC Kilauea and
44344     Makalu eval boards.
44345
44346     Signed-off-by: Stefan Roese <sr@denx.de>
44347
44348 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
44349 Author: Stefan Roese <sr@denx.de>
44350 Date:   Sat Dec 8 08:25:09 2007 +0100
44351
44352     CFI: Coding style cleanup
44353
44354     Signed-off-by: Stefan Roese <sr@denx.de>
44355
44356 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
44357 Author: Michael Schwingen <michael@schwingen.org>
44358 Date:   Fri Dec 7 23:35:02 2007 +0100
44359
44360     CFI: support JEDEC flash roms in CFI-flash framework
44361
44362     The following patch adds support for non-CFI flash ROMS, by hooking into the
44363     CFI flash code and using most of its code, as recently discussed here in the
44364     thread "Mixing CFI and non-CFI flashs".
44365
44366     Signed-off-by: Michael Schwingen <michael@schwingen.org>
44367     Signed-off-by: Stefan Roese <sr@denx.de>
44368
44369 commit c01b17dd856fa120b2970f50d9598546a4927ec3
44370 Author: Gerald Van Baren <vanbaren@cideas.com>
44371 Date:   Wed Nov 28 21:24:50 2007 -0500
44372
44373     Conditionally compile fdt_fixup_ethernet()
44374
44375     Fix compiler warnings: On boards that don't have ethernets defined,
44376     don't compile fdt_fixup_ethernet().
44377
44378 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
44379 Author: Kumar Gala <galak@kernel.crashing.org>
44380 Date:   Tue Nov 27 21:59:46 2007 -0600
44381
44382     Convert boards that set memory node to use fdt_fixup_memory()
44383
44384     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44385
44386 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
44387 Author: Kumar Gala <galak@kernel.crashing.org>
44388 Date:   Mon Nov 26 17:06:15 2007 -0600
44389
44390     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
44391
44392     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
44393     determine which serial alias we should set linux,stdout-path to.
44394
44395     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44396
44397 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
44398 Author: Kumar Gala <galak@kernel.crashing.org>
44399 Date:   Mon Nov 26 14:57:45 2007 -0600
44400
44401     Add common memory fixup function
44402
44403     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
44404
44405     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44406
44407 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
44408 Author: Kumar Gala <galak@kernel.crashing.org>
44409 Date:   Mon Nov 26 11:19:12 2007 -0600
44410
44411     Conditionally compile fdt_support.c
44412
44413     Modify common/Makefile to conditionally compile fdt_support.c based
44414     on CONFIG_OF_LIBFDT.
44415
44416     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44417
44418 commit d88e7ba0980773479e1a64badb293116071b7ef0
44419 Author: Kumar Gala <galak@kernel.crashing.org>
44420 Date:   Mon Nov 26 10:41:40 2007 -0600
44421
44422     Fix build breakage due to libfdt import
44423
44424     The IDS8247 got lost in the update and need an API update
44425     do to rename of functions in libfdt.
44426
44427     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44428
44429 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
44430 Author: Gerald Van Baren <vanbaren@cideas.com>
44431 Date:   Fri Nov 23 19:43:20 2007 -0500
44432
44433     Add spaces around the = in the fdt print format.
44434
44435     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44436
44437 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
44438 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44439 Date:   Fri Dec 7 01:25:38 2007 +0900
44440
44441     sh: Moved driver of the SuperH dependence
44442
44443     The composition of the directory in the drivers/ changed.
44444     I moved SuperH serial driver and marubun PCMCIA driver.
44445
44446     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44447
44448 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
44449 Author: Wolfgang Denk <wd@denx.de>
44450 Date:   Thu Dec 6 10:21:19 2007 +0100
44451
44452     Release v1.3.1
44453
44454     Signed-off-by: Wolfgang Denk <wd@denx.de>
44455
44456 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
44457 Author: Wolfgang Denk <wd@denx.de>
44458 Date:   Thu Dec 6 10:21:03 2007 +0100
44459
44460     ADS5121 Board: fix compile problem.
44461
44462     Signed-off-by: Wolfgang Denk <wd@denx.de>
44463
44464 commit a27044b14a9e93678a82d7b35f202b93e7687abc
44465 Author: Stefan Roese <sr@denx.de>
44466 Date:   Thu Dec 6 05:58:43 2007 +0100
44467
44468     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
44469
44470     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
44471     setting the FIXD bit in the SDR0_MFR register. Here a description of the
44472     symptoms:
44473
44474     Problem Description
44475     ------------------------------
44476     If a DMA is performed between memory and PCI with the DMA 1 Controller
44477     using prefetch, and as a result uses a special purpose buffer selected by
44478     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
44479     the first part of the transfer sequence is performed twice. The
44480     PPC440SPe PCI Controller requests more data than was needed such that in
44481     the case of enforce memory protection, a host CPU  exception can occur.
44482     No data is corrupted, because data transfer is stopped in the PCI
44483     Controller. Prefetch enable is specified by setting DMA Configuration
44484     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
44485
44486     Behavior that may be observed in a running system
44487     ---------------------------------------------------------------------------
44488
44489     1. DMA performance is decreased because of the double access on the PCI bus
44490     interface.
44491     2. If an illegal access to some address on the PCI bus is detected at the
44492     system level, a machine check or similar system error may occur.
44493
44494     Workarounds Available
44495     ----------------------------------
44496
44497     1. Do not program prefetch. Note that a prefetch command cannot be programmed
44498     without selecting a special purpose buffer.
44499     2. To avoid crossing a physical boundary of the PCI slave device, add 512
44500     bytes of address to the PCI address range.
44501
44502     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
44503     from AMCC and slighly changed.
44504
44505     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
44506     Signed-off-by: Stefan Roese <sr@denx.de>
44507
44508 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
44509 Author: Stefan Roese <sr@denx.de>
44510 Date:   Tue Dec 4 16:29:48 2007 +0100
44511
44512     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
44513
44514     Signed-off-by: Stefan Roese <sr@denx.de>
44515
44516 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
44517 Author: Wolfgang Denk <wd@denx.de>
44518 Date:   Mon Dec 3 00:15:28 2007 +0100
44519
44520     Prepare for 1.3.1-rc1
44521
44522     Signed-off-by: Wolfgang Denk <wd@denx.de>
44523
44524 commit e15e33433e7c05111968dc9b434a52fd42cbd221
44525 Author: Stefan Roese <sr@denx.de>
44526 Date:   Fri Nov 30 07:15:41 2007 +0100
44527
44528     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
44529
44530     This manual PCIe reset triggering solves the problem seen with the
44531     Intel EPRO/1000 card, which was not detected (link not established)
44532     upon power-up reset.
44533
44534     Signed-off-by: Stefan Roese <sr@denx.de>
44535
44536 commit 260eea5676ca46903a335686cc020b29c4ca46fe
44537 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44538 Date:   Thu Nov 29 01:21:54 2007 +0900
44539
44540     sh: Add SuperH boards maintainer to MAINTAINERS file
44541
44542     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
44543
44544     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44545
44546 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
44547 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44548 Date:   Thu Nov 29 00:13:04 2007 +0900
44549
44550     sh: Add ms7750se support in MAKEALL
44551
44552     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44553
44554 commit c7144373427a178332bf9754131c8c34c52c200a
44555 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44556 Date:   Tue Nov 27 09:44:53 2007 +0100
44557
44558     sh: Add sh3 and sh4 support in MAKEALL
44559
44560     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44561     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44562
44563 commit 130080874a3d28450098481a262c5f7c855e908d
44564 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44565 Date:   Sun Nov 25 02:51:17 2007 +0900
44566
44567     sh: Add document for SuperH.
44568
44569     This document is a summary of information concerning SuperH of U-Boot.
44570
44571     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44572
44573 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
44574 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44575 Date:   Sun Nov 25 02:39:31 2007 +0900
44576
44577     sh: Add marubun's pcmcia driver
44578
44579     Marubun pcmcia is a chip for PCMCIA used with SuperH.
44580     Of course, this can be used even by other architectures.
44581     When use this driver, came to be able to use CompactFlash
44582     and Ethernet.
44583
44584     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44585
44586 commit febd86b969b975289ed948f1ac0eb9722da41ced
44587 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44588 Date:   Sun Nov 25 02:32:13 2007 +0900
44589
44590     sh: Update SuperH SCIF driver
44591
44592     - Changed volatile unsigned to vu_.
44593     - Changed Makefile for kconfig.
44594
44595     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44596
44597 commit 8be760903645af09871be50ad0a6f9ebb62b311d
44598 Author: Stefan Roese <sr@denx.de>
44599 Date:   Tue Nov 27 11:57:35 2007 +0100
44600
44601     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
44602
44603     After an error in the AMCC 405EX users manual now correctly configure
44604     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
44605     usage.
44606
44607     Signed-off-by: Stefan Roese <sr@denx.de>
44608
44609 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
44610 Author: Wolfgang Denk <wd@denx.de>
44611 Date:   Mon Nov 26 19:18:21 2007 +0100
44612
44613     Cleanup coding style; update CHANGELOG
44614
44615     Signed-off-by: Wolfgang Denk <wd@denx.de>
44616
44617 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
44618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44619 Date:   Sun Nov 25 22:39:25 2007 +0100
44620
44621     MAKEALL: add missing 512x boards in ppc
44622
44623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44624
44625 commit a340c325e668ca7386c2276387681720be9c3757
44626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44627 Date:   Sun Nov 25 18:45:47 2007 +0100
44628
44629     Makefile : fix tags ctags etags with new drivers organization
44630
44631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44632
44633 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
44634 Author: Stefan Roese <sr@denx.de>
44635 Date:   Mon Nov 26 15:06:14 2007 +0100
44636
44637     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
44638
44639     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
44640     operation.
44641
44642     Signed-off-by: Stefan Roese <sr@denx.de>
44643
44644 commit ca1ce226287270bb01e25b8e3674c701f12edf19
44645 Author: Stefan Roese <sr@denx.de>
44646 Date:   Mon Nov 26 15:01:45 2007 +0100
44647
44648     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
44649
44650     Signed-off-by: Stefan Roese <sr@denx.de>
44651
44652 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
44653 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44654 Date:   Sun Nov 25 18:45:47 2007 +0100
44655
44656     Makefile : fix tags ctags etags with new drivers organization
44657
44658     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44659
44660 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
44661 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44662 Date:   Sat Nov 24 21:26:56 2007 +0100
44663
44664     drivers/mtd : move mtd drivers to drivers/mtd
44665
44666     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44667
44668 commit 318c0b90431f2648552e5ade78833f42652ce859
44669 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44670 Date:   Sat Nov 24 21:17:55 2007 +0100
44671
44672     drivers/misc : move misc drivers to drivers/misc
44673
44674     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44675
44676 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
44677 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44678 Date:   Sat Nov 24 21:13:59 2007 +0100
44679
44680     drivers/block : move block drivers to drivers/block
44681
44682     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44683
44684 commit 0c698dcaa70275eb8814f665b545547cee013892
44685 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44686 Date:   Sat Nov 24 20:59:50 2007 +0100
44687
44688     drivers/rtc : move rtc drivers to drivers/rtc
44689
44690     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44691
44692 commit f868cc5a50757d94f36c312395481cb0f187d9e6
44693 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44694 Date:   Sat Nov 24 20:14:44 2007 +0100
44695
44696     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
44697
44698     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44699
44700 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
44701 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44702 Date:   Sat Nov 24 19:46:45 2007 +0100
44703
44704     drivers/input : move input drivers to drivers/input
44705
44706     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44707
44708 commit e4558666293364fc3af1c1d9381ca933fa0f1275
44709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44710 Date:   Sat Nov 24 19:40:11 2007 +0100
44711
44712     drivers/usb : move usb drivers to drivers/usb
44713
44714     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44715
44716 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
44717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44718 Date:   Sat Nov 24 19:33:38 2007 +0100
44719
44720     drivers/serial : move serial drivers to drivers/serial
44721
44722     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44723
44724 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
44725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44726 Date:   Wed Nov 21 21:19:24 2007 +0100
44727
44728     drivers/net : move net drivers to drivers/net
44729
44730     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44731
44732 commit 352d259130b349fe9593b8dada641bd78a9659e5
44733 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44734 Date:   Tue Nov 20 20:41:48 2007 +0100
44735
44736     drivers/video : move video drivers to drivers/video
44737
44738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44739
44740 commit 73646217186aa17afc8e305c5f06f06dd335eaad
44741 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44742 Date:   Tue Nov 20 20:33:09 2007 +0100
44743
44744     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
44745
44746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44747
44748 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
44749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44750 Date:   Tue Nov 20 20:28:09 2007 +0100
44751
44752     drivers/pci : move pci drivers to drivers/pci
44753
44754     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44755
44756 commit 9162352817579840d7802da6d85872b3ca003c97
44757 Author: Gerald Van Baren <vanbaren@cideas.com>
44758 Date:   Thu Nov 22 17:23:23 2007 -0500
44759
44760     Fix fdt printing for updated libfdt
44761
44762     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
44763
44764     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44765
44766 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
44767 Author: Kumar Gala <galak@kernel.crashing.org>
44768 Date:   Wed Nov 21 13:30:15 2007 -0600
44769
44770     Add additional fdt fixup helper functions
44771
44772     Added the following fdt fixup helpers:
44773      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
44774      * do_fixup_by_compat{_u32} - Find matching nodes by compat
44775
44776     The _u32 variants work the same only the property they are setting
44777     is know to be a 32-bit integer instead of a byte buffer.
44778
44779     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44780
44781 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
44782 Author: Kumar Gala <galak@kernel.crashing.org>
44783 Date:   Wed Nov 21 11:11:03 2007 -0600
44784
44785     Add fdt_fixup_ethernet helper to set mac addresses
44786
44787     Added a fixup helper that uses aliases to set mac addresses
44788     in the device tree based on the bd_t
44789
44790     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44791
44792 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
44793 Author: Kumar Gala <galak@kernel.crashing.org>
44794 Date:   Wed Nov 21 14:07:46 2007 -0600
44795
44796     Fix warnings from import of libfdt
44797
44798     cmd_fdt.c: In function fdt_print:
44799     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
44800     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
44801     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
44802     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
44803
44804     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44805
44806 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
44807 Author: Kumar Gala <galak@kernel.crashing.org>
44808 Date:   Wed Oct 24 11:04:22 2007 -0500
44809
44810     Update libfdt from device tree compiler (dtc)
44811
44812     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
44813     the device tree compiler (dtc) project.
44814
44815     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44816
44817 commit e93becf80d732b64aef81b23e8b6ece02c40533d
44818 Author: Kumar Gala <galak@kernel.crashing.org>
44819 Date:   Sat Nov 3 19:46:28 2007 -0500
44820
44821     Move do_fixup* for libfdt into common code
44822
44823     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
44824     into common/fdt_support.c and renamed:
44825
44826     do_fixup()  -> do_fixup_by_path()
44827     do_fixup_u32()      -> do_fixup_by_path_u32()
44828
44829     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44830
44831 commit f738b4a75998f42a7408defadc9baac7a31c92db
44832 Author: Kumar Gala <galak@kernel.crashing.org>
44833 Date:   Thu Oct 25 16:15:07 2007 -0500
44834
44835     Make no options to fdt print default to '/'
44836
44837     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44838
44839 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
44840 Author: Kumar Gala <galak@kernel.crashing.org>
44841 Date:   Wed Oct 24 10:21:57 2007 -0500
44842
44843     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
44844
44845     Removed:
44846         fdt_node_is_compatible
44847         fdt_find_node_by_type
44848         fdt_find_compatible_node
44849
44850     To ease merge of newer libfdt as we aren't using them anywhere at this time.
44851
44852     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
44853     reason.
44854
44855     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44856
44857 commit 98e2867cc85409b919f862e6c16026461ec955df
44858 Author: Grant Likely <grant.likely@secretlab.ca>
44859 Date:   Wed Nov 21 09:19:37 2007 -0700
44860
44861     [BUILD] Remove libraries when updating autoconf.mk
44862
44863     Fix library problems caused by conditional compilation.  Using
44864     autoconf.mk to decide which files to compile has caused a problem when
44865     changing configuration from one board to another without clearing out
44866     the library (*.a) files.
44867
44868     It used to be that the linker was always passed the same list of .o
44869     files when building the .a files.  However, that is not longer true
44870     with conditional compilation.  Now, a different board config will have
44871     a different file list passed to the linker.  The problem occurs when
44872     a library has already been built and the board config is changed.
44873
44874     Since the linker will update instead of replace a preexisting library,
44875     then if the file list changes to remove some object files the old
44876     objects will still exist in the library.
44877
44878     The solution is to remove all old library files when autoconf.mk is
44879     made.
44880
44881     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44882
44883 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
44884 Author: Kumar Gala <galak@kernel.crashing.org>
44885 Date:   Wed Nov 21 08:49:50 2007 -0600
44886
44887     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
44888
44889     Modify libfdt/Makefile to conditionally compile the *.c files based
44890     on the board config.
44891
44892     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44893
44894 commit 4a43719a7738712811d822ca8125427b27a55cdc
44895 Author: Grant Likely <grant.likely@secretlab.ca>
44896 Date:   Mon Sep 24 09:05:31 2007 -0600
44897
44898     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
44899
44900     Modify common/Makefile to conditionally compile the cmd_*.c files based
44901     on the board config.
44902
44903     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44904
44905 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
44906 Author: Grant Likely <grant.likely@secretlab.ca>
44907 Date:   Mon Sep 24 09:05:31 2007 -0600
44908
44909     [BUILD] Generate include/autoconf.mk from board config files
44910
44911     Use cpp and sed to postprocess config.h and import the defined values
44912     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
44913     give 'make' access to the board configuration.
44914
44915     Doing this enables conditional compilation at the Makefile level instead
44916     of by wrapping every .c file with #ifdef/#endif wrappers.
44917
44918     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44919
44920 commit 68b88999da87ab88e71e1306192905be3450198e
44921 Author: Jon Loeliger <jdl@freescale.com>
44922 Date:   Tue Nov 20 15:02:26 2007 -0600
44923
44924     8610HPCD: Enable the 8610 Display Interface Unit
44925
44926     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44927
44928 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
44929 Author: Jon Loeliger <jdl@freescale.com>
44930 Date:   Tue Nov 20 15:00:53 2007 -0600
44931
44932     Move 8610 DIU interface structure definitions to header file.
44933
44934     These two structures are still needed during the
44935     initialization and setup of the DIU hardware.
44936     So move them to the fsl_diu_fb.h file for now.
44937     Official "blah".
44938
44939     Noticed-by: York Sun <yorksun@freescale.com>
44940     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44941
44942 commit 080c646dbf474a109c3f85718fb01ce042a38c45
44943 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44944 Date:   Tue Nov 20 20:14:18 2007 +0100
44945
44946     drivers/i2c : move i2c drivers to drivers/i2c
44947
44948     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44949
44950 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
44951 Author: Wolfgang Denk <wd@denx.de>
44952 Date:   Mon Nov 19 22:20:24 2007 +0100
44953
44954     Prepare for 1.3.0 release.
44955
44956     Signed-off-by: Wolfgang Denk <wd@denx.de>
44957
44958 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
44959 Author: Haiying Wang <Haiying.Wang@freescale.com>
44960 Date:   Mon Nov 19 10:02:13 2007 -0500
44961
44962     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
44963
44964     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
44965
44966     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
44967
44968 commit f8c320609366176b31104d9bf5e295232e1c7f1d
44969 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
44970 Date:   Mon Nov 19 11:14:16 2007 +0900
44971
44972     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
44973
44974     lowlevel_init.S: Assembler messages:
44975     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
44976
44977     Looking at codes, the `memtest' and `clearmem' are intentional mixed
44978     use of `global symbols' and `label' for debugging purpose. To make it
44979     build, just disable global-symbols-use for now. As a result `memtest'
44980     still remains as unused, but leave it be...
44981
44982     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
44983
44984 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
44985 Author: Wolfgang Denk <wd@denx.de>
44986 Date:   Mon Nov 19 12:59:14 2007 +0100
44987
44988     Fix build problems with mp2usb board
44989
44990     Signed-off-by: Wolfgang Denk <wd@denx.de>
44991
44992 commit 6bf4c686afca1e86e1c384d59218f914605713bf
44993 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44994 Date:   Sun Nov 18 18:36:11 2007 +0100
44995
44996     s3c24x0: Fix usb_ohci.c missing in Makefile
44997     and usb_ohci.c warning differ in signedness
44998
44999     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45000
45001 commit 6073f61e078da5ddb521b56256bcc36508589883
45002 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45003 Date:   Sun Nov 18 12:55:02 2007 +0100
45004
45005     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
45006
45007     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45008
45009 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
45010 Author: Wolfgang Denk <wd@denx.de>
45011 Date:   Sun Nov 18 17:11:09 2007 +0100
45012
45013     Fix compiler warnings for ARM systems.
45014
45015     Signed-off-by: Wolfgang Denk <wd@denx.de>
45016
45017 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
45018 Author: Wolfgang Denk <wd@denx.de>
45019 Date:   Sun Nov 18 16:36:27 2007 +0100
45020
45021     Fix compiler warnings for PPC systems. Update CHANGELOG.
45022
45023     Signed-off-by: Wolfgang Denk <wd@denx.de>
45024
45025 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
45026 Author: Stefan Roese <sr@denx.de>
45027 Date:   Sun Nov 18 14:44:44 2007 +0100
45028
45029     ppc4xx: Correct 405EX PCIe UTL register mapping
45030
45031     Map 4k mem space for UTL registers for each port.
45032
45033     Signed-off-by: Stefan Roese <sr@denx.de>
45034
45035 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
45036 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45037 Date:   Sat Nov 17 11:31:10 2007 +0100
45038
45039     Fix warning differ in signedness in net/net.c and net/nfs.c
45040
45041 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
45042 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45043 Date:   Sat Nov 17 20:42:45 2007 +0900
45044
45045     gth2.c: Fix a warning on gth2 build.
45046
45047     gth2.c: In function 'misc_init_r':
45048     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
45049
45050     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45051
45052 commit 2309c130aa4c84b91bd874a41269c923eb61b555
45053 Author: Stefan Roese <sr@denx.de>
45054 Date:   Sat Nov 17 07:58:25 2007 +0100
45055
45056     Fix warning differ in signedness in common/cmd_scsi.c
45057
45058     Signed-off-by: Stefan Roese <sr@denx.de>
45059
45060 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
45061 Author: Stefan Roese <sr@denx.de>
45062 Date:   Sat Nov 17 14:52:29 2007 +0100
45063
45064     ppc4xx: Update AMCC Kilauea config file
45065
45066     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
45067
45068     Signed-off-by: Stefan Roese <sr@denx.de>
45069
45070 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
45071 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45072 Date:   Sat Nov 17 20:05:26 2007 +0900
45073
45074     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
45075
45076     Current trick to pick up GNU assembler minor version does not work with the
45077     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
45078     "(GNU Binutils) ".
45079
45080       $ sde-as --version |grep "GNU assembler"
45081       GNU assembler 2.15.94 mipssde-6.02.02-20050602
45082       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
45083       2.15.94
45084       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
45085       15
45086       $
45087
45088       $ mips-linux-as --version |grep "GNU assembler"
45089       GNU assembler (GNU Binutils) 2.18
45090       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
45091       (GNU
45092       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
45093       (no output)
45094       $
45095
45096     As a result of above, you'll see many noises with such binutils:
45097
45098       make -C cpu/mips/
45099       /bin/sh: line 0: [: : integer expression expected
45100       /bin/sh: line 0: [: : integer expression expected
45101       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
45102       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
45103       /bin/sh: line 0: [: : integer expression expected
45104       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
45105       /bin/sh: line 0: [: : integer expression expected
45106       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
45107       /bin/sh: line 0: [: : integer expression expected
45108
45109     This patch simplifies the trick and makes it work with both versions of gas.
45110     I also replace an expensive `awk (or gawk)' with `cut'.
45111
45112     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45113
45114 commit 16664f72850846e645616da1c0fa5afcd6d15f15
45115 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45116 Date:   Sat Nov 17 20:05:26 2007 +0900
45117
45118     [MIPS] Remove useless instructions for initializing $gp.
45119
45120     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45121
45122 commit 03c031d5660ea946c39af6e2e16267da857c609f
45123 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45124 Date:   Sat Oct 27 15:27:06 2007 +0900
45125
45126     [MIPS] MIPS 4K core: Coding style cleanups
45127
45128     No logical changes.
45129
45130     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45131
45132 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
45133 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45134 Date:   Sat Nov 17 20:05:20 2007 +0900
45135
45136     [MIPS] gth2.c: Fix a warning on gth2 build.
45137
45138     gth2.c: In function 'misc_init_r':
45139     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
45140
45141     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45142
45143 commit 4fbd0741b2b6441da10be93e10267122581b7079
45144 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45145 Date:   Sat Oct 27 15:22:33 2007 +0900
45146
45147     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
45148
45149     au1x00_eth.c: In function 'au1x00_miiphy_write':
45150     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
45151
45152     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45153
45154 commit f01320459736f156707425cf8112f98606301aa4
45155 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45156 Date:   Sat Oct 27 15:00:25 2007 +0900
45157
45158     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
45159
45160     au1x00_eth.c: In function 'au1x00_enet_initialize':
45161     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
45162     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
45163     au1x00_eth.c:246: error: for each function it appears in.)
45164     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
45165     au1x00_eth.c: In function 'au1x00_miiphy_write':
45166     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
45167     make[1]: *** [au1x00_eth.o] Error 1
45168
45169     Fixed by moving these two functions forward.
45170
45171     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45172
45173 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
45174 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45175 Date:   Sat Oct 27 15:00:25 2007 +0900
45176
45177     MAKEALL: Added missing pb1000 board
45178
45179     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45180
45181 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
45182 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45183 Date:   Sat Oct 27 15:00:24 2007 +0900
45184
45185     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
45186
45187     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45188
45189 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
45190 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45191 Date:   Sat Oct 27 15:00:24 2007 +0900
45192
45193     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
45194
45195     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45196
45197 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
45198 Author: Wolfgang Denk <wd@denx.de>
45199 Date:   Sat Nov 17 02:34:38 2007 +0100
45200
45201     Update CHANGELOIG, prepare for -rc4
45202
45203     Signed-off-by: Wolfgang Denk <wd@denx.de>
45204
45205 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
45206 Author: Luotao Fu <l.fu@pengutronix.de>
45207 Date:   Wed Nov 14 18:58:33 2007 +0100
45208
45209     Fix the i2c frequency and default address in rsdproto board
45210
45211     rsdproto board support has wrong I2C frequency and wrong return value
45212     handling.
45213
45214     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
45215
45216 commit 429c180edad038f91c989cb14b478228092e7054
45217 Author: Wolfgang Denk <wd@denx.de>
45218 Date:   Sat Nov 17 01:45:38 2007 +0100
45219
45220     powerpc: Backout relocation changes for MPC5121, too.
45221
45222     Apply Grant Likely's backout to MPC5121 code, too.
45223
45224     Pointed out by Rafal Jaworowski <raj@semihalf.com>
45225
45226     Signed-off-by: Wolfgang Denk <wd@denx.de>
45227
45228 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
45229 Author: Grant Likely <grant.likely@secretlab.ca>
45230 Date:   Tue Nov 13 22:18:33 2007 -0700
45231
45232     powerpc: Backout relocation changes.
45233
45234     Ugh.  I *hate* to back this change out, but these compiler flags don't
45235     work for relocation on all versions of GCC.  I've not been able to
45236     reproduce the environment in my setup (and hence, not been able to
45237     find a combination that *does* work), so I've got no choice but to go
45238     back to the old gcc flags and linker script.
45239
45240     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45241
45242 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
45243 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45244 Date:   Tue Nov 13 09:11:05 2007 +0100
45245
45246     Fixed mips_io_port_base build errors.
45247
45248     This patch has been sent on:
45249     - 29 Sep 2007
45250
45251     Although mips_io_port_base is currently a part of IDE command, it is quite
45252     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
45253     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
45254
45255     This patch is triggered by multiple definition of `mips_io_port_base' build
45256     error on gth2 (and tb0229 also needs this fix.)
45257
45258     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
45259     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
45260     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
45261     make: *** [u-boot] Error 1
45262
45263     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45264     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45265
45266 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
45267 Author: Wolfgang Denk <wd@denx.de>
45268 Date:   Sat Nov 17 01:30:40 2007 +0100
45269
45270     Fix a bug in the slave serial programming mode for the Xilinx
45271     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
45272     the most significant bit was set, which did not work on any
45273     architecture where "char" defaulted to be an unsigned type.
45274
45275     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
45276
45277     Signed-off-by: Wolfgang Denk <wd@denx.de>
45278
45279 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
45280 Author: Jon Loeliger <jdl@freescale.com>
45281 Date:   Thu Nov 1 12:23:29 2007 -0500
45282
45283     86xx: Fix broken variable reference when #def DEBUGing.
45284
45285     Sometimes you can't reference the DDR2 controller variables.
45286
45287     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45288
45289 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
45290 Author: Jason Jin <Jason.jin@freescale.com>
45291 Date:   Fri Oct 26 18:32:00 2007 +0800
45292
45293     make 8610 board use pixis reset
45294
45295     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45296
45297 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
45298 Author: Jason Jin <Jason.jin@freescale.com>
45299 Date:   Mon Oct 29 19:26:21 2007 +0800
45300
45301     Unify pixis_reset altbank across board families
45302
45303     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
45304     into the separate board config files.
45305
45306     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45307     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45308
45309 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
45310 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45311 Date:   Wed Nov 7 08:19:21 2007 +0100
45312
45313     Fix warning: pointer targets in assignment differ in signedness
45314
45315     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45316
45317 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
45318 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45319 Date:   Wed Nov 7 08:19:19 2007 +0100
45320
45321     Fix warning differ in signedness in common/cmd_ide.c
45322
45323     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45324
45325 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
45326 Author: Stefan Roese <sr@denx.de>
45327 Date:   Fri Nov 16 14:16:54 2007 +0100
45328
45329     ppc4xx: Enable 405EX PCIe UTL register configuration
45330
45331     Till now the UTL registers on 405EX were not initialized but left with
45332     their default values. This patch new initializes some of the UTL
45333     registers on 405EX.
45334
45335     Signed-off-by: Stefan Roese <sr@denx.de>
45336
45337 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
45338 Author: Stefan Roese <sr@denx.de>
45339 Date:   Fri Nov 16 14:00:59 2007 +0100
45340
45341     ppc4xx: Update AMCC Makalu for board rev 1.1
45342
45343     This patch adds changes needed for Makalu rev 1.1:
45344
45345     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
45346     - Enable 2nd ethernet port EMAC1
45347     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
45348     - Reset PCIe ports via GPIO upon bootup
45349
45350     Signed-off-by: Stefan Roese <sr@denx.de>
45351
45352 commit 4d4faae65e115e327425cd514c1a35146a85166b
45353 Author: Grant Likely <grant.likely@secretlab.ca>
45354 Date:   Mon Sep 24 09:05:31 2007 -0600
45355
45356     Group PCI and PCMCIA drivers in drivers/Makefile
45357
45358     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45359
45360 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
45361 Author: Grant Likely <grant.likely@secretlab.ca>
45362 Date:   Mon Sep 24 09:05:31 2007 -0600
45363
45364     Group block/flash drivers in drivers/Makefile
45365
45366     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45367
45368 commit df58c81551700f058b44cacf55a7997fa63bfe0a
45369 Author: Grant Likely <grant.likely@secretlab.ca>
45370 Date:   Mon Sep 24 09:05:31 2007 -0600
45371
45372     Group USB drivers in drivers/Makefile
45373
45374     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45375
45376 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
45377 Author: Grant Likely <grant.likely@secretlab.ca>
45378 Date:   Mon Sep 24 09:05:30 2007 -0600
45379
45380     Group i2c drivers in drivers/Makefile
45381
45382     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45383
45384 commit ec00c76de0e5971273905998d62d6bb119324218
45385 Author: Grant Likely <grant.likely@secretlab.ca>
45386 Date:   Mon Sep 24 09:05:30 2007 -0600
45387
45388     Group console drivers in drivers/Makefile
45389
45390     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45391
45392 commit 754f230aa01b8c789fc31f8013c2487954073300
45393 Author: Grant Likely <grant.likely@secretlab.ca>
45394 Date:   Mon Sep 24 09:05:30 2007 -0600
45395
45396     Group network drivers in drivers/Makefile
45397
45398     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45399
45400 commit f0037c56b0d12cd46215124667b9f83d60ef9391
45401 Author: Grant Likely <grant.likely@secretlab.ca>
45402 Date:   Mon Sep 24 09:05:30 2007 -0600
45403
45404     Build: split COBJS value into multiple lines
45405
45406     This change is in preparation for condtitionial compile support in the
45407     build system.  By spliting them all into seperate lines now, subsequent
45408     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
45409     be less invasive and easier to review
45410
45411     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45412
45413 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
45414 Author: Grant Likely <grant.likely@secretlab.ca>
45415 Date:   Mon Sep 24 09:05:30 2007 -0600
45416
45417     Add .gitignore files
45418
45419     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45420     Acked-by: Kim Phillips <kim.phillips@freescale.com>
45421
45422 commit 955413f35f054a82e40042f1dbcf501c6a05719b
45423 Author: Grant Likely <grant.likely@secretlab.ca>
45424 Date:   Thu Nov 15 08:27:52 2007 -0700
45425
45426     Revert "Correct relocation fixup for mpc5xx"
45427
45428     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
45429     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45430
45431 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
45432 Author: Grant Likely <grant.likely@secretlab.ca>
45433 Date:   Thu Nov 15 08:24:32 2007 -0700
45434
45435     Revert "Correct fixup relocation for MPC5xxx"
45436
45437     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
45438     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45439
45440 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
45441 Author: Grant Likely <grant.likely@secretlab.ca>
45442 Date:   Thu Nov 15 08:21:04 2007 -0700
45443
45444     Revert "Correct fixup relocation for mpc8220"
45445
45446     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
45447     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45448
45449 commit 70922342369e5e39b286fe21e768a239ca07a514
45450 Author: Grant Likely <grant.likely@secretlab.ca>
45451 Date:   Thu Nov 15 08:20:57 2007 -0700
45452
45453     Revert "Correct fixup relocation for mpc824x"
45454
45455     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
45456     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45457
45458 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
45459 Author: Grant Likely <grant.likely@secretlab.ca>
45460 Date:   Thu Nov 15 08:20:50 2007 -0700
45461
45462     Revert "Correct fixup relocation for mpc8260"
45463
45464     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
45465     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45466
45467 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
45468 Author: Grant Likely <grant.likely@secretlab.ca>
45469 Date:   Thu Nov 15 08:20:43 2007 -0700
45470
45471     Revert "Correct fixup relocation for mpc83xx"
45472
45473     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
45474     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45475
45476 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
45477 Author: Grant Likely <grant.likely@secretlab.ca>
45478 Date:   Thu Nov 15 08:20:25 2007 -0700
45479
45480     Revert "[MPC512x] Correct fixup relocation"
45481
45482     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
45483     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45484
45485 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
45486 Author: Stefan Roese <sr@denx.de>
45487 Date:   Thu Nov 15 14:25:09 2007 +0100
45488
45489     ppc4xx: Small AMCC Kilauea cleanup
45490
45491     Remove not needed pci_target_init() function.
45492
45493     Signed-off-by: Stefan Roese <sr@denx.de>
45494
45495 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
45496 Author: Stefan Roese <sr@denx.de>
45497 Date:   Thu Nov 15 14:23:55 2007 +0100
45498
45499     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
45500
45501     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
45502     - Cleanup of the 4xx GPIO functions
45503     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
45504
45505     Signed-off-by: Stefan Roese <sr@denx.de>
45506
45507 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
45508 Author: Stefan Roese <sr@denx.de>
45509 Date:   Thu Nov 15 14:20:08 2007 +0100
45510
45511     ppc4xx: AMCC Taihu board config file cleanup
45512
45513     This patch makes the AMCC Taihu a little more compatible to the other
45514     AMCC eval boards.
45515
45516     Signed-off-by: Stefan Roese <sr@denx.de>
45517
45518 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
45519 Author: Marian Balakowicz <m8@semihalf.com>
45520 Date:   Thu Nov 15 13:37:28 2007 +0100
45521
45522     [INKA4x0] NG hardware: flash support
45523
45524     Disabled and remove inka4x0 custom flash driver, use CFI flash
45525     driver instead.
45526
45527     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45528
45529 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
45530 Author: Marian Balakowicz <m8@semihalf.com>
45531 Date:   Thu Nov 15 13:29:55 2007 +0100
45532
45533     [INKA4x0] NG hardware: SDRAM support
45534
45535     Add support for three new DDR chips that may  be present on a NG
45536     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
45537
45538     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
45539
45540     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45541
45542 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
45543 Author: Marian Balakowicz <m8@semihalf.com>
45544 Date:   Thu Nov 15 13:24:43 2007 +0100
45545
45546     [INKA4x0] NG hardware: platform code update
45547
45548     - Cleanup compile warnings.
45549     - Add missing '\0' in default environment.
45550     - Increase CFG_MONITOR_LEN to 256 KiB.
45551     - Add required CFG_USE_PPCENV.
45552
45553     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45554
45555 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
45556 Author: Peter Pearse <peter.pearse@arm.com>
45557 Date:   Thu Nov 15 08:58:00 2007 +0000
45558
45559     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
45560     Remove warnings re onenand_read() & write()
45561
45562 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
45563 Author: Peter Pearse <peter.pearse@arm.com>
45564 Date:   Thu Nov 15 08:45:13 2007 +0000
45565
45566     Correction patch
45567
45568 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
45569 Author: Roy Zang <tie-fei.zang@freescale.com>
45570 Date:   Thu Sep 13 18:52:28 2007 +0800
45571
45572     Enable ULi1575 Ethernet support in 8610HPCD config
45573
45574     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45575     Acked-by: Jon Loeliger <jdl@freescale.com>
45576
45577 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
45578 Author: Stefan Roese <sr@denx.de>
45579 Date:   Tue Nov 13 08:18:20 2007 +0100
45580
45581     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
45582
45583     Signed-off-by: Stefan Roese <sr@denx.de>
45584
45585 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
45586 Author: Stefan Roese <sr@denx.de>
45587 Date:   Tue Nov 13 08:06:11 2007 +0100
45588
45589     ppc4xx: Fix 405EX PCIe UTLSET register setup
45590
45591     Signed-off-by: Stefan Roese <sr@denx.de>
45592
45593 commit 1ce55151c85d068f70317a8d65c61058b891afb4
45594 Author: Heiko Schocher <hs@denx.de>
45595 Date:   Tue Nov 13 07:50:29 2007 +0100
45596
45597     [UC101] SRAM now with 2 MB working.
45598
45599     Signed-off-by: Heiko Schocher <hs@denx.de>
45600
45601 commit 2d14684341109a69616e4d6016cd61402d55086f
45602 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45603 Date:   Fri Nov 9 15:37:53 2007 +0100
45604
45605     ppc4xx: Use generic usb-ohci driver for sequoia board
45606
45607     This patch makes the sequoia board use the generic usb-ohci driver
45608     instead of cpu/ppc4xx/usb_ohci.c.
45609
45610     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45611     Signed-off-by: Stefan Roese <sr@denx.de>
45612
45613 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
45614 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45615 Date:   Fri Nov 9 15:37:23 2007 +0100
45616
45617     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
45618
45619     This patch disables the 44x d-cache on 'usb start' and
45620     reenables it on 'usb stop'. This should be seen as a
45621     temporary fix until the generic usb-ohci driver can
45622     life with d-cache enabled.
45623
45624     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45625     Signed-off-by: Stefan Roese <sr@denx.de>
45626
45627 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
45628 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45629 Date:   Fri Nov 9 15:36:44 2007 +0100
45630
45631     ppc4xx: Remove redundant code from 4xx network driver
45632
45633     This patch removes some redundant code and decrements the end
45634     address of cache flush and invalidate by 1.
45635
45636     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45637     Signed-off-by: Stefan Roese <sr@denx.de>
45638
45639 commit 5ca9881aad8c413ac2a82868a5e3719178254502
45640 Author: Peter Pearse <peter.pearse@arm.com>
45641 Date:   Fri Nov 9 15:24:26 2007 +0000
45642
45643     Add apollon board support
45644     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45645
45646 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
45647 Author: Stefan Roese <sr@denx.de>
45648 Date:   Fri Nov 9 12:19:58 2007 +0100
45649
45650     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
45651
45652     Signed-off-by: Stefan Roese <sr@denx.de>
45653
45654 commit c7f69c340277935a6c19a956421852da944a365f
45655 Author: Stefan Roese <sr@denx.de>
45656 Date:   Fri Nov 9 12:18:54 2007 +0100
45657
45658     ppc4xx: Make output a little shorter on I2C bootrom detection
45659
45660     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
45661     already print a line with the information which I2C bootrom is
45662     used for bootstrap configuration. So we don't need this extra line
45663     with "I2C boot EEPROM en-/dis-abled".
45664
45665     This patch also has a little code cleanup integrated.
45666
45667     Signed-off-by: Stefan Roese <sr@denx.de>
45668
45669 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
45670 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45671 Date:   Thu Nov 8 12:50:18 2007 -0600
45672
45673     ColdFire: MCF5329 - Remove reset registers from CCM
45674
45675     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45676
45677 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
45678 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45679 Date:   Thu Nov 8 12:31:11 2007 -0600
45680
45681     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
45682
45683     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45684
45685 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
45686 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45687 Date:   Thu Nov 8 12:19:01 2007 -0600
45688
45689     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
45690
45691     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45692
45693 commit 225a24b5e062ad94627424508ae814f51dbe1a34
45694 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45695 Date:   Wed Nov 7 18:00:54 2007 -0600
45696
45697     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
45698
45699     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45700
45701 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
45702 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45703 Date:   Wed Nov 7 17:56:15 2007 -0600
45704
45705     ColdFire: MCF532x - Update do_reset() using core reset
45706
45707     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45708
45709 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
45710 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45711 Date:   Wed Nov 7 17:51:00 2007 -0600
45712
45713     ColdFire: Update cpu flag for 4.2-xx compiler
45714
45715     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45716
45717 commit 070ba56115b4da63b46e974287fa4550d4023386
45718 Author: York Sun <yorksun@freescale.com>
45719 Date:   Wed Oct 31 14:59:04 2007 -0500
45720
45721     8610: Add console frame buffer support to FSL 8610 DIU driver.
45722
45723     Add cfb console support to FSL 8610 DIU driver.
45724     Inspect board version from PIXIS to obtain correct pixel format.
45725
45726     Use #define CONFIG_VIDEO in config file to enable fb console.
45727
45728     To switch monitor, set monitor variable to
45729     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
45730     followed by "diufb init".
45731
45732     Preserve logo bitmap at the top of the fb console.
45733
45734     Signed-off-by: York Sun <yorksun@freescale.com>
45735     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45736
45737 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
45738 Author: York Sun <yorksun@freescale.com>
45739 Date:   Mon Oct 29 13:58:39 2007 -0500
45740
45741     8610: Add 8610 DIU display driver
45742
45743     1280x1024 and 1024x768 @ 32 bpp are supported now.
45744     DVI, Single-link LVDS, Double-link LVDS are all supported.
45745
45746     Environmental variable "monitor" is used to specify monitor port.
45747
45748     A new command "diufb" is introduced to reinitialize monitor
45749     and display a BMP file in the memory. So far, 1-bit, 4-bit,
45750     8-bit and 24-bit BMP formats are supported.
45751
45752         diufb init
45753             - initialize the diu driver
45754         Enable the port specified in the environmental variable "monitor"
45755
45756         diufb addr
45757             - display bmp file in memory.
45758         The bmp image should be no bigger than the resolution, 1280x1024
45759         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
45760
45761     Note, this driver allocate memory but doesn't free it after use
45762     It is written on purpose -- to avoid a failure of reallocation
45763     due to memory fragement.
45764
45765     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
45766
45767     Signed-off-by: York Sun <yorksun@freescale.com>
45768     Signed-off-by: Jon loeliger <jdl@freescale.com>
45769
45770 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
45771 Author: York Sun <yorksun@freescale.com>
45772 Date:   Wed Oct 31 10:43:59 2007 -0500
45773
45774     FSL: Add a freescale bitmap logo.
45775
45776     This Freescale logo is a 340 x 128 x 4bpp BMP file
45777     that can be displayed by the DIU Framebuffer driver.
45778
45779     Signed-off-by: York Sun <yorksun@freescale.com>
45780     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45781
45782 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
45783 Author: York Sun <yorksun@freescale.com>
45784 Date:   Mon Oct 29 13:57:53 2007 -0500
45785
45786     8610: Make some extra debug environment variables conditional.
45787
45788     One may #define ENV_DEBUG to get them back again.
45789
45790     Signed-off-by: York Sun <yorksun@freescale.com>
45791
45792 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
45793 Author: Jason Jin <Jason.jin@freescale.com>
45794 Date:   Mon Oct 29 19:26:21 2007 +0800
45795
45796     8610: Actually enable pixis_reset CONFIGs
45797
45798     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45799
45800 commit f3bceaab230b4748d0afc4109b6837308f018b40
45801 Author: Jason Jin <Jason.jin@freescale.com>
45802 Date:   Fri Oct 26 18:31:59 2007 +0800
45803
45804     Fix the BAT definition of PCI IO on 8610 board
45805
45806     The address in the BAT register is aligned with the BAT size.
45807     The original definition actually did not define BAT for PCIE2 IO.
45808     This patch fix this.
45809
45810     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45811
45812 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
45813 Author: Jason Jin <Jason.jin@freescale.com>
45814 Date:   Mon Oct 29 19:26:21 2007 +0800
45815
45816     Unify pixis_reset altbank across board families
45817
45818     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
45819     into the separate board config files.
45820
45821     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45822     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45823
45824 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
45825 Author: Jason Jin <Jason.jin@freescale.com>
45826 Date:   Fri Oct 26 18:32:00 2007 +0800
45827
45828     make 8610 board use pixis reset
45829
45830     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45831
45832 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
45833 Author: Jon Loeliger <jdl@freescale.com>
45834 Date:   Thu Nov 1 12:23:29 2007 -0500
45835
45836     86xx: Fix broken variable reference when #def DEBUGing.
45837
45838     Sometimes you can't reference the DDR2 controller variables.
45839
45840     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45841
45842 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
45843 Author: Roy Zang <tie-fei.zang@freescale.com>
45844 Date:   Mon Nov 5 17:39:24 2007 +0800
45845
45846     Implement general ULi 526x Ethernet driver support in U-boot
45847
45848     This patch implements general ULi 526x Ethernet driver.
45849     Until now, it is the only native Ethernet port on
45850     MPC8610HPCD board, but it could be used on other boards
45851     with ULi 526x Ethernet port as well.
45852
45853     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45854     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45855     Acked-by: Jon Loeliger <jdl@freescale.com>
45856     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45857
45858 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
45859 Author: Larry Johnson <lrj@arlinx.com>
45860 Date:   Thu Nov 1 08:46:50 2007 -0500
45861
45862     NET: Add Ethernet 1000BASE-X support for PPC4xx
45863
45864     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
45865     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
45866     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
45867     "mii info" command is modified to distinguish between 1000BASE-T and -X.
45868
45869     Signed-off-by: Larry Johnson <lrj@acm.org>
45870     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45871
45872 commit 298035df4948b113d29ac0e694717d34b95bc5dc
45873 Author: Larry Johnson <lrj@arlinx.com>
45874 Date:   Wed Oct 31 11:21:29 2007 -0500
45875
45876     NET: Cosmetic changes
45877
45878     Signed-off-by: Larry Johnson <lrj@acm.org>
45879     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45880
45881 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
45882 Author: Stefan Roese <sr@denx.de>
45883 Date:   Mon Nov 5 07:43:05 2007 +0100
45884
45885     ppc4xx: Make output a little shorter on PCIe detection
45886
45887     Now not max 3 lines but 2 lines are printed per PCIe port.
45888
45889     Signed-off-by: Stefan Roese <sr@denx.de>
45890
45891 commit 992742a5b09d9040adbd156fb90756af66ade310
45892 Author: Wolfgang Denk <wd@denx.de>
45893 Date:   Sat Nov 3 23:09:27 2007 +0100
45894
45895     Cleanup coding style; update CHANGELOG
45896
45897     Signed-off-by: Wolfgang Denk <wd@denx.de>
45898
45899 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
45900 Author: Bruce Adler <bruce.adler@ccpu.com>
45901 Date:   Fri Nov 2 13:15:42 2007 -0700
45902
45903     fix wording in README
45904
45905     Changed the wording to properly describe the shadowing
45906     of the environment from ROM to RAM
45907
45908     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
45909
45910 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
45911 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45912 Date:   Wed Oct 31 02:18:15 2007 +0900
45913
45914     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
45915
45916     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45917
45918 commit ec22755799466c8a103664bb3a5e647bf9c238f4
45919 Author: Vlad Lungu <vlad@comsys.ro>
45920 Date:   Thu Oct 25 16:08:14 2007 +0300
45921
45922     Trimmed some variables in ne2000.c
45923
45924     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
45925
45926 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
45927 Author: Zhang Wei <wei.zhang@freescale.com>
45928 Date:   Thu Oct 25 17:51:27 2007 +0800
45929
45930     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
45931
45932     The scan code of the key 'z' is 0x1d, which should be handled.
45933
45934     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
45935     controller.
45936
45937     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45938
45939 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
45940 Author: Zhang Wei <wei.zhang@freescale.com>
45941 Date:   Thu Oct 25 17:30:04 2007 +0800
45942
45943     Fix USB support issue for MPC8641HPCN board.
45944
45945     The configuration file has already enabled USB, but it
45946     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
45947     on MPC8641HPCN can not work because of the wrong USB
45948     register endian.
45949
45950     And add the USB command to U-Boot commands list.
45951
45952     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45953
45954 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
45955 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45956 Date:   Wed Oct 24 18:16:01 2007 +0200
45957
45958     Use config_cmd_default.h instead of config_cmd_all.h
45959
45960     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45961
45962 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
45963 Author: Marian Balakowicz <m8@semihalf.com>
45964 Date:   Wed Oct 24 01:37:36 2007 +0200
45965
45966     TQM5200: Call usb_cpu_init() during board init
45967
45968     usb_cpu_init() configures GPS USB pins, clocks, etc. and
45969     is required for proper operation of kernel USB subsystem.
45970     This setup was previously done in the kernel by the fixup
45971     code which is being removed, thus low level init must be
45972     done by U-boot now.
45973
45974     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45975
45976 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
45977 Author: Guennadi Liakhovetski <lg@denx.de>
45978 Date:   Tue Oct 23 16:25:50 2007 +0200
45979
45980     Fix typo in nfs.c
45981
45982     An obvious typo. Originally fixed in linkstation u-boot port.
45983
45984     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45985
45986 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
45987 Author: Guennadi Liakhovetski <lg@denx.de>
45988 Date:   Tue Oct 23 14:35:05 2007 +0200
45989
45990     Fix a typo in cpu/mpc824x/interrupts.c
45991
45992     Since December 2003 the timer_interrupt_cpu() function in
45993     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
45994     parameter. Remove it.
45995
45996     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45997
45998 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
45999 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
46000 Date:   Wed Oct 17 11:13:51 2007 +0200
46001
46002     add ft_cpu_setup(..) on mpc8260
46003
46004     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
46005     based on code from mpc5xxx
46006
46007     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
46008     --
46009
46010 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
46011 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
46012 Date:   Wed Oct 17 11:18:42 2007 +0200
46013
46014     changes for IDS8247 board support
46015
46016     To get the IDS8247 board working following are done:
46017      - FCC2 is deactivated
46018      - FCC1 is activated
46019      - I2C is activated
46020      - CFI driver is activated
46021      - Adapted for use with LIBFDT
46022
46023     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
46024     --
46025
46026 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
46027 Author: Stefan Roese <sr@denx.de>
46028 Date:   Sat Nov 3 12:08:28 2007 +0100
46029
46030     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
46031
46032     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
46033     Again, only one image supports both targets.
46034
46035     Signed-off-by: Stefan Roese <sr@denx.de>
46036
46037 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
46038 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46039 Date:   Wed Oct 24 15:48:37 2007 +0200
46040
46041     ATSTK1002: Remove default ethernet addresses
46042
46043     Wolfgang is right: It's not a good idea to set up default initial
46044     ethernet addresses for a board, even though they belong to the local
46045     range.
46046
46047     This will change the failure mode from "IT manager screams at you for
46048     using duplicate ethernet addresses" to a nice error message explaining
46049     that the ethernet address hasn't been set properly.
46050
46051     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46052
46053 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
46054 Author: Justin Flammia <jflammia@savantav.com>
46055 Date:   Mon Oct 29 17:40:35 2007 -0400
46056
46057     DHCP Client Fix
46058
46059     This is a multi-part message in MIME format.
46060
46061     commit e6e505eae94ed721e123e177489291fc4544b7b8
46062     Author: Justin Flammia <jflammia@savantav.com>
46063     Date:   Mon Oct 29 17:19:03 2007 -0400
46064
46065         Found a bug in the way the DHCP Request packet is built, where the IP address
46066         that is offered by the server is bound to prematurely. This patch is a fix of
46067         that bug where the IP address offered by the DHCP server is not used until
46068         after the DHCP ACK from the server is received.
46069
46070     Signed-off-by: Justin Flammia <jflammia@savantav.com>
46071     Signed-off-by: Ben Warren <bwarren@qstreams.com>
46072
46073 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
46074 Author: Stefan Roese <sr@denx.de>
46075 Date:   Wed Oct 31 20:58:34 2007 +0100
46076
46077     ppc4xx: Fix acadia_nand build problem
46078
46079     Since the cache handling functions were moved from start.S into cache.S
46080     the acadia NAND booting Makfile needs to be adapted accordingly.
46081
46082     Signed-off-by: Stefan Roese <sr@denx.de>
46083
46084 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
46085 Author: Stefan Roese <sr@denx.de>
46086 Date:   Wed Oct 31 20:57:11 2007 +0100
46087
46088     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
46089
46090     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
46091     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
46092     boards by defining CONFIG_4xx_DCACHE in the board config file. This
46093     option will disappear, when more boards use is successfully and no
46094     more known problems exist.
46095
46096     This is tested successfully on Sequoia and Katmai. The only problem that
46097     needs to be fixed is, that USB is not working on Sequoia right now, since
46098     it will need some cache handling code too, similar to the 4xx EMAC driver.
46099
46100     Signed-off-by: Stefan Roese <sr@denx.de>
46101
46102 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
46103 Author: Stefan Roese <sr@denx.de>
46104 Date:   Wed Oct 31 20:51:10 2007 +0100
46105
46106     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
46107
46108     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
46109     disable the cache for the CPU POST tests, since these tests consist
46110     of self modifying code. This is done via the new change_tlb() function.
46111
46112     Signed-off-by: Stefan Roese <sr@denx.de>
46113
46114 commit f71b2888b4b3c870909a0341427b2a914246f81f
46115 Author: Stefan Roese <sr@denx.de>
46116 Date:   Wed Oct 31 20:47:26 2007 +0100
46117
46118     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
46119
46120     This patch enables the 4xx EMAC POST driver to work too, when dcache is
46121     enabled.
46122
46123     Signed-off-by: Stefan Roese <sr@denx.de>
46124
46125 commit a2685904061b35a17583d65fe47cdc2686a69eaa
46126 Author: Stefan Roese <sr@denx.de>
46127 Date:   Wed Oct 31 20:45:53 2007 +0100
46128
46129     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
46130
46131     Signed-off-by: Stefan Roese <sr@denx.de>
46132
46133 commit ff768cb168d8157c24a25016dbfbeb465e47f420
46134 Author: Stefan Roese <sr@denx.de>
46135 Date:   Wed Oct 31 18:01:24 2007 +0100
46136
46137     ppc4xx: Change 4xx ethernet driver to handle cached memory too
46138
46139     This patch enables the 4xx EMAC driver to work too, when dcache is
46140     enabled.
46141
46142     Signed-off-by: Stefan Roese <sr@denx.de>
46143
46144 commit 483e09a223c666269ef81d3573a6591b1046b0ef
46145 Author: Stefan Roese <sr@denx.de>
46146 Date:   Wed Oct 31 17:59:22 2007 +0100
46147
46148     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
46149
46150     This function is used to either turn cache on or off in a specific
46151     memory area.
46152
46153     Signed-off-by: Stefan Roese <sr@denx.de>
46154
46155 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
46156 Author: Stefan Roese <sr@denx.de>
46157 Date:   Wed Oct 31 17:57:52 2007 +0100
46158
46159     ppc4xx: Remove cache definition from 4xx board config files
46160
46161     All 4xx board config files don't need the cache definitions anymore.
46162     These are now defined in common headers.
46163
46164     Signed-off-by: Stefan Roese <sr@denx.de>
46165
46166 commit 9b94ac61d2176185c30adf0793e079ec30e68687
46167 Author: Stefan Roese <sr@denx.de>
46168 Date:   Wed Oct 31 17:55:58 2007 +0100
46169
46170     ppc4xx: Rework 4xx cache support
46171
46172     New cache handling functions added and all existing functions
46173     moved from start.S into seperate cache.S.
46174
46175     Signed-off-by: Stefan Roese <sr@denx.de>
46176
46177 commit 06713773da4ac3d390c63d82641eb553224b27c2
46178 Author: Stefan Roese <sr@denx.de>
46179 Date:   Tue Oct 23 18:03:12 2007 +0200
46180
46181     ppc4xx: Remove compiler warning from previous commit
46182
46183     Signed-off-by: Stefan Roese <sr@denx.de>
46184
46185 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
46186 Author: Stefan Roese <sr@denx.de>
46187 Date:   Tue Oct 23 14:40:30 2007 +0200
46188
46189     ppc4xx: Remove temporary TLB entry in POST cache test
46190
46191     Signed-off-by: Stefan Roese <sr@denx.de>
46192
46193 commit 1338e6a81834099ba19733b69aafd8ef5f098094
46194 Author: Stefan Roese <sr@denx.de>
46195 Date:   Tue Oct 23 14:05:08 2007 +0200
46196
46197     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
46198
46199     I lately noticed, that newer 4xx board with GBit support sometimes don't
46200     finish link autonegotiation in 4 seconds. Changing this timeout to 5
46201     seconds seems fine here.
46202
46203     Signed-off-by: Stefan Roese <sr@denx.de>
46204
46205 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
46206 Author: Stefan Roese <sr@denx.de>
46207 Date:   Tue Oct 23 14:03:17 2007 +0200
46208
46209     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
46210
46211     This patch changes all in32/out32 calls to use the recommended in_be32/
46212     out_be32 macros instead.
46213
46214     Signed-off-by: Stefan Roese <sr@denx.de>
46215
46216 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
46217 Author: Stefan Roese <sr@denx.de>
46218 Date:   Thu Oct 25 12:24:59 2007 +0200
46219
46220     ppc4xx: Fix POST ethernet test for Haleakala
46221
46222     The POST ethernet test needed to be changed to dynamically determine
46223     the count of ethernet devices. This code is cloned from the 4xx
46224     ethernet driver.
46225
46226     Signed-off-by: Stefan Roese <sr@denx.de>
46227
46228 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
46229 Author: Stefan Roese <sr@denx.de>
46230 Date:   Tue Oct 23 11:31:05 2007 +0200
46231
46232     ppc4xx: Correct UART input clock calculation and passing to fdt
46233
46234     We now use a value in the gd (global data) structure for the UART input
46235     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
46236     in get_sys_info().
46237
46238     Signed-off-by: Stefan Roese <sr@denx.de>
46239
46240 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
46241 Author: Stefan Roese <sr@denx.de>
46242 Date:   Tue Oct 23 10:10:08 2007 +0200
46243
46244     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
46245
46246     The Haleakala is nearly identical with the Kilauea eval board. The only
46247     difference is that the 405EXr only supports one EMAC and one PCIe
46248     interface. This patch adds support for the Haleakala board by using
46249     the identical image for Kilauea and Haleakala. The distinction is done
46250     by comparing the PVR.
46251
46252     Signed-off-by: Stefan Roese <sr@denx.de>
46253
46254 commit 9f798766aa85e62eb8fa8c721e148df609b78137
46255 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
46256 Date:   Tue Oct 23 08:29:10 2007 +0200
46257
46258     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
46259
46260     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
46261
46262     Note:
46263     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
46264     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
46265     modules are still plugged in. So it is recommended to remove the DIMM
46266     modules while using the NAND booting code with the fixed SDRAM setup!
46267
46268     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
46269     Signed-off-by: Stefan Roese <sr@denx.de>
46270
46271 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
46272 Author: Stefan Roese <sr@denx.de>
46273 Date:   Mon Oct 22 16:24:44 2007 +0200
46274
46275     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
46276
46277     Signed-off-by: Stefan Roese <sr@denx.de>
46278
46279 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
46280 Author: Stefan Roese <sr@denx.de>
46281 Date:   Mon Oct 22 16:22:40 2007 +0200
46282
46283     ppc4xx: Rework of 4xx serial driver (4)
46284
46285     Change 4xx_uart.c:
46286
46287     - Use in_8/out_8 macros instead of in8/out8
46288     - No need for UART_BASE marco anymore, now really handled via function
46289       parameter
46290     - serial_init_common() introduced
46291     - Further coding style cleanup
46292
46293     Signed-off-by: Stefan Roese <sr@denx.de>
46294
46295 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
46296 Author: Stefan Roese <sr@denx.de>
46297 Date:   Mon Oct 22 15:45:49 2007 +0200
46298
46299     ppc4xx: Rework of 4xx serial driver (3)
46300
46301     Change all linker scripts to reference the changed driver name iop480_uart.o.
46302
46303     Signed-off-by: Stefan Roese <sr@denx.de>
46304
46305 commit 882ae41274921f9016131806bdeb27e19606f47a
46306 Author: Stefan Roese <sr@denx.de>
46307 Date:   Mon Oct 22 15:44:39 2007 +0200
46308
46309     ppc4xx: Rework of 4xx serial driver (2)
46310
46311     Change all linker scripts to reference the changed driver name 4xx_uart.o.
46312
46313     Note: In most cased all these explicit referencing of these object files
46314     in the linker scripts is not neccessary. Only for manually embedded
46315     environment into the U-Boot image, which is not done is most cases.
46316
46317     Signed-off-by: Stefan Roese <sr@denx.de>
46318
46319 commit ad31e40bed042cb670d0036fea96435007afb838
46320 Author: Stefan Roese <sr@denx.de>
46321 Date:   Mon Oct 22 15:09:59 2007 +0200
46322
46323     ppc4xx: Rework of 4xx serial driver (1)
46324
46325     This patch starts the rework of the PPC4xx serial driver. First we split
46326     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
46327     handling code and the other one iop480_uart.c with the UART code for the
46328     PLX-Tech IOP480 PPC (PPC403 based).
46329
46330     Signed-off-by: Stefan Roese <sr@denx.de>
46331
46332 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
46333 Author: Stefan Roese <sr@denx.de>
46334 Date:   Mon Oct 22 10:30:38 2007 +0200
46335
46336     ppc4xx: Correct UART input clock calculation and passing to fdt
46337
46338     Signed-off-by: Stefan Roese <sr@denx.de>
46339
46340 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
46341 Author: Stefan Roese <sr@denx.de>
46342 Date:   Mon Oct 22 07:34:34 2007 +0200
46343
46344     ppc4xx: Add initial AMCC Makalu 405EX support
46345
46346     Signed-off-by: Stefan Roese <sr@denx.de>
46347
46348 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
46349 Author: Stefan Roese <sr@denx.de>
46350 Date:   Mon Oct 22 07:33:52 2007 +0200
46351
46352     ppc4xx: Add freqUART to CPU speed detection
46353
46354     This value is needed later for the device tree configuration of
46355     the uart clock.
46356
46357     Signed-off-by: Stefan Roese <sr@denx.de>
46358
46359 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
46360 Author: Stefan Roese <sr@denx.de>
46361 Date:   Sun Oct 21 14:26:29 2007 +0200
46362
46363     ppc: Small Kilauea cleanup of config file
46364
46365     Signed-off-by: Stefan Roese <sr@denx.de>
46366
46367 commit 758c037aeead34b49631b8da3a90b1bba14c0410
46368 Author: Stefan Roese <sr@denx.de>
46369 Date:   Sun Oct 21 08:16:12 2007 +0200
46370
46371     rtc: Add Xicor/Intersil X1205 RTC support
46372
46373     This patch adds support for the Xicor/Intersil X1205 RTC used on the
46374     AMCC Makalu eval board. This driver is basically cloned from the Linux
46375     driver version (2.6.23).
46376
46377     This patch also introduces the Linux bcd.h header for the BCD2BIN/
46378     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
46379     should be converted to also use this header instead of implementing
46380     their own local copy of these functions/macros.
46381
46382     Signed-off-by: Stefan Roese <sr@denx.de>
46383
46384 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
46385 Author: Stefan Roese <sr@denx.de>
46386 Date:   Sun Oct 21 08:12:41 2007 +0200
46387
46388     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
46389
46390     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
46391     PPC440_SYS_INFO structure into the common ppc4xx.h header.
46392
46393     Lot's of other macros are good candidates to be consolidated this way
46394     in the future.
46395
46396     Signed-off-by: Stefan Roese <sr@denx.de>
46397
46398 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
46399 Author: Stefan Roese <sr@denx.de>
46400 Date:   Sun Oct 21 08:05:18 2007 +0200
46401
46402     ppc4xx: Fix size setup in Kilauea DDR2 init routine
46403
46404     The size was initilized wrong. Instead of 256MB, the DDR2 controller
46405     was setup to 512MB. Now the correct values is used.
46406
46407     This patch also does a little cleanup and adds a comment here.
46408
46409     Signed-off-by: Stefan Roese <sr@denx.de>
46410
46411 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
46412 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
46413 Date:   Thu Oct 18 17:29:04 2007 +0200
46414
46415     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
46416
46417     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
46418     number is used to access system registers.
46419
46420     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
46421     Signed-off-by: Stefan Roese <sr@denx.de>
46422
46423 commit c36c68160333ac5fe41ec3db12a728b7075b3912
46424 Author: Stefan Roese <sr@denx.de>
46425 Date:   Thu Oct 18 07:42:27 2007 +0200
46426
46427     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
46428
46429     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
46430     is the internal SRAM. Since I now ported and tested this endpoint mode
46431     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
46432     Katmai.
46433
46434     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
46435     this setup.
46436
46437     Signed-off-by: Stefan Roese <sr@denx.de>
46438
46439 commit 5cb4af4791f61843432155142b6cfac901f66c10
46440 Author: Stefan Roese <sr@denx.de>
46441 Date:   Thu Oct 18 07:39:38 2007 +0200
46442
46443     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
46444
46445     This patch adds endpoint support for the AMCC Kilauea eval board. It can
46446     be tested by connecting a reworked PCIe cable (only 1x lane singles
46447     connected) to another root-complex.
46448
46449     In this test setup, a 64MB inbound window is configured at BAR0 which maps
46450     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
46451     access the first 64MB of the SDRAM on the PPC side.
46452
46453     Signed-off-by: Stefan Roese <sr@denx.de>
46454
46455 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
46456 Author: Stefan Roese <sr@denx.de>
46457 Date:   Sat Oct 13 16:43:23 2007 +0200
46458
46459     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
46460
46461     This patch adds support for dynamic configuration of PCIe ports for the
46462     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
46463     boards Yucca & Katmai and the 405EX board Kilauea.
46464
46465     This dynamic configuration is done via the "pcie_mode" environement
46466     variable. This variable can be set to "EP" or "RP" for endpoint or
46467     rootpoint mode. Multiple values can be joined via the ":" delimiter.
46468     Here an example:
46469
46470     pcie_mode=RP:EP:EP
46471
46472     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
46473     as endpoint.
46474
46475     Per default Yucca will be configured as:
46476     pcie_mode=RP:EP:EP
46477
46478     Per default Katmai will be configured as:
46479     pcie_mode=RP:RP:REP
46480
46481     Per default Kilauea will be configured as:
46482     pcie_mode=RP:RP
46483
46484     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
46485     Signed-off-by: Stefan Roese <sr@denx.de>
46486
46487 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
46488 Author: Stefan Roese <sr@denx.de>
46489 Date:   Thu Oct 11 11:15:59 2007 +0200
46490
46491     ppc4xx: Enable device tree support (fdt) on Kilauea per default
46492
46493     This patch enables the fdt support on the AMCC Kilauea eval board.
46494     Additionally now EBC ranges fdt fixup is included to support NOR
46495     FLASH mapping via the Linux physmap_of driver.
46496
46497     This Kilauea port now support booting arch/ppc and arch/powerpc
46498     Linux kernels. The default environment "net_nfs" is for arch/ppc
46499     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
46500     support will be removed.
46501
46502     Signed-off-by: Stefan Roese <sr@denx.de>
46503
46504 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
46505 Author: Stefan Roese <sr@denx.de>
46506 Date:   Thu Oct 11 11:11:45 2007 +0200
46507
46508     ppc4xx: Add additional debug info to 4xx fdt support
46509
46510     Signed-off-by: Stefan Roese <sr@denx.de>
46511
46512 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
46513 Author: Stefan Roese <sr@denx.de>
46514 Date:   Fri Oct 5 21:28:58 2007 +0200
46515
46516     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
46517
46518     Signed-off-by: Stefan Roese <sr@denx.de>
46519
46520 commit 1941cce71b1ae975602854045061e82f94ecd012
46521 Author: Stefan Roese <sr@denx.de>
46522 Date:   Fri Oct 5 17:35:10 2007 +0200
46523
46524     ppc4xx: Fix small merge problem in 4xx_enet.c
46525
46526     Signed-off-by: Stefan Roese <sr@denx.de>
46527
46528 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
46529 Author: Stefan Roese <sr@denx.de>
46530 Date:   Fri Oct 5 17:11:30 2007 +0200
46531
46532     ppc4xx: Add initial AMCC Kilauea 405EX support
46533
46534     Signed-off-by: Stefan Roese <sr@denx.de>
46535
46536 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
46537 Author: Stefan Roese <sr@denx.de>
46538 Date:   Fri Oct 5 17:10:59 2007 +0200
46539
46540     ppc4xx: Add PPC405EX support
46541
46542     Signed-off-by: Stefan Roese <sr@denx.de>
46543
46544 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
46545 Author: Stefan Roese <sr@denx.de>
46546 Date:   Fri Oct 5 17:09:36 2007 +0200
46547
46548     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
46549
46550     Signed-off-by: Stefan Roese <sr@denx.de>
46551
46552 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
46553 Author: Stefan Roese <sr@denx.de>
46554 Date:   Fri Oct 5 17:07:50 2007 +0200
46555
46556     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
46557
46558     Signed-off-by: Stefan Roese <sr@denx.de>
46559
46560 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
46561 Author: Stefan Roese <sr@denx.de>
46562 Date:   Fri Oct 5 17:04:57 2007 +0200
46563
46564     POST: Add 405EX support to 4xx UART POST test
46565
46566     Signed-off-by: Stefan Roese <sr@denx.de>
46567
46568 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
46569 Author: Stefan Roese <sr@denx.de>
46570 Date:   Fri Oct 5 15:10:02 2007 +0200
46571
46572     DTT: Prepare DS1775 driver for use of different I2C addresses
46573
46574     Signed-off-by: Stefan Roese <sr@denx.de>
46575
46576 commit 19e93b1e16d267220440d827b920fbad8abfa70f
46577 Author: Stefan Roese <sr@denx.de>
46578 Date:   Fri Oct 5 14:23:43 2007 +0200
46579
46580     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
46581
46582     Signed-off-by: Stefan Roese <sr@denx.de>
46583
46584 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
46585 Author: Stefan Roese <sr@denx.de>
46586 Date:   Fri Oct 5 09:22:33 2007 +0200
46587
46588     ppc4xx: 4xx_pcie: Disable debug output as default
46589
46590     Signed-off-by: Stefan Roese <sr@denx.de>
46591
46592 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
46593 Author: Stefan Roese <sr@denx.de>
46594 Date:   Fri Oct 5 09:18:23 2007 +0200
46595
46596     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
46597
46598     Signed-off-by: Stefan Roese <sr@denx.de>
46599
46600 commit 4dbee8a90df613eb517aadbecebd70f168913d30
46601 Author: Stefan Roese <sr@denx.de>
46602 Date:   Fri Oct 5 07:57:20 2007 +0200
46603
46604     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
46605
46606     128MB seems to be the smallest possible value for the memory size
46607     for on PCIe port. With this change now the BAR's of the PCIe cards
46608     are accessible under U-Boot.
46609
46610     One big note: This only works for PCIe port 0 & 1. For port 2 this
46611     currently doesn't work, since the base address is now 0xc0000000
46612     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
46613     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
46614     to change the base addresses completely and this change would have
46615     too much impact right now.
46616
46617     This patch adds debug output to the 4xx pcie driver too.
46618
46619     Signed-off-by: Stefan Roese <sr@denx.de>
46620
46621 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
46622 Author: Stefan Roese <sr@denx.de>
46623 Date:   Wed Oct 3 21:16:32 2007 +0200
46624
46625     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
46626
46627     Signed-off-by: Stefan Roese <sr@denx.de>
46628
46629 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
46630 Author: Stefan Roese <sr@denx.de>
46631 Date:   Wed Oct 3 15:01:02 2007 +0200
46632
46633     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
46634
46635     These files were introduced with the IBM 405GP but are currently used on all
46636     4xx PPC platforms. So the name doesn't match the content anymore. This patch
46637     renames the files to 4xx_pci.c/h.
46638
46639     Signed-off-by: Stefan Roese <sr@denx.de>
46640
46641 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
46642 Author: Stefan Roese <sr@denx.de>
46643 Date:   Wed Oct 3 14:14:58 2007 +0200
46644
46645     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
46646
46647     Signed-off-by: Stefan Roese <sr@denx.de>
46648
46649 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
46650 Author: Stefan Roese <sr@denx.de>
46651 Date:   Wed Oct 3 10:38:09 2007 +0200
46652
46653     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
46654
46655     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
46656         the SDR registers of the PCIe ports. This makes the overall design
46657         clearer, since it removed a lot of switch statements which are not
46658         needed anymore.
46659
46660         Also, the functions ppc4xx_init_pcie_rootport() and
46661         ppc4xx_init_pcie_entport() are merged into a single function
46662         ppc4xx_init_pcie_port(), since most of the code was duplicated.
46663         This makes maintainance and porting to other 4xx platforms
46664         easier.
46665
46666     Signed-off-by: Stefan Roese <sr@denx.de>
46667
46668 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
46669 Author: Stefan Roese <sr@denx.de>
46670 Date:   Wed Oct 3 07:48:09 2007 +0200
46671
46672     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
46673
46674     This patch is the first patch of a series to make the 440SPe PCIe code
46675     usable on different 4xx PPC platforms. In preperation for the new 405EX
46676     which is also equipped with PCIe interfaces.
46677
46678     (2) This patch renames the functions from 440spe_ to 4xx_ with a
46679         little additional cleanup
46680
46681     Signed-off-by: Stefan Roese <sr@denx.de>
46682
46683 commit c7c6da23028f146d912514b95aefa3da7cf37699
46684 Author: Stefan Roese <sr@denx.de>
46685 Date:   Wed Oct 3 07:34:10 2007 +0200
46686
46687     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
46688
46689     This patch is the first patch of a series to make the 440SPe PCIe code
46690     usable on different 4xx PPC platforms. In preperation for the new 405EX
46691     which is also equipped with PCIe interfaces.
46692
46693     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
46694
46695     Signed-off-by: Stefan Roese <sr@denx.de>
46696
46697 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
46698 Author: Marian Balakowicz <m8@semihalf.com>
46699 Date:   Wed Oct 24 01:37:36 2007 +0200
46700
46701     TQM5200: Call usb_cpu_init() during board init
46702
46703     usb_cpu_init() configures GPS USB pins, clocks, etc. and
46704     is required for proper operation of kernel USB subsystem.
46705     This setup was previously done in the kernel by the fixup
46706     code which is being removed, thus low level init must be
46707     done by U-boot now.
46708
46709     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46710     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46711
46712 commit b5af773f8d92677e06f3295b45557c9d0a487c24
46713 Author: Zhang Wei <wei.zhang@freescale.com>
46714 Date:   Thu Oct 25 17:51:27 2007 +0800
46715
46716     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
46717
46718     The scan code of the key 'z' is 0x1d, which should be handled.
46719
46720     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
46721     controller.
46722
46723     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
46724     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46725
46726 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
46727 Author: Rodolfo Giometti <giometti@enneenne.com>
46728 Date:   Mon Oct 15 11:59:17 2007 +0200
46729
46730     PXA USB OHCI: "usb stop" implementation.
46731
46732     Some USB keys need to be switched off before loading the kernel
46733     otherwise they can remain in an undefined status which prevents them
46734     to be correctly recognized by the kernel.
46735
46736     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
46737     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46738
46739 commit 31548249decf18a6b877a18436b6139dd483fe4a
46740 Author: Justin Flammia <jflammia@savantav.com>
46741 Date:   Mon Oct 29 17:40:35 2007 -0400
46742
46743     DHCP Client Fix
46744
46745     This is a multi-part message in MIME format.
46746
46747     commit e6e505eae94ed721e123e177489291fc4544b7b8
46748     Author: Justin Flammia <jflammia@savantav.com>
46749     Date:   Mon Oct 29 17:19:03 2007 -0400
46750
46751         Found a bug in the way the DHCP Request packet is built, where the IP address
46752         that is offered by the server is bound to prematurely. This patch is a fix of
46753         that bug where the IP address offered by the DHCP server is not used until
46754         after the DHCP ACK from the server is received.
46755
46756     Signed-off-by: Justin Flammia <jflammia@savantav.com>
46757     Signed-off-by: Ben Warren <bwarren@qstreams.com>
46758
46759 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
46760 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46761 Date:   Thu Oct 25 17:16:22 2007 -0500
46762
46763     ColdFire 54455: Fix correct boot location for atmel and intel
46764
46765     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46766
46767 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
46768 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46769 Date:   Thu Oct 25 17:14:00 2007 -0500
46770
46771     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
46772
46773     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46774
46775 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
46776 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46777 Date:   Thu Oct 25 17:12:36 2007 -0500
46778
46779     ColdFire 5329: Assign correct SDRAM size and fix cache
46780
46781     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46782
46783 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
46784 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46785 Date:   Thu Oct 25 17:10:23 2007 -0500
46786
46787     ColdFire 5253: Assign correct SDRAM size
46788
46789     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46790
46791 commit 2acefa72ee0026f862ab65597ca687428f63a973
46792 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46793 Date:   Thu Oct 25 17:09:17 2007 -0500
46794
46795     ColdFire 5282: Fix external flash boot and return dramsize
46796
46797     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46798
46799 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
46800 Author: Bartlomiej Sieka <tur@semihalf.com>
46801 Date:   Thu Oct 25 17:20:01 2007 +0200
46802
46803     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
46804
46805     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46806
46807 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
46808 Author: Martin Krause <martin.krause@tqs.de>
46809 Date:   Wed Oct 24 08:42:25 2007 +0200
46810
46811     TQM5200: fix spurious characters on second serial interface
46812
46813     With this patch PSC3 is configured as UART. This is done, because if
46814     the pins of PSC3 are not configured at all (-> all pins are GPI),
46815     due to crosstalk, spurious characters may be send over the RX232_2_TXD
46816     signal line.
46817
46818     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46819     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46820
46821 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
46822 Author: Martin Krause <martin.krause@tqs.de>
46823 Date:   Wed Oct 24 08:41:27 2007 +0200
46824
46825     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
46826
46827     Some commands for the STK52xx base board try to access the SM501 grafic
46828     controller. But the TQM5200S has no grafic controller (only the TQM5200
46829     and the TQM5200B have). This patch deactivates the commands accessing
46830     the SM501 for the TQM5200S.
46831
46832     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46833     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46834
46835 commit b31f64343ead9482cd439b1adbe4c34026a641b1
46836 Author: Martin Krause <martin.krause@tqs.de>
46837 Date:   Mon Oct 22 16:45:53 2007 +0200
46838
46839     TQM5200: fix spurious characters on second serial interface
46840
46841     With this patch PSC3 is configured as UART. This is done, because if
46842     the pins of PSC3 are not configured at all (-> all pins are GPI),
46843     due to crosstalk, spurious characters may be send over the RX232_2_TXD
46844     signal line.
46845
46846     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46847
46848 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
46849 Author: Martin Krause <martin.krause@tqs.de>
46850 Date:   Mon Oct 22 16:40:06 2007 +0200
46851
46852     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
46853
46854     Some commands for the STK52xx base board try to access the SM501 grafic
46855     controller. But the TQM5200S has no grafic controller (only the TQM5200
46856     and the TQM5200B have). This patch deactivates the commands accessing
46857     the SM501 for the TQM5200S.
46858
46859     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46860
46861 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
46862 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46863 Date:   Sun Oct 21 09:14:28 2007 +0200
46864
46865     Mips: Fix string functions differ prototype declaration
46866
46867     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46868
46869 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
46870 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
46871 Date:   Fri Oct 19 17:51:40 2007 -0500
46872
46873     fsl_pci_init enable COMMAND_MEMORY if inbound window
46874
46875     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
46876     to pciauto_setup_device has the side effect of not getting
46877     COMMAND_MEMORY set.
46878
46879     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46880
46881 commit e9d0d527992566ebef9826962ff1745b2f082b92
46882 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46883 Date:   Fri Oct 19 10:55:24 2007 +0200
46884
46885     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
46886
46887     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46888
46889 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
46890 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46891 Date:   Fri Oct 19 08:10:15 2007 +0200
46892
46893     fix warning: no return statement in function returning non-void
46894
46895     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46896
46897 commit e78220f6e514206757acfe247297fc9a328a881f
46898 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46899 Date:   Fri Oct 19 06:33:45 2007 +0200
46900
46901     xsengine: Fix no partition type specified, use DOS as default
46902
46903     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46904
46905 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
46906 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46907 Date:   Fri Oct 19 00:24:59 2007 +0200
46908
46909     lubbock: Fix no partition type specified, use DOS as default
46910
46911     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46912
46913 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
46914 Author: Wolfgang Denk <wd@denx.de>
46915 Date:   Tue Oct 23 16:50:03 2007 +0200
46916
46917     Coding style: keep lists sorted; update CHANGELOG
46918
46919     Signed-off-by: Wolfgang Denk <wd@denx.de>
46920
46921 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
46922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46923 Date:   Fri Oct 19 00:09:05 2007 +0200
46924
46925     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
46926
46927     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46928
46929 commit 96455bfebc9887837095c9051d216f53c61b5f10
46930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46931 Date:   Fri Oct 19 00:07:39 2007 +0200
46932
46933     Fix warning differ in signedness in board/innokom/innokom.c
46934
46935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46936
46937 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
46938 Author: Marcel Ziswiler <marcel@ziswiler.com>
46939 Date:   Fri Oct 19 00:25:33 2007 +0200
46940
46941     fix pxa255_idp board
46942
46943     The pxa255_idp being an old unmaintained board showed several issues:
46944     1. CONFIG_INIT_CRITICAL was still defined.
46945     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
46946     3. Symbol flash_addr was undeclared.
46947     4. The boards lowlevel_init function was still called memsetup.
46948     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
46949     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
46950     'target CPU does not support interworking' warnings on recent compilers.
46951     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
46952     indexes rather than the register definitions from the pxa-regs header
46953     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
46954     avoid any ambiguities.
46955     8. There were several redefinition warnings concerning ICMR, OSMR3,
46956     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
46957     9. The board configuration file was rather outdated.
46958     10. The part header file defined the vendor, product and revision arrays
46959     as unsigned chars instead of just chars in the block_dev_desc_t
46960     structure.
46961
46962     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
46963
46964 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
46965 Author: Rune Torgersen <runet@innovsys.com>
46966 Date:   Wed Oct 17 11:56:31 2007 -0500
46967
46968     Make MPC8266ADS command selection more robust
46969
46970     Fix MPC8266 command line definition so it won't break when new commands
46971     are added to u-boot.
46972     Signed-off-by Rune Torgersen <runet@innovsys.com>
46973
46974 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
46975 Author: Bartlomiej Sieka <tur@semihalf.com>
46976 Date:   Tue Oct 23 13:14:10 2007 +0200
46977
46978     Motion-PRO: Update configuration to accomodate next generation board.
46979
46980     New board has faster oscillator and a different Flash chip. This affects:
46981     - CFG_MPC5XXX_CLKIN
46982     - SDRAM timings
46983     - Flash CS configuration (timings)
46984     - Flash sector size, and thus MTD partition layout
46985     - malloc() arena size (due to bigger Flash sectors)
46986     - smaller memory test range (due to bigger malloc() arena)
46987
46988     This patch also enables more extensive memory testing via "mtest".
46989
46990     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46991
46992 commit eff501904df2bf1724a750062628ba2c51dbb1f8
46993 Author: Bartlomiej Sieka <tur@semihalf.com>
46994 Date:   Tue Oct 23 11:36:07 2007 +0200
46995
46996     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
46997
46998     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
46999     register must be written a value of 0x00000004 as the first step of the
47000     SDRAM contorller configuration.
47001
47002     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
47003
47004 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
47005 Author: Peter Pearse <peter.pearse@arm.com>
47006 Date:   Tue Oct 23 10:22:16 2007 +0100
47007
47008     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
47009
47010 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
47011 Author: Stefan Roese <sr@denx.de>
47012 Date:   Tue Oct 23 10:17:42 2007 +0200
47013
47014     ppc4xx: lwmon5: Some further GPIO config changes
47015
47016     Signed-off-by: Stefan Roese <sr@denx.de>
47017
47018 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
47019 Author: Vlad Lungu <vlad@comsys.ro>
47020 Date:   Sun Oct 21 22:10:10 2007 +0900
47021
47022     [MIPS] Fix UNCACHED_SDRAM
47023
47024     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
47025
47026     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
47027     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47028
47029 commit 00101dd7a32d12f698150123e47e4b3420279f86
47030 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47031 Date:   Sun Oct 21 21:30:42 2007 +0900
47032
47033     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
47034
47035     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47036
47037 commit eb700636db017d310edaeb559b13d82588560674
47038 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47039 Date:   Sun Oct 21 10:55:37 2007 +0900
47040
47041     [MIPS] u-boot.lds: Define _gp in a standard manner
47042
47043     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47044
47045 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
47046 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47047 Date:   Sun Oct 21 10:55:36 2007 +0900
47048
47049     [MIPS] Fix $gp usage
47050
47051     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
47052     As a general principle, we should use _gp for $gp.
47053
47054     Thanks to linker script's help we fortunately have _gp which equals to
47055     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
47056     be able to access to GOT entires, global variables and procedure entry
47057     points. The right thing to do is to use _gp.
47058
47059     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
47060     which holds the offset from _gp. When updating GOT entries, we use this
47061     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
47062
47063     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
47064     I made some change to leave over num_got_entries.
47065
47066     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47067     Cc: Vlad Lungu <vlad@comsys.ro>
47068
47069 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
47070 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47071 Date:   Sun Oct 21 10:55:36 2007 +0900
47072
47073     [MIPS] u-boot.lds: Fix __got_start and __got_end
47074
47075     Ensure that __got_start points to top of the `.got', and __got_end points
47076     to bottom as well, so that we never fail to count num_got_entries.
47077
47078     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47079
47080 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
47081 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47082 Date:   Sun Oct 21 10:55:36 2007 +0900
47083
47084     [MIPS] u-boot.lds: Remove duplicated .sdata section
47085
47086     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47087
47088 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
47089 Author: Wolfgang Denk <wd@denx.de>
47090 Date:   Sun Oct 21 01:01:17 2007 +0200
47091
47092     Minor coding style cleanup; update CHANGELOG
47093
47094     Signed-off-by: Wolfgang Denk <wd@denx.de>
47095
47096 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
47097 Author: Vlad Lungu <vlad@comsys.ro>
47098 Date:   Thu Oct 4 20:47:10 2007 +0300
47099
47100     Fix NE2000 driver:
47101
47102     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
47103     to do anything in eth_stop() if eth_init() was not called.
47104     Simplified RX path in order to avoid timeouts on really really
47105     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
47106     clever enough to cope with 1 packet per eth_rx().
47107
47108     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
47109
47110 commit df90968b48fb34fa9072fab150db2ac89678f537
47111 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
47112 Date:   Mon Sep 24 13:32:13 2007 -0400
47113
47114     Setting MSR[DE] in do_reset
47115
47116     Hello,
47117        This patch ensures the soft reset of the board for the 85xx boards
47118        by setting the MSR[DE] in the do_reset function.
47119
47120     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
47121
47122 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
47123 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
47124 Date:   Mon Sep 24 13:36:01 2007 -0400
47125
47126     MSR overwrite fix
47127
47128     Hello,
47129       This patch fixes the MSR overwrite in the start.S when moving out of
47130       the last 4K page.
47131
47132     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
47133
47134 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
47135 Author: Dan Wilson <dwilson@fulcrummicro.com>
47136 Date:   Fri Oct 19 11:33:48 2007 -0500
47137
47138     tsec driver should clear RHALT on startup
47139
47140     This was causing problems for some people.
47141
47142     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
47143     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
47144     Signed-off-by: Andy Fleming <afleming@freescale.com>
47145
47146 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
47147 Author: Kumar Gala <galak@kernel.crashing.org>
47148 Date:   Thu Oct 11 00:29:18 2007 -0500
47149
47150     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
47151
47152     On the MPC85xx CDS we have two issues:
47153
47154     1. The device tree fixup code did not check to see if the property we are
47155     trying to update is actually found.  Its possible that it would update
47156     random memory starting at 0.
47157
47158     2. Newer Linux kernel's have moved the location of the PCI nodes to be
47159     sibilings of the soc node and not children.  The explicit PATH to the PCI
47160     node would not be found for these device trees.  Add the ability to handle
47161     both paths.  In the future we shouldn't handle such fixups by explicit path.
47162
47163     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47164
47165 commit a3063eec775719b7e91023bbec3f64b3118791df
47166 Author: Kumar Gala <galak@kernel.crashing.org>
47167 Date:   Thu Oct 11 00:18:48 2007 -0500
47168
47169     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
47170
47171     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
47172     console.  Make it so we match that config what we tell Linux as the early
47173     STDOUT console.
47174
47175     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47176
47177 commit e1ce3cb617bb06f91f82f98915391175addf3e82
47178 Author: Kumar Gala <galak@kernel.crashing.org>
47179 Date:   Tue Oct 2 11:12:27 2007 -0500
47180
47181     Remove magic numbers from cache related operations for mpc85xx
47182
47183     The mpc85xx start code uses some magic numbers that we actually
47184     have #defines for in <config.h> so use those instead.
47185
47186     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47187
47188 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
47189 Author: Detlev Zundel <dzu@denx.de>
47190 Date:   Fri Oct 19 16:47:26 2007 +0200
47191
47192     Fix two typos.
47193
47194     Signed-off-by: Detlev Zundel <dzu@denx.de>
47195
47196 commit 281df457c1aa50d2752165d0c5c3282d4027b974
47197 Author: Tony Li <tony.li@freescale.com>
47198 Date:   Thu Oct 18 17:47:19 2007 +0800
47199
47200     mpc83xx: Add configure entry for MPC83xx ATM support
47201
47202     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
47203     Makfile and MAKEALL
47204
47205     Signed-off-by: Tony Li <tony.li@freescale.com>
47206     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47207
47208 commit d2646554f529a9577515eceb0ec5eceee18244ba
47209 Author: Tony Li <tony.li@freescale.com>
47210 Date:   Thu Oct 18 17:44:38 2007 +0800
47211
47212     mpc83xx: pq-mds-pib.c typo error
47213
47214     Correct to val8 from val.
47215
47216     Signed-off-by: Tony Li <tony.li@freescale.com>
47217     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47218
47219 commit 3e11ae80fec1ee12194940955431186abf6009c2
47220 Author: Stefan Roese <sr@denx.de>
47221 Date:   Wed Oct 17 15:40:19 2007 +0200
47222
47223     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
47224
47225     Signed-off-by: Stefan Roese <sr@denx.de>
47226
47227 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
47228 Author: Jon Loeliger <jdl@freescale.com>
47229 Date:   Tue Oct 16 15:27:43 2007 -0500
47230
47231     Initial mpc8610hpcd Makefile files.
47232
47233     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47234     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
47235     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
47236     Signed-off-by: Jon Loeliger <jdl@freescale.com>
47237
47238 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
47239 Author: Jon Loeliger <jdl@freescale.com>
47240 Date:   Tue Oct 16 15:26:51 2007 -0500
47241
47242     Initial mpc8610hpcd cpu/, README and include/ files.
47243
47244     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47245     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
47246     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
47247     Signed-off-by: Jon Loeliger <jdl@freescale.com>
47248
47249 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
47250 Author: Jon Loeliger <jdl@freescale.com>
47251 Date:   Tue Oct 16 13:54:01 2007 -0500
47252
47253     Initial mpc8610hpcd board files.
47254
47255     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47256     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
47257     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
47258     Signed-off-by: Jon Loeliger <jdl@freescale.com>
47259
47260 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
47261 Author: runet@innovsys.com <runet@innovsys.com>
47262 Date:   Tue Oct 16 14:50:40 2007 -0500
47263
47264     Make MPC8266ADS board compile again.
47265
47266     Signed-off-by: Runet Torgersen <runet@innovsys.com>
47267
47268 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
47269 Author: Jon Loeliger <jdl@freescale.com>
47270 Date:   Mon Aug 27 12:41:03 2007 -0500
47271
47272     86xx: Allow for fewer DDR slots per memory controller.
47273
47274     As a direct correlation exists between DDR DIMM slots
47275     and SPD EEPROM addresses used to configure them, use
47276     the individually defined SPD_EEPROM_ADDRESS* values to
47277     determine if a DDR DIMM slot should have its SPD
47278     configuration read or not.
47279
47280     Effectively, this now allows for 1 or 2 DIMM slots
47281     per memory controller.
47282
47283     Signed-off-by: Jon Loeliger <jdl@freescale.com>
47284
47285 commit 4d4a945e189a2f384c66432316da2788a0ac1607
47286 Author: Rodolfo Giometti <giometti@enneenne.com>
47287 Date:   Mon Oct 15 11:59:17 2007 +0200
47288
47289     PXA USB OHCI: "usb stop" implementation.
47290
47291     Some USB keys need to be switched off before loading the kernel
47292     otherwise they can remain in an undefined status which prevents them
47293     to be correctly recognized by the kernel.
47294
47295     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
47296
47297 commit e2e93442e558cf1500e92861f99713b2f045ea22
47298 Author: Stefan Roese <sr@denx.de>
47299 Date:   Mon Oct 15 11:39:00 2007 +0200
47300
47301     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
47302
47303     The I2C bootstrap values that can be setup via the "bootstrap" command,
47304     were setup incorrect regarding the generation of the internal sync PCI
47305     clock. The values for PLB clock == 133MHz were slighly incorrect and the
47306     values for PLB clock == 166MHz were totally incorrect. This could
47307     lead to a hangup upon booting while PCI configuration scan.
47308
47309     This patch fixes this issue and configures valid PCI divisor values
47310     for the sync PCI clock, with respect to the provided external async
47311     PCI frequency.
47312
47313     Here the values of the formula in the chapter 14.2 "PCI clocking"
47314     from the 440EPx users manual:
47315
47316     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
47317
47318     33MHz async PCI frequency:
47319     PLB = 133:
47320     =>      32 <= 44.3 <= 65        (div = 3)
47321
47322     PLB = 166:
47323     =>      32 <= 55.3 <= 65        (div = 3)
47324
47325     66MHz async PCI frequency:
47326     PLB = 133:
47327     =>      65 <= 66.5 <= 132       (div = 2)
47328
47329     PLB = 166:
47330     =>      65 <= 83 <= 132         (div = 2)
47331
47332     Signed-off-by: Stefan Roese <sr@denx.de>
47333
47334 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
47335 Author: Stefan Roese <sr@denx.de>
47336 Date:   Mon Oct 15 11:29:33 2007 +0200
47337
47338     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
47339
47340     The BCSR status bit for the 66MHz PCI operation was correctly
47341     addressed (MSB/LSB problem). Now the correct currently setup
47342     PCI frequency is displayed upon bootup.
47343
47344     This patch also fixes this problem on Rainier & Yellowstone, since these
47345     boards use the same souce code as Sequoia & Yosemite do.
47346
47347     Signed-off-by: Stefan Roese <sr@denx.de>
47348
47349 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
47350 Author: Martin Krause <martin.krause@tqs.de>
47351 Date:   Wed Sep 26 17:55:56 2007 +0200
47352
47353     TQM860M: adjust for doubled flash sector size.
47354
47355     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
47356     doubled sector size.
47357
47358     Signed-off-by: Martin Krause <martin.krause@tqs.de>
47359
47360 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
47361 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
47362 Date:   Wed Sep 26 17:55:54 2007 +0200
47363
47364     TQM8xx: Fix CAN timing.
47365
47366     Signed-off-by: Martin Krause <martin.krause@tqs.de>
47367
47368 commit d43e489baf02afae49077791fb22332d240d8656
47369 Author: Martin Krause <martin.krause@tqs.de>
47370 Date:   Thu Sep 27 14:54:36 2007 +0200
47371
47372     TQM866M: fix SDRAM refresh
47373
47374     At 133 MHz the current SDRAM refresh rate is too fast
47375     (measured 4 * 1.17 us).
47376     CFG_MAMR_PTA changes from 39 to 97. This result
47377     in a refresh rate of 4 * 7.8 us at the default clock
47378     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
47379     This is a compromise until a new method is found to
47380     adjust the refresh rate.
47381
47382     Signed-off-by: Martin Krause <martin.krause@tqs.de>
47383
47384 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
47385 Author: Martin Krause <martin.krause@tqs.de>
47386 Date:   Wed Sep 26 17:55:55 2007 +0200
47387
47388     TQM866M: adjust for doubled flash sector size.
47389
47390     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
47391     doubled sector size.
47392
47393     Signed-off-by: Martin Krause <martin.krause@tqs.de>
47394
47395 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
47396 Author: Michal Simek <monstr@monstr.eu>
47397 Date:   Sun Oct 14 16:12:29 2007 +0200
47398
47399     [FIX] XUPV2P change command handling
47400     and remove code violation
47401
47402 commit 636400198228d96983c06657b17f760f5989958e
47403 Author: Wolfgang Denk <wd@denx.de>
47404 Date:   Sun Oct 14 00:13:19 2007 +0200
47405
47406     Prepare for 1.3.0-rc3 release
47407
47408     Signed-off-by: Wolfgang Denk <wd@denx.de>
47409
47410 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
47411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47412 Date:   Sat Sep 29 13:41:37 2007 +0200
47413
47414     Fix warning differ in signedness in cpu/pxa/mmc.c
47415
47416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47417
47418 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
47419 Author: Wolfgang Denk <wd@denx.de>
47420 Date:   Sat Oct 13 23:51:14 2007 +0200
47421
47422     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
47423
47424     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47425     Signed-off-by: Wolfgang Denk <wd@denx.de>
47426
47427 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
47428 Author: Wolfgang Denk <wd@denx.de>
47429 Date:   Sat Oct 13 21:15:39 2007 +0200
47430
47431     Coding Style cleanup.
47432
47433     Signed-off-by: Wolfgang Denk <wd@denx.de>
47434
47435 commit e1893815b0999410d7a327589611c7b38e95299e
47436 Author: Wolfgang Denk <wd@denx.de>
47437 Date:   Fri Oct 12 15:49:39 2007 +0200
47438
47439     GP3 SSA: enable RTC
47440
47441     Signed-off-by: Wolfgang Denk <wd@denx.de>
47442
47443 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
47444 Author: Grzegorz Bernacki <gjb@semihalf.com>
47445 Date:   Tue Oct 9 13:58:24 2007 +0200
47446
47447     [ads5121] EEPROM support added.
47448
47449     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47450
47451 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
47452 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47453 Date:   Sat Oct 6 18:55:35 2007 +0200
47454
47455     AVR32: Initialize bi_flash* in board_init_r
47456
47457     The ATSTK1000-specific flash driver intializes bi_flashstart,
47458     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
47459     driver, don't.
47460
47461     Initialize these in board_init_r instead so that things will still be
47462     set up correctly when we switch to the CFI driver.
47463
47464     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47465
47466 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
47467 Author: Marian Balakowicz <m8@semihalf.com>
47468 Date:   Fri Oct 5 10:40:54 2007 +0200
47469
47470     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
47471
47472     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47473
47474 commit 92869195ef8210758d2176230c0a36897afd50ed
47475 Author: Bartlomiej Sieka <tur@semihalf.com>
47476 Date:   Fri Oct 5 09:46:06 2007 +0200
47477
47478     CM5200: Fix missing null-termination in hostname manipulation code
47479
47480     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
47481
47482 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
47483 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
47484 Date:   Tue Oct 2 19:09:01 2007 +0200
47485
47486     Fix memtest breakage
47487
47488     CFG_MEMTEST_START uses weird magic involving gd, which fails to
47489     compile. Use hardcoded values instead (we actually know how much RAM
47490     we have on board.)
47491
47492     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47493
47494 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
47495 Author: Stefan Roese <sr@denx.de>
47496 Date:   Tue Oct 2 11:44:46 2007 +0200
47497
47498     ppc4xx: Coding style cleanup
47499
47500     Signed-off-by: Stefan Roese <sr@denx.de>
47501
47502 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
47503 Author: Stefan Roese <sr@denx.de>
47504 Date:   Tue Oct 2 11:44:19 2007 +0200
47505
47506     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
47507
47508     Signed-off-by: Stefan Roese <sr@denx.de>
47509
47510 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
47511 Author: Grzegorz Bernacki <gjb@semihalf.com>
47512 Date:   Mon Oct 1 09:51:50 2007 +0200
47513
47514     Program EPLD to force full duplex mode for PHY.
47515
47516     EPLD forces modes of PHY operation. By default full duplex is turned off.
47517     This fix turns it on.
47518
47519     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47520
47521 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
47522 Author: Timo Ketola <timo.ketola@exertus.fi>
47523 Date:   Mon Sep 24 14:50:32 2007 +0300
47524
47525     Bugfix: Use only one PTD for one endpoint
47526
47527     Original isp116x-hcd code prepared multiple PTDs for longer than 16
47528     byte transfers for one endpoint. That is unnecessary because the
47529     ISP116x is able to split long data from one PTD into multiple
47530     transactions based on the buffer size of the endpoint. It also caused
47531     serious problems if the endpoint NAKed some of the transactions. In
47532     that case ISP116x wouldn't notice that the other PTDs were for the same
47533     endpoint and would try the other PTDs possibly out of order. That would
47534     break the whole transfer.
47535
47536     This patch makes isp116x_submit_job to use one PTD for one transfer.
47537
47538     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
47539     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
47540
47541 commit 86ec86c04326c3913178a7679aa910de071da75d
47542 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47543 Date:   Thu Sep 27 23:27:47 2007 +0200
47544
47545     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
47546
47547     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47548
47549 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
47550 Author: Stefan Roese <sr@denx.de>
47551 Date:   Tue Sep 11 14:12:55 2007 +0200
47552
47553     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
47554
47555     Signed-off-by: Stefan Roese <sr@denx.de>
47556
47557 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
47558 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
47559 Date:   Wed Sep 26 16:35:54 2007 -0500
47560
47561     85xx io out functions need sync after write.
47562
47563     This fixes the mc146818 rtc_read/write functions for 85xx.
47564
47565     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47566
47567 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
47568 Author: Grant Likely <grant.likely@secretlab.ca>
47569 Date:   Tue Sep 25 15:48:05 2007 -0600
47570
47571     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
47572
47573     CFG_FPGA_XILINX is a bit value used to test against the value in
47574     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
47575     think that is the intention in this code.
47576
47577     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47578
47579 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
47580 Author: Michal Simek <monstr@monstr.eu>
47581 Date:   Mon Sep 24 00:41:30 2007 +0200
47582
47583     [FIX] change command handling and removing code violation
47584
47585 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
47586 Author: Michal Simek <monstr@monstr.eu>
47587 Date:   Mon Sep 24 00:36:06 2007 +0200
47588
47589     [FIX] change sets of commands
47590     because changing of command handling brings
47591     compilation problems
47592
47593 commit cb1bc63b75a232571eb69aa2c8aa919321655845
47594 Author: Michal Simek <monstr@monstr.eu>
47595 Date:   Mon Sep 24 00:30:42 2007 +0200
47596
47597     [FIX] Email reparation & Copyright
47598     Both codes are written by myself without any
47599     support from CTU
47600
47601 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
47602 Author: Michal Simek <monstr@monstr.eu>
47603 Date:   Mon Sep 24 00:25:11 2007 +0200
47604
47605     [PATCH] Change macro name for UartLite
47606     because PowerPC 405 can use UartLite as console
47607
47608 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
47609 Author: Michal Simek <monstr@monstr.eu>
47610 Date:   Mon Sep 24 00:21:19 2007 +0200
47611
47612     [PATCH] Add support for design without interrupt controller
47613     Polling timer
47614
47615 commit 0731933ec8ec45d02ba89b52df673d526873cdde
47616 Author: Michal Simek <monstr@monstr.eu>
47617 Date:   Mon Sep 24 00:19:48 2007 +0200
47618
47619     [FIX] resolve problem with cpu without barrel shifter
47620
47621 commit db14d77995ce515b728b178b63f82babe60e3d56
47622 Author: Michal Simek <monstr@monstr.eu>
47623 Date:   Mon Sep 24 00:18:46 2007 +0200
47624
47625     [FIX] repair email address
47626
47627 commit 481d4328618804add1f818a6c96296121cd0528e
47628 Author: Michal Simek <monstr@monstr.eu>
47629 Date:   Mon Sep 24 00:17:42 2007 +0200
47630
47631     [FIX] repair MFSL commands
47632
47633 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
47634 Author: Michal Simek <monstr@monstr.eu>
47635 Date:   Mon Sep 24 00:08:37 2007 +0200
47636
47637     synchronizition with mainline
47638
47639 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
47640 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47641 Date:   Sun Sep 23 02:42:38 2007 +0900
47642
47643     sh: Add support command of ide with sh
47644
47645     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47646
47647 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
47648 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47649 Date:   Sun Sep 23 02:38:42 2007 +0900
47650
47651     sh: Update Makefile
47652
47653     Add support MS7722SE01 to Makefile.
47654
47655     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47656
47657 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
47658 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47659 Date:   Sun Sep 23 02:31:13 2007 +0900
47660
47661     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
47662
47663     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47664
47665 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
47666 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47667 Date:   Sun Sep 23 02:19:24 2007 +0900
47668
47669     sh: Update MS7750SE01 platform
47670
47671     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47672
47673 commit 516ad760db3553766267ada01b7d5d727faa4bbd
47674 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47675 Date:   Sun Sep 23 02:17:08 2007 +0900
47676
47677     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
47678
47679     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47680
47681 commit b02bad128669e567fce87d8df823b06a0144b8db
47682 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47683 Date:   Sun Sep 23 02:12:30 2007 +0900
47684
47685     sh: Update core code of SuperH.
47686
47687     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47688
47689 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
47690 Author: Wolfgang Denk <wd@denx.de>
47691 Date:   Thu Sep 20 00:04:14 2007 +0200
47692
47693     v1.3.0-rc2
47694
47695     Signed-off-by: Wolfgang Denk <wd@denx.de>
47696
47697 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
47698 Author: Wolfgang Denk <wd@denx.de>
47699 Date:   Tue Sep 18 21:36:35 2007 +0200
47700
47701     Avoid compiler warning.
47702
47703     Signed-off-by: Wolfgang Denk <wd@denx.de>
47704
47705 commit 8a783a65851bc7421ab69f442261215e21b8891a
47706 Author: Grant Likely <grant.likely@secretlab.ca>
47707 Date:   Tue Sep 18 12:24:57 2007 -0600
47708
47709     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
47710
47711     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
47712     nulls in a string differently.  For example, the following statement:
47713         echo "this is a string\0" > afile
47714     Will produce the following with /bin/bash:
47715         "this is a string\0"
47716     But with /bin/dash, will produce:
47717         "this is a string
47718
47719     Bug fixed by moving the embedded null out of the makefile and into the
47720     config header.  Also renamed the macro to avoid usage colision with the same
47721     macro used by other board ports.
47722
47723     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47724
47725 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
47726 Author: Wolfgang Denk <wd@denx.de>
47727 Date:   Tue Sep 18 17:40:27 2007 +0200
47728
47729     MCC200: fix build warning
47730
47731     The MCC200 board config file includes version.h for some customer-
47732     specific setting, which causes warnings with "make depend"; build
47733     version.h before depend.
47734
47735     Signed-off-by: Wolfgang Denk <wd@denx.de>
47736
47737 commit bd86220f58b99d6896198c385fda132f0c980915
47738 Author: Peter Pearse <peter.pearse@arm.com>
47739 Date:   Tue Sep 18 13:07:54 2007 +0100
47740
47741     Move coloured led API to status_led.h
47742     Improve indentation in drivers/at45.c
47743
47744 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
47745 Author: Eirik Aanonsen <eaa@wprmedical.com>
47746 Date:   Tue Sep 18 08:47:20 2007 +0200
47747
47748     Update atstk1002 bootargs.
47749
47750     Updates to atstk1002 U-Boot header file:
47751     - Changed bootargs:
47752         * Set the bootargs for at1002 to point to the SD-card partition instead
47753         * ... of the boot flash.
47754         * Removing the rootfstype since that argument are not needed.
47755
47756     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
47757     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47758
47759 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
47760 Author: Eirik Aanonsen <eaa@wprmedical.com>
47761 Date:   Wed Sep 12 13:32:37 2007 +0200
47762
47763     Add some comments to clocks in atstk1002.h
47764
47765     This patch applies some clarifying comments to how the different
47766     clocks are setup according to atstk1002.h Some of the previous
47767     comments where stating wrongful information.
47768
47769     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47770
47771 commit 97213f32416ead885deafea86774e912ffd60ad0
47772 Author: David Saada <David.Saada@ecitele.com>
47773 Date:   Mon Sep 17 17:04:47 2007 +0200
47774
47775     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
47776
47777     Signed-off-by: David Saada <david.saada@ecitele.com>
47778
47779 commit 30363e98fa470fbecea5e8bc0f1443352754f303
47780 Author: Stefan Roese <sr@denx.de>
47781 Date:   Mon Sep 17 08:20:47 2007 +0200
47782
47783     Small whitespace cleanup of OneNAND patch
47784
47785     Signed-off-by: Stefan Roese <sr@denx.de>
47786
47787 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
47788 Author: Kyungmin Park <kmpark@infradead.org>
47789 Date:   Mon Sep 10 17:15:14 2007 +0900
47790
47791     OneNAND support (take #2)
47792
47793     [PATCH 3/3] OneNAND support (take #2)
47794
47795     OneNAND support at U-Boot
47796
47797     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47798
47799 commit 17aa2800457df0c06b41516f46f126712c196219
47800 Author: Kyungmin Park <kmpark@infradead.org>
47801 Date:   Mon Sep 10 17:14:34 2007 +0900
47802
47803     OneNAND support (take #2)
47804
47805     [PATCH 2/3] OneNAND support (take #2)
47806
47807     OneNAND support at U-Boot
47808
47809     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47810
47811 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
47812 Author: Kyungmin Park <kmpark@infradead.org>
47813 Date:   Mon Sep 10 17:13:49 2007 +0900
47814
47815     OneNAND support (take #2)
47816
47817     [PATCH 1/3] OneNAND support (take #2)
47818
47819     OneNAND support at U-Boot
47820
47821     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47822
47823 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
47824 Author: Michal Simek <monstr@monstr.eu>
47825 Date:   Sun Sep 16 20:51:57 2007 +0200
47826
47827     [FIX] remove files form repository
47828
47829 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
47830 Author: Wolfgang Denk <wd@denx.de>
47831 Date:   Sun Sep 16 17:10:04 2007 +0200
47832
47833     TQM8xx[LM]: Fix broken environment alignment.
47834
47835     With recent toolchains, the environment sectors were no longer aligned to
47836     sector boundaries. The reason was a combination of two bugs:
47837
47838     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
47839        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
47840        this gets defined, is not included here (and cannot be included
47841        without causing lots of problems).
47842
47843        Added a new #define CFG_USE_PPCENV for all boards which really
47844        want to put the environment is a ".ppcenv" section.
47845
47846     2) The linker scripts just include environment.o, silently assuming
47847        that the objects in that file are really in the order in which
47848        they are coded in the C file, i. e. "environment" first, then
47849        "redundand_environment", and "env_size" last. However, current
47850        toolchains (GCC-4.x) reorder the objects, causing the environment
47851        data not to start on a flash sector boundary:
47852
47853        Instead of:                                      we got:
47854
47855         40008000 T environment                  40008000 T env_size
47856         4000c000 T redundand_environment        40008004 T redundand_environment
47857         40010000 T env_size                     4000c004 T environment
47858
47859        Note: this patch fixes just the first part, and cures the alignment
47860        problem by making sure that "env_size" gets placed correctly. However,
47861        we still have a potential issue because primary and redundant
47862        environment sectors are actually swapped, i. e. we have now:
47863
47864         40008000 T redundand_environment
47865         4000c000 T environment
47866         40010000 T env_size
47867
47868        This shall be fixed in the next version.
47869
47870     Signed-off-by: Wolfgang Denk <wd@denx.de>
47871
47872 commit eb6da8050797c204c9d010548424186c7ce32fc1
47873 Author: Wolfgang Denk <wd@denx.de>
47874 Date:   Sun Sep 16 02:39:35 2007 +0200
47875
47876     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
47877
47878     Signed-off-by: Wolfgang Denk <wd@denx.de>
47879
47880 commit cd2d1602c54cc6957bdef3872272a4b264893960
47881 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
47882 Date:   Mon Sep 10 14:54:56 2007 -0400
47883
47884     Typo fix in tsec.c
47885
47886     Fixup for the break statement in wrong place.
47887
47888     [Patch by urwithsughosh@gmail.com]
47889     Acked-by: Andy Fleming <afleming@freescale.com>
47890     Signed-off-by:      Wolfgang Denk <wd@denx.de>
47891
47892 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
47893 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47894 Date:   Tue Sep 11 17:04:00 2007 +0200
47895
47896     Fix do_div() usage in nand process output
47897
47898     Fix usage of do_div() in nand erase|read|write process output.
47899
47900     The last patch to nand_util.c introduced do_div() instead of libgcc's
47901     implementation. But do_div() returns the quotient in its first
47902     macro parameter and not as result.
47903
47904     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47905
47906 commit c750d2e6692a000a82f29de7bf24e3dc21239161
47907 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47908 Date:   Wed Sep 12 12:36:53 2007 +0200
47909
47910     NAND: Add CFG_NAND_QUIET option
47911
47912     This config option sets the default for the progress information
47913     output behavior that can also be configured through the 'quiet'
47914     environment variable.
47915
47916     The legacy NAND code does not print the current progress info
47917     on the console. So this option is for backward compatibility for
47918     units that are in the field and where setting the quiet variable
47919     is not an option. With CFG_NAND_QUIET set to '1' the console
47920     progress info is turned off. This can still be overwritten
47921     through the environment variable.
47922
47923     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47924
47925 commit dcb88630290d2bcd803386dd4c2be73142994c4f
47926 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
47927 Date:   Thu Sep 13 16:06:05 2007 -0700
47928
47929     ColdFire: fix build error becasue of bad type of mii_init()
47930
47931     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47932
47933 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
47934 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
47935 Date:   Thu Sep 13 16:04:05 2007 -0700
47936
47937     ColdFire: Fix build error caused by pixis.c
47938
47939     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
47940
47941     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47942
47943 commit e21659e30660a1377c42af135a6114efe39801d9
47944 Author: Sam Sparks <SSparks@twacs.com>
47945 Date:   Fri Sep 14 11:14:42 2007 -0600
47946
47947     Update MPC8349ITX*_config to place config.tmp in right place.
47948
47949     MPC834ITX*_config does not store config.tmp at the correct locatation,
47950     causing MPC8349ITXGP to have the wrong TEXT_BASE.
47951
47952     Signed-off-by: Sam Sparks <SSparks@twacs.com>
47953     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47954
47955 commit 1218abf1b5817a39a82399b4b928b00750575bda
47956 Author: Wolfgang Denk <wd@denx.de>
47957 Date:   Sat Sep 15 20:48:41 2007 +0200
47958
47959     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
47960
47961     Signed-off-by: Wolfgang Denk <wd@denx.de>
47962
47963 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
47964 Author: Dirk Behme <dirk.behme@googlemail.com>
47965 Date:   Sat Sep 15 11:55:42 2007 +0200
47966
47967     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
47968
47969     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
47970     function local.
47971
47972     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
47973
47974     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
47975
47976 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
47977 Author: Michal Simek <monstr@monstr.eu>
47978 Date:   Sat Sep 15 00:03:35 2007 +0200
47979
47980     Synchronize with U-BOOT mainline
47981
47982 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
47983 Author: Sam Sparks <SSparks@twacs.com>
47984 Date:   Fri Sep 14 11:14:42 2007 -0600
47985
47986     Update MPC8349ITX*_config to place config.tmp in right place.
47987
47988     MPC834ITX*_config does not store config.tmp at the correct locatation,
47989     causing MPC8349ITXGP to have the wrong TEXT_BASE.
47990
47991     Signed-off-by: Sam Sparks <SSparks@twacs.com>
47992     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47993     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47994
47995 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
47996 Author: Bartlomiej Sieka <tur@semihalf.com>
47997 Date:   Thu Sep 13 18:21:48 2007 +0200
47998
47999     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
48000
48001     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
48002
48003 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
48004 Author: Bartlomiej Sieka <tur@semihalf.com>
48005 Date:   Thu Sep 13 16:33:59 2007 +0200
48006
48007     tqm5200: Restore customary env. variable boot commands for powerpc kernels
48008
48009     - update default definitions of kernel_addr and fdt_addr env. variables
48010     - make arch/powerpc booting the default scenario
48011     - update MTD partition layout to match the above
48012
48013     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48014
48015 commit f34024d4a328e6edd906456da98d2c537155c4f7
48016 Author: Wolfgang Denk <wd@denx.de>
48017 Date:   Wed Sep 12 00:48:57 2007 +0200
48018
48019     Fix memory corruption problem on STX GP3 SSA Board.
48020
48021     Signed-off-by: Wolfgang Denk <wd@denx.de>
48022
48023 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
48024 Author: Peter Pearse <peter.pearse@arm.com>
48025 Date:   Tue Sep 11 15:35:01 2007 +0100
48026
48027     Final tidy
48028
48029 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
48030 Author: Grzegorz Bernacki <gjb@semihalf.com>
48031 Date:   Tue Sep 11 15:42:11 2007 +0200
48032
48033     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
48034     scan on second pci bus.
48035
48036     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48037
48038 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
48039 Author: Grzegorz Bernacki <gjb@semihalf.com>
48040 Date:   Tue Sep 11 12:57:52 2007 +0200
48041
48042     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
48043
48044     Bamboo has a file sdram.c which needs special treatment when building in
48045     separate directory. It has to be linked to build directory otherwise it is
48046     not seen.
48047
48048     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48049
48050 commit d45963854eff39d575124d859419bb4953ce2c87
48051 Author: Michal Simek <monstr@monstr.eu>
48052 Date:   Tue Sep 11 00:37:04 2007 +0200
48053
48054     [FIX] Microblaze ML401 - repare FLASH handling
48055
48056 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
48057 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
48058 Date:   Mon Sep 10 16:55:59 2007 +0100
48059
48060     Allocate CPU Architecture Code for STMicroelectronics' ST200.
48061
48062     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
48063     ---------------------------------------------------
48064
48065 commit 754bac48156f8958d8f6a53a51eda88ab5758929
48066 Author: Wolfgang Denk <wd@denx.de>
48067 Date:   Mon Sep 10 20:42:31 2007 +0200
48068
48069     Update version to match current state.
48070
48071     Signed-off-by: Wolfgang Denk <wd@denx.de>
48072
48073 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
48074 Author: Grzegorz Bernacki <gjb@semihalf.com>
48075 Date:   Mon Sep 10 17:39:08 2007 +0200
48076
48077     [MPC512x] Streamline frame handling in the FEC driver
48078
48079     - convert frame size settings to be derived from a single base
48080     - set frame size to the recommended default value
48081
48082     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48083
48084 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
48085 Author: Kyungmin Park <kmpark@infradead.org>
48086 Date:   Mon Sep 10 11:34:00 2007 +0900
48087
48088     Remove compiler warning: target CPU does not support interworking
48089
48090     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
48091
48092 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
48093 Author: Wolfgang Denk <wd@denx.de>
48094 Date:   Sun Sep 9 21:21:33 2007 +0200
48095
48096     Fix compile error in spc1920 config.
48097
48098     Signed-off-by: Markus Klotzbücher <mk@denx.de>
48099     Signed-off-by: Wolfgang Denk <wd@denx.de>
48100
48101 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
48102 Author: Grant Likely <grant.likely@secretlab.ca>
48103 Date:   Fri Sep 7 09:25:07 2007 -0600
48104
48105     Bugfix: make bootm+libfdt compile on boards with no flash
48106
48107     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48108
48109 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
48110 Author: Grzegorz Bernacki <gjb@semihalf.com>
48111 Date:   Fri Sep 7 18:35:37 2007 +0200
48112
48113     [PPC440SPe] PCIe environment settings for Katmai and Yucca
48114
48115     - 'pciconfighost' is set by default in order to be able to scan bridges
48116     behind the primary host/PCIe
48117
48118     - 'pciscandelay' env variable is recognized to allow for user-controlled
48119     delay before the PCIe bus enumeration; some peripheral devices require a
48120     significant delay before they can be scanned (e.g. LSI8408E); without the
48121     delay they are not detected
48122
48123     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48124
48125 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
48126 Author: Grzegorz Bernacki <gjb@semihalf.com>
48127 Date:   Fri Sep 7 18:20:23 2007 +0200
48128
48129     [PPC440SPe] Improve PCIe configuration space access
48130
48131     - correct configuration space mapping
48132     - correct bus numbering
48133     - better access to config space
48134
48135     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
48136     first device on the first bus. We now allow to configure up to 16 buses;
48137     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
48138     peripheral devices farther in hierarchy can be identified.
48139
48140     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48141
48142 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
48143 Author: Grzegorz Bernacki <gjb@semihalf.com>
48144 Date:   Fri Sep 7 17:46:18 2007 +0200
48145
48146     [PPC440SPe] Convert machine check exceptions handling
48147
48148     Convert using fixup mechanism to suppressing MCK for the duration of config
48149     read/write transaction: while fixups work fine with the case of a precise
48150     exception, we identified a major drawback with this approach when there's
48151     an imprecise case. In this scenario there is the following race condition:
48152     the fixup is (by design) set to catch the instruction following the one
48153     actually causing the exception; if an interrupt (e.g. decrementer) happens
48154     between those two instructions, the ISR code is executed before the fixup
48155     handler the machine check is no longer protected by the fixup handler as it
48156     appears as within the ISR code. In consequence the fixup approach is being
48157     phased out and replaced with explicit suppressing of MCK during a PCIe
48158     config read/write cycle.
48159
48160     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48161
48162 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
48163 Author: Wolfgang Denk <wd@denx.de>
48164 Date:   Fri Sep 7 17:43:36 2007 +0200
48165
48166     Fix typo in MAKEALL script.
48167
48168     Signed-off-by: Wolfgang Denk <wd@denx.de>
48169
48170 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
48171 Author: Grzegorz Bernacki <gjb@semihalf.com>
48172 Date:   Fri Sep 7 17:09:21 2007 +0200
48173
48174     [MPC512x] Proper handling of larger frames in the FEC driver
48175
48176     When frame larger than local RX buffer is received, it is split and handled
48177     by two buffer descriptors. Prior to this patch the FEC driver discarded
48178     contents of a buffer descriptor without the 'LAST' bit set, so the first
48179     part of the frame was lost in case of larger frames. This fix allows to
48180     safely combine the two pieces into the whole frame.
48181
48182     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
48183
48184 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
48185 Author: Rafal Jaworowski <raj@semihalf.com>
48186 Date:   Fri Sep 7 17:05:36 2007 +0200
48187
48188     [MPC512x] Correct fixup relocation
48189
48190     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
48191
48192 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
48193 Author: Wolfgang Denk <wd@denx.de>
48194 Date:   Fri Sep 7 01:21:25 2007 +0200
48195
48196     Update CHANGELOG, minor coding style cleanup.
48197
48198 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
48199 Author: stefano babic <sbabic@denx.de>
48200 Date:   Thu Aug 30 23:01:49 2007 +0200
48201
48202     PXA270: Added support for TrizepsIV board.
48203
48204     This patch add support for the Trizeps IV module (520Mhz).
48205
48206     Signed-off-by: Stefano Babic <sbabic@denx.de>
48207
48208 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
48209 Author: stefano babic <sbabic@denx.de>
48210 Date:   Thu Aug 30 22:57:04 2007 +0200
48211
48212     PXA270: Add support for multiple serial ports.
48213
48214     This patch adds support for multiple serial ports to the PXA target.
48215     FFUART, BTUART and STUART are supported.
48216
48217     Signed-off-by: Stefano Babic <sbabic@denx.de>
48218
48219 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
48220 Author: stefano babic <sbabic@denx.de>
48221 Date:   Thu Aug 30 22:48:47 2007 +0200
48222
48223     PXA270: fix compile issue (invalid lvalue)
48224
48225     Code is broken for PXA270 due to "invalid lvalue in assignment".
48226
48227     This patch fix it in pxa-regs.h
48228
48229     Signed-off-by: Stefano Babic <sbabic@denx.de>
48230
48231 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
48232 Author: Jason Jin <Jason.jin@freescale.com>
48233 Date:   Thu Aug 30 18:19:05 2007 +0800
48234
48235     Add BUILD_DIR support for bios emulator.
48236
48237     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
48238
48239 commit b4d8a55145442f136982634862341a3e02002bda
48240 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48241 Date:   Fri Aug 31 14:41:51 2007 +0900
48242
48243     [MIPS] Remove inline asm string functions
48244
48245     Stop using inline string functions on MIPS as other ARCHs do so,
48246     since the optimized inline asm versions are not small.
48247
48248     This change is triggered by a following MIPS build error:
48249     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
48250     common/exports.c:32: undefined reference to `strcmp'
48251     make: *** [u-boot] Error 1
48252
48253     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48254
48255 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
48256 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48257 Date:   Fri Aug 31 14:41:45 2007 +0900
48258
48259     [MIPS] Update asm string header
48260
48261     This patches contains several bugfixes and cleanups in the latest upstream:
48262
48263      - Don't include linux/config.h
48264      - Remove buggy inline version of memscan.
48265      - Merge with Linux 2.6.11-rc3.
48266      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
48267      - Goodbye mips64.  31704 lines of code bite the dust.
48268      - Replace extern inline with static inline.
48269      - Fix return value of strncpy.
48270      - Remove a bunch more "$1" clobbers.
48271
48272     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48273
48274 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
48275 Author: Bartlomiej Sieka <tur@semihalf.com>
48276 Date:   Tue Sep 4 17:31:22 2007 +0200
48277
48278     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
48279
48280     Fix incorrect blob address calculation in do_bootm_linux() that prevents
48281     booting the kernel from a multi-file image (kernel + initrd + blob).
48282
48283     Also, make minor updates to the U-Boot's output and to the coding style.
48284
48285     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48286
48287 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
48288 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
48289 Date:   Fri Aug 31 14:29:04 2007 +0200
48290
48291     Add support for Sil680 IDE controller.
48292
48293     o add drivers/sil680.c to support the Sil680 IDE-controller.
48294     o drivers/Makefile: add sil680.o.
48295
48296     Signed-off-by: Gary Jennejohn <garyj@denx.de>
48297
48298 commit e79021223bc339df655e360645a52c457a74b067
48299 Author: Grant Likely <grant.likely@secretlab.ca>
48300 Date:   Thu Sep 6 09:47:40 2007 -0600
48301
48302     bootm/fdt: Only process the fdt if an fdt address was provided
48303
48304     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
48305     kernels using the board info structure (instead of passing a device tree)
48306     This change allows the old style booting to be used if the fdt argument
48307     was not passed to 'bootm'.
48308
48309     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48310     Acked-by: Kim Phillips <kim.phillips@freescale.com>
48311
48312 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
48313 Author: Grant Likely <grant.likely@secretlab.ca>
48314 Date:   Thu Sep 6 09:46:23 2007 -0600
48315
48316     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
48317
48318     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
48319
48320     Tested on: lite5200b
48321
48322     Note: the fixup functions have not been moved to a common place.  This
48323     patch is targeted for immediate merging as in solves a build issue, but
48324     the final name/location of the fixups is still subject to debate.  I
48325     propose to merge this now, and move the fixups in the next merge window
48326     to be usable by all targets.
48327
48328     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48329
48330 commit 41bb76e941929f54a73206fb132f7a4c275543a3
48331 Author: Grant Likely <grant.likely@secretlab.ca>
48332 Date:   Thu Sep 6 09:46:17 2007 -0600
48333
48334     libfdt: add convenience function fdt_find_and_setprop()
48335
48336     Given the path to a node, fdt_find_and_setprop() allows a property value
48337     to be set directly.
48338
48339     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48340
48341 commit 80767a6cead9990d9e77e62be947843c2c72f469
48342 Author: Peter Pearse <peter.pearse@arm.com>
48343 Date:   Wed Sep 5 16:04:41 2007 +0100
48344
48345     Changed API name to coloured_led.h
48346     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
48347     Tidied other cpu/arm920t/start.S code
48348
48349 commit 56a9270521baaa00e12639a978302a67f61ef060
48350 Author: Kumar Gala <galak@kernel.crashing.org>
48351 Date:   Thu Aug 30 16:18:18 2007 -0500
48352
48353     Fix ULI RTC support on MPC8544 DS
48354
48355     The RTC on the M1575 ULI chipset requires a dummy read before
48356     we are able to talk to the RTC.  We accomplish this by adding a
48357     second memory region to the PHB the ULI is on and read from it.
48358
48359     The second region is added to maintain compatiabilty with Linux's
48360     view of the PCI memory map.
48361
48362     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48363
48364 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
48365 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48366 Date:   Thu Aug 30 01:58:48 2007 -0500
48367
48368     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
48369
48370     pcie is now differentiated from pci.  Add 8641 bus-range updates.
48371
48372     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48373
48374 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
48375 Author: Peter Pearse <peter.pearse@arm.com>
48376 Date:   Tue Sep 4 16:18:38 2007 +0100
48377
48378     Add coloured led interface for ARM boards.
48379     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
48380
48381 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
48382 Author: Peter Pearse <peter.pearse@arm.com>
48383 Date:   Tue Sep 4 14:49:28 2007 +0100
48384
48385     Move include/led.h to board/at91rm9200dk
48386
48387 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
48388 Author: Peter Pearse <peter.pearse@arm.com>
48389 Date:   Tue Sep 4 14:25:51 2007 +0100
48390
48391     Ran Lindent on drivers/at45.c
48392
48393 commit 557ab89d294f08dd532f21d19861b40093200a33
48394 Author: Peter Pearse <peter.pearse@arm.com>
48395 Date:   Tue Sep 4 14:23:50 2007 +0100
48396
48397     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
48398
48399 commit 81b73dec16fd1227369a191e725e10044a9d56b8
48400 Author: Gary Jennejohn <garyj@denx.de>
48401 Date:   Fri Aug 31 15:21:46 2007 +0200
48402
48403     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
48404
48405     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
48406     set to non-zero, because it doesn't support MRM (memory-read-
48407     multiple) correctly. We now added the possibility to configure
48408     this register in the board config file, so that the default value
48409     of 8 can be overridden.
48410
48411     Here the details of this patch:
48412
48413     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
48414       board-specific settings. As an example the sequoia board requires 0.
48415       Idea from Stefan Roese <sr@denx.de>.
48416     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
48417       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
48418     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
48419       CFG_PCI_CACHE_LINE_SIZE to 0.
48420
48421     Signed-off-by: Gary Jennejohn <garyj@denx.de>
48422     Signed-off-by: Stefan Roese <sr@denx.de>
48423
48424 commit 60174746c668b309378a91488dded898e9553eae
48425 Author: Wolfgang Denk <wd@denx.de>
48426 Date:   Fri Aug 31 10:01:51 2007 +0200
48427
48428     Fix TFTP OACK code for short packets.
48429
48430     The old code had a loop limit overflow bug which caused a semi-
48431     infinite loop for small packets, because in "i<len-8", "i" was signed,
48432     but "len" was unsigned, and "len-8" became a huge number for small
48433     values of "len".
48434
48435     This is a workaround which replaces broken commit 8f1bc284.
48436
48437     Signed-off-by: Wolfgang Denk <wd@denx.de>
48438
48439 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
48440 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
48441 Date:   Thu Aug 30 15:03:05 2007 +0200
48442
48443     Reduce BOOTDELAY variable to 1 second by default for STK1002
48444
48445     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
48446     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48447
48448 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
48449 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
48450 Date:   Thu Aug 30 15:03:04 2007 +0200
48451
48452     Remove double quotation marks around MAC address for STK1002
48453
48454     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
48455     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48456
48457 commit ff13ac8c7bbebb238e339592de765c546dba1073
48458 Author: Wolfgang Denk <wd@denx.de>
48459 Date:   Thu Aug 30 14:42:15 2007 +0200
48460
48461     Backout commit 8f1bc284 as it causes TFTP to fail.
48462
48463     Signed-off-by: Wolfgang Denk <wd@denx.de>
48464
48465 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
48466 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48467 Date:   Thu Aug 30 02:26:17 2007 -0500
48468
48469     Revert "Fix MPC8544DS PCIe3 scsi."
48470
48471     This reverts commit 9468e680.
48472     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
48473
48474     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48475
48476 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
48477 Author: Grant Likely <grant.likely@secretlab.ca>
48478 Date:   Wed Aug 29 18:26:24 2007 -0600
48479
48480     tftp: don't implicity trust the format of recevied packets
48481
48482     The TFTP OACK code trusts that the incoming packet is formated as
48483     ASCII text and can be processed by string functions. It also has a
48484     loop limit overflow bug where if the packet length is less than 8, it
48485     ends up looping over *all* of memory to find the 'blksize' string.
48486
48487     This patch solves the problem by forcing the packet to be null
48488     terminated and using strstr() to search for the sub string.
48489
48490     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48491
48492 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
48493 Author: Stefan Roese <sr@denx.de>
48494 Date:   Wed Aug 29 16:31:18 2007 +0200
48495
48496     ppc4xx: Change lwmon5 default environment to support Linux RTC
48497
48498     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
48499     to supply the RTC I2C address as bootline parameter. This patch
48500     adds support for this rtc probing parameter to the bootargs:
48501
48502     "rtc-pcf8563.probe=0,0x51"
48503
48504     Signed-off-by: Stefan Roese <sr@denx.de>
48505
48506 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
48507 Author: Kim Phillips <kim.phillips@freescale.com>
48508 Date:   Wed Aug 29 09:06:05 2007 -0500
48509
48510     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
48511
48512     this had slipped through the cracks, since the sbc board was added
48513     after I wrote the original patch to remove all these symbols, and
48514     before it was merged.
48515
48516     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48517
48518 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
48519 Author: Wolfgang Denk <wd@denx.de>
48520 Date:   Wed Aug 29 14:05:30 2007 +0200
48521
48522     Add mii_init() prototype
48523
48524     to get rid of a *lot* of compiler warnings.
48525
48526     Signed-off-by: Wolfgang Denk <wd@denx.de>
48527
48528 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
48529 Author: Wolfgang Denk <wd@denx.de>
48530 Date:   Wed Aug 29 13:35:03 2007 +0200
48531
48532     Disable network support on cmi_mpc5xx board
48533
48534     ..because it caused compiler errors and there seems to be no
48535     board maintainer to take care of this.
48536
48537     Signed-off-by: Wolfgang Denk <wd@denx.de>
48538
48539 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
48540 Author: Kumar Gala <galak@kernel.crashing.org>
48541 Date:   Mon Aug 20 09:44:00 2007 -0500
48542
48543     Fix MPC8544DS PCIe3 scsi.
48544
48545     <ed.swarthout@freescale.com>
48546
48547     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
48548     is allocating memory space it doesn't need.
48549
48550     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
48551     Signed-off-by: Andy Fleming <afleming@freescale.com>
48552
48553 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
48554 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48555 Date:   Tue Aug 21 09:38:59 2007 -0500
48556
48557     8548cds fixes
48558
48559     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
48560     correct consoledev needed for linux boot.
48561     Standardize on fdt{file,addr} var to hold dtb file name.
48562
48563     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
48564
48565     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48566
48567 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
48568 Author: Haiying Wang <Haiying.Wang@freescale.com>
48569 Date:   Thu Aug 23 15:20:54 2007 -0400
48570
48571     Enable L2 cache for MPC8568MDS board
48572
48573     The L2 cache size is 512KB for 8568, print out the correct informaiton.
48574
48575     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
48576
48577 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
48578 Author: Jason Jin <Jason.jin@freescale.com>
48579 Date:   Wed Aug 22 17:54:49 2007 +0800
48580
48581     Remove the bios emulator binary files from MAI board
48582
48583     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
48584
48585 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
48586 Author: Kim Phillips <kim.phillips@freescale.com>
48587 Date:   Tue Aug 21 17:00:17 2007 -0500
48588
48589     support board vendor-common makefiles
48590
48591     if a board/$(VENDOR)/common/Makefile exists, build it.
48592
48593     also add the first such case, board/freescale/common/Makefile, to
48594     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
48595     dictated by board configuration.
48596
48597     thusly get rid of alternate build dir errors such as:
48598
48599     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
48600
48601     by putting the common/ mkdir command in its proper place (the common
48602     Makefile). Common bits from existing individual board Makefiles have
48603     been removed.
48604
48605     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48606
48607 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
48608 Author: stefano babic <sbabic@denx.de>
48609 Date:   Tue Aug 21 15:52:33 2007 +0200
48610
48611     Fix: TFTP is not working on little endian systems
48612
48613     TFTP does not work anymore after multicast tftp
48614     patch was applied on little endian systems.
48615     This patch fix it.
48616
48617     Signed-off-by: Stefano Babic <sbabic@denx.de>
48618
48619 commit 5f470948570526e9186f053a3003da7719604e90
48620 Author: stefano babic <sbabic@denx.de>
48621 Date:   Tue Aug 21 15:50:33 2007 +0200
48622
48623     Fix MAC address setting in DM9000 driver.
48624
48625     The logic to check if there is a correct MAC address in the DM9000
48626     EEPROM, added in the last patch, is wrong. Now the MAC address is
48627     always taken from the environment, even if a suitable MAC is present
48628     in the EEPROM.
48629
48630     Signed-off-by: Stefano Babic <sbabic@denx.de>
48631
48632 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
48633 Author: Martin Krause <martin.krause@tqs.de>
48634 Date:   Tue Aug 21 12:40:34 2007 +0200
48635
48636     MPC5xxx: fix some compiler warnings in USB code
48637
48638     Fix the following warnings:
48639     - usb.c:xx: warning: function declaration isn't a prototype
48640     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
48641       from pointer wihtout a cast
48642
48643     Signed-off-by: Martin Krause <martin.krase@tqs.de>
48644
48645 commit 16e23c3f5dab6937f5109365416808c7f15c122b
48646 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48647 Date:   Mon Aug 20 23:55:33 2007 -0500
48648
48649     fsl_pci_init - Remove self PCSRBAR allocation
48650
48651     CPU physical address space was being wasted by allocating a
48652     PCSRBAR PCI inbound region to it's memory space.
48653
48654     As a rule, PCSRBAR should be left alone since it does not affect
48655     transactions from self and other masters may have changed it.
48656
48657     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
48658
48659 commit 0e700ce03a23bb1921149bc77008ace7103d5289
48660 Author: Martin Krause <martin.krause@tqs.de>
48661 Date:   Mon Aug 20 13:56:47 2007 +0200
48662
48663     Fix compiler warning in include/s3c2410.h
48664
48665     This patch fixes the "type qualifiers ignored on fuction return tpye"
48666     warning for include/s3c2410.h
48667
48668     Signed-off-by: Martin Krause <martin.krause@tqs.de>
48669
48670 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
48671 Author: Dirk Behme <dirk.behme@googlemail.com>
48672 Date:   Mon Aug 20 07:09:05 2007 +0200
48673
48674     Fix compilation error for omap2420h4_config.
48675
48676     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
48677     and flash_probe() calls in env_flash.c.
48678
48679     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
48680
48681 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
48682 Author: Kim Phillips <kim.phillips@freescale.com>
48683 Date:   Fri Aug 10 14:34:14 2007 -0500
48684
48685     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
48686
48687     and make some minor corrections to the FDT part of the README.
48688
48689     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48690
48691 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
48692 Author: Wolfgang Denk <wd@denx.de>
48693 Date:   Wed Aug 29 01:32:05 2007 +0200
48694
48695     Minor coding style cleanup.
48696
48697     Signed-off-by: Wolfgang Denk <wd@denx.de>
48698
48699 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
48700 Author: Heiko Schocher <hs@pollux.denx.de>
48701 Date:   Tue Aug 28 17:40:33 2007 +0200
48702
48703     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
48704
48705     Signed-off-by: Heiko Schocher <hs@denx.de>
48706
48707 commit f98984cb194bb34dbe1db9429d3b51133af30d07
48708 Author: Heiko Schocher <hs@pollux.denx.de>
48709 Date:   Tue Aug 28 17:39:14 2007 +0200
48710
48711     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
48712               define there own I/O functions.
48713               (Needed for the pcs440ep board).
48714             - The default I/O Functions are again 8 Bit accesses.
48715             - Added CONFIG_CMD_IDE for the pcs440ep Board.
48716
48717     Signed-off-by: Heiko Schocher <hs@denx.de>
48718
48719 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
48720 Author: Semih Hazar <semih.hazar@indefia.com>
48721 Date:   Mon Aug 20 19:00:01 2007 +0300
48722
48723     AVR32: Change prototype of memset
48724
48725     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
48726     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
48727
48728 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
48729 Author: Yuri Tikhonov <yur@emcraft.com>
48730 Date:   Sat Aug 25 05:07:16 2007 +0200
48731
48732     POST: limit memory test area to not touch global data anymore
48733
48734     As experienced on lwmon5, on some boards the POST memory test can
48735     corrupt the global data buffer (bd). This patch fixes this issue
48736     by checking and limiting this area.
48737
48738     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48739     Signed-off-by: Stefan Roese <sr@denx.de>
48740
48741 commit 75e1a84d483e36be10e206e539b028c4889e1158
48742 Author: Stefan Roese <sr@denx.de>
48743 Date:   Fri Aug 24 15:41:42 2007 +0200
48744
48745     ppc4xx: Add RTC POST test to lwmon5 board configuration
48746
48747     Since this RTC POST test is taking quite a while to complete
48748     it's only initiated upon special keypress same as the complete
48749     memory POST.
48750
48751     Signed-off-by: Stefan Roese <sr@denx.de>
48752
48753 commit d7bfa620037a6d2210159387571bdf93aa32c162
48754 Author: Stefan Roese <sr@denx.de>
48755 Date:   Fri Aug 24 15:19:10 2007 +0200
48756
48757     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
48758
48759     Signed-off-by: Stefan Roese <sr@denx.de>
48760
48761 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
48762 Author: Stefan Roese <sr@denx.de>
48763 Date:   Thu Aug 23 11:02:37 2007 +0200
48764
48765     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
48766
48767     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
48768     board. Now the "eeprom" command can be used to read/write from/to this
48769     device. Additionally a new command was added "eepromwp" to en-/disable
48770     the write-protect of this 2nd EEPROM.
48771
48772     The 1st EEPROM is not affected by this write-protect command.
48773
48774     Signed-off-by: Stefan Roese <sr@denx.de>
48775
48776 commit c64fb30e4c5976007d56fc1789c7a0666082b536
48777 Author: Stefan Roese <sr@denx.de>
48778 Date:   Wed Aug 22 08:56:09 2007 +0200
48779
48780     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
48781
48782     Signed-off-by: Stefan Roese <sr@denx.de>
48783
48784 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
48785 Author: Stefan Roese <sr@denx.de>
48786 Date:   Tue Aug 21 16:27:57 2007 +0200
48787
48788     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
48789
48790     This patch adds support for the matrix keyboard on the lwmon5 board.
48791     Since the implementation in the dsPCI is kind of compatible with the
48792     "old" lwmon board, most of the code is copied from the lwmon
48793     board directory.
48794
48795     Signed-off-by: Stefan Roese <sr@denx.de>
48796
48797 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
48798 Author: Wolfgang Denk <wd@denx.de>
48799 Date:   Sun Aug 19 10:27:34 2007 +0200
48800
48801     Fix some build errors.
48802
48803     Signed-off-by: Wolfgang Denk <wd@denx.de>
48804
48805 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
48806 Author: Wolfgang Denk <wd@denx.de>
48807 Date:   Sat Aug 18 22:00:38 2007 +0200
48808
48809     Update CHANGELOG.
48810
48811 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
48812 Author: Kim Phillips <kim.phillips@freescale.com>
48813 Date:   Thu Aug 16 22:52:39 2007 -0500
48814
48815     lib_ppc: make board_add_ram_info weak
48816
48817     platforms wishing to display RAM diagnostics in addition to size,
48818     can do so, on one line, in their own board_add_ram_info()
48819     implementation.
48820
48821     this consequently eliminates CONFIG_ADD_RAM_INFO.
48822
48823     Thanks to Stefan for the hint.
48824
48825     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48826
48827 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
48828 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48829 Date:   Fri Aug 17 12:43:44 2007 +0900
48830
48831     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
48832
48833     This patch has been sent on:
48834     - 6 Jun 2007
48835
48836     Many users of PCI config read routines tend to ignore the function
48837     ret value, and are only concerned about the contents of *val. Based
48838     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
48839     the *val on dword read error.
48840
48841     Without this fix, for example, we'll go on scanning bus with vendor or
48842     header_type uninitialized. This brings many unnecessary config trials.
48843
48844     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48845
48846 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
48847 Author: Stefan Roese <sr@denx.de>
48848 Date:   Sat Aug 18 14:37:52 2007 +0200
48849
48850     ColdFire: Fix some remaining problems with CFG_CMD_
48851
48852     Signed-off-by: Stefan Roese <sr@denx.de>
48853
48854 commit 8280f6a1c43247616b68224675188e5ccd124650
48855 Author: Stefan Roese <sr@denx.de>
48856 Date:   Sat Aug 18 14:33:02 2007 +0200
48857
48858     Coding style cleanup
48859
48860     Signed-off-by: Stefan Roese <sr@denx.de>
48861
48862 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
48863 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48864 Date:   Thu Aug 16 19:23:50 2007 -0500
48865
48866     ColdFire: Add M5235EVB Platform for MCF523x
48867
48868     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48869
48870 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
48871 Author: Kim Phillips <kim.phillips@freescale.com>
48872 Date:   Fri Aug 17 09:30:00 2007 -0500
48873
48874     mpc83xx: fix typo in DDR2 programming
48875
48876     introduced in the implement board_add_ram_info patch as I was cleaning out the
48877     magic numbers.  sorry.
48878
48879     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48880
48881 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
48882 Author: Kim Phillips <kim.phillips@freescale.com>
48883 Date:   Thu Aug 16 22:53:09 2007 -0500
48884
48885     mpc83xx: move freescale boards to boards/freescale
48886
48887     includes build fixes.
48888
48889     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48890
48891 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
48892 Author: Kim Phillips <kim.phillips@freescale.com>
48893 Date:   Thu Aug 16 22:52:59 2007 -0500
48894
48895     mpc83xx: suppress unused variable 'val8' warning
48896
48897     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48898
48899 commit bbea46f76f767b919070b4829bf34c86bd223248
48900 Author: Kim Phillips <kim.phillips@freescale.com>
48901 Date:   Thu Aug 16 22:52:48 2007 -0500
48902
48903     mpc83xx: implement board_add_ram_info
48904
48905     add board_add_ram_info, to make memory diagnostic output more
48906     consistent. u-boot banner output now looks like:
48907
48908     DRAM:  256 MB (DDR1, 64-bit, ECC on)
48909
48910     and for boards with SDRAM on the local bus, a line such as this is
48911     added:
48912
48913     SDRAM: 64 MB (local bus)
48914
48915     also replaced some magic numbers with their equivalent define names.
48916
48917     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48918
48919 commit 14778585d1389d86d5846efec29e5fce892680ce
48920 Author: Tony Li <tony.li@freescale.com>
48921 Date:   Fri Aug 17 10:35:59 2007 +0800
48922
48923     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
48924
48925     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
48926     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
48927
48928     Signed-off-by Tony Li <tony.li@freescale.com>
48929
48930 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
48931 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48932 Date:   Thu Aug 16 15:05:11 2007 -0500
48933
48934     ColdFire: Add M54455EVB for MCF5445x
48935
48936     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48937
48938 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
48939 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48940 Date:   Thu Aug 16 13:20:50 2007 -0500
48941
48942     ColdFire: Add M5253EVBE platform for MCF52x2
48943
48944     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48945
48946 commit a605aacd8324094199402816cc6d9124aba57b8d
48947 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48948 Date:   Thu Aug 16 05:04:31 2007 -0500
48949
48950     ColdFire: Add M5249EVB platform for MCF52x2
48951
48952     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48953
48954 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
48955 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48956 Date:   Wed Aug 15 20:32:06 2007 -0500
48957
48958     ColdFire: Update Freescale MCF52x2 platforms
48959
48960     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48961
48962 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
48963 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48964 Date:   Wed Aug 15 19:55:10 2007 -0500
48965
48966     ColdFire: Update EB+MCF-EV123 platform
48967
48968     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48969
48970 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
48971 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48972 Date:   Wed Aug 15 19:46:38 2007 -0500
48973
48974     ColdFire: update TASREG platform for MCF52x2
48975
48976     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48977
48978 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
48979 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48980 Date:   Wed Aug 15 19:45:51 2007 -0500
48981
48982     ColdFire: update r5200 platform for MCF52x2
48983
48984     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48985
48986 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
48987 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48988 Date:   Wed Aug 15 19:43:20 2007 -0500
48989
48990     ColdFire: idmr platform MCF52x2 update
48991
48992     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48993
48994 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
48995 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48996 Date:   Wed Aug 15 19:41:06 2007 -0500
48997
48998     ColdFire: cobra5272 platform for MCF52x2 update
48999
49000     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49001
49002 commit 56115665b4a64c10c01440c57749b265e0908fa4
49003 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49004 Date:   Wed Aug 15 19:38:15 2007 -0500
49005
49006     ColdFire: MCF52x2 Header files update
49007
49008     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49009
49010 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
49011 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49012 Date:   Wed Aug 15 19:21:21 2007 -0500
49013
49014     ColdFire: MCF52x2 update
49015
49016     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49017
49018 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
49019 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49020 Date:   Wed Aug 15 18:46:11 2007 -0500
49021
49022     ColdFire: MCF5329 update cache
49023
49024     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49025
49026 commit 7171977fb8fd77cfb6676953fa9a05789c450513
49027 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49028 Date:   Wed Aug 15 15:40:20 2007 -0500
49029
49030     ColdFire: MCF5329 header file clean up
49031
49032     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49033
49034 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
49035 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49036 Date:   Wed Aug 15 15:39:17 2007 -0500
49037
49038     ColdFire: MCF5329 Update and cleanup
49039
49040     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49041
49042 commit 10327dc5541f947c0cf7e31fef86c4706169607a
49043 Author: Andy Fleming <afleming@freescale.com>
49044 Date:   Thu Aug 16 16:35:02 2007 -0500
49045
49046     Add CONFIG_HAS_ETH0 to all boards with TSEC
49047
49048     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
49049     to update TSEC1's device-tree node, so we need to add it
49050     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
49051     since they will eventually do something similar.
49052
49053     Signed-off-by: Andy Fleming <afleming@freescale.com>
49054
49055 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
49056 Author: Kumar Gala <galak@kernel.crashing.org>
49057 Date:   Thu Aug 16 15:05:04 2007 -0500
49058
49059     Update MPC8544 DS PCI memory map
49060
49061     The PCIe bus that the ULI M1575 is connected to has no possible way of
49062     needing more than the fixed amount of IO & Memory space needed by the ULI.
49063
49064     So make it use far less IO & memory space and have it use the shared LAW.  This
49065     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
49066     by each bus.
49067
49068     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49069
49070 commit ea5877e31ed63ade948fd1293895ec23fe01472e
49071 Author: Kumar Gala <galak@kernel.crashing.org>
49072 Date:   Thu Aug 16 11:01:21 2007 -0500
49073
49074     Fix up some fdt issues on 8544DS
49075
49076     It looks like we had a merge issue that duplicated a bit of code
49077     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
49078     the MAC address properly set in the device tree on boot for TSEC1
49079
49080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49081
49082 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
49083 Author: Niklaus Giger <niklaus.giger@netstal.com>
49084 Date:   Thu Aug 16 15:16:03 2007 +0200
49085
49086     PPC4xx:HCU4/5 cleanup
49087
49088     Minor cleanups to confirm to the u-boot coding style.
49089     Some german expressions -> english.
49090     HCU5 enforces a unique IP adress for a given slot in the rack.
49091
49092     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49093
49094 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
49095 Author: Niklaus Giger <niklaus.giger@netstal.com>
49096 Date:   Thu Aug 16 15:16:02 2007 +0200
49097
49098     PPC4xx:HCU4/5 cleanup ecc/sdram init
49099
49100     Make ecc initialisation robust, as DDR2-ECC errors may be generated
49101     while zeroing the RAM.
49102
49103     Return 16 bytes (a cacheline) less than the available memory, as the
49104     board and/or PPC440EPx might have problems accessing the last bytes.
49105
49106     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49107
49108 commit d35b508a55508535b6e8445b718585d27df733d3
49109 Author: Kim Phillips <kim.phillips@freescale.com>
49110 Date:   Wed Aug 15 22:29:56 2007 -0500
49111
49112     fdt: suppress unused variable 'bd' warning
49113
49114     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49115
49116 commit 82bd9ee77490588d4da785d75829ca63d0176baf
49117 Author: Andy Fleming <afleming@freescale.com>
49118 Date:   Wed Aug 15 20:06:50 2007 -0500
49119
49120     Fix warnings from of_data copy fix
49121
49122     Forgot to cast of_flat_tree to ulong.
49123
49124     Signed-off-by: Andy Fleming <afleming@freescale.com>
49125
49126 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
49127 Author: Andy Fleming <afleming@freescale.com>
49128 Date:   Wed Aug 15 20:03:44 2007 -0500
49129
49130     Don't wait for disconnected TSECs
49131
49132     The TSEC driver's PHY code waits a long time for autonegotiation to
49133     complete, even if the link is down.  The PHY knows the link is
49134     down or up before autonegotiation completes, so we can short-circuit
49135     the process if the link is down.
49136
49137     Signed-off-by: Andy Fleming <afleming@freescale.com>
49138
49139 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
49140 Author: Andy Fleming <afleming@freescale.com>
49141 Date:   Wed Aug 15 20:03:34 2007 -0500
49142
49143     Fix numerous bugs in the 8568 UEC support
49144
49145     Actually, fixed a large bug in the UEC for *all* platforms.
49146     How did this ever work?
49147
49148     uec_init() did not follow the spec for eth_init(), and returned
49149     0 on success.  Switch it to return the link like tsec_init()
49150     (and 0 on error)
49151
49152     The immap for the 8568 was defined based on MPC8568, rather than
49153     CONFIG_MPC8568
49154
49155     CONFIG_QE was off
49156
49157     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
49158
49159     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
49160     enabled
49161
49162     Signed-off-by: Andy Fleming <afleming@freescale.com>
49163
49164 commit 3a79013e2adda53332dfd0b511066a805e929a9d
49165 Author: Andy Fleming <afleming@freescale.com>
49166 Date:   Wed Aug 15 20:03:25 2007 -0500
49167
49168     Define tsec flag values in config files
49169
49170     The tsec_info structure and array has a "flags" field for each
49171     ethernet controller.  This field is the only reason there are
49172     settings.  Switch to defining TSECn_FLAGS for each controller
49173     in the config header, and we can greatly simplify the array, and
49174     also simplify the addition of future boards.
49175
49176     Signed-off-by: Andy Fleming <afleming@freescale.com>
49177
49178 commit ec7238229507e7f47533a611ea8c53319d234cf3
49179 Author: Andy Fleming <afleming@freescale.com>
49180 Date:   Wed Aug 15 20:03:13 2007 -0500
49181
49182     Add support for building all boards with a TSEC
49183
49184     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
49185     Now we can do a MAKEALL test on all of them!
49186
49187     Signed-off-by: Andy Fleming <afleming@freescale.com>
49188
49189 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
49190 Author: Andy Fleming <afleming@freescale.com>
49191 Date:   Wed Aug 15 17:30:56 2007 -0500
49192
49193     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
49194
49195     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
49196     neglected to *also* put the code inside the similar #ifdef
49197     for CONFIG_OF_FLAT_TREE.
49198
49199     Signed-off-by: Andy Fleming <afleming@freescale.com>
49200
49201 commit 78f9fef7f406078c8bf7191e665a73f795157746
49202 Author: Scott Wood <scottwood@freescale.com>
49203 Date:   Wed Aug 15 15:46:46 2007 -0500
49204
49205     mpc885ads: Don't define CONFIG_BZIP2.
49206
49207     bzip2 requires a significant chunk of malloc space, and there isn't
49208     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
49209     and a downloaded image at 0x400000.
49210
49211     Signed-off-by: Scott Wood <scottwood@freescale.com>
49212
49213 commit 002275a3ed8b114885f6702d6d544d0780dfe689
49214 Author: Michal Simek <Monstr@seznam.cz>
49215 Date:   Thu Aug 16 08:54:10 2007 +0200
49216
49217     Bios emulator - fix microblaze toolchain problem
49218
49219     microblaze CPU have problem with bios_emulator code.
49220     Microblaze toolchain doesn't support PRAGMA PACK.
49221
49222     Signed-off-by: Michal Simek <monstr@monstr.eu>
49223
49224 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
49225 Author: Wolfgang Denk <wd@denx.de>
49226 Date:   Thu Aug 16 11:51:04 2007 +0200
49227
49228     Minor Coding Style fix; Update CHANGELOG file.
49229
49230     Signed-off-by: Wolfgang Denk <wd@denx.de>
49231
49232 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
49233 Author: Stefan Roese <sr@denx.de>
49234 Date:   Thu Aug 16 11:21:49 2007 +0200
49235
49236     ppc4xx: Remove #warning in esd auto_update.c
49237
49238     Signed-off-by: Stefan Roese <sr@denx.de>
49239
49240 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
49241 Author: Stefan Roese <sr@denx.de>
49242 Date:   Fri Jun 22 17:32:28 2007 +0200
49243
49244     ppc7xx: Update CPCI750 board
49245
49246     This small CPCI750 update extends the board specific command
49247     "show_config" to display the Marvell strapping registers and
49248     extends the PCI IDE controller.
49249
49250     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
49251     Signed-off-by: Stefan Roese <sr@denx.de>
49252
49253 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
49254 Author: Michal Simek <monstr@monstr.eu>
49255 Date:   Thu Aug 16 10:46:28 2007 +0200
49256
49257     [FIX] Changes for bios_emulator code for others architecture
49258
49259 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
49260 Author: Michal Simek <monstr@monstr.eu>
49261 Date:   Thu Aug 16 10:45:09 2007 +0200
49262
49263     [FIX] Remove unused include file
49264
49265 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
49266 Author: Stefan Roese <sr@denx.de>
49267 Date:   Thu Aug 16 10:18:33 2007 +0200
49268
49269     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
49270
49271     Signed-off-by: Stefan Roese <sr@denx.de>
49272
49273 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
49274 Author: Stefan Roese <sr@denx.de>
49275 Date:   Thu Aug 16 09:54:51 2007 +0200
49276
49277     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
49278
49279     Signed-off-by: Stefan Roese <sr@denx.de>
49280
49281 commit 02ba7022f62bb75908296c58c63866e1d294b69a
49282 Author: Stefan Roese <sr@denx.de>
49283 Date:   Thu Aug 16 09:52:29 2007 +0200
49284
49285     ppc4xx: Update Sequoia/Rainier bootstrap command
49286
49287     As suggested by David Mitchell, here an update for the Sequoia/Rainier
49288     bootstrap command.
49289
49290     Signed-off-by: Stefan Roese <sr@denx.de>
49291
49292 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
49293 Author: Kim Phillips <kim.phillips@freescale.com>
49294 Date:   Wed Aug 15 22:30:39 2007 -0500
49295
49296     mpc83xx: enable libfdt by default on freescale boards
49297
49298     this enables libfdt code by default for the
49299     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
49300     mpc8349itx and gp boards.
49301
49302     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49303
49304 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
49305 Author: Kim Phillips <kim.phillips@freescale.com>
49306 Date:   Wed Aug 15 22:30:33 2007 -0500
49307
49308     mpc83xx: migrate remaining freescale boards to libfdt
49309
49310     this adds libfdt support code for the freescale
49311     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
49312     and gp boards.
49313
49314     Boards remain compatible with OF_FLAT_TREE.
49315
49316     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49317
49318 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
49319 Author: Kim Phillips <kim.phillips@freescale.com>
49320 Date:   Wed Aug 15 22:30:26 2007 -0500
49321
49322     mpc83xx: move common /memory node update mechanism to cpu.c
49323
49324     also adds common prototypes to include/common.h.
49325
49326     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49327
49328 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
49329 Author: Kim Phillips <kim.phillips@freescale.com>
49330 Date:   Wed Aug 15 22:30:19 2007 -0500
49331
49332     mpc83xx: remaining 8360 libfdt fixes
49333
49334     PCI clocks and QE frequencies weren't being updated, and the core clock
49335     was being updated incorrectly.  This patch also adds a /memory node if
49336     it doesn't already exist prior to update.
49337
49338     plus some cosmetic trimming to single line comments.
49339
49340     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49341
49342 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
49343 Author: Kim Phillips <kim.phillips@freescale.com>
49344 Date:   Wed Aug 15 22:30:12 2007 -0500
49345
49346     mpc83xx: fix UEC2->1 typo in libfdt setup code
49347
49348     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49349
49350 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
49351 Author: Kim Phillips <kim.phillips@freescale.com>
49352 Date:   Wed Aug 15 22:30:05 2007 -0500
49353
49354     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
49355
49356     and reorder the existing 83xx maintainers alpha.
49357
49358     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49359
49360 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
49361 Author: Michal Simek <monstr@monstr.eu>
49362 Date:   Wed Aug 15 21:15:05 2007 +0200
49363
49364     [FIX] Resolve problem with warnings
49365     microblaze toolchain don't support PRAGMA PACK.
49366
49367 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
49368 Author: Michal Simek <monstr@monstr.eu>
49369 Date:   Wed Aug 15 21:05:07 2007 +0200
49370
49371     [FIX] Correction command setting for Microblaze boards
49372
49373 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
49374 Author: Michal Simek <monstr@monstr.eu>
49375 Date:   Wed Aug 15 21:03:41 2007 +0200
49376
49377     [FIX] Correction command definition
49378
49379 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
49380 Author: Jon Loeliger <jdl@freescale.com>
49381 Date:   Wed Aug 15 11:55:35 2007 -0500
49382
49383     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
49384
49385     Remove a leftover in net/tftp.c while we're at it.
49386
49387     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49388
49389 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
49390 Author: Jon Loeliger <jdl@freescale.com>
49391 Date:   Wed Aug 15 12:20:40 2007 -0500
49392
49393     Move the MPC8641HPCN board under board/freescale.
49394
49395     Minor path corrections needed to ensure buildability.
49396
49397     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49398
49399 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
49400 Author: Jon Loeliger <jdl@freescale.com>
49401 Date:   Wed Aug 15 11:46:22 2007 -0500
49402
49403     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
49404
49405     Remove a leftover in net/tftp.c while we're at it.
49406
49407     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49408
49409 commit 210f463c71917b7a4495c2103c228b9c179ae64d
49410 Author: Jerry Van Baren <gvb.uboot@gmail.com>
49411 Date:   Wed Aug 15 11:13:15 2007 -0400
49412
49413     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
49414
49415     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
49416     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
49417     when it should have gone inside of the conditional.  As a result, it
49418     broke non-LIBFDT board builds.
49419
49420     Also added a missing "not." to the comment.
49421
49422     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49423
49424 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
49425 Author: Niklaus Giger <niklaus.giger@netstal.com>
49426 Date:   Wed Aug 15 12:14:23 2007 +0200
49427
49428     PPC4xx:HCU4/5-Board fix compile warning
49429
49430     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49431
49432 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
49433 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49434 Date:   Tue Aug 14 14:06:45 2007 -0500
49435
49436     Fix malloc size error in ahci_init_one.
49437
49438     Typically this causes scsi init to corrupt the
49439     devlist and break the coninfo command.
49440     Fix a compiler size warning.
49441
49442     Signed-off-by: Jason Jin <jason.jin@freescale.com>
49443     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49444     Acked-by: Andy Fleming <afleming@freescale.com>
49445
49446 commit b361acd64fd2525c081b9b288b0804efe209c0e9
49447 Author: ksi@koi8.net <ksi@koi8.net>
49448 Date:   Tue Aug 14 10:02:16 2007 -0700
49449
49450     TI DaVinci - fix unsupported %hhx format
49451
49452     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
49453
49454 commit f01dbb5424a81453c81190dd30e945891466f621
49455 Author: Wolfgang Denk <wd@denx.de>
49456 Date:   Tue Aug 14 18:42:36 2007 +0200
49457
49458     Coding style cleanup. Update CHANGELOG.
49459
49460     Signed-off-by: Wolfgang Denk <wd@denx.de>
49461
49462 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
49463 Author: Andy Fleming <afleming@freescale.com>
49464 Date:   Tue Aug 14 10:32:59 2007 -0500
49465
49466     Fix initrd/dtb interaction
49467
49468     The original code would wrongly relocate the blob to be right before
49469     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
49470     if it is defined.  So we make two changes:
49471
49472     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
49473
49474     2) If the blob is being relocated, relocate it before kbd, not initrd
49475
49476     Signed-off-by: Andy Fleming <afleming@freescale.com>
49477
49478 commit e54b970173769307a116bd34028b6d0c2eea2a4e
49479 Author: Peter Pearse <peter.pearse@arm.com>
49480 Date:   Tue Aug 14 15:40:00 2007 +0100
49481
49482     Supply spi interface in at45.c
49483
49484 commit 4ce846ec59f36b85d6644a769690ad3feb667575
49485 Author: Stefan Roese <sr@denx.de>
49486 Date:   Tue Aug 14 15:12:01 2007 +0200
49487
49488     POST: Fix merge problem
49489
49490     Signed-off-by: Stefan Roese <sr@denx.de>
49491
49492 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
49493 Author: Stefan Roese <sr@denx.de>
49494 Date:   Tue Aug 14 15:03:17 2007 +0200
49495
49496     Coding style cleanup
49497
49498     Signed-off-by: Stefan Roese <sr@denx.de>
49499
49500 commit 779e975117a75e91fcebe226a63104dbfb924ab1
49501 Author: Stefan Roese <sr@denx.de>
49502 Date:   Tue Aug 14 14:44:41 2007 +0200
49503
49504     ppc4xx: Add initial Zeus (PPC405EP) board support
49505
49506     Signed-off-by: Stefan Roese <sr@denx.de>
49507
49508 commit c5a172a5fd636c12467429e3f7910e53773979c6
49509 Author: Stefan Roese <sr@denx.de>
49510 Date:   Tue Aug 14 14:41:55 2007 +0200
49511
49512     POST: Add option for external ethernet loopback test
49513
49514     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
49515     is not done using an internal loopback connection, but by assuming
49516     that an external loopback connector is plugged into the board.
49517
49518     Signed-off-by: Stefan Roese <sr@denx.de>
49519
49520 commit eb2b4010ae426245172988804ee8d9193fb41038
49521 Author: Stefan Roese <sr@denx.de>
49522 Date:   Tue Aug 14 14:39:44 2007 +0200
49523
49524     POST: Add ppc405 support to cache and UART POST
49525
49526     Signed-off-by: Stefan Roese <sr@denx.de>
49527
49528 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
49529 Author: Peter Pearse <peter.pearse@arm.com>
49530 Date:   Tue Aug 14 10:46:32 2007 +0100
49531
49532     Replace lost end of at45.c.
49533
49534 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
49535 Author: Peter Pearse <peter.pearse@arm.com>
49536 Date:   Tue Aug 14 10:30:06 2007 +0100
49537
49538     Update Makefiles for merged and split at45.c.
49539
49540 commit 3454cece2db57cb9eb7087995f7e73066a163f71
49541 Author: Peter Pearse <peter.pearse@arm.com>
49542 Date:   Tue Aug 14 10:21:06 2007 +0100
49543
49544     Delete the merged files.
49545
49546 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
49547 Author: Peter Pearse <peter.pearse@arm.com>
49548 Date:   Tue Aug 14 10:14:05 2007 +0100
49549
49550     Add the files.
49551
49552 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
49553 Author: Peter Pearse <peter.pearse@arm.com>
49554 Date:   Tue Aug 14 10:10:52 2007 +0100
49555
49556     Add MACH_TYPE records for several AT91 boards.
49557     Merge to two at45.c files into a common file, split to at45.c and spi.c
49558     Fix spelling error in DM9161 PHY Support.
49559     Initialize at91rm9200 board (and set LED).
49560     Add PIO control for at91rm9200dk LEDs and Mux.
49561     Change dataflash partition boundaries to be compatible with Linux 2.6.
49562
49563     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
49564     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
49565
49566 commit 4ef35e53c693556c54b0c22d6f873de87bade253
49567 Author: Wolfgang Denk <wd@denx.de>
49568 Date:   Tue Aug 14 09:54:46 2007 +0200
49569
49570     Coding style cleanup, update CHANGELOG
49571
49572     Signed-off-by: Wolfgang Denk <wd@denx.de>
49573
49574 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
49575 Author: Wolfgang Denk <wd@denx.de>
49576 Date:   Tue Aug 14 09:47:27 2007 +0200
49577
49578     Coding style cleanup; rebuild CHANGELOG
49579
49580 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
49581 Author: Randy Vinson <rvinson@linuxbox.(none)>
49582 Date:   Tue Feb 27 19:42:22 2007 -0700
49583
49584     85xxCDS: Add make targets for legacy systems.
49585
49586     The PCI ID select values on the Arcadia main board differ depending
49587     on the version of the hardware. The standard configuration supports
49588     Rev 3.1. The legacy target supports Rev 2.x.
49589
49590     Signed-off-by Randy Vinson <rvinson@mvista.com>
49591
49592 commit e41094c7e38177c755fbd9b182018069614f080d
49593 Author: Andy Fleming <afleming@freescale.com>
49594 Date:   Tue Aug 14 01:50:09 2007 -0500
49595
49596     85xxCDS: Enable the VIA PCI-to-ISA bridge.
49597
49598     Author: Randy Vinson <rvinson@linuxbox.(none)>
49599
49600     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
49601     Arcadia main board.
49602
49603     Signed-off-by: Randy Vinson <rvinson@mvista.com>
49604     Signed-off-by: York Sun <yorksun@freescale.com>
49605
49606 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
49607 Author: Andy Fleming <afleming@freescale.com>
49608 Date:   Tue Aug 14 00:14:25 2007 -0500
49609
49610     Add support for UEC to 8568
49611
49612     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
49613     Signed-off-by: Andy Fleming <afleming@freescale.com>
49614
49615 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
49616 Author: Haiying Wang <Haiying.Wang@freescale.com>
49617 Date:   Tue Jun 19 14:18:34 2007 -0400
49618
49619     Add PCI support for MPC8568MDS board
49620
49621     This patch is against u-boot-mpc85xx.git of www.denx.com
49622
49623     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
49624     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
49625
49626 commit d111d6382c99fdea08c2312eeeae8786945e189a
49627 Author: Haiying Wang <Haiying.Wang@freescale.com>
49628 Date:   Tue Jun 19 14:18:32 2007 -0400
49629
49630     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
49631
49632     This patch is against u-boot-mpc85xx.git of www.denx.com
49633
49634     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
49635     both MPC8548CDS board and MPC8568MDS board, especially for supporting
49636     533MHz DDR2.
49637
49638     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
49639     DDR2 on all current board versions especially ver 1.92 or later to bring
49640     up.
49641
49642     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
49643
49644 commit 3db0bef59eab1155801618cef5c481e97553b597
49645 Author: Kumar Gala <galak@kernel.crashing.org>
49646 Date:   Tue Aug 7 18:07:27 2007 -0500
49647
49648     Use an absolute address when jumping out of 4k boot page
49649
49650     On e500 when we leave the 4k boot page we should use an absolute address since
49651     we don't know where the board code may want us to be really running at.
49652
49653     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49654
49655 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
49656 Author: Andy Fleming <afleming@freescale.com>
49657 Date:   Mon Aug 13 14:49:59 2007 -0500
49658
49659     MPC85xx BA bits not set for 3-bit bank address DIMM
49660
49661     The current implementation does not set the number of bank address bits
49662     (BA) in the processor. The default assumes 2 logical bank bits. This
49663     works fine for a DIMM that uses devices with 4 internal banks (SPD
49664     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
49665     devices with 8 internal banks (SPD byte17 = 0x8).
49666
49667     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
49668
49669 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
49670 Author: Andy Fleming <afleming@freescale.com>
49671 Date:   Mon Aug 13 14:38:06 2007 -0500
49672
49673     Fix minor 85xx warnings
49674
49675     Some patches had inserted warnings into the build:
49676     * mpc8560ads declared data without using it
49677     * cpu_init declared ecm and immap without using it in all CONFIGs
49678     * MPC8548CDS.h had its default filenames changed so that they contained
49679       "\m" in the paths.  Made the defaults not Windows-specific (or
49680       anything-specific)
49681
49682     Signed-off-by: Andy Fleming <afleming@freescale.com>
49683
49684 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
49685 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49686 Date:   Fri Jul 27 01:50:52 2007 -0500
49687
49688     8548cds PCIE support.
49689
49690     Make the early L1 cache stack region guarded to prevent speculative
49691     fetches outside the locked range.
49692
49693     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
49694     init.S whitespace cleanup.
49695
49696     Allow TEXT_BASE value to be specified on command line.  This allows it
49697     to be set to 0xfffc0000 which cuts the uboot binary in half.
49698
49699     Clear and enable lbc and ecm errors.
49700
49701     Update last_busno in device-tree for pci and pcie.
49702
49703     Remove load of obsolete cpu/mpc85xx/pci.0
49704
49705     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49706     Acked-by: Andy Fleming <afleming@freescale.com>
49707
49708 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
49709 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49710 Date:   Fri Jul 27 01:50:51 2007 -0500
49711
49712     8544ds PCIE support
49713
49714     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
49715
49716     Enable LBC and ECM errors and clear error registers.
49717
49718     Add tftpflash env var to get uboot from tftp server and flash it.
49719
49720     Add pci/pcie convenience env vars to display register space:
49721       "run pcie3regs" to see all pcie3 ccsr registers
49722       "run pcie3cfg" to see all cfg registers
49723     Whitespace cleanup and MPC8544DS.h
49724
49725     Enable CONFIG_INTERRUPTS.
49726
49727     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49728     Acked-by: Andy Fleming <afleming@freescale.com>
49729
49730 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
49731 Author: Andy Fleming <afleming@freescale.com>
49732 Date:   Tue Aug 14 01:34:21 2007 -0500
49733
49734     85xx start.S cleanup and exception support
49735
49736     From: Ed Swarthout <Ed.Swarthout@freescale.com>
49737
49738     Support external interrupts from platform to eliminate system hangs.
49739     Define CONFIG_INTERRUPTS board configure option to enable.
49740     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
49741
49742     Remove extra cpu initialization redundant with hardware initialization.
49743     Whitespace cleanup.
49744
49745     Define and use _START_OFFSET consistent with other processors using
49746     ppc_asm.tmpl
49747
49748     Move additional code from .text to boot page to make room for
49749     exception vectors at start of image.
49750
49751     Handle Machine Check, External and Critical exceptions.
49752
49753     Fix e500 machine check error determination in traps.c
49754
49755     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
49756
49757     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49758     Acked-by: Andy Fleming <afleming@freescale.com>
49759
49760 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
49761 Author: Andy Fleming <afleming@freescale.com>
49762 Date:   Tue Aug 14 01:33:18 2007 -0500
49763
49764     Add MPC8544DS README
49765
49766     Signed-off-by: Andy Fleming <afleming@freescale.com>
49767
49768 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
49769 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49770 Date:   Fri Jul 27 01:50:48 2007 -0500
49771
49772     85xx allow debugger to configure ddr.
49773
49774     Only check for mpc8548 rev 1 when compiled for 8548.
49775
49776     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49777     Acked-by: Andy Fleming <afleming@freescale.com>
49778
49779 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
49780 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49781 Date:   Fri Jul 27 01:50:47 2007 -0500
49782
49783     mpc85xx L2 cache reporting and SRAM relocation option.
49784
49785     Allow debugger to override flash cs0/cs1 settings to enable alternate
49786     boot regions
49787
49788     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49789     Acked-by: Andy Fleming <afleming@freescale.com>
49790
49791 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
49792 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49793 Date:   Fri Jul 27 01:50:46 2007 -0500
49794
49795     e500 needs ppc_asm.tmp MCK_EXCEPTION
49796
49797     Always define MCK_EXCEPTION macro - so e500 can use it too.
49798
49799     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49800     Acked-by: Andy Fleming <afleming@freescale.com>
49801
49802 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
49803 Author: David Updegraff <dave@cray.com>
49804 Date:   Mon Jun 11 10:41:07 2007 -0500
49805
49806     multicast tftp: RFC2090
49807
49808     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
49809     on Realtek RTL8139 and Freescale TSEC.
49810
49811     Signed-off-by: David Updegraff <dave@cray.com>
49812     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49813
49814 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
49815 Author: Wilson Callan <wcallan@savantav.com>
49816 Date:   Sat Jul 28 10:56:13 2007 -0400
49817
49818     New CONFIG_BOOTP_SERVERIP option
49819
49820     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
49821     from the bootp server
49822
49823     Signed-off-by: Wilson Callan <wcallan@savantav.com>
49824     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49825
49826 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
49827 Author: Mike Rapoport <mike@compulab.co.il>
49828 Date:   Sun Aug 12 08:48:27 2007 +0300
49829
49830     Add ability to take MAC address from the environment to DM9000 driver
49831
49832     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
49833     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49834
49835 commit be5d72d10d47609326226225181e301fb9a33b58
49836 Author: Wolfgang Denk <wd@denx.de>
49837 Date:   Mon Aug 13 21:57:53 2007 +0200
49838
49839     Minor coding style cleanup. Update CHANGELOG.
49840
49841     Signed-off-by: Wolfgang Denk <wd@denx.de>
49842
49843 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
49844 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49845 Date:   Sat Aug 11 06:54:58 2007 -0500
49846
49847     Modify SBC8641D to use new Freescale PCI routines
49848
49849     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
49850     adapter.
49851
49852     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49853     Signde-off-by: Jon Loeliger <jdl@freescale.com>
49854
49855 commit a08458303e7f9db67f296980036d3292c35cb45c
49856 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49857 Date:   Fri Jun 29 18:38:51 2007 +0200
49858
49859     atmel_mci: Fix data timeout value
49860
49861     Calculate the data timeout based on values from the CSD instead of
49862     just using a hardcoded DTOR value. This is a backport of a similar fix
49863     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
49864     instead of down.
49865
49866     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49867
49868 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
49869 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49870 Date:   Mon Aug 13 17:22:31 2007 +0200
49871
49872     AVR32: Include <div64.h> instead of <asm/div64.h>
49873
49874     include/asm-avr32/div64.h was recently moved to include/div64.h, but
49875     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
49876     the patch was merged perhaps?)
49877
49878     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
49879     compiles again.
49880
49881     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49882
49883 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
49884 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49885 Date:   Wed Jun 27 13:34:26 2007 +0200
49886
49887     atmel_mci: Use 512 byte blocksize if possible
49888
49889     Instead of always using the largest blocksize the card supports, check
49890     if it can support smaller block sizes and use 512 bytes if possible.
49891     Most cards do support this, and other parts of u-boot seem to have
49892     trouble with block sizes different from 512 bytes.
49893
49894     Also enable underrun/overrun protection.
49895
49896     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49897     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
49898
49899 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
49900 Author: Stefan Roese <sr@denx.de>
49901 Date:   Mon Aug 13 09:05:33 2007 +0200
49902
49903     ppc4xx: Fix problem in PLL clock calculation
49904
49905     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
49906     and fixes a bug in the PLL clock calculation.
49907
49908     Signed-off-by: Stefan Roese <sr@denx.de>
49909
49910 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
49911 Author: Wolfgang Denk <wd@denx.de>
49912 Date:   Sun Aug 12 21:34:50 2007 +0200
49913
49914     Update CHANGELOG
49915
49916 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
49917 Author: Wolfgang Denk <wd@denx.de>
49918 Date:   Sun Aug 12 21:34:34 2007 +0200
49919
49920     Minor alignment of output, 2nd try.
49921     Also update CHANGELOG
49922
49923     Signed-off-by: Wolfgang Denk <wd@denx.de>
49924
49925 commit 6b309f22a724fad8418e811751a0741b893419cf
49926 Author: Wolfgang Denk <wd@denx.de>
49927 Date:   Sun Aug 12 20:35:49 2007 +0200
49928
49929     Minor alignment of output
49930
49931     Signed-off-by: Wolfgang Denk <wd@denx.de>
49932
49933 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
49934 Author: Wolfgang Denk <wd@denx.de>
49935 Date:   Sun Aug 12 18:28:18 2007 +0200
49936
49937     Cleanup output on ADS5121 board
49938
49939     Signed-off-by: Wolfgang Denk
49940
49941 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
49942 Author: Wolfgang Denk <wd@denx.de>
49943 Date:   Sun Aug 12 15:11:38 2007 +0200
49944
49945     Adapt board configuration and fix kernel crash on MCC200 board.
49946
49947     The update procedure was modified to turn off the USB subsystem
49948     before exit for MCC200 and TRAB. This is necessary as otherwise the
49949     USB controller continues to write periodically to system memory!
49950
49951     MCC200-specific notes:
49952     - the patch disables the magic key check for MCC200
49953     - the patch contains the configuration changes made
49954       for the new revision of the board.
49955
49956     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
49957     Signed-off-by: Wolfgang Denk <wd@denx.de>
49958
49959 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
49960 Author: Wolfgang Denk <wd@denx.de>
49961 Date:   Sun Aug 12 14:47:54 2007 +0200
49962
49963     Adjust default configuration of ADS5121 board.
49964
49965     Signed-off-by: Wolfgang Denk <wd@denx.de>
49966
49967 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
49968 Author: Wolfgang Denk <wd@denx.de>
49969 Date:   Sun Aug 12 14:27:39 2007 +0200
49970
49971     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
49972
49973     Signed-off-by: Wolfgang Denk <wd@denx.de>
49974
49975 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
49976 Author: Gerald Van Baren <vanbaren@cideas.com>
49977 Date:   Tue Aug 7 21:14:22 2007 -0400
49978
49979     Improve error print messages.
49980
49981     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49982
49983 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
49984 Author: Kim Phillips <kim.phillips@freescale.com>
49985 Date:   Tue Jul 17 13:57:04 2007 -0500
49986
49987     fdt: allow for builds that don't want env and bd_t nodes
49988
49989     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
49990     area.
49991
49992     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49993
49994 commit 91148bf7aeba142d6f348805db7625db7da64d6f
49995 Author: Kim Phillips <kim.phillips@freescale.com>
49996 Date:   Tue Jul 17 13:56:53 2007 -0500
49997
49998     fdt: do board setup based on fdt address specified on bootm line
49999
50000     The last fdt patch to bootm did board setup based on the address
50001     specified by a prior fdt address command invocation.  The bootm
50002     code, as its call to fdt_chosen does, should use the fdt specified
50003     by the user on the bootm command.  Note this restores full
50004     functionality for the 8360's existing default boot environment
50005     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
50006     before booting a kernel).
50007
50008     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50009
50010 commit e125a2ffc209dd34794e326c7175658253beadf3
50011 Author: Gerald Van Baren <vanbaren@cideas.com>
50012 Date:   Tue Jul 10 20:40:39 2007 -0400
50013
50014     Call ft_board_setup() from the bootm command.
50015
50016     In the patch titled "Create new fdt boardsetup command..." I removed the
50017     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
50018     to add a direct call back into cmd_bootm.c
50019
50020     This fixes the oversight by adding the direct call to the bootm command.
50021
50022     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50023
50024 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
50025 Author: Gerald Van Baren <vanbaren@cideas.com>
50026 Date:   Mon Jun 25 23:25:28 2007 -0400
50027
50028     Create new fdt boardsetup command, fix bug parsing [] form of set values.
50029
50030     Previously ft_board_setup() was called by fdt_chosen() which was not
50031     really correctly structured.  This splits ft_board_setup() out by creating
50032     a new fdt boardsetup command.
50033
50034     Fix a bug when parsing fdt set command values which have the square
50035     bracket form [00 11 22 33] - the length was updated incorrectly in when
50036     parsing that form.
50037
50038     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50039
50040 commit 6f35ded9e85493595e0eb66a82b502a95326d049
50041 Author: Gerald Van Baren <vanbaren@cideas.com>
50042 Date:   Mon Jun 25 20:55:58 2007 -0400
50043
50044     Tighten up the error messages.
50045
50046     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50047
50048 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
50049 Author: Gerald Van Baren <vanbaren@cideas.com>
50050 Date:   Mon Jun 25 19:52:23 2007 -0400
50051
50052     Asthetic improvements: error messages and line lengths.
50053
50054     Tighten up the error messages, split overlength lines.
50055
50056     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50057
50058 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
50059 Author: Gerald Van Baren <vanbaren@cideas.com>
50060 Date:   Fri May 25 22:08:57 2007 -0400
50061
50062     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
50063
50064     The fdt_chosen() function was adding/seting some properties ad-hoc
50065       improperly and duplicated (poorly) what was done in ft_board_setup()
50066
50067     Clean up long lines (setting properties, printing errors).
50068
50069     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50070
50071 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
50072 Author: Gerald Van Baren <vanbaren@cideas.com>
50073 Date:   Mon May 21 23:27:16 2007 -0400
50074
50075     For fdt_find_node_by_path(), handle the root path properly.
50076
50077     Also removes the special case root path detection in cmd_fdt.c since it
50078     is no longer necessary.
50079
50080     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50081
50082 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
50083 Author: Gerald Van Baren <vanbaren@cideas.com>
50084 Date:   Thu May 17 23:54:36 2007 -0400
50085
50086     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
50087
50088     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50089     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
50090
50091 commit 1a861169bc3758f9de3aead62b058736c6891246
50092 Author: Gerald Van Baren <vanbaren@cideas.com>
50093 Date:   Wed Jun 6 22:47:58 2007 -0400
50094
50095     Replace fdt_node_offset() with fdt_find_node_by_path().
50096
50097     The new name matches more closely the kernel's name, which is also
50098     a much better description.
50099
50100     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50101     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
50102
50103 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
50104 Author: Gerald Van Baren <vanbaren@cideas.com>
50105 Date:   Wed May 16 22:39:59 2007 -0400
50106
50107     Fix cmd_fdt line lengths, refactor code.
50108
50109     Break lines that were greater than 80 characters in length.
50110     Move the fdt print and property parsing code to separate static functions
50111       to reduce coding clutter in the fdt_cmd handling body.
50112
50113     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50114
50115 commit 25114033ab21788810c48ba4df103b649da1223b
50116 Author: Gerald Van Baren <vanbaren@cideas.com>
50117 Date:   Sat May 12 09:47:25 2007 -0400
50118
50119     FDT command improvements.
50120
50121     Fix "fdt set" so that it will create a non-existing property.
50122     Add "fdt mknode" to create nodes.
50123
50124     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50125
50126 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
50127 Author: Gerald Van Baren <vanbaren@cideas.com>
50128 Date:   Sat May 12 09:45:46 2007 -0400
50129
50130     Reorganize and fix problems (returns) in the bootm command.
50131
50132     Do *NOT* return after the "point of no return" has been passed.
50133       If something goes wrong, the board must be reset after that point.
50134     Move the "Transferring control to Linux" debug message back to where it
50135       belongs: just before transferring control to linux.
50136
50137     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50138
50139 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
50140 Author: Gerald Van Baren <vanbaren@cideas.com>
50141 Date:   Tue May 8 21:27:35 2007 -0400
50142
50143     Fix bugs in the CONFIG_OF_LIBFDT
50144
50145     Stupid coding mistakes (identified by Timur Tabi, thanks).
50146
50147     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50148
50149 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
50150 Author: Gerald Van Baren <vanbaren@cideas.com>
50151 Date:   Wed Apr 25 22:47:15 2007 -0400
50152
50153     Improve fdt move length handling.
50154
50155     Make the length parameter optional: if not specified, do the move using
50156     the current size unchanged.
50157
50158     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50159
50160 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
50161 Author: Gerald Van Baren <vanbaren@cideas.com>
50162 Date:   Wed Apr 25 22:23:36 2007 -0400
50163
50164     Minor code clean up.
50165
50166     Declare the variable fdt properly as extern.
50167     Call the "set_fn" function pointer the "short way" without the full
50168       dereferencing syntax.
50169
50170     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50171
50172 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
50173 Author: Gerald Van Baren <vanbaren@cideas.com>
50174 Date:   Wed Apr 25 21:24:27 2007 -0400
50175
50176     Improve error messages, more informative.
50177
50178     Print more than the raw libfdt error message strings.  This is especially
50179     useful for cluing in the user when the bootm command aborts due to
50180     blob problems.
50181
50182     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50183
50184 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
50185 Author: Gerald Van Baren <vanbaren@cideas.com>
50186 Date:   Fri Apr 20 22:46:53 2007 -0400
50187
50188     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
50189
50190     This is the way u-boot reduces configured-out code.  At Wolfgang
50191     Grandegger and Wolfgang Denk's request, make libfdt conform.
50192
50193     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50194
50195 commit 923efd286411ed052d9e074f59f8986d6081061c
50196 Author: Bruce Adler <bruce.adler@ccpu.com>
50197 Date:   Fri Aug 10 14:54:47 2007 -0700
50198
50199     add image size and descriptors for Spartan 3E FPGA chips
50200
50201     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
50202
50203     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
50204
50205 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
50206 Author: Kim Phillips <kim.phillips@freescale.com>
50207 Date:   Fri Aug 10 15:34:48 2007 -0500
50208
50209     make MAKEALL more immune to merge conflicts
50210
50211     ..by placing board entries one per line, as suggested by jdl.
50212
50213     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50214
50215 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
50216 Author: Kim Phillips <kim.phillips@freescale.com>
50217 Date:   Fri Aug 10 13:28:25 2007 -0500
50218
50219     README: Remove outdated cpu type, board type, and NAME_config lists
50220
50221     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50222
50223 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
50224 Author: Dave Liu <r63238@freescale.com>
50225 Date:   Fri Aug 10 15:48:59 2007 +0800
50226
50227     mpc83xx: Suppress the warning 'burstlen'
50228
50229     suppress the warning 'burstlen' of spd_sdram.
50230
50231     Signed-off-by: Dave Liu <daveliu@freescale.com>
50232
50233 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
50234 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
50235 Date:   Thu Aug 9 15:11:03 2007 -0500
50236
50237     Add support for SBC8641D. Config files.
50238
50239     Add support for Wind River's SBC8641D reference board.
50240
50241     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
50242     Acked-by: Wolfgang Denk <wd@denx.de>
50243     Acked-by: Jon Loeliger <jdl@freescale.com>
50244
50245 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
50246 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
50247 Date:   Thu Aug 9 15:10:53 2007 -0500
50248
50249     Add support for SBC8641D.  Board files.
50250
50251     Add support for Wind River's SBC8641D reference board.
50252
50253     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
50254     Acked-by: Wolfgang Denk <wd@denx.de>
50255     Acked-by: Jon Loeliger <jdl@freescale.com>
50256
50257 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
50258 Author: Stefan Roese <sr@denx.de>
50259 Date:   Fri Aug 10 20:34:58 2007 +0200
50260
50261     Conding style cleanup
50262
50263     Signed-off-by: Stefan Roese <sr@denx.de>
50264
50265 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
50266 Author: Sergey Kubushyn <ksi@koi8.net>
50267 Date:   Fri Aug 10 20:26:18 2007 +0200
50268
50269     [ARM] TI DaVinci support, hopefully final
50270
50271     Add support for the following DaVinci boards:
50272     - DV_EVM
50273     - SCHMOOGIE
50274     - SONATA
50275
50276     Changes:
50277
50278     - Split into separate board directories
50279     - Removed changes to MTD_DEBUG (or whatever it's called)
50280     - New CONFIG_CMD party line followed
50281     - Some cosmetic fixes, cleanup etc.
50282     - Patches against the latest U-Boot tree as of now.
50283     - Fixed CONFIG_CMD_NET in net files.
50284     - Fixed CONFIG_CMD_EEPROM for schmoogie.
50285     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
50286        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
50287        but it at least compiles.
50288
50289     Here is an excerpt from session log on SCHMOOGIE...
50290
50291     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
50292
50293     DRAM:  128 MB
50294     NAND:  128 MiB
50295     In:    serial
50296     Out:   serial
50297     Err:   serial
50298     ARM Clock : 297MHz
50299     DDR Clock : 162MHz
50300     ETH PHY   : DP83848 @ 0x01
50301     U-Boot > iprobe
50302     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
50303     U-Boot > ping 192.168.253.10
50304     host 192.168.253.10 is alive
50305     U-Boot >
50306
50307     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
50308     Acked-by: Dirk Behme <dirk.behme@gmail.com>
50309     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
50310     Acked-by: Stefan Roese <sr@denx.de>
50311
50312 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
50313 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50314 Date:   Fri Jul 27 01:50:45 2007 -0500
50315
50316     fsl_pci_init cleanup.
50317
50318     Do not enable normal errors created during probe (master abort, perr,
50319     and pcie Invalid Configuration access).
50320
50321     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
50322
50323     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50324     Acked-by: Andy Fleming <afleming@freescale.com>
50325
50326 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
50327 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50328 Date:   Fri Jul 27 01:50:44 2007 -0500
50329
50330     pciauto_setup_device bars_num fix
50331
50332     Passing bars_num=0 to pciauto_setup_device should assign no bars.
50333
50334     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50335     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
50336     Acked-by: Andy Fleming <afleming@freescale.com>
50337
50338 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
50339 Author: Jon Loeliger <jdl@freescale.com>
50340 Date:   Mon Aug 6 17:39:44 2007 -0500
50341
50342     8641hpcn: Do correct sized pointer math.
50343
50344     When I rebased Ed's patch and cleaned up a few compilation
50345     problems, I apparently rebased my brain on crack first.
50346     Fix that by doing (char *) sized pointer math as needed.
50347
50348     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50349
50350 commit cfc7a7f5bb3273c9951173c788001d45118f141f
50351 Author: Jon Loeliger <jdl@freescale.com>
50352 Date:   Thu Aug 2 14:42:20 2007 -0500
50353
50354     cpu/86xx fixes.
50355
50356     Remove rev 1 fixes.
50357     Always set PICGCR_MODE.
50358     Enable machine check and provide board config option
50359     to set and handle SoC error interrupts.
50360
50361     Include MSSSR0 in error message.
50362
50363     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
50364
50365     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50366     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50367
50368 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
50369 Author: Stefan Roese <sr@denx.de>
50370 Date:   Fri Aug 10 10:42:25 2007 +0200
50371
50372     Coding style cleanup
50373
50374     Signed-off-by: Stefan Roese <sr@denx.de>
50375
50376 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
50377 Author: Dirk Behme <dirk.behme@googlemail.com>
50378 Date:   Thu Aug 2 17:42:08 2007 +0200
50379
50380     Make use of generic 64bit division in nand_util.c
50381
50382     Use generic 64bit division in nand_util.c. This makes nand_util.c
50383     independent of any toolchain 64bit division.
50384
50385     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
50386
50387 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
50388 Author: Dirk Behme <dirk.behme@googlemail.com>
50389 Date:   Thu Aug 2 17:41:14 2007 +0200
50390
50391     Move 64bit division from avr32 to generic lib
50392
50393     Move the 64bit division from lib_avr32 to lib_generic. With this, all
50394     boards can do_div/__div64_32 if needed, not only avr one. Code is put
50395     to lib_generic, so no larger memory footprint if not used. No code
50396     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
50397
50398     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
50399
50400 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
50401 Author: Niklaus Giger <niklausgiger@gmx.ch>
50402 Date:   Fri Jul 27 11:31:22 2007 +0200
50403
50404     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
50405
50406     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50407
50408 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
50409 Author: Niklaus Giger <niklausgiger@gmx.ch>
50410 Date:   Fri Jul 27 11:30:33 2007 +0200
50411
50412     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
50413
50414     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50415
50416 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
50417 Author: Niklaus Giger <niklausgiger@gmx.ch>
50418 Date:   Fri Jul 27 11:38:26 2007 +0200
50419
50420     Add PPC4xx-HCU4 and HCU5 boards: common files
50421
50422     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50423
50424 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
50425 Author: Niklaus Giger <niklausgiger@gmx.ch>
50426 Date:   Fri Jul 27 11:28:44 2007 +0200
50427
50428     Add PPC4xx-HCU4 and HCU5 boards: make related
50429
50430     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50431
50432 commit 137fdd9f474ecb853efdace5200576308c67f18d
50433 Author: Niklaus Giger <niklausgiger@gmx.ch>
50434 Date:   Fri Jul 27 11:28:03 2007 +0200
50435
50436     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
50437
50438     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50439
50440 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
50441 Author: Niklaus Giger <niklausgiger@gmx.ch>
50442 Date:   Fri Jul 27 11:27:15 2007 +0200
50443
50444     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
50445
50446     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50447
50448 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
50449 Author: Niklaus Giger <niklausgiger@gmx.ch>
50450 Date:   Fri Jul 27 11:25:31 2007 +0200
50451
50452     Add PPC4xx-HCU4 and HCU5 boards: READMEs
50453
50454     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50455
50456 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
50457 Author: Niklaus Giger <niklausgiger@gmx.ch>
50458 Date:   Fri Jul 27 11:37:40 2007 +0200
50459
50460     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
50461
50462     This series of patches adds support for 2 boards from Netstal Maschinen.
50463
50464     The HCU4 has a PPC405Gpr and
50465     the HCU5 has a PPC440EPX.
50466
50467     The HCU4 has a somehow complicated flash setup, as the booteprom is
50468     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
50469     elegant solution.
50470
50471     The HCU5 has only a booteprom as the whole code will be downloaded from a
50472     different board which has HD, CD-ROM, etc and where all code is stored.
50473
50474     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
50475     Thanks them a lot.
50476
50477     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
50478
50479 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
50480 Author: Stefan Roese <sr@denx.de>
50481 Date:   Fri Aug 10 08:42:55 2007 +0200
50482
50483     ppc4xx: Update lwmon5 POST configuration
50484
50485     Signed-off-by: Stefan Roese <sr@denx.de>
50486
50487 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
50488 Author: Yuri Tikhonov <yur@emcraft.com>
50489 Date:   Fri Aug 10 08:25:22 2007 +0200
50490
50491     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
50492
50493     The patch adds support for UART POST on ppc44x-based boards with no
50494     external serial clocks installed.
50495
50496     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
50497     Acked-by: Stefan Roese <sr@denx.de>
50498
50499 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
50500 Author: Kim Phillips <kim.phillips@freescale.com>
50501 Date:   Mon Aug 6 18:18:34 2007 -0500
50502
50503     mpc83xx: fix ITX[GP] O=builddir builds
50504
50505     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
50506
50507     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
50508     "BUILD_DIR=<some dir> ./MAKEALL ..."
50509
50510     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50511
50512 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
50513 Author: Dave Liu <r63238@freescale.com>
50514 Date:   Wed Aug 1 15:00:59 2007 +0800
50515
50516     mpc83xx: Correct the README for DDR ECC
50517
50518     Update the README for DDR ECC, change the name
50519     to README.mpc83xx.ddrecc.
50520
50521     Signed-off-by: Dave Liu <daveliu@freescale.com>
50522     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50523
50524 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
50525 Author: Dave Liu <r63238@freescale.com>
50526 Date:   Wed Aug 1 15:00:15 2007 +0800
50527
50528     mpc83xx: Consolidate the ECC support of 83xx
50529
50530     Remove the duplicated source code of ecc command on the <board>.c,
50531     for reused, move these code to cpu/mpc83xx directory.
50532
50533     Signed-off-by: Dave Liu <daveliu@freescale.com>
50534     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50535
50536 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
50537 Author: Dave Liu <r63238@freescale.com>
50538 Date:   Sat Aug 4 13:37:39 2007 +0800
50539
50540     mpc83xx: Correct the burst length for DDR2 with 32 bits
50541
50542     The burst length should be 4 for DDR2 with 32 bits bus
50543
50544     Signed-off-by: Dave Liu <daveliu@freescale.com>
50545
50546 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
50547 Author: Kim Phillips <kim.phillips@freescale.com>
50548 Date:   Wed Jul 25 19:25:33 2007 -0500
50549
50550     mpc83xx: add support for the MPC8323E RDB
50551
50552     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
50553     five 10/100 ethernet ports connected via an ICPlus IP175C
50554     switch, one PCI slot, and serial.  Features not supported
50555     in this patch are SD card interface, 2 USB ports, and the
50556     two phone ports.
50557
50558     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
50559     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50560
50561 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
50562 Author: Kim Phillips <kim.phillips@freescale.com>
50563 Date:   Wed Jul 25 19:25:28 2007 -0500
50564
50565     mpc83xx: fixup generic pci for libfdt
50566
50567     add libfdt support to the generic 83xx pci code
50568
50569     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50570
50571 commit f57ac7a7b37109245b69db80839ebee26179966a
50572 Author: Kim Phillips <kim.phillips@freescale.com>
50573 Date:   Wed Jul 25 19:25:22 2007 -0500
50574
50575     mpc83xx: fix 8360 and cpu functions to update fdt being passed
50576
50577     ..and not the global fdt. Rename local fdt vars to blob so as not to
50578     be confused with the global var with the same three-letter name.
50579
50580     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50581
50582 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
50583 Author: Jerry Van Baren <gvb.uboot@gmail.com>
50584 Date:   Wed Jul 4 21:34:24 2007 -0400
50585
50586     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
50587
50588     Several node strings were not correct (trailing slashes and properties
50589       in the strings)
50590     Added setting of the timebase-frequency.
50591     Improved error messages and use debug() instead of printf().
50592
50593     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50594     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50595
50596 commit 26d02c9bbac1751c5e19294f000100b48d43a920
50597 Author: Jerry Van Baren <gvb.uboot@gmail.com>
50598 Date:   Wed Jul 4 21:27:30 2007 -0400
50599
50600     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
50601
50602     The new name matches more closely the kernel's name, which is also
50603     a much better description.
50604
50605     These are the mpc83xx changes made necessary by the function name change.
50606
50607     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50608     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
50609     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50610
50611 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
50612 Author: Dave Liu <daveliu@freescale.com>
50613 Date:   Mon Jun 25 10:41:56 2007 +0800
50614
50615     mpc83xx: Add support for the display of reset status
50616
50617     83xx processor family has many reset sources, such as
50618     power on reset, software hard reset, software soft reset,
50619     JTAG, bus monitor, software watchdog, check stop reset,
50620     external hard reset, external software reset.
50621     sometimes, to figure out the fault of system, we need to
50622     know the cause of reset early before the prompt of
50623     u-boot present.
50624
50625     Signed-off-by: Dave Liu <daveliu@freescale.com>
50626     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50627
50628 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
50629 Author: Dave Liu <daveliu@freescale.com>
50630 Date:   Mon Jun 25 10:41:04 2007 +0800
50631
50632     mpc83xx: Fix the align bug of SDMA buffer
50633
50634     According to the latest user manual, the SDMA temporary
50635     buffer base address must be 4KB aligned.
50636
50637     Signed-off-by: Dave Liu <daveliu@freescale.com>
50638     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50639
50640 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
50641 Author: Dave Liu <daveliu@freescale.com>
50642 Date:   Mon Jun 25 13:21:12 2007 +0800
50643
50644     mpc83xx: Revise the MPC8360EMDS readme doc
50645
50646     When the rev2.x silicon mount on the MPC8360EMDS baord,
50647     and if you are using the u-boot version after the commit
50648     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
50649     to make the ethernet interface usable, we have to setup
50650     the jumpers correctly.
50651
50652     Signed-off-by: Dave Liu <daveliu@freescale.com>
50653     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50654
50655 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
50656 Author: Timur Tabi <timur@freescale.com>
50657 Date:   Tue Jul 3 13:46:32 2007 -0500
50658
50659     FSL I2C driver programs the two I2C busses differently
50660
50661     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
50662     The second I2C bus has its slave address programmed incorrectly and is
50663     missing a 5-us delay.
50664
50665     Signed-off-by: Timur Tabi <timur@freescale.com>
50666     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50667
50668 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
50669 Author: Timur Tabi <timur@freescale.com>
50670 Date:   Tue Jul 3 13:04:34 2007 -0500
50671
50672     Update SCCR programming in cpu_init_f() to support all 83xx processors
50673
50674     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
50675     bitfields for all 83xx processors.  The code to update some bitfields was
50676     compiled only on some processors.  Now, the bitfields are programmed as long
50677     as the corresponding CFG_SCCR option is defined in the board header file.
50678     This means that the board header file should not define any CFG_SCCR macros
50679     for bitfields that don't exist on that processor, otherwise the SCCR will be
50680     programmed incorrectly.
50681
50682     Signed-off-by: Timur Tabi <timur@freescale.com>
50683     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50684
50685 commit 9546266999f0b9b51372636614211b88d90f0f25
50686 Author: Martin Krause <martin.krause@tqs.de>
50687 Date:   Fri Jun 22 13:04:22 2007 +0200
50688
50689     TQM834x: cleanup configuraton
50690
50691     Remove irritating #undef DEBUG
50692
50693     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50694     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50695
50696 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
50697 Author: david.saada <David.Saada@ecitele.com>
50698 Date:   Mon Jun 18 09:09:53 2007 -0700
50699
50700     MPC83xx: Fix makefile to generate config.h file in the build directory
50701
50702     MPC83xx: Fix the Makefile config sections to generate the include/config.h
50703     file in the build directory instead of the source directory.
50704
50705     Signed-off-by: David Saada <david.saada@ecitele.com>
50706     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50707
50708 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
50709 Author: Lee Nipper <Lee.Nipper@freescale.com>
50710 Date:   Thu Jun 14 20:07:33 2007 -0500
50711
50712     mpc83xx: Add support for 8360 silicon revision 2.1
50713
50714     This change adds 8360 silicon revision 2.1 support to u-boot.
50715
50716     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
50717     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50718
50719 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
50720 Author: Kumar Gala <galak@kernel.crashing.org>
50721 Date:   Wed Aug 8 04:14:28 2007 -0500
50722
50723     Treat ppc64 host as ppc
50724
50725     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50726
50727 commit 0dc4279b08ff82472bec2e2c90858602459febe8
50728 Author: Jason Jin <Jason.jin@freescale.com>
50729 Date:   Wed Aug 8 09:01:46 2007 +0800
50730
50731     Minor fix for bios emulator makefile
50732
50733     Add $(obj) to LIB avoiding objects be built in the source dir
50734
50735     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50736
50737 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
50738 Author: Jason Jin <Jason.jin@freescale.com>
50739 Date:   Wed Aug 8 08:33:11 2007 +0800
50740
50741     Add CONFIG_BIOSEMU define to guard all the bios emulator code
50742
50743     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50744
50745     This patch fix the compile issue on the board that did not enable the bios emulator
50746
50747 commit ed8106433522f2ea8933e9808346860d061d7731
50748 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
50749 Date:   Tue Jul 31 12:27:25 2007 -0500
50750
50751     tsec: fix multiple PHY support
50752
50753     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
50754     broke multiple PHY support in tsec.c.  This fixes it.
50755
50756     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
50757     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50758
50759 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
50760 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
50761 Date:   Thu Aug 9 09:08:18 2007 -0500
50762
50763     tsec: Allow Ten Bit Interface address to be configurable
50764
50765     Allow the address of the Ten Bit Interface (TBI) to be changed in the
50766     event of a conflict with another device.
50767
50768     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
50769
50770 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
50771 Author: Stefan Roese <sr@denx.de>
50772 Date:   Wed Aug 8 09:54:26 2007 +0200
50773
50774     Coding style cleanup
50775
50776     Signed-off-by: Stefan Roese <sr@denx.de>
50777
50778 commit a41de1f0d373e09c782dea558385a06247111ba5
50779 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50780 Date:   Sun Aug 5 05:15:18 2007 -0500
50781
50782     Port enabled for I2C signals and chipselects port configuration.
50783
50784     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50785
50786 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
50787 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50788 Date:   Sun Aug 5 04:31:18 2007 -0500
50789
50790     Added NAND support
50791
50792     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50793
50794 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
50795 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50796 Date:   Sun Aug 5 04:11:20 2007 -0500
50797
50798     Added I2C support
50799
50800     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50801
50802 commit 99c03c175d2689093176facf17c58ce2cb320001
50803 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50804 Date:   Sun Aug 5 03:58:52 2007 -0500
50805
50806     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
50807
50808     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50809
50810 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
50811 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50812 Date:   Sun Aug 5 03:55:21 2007 -0500
50813
50814     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
50815
50816     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50817
50818 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
50819 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50820 Date:   Sun Aug 5 03:43:30 2007 -0500
50821
50822     Moved sync() from board file to include/asm-m68k/io.h
50823
50824     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50825
50826 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
50827 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50828 Date:   Sun Aug 5 03:30:44 2007 -0500
50829
50830     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
50831
50832     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50833
50834 commit 9998bd37ead85e93953559720710d3b0685c81e6
50835 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50836 Date:   Sun Aug 5 03:19:10 2007 -0500
50837
50838     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
50839
50840     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50841
50842 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
50843 Author: Jason Jin <Jason.jin@freescale.com>
50844 Date:   Tue Aug 7 16:17:06 2007 +0800
50845
50846     Add CONFIG_BIOSEMU define to guard all the bios emulator code
50847
50848     This patch fix the compile issue on the board that did not enable the bios emulator
50849
50850 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
50851 Author: Wolfgang Denk <wd@denx.de>
50852 Date:   Tue Aug 7 16:02:13 2007 +0200
50853
50854     Fix missing brace error in fs/fat/fat.c
50855     [pointed out by Roderik Wildenburg]
50856
50857     Signed-off-by: Wolfgang Denk <wd@denx.de>
50858
50859 commit 706714d97a0d08d59eda4de2268c39f504688329
50860 Author: Michal Simek <monstr@monstr.eu>
50861 Date:   Mon Aug 6 23:41:53 2007 +0200
50862
50863     [FIX] remove cute code
50864
50865 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
50866 Author: Michal Simek <monstr@monstr.eu>
50867 Date:   Mon Aug 6 23:35:26 2007 +0200
50868
50869     [FIX] Fix romfs code
50870
50871 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
50872 Author: Michal Simek <monstr@monstr.eu>
50873 Date:   Mon Aug 6 23:31:49 2007 +0200
50874
50875     [FIX] Coding style cleanup - Wolfgang's suggestions
50876
50877 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
50878 Author: Wolfgang Denk <wd@denx.de>
50879 Date:   Mon Aug 6 23:21:05 2007 +0200
50880
50881     Fixed typo in README (pointed out by Martin Jost).
50882
50883     Signed-off-by: Wolfgang Denk <wd@denx.de>
50884
50885 commit 537223afa61f64480df31ce440a9cb386df4a814
50886 Author: Stefan Roese <sr@denx.de>
50887 Date:   Mon Aug 6 21:10:17 2007 +0200
50888
50889     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
50890
50891     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
50892     here an updated Bamboo README.
50893
50894     Signed-off-by: Stefan Roese <sr@denx.de>
50895
50896 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
50897 Author: Wolfgang Denk <wd@denx.de>
50898 Date:   Mon Aug 6 02:17:36 2007 +0200
50899
50900     Coding style cleanup. Update CHANGELOG.
50901
50902     Signed-off-by: Wolfgang Denk <wd@denx.de>
50903
50904 commit 221838cc7eb178370ff62aa05920a582e12ac322
50905 Author: Jason Jin <Jason.jin@freescale.com>
50906 Date:   Tue Jul 10 09:03:22 2007 +0800
50907
50908     Remove the bios emulator from MAI board.
50909
50910     The bios emulator in the MAI board can not pass compile
50911     and have a lot of crap in it. remove it and will have a
50912     clean and small bios emulator in the drivers directory
50913     which can be uesed for every board.
50914
50915     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50916
50917 commit 5618332409bb96f4448d1712899369fc80c0b489
50918 Author: Jason Jin <Jason.jin@freescale.com>
50919 Date:   Fri Jul 13 12:14:59 2007 +0800
50920
50921     Fix some compile issues for MAI board.
50922
50923     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50924
50925 commit 0f460a1ee148b648ee242c3157650287d4296260
50926 Author: Jason Jin <Jason.jin@freescale.com>
50927 Date:   Fri Jul 13 12:14:58 2007 +0800
50928
50929     Configurations for ATI video card BIOS emulator
50930
50931     This patch add definition of the BIOS emulator and the ATI framebuffer
50932     driver for MPC8641HPCN board.
50933
50934     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50935     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50936
50937 commit ece92f85053b8df613edcf05b26a416cbc3d629c
50938 Author: Jason Jin <Jason.jin@freescale.com>
50939 Date:   Fri Jul 6 08:34:56 2007 +0800
50940
50941     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
50942     ATI video card BIOS. and can be used for x86 code emulation by some
50943     modifications.
50944
50945     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50946
50947 commit 5072188acabde3178fac7f5a597150e6e74fd40c
50948 Author: Jason Jin <Jason.jin@freescale.com>
50949 Date:   Fri Jul 6 08:33:33 2007 +0800
50950
50951     This is a framebuffer driver for ATI video card, can work for PCI9200,
50952     X300, X700, X800 ATI video cards.
50953
50954     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50955     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50956
50957 commit 5728be389e65fd47f34b33c2596271eb4db751ae
50958 Author: Wolfgang Denk <wd@denx.de>
50959 Date:   Mon Aug 6 01:01:49 2007 +0200
50960
50961     Coding style cleanup. Update CHANGELOG.
50962
50963     Signed-off-by: Wolfgang Denk <wd@denx.de>
50964
50965 commit 8092fef4c29b395958bb649647da7e3775731517
50966 Author: Martin Krause <Martin.Krause@tqs.de>
50967 Date:   Tue Dec 12 14:26:01 2006 +0100
50968
50969     Add functions to list of exported functions
50970
50971     Additionally export the following fuctions (to make trab_config build again):
50972     - simple_strtol()
50973     - strcmp()
50974
50975     Also bump the ABI version to reflect this change
50976
50977     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50978
50979 commit 63cec5814fab5d2b1c86982327433807a5ac0249
50980 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50981 Date:   Thu Aug 2 14:09:49 2007 -0500
50982
50983     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
50984
50985     All of the PCI/PCI-Express driver and initialization code that
50986     was in the MPC8641HPCN port has now been moved into the common
50987     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
50988     utilized by the 85xx ports as well.
50989
50990     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
50991
50992     Also enable the second PCI-Express controller on 8641
50993     by getting its BATS and CFG_ setup right.
50994
50995     Fixed a u16 vendor compiler warning in AHCI driver too.
50996
50997     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50998     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50999     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51000
51001 commit a274ca4f6d68830e7c916f897561cff8c4101c38
51002 Author: Michal Simek <monstr@monstr.eu>
51003 Date:   Sun Aug 5 22:33:05 2007 +0200
51004
51005     [FIX] Coding style cleanup
51006
51007 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
51008 Author: Michal Simek <monstr@monstr.eu>
51009 Date:   Sun Aug 5 16:13:31 2007 +0200
51010
51011     [FIX] Xilinx Uartlite driver
51012     Because PPC405 can use UARTLITE serial interface and
51013     Microblaze can use Uart16550 serial interface not only Uartlite.
51014
51015 commit 98889edd50aadf862071eb5664747ad0d568a20e
51016 Author: Michal Simek <monstr@monstr.eu>
51017 Date:   Sun Aug 5 15:54:53 2007 +0200
51018
51019     [FIX] Change configuration for XUPV2P Microblaze board
51020
51021 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
51022 Author: Michal Simek <monstr@monstr.eu>
51023 Date:   Sun Aug 5 15:53:50 2007 +0200
51024
51025     [PATCH] Added support for Xilinx Emac community driver
51026
51027 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
51028 Author: Bartlomiej Sieka <tur@semihalf.com>
51029 Date:   Fri Aug 3 12:08:16 2007 +0200
51030
51031     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
51032
51033     Add the ability for modules from the Schindler cm5200 family to use a
51034     single U-Boot image:
51035     - rename cm1_qp1 to cm5200
51036     - add run-time module detection
51037     - parametrize SDRAM configuration according to the module we are running on
51038
51039     Few minor, board-specific fixes included in this patch:
51040     - better MAC address handling
51041     - updated default environment ('update' command uses +{filesize} now)
51042     - improved error messages in the auto-update code
51043     - allow booting U-Boot from RAM (CFG_RAMBOOT)
51044
51045     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
51046     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
51047     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51048
51049 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
51050 Author: Andy Fleming <afleming@freescale.com>
51051 Date:   Fri Aug 3 04:05:25 2007 -0500
51052
51053     Add Marvell 1149 PHY support to the TSEC
51054
51055 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
51056 Author: Wolfgang Denk <wd@denx.de>
51057 Date:   Thu Aug 2 21:27:46 2007 +0200
51058
51059     Coding style cleanup, update CHANGELOG
51060
51061     Signed-off-by: Wolfgang Denk <wd@denx.de>
51062
51063 commit 63e22764d2f8653f68888c667eb65b3996b52680
51064 Author: Wolfgang Denk <wd@denx.de>
51065 Date:   Thu Aug 2 10:11:18 2007 +0200
51066
51067     Minor cleanup of <board>_nand build rules.
51068
51069 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
51070 Author: Stefan Roese <sr@denx.de>
51071 Date:   Thu Aug 2 08:33:56 2007 +0200
51072
51073     ppc4xx: Code cleanup
51074
51075     Signed-off-by: Stefan Roese <sr@denx.de>
51076
51077 commit c92409812206ac67a7fa7aae298539a9c3804a46
51078 Author: Grzegorz Bernacki <gjb@semihalf.com>
51079 Date:   Tue Jul 31 18:51:48 2007 +0200
51080
51081     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
51082
51083     During config transactions on the PCIe bus an attempt to scan for a
51084     non-existent device can lead to a machine check exception with certain
51085     peripheral devices. In order to avoid crashing in such scenarios the
51086     instrumented versions of the config cycle read routines are introduced, so
51087     the exceptions fixups framework can gracefully recover.
51088
51089     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
51090     Acked-by: Rafal Jaworowski <raj@semihalf.com>
51091
51092 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
51093 Author: Rafal Jaworowski <raj@semihalf.com>
51094 Date:   Tue Jul 31 18:19:54 2007 +0200
51095
51096     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
51097
51098     This brings back separate settings for PCIe bus numbers depending on chip
51099     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
51100     commit. 440SPe rev. A does NOT work properly with the same settings as for
51101     the rev. B (no devices are seen on the bus during enumeration).
51102
51103     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
51104
51105 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
51106 Author: Wolfgang Denk <wd@denx.de>
51107 Date:   Thu Aug 2 00:48:45 2007 +0200
51108
51109     Fix build errors and warnings / code cleanup.
51110
51111     Signed-off-by: Wolfgang Denk <wd@denx.de>
51112
51113 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
51114 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
51115 Date:   Tue Jul 31 10:24:56 2007 +0200
51116
51117     ppc4xx: Update AMCC Bamboo 440EP support
51118
51119     Changed storage type of cfg_simulate_spd_eeprom to const
51120     Changed storage type of gpio_tab to stack storage
51121     (Cannot access global data declarations in .bss until afer code relocation)
51122
51123     Improved SDRAM tests to catch problems where data is not uniquely addressable
51124     (e.g. incorrectly programmed SDRAM row or columns)
51125
51126     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
51127     Fixed AM29LV320DT (OpCode Flash) sector map
51128
51129     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
51130     Signed-off-by: Stefan Roese <sr@denx.de>
51131
51132 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
51133 Author: Stefan Roese <sr@denx.de>
51134 Date:   Tue Jul 31 08:37:01 2007 +0200
51135
51136     ppc4xx: Update 440EPx lwmon5 board support
51137
51138     - Clear ECC status regs after ECC POST test
51139     - Set dcbz for ECC generation with caches enabled as default
51140     - Code cleanup
51141
51142     Signed-off-by: Stefan Roese <sr@denx.de>
51143
51144 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
51145 Author: Stefan Roese <sr@denx.de>
51146 Date:   Mon Jul 30 11:04:57 2007 +0200
51147
51148     ppc4xx: Only print ECC related info when the error bis are set
51149
51150     Signed-off-by: Stefan Roese <sr@denx.de>
51151
51152 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
51153 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51154 Date:   Fri Jul 27 16:44:31 2007 +0200
51155
51156     new FPGA image for PLU405 board
51157
51158     new FPGA image for PLU405 board with improved CompactFlash timing
51159
51160     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51161
51162 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
51163 Author: Rafal Jaworowski <raj@semihalf.com>
51164 Date:   Fri Jul 27 14:43:59 2007 +0200
51165
51166     [ADS5121] Support for the ADS5121 board
51167
51168     The following MPC5121e subsystems are supported:
51169
51170     - low-level CPU init
51171     - NOR Boot Flash (common CFI driver)
51172     - DDR SDRAM
51173     - FEC
51174     - I2C
51175     - Watchdog
51176
51177     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
51178     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
51179     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
51180
51181 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
51182 Author: Rafal Jaworowski <raj@semihalf.com>
51183 Date:   Fri Jul 27 14:22:04 2007 +0200
51184
51185     [PPC] Remove unused MSR_USER definition
51186
51187     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
51188
51189 commit d4024bb72dd81695ec099b2199eda0d27c623e62
51190 Author: John Otken <john@softadvances.com>
51191 Date:   Thu Jul 26 17:49:11 2007 +0200
51192
51193     ppc4xx: Add support for AMCC 405EP Taihu board
51194
51195     Signed-off-by: John Otken <john@softadvances.com>
51196
51197 commit b66091de6c7390620312c2501db23d8391e7cabb
51198 Author: Anatolij Gustschin <agust@denx.de>
51199 Date:   Thu Jul 26 15:08:01 2007 +0200
51200
51201     ppc4xx: lwmon5: Update Lime initialization
51202
51203     Change Lime SDRAM initialization to now support 100MHz and
51204     133MHz (if enabled). Also the framebuffer is initialized to
51205     display a blue rectangle with a white border.
51206
51207     Signed-off-by: Anatolij Gustschin <agust@denx.de>
51208     Signed-off-by: Stefan Roese <sr@denx.de>
51209
51210 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
51211 Author: Stefan Roese <sr@denx.de>
51212 Date:   Tue Jul 24 09:52:52 2007 +0200
51213
51214     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
51215
51216     The used Intel NOR FLASH chips have internally two dies, and are now
51217     treated as two seperate chips.
51218
51219     Signed-off-by: Stefan Roese <sr@denx.de>
51220
51221 commit aedf5bde179ecfbd0a96130d18996a96518b785f
51222 Author: Stefan Roese <sr@denx.de>
51223 Date:   Tue Jul 24 07:20:09 2007 +0200
51224
51225     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
51226
51227     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
51228     interrupt controller.
51229
51230     Signed-off-by: Stefan Roese <sr@denx.de>
51231
51232 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
51233 Author: Stefan Roese <sr@denx.de>
51234 Date:   Fri Jul 20 15:03:44 2007 +0200
51235
51236     ppc4xx: Fix bug with default GPIO output value
51237
51238     As spotted by Matthias Fuchs, the default output values for all GPIO1
51239     outputs were not setup correctly. This patch fixes this issue.
51240
51241     Signed-off-by: Stefan Roese <sr@denx.de>
51242
51243 commit 531e3e8b831f357056448fa573137d5fb37000fd
51244 Author: Pavel Kolesnikov <concord@emcraft.com>
51245 Date:   Fri Jul 20 15:03:03 2007 +0200
51246
51247     POST: Add ECC POST for the lwmon5 board
51248
51249     This patch adds ECC Post test for the Lwmon5 board based
51250     on PPC440EPx to U-Boot.
51251
51252     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
51253     Acked-by: Yuri Tikhonov <yur@emcraft.com>
51254     Acked-by: Stefan Roese <sr@denx.de>
51255
51256 commit cc3023b9f95d7ac959a764471a65001062aecf41
51257 Author: Rafal Jaworowski <raj@semihalf.com>
51258 Date:   Thu Jul 19 17:12:28 2007 +0200
51259
51260     Fix breakage of 8xx boards from recent commit.
51261
51262     This patch fixes the negative consequences for 8xx of the recent
51263     "ppc4xx: Clean up 440 exceptions handling" commit.
51264
51265     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
51266
51267 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
51268 Author: Stefan Roese <sr@denx.de>
51269 Date:   Mon Jul 16 13:11:12 2007 +0200
51270
51271     Coding style cleanup
51272
51273     Signed-off-by: Stefan Roese <sr@denx.de>
51274
51275 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
51276 Author: Stefan Roese <sr@denx.de>
51277 Date:   Mon Jul 16 10:02:12 2007 +0200
51278
51279     ppc4xx: Code cleanup
51280
51281     Signed-off-by: Stefan Roese <sr@denx.de>
51282
51283 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
51284 Author: Stefan Roese <sr@denx.de>
51285 Date:   Mon Jul 16 10:01:38 2007 +0200
51286
51287     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
51288
51289     Signed-off-by: Stefan Roese <sr@denx.de>
51290
51291 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
51292 Author: Stefan Roese <sr@denx.de>
51293 Date:   Mon Jul 16 10:00:43 2007 +0200
51294
51295     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
51296
51297     The new boardspecific DDR2 controller configuration is used for the Yucca
51298     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
51299
51300     Signed-off-by: Stefan Roese <sr@denx.de>
51301
51302 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
51303 Author: Stefan Roese <sr@denx.de>
51304 Date:   Mon Jul 16 09:57:00 2007 +0200
51305
51306     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
51307
51308     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
51309     support non default, boardspecific DDR(2) controller configuration.
51310
51311     Signed-off-by: Stefan Roese <sr@denx.de>
51312
51313 commit 5743a9207a370b90f09b20ebd61167c806b937f3
51314 Author: Stefan Roese <sr@denx.de>
51315 Date:   Mon Jul 16 08:53:51 2007 +0200
51316
51317     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
51318
51319     The new function remove_tlb() can be used to remove the TLB's used to
51320     map a specific memory region. This is especially useful for the DDR(2)
51321     setup routines which configure the SDRAM area temporarily as a cached
51322     area (for speedup on auto-calibration and ECC generation) and later
51323     need this area uncached for normal usage.
51324
51325     Signed-off-by: Stefan Roese <sr@denx.de>
51326
51327 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
51328 Author: Michal Simek <monstr@monstr.eu>
51329 Date:   Mon Jul 16 00:31:07 2007 +0200
51330
51331     [PATCH] Support for Xilinx EmacLite controller
51332
51333 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
51334 Author: Wolfgang Denk <wd@denx.de>
51335 Date:   Sat Jul 14 22:51:02 2007 +0200
51336
51337     Update CHANGELOG
51338
51339     Signed-off-by: Wolfgang Denk <wd@denx.de>
51340
51341 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
51342 Author: Michal Simek <monstr@monstr.eu>
51343 Date:   Sat Jul 14 13:11:28 2007 +0200
51344
51345     [FIX] support for simply measuring time
51346
51347 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
51348 Author: Michal Simek <monstr@monstr.eu>
51349 Date:   Sat Jul 14 12:41:23 2007 +0200
51350
51351     [FS] Added support for ROMFS
51352
51353 commit 011595307731a7a67a7445d107c279d031e8ab97
51354 Author: Heiko Schocher <hs@pollux.denx.de>
51355 Date:   Sat Jul 14 01:06:58 2007 +0200
51356
51357     [PCS440EP]  - fix compile error, if BUILD_DIR is used
51358
51359 commit 5a2f1098d81ad58b309e5e558d0492643166a799
51360 Author: Michal Simek <monstr@monstr.eu>
51361 Date:   Sat Jul 14 00:18:48 2007 +0200
51362
51363     [PATCH] Support time without timer
51364
51365 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
51366 Author: Michal Simek <monstr@monstr.eu>
51367 Date:   Fri Jul 13 21:43:55 2007 +0200
51368
51369     [PATCH] Remove problem with disabled BARREL SHIFTER
51370
51371 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
51372 Author: Michal Simek <monstr@monstr.eu>
51373 Date:   Fri Jul 13 21:41:44 2007 +0200
51374
51375     [FIX] correct help for rspr
51376
51377 commit fad63407154f46246ce80d53a9c669a44362ac67
51378 Author: Heiko Schocher <hs@pollux.denx.de>
51379 Date:   Fri Jul 13 09:54:17 2007 +0200
51380
51381     make show_boot_progress () weak.
51382
51383     Signed-off-by: Heiko Schocher <hs@denx.de>
51384
51385 commit 907902472391b6ca1876ec300687562ecaf459b1
51386 Author: Heiko Schocher <hs@pollux.denx.de>
51387 Date:   Fri Jul 13 08:26:05 2007 +0200
51388
51389     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
51390                 - fix compile error, if BUILD_DIR is used
51391
51392     Signed-off-by: Heiko Schocher <hs@denx.de>
51393
51394 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
51395 Author: Stefan Roese <sr@denx.de>
51396 Date:   Thu Jul 12 16:32:08 2007 +0200
51397
51398     ppc4xx: Change receive buffer handling in the 4xx emac driver
51399
51400     This change fixes a bug in the receive buffer handling, that
51401     could lead to problems upon high network traffic (broadcasts...).
51402
51403     Signed-off-by: Stefan Roese <sr@denx.de>
51404
51405 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
51406 Author: Wolfgang Denk <wd@denx.de>
51407 Date:   Thu Jul 12 01:45:34 2007 +0200
51408
51409     Update CHANGELOG, minor coding style cleanup.
51410
51411     Signed-off-by: Wolfgang Denk <wd@denx.de>
51412
51413 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
51414 Author: Andy Fleming <afleming@freescale.com>
51415 Date:   Fri Jun 8 16:41:18 2007 -0500
51416
51417     Remove erroneous errata code from Marvel 88E1111S driver
51418
51419     The Marvel 88E1111S driver for the TSEC was copied from the
51420     88E1101 driver, and included a fix for an erratum which does not
51421     exist on that part.  Now it is removed
51422
51423     Signed-off-by: Andy Fleming <afleming@freescale.com>
51424
51425 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
51426 Author: Andy Fleming <afleming@freescale.com>
51427 Date:   Tue Jun 5 16:38:44 2007 -0500
51428
51429     From: eran liberty <eran.liberty@gmail.com>
51430
51431     adds the reset register to 85xx immap
51432
51433     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
51434     Signed-off-by: Andy Fleming <afleming@freescale.com>
51435
51436 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
51437 Author: Andy Fleming <afleming@freescale.com>
51438 Date:   Thu May 10 17:50:01 2007 -0500
51439
51440     Polished the 85xx ADS config files
51441
51442     Made the boot commands use device trees by default.
51443     Also moved the ramdisk to 1000000 (I think the previous address
51444     was getting overridden during boot).
51445
51446     Signed-off-by: Andy Fleming <afleming@freescale.com>
51447
51448 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
51449 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51450 Date:   Wed May 9 11:03:32 2007 -0500
51451
51452     8544ds: Fix Makefile after moving pixis to board/freescale.
51453
51454     The OBJTREE != SRCTREE build scenario was broken.
51455     This fixes it.
51456
51457     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51458     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51459
51460 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
51461 Author: Andy Fleming <afleming@freescale.com>
51462 Date:   Wed May 9 00:54:20 2007 -0500
51463
51464     tsec: Fix PHY code to match first driver
51465
51466     Jarrold Wen noticed that the generic PHY code always matches
51467     under the current implementation.  Change it so the first match
51468     wins, and *only* unknown PHYs trigger the generic driver
51469
51470     Signed-off-by: Andy Fleming <afleming@freescale.com>
51471
51472 commit ccc091aac61a38cd998d575d92f7232e256d6312
51473 Author: Andy Fleming <afleming@freescale.com>
51474 Date:   Tue May 8 17:27:43 2007 -0500
51475
51476     Add support for CPM device tree configuration to 8560 ADS
51477
51478     * Adds code to modify CPM frequencies
51479     * Cleans up the config file to #define TSEC and (for now) #undef FCC
51480     * Adds the MII command for all 8560 ADS configurations
51481     * Updates config file to provide convenience commands for booting
51482       with a device tree
51483
51484     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
51485     Signed-off-by: Andy Fleming <afleming@freescale.com>
51486
51487 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
51488 Author: Andy Fleming <afleming@freescale.com>
51489 Date:   Tue May 8 17:23:02 2007 -0500
51490
51491     Fix Marvell 88e1145 PHY init code
51492
51493     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
51494     where the reset was being done after the errata code instead of
51495     before.
51496
51497     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
51498     Signed-off-by: Andy Fleming <afleming@freescale.com>
51499
51500 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
51501 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51502 Date:   Wed Jul 11 14:52:16 2007 -0500
51503
51504     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
51505
51506     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51507
51508 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
51509 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51510 Date:   Wed Jul 11 14:52:08 2007 -0500
51511
51512     pciauto setup bridge
51513
51514     The P2P bridge bus numbers programmed into the device are relative to
51515     hose->first_busno.
51516
51517     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51518
51519 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
51520 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51521 Date:   Wed Jul 11 14:52:01 2007 -0500
51522
51523     Support PCIe extended config registers
51524
51525     FSL PCIe block has extended cfg registers in the 100 and 400 range.
51526     For example, to read the LTSSM register: pci display <busn>.0 404 1
51527
51528     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51529
51530 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
51531 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51532 Date:   Wed Jul 11 14:51:48 2007 -0500
51533
51534     Minor improvements to drivers/pci_auto.c
51535
51536     - Make pciauto_{pre,post}scan_setup_bridge non-static
51537     - Added physical address display in debug messages.
51538
51539     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51540
51541 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
51542 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
51543 Date:   Wed Jul 11 14:51:35 2007 -0500
51544
51545     Start pci hose scan from hose->current_busno.
51546
51547     Ensure hose->current_busno is not less than first_busno.  This fixes
51548     broken board code which leaves current_busno=0 when first_busno is
51549     greater than 0 for the cases with multiple controllers.
51550
51551     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
51552
51553 commit 3865b1fb7843a08ad49a6319a36415752276ff48
51554 Author: Stefan Roese <sr@denx.de>
51555 Date:   Wed Jul 11 12:13:53 2007 +0200
51556
51557     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
51558
51559     Signed-off-by: Stefan Roese <sr@denx.de>
51560
51561 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
51562 Author: Bartlomiej Sieka <tur@semihalf.com>
51563 Date:   Wed Jul 11 20:11:07 2007 +0200
51564
51565     CM1.QP1: Support for the Schindler CM1.QP1 board.
51566
51567     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
51568     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51569
51570 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
51571 Author: Heiko Schocher <hs@pollux.denx.de>
51572 Date:   Wed Jul 11 18:39:11 2007 +0200
51573
51574     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
51575                 - now the Flash ST M29W040B is supported (not tested)
51576                 - fix the "led" command
51577                 - fix compile error, if BUILD_DIR is used
51578
51579     Signed-off-by: Heiko Schocher <hs@denx.de>
51580
51581 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
51582 Author: Stefan Roese <sr@denx.de>
51583 Date:   Sun Jul 8 13:44:27 2007 +0200
51584
51585     Fix malloc problem introduced with the relocation fixup for the PPC platform
51586
51587     The relocation fixup didn't handle the malloc pointer initialization
51588     correctly. This patch fixes this problem. Tested successfully on 4xx.
51589     The relocation fixup patches for 4xx will follow soon.
51590
51591     Signed-off-by: Stefan Roese <sr@denx.de>
51592
51593 commit 0dca874db62718e41253659e60f3a1de7eb418ce
51594 Author: TsiChung <tcliew@Goku.(none)>
51595 Date:   Tue Jul 10 15:45:43 2007 -0500
51596
51597     Cache update and added CFG_UNIFY_CACHE
51598
51599     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.
51600
51601     Signed-off-by: TsiChung <tcliew@Goku.(none)>
51602
51603 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
51604 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51605 Date:   Thu Jul 5 23:36:16 2007 -0500
51606
51607     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
51608
51609     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
51610
51611     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51612
51613 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
51614 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51615 Date:   Thu Jul 5 23:31:25 2007 -0500
51616
51617     Update header files
51618
51619     Include immap.h and renamed mcfrtc.h to rtc.h
51620
51621     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51622
51623 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
51624 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51625 Date:   Thu Jul 5 23:29:21 2007 -0500
51626
51627     Add mcffec_initialize()
51628
51629     Added mcffec_initialize() in eth_initialize()
51630
51631     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51632
51633 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
51634 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51635 Date:   Thu Jul 5 23:27:40 2007 -0500
51636
51637     Update header file and clean up
51638
51639     Include immap.h
51640
51641     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51642
51643 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
51644 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51645 Date:   Thu Jul 5 23:23:15 2007 -0500
51646
51647     New uart structure and defines
51648
51649     Seperated from mcfuart.h
51650
51651     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51652
51653 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
51654 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51655 Date:   Thu Jul 5 23:22:31 2007 -0500
51656
51657     New timer structure and defines
51658
51659     Seperated from mcftimer.h
51660
51661     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51662
51663 commit e04acb2eba4782489417240eff76e20e176aec10
51664 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51665 Date:   Thu Jul 5 23:21:09 2007 -0500
51666
51667     Rename mcfrtc to rtc
51668
51669     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
51670
51671     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51672
51673 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
51674 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51675 Date:   Thu Jul 5 23:17:36 2007 -0500
51676
51677     Rename mcfserial.c. Update include header
51678
51679     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
51680
51681     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51682
51683 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
51684 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51685 Date:   Thu Jul 5 23:13:58 2007 -0500
51686
51687     Header file update, clean up and cache handling
51688
51689     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
51690
51691     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51692
51693 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
51694 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51695 Date:   Thu Jul 5 23:10:40 2007 -0500
51696
51697     Create interrupts.c and modify Makefile
51698
51699     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
51700
51701     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51702
51703 commit ddd104f1ed655eda50c06ba636237a83ed943f34
51704 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51705 Date:   Thu Jul 5 23:06:55 2007 -0500
51706
51707     Enable Icache
51708
51709     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51710
51711 commit b9bf3de377b2bae70c983c9b97feae914999e735
51712 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51713 Date:   Thu Jul 5 23:05:31 2007 -0500
51714
51715     Update header file and some clean up
51716
51717     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
51718
51719     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51720
51721 commit 84a015b52ec820a5ae173717d78516de731c89c2
51722 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51723 Date:   Thu Jul 5 23:03:28 2007 -0500
51724
51725     Update header file and enable icache
51726
51727     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
51728
51729     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51730
51731 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
51732 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51733 Date:   Thu Jul 5 23:01:22 2007 -0500
51734
51735     Update header file and removed interrupt_init()
51736
51737     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
51738
51739     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51740
51741 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
51742 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51743 Date:   Thu Jul 5 22:57:46 2007 -0500
51744
51745     Update for flash.o and mii.o
51746
51747     Removed flash.o and added mii.o
51748
51749     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51750
51751 commit c5ded275d839e4ff79f41718d50a835d989f57bc
51752 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51753 Date:   Thu Jul 5 22:56:19 2007 -0500
51754
51755     MII functions calls.
51756
51757     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51758
51759 commit 427c814104560e29bda14955c67703245aaaa5b4
51760 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51761 Date:   Thu Jul 5 22:54:42 2007 -0500
51762
51763     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
51764
51765     The removed MII routines will be placed in mii.c.
51766
51767     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51768
51769 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
51770 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51771 Date:   Thu Jul 5 22:51:05 2007 -0500
51772
51773     Duplicate code
51774
51775     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
51776
51777     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51778
51779 commit 2744354a8437b8f78db178e30660215688bff570
51780 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51781 Date:   Thu Jul 5 22:46:38 2007 -0500
51782
51783     Seperate old structure defines and new structure defines
51784
51785     Removed new uart structure and defines to uart.h
51786
51787     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51788
51789 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
51790 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51791 Date:   Thu Jul 5 22:45:01 2007 -0500
51792
51793     Seperate old structure defines and new structure defines
51794
51795     New timer structure and defines will move to new timer.h
51796
51797     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51798
51799 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
51800 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51801 Date:   Thu Jul 5 22:42:23 2007 -0500
51802
51803     Clean up
51804
51805     Removed whitespace
51806
51807     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51808
51809 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
51810 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51811 Date:   Thu Jul 5 22:41:24 2007 -0500
51812
51813     Clean up
51814
51815     Replaced whitespace with tabs
51816
51817     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51818
51819 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
51820 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51821 Date:   Thu Jul 5 22:39:07 2007 -0500
51822
51823     Create new header file and move peripherals base address from configs file to new header file.
51824
51825     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.
51826
51827     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51828
51829 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
51830 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51831 Date:   Thu Jul 5 22:24:58 2007 -0500
51832
51833     Revert file mode
51834
51835     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
51836
51837     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51838
51839 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
51840 Author: Jon Loeliger <jdl@freescale.com>
51841 Date:   Tue Jul 10 11:19:50 2007 -0500
51842
51843     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
51844
51845     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51846     Those always evaluated TRUE, and thus were always compiled
51847     even when IDE really wasn't defined/wanted.
51848
51849     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51850
51851 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
51852 Author: Jon Loeliger <jdl@freescale.com>
51853 Date:   Tue Jul 10 11:13:21 2007 -0500
51854
51855     drivers/: Remove lingering references to CFG_CMD_* symbols.
51856
51857     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51858     Those always evaluated TRUE, and thus were always compiled
51859     even when IDE really wasn't defined/wanted.
51860
51861     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51862
51863 commit f40a7f3e3888b42a43674b099e5470022c8c544c
51864 Author: Jon Loeliger <jdl@freescale.com>
51865 Date:   Tue Jul 10 11:07:56 2007 -0500
51866
51867     fs/: Remove lingering references to CFG_CMD_* symbols.
51868
51869     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51870     Those always evaluated TRUE, and thus were always compiled
51871     even when IDE really wasn't defined/wanted.
51872
51873     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51874
51875 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
51876 Author: Jon Loeliger <jdl@freescale.com>
51877 Date:   Tue Jul 10 11:05:02 2007 -0500
51878
51879     net/: Remove lingering references to CFG_CMD_* symbols.
51880
51881     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51882     Those always evaluated TRUE, and thus were always compiled
51883     even when IDE really wasn't defined/wanted.
51884
51885     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51886
51887 commit 902531788376046da212afd1661cffb62f3daa1c
51888 Author: Jon Loeliger <jdl@freescale.com>
51889 Date:   Tue Jul 10 11:02:44 2007 -0500
51890
51891     common/: Remove lingering references to CFG_CMD_* symbols.
51892
51893     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51894     Those always evaluated TRUE, and thus were always compiled
51895     even when IDE really wasn't defined/wanted.
51896
51897     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51898
51899 commit d39b57415838c73fb0a37eca84de3c68ba990586
51900 Author: Jon Loeliger <jdl@freescale.com>
51901 Date:   Tue Jul 10 10:48:22 2007 -0500
51902
51903     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
51904
51905     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51906     Those always evaluated TRUE, and thus were always compiled
51907     even when IDE really wasn't defined/wanted.
51908
51909     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51910
51911 commit 77a318545d57aefa844752465b94c7e09a3f26d0
51912 Author: Jon Loeliger <jdl@freescale.com>
51913 Date:   Tue Jul 10 10:39:10 2007 -0500
51914
51915     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
51916
51917     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51918     Those always evaluated TRUE, and thus were always compiled
51919     even when IDE really wasn't defined/wanted.
51920
51921     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51922
51923 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
51924 Author: Jon Loeliger <jdl@freescale.com>
51925 Date:   Tue Jul 10 10:27:39 2007 -0500
51926
51927     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
51928
51929     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51930
51931 commit 079a136c3588814784561d6e4856970ee82d6e2a
51932 Author: Jon Loeliger <jdl@freescale.com>
51933 Date:   Tue Jul 10 10:12:10 2007 -0500
51934
51935     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
51936
51937     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51938     used to be included but CONFIG_BOOTP_MASK was not defined.
51939
51940     Remove lingering references to CFG_CMD_* symbols.
51941
51942     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51943
51944 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
51945 Author: Jon Loeliger <jdl@freescale.com>
51946 Date:   Tue Jul 10 09:38:02 2007 -0500
51947
51948     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
51949
51950     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51951     used to be included but CONFIG_BOOTP_MASK was not defined.
51952
51953     Remove lingering references to CFG_CMD_* symbols.
51954
51955     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51956
51957 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
51958 Author: Jon Loeliger <jdl@freescale.com>
51959 Date:   Tue Jul 10 09:29:01 2007 -0500
51960
51961     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
51962
51963     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51964     used to be included but CONFIG_BOOTP_MASK was not defined.
51965
51966     Remove lingering references to CFG_CMD_* symbols.
51967
51968     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51969
51970 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
51971 Author: Jon Loeliger <jdl@freescale.com>
51972 Date:   Tue Jul 10 09:22:23 2007 -0500
51973
51974     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
51975
51976     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51977     used to be included but CONFIG_BOOTP_MASK was not defined.
51978
51979     Remove lingering references to CFG_CMD_* symbols.
51980
51981     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51982
51983 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
51984 Author: Jon Loeliger <jdl@freescale.com>
51985 Date:   Tue Jul 10 09:10:49 2007 -0500
51986
51987     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
51988
51989     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51990     used to be included but CONFIG_BOOTP_MASK was not defined.
51991
51992     Remove lingering references to CFG_CMD_* symbols.
51993
51994     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51995
51996 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
51997 Author: Jon Loeliger <jdl@freescale.com>
51998 Date:   Tue Jul 10 09:02:57 2007 -0500
51999
52000     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
52001
52002     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
52003     used to be included but CONFIG_BOOTP_MASK was not defined.
52004
52005     Remove lingering references to CFG_CMD_* symbols.
52006
52007     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52008
52009 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
52010 Author: Jon Loeliger <jdl@freescale.com>
52011 Date:   Mon Jul 9 22:08:34 2007 -0500
52012
52013     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
52014
52015     All of the choices for CONFIG_BOOTP_ are now documented in
52016     the README file.  You must now individually select exactly
52017     the set that you want using a series of
52018         #define CONFIG_BOOTP_<x>
52019     statements in the board port config files now.
52020
52021     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52022
52023 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
52024 Author: Jon Loeliger <jdl@freescale.com>
52025 Date:   Mon Jul 9 21:57:31 2007 -0500
52026
52027     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52028
52029     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52030
52031 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
52032 Author: Jon Loeliger <jdl@freescale.com>
52033 Date:   Mon Jul 9 21:48:26 2007 -0500
52034
52035     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52036
52037     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52038
52039 commit 37d4bb70586659dedef1658ce1bed071be098aec
52040 Author: Jon Loeliger <jdl@freescale.com>
52041 Date:   Mon Jul 9 21:38:02 2007 -0500
52042
52043     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52044
52045     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52046
52047 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
52048 Author: Jon Loeliger <jdl@freescale.com>
52049 Date:   Mon Jul 9 21:31:24 2007 -0500
52050
52051     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52052
52053     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52054
52055 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
52056 Author: Jon Loeliger <jdl@freescale.com>
52057 Date:   Mon Jul 9 21:24:19 2007 -0500
52058
52059     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52060
52061     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52062
52063 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
52064 Author: Jon Loeliger <jdl@freescale.com>
52065 Date:   Mon Jul 9 21:16:53 2007 -0500
52066
52067     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
52068
52069     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52070
52071 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
52072 Author: Jon Loeliger <jdl@freescale.com>
52073 Date:   Mon Jul 9 19:12:30 2007 -0500
52074
52075     Retire CONFIG_COMMANDS finally.
52076     Strip old CFG_CMD_* symbols out.
52077
52078     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52079
52080 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
52081 Author: Jon Loeliger <jdl@freescale.com>
52082 Date:   Mon Jul 9 19:10:03 2007 -0500
52083
52084     Update README.* to reference new CONFIG_CMD_* names now.
52085
52086     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52087
52088 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
52089 Author: Jon Loeliger <jdl@freescale.com>
52090 Date:   Mon Jul 9 19:06:00 2007 -0500
52091
52092     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
52093
52094     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52095
52096 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
52097 Author: Jon Loeliger <jdl@freescale.com>
52098 Date:   Mon Jul 9 18:57:22 2007 -0500
52099
52100     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
52101
52102     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52103
52104 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
52105 Author: Jon Loeliger <jdl@freescale.com>
52106 Date:   Mon Jul 9 18:45:16 2007 -0500
52107
52108     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
52109
52110     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52111
52112 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
52113 Author: Jon Loeliger <jdl@freescale.com>
52114 Date:   Mon Jul 9 18:38:39 2007 -0500
52115
52116     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
52117
52118     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52119
52120 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
52121 Author: Jon Loeliger <jdl@freescale.com>
52122 Date:   Mon Jul 9 18:31:28 2007 -0500
52123
52124     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
52125
52126     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52127
52128 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
52129 Author: Jon Loeliger <jdl@freescale.com>
52130 Date:   Mon Jul 9 18:24:55 2007 -0500
52131
52132     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
52133
52134     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52135
52136 commit fcec2eb93e126400009729328e797f12bc94f1fd
52137 Author: Jon Loeliger <jdl@freescale.com>
52138 Date:   Mon Jul 9 18:19:09 2007 -0500
52139
52140     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
52141
52142     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52143
52144 commit a593814f2be0c9cdc3133cd550b167b8a988328f
52145 Author: Jon Loeliger <jdl@freescale.com>
52146 Date:   Mon Jul 9 18:10:50 2007 -0500
52147
52148     rtc/: Remove obsolete references to CONFIG_COMMANDS
52149
52150     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52151
52152 commit 67350568f9d46e66c21829f3513b3db0caeb948b
52153 Author: Jon Loeliger <jdl@freescale.com>
52154 Date:   Mon Jul 9 18:05:38 2007 -0500
52155
52156     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
52157
52158     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52159
52160 commit 7def6b34f910f08d7ef0a14646da067719237ca2
52161 Author: Jon Loeliger <jdl@freescale.com>
52162 Date:   Mon Jul 9 18:02:11 2007 -0500
52163
52164     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
52165
52166     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52167
52168 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
52169 Author: Jon Loeliger <jdl@freescale.com>
52170 Date:   Mon Jul 9 17:56:50 2007 -0500
52171
52172     fs/: Remove obsolete references to CONFIG_COMMANDS
52173
52174     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52175
52176 commit c91898bbc505aff3e12a807af88e76da18efb7ee
52177 Author: Jon Loeliger <jdl@freescale.com>
52178 Date:   Mon Jul 9 17:46:09 2007 -0500
52179
52180     tools/: Remove obsolete references to CONFIG_COMMANDS
52181
52182     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52183
52184 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
52185 Author: Jon Loeliger <jdl@freescale.com>
52186 Date:   Mon Jul 9 17:45:14 2007 -0500
52187
52188     net/: Remove obsolete references to CONFIG_COMMANDS
52189
52190     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52191
52192 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
52193 Author: Jon Loeliger <jdl@freescale.com>
52194 Date:   Mon Jul 9 17:39:42 2007 -0500
52195
52196     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
52197
52198     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52199
52200 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
52201 Author: Jon Loeliger <jdl@freescale.com>
52202 Date:   Mon Jul 9 17:30:01 2007 -0500
52203
52204     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
52205
52206     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52207
52208 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
52209 Author: Jon Loeliger <jdl@freescale.com>
52210 Date:   Mon Jul 9 17:22:37 2007 -0500
52211
52212     disk/: Remove obsolete references to CONFIG_COMMANDS
52213
52214     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52215
52216 commit 639221c76c88215bd55af83ad174fc30d1940f8f
52217 Author: Jon Loeliger <jdl@freescale.com>
52218 Date:   Mon Jul 9 17:15:49 2007 -0500
52219
52220     include/: Remove obsolete references to CONFIG_COMMANDS
52221     Mostly removed from comments here.
52222
52223     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52224
52225 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
52226 Author: Wolfgang Denk <wd@denx.de>
52227 Date:   Tue Jul 10 00:01:28 2007 +0200
52228
52229     Coding style cleanup; update CHANGELOG.
52230
52231     Signed-off-by: Wolfgang Denk <wd@denx.de>
52232
52233 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
52234 Author: Stefan Roese <sr@denx.de>
52235 Date:   Mon Jul 9 11:00:24 2007 +0200
52236
52237     Small coding style cleanup
52238
52239     Signed-off-by: Stefan Roese <sr@denx.de>
52240
52241 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
52242 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52243 Date:   Mon Jul 9 10:10:08 2007 +0200
52244
52245     Migrate esd 405EP boards to new NAND subsystem
52246
52247     Remove unused CFG_NAND_LEGACY define
52248
52249     These boards to not have NAND.
52250
52251     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52252
52253 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
52254 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52255 Date:   Mon Jul 9 10:10:06 2007 +0200
52256
52257     Migrate esd 405EP boards to new NAND subsystem
52258
52259     Migrate esd 405EP boards to new NAND subsystem
52260
52261     -cleanup
52262     -use correct io accessors (in/out_be32())
52263
52264     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52265
52266 commit e09f7ab5749c345f924da272bea0521a73af5b11
52267 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52268 Date:   Mon Jul 9 10:10:04 2007 +0200
52269
52270     Migrate esd 405EP boards to new NAND subsystem
52271
52272     This patch prepares the migration from the legacy NAND driver
52273     to U-Boot's new NAND subsystem for esd boards.
52274
52275     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52276
52277 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
52278 Author: Jon Loeliger <jdl@freescale.com>
52279 Date:   Sun Jul 8 18:10:08 2007 -0500
52280
52281     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
52282
52283     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52284
52285 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
52286 Author: Jon Loeliger <jdl@freescale.com>
52287 Date:   Sun Jul 8 18:05:39 2007 -0500
52288
52289     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
52290
52291     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52292
52293 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
52294 Author: Jon Loeliger <jdl@freescale.com>
52295 Date:   Sun Jul 8 18:02:23 2007 -0500
52296
52297     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
52298
52299     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52300
52301 commit baa26db4113679b80970ff447d91cc10217742a6
52302 Author: Jon Loeliger <jdl@freescale.com>
52303 Date:   Sun Jul 8 17:51:39 2007 -0500
52304
52305     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
52306
52307     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52308
52309 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
52310 Author: Jon Loeliger <jdl@freescale.com>
52311 Date:   Sun Jul 8 17:02:01 2007 -0500
52312
52313     Clear up confusion over the CMD_POST and POST_DIAG mess.
52314
52315     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
52316     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
52317     Clear this mess up some.
52318
52319     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52320
52321 commit b3631487105a57ab7cbadfc26efbaf9676275018
52322 Author: Jon Loeliger <jdl@freescale.com>
52323 Date:   Sun Jul 8 15:45:08 2007 -0500
52324
52325     Remove references to the old cmd_confdefs.h include file.
52326
52327     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52328
52329 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
52330 Author: Jon Loeliger <jdl@freescale.com>
52331 Date:   Sun Jul 8 15:42:59 2007 -0500
52332
52333     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
52334
52335     Use new CONFIG_CMD_* in lwmon5.h board config file.
52336     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
52337
52338     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52339
52340 commit a5562901661bd428f7e5feb333f796372cb81019
52341 Author: Jon Loeliger <jdl@freescale.com>
52342 Date:   Sun Jul 8 15:31:57 2007 -0500
52343
52344     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
52345
52346     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52347
52348 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
52349 Author: Jon Loeliger <jdl@freescale.com>
52350 Date:   Sun Jul 8 15:02:44 2007 -0500
52351
52352     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
52353
52354     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52355
52356 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
52357 Author: Jon Loeliger <jdl@freescale.com>
52358 Date:   Sun Jul 8 15:12:40 2007 -0500
52359
52360     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
52361
52362     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52363
52364 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
52365 Author: Jon Loeliger <jdl@freescale.com>
52366 Date:   Sun Jul 8 14:55:07 2007 -0500
52367
52368     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
52369
52370     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52371
52372 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
52373 Author: Jon Loeliger <jdl@freescale.com>
52374 Date:   Sun Jul 8 14:49:44 2007 -0500
52375
52376     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
52377
52378     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52379
52380 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
52381 Author: Jon Loeliger <jdl@freescale.com>
52382 Date:   Sun Jul 8 14:21:43 2007 -0500
52383
52384     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
52385
52386     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52387
52388 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
52389 Author: Jon Loeliger <jdl@freescale.com>
52390 Date:   Sun Jul 8 14:14:17 2007 -0500
52391
52392     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
52393
52394     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52395
52396 commit 348f258f24253433e4a2302a0bbceb6740a67246
52397 Author: Jon Loeliger <jdl@freescale.com>
52398 Date:   Sun Jul 8 13:46:18 2007 -0500
52399
52400     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
52401
52402     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52403
52404 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
52405 Author: Jon Loeliger <jdl@freescale.com>
52406 Date:   Sun Jul 8 10:09:35 2007 -0500
52407
52408     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
52409
52410     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52411
52412 commit 60a0876b5106b34220e459c208bbf648073306c0
52413 Author: Jon Loeliger <jdl@freescale.com>
52414 Date:   Sat Jul 7 21:04:26 2007 -0500
52415
52416     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
52417
52418     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52419
52420 commit dcaa71562826a2466e894c868d132509dcda8444
52421 Author: Jon Loeliger <jdl@freescale.com>
52422 Date:   Sat Jul 7 20:56:05 2007 -0500
52423
52424     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
52425
52426     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52427
52428 commit 3c3227f3c737502311b25b72084573901cbbf17d
52429 Author: Jon Loeliger <jdl@freescale.com>
52430 Date:   Sat Jul 7 20:40:43 2007 -0500
52431
52432     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
52433
52434     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52435
52436 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
52437 Author: Jon Loeliger <jdl@freescale.com>
52438 Date:   Thu Jul 5 19:52:35 2007 -0500
52439
52440     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
52441
52442     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52443
52444 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
52445 Author: Jon Loeliger <jdl@freescale.com>
52446 Date:   Thu Jul 5 19:32:07 2007 -0500
52447
52448     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
52449
52450     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52451
52452 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
52453 Author: Jon Loeliger <jdl@freescale.com>
52454 Date:   Thu Jul 5 19:13:52 2007 -0500
52455
52456     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
52457
52458     Since ADS860.h includes "board/fads/fads.h" with ramifications
52459     on the CONFIG_COMMAND treatment, it too has to be adjusted to
52460     exclude already configured commands in this same commit.
52461
52462     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52463
52464 commit 10e038932f22ee80ebd53de312531e70e6590a2f
52465 Author: Thomas Knobloch <knobloch@siemens.com>
52466 Date:   Fri Jul 6 14:58:39 2007 +0200
52467
52468     [NAND] Bad block skipping for command nboot
52469
52470     The old implementation of command nboot does not support reading the image from
52471     NAND flash with skipping of bad blocks. The patch implements a new version of
52472     the nboot command: by calling nboot.jffs2 from the u-boot command line the
52473     command will load the image from NAND flash with respect to bad blocks (by using
52474     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
52475     read.jffs2 ...".
52476
52477     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
52478     Signed-off-by: Stefan Roese <sr@denx.de>
52479
52480 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
52481 Author: Stefan Roese <sr@denx.de>
52482 Date:   Fri Jul 6 12:26:51 2007 +0200
52483
52484     ppc4xx: Update lwmon5 default environment
52485
52486     Signed-off-by: Stefan Roese <sr@denx.de>
52487
52488 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
52489 Author: Stefan Roese <sr@denx.de>
52490 Date:   Fri Jul 6 11:48:24 2007 +0200
52491
52492     ppc4xx: Update lwmon5 board
52493
52494     Add unlock=yes environment variable to default variables to unlock
52495     the CFI flash by default.
52496
52497     Signed-off-by: Stefan Roese <sr@denx.de>
52498
52499 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
52500 Author: Stefan Roese <sr@denx.de>
52501 Date:   Fri Jul 6 09:45:47 2007 +0200
52502
52503     Fix problem with get/setdcr commands introduced by cfg patches
52504
52505     Signed-off-by: Stefan Roese <sr@denx.de>
52506
52507 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
52508 Author: Wolfgang Denk <wd@denx.de>
52509 Date:   Fri Jul 6 02:50:19 2007 +0200
52510
52511     Code cleanup and default config update for STC GP3 SSA board.
52512
52513     Signed-off-by: Wolfgang Denk <wd@denx.de>
52514
52515 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
52516 Author: Wolfgang Denk <wd@denx.de>
52517 Date:   Thu Jul 5 17:56:27 2007 +0200
52518
52519     Fixing some typos etc. introduced mainly by cfg patches.
52520
52521     Signed-off-by: Wolfgang Denk <wd@denx.de>
52522
52523 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
52524 Author: Wolfgang Denk <wd@denx.de>
52525 Date:   Thu Jul 5 11:12:16 2007 +0200
52526
52527     Minor coding style cleanup. Update CHANGELOG.
52528
52529 commit dca3b3d6d6396b67e5e84af53452164923c73443
52530 Author: Jon Loeliger <jdl@jdl.com>
52531 Date:   Wed Jul 4 22:33:46 2007 -0500
52532
52533     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
52534
52535     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52536
52537 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
52538 Author: Jon Loeliger <jdl@jdl.com>
52539 Date:   Wed Jul 4 22:33:38 2007 -0500
52540
52541     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
52542
52543     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52544
52545 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
52546 Author: Jon Loeliger <jdl@jdl.com>
52547 Date:   Wed Jul 4 22:33:30 2007 -0500
52548
52549     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
52550
52551     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52552
52553 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
52554 Author: Jon Loeliger <jdl@jdl.com>
52555 Date:   Wed Jul 4 22:33:23 2007 -0500
52556
52557     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
52558
52559     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52560
52561 commit 26a34560d56a9df5bc2ae23525d9229736134757
52562 Author: Jon Loeliger <jdl@jdl.com>
52563 Date:   Wed Jul 4 22:33:17 2007 -0500
52564
52565     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
52566
52567     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52568
52569 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
52570 Author: Jon Loeliger <jdl@jdl.com>
52571 Date:   Wed Jul 4 22:33:13 2007 -0500
52572
52573     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
52574
52575     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52576
52577 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
52578 Author: Jon Loeliger <jdl@jdl.com>
52579 Date:   Wed Jul 4 22:33:07 2007 -0500
52580
52581     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
52582
52583     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52584
52585 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
52586 Author: Jon Loeliger <jdl@jdl.com>
52587 Date:   Wed Jul 4 22:33:01 2007 -0500
52588
52589     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
52590
52591     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52592
52593 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
52594 Author: Jon Loeliger <jdl@jdl.com>
52595 Date:   Wed Jul 4 22:32:57 2007 -0500
52596
52597     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
52598
52599     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52600
52601 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
52602 Author: Jon Loeliger <jdl@jdl.com>
52603 Date:   Wed Jul 4 22:32:51 2007 -0500
52604
52605     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
52606
52607     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52608
52609 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
52610 Author: Jon Loeliger <jdl@jdl.com>
52611 Date:   Wed Jul 4 22:32:32 2007 -0500
52612
52613     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
52614
52615     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52616
52617 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
52618 Author: Jon Loeliger <jdl@jdl.com>
52619 Date:   Wed Jul 4 22:32:25 2007 -0500
52620
52621     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
52622
52623     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52624
52625 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
52626 Author: Jon Loeliger <jdl@jdl.com>
52627 Date:   Wed Jul 4 22:32:19 2007 -0500
52628
52629     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
52630
52631     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52632
52633 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
52634 Author: Jon Loeliger <jdl@jdl.com>
52635 Date:   Wed Jul 4 22:32:10 2007 -0500
52636
52637     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
52638
52639     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52640
52641 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
52642 Author: Jon Loeliger <jdl@jdl.com>
52643 Date:   Wed Jul 4 22:32:03 2007 -0500
52644
52645     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
52646
52647     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52648
52649 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
52650 Author: Jon Loeliger <jdl@jdl.com>
52651 Date:   Wed Jul 4 22:31:56 2007 -0500
52652
52653     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
52654
52655     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52656
52657 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
52658 Author: Jon Loeliger <jdl@jdl.com>
52659 Date:   Wed Jul 4 22:31:49 2007 -0500
52660
52661     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
52662
52663     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52664
52665 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
52666 Author: Jon Loeliger <jdl@jdl.com>
52667 Date:   Wed Jul 4 22:31:42 2007 -0500
52668
52669     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
52670
52671     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52672
52673 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
52674 Author: Jon Loeliger <jdl@jdl.com>
52675 Date:   Wed Jul 4 22:31:35 2007 -0500
52676
52677     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
52678
52679     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52680
52681 commit d794cfefead5fc177cf4f41164e80382e9c9484a
52682 Author: Jon Loeliger <jdl@jdl.com>
52683 Date:   Wed Jul 4 22:31:15 2007 -0500
52684
52685     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
52686
52687     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52688
52689 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
52690 Author: Jon Loeliger <jdl@jdl.com>
52691 Date:   Wed Jul 4 22:31:07 2007 -0500
52692
52693     include/configs: Use new CONFIG_CMD_* in STx board config files.
52694
52695     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52696
52697 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
52698 Author: Jon Loeliger <jdl@jdl.com>
52699 Date:   Wed Jul 4 22:30:58 2007 -0500
52700
52701     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
52702
52703     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52704
52705 commit 2694690e285acaa34922f55f4b5ae030da60c55a
52706 Author: Jon Loeliger <jdl@jdl.com>
52707 Date:   Wed Jul 4 22:30:50 2007 -0500
52708
52709     include/configs: Use new CONFIG_CMD_* in TQM board config files.
52710
52711     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52712
52713 commit 1cc4c458329765b58e584a19821e796b3c10e976
52714 Author: Jon Loeliger <jdl@jdl.com>
52715 Date:   Wed Jul 4 22:30:28 2007 -0500
52716
52717     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
52718
52719     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52720
52721 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
52722 Author: Jon Loeliger <jdl@jdl.com>
52723 Date:   Wed Jul 4 22:30:06 2007 -0500
52724
52725     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
52726
52727     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52728
52729 commit b44896215a09c60fa40cae906f7ed207bbc2c492
52730 Author: Sergei Poselenov <sposelenov@emcraft.com>
52731 Date:   Thu Jul 5 08:17:37 2007 +0200
52732
52733     Merged POST framework with the current TOT.
52734
52735     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52736
52737 commit b24629fa377214d63bb40d1360e354b6d3e4af56
52738 Author: Jon Loeliger <jdl@jdl.com>
52739 Date:   Wed Jun 13 13:23:15 2007 -0500
52740
52741     mpc86xx: Remove old CFG_CMD_* references.
52742
52743     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52744
52745 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
52746 Author: Jon Loeliger <jdl@jdl.com>
52747 Date:   Wed Jun 13 13:22:54 2007 -0500
52748
52749     Add MPC8568MDS to MAKEALL 85xx target.
52750
52751     It was missing from the original port submission.
52752
52753     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52754
52755 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
52756 Author: Jon Loeliger <jdl@jdl.com>
52757 Date:   Wed Jun 13 13:22:08 2007 -0500
52758
52759     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
52760
52761     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52762
52763 commit 56b304ac2091689506088a9ae67f63fd6300cf16
52764 Author: Jon Loeliger <jdl@jdl.com>
52765 Date:   Wed Jun 13 13:21:37 2007 -0500
52766
52767     Fix #if typo in CONFIG_CMD_* changes.
52768
52769     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52770
52771 commit f780b83316d9af1f61d71cc88b1917b387b9b995
52772 Author: Niklaus Giger <niklausgiger@gmx.ch>
52773 Date:   Wed Jun 27 18:11:38 2007 +0200
52774
52775     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
52776
52777     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
52778
52779 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
52780 Author: Stefan Roese <sr@denx.de>
52781 Date:   Wed Jul 4 10:06:30 2007 +0200
52782
52783     ppc4xx: Update lwmon5 board
52784
52785     - Add optional ECC generation routine to preserve existing
52786       RAM values. This is needed for the Linux log-buffer support
52787     - Add optional DDR2 setup with CL=4
52788     - GPIO50 not used anymore
52789     - Lime register setup added
52790
52791     Signed-off-by: Stefan Roese <sr@denx.de>
52792
52793 commit 6810a34677dbc446334f5e451f1682426dd33b49
52794 Author: Grant Likely <grant.likely@secretlab.ca>
52795 Date:   Tue Jul 3 00:17:28 2007 -0600
52796
52797     Fix Makefile to use $(MKCONFIG) macro for all board ports
52798
52799     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52800
52801 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
52802 Author: Grant Likely <grant.likely@secretlab.ca>
52803 Date:   Tue Jul 3 00:17:28 2007 -0600
52804
52805     Fix Makefile to use $(MKCONFIG) macro for all board ports
52806
52807     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52808
52809 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
52810 Author: Grant Likely <grant.likely@secretlab.ca>
52811 Date:   Tue Jul 3 00:34:49 2007 -0600
52812
52813     Correct fixup relocation for mpc83xx
52814
52815     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52816
52817 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
52818 Author: Grant Likely <grant.likely@secretlab.ca>
52819 Date:   Tue Jul 3 00:34:44 2007 -0600
52820
52821     Correct fixup relocation for mpc8260
52822
52823     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52824
52825 commit f3a52fe05923935db86985daf9438e2f70ac39aa
52826 Author: Grant Likely <grant.likely@secretlab.ca>
52827 Date:   Tue Jul 3 00:34:39 2007 -0600
52828
52829     Correct fixup relocation for mpc824x
52830
52831     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52832
52833 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
52834 Author: Grant Likely <grant.likely@secretlab.ca>
52835 Date:   Tue Jul 3 00:34:34 2007 -0600
52836
52837     Correct fixup relocation for mpc8220
52838
52839     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52840
52841 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
52842 Author: Grant Likely <grant.likely@secretlab.ca>
52843 Date:   Tue Jul 3 00:34:29 2007 -0600
52844
52845     Correct fixup relocation for MPC5xxx
52846
52847     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52848
52849 commit 3649cd99ba815b6601868735765602f00ef3692b
52850 Author: Grant Likely <grant.likely@secretlab.ca>
52851 Date:   Tue Jul 3 00:34:24 2007 -0600
52852
52853     Correct relocation fixup for mpc5xx
52854
52855     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52856
52857 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
52858 Author: Grant Likely <grant.likely@secretlab.ca>
52859 Date:   Tue Jul 3 00:34:19 2007 -0600
52860
52861     Don't set gd->reloc_off if relocation of .fixup works correctly
52862
52863     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52864
52865 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
52866 Author: Grant Likely <grant.likely@secretlab.ca>
52867 Date:   Tue Jul 3 00:34:14 2007 -0600
52868
52869     Remove obsolete mpc83xx linker scripts
52870
52871     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52872
52873 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
52874 Author: Grant Likely <grant.likely@secretlab.ca>
52875 Date:   Tue Jul 3 00:34:09 2007 -0600
52876
52877     Consolidate mpc8260 linker scripts
52878
52879     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52880
52881 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
52882 Author: Grant Likely <grant.likely@secretlab.ca>
52883 Date:   Tue Jul 3 00:34:04 2007 -0600
52884
52885     Remove obsolete mpc824x linker scripts
52886
52887     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52888
52889 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
52890 Author: Grant Likely <grant.likely@secretlab.ca>
52891 Date:   Tue Jul 3 00:33:59 2007 -0600
52892
52893     Remove obsolete mpc824x linker scripts (3 of 4)
52894
52895     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52896
52897 commit a71c084f3ac7fedf144537db2b2da47323068833
52898 Author: Grant Likely <grant.likely@secretlab.ca>
52899 Date:   Tue Jul 3 00:33:53 2007 -0600
52900
52901     Remove obsolete mpc824x linker scripts (2 of 4)
52902
52903     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52904
52905 commit f670a15468d1365241d40022b9408e1004181f5e
52906 Author: Grant Likely <grant.likely@secretlab.ca>
52907 Date:   Tue Jul 3 00:33:48 2007 -0600
52908
52909     Remove obsolete mpc824x linker scripts (1 of 4)
52910
52911     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52912
52913 commit 09555bd45a04c0e54f172528d21bc18896550d28
52914 Author: Grant Likely <grant.likely@secretlab.ca>
52915 Date:   Tue Jul 3 00:33:43 2007 -0600
52916
52917     Remove obsolete mpc8220 linker scripts
52918
52919     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52920
52921 commit 5efb992f046e51225c93d52f80fecbe433abd789
52922 Author: Grant Likely <grant.likely@secretlab.ca>
52923 Date:   Tue Jul 3 00:33:38 2007 -0600
52924
52925     Remove obsolete mpc5xxx linker scripts (3 of 3)
52926
52927     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52928
52929 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
52930 Author: Grant Likely <grant.likely@secretlab.ca>
52931 Date:   Tue Jul 3 00:33:33 2007 -0600
52932
52933     Remove obsolete mpc5xxx linker scripts (2 of 3)
52934
52935     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52936
52937 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
52938 Author: Grant Likely <grant.likely@secretlab.ca>
52939 Date:   Tue Jul 3 00:33:28 2007 -0600
52940
52941     Remove obsolete mpc5xxx linker scripts (1 of 3)
52942
52943     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52944
52945 commit b7d8e05f8675249b5f208aa73babeed384a4519d
52946 Author: Grant Likely <grant.likely@secretlab.ca>
52947 Date:   Tue Jul 3 00:33:23 2007 -0600
52948
52949     Remove obsolete mpc5xx linker scripts
52950
52951     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52952
52953 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
52954 Author: Grant Likely <grant.likely@secretlab.ca>
52955 Date:   Tue Jul 3 00:33:18 2007 -0600
52956
52957     Consolidate mpc83xx linker scripts
52958
52959     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52960
52961 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
52962 Author: Grant Likely <grant.likely@secretlab.ca>
52963 Date:   Tue Jul 3 00:33:13 2007 -0600
52964
52965     Consolidate mpc8260 linker scripts
52966
52967     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52968
52969 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
52970 Author: Grant Likely <grant.likely@secretlab.ca>
52971 Date:   Tue Jul 3 00:33:08 2007 -0600
52972
52973     Consolidate mpc824x linker scripts
52974
52975     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52976
52977 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
52978 Author: Grant Likely <grant.likely@secretlab.ca>
52979 Date:   Tue Jul 3 00:33:03 2007 -0600
52980
52981     Consolidate mpc8220 linker scripts
52982
52983     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52984
52985 commit d181c9a15cd41863fe24840d17848429f27d3c8c
52986 Author: Grant Likely <grant.likely@secretlab.ca>
52987 Date:   Tue Jul 3 00:32:58 2007 -0600
52988
52989     Consolidate mpc5xxx linker scripts
52990
52991     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52992
52993 commit 287ac924adb7291bebe5086652a362a30ab28b13
52994 Author: Grant Likely <grant.likely@secretlab.ca>
52995 Date:   Tue Jul 3 00:32:53 2007 -0600
52996
52997     Consolidate mpc5xx linker scripts
52998
52999     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53000
53001 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
53002 Author: Wolfgang Denk <wd@denx.de>
53003 Date:   Wed Jul 4 00:43:53 2007 +0200
53004
53005     Fix a few file permission problems.
53006
53007     Signed-off-by: Wolfgang Denk <wd@denx.de>
53008
53009 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
53010 Author: Wolfgang Denk <wd@denx.de>
53011 Date:   Wed Jul 4 00:38:38 2007 +0200
53012
53013     Minor coding style cleanup. Rebuild CHANGELOG file.
53014
53015 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
53016 Author: Jon Loeliger <jdl@jdl.com>
53017 Date:   Mon Jun 11 19:03:44 2007 -0500
53018
53019     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
53020
53021     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53022
53023 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
53024 Author: Jon Loeliger <jdl@jdl.com>
53025 Date:   Mon Jun 11 19:03:39 2007 -0500
53026
53027     README: Rewrite command line config to use CONFIG_CMD_* names.
53028
53029     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53030
53031 commit 72a074cec68e5bad60d63206c050974e08afd804
53032 Author: Jon Loeliger <jdl@jdl.com>
53033 Date:   Mon Jun 11 19:03:34 2007 -0500
53034
53035     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53036
53037     This is a compatibility step that allows both the older form
53038     and the new form to co-exist for a while until the older can
53039     be removed entirely.
53040
53041     All transformations are of the form:
53042     Before:
53043         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53044     After:
53045         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53046
53047     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53048
53049 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
53050 Author: Jon Loeliger <jdl@jdl.com>
53051 Date:   Mon Jun 11 19:03:28 2007 -0500
53052
53053     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53054
53055     This is a compatibility step that allows both the older form
53056     and the new form to co-exist for a while until the older can
53057     be removed entirely.
53058
53059     All transformations are of the form:
53060     Before:
53061         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53062     After:
53063         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53064
53065     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53066
53067 commit 9107ebe0d352420895ab69b715697bdebc8caf50
53068 Author: Jon Loeliger <jdl@jdl.com>
53069 Date:   Mon Jun 11 19:03:23 2007 -0500
53070
53071     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53072
53073     This is a compatibility step that allows both the older form
53074     and the new form to co-exist for a while until the older can
53075     be removed entirely.
53076
53077     All transformations are of the form:
53078     Before:
53079         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53080     After:
53081         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53082
53083     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53084
53085 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
53086 Author: Jon Loeliger <jdl@jdl.com>
53087 Date:   Mon Jun 11 19:03:19 2007 -0500
53088
53089     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53090
53091     This is a compatibility step that allows both the older form
53092     and the new form to co-exist for a while until the older can
53093     be removed entirely.
53094
53095     All transformations are of the form:
53096     Before:
53097         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53098     After:
53099         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53100
53101     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53102
53103 commit 737184114ec9c9e0ab94d6713536126073bd2472
53104 Author: Jon Loeliger <jdl@jdl.com>
53105 Date:   Mon Jun 11 19:03:15 2007 -0500
53106
53107     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53108
53109     This is a compatibility step that allows both the older form
53110     and the new form to co-exist for a while until the older can
53111     be removed entirely.
53112
53113     All transformations are of the form:
53114     Before:
53115         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53116     After:
53117         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53118
53119     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53120
53121 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
53122 Author: Jon Loeliger <jdl@jdl.com>
53123 Date:   Mon Jun 11 19:03:08 2007 -0500
53124
53125     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53126
53127     This is a compatibility step that allows both the older form
53128     and the new form to co-exist for a while until the older can
53129     be removed entirely.
53130
53131     All transformations are of the form:
53132     Before:
53133         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53134     After:
53135         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53136
53137     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53138
53139 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
53140 Author: Jon Loeliger <jdl@jdl.com>
53141 Date:   Mon Jun 11 19:03:03 2007 -0500
53142
53143     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53144
53145     This is a compatibility step that allows both the older form
53146     and the new form to co-exist for a while until the older can
53147     be removed entirely.
53148
53149     All transformations are of the form:
53150     Before:
53151         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53152     After:
53153         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53154
53155     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53156
53157 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
53158 Author: Jon Loeliger <jdl@jdl.com>
53159 Date:   Mon Jun 11 19:02:58 2007 -0500
53160
53161     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53162
53163     This is a compatibility step that allows both the older form
53164     and the new form to co-exist for a while until the older can
53165     be removed entirely.
53166
53167     All transformations are of the form:
53168     Before:
53169         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53170     After:
53171         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53172
53173     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53174
53175 commit 98b79003c21c2578206003256de4e781d6b36ca8
53176 Author: Jon Loeliger <jdl@jdl.com>
53177 Date:   Mon Jun 11 19:02:53 2007 -0500
53178
53179     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53180
53181     This is a compatibility step that allows both the older form
53182     and the new form to co-exist for a while until the older can
53183     be removed entirely.
53184
53185     All transformations are of the form:
53186     Before:
53187         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53188     After:
53189         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53190
53191     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53192
53193 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
53194 Author: Jon Loeliger <jdl@jdl.com>
53195 Date:   Mon Jun 11 19:02:49 2007 -0500
53196
53197     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53198
53199     This is a compatibility step that allows both the older form
53200     and the new form to co-exist for a while until the older can
53201     be removed entirely.
53202
53203     All transformations are of the form:
53204     Before:
53205         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53206     After:
53207         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53208
53209     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53210
53211 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
53212 Author: Jon Loeliger <jdl@jdl.com>
53213 Date:   Mon Jun 11 19:02:34 2007 -0500
53214
53215     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53216
53217     This is a compatibility step that allows both the older form
53218     and the new form to co-exist for a while until the older can
53219     be removed entirely.
53220
53221     All transformations are of the form:
53222     Before:
53223         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53224     After:
53225         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53226
53227     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53228
53229 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
53230 Author: Jon Loeliger <jdl@jdl.com>
53231 Date:   Mon Jun 11 19:02:20 2007 -0500
53232
53233     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53234
53235     This is a compatibility step that allows both the older form
53236     and the new form to co-exist for a while until the older can
53237     be removed entirely.
53238
53239     All transformations are of the form:
53240     Before:
53241         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53242     After:
53243         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53244
53245     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53246
53247 commit d5be43de93ff905c465e509d45a3164ef48d26e7
53248 Author: Jon Loeliger <jdl@jdl.com>
53249 Date:   Mon Jun 11 19:02:10 2007 -0500
53250
53251     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53252
53253     This is a compatibility step that allows both the older form
53254     and the new form to co-exist for a while until the older can
53255     be removed entirely.
53256
53257     All transformations are of the form:
53258     Before:
53259         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53260     After:
53261         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53262
53263     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53264
53265 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
53266 Author: Jon Loeliger <jdl@jdl.com>
53267 Date:   Mon Jun 11 19:02:05 2007 -0500
53268
53269     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53270
53271     This is a compatibility step that allows both the older form
53272     and the new form to co-exist for a while until the older can
53273     be removed entirely.
53274
53275     All transformations are of the form:
53276     Before:
53277         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53278     After:
53279         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53280
53281     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53282
53283 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
53284 Author: Jon Loeliger <jdl@jdl.com>
53285 Date:   Mon Jun 11 19:01:54 2007 -0500
53286
53287     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53288
53289     This is a compatibility step that allows both the older form
53290     and the new form to co-exist for a while until the older can
53291     be removed entirely.
53292
53293     All transformations are of the form:
53294     Before:
53295         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53296     After:
53297         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53298
53299     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53300
53301 commit a76adc8142c1d956385a109e0b70f9319ede4d66
53302 Author: Jon Loeliger <jdl@jdl.com>
53303 Date:   Mon Jun 11 19:01:43 2007 -0500
53304
53305     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
53306
53307     This is a compatibility step that allows both the older form
53308     and the new form to co-exist for a while until the older can
53309     be removed entirely.
53310
53311     All transformations are of the form:
53312     Before:
53313         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
53314     After:
53315         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
53316
53317     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53318
53319 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
53320 Author: Jon Loeliger <jdl@jdl.com>
53321 Date:   Mon Jun 11 19:01:34 2007 -0500
53322
53323     Introduce initial versions of new Command Config files.
53324
53325     Derive three new files from cmd_confdefs.h:
53326         config_bootp.h - Has BOOTP related config options, not commands
53327         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
53328         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
53329
53330     For now, include "config_bootp.h" for compatability until all
53331     users of it directly include it properly.
53332
53333     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53334
53335 commit 1f2a05898658900dc5717761e27abf2052e67e13
53336 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
53337 Date:   Sat Jun 30 18:50:48 2007 +0200
53338
53339     Fix S-ATA support.
53340
53341     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
53342
53343 commit a5d71e290f3673269be8eefb4ec44f53412f9461
53344 Author: Heiko Schocher <hs@pollux.denx.de>
53345 Date:   Mon Jun 25 19:11:37 2007 +0200
53346
53347     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
53348
53349     Signed-off-by: Heiko Schocher <hs@denx.de>
53350
53351 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
53352 Author: Niklaus Giger <niklaus.giger@nestal.com>
53353 Date:   Mon Jun 25 17:03:13 2007 +0200
53354
53355     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
53356
53357     This patch prints the DDR status registers upon machine check
53358     interrupt on the 440EPx/GRx. This can be useful especially when
53359     ECC support is enabled.
53360
53361     I added some small changes to the original patch from Niklaus to
53362     make it compile clean.
53363
53364     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
53365     Signed-off-by: Stefan Roese <sr@denx.de>
53366
53367 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
53368 Author: Niklaus Giger <niklaus.giger@nestal.com>
53369 Date:   Mon Jun 25 16:50:55 2007 +0200
53370
53371     ppc4xx: Fix O=buildir builds
53372
53373     This patch fixes the problem to assemble cpu/ppc4xx/start.S
53374     experienced last week where building failed having specified
53375     O=../build.sequoia.
53376
53377     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
53378
53379 commit 466fff1a7bb5fe764a06450626f6098219f446b8
53380 Author: Stefan Roese <sr@denx.de>
53381 Date:   Mon Jun 25 15:57:39 2007 +0200
53382
53383     ppc4xx: Add pci_pre_init() for 405 boards
53384
53385     This patch removes the CFG_PCI_PRE_INIT option completely, since
53386     it's not needed anymore with the patch from Matthias Fuchs with
53387     the "weak" pci_pre_init() implementation.
53388
53389     Signed-off-by: Stefan Roese <sr@denx.de>
53390
53391 commit 6f35c53166213c24a5a0e2390ed861136ff73870
53392 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53393 Date:   Sun Jun 24 17:41:21 2007 +0200
53394
53395     ppc4xx: Maintenance patch for esd's CPCI405 derivats
53396
53397     -add pci_pre_init() for pci interrupt fixup code
53398     -disable phy sleep mode via reset_phy() function
53399     -use correct io accessors
53400     -cleanup
53401
53402     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53403
53404 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
53405 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53406 Date:   Sun Jun 24 17:23:41 2007 +0200
53407
53408     ppc4xx: Add pci_pre_init() for 405 boards
53409
53410     This patch adds support for calling a plattform dependant
53411     pci_pre_init() function for 405 boards. This can be used to
53412     move the current pci_405gp_fixup_irq() function into the
53413     board code.
53414
53415     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
53416     A default function with 'weak' attribute is used when
53417     a board specific pci_pre_init() is not implemented.
53418
53419     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
53420
53421 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
53422 Author: Wolfgang Denk <wd@denx.de>
53423 Date:   Fri Jun 22 23:59:00 2007 +0200
53424
53425     Coding stylke cleanup; rebuild CHANGELOG
53426
53427 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
53428 Author: Igor Lisitsin <igor@emcraft.com>
53429 Date:   Wed Apr 18 14:55:19 2007 +0400
53430
53431     Adapt log buffer code to support Linux 2.6
53432
53433     A new environment variable, "logversion", selects the log buffer
53434     behaviour. If it is not set or set to a value other than 2, then the
53435     old, Linux 2.4.4, behaviour is selected.
53436
53437     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
53438     --
53439
53440 commit a11e06965ec91270c51853407ff1261d3c740386
53441 Author: Igor Lisitsin <igor@emcraft.com>
53442 Date:   Wed Mar 28 19:06:19 2007 +0400
53443
53444     Extend POST support for PPC440
53445
53446     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
53447
53448     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
53449     --
53450
53451 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
53452 Author: Heiko Schocher <hs@pollux.denx.de>
53453 Date:   Fri Jun 22 19:11:54 2007 +0200
53454
53455     [PCS440EP]      upgrade the PCS440EP board:
53456                     - Show on the Status LEDs, some States of the board.
53457                     - Get the MAC addresses from the EEProm
53458                     - use PREBOOT
53459                     - use the CF on the board.
53460                     - check the U-Boot image in the Flash with a SHA1
53461                       checksum.
53462                     - use dynamic TLB entries generation for the SDRAM
53463
53464     Signed-off-by: Heiko Schocher <hs@denx.de>
53465
53466 commit 3a1f5c81b0b9557817a789bece839905581c2205
53467 Author: Stefan Roese <sr@denx.de>
53468 Date:   Fri Jun 22 16:58:40 2007 +0200
53469
53470     ppc4xx: Fix problem with extended program_tlb() funtion
53471
53472     The recently extended program_tlb() function had a problem when
53473     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
53474     virtual address was not incremented. This patch fixes this issue
53475     and is tested on Katmai with 512MB SDRAM.
53476
53477     Signed-off-by: Stefan Roese <sr@denx.de>
53478
53479 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
53480 Author: Rafal Jaworowski <raj@semihalf.com>
53481 Date:   Fri Jun 22 14:58:04 2007 +0200
53482
53483     [ppc] Fix build breakage for all non-4xx PowerPC variants.
53484
53485     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
53486     - minor 4xx cleanup
53487
53488 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
53489 Author: Mike Frysinger <vapier@gentoo.org>
53490 Date:   Fri Jun 22 10:34:12 2007 +0200
53491
53492     [patch] add nand_init() prototype to nand.h
53493
53494     since nand_init() is expected to be called by other parts of u-boot, there
53495     should be a prototype for it in nand.h
53496
53497     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53498     Signed-off-by: Stefan Roese <sr@denx.de>
53499
53500 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
53501 Author: Wolfgang Denk <wd@denx.de>
53502 Date:   Wed Jun 20 18:14:24 2007 +0200
53503
53504     Coding style cleanup. Refresh CHANGELOG.
53505
53506 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
53507 Author: Stefan Roese <sr@denx.de>
53508 Date:   Tue Jun 19 17:22:44 2007 +0200
53509
53510     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
53511
53512     This patch adds a board command to configure the I2C bootstrap EEPROM
53513     values. Right now 533 and 667MHz are supported for booting either via NOR
53514     or NAND FLASH. Here the usage:
53515
53516     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
53517     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
53518
53519     Signed-off-by: Stefan Roese <sr@denx.de>
53520
53521 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
53522 Author: Stefan Roese <sr@denx.de>
53523 Date:   Tue Jun 19 16:42:31 2007 +0200
53524
53525     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
53526
53527     The latest changes showed a problem with the location of the NAND-SPL
53528     image in the OCM and the init-data area (incl. cache). This patch
53529     fixes this problem.
53530
53531     Signed-off-by: Stefan Roese <sr@denx.de>
53532
53533 commit 86ba99e34194394052d24c04dc40d1263d29a26f
53534 Author: Stefan Roese <sr@denx.de>
53535 Date:   Tue Jun 19 16:40:58 2007 +0200
53536
53537     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
53538
53539     Signed-off-by: Stefan Roese <sr@denx.de>
53540
53541 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
53542 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53543 Date:   Mon Jun 18 13:50:13 2007 -0500
53544
53545     Added M5329AFEE and M5329BFEE Platforms
53546
53547     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
53548     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
53549     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
53550     rtc/mcfrtc.c
53551
53552     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
53553     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
53554     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
53555     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
53556     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
53557     lib_m68k/time.c, net/eth.c and rtc/Makefile
53558
53559     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
53560
53561 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
53562 Author: Michal Simek <monstr@monstr.eu>
53563 Date:   Sun Jun 17 19:04:11 2007 +0200
53564
53565     [fix] email reparation
53566
53567 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
53568 Author: Michal Simek <monstr@monstr.eu>
53569 Date:   Sun Jun 17 19:03:21 2007 +0200
53570
53571     [FIX] fix microblaze file permitission
53572
53573 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
53574 Author: Stefan Roese <sr@denx.de>
53575 Date:   Fri Jun 15 11:33:41 2007 +0200
53576
53577     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
53578
53579     Now CONFIG_440 has to be defined in all PPC440 board config files.
53580
53581     Signed-off-by: Stefan Roese <sr@denx.de>
53582
53583 commit efa35cf12d914d4caba942acd5a6c45f217de302
53584 Author: Grzegorz Bernacki <gjb@semihalf.com>
53585 Date:   Fri Jun 15 11:19:28 2007 +0200
53586
53587     ppc4xx: Clean up 440 exceptions handling
53588
53589     - Introduced dedicated switches for building 440 and 405 images required
53590       for 440-specific machine instructions like 'rfmci' etc.
53591
53592     - Exception vectors moved to the proper location (_start moved away from
53593       the critical exception handler space, which it occupied)
53594
53595     - CriticalInput now serviced (with default handler)
53596
53597     - MachineCheck properly serviced (added a dedicated handler and return
53598       subroutine)
53599
53600     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
53601       unhandled and those not relevant for 4xx were eliminated)
53602
53603     - Eliminated Linux leftovers, removed dead code
53604
53605     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
53606     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
53607     Signed-off-by: Stefan Roese <sr@denx.de>
53608
53609 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
53610 Author: Stefan Roese <sr@denx.de>
53611 Date:   Fri Jun 15 08:18:01 2007 +0200
53612
53613     [ppc4xx] Add initial lwmon5 board support
53614
53615     This patch adds initial support for the Liebherr lwmon5 board euqipped
53616     with an AMCC 440EPx PowerPC.
53617
53618     Signed-off-by: Stefan Roese <sr@denx.de>
53619
53620 commit 85f737376d5ff3d5f0d45a8b657686326d175307
53621 Author: Stefan Roese <sr@denx.de>
53622 Date:   Fri Jun 15 07:39:43 2007 +0200
53623
53624     [ppc4xx] Extend 44x GPIO setup with default output state
53625
53626     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
53627     is extended with the default GPIO output state (level).
53628
53629     Signed-off-by: Stefan Roese <sr@denx.de>
53630
53631 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
53632 Author: Stefan Roese <sr@denx.de>
53633 Date:   Thu Jun 14 11:14:32 2007 +0200
53634
53635     [ppc4xx] Extend program_tlb() with virtual & physical addresses
53636
53637     Now program_tlb() allows to program a TLB (or multiple) with
53638     different virtual and physical addresses. With this change, now one
53639     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
53640     diabled and once with caches enabled.
53641
53642     Signed-off-by: Stefan Roese <sr@denx.de>
53643
53644 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
53645 Author: Detlev Zundel <dzu@denx.de>
53646 Date:   Wed May 23 19:02:41 2007 +0200
53647
53648     Change 'repeatable' attribute of some commands to sensible values.
53649
53650     Most prominently this changes 'erase' to be non-repeatable.
53651
53652     Signed-off-by: Detlev Zundel <dzu@denx.de>
53653
53654 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
53655 Author: Detlev Zundel <dzu@denx.de>
53656 Date:   Wed May 23 18:47:48 2007 +0200
53657
53658     Fix 'run' not to continue after interrupted command
53659
53660     Signed-off-by: Detlev Zundel <dzu@denx.de>
53661
53662 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
53663 Author: Jason Jin <Jason.jin@freescale.com>
53664 Date:   Mon Jun 11 15:14:24 2007 +0200
53665
53666     USB: This patch fix readl in ohci swap reg access.
53667
53668     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
53669
53670 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
53671 Author: Bartlomiej Sieka <tur@semihalf.com>
53672 Date:   Fri Jun 8 14:52:22 2007 +0200
53673
53674     TQM5200: Add Flat Device Tree support, update default env. accordingly.
53675
53676     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
53677     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53678
53679 commit 9045f33c023f698660a2e45d1b2194c0711abebc
53680 Author: Wolfgang Denk <wd@denx.de>
53681 Date:   Fri Jun 8 10:24:58 2007 +0200
53682
53683     Fix config problems on SC3 board; make ide_reset_timeout work.
53684
53685 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
53686 Author: Benoît Monin <bmonin@adeneo.eu>
53687 Date:   Fri Jun 8 09:55:24 2007 +0200
53688
53689     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
53690
53691     Set the correct value in GPIOx_TCR when configuring the gpio
53692     with CFG_440_GPIO_TABLE.
53693
53694     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
53695     Signed-off-by: Stefan Roese <sr@denx.de>
53696
53697 commit f539edc076cfe52bff919dd512ba8d7af0e22092
53698 Author: Vadim Bendebury <vbendeb@google.com>
53699 Date:   Thu May 24 15:52:25 2007 -0700
53700
53701     cosmetic changes to bcm570x driver
53702
53703     This is a cosmetic only changes submission.
53704     It affects files relevant to bcm570x driver.
53705     the commands used to generate this change was
53706
53707     cd drivers
53708     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
53709
53710     The BMW target (the only one using this chip so far) builds cleanly, the
53711     `before and after' generated object files for drivers/bcm570x.c and
53712     drivers/tigon3.o are identical as reported by objdump -d
53713
53714     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
53715     Signed-off-by: Ben Warren <bwarren@qstreams.com>
53716
53717 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
53718 Author: Wolfgang Denk <wd@denx.de>
53719 Date:   Wed Jun 6 16:26:56 2007 +0200
53720
53721     Coding Style cleanup; generate new CHANGELOG file.
53722
53723     Signed-off-by: Wolfgang Denk <wd@denx.de>
53724
53725 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
53726 Author: Markus Klotzbuecher <mk@denx.de>
53727 Date:   Wed Jun 6 11:49:44 2007 +0200
53728
53729     TRAB, USB: update trab board configuration for use of generic ohci driver
53730
53731 commit dace45acd1c1357daa9322099d07c9a9e08b0024
53732 Author: Markus Klotzbuecher <mk@denx.de>
53733 Date:   Wed Jun 6 11:49:43 2007 +0200
53734
53735     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
53736
53737 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
53738 Author: Markus Klotzbuecher <mk@denx.de>
53739 Date:   Wed Jun 6 11:49:43 2007 +0200
53740
53741     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
53742
53743 commit fc43be478f2aa37ce38acd85355038866e4162af
53744 Author: Markus Klotzbuecher <mk@denx.de>
53745 Date:   Wed Jun 6 11:49:35 2007 +0200
53746
53747     USB/OHCI: endianness cleanup in the generic ohci driver
53748
53749 commit c440bfe6d6d92d66478a7e84402b31f48413617b
53750 Author: Stefan Roese <sr@denx.de>
53751 Date:   Wed Jun 6 11:42:13 2007 +0200
53752
53753     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
53754
53755     This patch adds NAND booting support for the AMCC Acadia eval board.
53756
53757     Please make sure to configure jumper J7 to position 2-3 when booting
53758     from NOR, and to position 1-2 when booting for NAND.
53759
53760     I also added a board command to configure the I2C bootstrap EEPROM
53761     values. Right now only 267MHz is support for booting either via NOR
53762     or NAND FLASH. Here the usage:
53763
53764     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
53765     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
53766
53767     Signed-off-by: Stefan Roese <sr@denx.de>
53768
53769 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
53770 Author: Rodolfo Giometti <giometti@linux.it>
53771 Date:   Wed Jun 6 10:08:14 2007 +0200
53772
53773     Files include/linux/byteorder/{big,little}_endian.h define
53774     __BIG_ENDIAN and __LITTLE_ENDIAN.
53775
53776     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
53777
53778 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
53779 Author: Zhang Wei <wei.zhang@freescale.com>
53780 Date:   Wed Jun 6 10:08:14 2007 +0200
53781
53782     Add USB PCI-OHCI, USB keyboard and event poll support to the
53783     MPC8641HPCN board config file.
53784
53785     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53786
53787 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
53788 Author: Zhang Wei <wei.zhang@freescale.com>
53789 Date:   Wed Jun 6 10:08:14 2007 +0200
53790
53791     USB PCI-OHCI, interrupt pipe and usb event poll support
53792
53793     This patch added USB PCI-OHCI chips support, interrupt pipe support
53794     and usb event poll support. For supporting the USB interrupt pipe, the
53795     globe urb_priv is moved to purb in ed struct. Now, we can process
53796     several urbs at one time. The interrupt pipe support codes are ported
53797     from Linux kernel 2.4.
53798
53799     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53800
53801 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
53802 Author: Zhang Wei <wei.zhang@freescale.com>
53803 Date:   Wed Jun 6 10:08:13 2007 +0200
53804
53805     USB event poll support
53806
53807     This patch adds USB event poll support, which could be used in usbkbd
53808     and other usb devices driver when the asynchronous interrupt
53809     processing is supported.
53810
53811     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
53812
53813 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
53814 Author: Rodolfo Giometti <giometti@linux.it>
53815 Date:   Wed Jun 6 10:08:12 2007 +0200
53816
53817     ISP116x: delay for crappy USB keys
53818
53819     Using some (very) slow USB keys cause the USB host controller buffers
53820     are not ready to be read by the CPU so we need an extra delay before
53821     reading the USB storage data.
53822
53823     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
53824
53825 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
53826 Author: Markus Klotzbuecher <mk@denx.de>
53827 Date:   Wed Jun 6 10:08:12 2007 +0200
53828
53829     Change duplicate usb_cpu_init_fail to usb_board_init_fail
53830
53831     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
53832     this out.
53833
53834     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53835
53836 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
53837 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
53838 Date:   Tue Jun 5 12:30:52 2007 -0500
53839
53840     mpc8641 image size cleanup
53841
53842     e600 does not have a bootpg restriction.
53843     Move the version string to beginning of image at fff00000.
53844     Resetvec.S is not needed.
53845     Update flash copy instructions.
53846     Add tftpflash env variable
53847
53848     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
53849     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53850
53851 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
53852 Author: Benoît Monin <bmonin@adeneo.eu>
53853 Date:   Mon Jun 4 08:36:05 2007 +0200
53854
53855     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
53856
53857     The attached patch is mainly cosmetic, allowing u-boot to
53858     display the correct bootstrap option letter according to the
53859     datasheets.
53860
53861     The original patch was extended with 405EZ support by Stefan
53862     Roese.
53863
53864     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
53865     Signed-off-by: Stefan Roese <sr@denx.de>
53866
53867 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
53868 Author: Nikita V. Youshchenko <yoush@debian.org>
53869 Date:   Wed May 23 12:45:19 2007 +0400
53870
53871     fix compilation problem for mpc8349itx CFG_RAMBOOT
53872
53873     Current include/configs/MPC8349ITX.h does contain some support for building
53874     image that will be started from memory (without putting in into flash).
53875     It could be triggered by building with TEXT_BASE set to a low value.
53876
53877     However, this support is incomplete: using of low TEXT_BASE causes
53878     defining configuration macros in inconsistent way, which later leads
53879     to compilation errors. In particular. flash support is being disabled,
53880     but then flash structures get referenced.
53881
53882     This patch fixes this, making it possible to build with low TEXT_BASE.
53883
53884     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
53885
53886     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53887
53888 commit 8a364f0970de49949d635e60accf463c6443ef8c
53889 Author: Nikita V. Youshchenko <yoush@debian.org>
53890 Date:   Wed May 23 12:45:25 2007 +0400
53891
53892     add missing 'console' var to default mpc8349itx config
53893
53894     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53895
53896 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
53897 Author: Stefan Roese <sr@denx.de>
53898 Date:   Fri Jun 1 16:18:17 2007 +0200
53899
53900     ppc4xx: Add missing file for Bamboo NAND booting support
53901
53902     Signed-off-by: Stefan Roese <sr@denx.de>
53903
53904 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
53905 Author: Stefan Roese <sr@denx.de>
53906 Date:   Fri Jun 1 15:58:19 2007 +0200
53907
53908     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
53909
53910     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
53911     suggested by AMCC it is not recommended to dynamically change the EBC
53912     speed after bootup. So we undo this change to be on the safe side.
53913
53914     Signed-off-by: Stefan Roese <sr@denx.de>
53915
53916 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
53917 Author: Stefan Roese <sr@denx.de>
53918 Date:   Fri Jun 1 15:29:04 2007 +0200
53919
53920     ppc4xx: Update Sequoia NAND booting support with ECC
53921
53922     Signed-off-by: Stefan Roese <sr@denx.de>
53923
53924 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
53925 Author: Stefan Roese <sr@denx.de>
53926 Date:   Fri Jun 1 15:27:11 2007 +0200
53927
53928     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
53929
53930     This patch adds NAND booting support for the AMCC Bamboo eval board.
53931     Since the NAND-SPL boot image is limited to 4kbytes, this version
53932     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
53933     supported, since the setup code for I2C DIMM autodetection and
53934     configuration is too big for this NAND bootloader.
53935
53936     Signed-off-by: Stefan Roese <sr@denx.de>
53937
53938 commit 42be56f53c8b107868e6125c8524ae84293e95a7
53939 Author: Stefan Roese <sr@denx.de>
53940 Date:   Fri Jun 1 15:23:04 2007 +0200
53941
53942     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
53943
53944     The U-Boot NAND booting support is now extended to support ECC
53945     upon loading of the NAND U-Boot image.
53946
53947     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
53948
53949     Signed-off-by: Stefan Roese <sr@denx.de>
53950
53951 commit a471db07fbb65a841ffc9f4f112562b945230f98
53952 Author: Stefan Roese <sr@denx.de>
53953 Date:   Fri Jun 1 15:19:29 2007 +0200
53954
53955     ppc4xx: Prepare Bamboo port for NAND booting support
53956
53957     This patch updates the "normal" Bamboo NOR booting port, so
53958     that it is compatible with the coming soon NAND booting
53959     Bamboo port.
53960
53961     It also enables the 2nd NAND flash on the Bamboo.
53962
53963     Signed-off-by: Stefan Roese <sr@denx.de>
53964
53965 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
53966 Author: Stefan Roese <sr@denx.de>
53967 Date:   Fri Jun 1 15:16:58 2007 +0200
53968
53969     ppc4xx: Update in_be32() functions and friends to latest Linux version
53970
53971     Signed-off-by: Stefan Roese <sr@denx.de>
53972
53973 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
53974 Author: Stefan Roese <sr@denx.de>
53975 Date:   Fri Jun 1 15:15:12 2007 +0200
53976
53977     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
53978
53979     This patch adds hardware ECC support to the NDFC driver. It also
53980     changes the register access from using the "simple" in32/out32
53981     functions to the in_be32/out_be32 functions, which make sure
53982     that the access is correctly synced. This is the only recommended
53983     access to SoC registers in the current Linux kernel.
53984
53985     Signed-off-by: Stefan Roese <sr@denx.de>
53986
53987 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
53988 Author: Stefan Roese <sr@denx.de>
53989 Date:   Fri Jun 1 15:12:15 2007 +0200
53990
53991     NAND: Update nand_ecc.c to latest Linux version
53992
53993     This patch updates the nand_ecc code to the latest Linux version.
53994     The main reason for this is the more compact code. This makes
53995     it possible to include the ECC code into the NAND bootloader
53996     image (NAND_SPL) for PPC4xx.
53997
53998     Signed-off-by: Stefan Roese <sr@denx.de>
53999
54000 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
54001 Author: Stefan Roese <sr@denx.de>
54002 Date:   Fri Jun 1 15:09:50 2007 +0200
54003
54004     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
54005
54006     Signed-off-by: Stefan Roese <sr@denx.de>
54007
54008 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
54009 Author: Stefan Roese <sr@denx.de>
54010 Date:   Fri Jun 1 13:45:24 2007 +0200
54011
54012     ppc4xx: Change Luan config file to support ECC
54013
54014     With the updated 44x DDR2 driver the Luan board now supports
54015     ECC generation and checking.
54016
54017     Signed-off-by: Stefan Roese <sr@denx.de>
54018
54019 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
54020 Author: Stefan Roese <sr@denx.de>
54021 Date:   Fri Jun 1 13:45:00 2007 +0200
54022
54023     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
54024
54025     Add config option for 180 degree advance clock control as needed
54026     for the AMCC Luan eval board.
54027
54028     Signed-off-by: Stefan Roese <sr@denx.de>
54029
54030 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
54031 Author: Wolfgang Denk <wd@denx.de>
54032 Date:   Thu May 31 17:20:09 2007 +0200
54033
54034     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
54035
54036     Signed-off-by: Wolfgang Denk <wd@denx.de>
54037
54038 commit 7049288fb1f16f1b317140226cdebd07bd416395
54039 Author: Bartlomiej Sieka <tur@semihalf.com>
54040 Date:   Sun May 27 17:26:46 2007 +0200
54041
54042     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
54043
54044     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54045
54046 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
54047 Author: Bartlomiej Sieka <tur@semihalf.com>
54048 Date:   Sun May 27 17:06:36 2007 +0200
54049
54050     Motion-PRO: Add support for redundant environment.
54051
54052     Enable redundant environment, add a MTD partition for it; also add env.
54053     variable command for passing MTD partitions to the kernel command line.
54054
54055     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
54056     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54057
54058 commit a26eabeec31746f06d309103690892805696e344
54059 Author: Bartlomiej Sieka <tur@semihalf.com>
54060 Date:   Sun May 27 17:05:11 2007 +0200
54061
54062     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
54063
54064     Allow passing longer command line to the kernel - useful especially
54065     for passing MTD partition layout.
54066
54067     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
54068     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54069
54070 commit 9160b96f71483a116de81c68985e8ee306d36764
54071 Author: Bartlomiej Sieka <tur@semihalf.com>
54072 Date:   Sun May 27 17:04:18 2007 +0200
54073
54074     Fix: Add missing NULL termination in strings expanded by macros parser.
54075
54076     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
54077     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54078
54079 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
54080 Author: Bartlomiej Sieka <tur@semihalf.com>
54081 Date:   Sun May 27 17:03:37 2007 +0200
54082
54083     Motion-PRO: Update EEPROM's page write bits and write delay.
54084
54085     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
54086     have a page write capability of two bytes", and "This device offers fast (1ms)
54087     byte write". Add 3ms of extra delay.
54088
54089     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
54090     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54091
54092 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
54093 Author: Bartlomiej Sieka <tur@semihalf.com>
54094 Date:   Sun May 27 16:58:45 2007 +0200
54095
54096     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
54097
54098     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
54099     networking does not function. This commit switches PHY to TX mode by clearing
54100     the FX_SEL bit of Mode Control Register. It also reverses commit
54101     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
54102
54103     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
54104     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54105
54106 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
54107 Author: Bartlomiej Sieka <tur@semihalf.com>
54108 Date:   Sun May 27 16:57:15 2007 +0200
54109
54110     Motion-PRO: Add support for the temperature sensor.
54111
54112     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
54113     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54114
54115 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
54116 Author: Bartlomiej Sieka <tur@semihalf.com>
54117 Date:   Sun May 27 16:55:23 2007 +0200
54118
54119     Motion-PRO: Add displaying of CPLD revision information during boot.
54120
54121     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
54122     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54123
54124 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
54125 Author: Bartlomiej Sieka <tur@semihalf.com>
54126 Date:   Sun May 27 16:53:43 2007 +0200
54127
54128     MPC5xxx: Change names of defines related to IPB and PCI clocks.
54129
54130     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
54131     them does not cause PCI or IPB clocks to run at the specified speed.
54132     Instead, they configure divisors used to calculate said clocks. This
54133     patch renames the defines according to their real function.
54134
54135     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
54136     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54137
54138 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
54139 Author: Bartlomiej Sieka <tur@semihalf.com>
54140 Date:   Sun May 27 16:51:48 2007 +0200
54141
54142     Motion-PRO: Add LED support.
54143
54144     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
54145     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54146     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
54147
54148 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
54149 Author: Ulf Samuelsson <ulf@atmel.com>
54150 Date:   Thu May 24 12:12:47 2007 +0200
54151
54152     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
54153
54154     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
54155     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
54156     Signed-off-by: Stefan Roese <sr@denx.de>
54157
54158 commit d756894722c888d09a9fa1df8323753772d3dcce
54159 Author: Stefan Roese <sr@denx.de>
54160 Date:   Thu May 24 09:49:00 2007 +0200
54161
54162     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
54163
54164     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
54165     fixes a small bug in the 405EZ OCM initialization. Thanks for
54166     spotting.
54167
54168     Signed-off-by: Stefan Roese <sr@denx.de>
54169
54170 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
54171 Author: Stefan Roese <sr@denx.de>
54172 Date:   Thu May 24 08:22:09 2007 +0200
54173
54174     ppc4xx: Update AMCC Acadia support for board revision 1.1
54175
54176     This patch updates the Acadia (405EZ) support for the new 1.1 board
54177     revision. It also adds support for NAND FLASH via the 4xx NDFC.
54178
54179     Please note that the jumper J7 must be in position 2-3 for this
54180     NAND support. Position 1-2 is for NAND booting only. NAND booting
54181     support will follow later.
54182
54183     Signed-off-by: Stefan Roese <sr@denx.de>
54184
54185 commit 822d55365bb557e084d0e33625a6dedcc866110b
54186 Author: Jon Loeliger <jdl@freescale.com>
54187 Date:   Wed May 23 14:09:46 2007 -0500
54188
54189     Add LIST_86xx MAKEALL target for PowerPC builds.
54190
54191     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54192
54193 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
54194 Author: Stefan Roese <sr@denx.de>
54195 Date:   Tue May 22 12:48:09 2007 +0200
54196
54197     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
54198
54199     Signed-off-by: Stefan Roese <sr@denx.de>
54200
54201 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
54202 Author: Stefan Roese <sr@denx.de>
54203 Date:   Tue May 22 12:46:10 2007 +0200
54204
54205     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
54206
54207     This patch adds support for 405 PPC's to the 4xx NAND driver
54208     ndfc.c. This is in preparation for the new AMCC 405EZ.
54209
54210     Signed-off-by: Stefan Roese <sr@denx.de>
54211
54212 commit 10603d76767426be803dadd4fb688b97eb69481c
54213 Author: Stefan Roese <sr@denx.de>
54214 Date:   Mon May 21 07:41:22 2007 +0200
54215
54216     ppc4xx: Fix problem in 405EZ OCM initialization
54217
54218     As spotted by Bruce Adler this patch fixes an initialization problem
54219     for the 405EZ OCM.
54220
54221     Signed-off-by: Stefan Roese <sr@denx.de>
54222
54223 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
54224 Author: Peter Pearse <peter.pearse@arm.com>
54225 Date:   Fri May 18 16:47:03 2007 +0100
54226
54227     Reduce line lengths to 80 characters max.
54228
54229 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
54230 Author: Peter Pearse <peter.pearse@arm.com>
54231 Date:   Fri May 18 14:34:07 2007 +0100
54232
54233     Makefile permissions
54234
54235 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
54236 Author: Peter Pearse <peter.pearse@arm.com>
54237 Date:   Fri May 18 14:33:11 2007 +0100
54238
54239     Makefile permissions
54240
54241 commit 255a3577c848706441daee0174543efe205a77f8
54242 Author: Kim Phillips <kim.phillips@freescale.com>
54243 Date:   Wed May 16 16:52:19 2007 -0500
54244
54245     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
54246
54247     For all practical u-boot purposes, TSECs don't differ throughout the
54248     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
54249
54250     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54251
54252 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
54253 Author: Stefano Babic <sbabic@denx.de>
54254 Date:   Wed May 16 14:49:12 2007 +0200
54255
54256     Fix compile problem cause my Microblaze merge
54257
54258     Signed-off-by: Stefano Babic <sbabic@denx.de>
54259
54260 commit ada4697d0230d6da552867777f98a67ec3ba2579
54261 Author: Jeffrey Mann <mannj@embeddedplanet.com>
54262 Date:   Wed May 16 13:23:10 2007 +0200
54263
54264     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
54265
54266     Because the Sequoia board does not boot with an EBC faster than 66MHz,
54267     the clock divider are changed after the initial boot process.
54268
54269     This allows for maximum clocking speeds  to be achieved on newer boards.
54270     Sequoia boards with 666.66 MHz processors require that the EBC divider
54271     be set to 3 in order to start the initial boot process at a slower EBC
54272     speed. After the initial boot process, the divider can be set back to 2,
54273     which will cause the boards to run at 83.333MHz. This is backward
54274     compatible with boards with 533.33 MHz processors, as these boards will
54275     already be set with an EBC divider of 2.
54276
54277     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
54278
54279 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
54280 Author: Wolfgang Denk <wd@denx.de>
54281 Date:   Wed May 16 01:16:53 2007 +0200
54282
54283     Minor Coding Style cleanup, update CHANGELOG.
54284
54285     Signed-off-by: Wolfgang Denk <wd@denx.de>
54286
54287 commit d62f64cc23a940eafe712c776b3249e4160753d1
54288 Author: Wolfgang Denk <wd@denx.de>
54289 Date:   Wed May 16 00:13:33 2007 +0200
54290
54291     Coding Style Cleanup, new CHANGELOG
54292
54293 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
54294 Author: Wolfgang Denk <wd@denx.de>
54295 Date:   Tue May 15 23:38:05 2007 +0200
54296
54297     Minor coding style cleanup.
54298
54299 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
54300 Author: mushtaq khan <mushtaq_k@procsys.com>
54301 Date:   Fri Apr 20 14:23:02 2007 +0530
54302
54303     Add driver for S-ATA-controller on Intel processors with South
54304     Bridge, ICH-5, ICH-6 and ICH-7.
54305
54306     Implementation:
54307
54308     1. Code is divided in to two files. All functions, which are
54309        controller specific are kept in "drivers/ata_piix.c" file and
54310        functions, which are not controller specific, are kept in
54311        "common/cmd_sata.c" file.
54312
54313     2. Reading and Writing from the S-ATA drive is done using PIO method.
54314
54315     3. Driver can be configured for 48-bit addressing by defining macro
54316        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
54317        addressing.
54318
54319     4. S-ATA read function is hooked to the File system, commands like
54320        ext2ls and ext2load file can be used. This has been tested.
54321
54322     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
54323        controller and identifies the S-ATA drives connected to it.
54324
54325     6. U-Boot command "sata" is added, which is used to read/write, print
54326        partition table and get info about the drives present. This I have
54327        implemented in same way as "ide" command is implemented in U-Boot.
54328
54329     7. This driver is for S-ATA in native mode.
54330
54331     8. This driver does not support the Native command queuing and
54332        Hot-plugging.
54333
54334     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
54335
54336 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
54337 Author: mushtaq khan <mushtaq_k@procsys.com>
54338 Date:   Mon Apr 30 15:57:22 2007 +0530
54339
54340     Fixes bug clearing the bss section for i386
54341
54342     Hi,
54343     There is a bug in the code of clearing the bss section for processor
54344     i386.(File: cpu/i386/start.S)
54345     In the code, bss_start addr (starting addr of bss section) is put into
54346     the register %eax, but the code which clears the bss section refers to
54347     the addr pointed by %edi.
54348
54349     This patch fixes this bug by putting bss_start into %edi register.
54350
54351     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
54352
54353 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
54354 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
54355 Date:   Mon Apr 30 16:47:28 2007 -0500
54356
54357     Add support for BCM5464 Quad Phy
54358
54359     Added support for Broadcom's BCM5464 Quad Phy
54360
54361     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
54362
54363 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
54364 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54365 Date:   Wed May 9 08:10:57 2007 +0800
54366
54367     Search the exception table with linear algorithm
54368
54369     Search the exception table with linear algorithm instead of
54370     bisecting algorithm.
54371     Because the exception table might be unsorted.
54372
54373     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54374
54375 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
54376 Author: Aubrey.Li <aubrey.adi@gmail.com>
54377 Date:   Mon May 14 11:47:35 2007 +0800
54378
54379     Fix compilation issues on MACOSX
54380
54381     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
54382     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
54383
54384 commit 56fd7162985c412317bbf763a225fba23c64fd31
54385 Author: Stephen Williams <steve@icarus.com>
54386 Date:   Tue May 15 07:55:42 2007 -0700
54387
54388     Fix for compile of JSE target
54389
54390     The attached patch fixes the compile of the JSE board in the
54391     denx git as of 14 may 2007. It is an extremely simple patch,
54392     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
54393
54394      Fix to compile JSE against 20070514 git of u-boot
54395
54396 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
54397 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
54398 Date:   Sun May 13 21:01:03 2007 +0900
54399
54400     sh: MS7750SE support.
54401
54402     This adds support for the Hitachi MS7750SE.
54403
54404     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54405
54406 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
54407 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
54408 Date:   Sun May 13 20:58:00 2007 +0900
54409
54410     sh: First support code of SuperH.
54411
54412     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
54413
54414 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
54415 Author: Stefan Roese <sr@denx.de>
54416 Date:   Fri May 11 12:01:49 2007 +0200
54417
54418     ppc4xx: Add mtcpr/mfcpr access macros
54419
54420     Signed-off-by: Stefan Roese <sr@denx.de>
54421
54422 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
54423 Author: Stefan Roese <sr@denx.de>
54424 Date:   Fri May 11 12:01:06 2007 +0200
54425
54426     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
54427
54428     Signed-off-by: Stefan Roese <sr@denx.de>
54429
54430 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
54431 Author: Piotr Kruszynski <ppk@semihalf.com>
54432 Date:   Thu May 10 16:55:52 2007 +0200
54433
54434     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
54435     definition.
54436
54437 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
54438 Author: Peter Pearse <peter.pearse@arm.com>
54439 Date:   Wed May 9 11:42:44 2007 +0100
54440
54441     Add the board directory for SMN42
54442
54443 commit 160131bf965785419626df6c388729fe0b597992
54444 Author: Peter Pearse <peter.pearse@arm.com>
54445 Date:   Wed May 9 11:41:58 2007 +0100
54446
54447     Add the files for the SMN42 board
54448
54449 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
54450 Author: Peter Pearse <peter.pearse@arm.com>
54451 Date:   Wed May 9 11:40:34 2007 +0100
54452
54453     Remove the deleted files for the SMN42 patch
54454
54455 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
54456 Author: Peter Pearse <peter.pearse@arm.com>
54457 Date:   Wed May 9 11:37:56 2007 +0100
54458
54459     New board SMN42 branch
54460
54461 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
54462 Author: Peter Pearse <peter.pearse@arm.com>
54463 Date:   Wed May 9 10:24:38 2007 +0100
54464
54465     Makefile permissions
54466
54467 commit b84289b595731e8851df46e893845cc1322c9b9b
54468 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54469 Date:   Tue May 8 14:17:07 2007 -0500
54470
54471     8641hpcn: Fix Makefile after moving pixis to board/freescale.
54472
54473     The OBJTREE != SRCTREE build scenario was broken.
54474     This fixes it.
54475
54476     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54477     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54478
54479 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
54480 Author: Michal Simek <monstr@monstr.eu>
54481 Date:   Tue May 8 15:57:43 2007 +0200
54482
54483     add: reading special purpose registers
54484
54485 commit 1a50f164beb065f360fbddb76029607d6b099698
54486 Author: Michal Simek <monstr@monstr.eu>
54487 Date:   Tue May 8 14:52:52 2007 +0200
54488
54489     add: Microblaze V5 exception handling
54490
54491 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
54492 Author: Michal Simek <monstr@monstr.eu>
54493 Date:   Tue May 8 14:39:11 2007 +0200
54494
54495     add: FSL control read and write
54496
54497 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
54498 Author: Piotr Kruszynski <ppk@semihalf.com>
54499 Date:   Tue May 8 13:05:44 2007 +0200
54500
54501     [Motion-PRO] Add support for I2C, EEPROM and RTC.
54502
54503 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
54504 Author: Bartlomiej Sieka <tur@semihalf.com>
54505 Date:   Tue May 8 10:23:56 2007 +0200
54506
54507     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
54508     environment.
54509
54510 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
54511 Author: Bartlomiej Sieka <tur@semihalf.com>
54512 Date:   Tue May 8 09:39:12 2007 +0200
54513
54514     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
54515     eliminates networking problems in Linux (timeouts).
54516
54517 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
54518 Author: Bartlomiej Sieka <tur@semihalf.com>
54519 Date:   Tue May 8 09:21:57 2007 +0200
54520
54521     [Motion-PRO] Enable Flat Device Tree support and modify default environment
54522     to allow booting of FDT-expecting kernels.
54523
54524 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
54525 Author: Michal Simek <monstr@monstr.eu>
54526 Date:   Mon May 7 23:58:31 2007 +0200
54527
54528     new: USE_MSR_INTR support
54529
54530 commit 008861a2f3ef2c062744d733787c7e530a1b8761
54531 Author: Bartlomiej Sieka <tur@semihalf.com>
54532 Date:   Mon May 7 22:36:15 2007 +0200
54533
54534     [MPC5xxx] There are networking problems on the Motion-PRO board with
54535     current PHY initalization code (tftp timeouts all the time). This commit
54536     temporarily disables PHY initalization sequence to make the networking
54537     operational, until a fix is found.
54538
54539 commit abca901869c3760b6c5fecb825db6c1d91a78a93
54540 Author: Wolfgang Denk <wd@denx.de>
54541 Date:   Mon May 7 22:10:36 2007 +0200
54542
54543     Get rid of duplicated file (see include/configs/sbc8560.h instead)
54544
54545     Signed-off-by: Wolfgang Denk <wd@denx.de>
54546
54547 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
54548 Author: Wolfgang Denk <wd@denx.de>
54549 Date:   Mon May 7 22:07:08 2007 +0200
54550
54551     Get rid of duplicated file (see doc/README.SBC8560 instead)
54552
54553     Signed-off-by: Wolfgang Denk <wd@denx.de>
54554
54555 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
54556 Author: Michal Simek <monstr@monstr.eu>
54557 Date:   Mon May 7 19:43:10 2007 +0200
54558
54559     fix: read and write MSR - repair number of parameters
54560
54561 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
54562 Author: Jeffrey Mann <mannj@embeddedplanet.com>
54563 Date:   Mon May 7 19:42:49 2007 +0200
54564
54565     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
54566
54567     A '3' got cut off in the formatting of the last patch to automatically
54568     change the clock speed of the system clock on sequoia board.
54569
54570     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
54571     Signed-off-by: Stefan Roese <sr@denx.de>
54572
54573 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
54574 Author: Michal Simek <monstr@monstr.eu>
54575 Date:   Mon May 7 19:33:51 2007 +0200
54576
54577     new: fsl interrupt support
54578     FSL_Has_data is connected to INTC.
54579
54580 commit 792032baa7d625e34c981ab6df521911bd8dc861
54581 Author: Michal Simek <monstr@monstr.eu>
54582 Date:   Mon May 7 19:30:12 2007 +0200
54583
54584     fix: interrupt handler
54585     remove asm code
54586
54587 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
54588 Author: Michal Simek <monstr@monstr.eu>
54589 Date:   Mon May 7 19:25:08 2007 +0200
54590
54591     fix: remove asm code
54592
54593 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
54594 Author: Michal Simek <monstr@monstr.eu>
54595 Date:   Mon May 7 19:12:43 2007 +0200
54596
54597     fix: clean interrupt
54598
54599 commit 42efed6130c8fcf7da881385b5427065d2801757
54600 Author: Michal Simek <monstr@monstr.eu>
54601 Date:   Mon May 7 17:22:25 2007 +0200
54602
54603     fix: interrupt handler for multiple sources
54604
54605 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
54606 Author: Michal Simek <monstr@monstr.eu>
54607 Date:   Mon May 7 17:11:09 2007 +0200
54608
54609     new: add writing to msr register
54610
54611 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
54612 Author: Markus Klotzbuecher <mk@denx.de>
54613 Date:   Mon May 7 16:43:56 2007 +0200
54614
54615     Fix an ancient CHANGELOG conflict
54616
54617 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
54618 Author: Timur Tabi <timur@freescale.com>
54619 Date:   Sat May 5 08:12:30 2007 +0200
54620
54621     5xxx: write MAC address to mac-address and local-mac-address
54622
54623     Some device trees have a mac-address property, some have local-mac-address,
54624     and some have both.  To support all of these device trees, ftp_cpu_setup()
54625     should write the MAC address to mac-address and local-mac-address, if they
54626     exist.
54627
54628     Signed-off-by: Timur Tabi <timur@freescale.com>
54629     Acked-by: Grant Likely <grant.likely@secretlab.ca>
54630
54631 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
54632 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54633 Date:   Sun Apr 29 14:01:54 2007 +0200
54634
54635     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
54636
54637     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
54638     message. Use PVR to distinguish between the two variants, and print proper CPU
54639     information.
54640
54641     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54642     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54643     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54644
54645 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
54646 Author: Ladislav Michl <ladis@linux-mips.org>
54647 Date:   Wed Apr 25 16:01:26 2007 +0200
54648
54649     [PATCH] simplify silent console
54650
54651     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
54652     Acked-by: Stefan Roese <sr@denx.de>
54653
54654 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
54655 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54656 Date:   Mon Apr 23 15:30:39 2007 +0200
54657
54658     [PATCH] Avoid assigning PCI resources from zero address
54659
54660     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
54661     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
54662     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
54663     sentence about "0" being considered an invalid address) -- so, use a reasonable
54664     starting value of 0x1000 (that's what the most Linux archs are using).
54665
54666     Alternatively, one might have fixed the calls to pci_set_region() individually
54667     (some code even seems to have taken care of this issue) but that would have
54668     been a lot more work. :-)
54669
54670     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54671     Acked-by: Stefan Roese <sr@denx.de>
54672
54673 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
54674 Author: Jeffrey Mann <mannj@embeddedplanet.com>
54675 Date:   Mon Apr 23 14:00:11 2007 +0200
54676
54677     [patch] setenv(...) can delete environmentalvariables
54678
54679     update setenv() function so that entering a NULL value for the
54680     variable's value will delete the environmental variable
54681
54682     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
54683     Acked-by: Stefan Roese <sr@denx.de>
54684
54685 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
54686 Author: Mike Frysinger <vapier@gentoo.org>
54687 Date:   Mon Apr 23 13:54:24 2007 +0200
54688
54689     [patch] use unsigned char in smc91111 driver for mac
54690
54691     the v_mac variable in the smc91111 driver is declared as a signed char ...
54692     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
54693     because when it gets printed out, you get a display like:
54694     0xFFFFFFE0 and that's no good
54695
54696     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54697
54698 commit ffc50f9bb194343c6303517a517708457a5eb6b8
54699 Author: Michal Simek <monstr@monstr.eu>
54700 Date:   Sat May 5 18:54:42 2007 +0200
54701
54702     new: FSL and MSR support #2
54703
54704 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
54705 Author: Michal Simek <monstr@monstr.eu>
54706 Date:   Sat May 5 18:27:16 2007 +0200
54707
54708     new: FSL and MSR support
54709
54710 commit 2f15278c2eb911c668b4fe562130b78cf554d139
54711 Author: Wolfgang Denk <wd@denx.de>
54712 Date:   Sat May 5 18:23:11 2007 +0200
54713
54714     Coding stylke cleanup; update CHANGELOG.
54715
54716     Signed-off-by: Wolfgang Denk <wd@denx.de>
54717
54718 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
54719 Author: Wolfgang Denk <wd@denx.de>
54720 Date:   Sat May 5 18:05:02 2007 +0200
54721
54722     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
54723
54724     Signed-off-by: Wolfgang Denk <wd@denx.de>
54725
54726 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
54727 Author: Wolfgang Denk <wd@denx.de>
54728 Date:   Sat May 5 17:15:50 2007 +0200
54729
54730     Make "file" command happy with some config.mk files; update CHANGELOG
54731
54732 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
54733 Author: Jeffrey Mann <mannj@embeddedplanet.com>
54734 Date:   Sat May 5 08:32:14 2007 +0200
54735
54736     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
54737
54738     The AMCC Secquoia board has been changed in a new revision from using a
54739     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
54740     indicates the difference. This patch reads that bit and uses the correct
54741     clock speed for the board. This code is backward compatable will all
54742     prior boards. All prior boards will be read as 33.000.
54743
54744     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
54745     Signed-off-by: Stefan Roese <sr@denx.de>
54746
54747 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
54748 Author: Stefan Roese <sr@denx.de>
54749 Date:   Sat May 5 08:29:01 2007 +0200
54750
54751     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
54752
54753     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
54754     for the 4k NAND boot image so define bus_frequency to 133MHz here
54755     which is save for the refresh counter setup.
54756
54757     Signed-off-by: Stefan Roese <sr@denx.de>
54758
54759 commit 2f550ab976405300f5b07bf2890800840d0aa05f
54760 Author: Timur Tabi <timur@freescale.com>
54761 Date:   Sat May 5 08:12:30 2007 +0200
54762
54763     5xxx: write MAC address to mac-address and local-mac-address
54764
54765     Some device trees have a mac-address property, some have local-mac-address,
54766     and some have both.  To support all of these device trees, ftp_cpu_setup()
54767     should write the MAC address to mac-address and local-mac-address, if they
54768     exist.
54769
54770     Signed-off-by: Timur Tabi <timur@freescale.com>
54771     Acked-by: Grant Likely <grant.likely@secretlab.ca>
54772
54773 commit a79886590593ba1d667c840caa4940c61639f18f
54774 Author: Thomas Knobloch <knobloch@siemens.com>
54775 Date:   Sat May 5 07:04:42 2007 +0200
54776
54777     NAND: Wrong calculation of page number in nand_block_bad()
54778
54779     In case that there is no memory based bad block table available the
54780     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
54781     nand_block_bad() directly. When parameter 'getchip' is set to zero,
54782     nand_block_bad() will not right shift the offset to calculate the
54783     correct page number.
54784
54785     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
54786     Signed-off-by: Stefan Roese <sr@denx.de>
54787
54788 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
54789 Author: Wolfgang Denk <wd@denx.de>
54790 Date:   Fri May 4 10:02:33 2007 +0200
54791
54792     Fix initrd length corruption in bootm command.
54793
54794     When using FDT Images, the length of an inital ramdisk was
54795     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
54796
54797     Patches by Timur Tabi & Johns Daniel.
54798
54799     Signed-off-by: Wolfgang Denk <wd@denx.de>
54800
54801 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
54802 Author: Kim Phillips <kim.phillips@freescale.com>
54803 Date:   Thu May 3 19:43:52 2007 -0500
54804
54805     mpc83xx: fix trivial error in MAKEALL
54806
54807     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54808
54809 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
54810 Author: Wolfgang Denk <wd@denx.de>
54811 Date:   Thu May 3 16:34:41 2007 +0200
54812
54813     Update board configuration for STX GP3SSA board:
54814
54815     Enable hush shell, environment in flash rather in EEPROM,
54816     more user-friendly default environment, etc.
54817     The simple EEPROM environment can be selected easily in the board
54818     config file.
54819
54820     Signed-off-by: Wolfgang Denk <wd@denx.de>
54821
54822 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
54823 Author: Wolfgang Denk <wd@denx.de>
54824 Date:   Tue Apr 24 14:37:49 2007 +0200
54825
54826     Cleanup STX GP3SSA code; fix build and compile problems.
54827
54828 commit 35171dc04e028ecacc23ad916a66295472555dbf
54829 Author: Dan Malek <dan@embeddedalley.com>
54830 Date:   Fri Jan 5 09:15:34 2007 +0100
54831
54832     Add support for STX GP3SSA (stxssa) Board
54833
54834     Signed-off-by Dan Malek, <dan@embeddedalley.com>
54835
54836 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
54837 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54838 Date:   Wed May 2 13:31:53 2007 +0200
54839
54840     macb: Don't restart autonegotiation if we already have link
54841
54842     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
54843     link is already up.
54844
54845     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54846
54847 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
54848 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54849 Date:   Wed May 2 13:22:38 2007 +0200
54850
54851     macb: Introduce a few barriers when dealing with DMA descriptors
54852
54853     There were a few theoretical possibilities that the compiler might
54854     optimize away DMA descriptor reads and/or writes and thus cause
54855     synchronization problems with the hardware. Insert barriers where
54856     we depend on reads/writes actually hitting memory.
54857
54858     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54859
54860 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
54861 Author: Andy Fleming <afleming@freescale.com>
54862 Date:   Sat Feb 24 01:08:13 2007 -0600
54863
54864     Cleaned up some 85xx PCI bugs
54865
54866     * Cleaned up the CDS PCI Config Tables and added NULL entries to
54867       the end
54868     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
54869     * Fixed 85xx PCI code to assign powar region sizes based on the
54870       config values (rather than hard-coding them)
54871     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
54872
54873     Signed-off-by: Andy Fleming <afleming@freescale.com>
54874
54875 commit 6743105988fc44d5b0d30388c790607835aae7a6
54876 Author: Andy Fleming <afleming@freescale.com>
54877 Date:   Mon Apr 23 02:54:25 2007 -0500
54878
54879     Add support for the 8568 MDS board
54880
54881     This included some changes to common files:
54882     * Add 8568 processor SVR to various places
54883     * Add support for setting the qe bus-frequency value in the dts
54884     * Add the 8568MDS target to the Makefile
54885
54886     Signed-off-by: Andy Fleming <afleming@freescale.com>
54887
54888 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
54889 Author: David Updegraff <dave@cray.com>
54890 Date:   Fri Apr 20 14:34:48 2007 -0500
54891
54892     Add support for treating unknown PHYs as generic PHYs.
54893
54894     When bringing up u-boot on new boards, PHY support sometimes gets
54895     neglected.  Most PHYs don't really need any special support,
54896     though.  By adding a generic entry that always matches if nothing
54897     else does, we can provide support for "unsupported" PHYs for the
54898     tsec.
54899
54900     The generic PHY driver supports most PHYs, including gigabit.
54901
54902     Signed-off-by: David Updegraff <dave@cray.com>
54903     Signed-off-by: Andy Fleming <afleming@freescale.com>
54904
54905 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
54906 Author: James Yang <James.Yang@freescale.com>
54907 Date:   Wed Feb 7 15:28:04 2007 -0600
54908
54909     Conditionalize 8641 Rev1.0 MCM workarounds
54910
54911     Signed-off-by: James Yang <James.Yang@freescale.com>
54912     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54913
54914 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
54915 Author: Timur Tabi <timur@freescale.com>
54916 Date:   Mon Apr 30 13:59:50 2007 -0500
54917
54918     Fix memory initialization on MPC8349E-mITX
54919
54920     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
54921     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
54922     on some ITX boards, notably those with a revision 3.1 CPU.
54923
54924     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
54925     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
54926
54927     Signed-off-by: Timur Tabi <timur@freescale.com>
54928     Acked-by: Michael Benedict <MBenedict@twacs.com>
54929     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54930
54931 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
54932 Author: Kim Phillips <kim.phillips@freescale.com>
54933 Date:   Mon Apr 30 15:26:21 2007 -0500
54934
54935     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
54936
54937     and fix CPU: to align with Board: display text.
54938
54939     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54940
54941 commit c1ab82669d9525998c34e802a12cad662723f22a
54942 Author: James Yang <James.Yang@freescale.com>
54943 Date:   Fri Mar 16 13:02:53 2007 -0500
54944
54945     Rewrote picos_to_clk() to avoid rounding errors.
54946     Clarified that conversion is to DRAM clocks rather than platform clocks.
54947     Made function static to spd_sdram.c.
54948
54949     Signed-off-by: James Yang <James.Yang@freescale.com>
54950     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54951
54952 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
54953 Author: Stefan Roese <sr@denx.de>
54954 Date:   Sun Apr 29 14:13:01 2007 +0200
54955
54956     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
54957
54958     Signed-off-by: Stefan Roese <sr@denx.de>
54959
54960 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
54961 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54962 Date:   Sun Apr 29 14:01:54 2007 +0200
54963
54964     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
54965
54966     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
54967     message. Use PVR to distinguish between the two variants, and print proper CPU
54968     information.
54969
54970     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54971     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54972     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54973
54974 commit 5c5d3242935cf3543af01142627494434834cf98
54975 Author: Kim Phillips <kim.phillips@freescale.com>
54976 Date:   Wed Apr 25 12:34:38 2007 -0500
54977
54978     mpc83xx: minor fixups for 8313rdb introduction
54979
54980 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
54981 Author: Ladislav Michl <ladis@linux-mips.org>
54982 Date:   Wed Apr 25 16:01:26 2007 +0200
54983
54984     [PATCH] simplify silent console
54985
54986     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
54987     Acked-by: Stefan Roese <sr@denx.de>
54988
54989 commit 144876a380f5756f57412caf74c1d6dc201dd796
54990 Author: Michal Simek <monstr@monstr.eu>
54991 Date:   Tue Apr 24 23:01:02 2007 +0200
54992
54993     [PATCH] MTD partition support, JFFS2 support
54994
54995 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
54996 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54997 Date:   Tue Apr 24 14:03:45 2007 +0200
54998
54999     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
55000
55001     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55002
55003 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
55004 Author: Andy Fleming <afleming@freescale.com>
55005 Date:   Mon Apr 23 02:37:47 2007 -0500
55006
55007     Reworked 85xx speed detection code
55008
55009     Changed the code to read the registers and calculate the clock
55010     rates, rather than using a "switch" statement.
55011
55012     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
55013
55014     Signed-off-by: Andy Fleming <afleming@freescale.com>
55015
55016 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
55017 Author: Andy Fleming <afleming@freescale.com>
55018 Date:   Mon Apr 23 02:24:28 2007 -0500
55019
55020     Enable 8544 support
55021
55022     * Add support to the Makefile
55023     * Add 8544 configuration support to the tsec driver
55024     * Add 8544 SVR numbers to processor.h
55025
55026     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55027     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55028
55029 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
55030 Author: Andy Fleming <afleming@freescale.com>
55031 Date:   Fri Feb 23 17:12:25 2007 -0600
55032
55033     Support 1G size on 8548
55034
55035     e500v2 and newer cores support 1G page sizes.
55036
55037     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55038     Signed-off-by: Andy Fleming <afleming@freescale.com>
55039
55040 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
55041 Author: Andy Fleming <afleming@freescale.com>
55042 Date:   Fri Feb 23 17:11:16 2007 -0600
55043
55044     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
55045
55046     The other pagesz constants use one letter to specify order of
55047     magnitude.  Also change the one reference to it in mpc8548cds/init.S
55048
55049     Signed-off-by: Andy Fleming <afleming@freescale.com>
55050
55051 commit 1f9a318cea14272edd10d63739e2d326c90f430e
55052 Author: Andy Fleming <afleming@freescale.com>
55053 Date:   Fri Feb 23 16:28:46 2007 -0600
55054
55055     Only set ddrioovcr for 8548 rev1.
55056
55057     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55058     Signed-off-by: Andy Fleming <afleming@freescale.com>
55059
55060 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
55061 Author: Andy Fleming <afleming@freescale.com>
55062 Date:   Sat Feb 24 01:16:45 2007 -0600
55063
55064     Tweak DDR ECC error counter
55065
55066     Enable single-bit error counter when memory was cleared by ddr controller.
55067
55068     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55069     Signed-off-by: Andy Fleming <afleming@freescale.com>
55070
55071 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
55072 Author: Timur Tabi <timur@freescale.com>
55073 Date:   Mon Feb 12 13:34:55 2007 -0600
55074
55075     85xx: write MAC address to mac-address and local-mac-address
55076
55077     Some device trees have a mac-address property, some have local-mac-address,
55078     and some have both.  To support all of these device trees, ftp_cpu_setup()
55079     should write the MAC address to mac-address and local-mac-address, if they
55080     exist.
55081
55082     Signed-off-by: Timur Tabi <timur@freescale.com>
55083
55084 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
55085 Author: Andy Fleming <afleming@freescale.com>
55086 Date:   Mon Apr 23 01:44:44 2007 -0500
55087
55088     Some 85xx cpu cleanups
55089
55090     * Cleaned up the TSR[WIS] clearing
55091     * Cleaned up DMA initialization
55092
55093     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55094     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55095     Acked-by: Andy Fleming <afleming@freescale.com>
55096
55097 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
55098 Author: Andy Fleming <afleming@freescale.com>
55099 Date:   Mon Apr 23 01:32:22 2007 -0500
55100
55101     Add cpu support for the 8544
55102
55103     Recognize new SVR values, and add a few register definitions
55104
55105     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55106     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55107     Acked-by: Andy Fleming <afleming@freescale.com>
55108
55109 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
55110 Author: Jon Loeliger <jdl@freescale.com>
55111 Date:   Wed Apr 11 16:51:02 2007 -0500
55112
55113     Add MPC8544DS basic port board files.
55114
55115     Add board port under new board/freescale directory
55116     structure and reuse existing PIXIS FPGA support there.
55117
55118     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55119     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55120
55121 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
55122 Author: Jon Loeliger <jdl@freescale.com>
55123 Date:   Wed Apr 11 16:50:57 2007 -0500
55124
55125     Add MPC8544DS main configuration file.
55126
55127     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55128     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55129
55130 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
55131 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
55132 Date:   Wed Dec 27 22:07:15 2006 +0300
55133
55134     Fix PCI I/O space mapping on Freescale MPC85x0ADS
55135
55136     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
55137     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
55138     describing the local address window used for the PCI I/O space accesses -- fix
55139     this and carry over the necessary changes into the MPC8560ADS code since the
55140     PCI I/O space mapping was also broken for this board (by the earlier commit
55141     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
55142     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
55143
55144     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
55145
55146      board/mpc8540ads/init.S      |    4 ++--
55147      board/mpc8560ads/init.S      |    4 ++--
55148      include/configs/MPC8540ADS.h |    5 ++---
55149      include/configs/MPC8541CDS.h |    2 +-
55150      include/configs/MPC8548CDS.h |    2 +-
55151      include/configs/MPC8560ADS.h |    8 ++++----
55152      6 files changed, 12 insertions(+), 13 deletions(-)
55153
55154 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
55155 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
55156 Date:   Tue Dec 5 16:42:30 2006 +0800
55157
55158     u-boot: Fix e500 v2 core reset bug
55159
55160     The following patch fixes the e500 v2 core reset bug.
55161     For e500 v2 core, a new reset control register is added to reset the
55162     processor.
55163
55164     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
55165
55166 commit 63247a5acd58032e6cf33f525bc3923b467bac88
55167 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
55168 Date:   Wed Dec 20 11:01:00 2006 +0800
55169
55170     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
55171
55172     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
55173     entry number to control the loop.  This can reduce the potential risk
55174     for the 85xx processor increasing its TLB adn LAW entry number.
55175
55176     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
55177     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
55178
55179 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
55180 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
55181 Date:   Mon Dec 18 17:01:04 2006 +0800
55182
55183     u-boot: Fix the 85xxcds tsec bug
55184
55185     Fix the 85xxcds tsec bug.
55186     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
55187
55188     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
55189
55190 commit 7337b237ffc4aaf1b9467024fe472a880d852598
55191 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
55192 Date:   Fri Dec 15 14:43:31 2006 +0800
55193
55194     u-boot: Fix CPU2 errata on MPC8548CDS board
55195
55196     This patch apply workaround of CPU2 errata on MPC8548CDS board.
55197
55198     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
55199
55200 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
55201 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
55202 Date:   Mon Dec 18 16:25:15 2006 +0800
55203
55204     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
55205
55206     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
55207
55208     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
55209
55210 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
55211 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
55212 Date:   Thu Dec 14 14:14:55 2006 +0800
55213
55214     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
55215
55216     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
55217     board.
55218     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
55219
55220 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
55221 Author: Scott Wood <scottwood@freescale.com>
55222 Date:   Mon Apr 16 14:54:15 2007 -0500
55223
55224     mpc83xx: Add MPC8313ERDB support.
55225
55226     Signed-off-by: Scott Wood <scottwood@freescale.com>
55227
55228 commit 49ea3b6eafe606285ae4d5c378026153dde53200
55229 Author: Scott Wood <scottwood@freescale.com>
55230 Date:   Mon Apr 16 14:34:21 2007 -0500
55231
55232     mpc83xx: Add generic PCI setup code.
55233
55234     Board code can now request the generic setup code rather than having to
55235     copy-and-paste it for themselves.  Boards should be converted to use this
55236     once they're tested with it.
55237
55238     Signed-off-by: Scott Wood <scottwood@freescale.com>
55239
55240 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
55241 Author: Scott Wood <scottwood@freescale.com>
55242 Date:   Mon Apr 16 14:34:19 2007 -0500
55243
55244     mpc83xx: Add 831x support to speed.c.
55245
55246     Signed-off-by: Scott Wood <scottwood@freescale.com>
55247
55248 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
55249 Author: Scott Wood <scottwood@freescale.com>
55250 Date:   Mon Apr 16 14:34:18 2007 -0500
55251
55252     mpc83xx: Add 831x support to global_data.h
55253
55254     Signed-off-by: Scott Wood <scottwood@freescale.com>
55255
55256 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
55257 Author: Scott Wood <scottwood@freescale.com>
55258 Date:   Mon Apr 16 14:34:16 2007 -0500
55259
55260     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
55261
55262     Rather than misleadingly define PVR_83xx as the specific type of 83xx
55263     being built for, the PVR of each core revision is defined. checkcpu() now
55264     prints the core that it detects, rather than aborting if it doesn't find
55265     what it thinks it wants.
55266
55267     Signed-off-by: Scott Wood <scottwood@freescale.com>
55268
55269 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
55270 Author: Scott Wood <scottwood@freescale.com>
55271 Date:   Mon Apr 16 14:34:15 2007 -0500
55272
55273     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
55274
55275     Signed-off-by: Scott Wood <scottwood@freescale.com>
55276
55277 commit d87c57b201b4572d16f1b642998faa00c9912b16
55278 Author: Scott Wood <scottwood@freescale.com>
55279 Date:   Mon Apr 16 14:31:55 2007 -0500
55280
55281     mpc83xx: Add register definitions for MPC831x.
55282
55283     Signed-off-by: Scott Wood <scottwood@freescale.com>
55284
55285 commit 7fc4c71a143be8666d70803fb25ae60379c95622
55286 Author: Stefan Roese <sr@denx.de>
55287 Date:   Mon Apr 23 15:39:59 2007 +0200
55288
55289     Fix file mode
55290
55291     Signed-off-by: Stefan Roese <sr@denx.de>
55292
55293 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
55294 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
55295 Date:   Mon Apr 23 15:30:39 2007 +0200
55296
55297     [PATCH] Avoid assigning PCI resources from zero address
55298
55299     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
55300     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
55301     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
55302     sentence about "0" being considered an invalid address) -- so, use a reasonable
55303     starting value of 0x1000 (that's what the most Linux archs are using).
55304
55305     Alternatively, one might have fixed the calls to pci_set_region() individually
55306     (some code even seems to have taken care of this issue) but that would have
55307     been a lot more work. :-)
55308
55309     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
55310     Acked-by: Stefan Roese <sr@denx.de>
55311
55312 commit afb903a2eb9436baa9270ccc0c27082d86497d89
55313 Author: Jeffrey Mann <mannj@embeddedplanet.com>
55314 Date:   Mon Apr 23 14:00:11 2007 +0200
55315
55316     [patch] setenv(...) can delete environmentalvariables
55317
55318     update setenv() function so that entering a NULL value for the
55319     variable's value will delete the environmental variable
55320
55321     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
55322     Acked-by: Stefan Roese <sr@denx.de>
55323
55324 commit 36f104e5caa747d568eff26b369565af57c2ffa6
55325 Author: Mike Frysinger <vapier@gentoo.org>
55326 Date:   Mon Apr 23 13:54:24 2007 +0200
55327
55328     [patch] use unsigned char in smc91111 driver for mac
55329
55330     the v_mac variable in the smc91111 driver is declared as a signed char ...
55331     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
55332     because when it gets printed out, you get a display like:
55333     0xFFFFFFE0 and that's no good
55334
55335     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55336
55337 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
55338 Author: Rodolfo Giometti <giometti@enneenne.com>
55339 Date:   Mon Apr 23 13:10:52 2007 +0200
55340
55341     USB: (Another) delay for crappy USB keys.
55342
55343     Some USB keys are slow in giving back an answer when the Root HUB
55344     enables power lines.
55345
55346     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
55347
55348 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
55349 Author: Stefan Roese <sr@denx.de>
55350 Date:   Mon Apr 23 12:00:22 2007 +0200
55351
55352     Remove BOARDLIBS usage completely
55353
55354     Signed-off-by: Stefan Roese <sr@denx.de>
55355
55356 commit 32556443840f127170e4baa8bdd5b567039f6c36
55357 Author: Michal Simek <monstr@monstr.eu>
55358 Date:   Sat Apr 21 21:07:22 2007 +0200
55359
55360     [PATCH] SystemACE support for Microblaze
55361
55362 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
55363 Author: Michal Simek <monstr@monstr.eu>
55364 Date:   Sat Apr 21 21:02:40 2007 +0200
55365
55366     16bit read/write little endian
55367
55368 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
55369 Author: Michal Simek <monstr@monstr.eu>
55370 Date:   Sat Apr 21 20:53:31 2007 +0200
55371
55372     Change ML401 parameters - Xilinx BSP
55373
55374 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
55375 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55376 Date:   Wed Feb 28 05:37:29 2007 -0600
55377
55378     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
55379
55380     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55381
55382 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
55383 Author: Zhang Wei <wei.zhang@freescale.com>
55384 Date:   Fri Jan 19 10:42:37 2007 +0800
55385
55386     Enable LAWs for MPC8641 PCI-Ex2.
55387
55388     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
55389     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55390
55391 commit bd7851ce1e1f140665b520026abf1042968b1102
55392 Author: Jon Loeliger <jdl@freescale.com>
55393 Date:   Fri Apr 20 14:12:26 2007 -0500
55394
55395     mpc86xx; Write MAC address to mac-address and local-mac-address
55396
55397     Some device trees have a mac-address property, some have local-mac-address,
55398     and some have both.  To support all of these device trees, ftp_cpu_setup()
55399     should write the MAC address to mac-address and local-mac-address, if they
55400     exist.
55401
55402     Signed-off-by: Timur Tabi <timur@freescale.com>
55403     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55404
55405 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
55406 Author: Jon Loeliger <jdl@freescale.com>
55407 Date:   Fri Apr 20 14:11:38 2007 -0500
55408
55409     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
55410
55411     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55412     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55413
55414 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
55415 Author: Wolfgang Denk <wd@denx.de>
55416 Date:   Fri Apr 20 17:43:28 2007 +0200
55417
55418     Cleanup compiler warnings, update CHANGELOG
55419
55420     Signed-off-by: Wolfgang Denk <wd@denx.de>
55421
55422 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
55423 Author: Detlev Zundel <dzu@denx.de>
55424 Date:   Fri Apr 20 12:01:47 2007 +0200
55425
55426     Fix breakage of NC650 board with respect to nand support.
55427
55428     Signed-off-by: Detlev Zundel <dzu@denx.de>
55429
55430 commit 39f23cd90947639ac278a18ff277ec786b5ac167
55431 Author: Domen Puncer <domen.puncer@telargo.com>
55432 Date:   Fri Apr 20 11:13:16 2007 +0200
55433
55434     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
55435
55436     G2 core reference manual says decrementer and time base
55437     are decreasing/increasing once every 4 bus clock cycles.
55438     Lets fix it, so time in Linux won't run twice as fast
55439
55440     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
55441     Acked-by: Grant Likely <grant.likely@secretlab.ca>
55442
55443 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
55444 Author: Gerald Van Baren <vanbaren@cideas.com>
55445 Date:   Thu Apr 19 23:14:39 2007 -0400
55446
55447     Fix serious pointer bug with bootm and reserve map.
55448
55449     What was suppose to be a stack variable was declared as a pointer,
55450       overwriting random memory.
55451     Also moved the libfdt.a requirement into the main Makefile.  That is
55452       The U-Boot Way.
55453
55454 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
55455 Author: Stefan Roese <sr@denx.de>
55456 Date:   Thu Apr 19 09:53:52 2007 +0200
55457
55458     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
55459
55460     Previous versions used full wait states for the chip select #1 which
55461     is connected to the Xilinix SystemACE controller on the AMCC Katmai
55462     evaluation board. This leads to really slow access and therefore low
55463     performance. This patch now sets up the chip select a lot faster
55464     resulting in much better read/write performance of the Linux driver.
55465
55466     Signed-off-by: Stefan Roese <sr@denx.de>
55467
55468 commit 37837828d89084879bee2f2b8c7c68d4695940df
55469 Author: Wolfgang Denk <wd@denx.de>
55470 Date:   Wed Apr 18 17:49:29 2007 +0200
55471
55472     Clenaup, update CHANGELOG
55473
55474     Signed-off-by: Wolfgang Denk <wd@denx.de>
55475
55476 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
55477 Author: Wolfgang Denk <wd@denx.de>
55478 Date:   Wed Apr 18 17:20:58 2007 +0200
55479
55480     Update CHANGELOG
55481
55482     Signed-off-by: Wolfgang Denk <wd@denx.de>
55483
55484 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
55485 Author: Wolfgang Denk <wd@denx.de>
55486 Date:   Wed Apr 18 17:07:26 2007 +0200
55487
55488     Cleanup, update CHANGELOG
55489
55490     Sigend-off-by: Wolfgang Denk <wd@denx.de>
55491
55492 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
55493 Author: Wolfgang Denk <wd@denx.de>
55494 Date:   Wed Apr 18 16:17:46 2007 +0200
55495
55496     Update CHANGELOG
55497
55498 commit ad4eb555671d97f96dc56eab55103b1f86874b01
55499 Author: Wolfgang Denk <wd@denx.de>
55500 Date:   Wed Apr 18 14:30:39 2007 +0200
55501
55502     MCC200 board: remove warning which is obsolete after PSoC firmware changes
55503
55504     Signed-off-by: Wolfgang Denk <wd@denx.de>
55505
55506 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
55507 Author: Domen Puncer <domen.puncer@telargo.com>
55508 Date:   Wed Apr 18 12:11:05 2007 +0200
55509
55510     [PATCH] icecube/lite5200b: document wakeup from low-power support
55511
55512     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
55513
55514 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
55515 Author: Stefan Roese <sr@denx.de>
55516 Date:   Wed Apr 18 12:07:47 2007 +0200
55517
55518     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
55519
55520     Signed-off-by: Stefan Roese <sr@denx.de>
55521
55522 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
55523 Author: Stefan Roese <sr@denx.de>
55524 Date:   Wed Apr 18 12:05:59 2007 +0200
55525
55526     ppc4xx: Add output for bootrom location to 405EZ ports
55527
55528     Now 405EZ ports also show upon bootup from which boot device
55529     they are configured to boot:
55530
55531     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
55532
55533     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
55534            Bootstrap Option E - Boot ROM Location EBC (32 bits)
55535            16 kB I-Cache 16 kB D-Cache
55536     Board: Acadia - AMCC PPC405EZ Evaluation Board
55537
55538     Signed-off-by: Stefan Roese <sr@denx.de>
55539
55540 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
55541 Author: Peter Pearse <peter.pearse@arm.com>
55542 Date:   Tue Apr 17 13:30:33 2007 +0100
55543
55544     Move ppearse to ARM board list
55545     Add Konstantin Kletschke for scb9328.
55546     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
55547
55548 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
55549 Author: Domen Puncer <domen.puncer@telargo.com>
55550 Date:   Mon Apr 16 14:00:13 2007 +0200
55551
55552     [PATCH] icecube/lite5200b: wakeup from low-power support
55553
55554     U-Boot part of Lite5200b low power mode support.
55555     Puts SDRAM out of self-refresh and transfers control to
55556     address saved at physical 0x0.
55557
55558     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
55559     Acked-by: Grant Likely <grant.likely@secretlab.ca>
55560
55561 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
55562 Author: Gerald Van Baren <vanbaren@cideas.com>
55563 Date:   Sun Apr 15 13:54:26 2007 -0400
55564
55565     Fix the ft_cpu_setup() property settings.
55566
55567     Use "setter" functions instead of flags, cleaner and more flexible.
55568     It also fixes the problem noted by Timur Tabi that the ethernet MAC
55569     addresses were all being set incorrectly to the same MAC address.
55570
55571 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
55572 Author: Gerald Van Baren <vanbaren@cideas.com>
55573 Date:   Sat Apr 14 22:51:24 2007 -0400
55574
55575     Improve the bootm command for CONFIG_OF_LIBFDT
55576
55577     In bootm, create the "/chosen" node only if it doesn't already exist
55578       (better matches the previous behavior).
55579     Update for proper reserved memory map handling for initrd.
55580
55581 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
55582 Author: Gerald Van Baren <vanbaren@cideas.com>
55583 Date:   Sat Apr 14 22:46:41 2007 -0400
55584
55585     Add some utilities to manipulate the reserved memory map.
55586
55587 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
55588 Author: Wolfgang Denk <wd@denx.de>
55589 Date:   Sat Apr 14 21:16:54 2007 +0200
55590
55591     Update CHANGELOG
55592
55593 commit 8e6875183cdca91c134408d119d4abcd48ef6856
55594 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55595 Date:   Sun Dec 17 18:56:46 2006 +0100
55596
55597     AVR32: Enable MMC support
55598
55599     Set up the portmux for the MMC interface and enable the MMC driver
55600     along with support for DOS partitions, ext2 and FAT filesystems.
55601
55602     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55603
55604 commit fc26c97bb6df41b4a95662c34054fe912387bf38
55605 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55606 Date:   Fri Jan 20 10:03:53 2006 +0100
55607
55608     Atmel MCI driver
55609
55610     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
55611
55612     The AT91 ARM-based CPUs use basically the same hardware, so it should
55613     be possible to share this driver, but no effort has been made so far.
55614
55615     Hardware documentation can be found in the AT32AP7000 data sheet,
55616     which can be downloaded from
55617
55618     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
55619
55620     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55621
55622 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
55623 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55624 Date:   Sun Dec 17 18:55:37 2006 +0100
55625
55626     AVR32: Add clk and gpio infrastructure for mmci
55627
55628     Implement functions for configuring the mmci pins, as well as
55629     functions for getting the clock rate of the mmci controller.
55630
55631     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55632
55633 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
55634 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55635 Date:   Sun Dec 17 18:53:56 2006 +0100
55636
55637     Enable partition support with MMC
55638
55639     Include implementations of init_part() and get_partition_info() when
55640     CONFIG_MMC is set.
55641
55642     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55643
55644 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
55645 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55646 Date:   Sun Dec 17 17:14:30 2006 +0100
55647
55648     AVR32: Enable networking
55649
55650     Implement MACB initialization for AVR32 and ATSTK1000, and turn
55651     everything on, including the MACB driver.
55652
55653     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55654
55655 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
55656 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55657 Date:   Fri Jan 20 10:03:34 2006 +0100
55658
55659     Atmel MACB ethernet driver
55660
55661     Driver for the Atmel MACB on-chip ethernet controller.
55662
55663     This driver has been tested on the ATSTK1000 board with a AT32AP7000
55664     CPU. It should probably work on AT91SAM926x as well with some minor
55665     modifications.
55666
55667     Hardware documentation can be found in the AT32AP7000 data sheet,
55668     which can be downloaded from
55669
55670     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
55671
55672     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55673
55674 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
55675 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55676 Date:   Sun Dec 17 16:56:14 2006 +0100
55677
55678     AVR32: Add clk and gpio infrastructure for macb0 and macb1
55679
55680     Implement functions for configuring the macb0 and macb1 pins, as
55681     well as functions for getting the clock rate of the various
55682     busses the macb ethernet controllers are connected to.
55683
55684     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55685
55686 commit d5acb95b16a0a74c643524342c3437e765426d05
55687 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55688 Date:   Sun Dec 17 15:39:15 2006 +0100
55689
55690     AVR32: Implement simple DMA memory allocator
55691
55692     Implement dma_alloc_coherent() which returns cache-aligned
55693     uncacheable memory.
55694
55695     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55696
55697 commit 91975b0fea773c9e681fea8cf3349669f27685ee
55698 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55699 Date:   Sun Dec 17 15:46:02 2006 +0100
55700
55701     Import <linux/mii.h> from the Linux kernel
55702
55703     Instead of creating yet another set of MII register definitions
55704     in the macb driver, here's a complete set of definitions for everyone
55705     to use.
55706
55707     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55708
55709 commit 1b804b229556a4d862da93c0ec94e79419364b2c
55710 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55711 Date:   Wed Mar 21 19:47:36 2007 +0100
55712
55713     AVR32: Include more commands for ATSTK1000
55714
55715     Include the imi, imls and jffs commands sets by default on ATSTK1000.
55716     Also define CONFIG_BOOTARGS to something more useful, define
55717     CONFIG_BOOTCOMMAND and enable autoboot by default.
55718
55719     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55720
55721 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
55722 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55723 Date:   Wed Mar 21 19:44:48 2007 +0100
55724
55725     AVR32: Provide a definition of struct stat
55726
55727     Copy the definition of struct stat from the Linux kernel.
55728
55729     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55730
55731 commit 12f099c08167a7a51aeee623bc16dafd0841271c
55732 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55733 Date:   Sun Dec 17 14:46:06 2006 +0100
55734
55735     AVR32: Use initdram() instead of board_init_memories()
55736
55737     Conform to the "standard" interface and use initdram() instead of
55738     board_init_memories() on AVR32. This enables us to get rid of the
55739     sdram_size member of the global_data struct as well.
55740
55741     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55742
55743 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
55744 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55745 Date:   Mon Nov 20 15:53:10 2006 +0100
55746
55747     AVR32: Relocate u-boot to SDRAM
55748
55749     Relocate the u-boot image into SDRAM like everyone else does. This
55750     means that we can handle much larger .data and .bss than we used to.
55751
55752     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55753
55754 commit df548d3c3e2bbc40258713167859ffc2ce99a900
55755 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55756 Date:   Sun Nov 19 18:06:53 2006 +0100
55757
55758     AVR32: Resource management rewrite
55759
55760     Rewrite the resource management code (i.e. I/O memory, clock gating,
55761     gpio) so it doesn't depend on any global state. This is necessary
55762     because this code is heavily used before relocation to RAM, so we
55763     can't write to any global variables.
55764
55765     As an added bonus, this makes u-boot's memory footprint a bit smaller,
55766     although some functionality has been left out; all clocks are enabled
55767     all the time, and there's no checking for gpio line conflicts.
55768
55769     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55770
55771 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
55772 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55773 Date:   Sat Nov 18 18:01:13 2006 +0100
55774
55775     AVR32: Clean up memory-map.h for at32ap7000
55776
55777     Convert spaces to tabs (must have missed this one last time around),
55778     sort the entries by address and group them together by bus
55779     connectivity.
55780
55781     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55782
55783 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
55784 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55785 Date:   Sat Nov 18 17:32:31 2006 +0100
55786
55787     AVR32: Build position-independent u-boot
55788
55789     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
55790     position independent. This will make relocation a lot easier.
55791
55792     -mno-init-got means that gcc shouldn't emit code to load the GOT
55793     address into r6 in every function prologue. We do it once and for
55794     all in the early startup assembly code, so enabling this option
55795     makes u-boot a bit faster and smaller.
55796
55797     The assembly parts have always been position-independent, so no code
55798     changes should be necessary.
55799
55800     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55801
55802 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
55803 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55804 Date:   Sat Nov 18 17:24:31 2006 +0100
55805
55806     AVR32: Use avr32-linux- cross-compilation prefix by default
55807
55808     It doesn't really matter which toolchain you use to compile u-boot,
55809     but the avr32-linux one is probably what most people have installed.
55810
55811     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55812
55813 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
55814 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55815 Date:   Sat Nov 18 17:15:30 2006 +0100
55816
55817     AVR32: Split start_u_boot into board_init_f and board_init_r
55818
55819     Split the avr32 initialization code into a function to run before
55820     relocation, board_init_f and a function to run after relocation,
55821     board_init_r. For now, board_init_f simply calls board_init_r
55822     at the end.
55823
55824     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55825
55826 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
55827 Author: Heiko Schocher <hs@pollux.denx.de>
55828 Date:   Sat Apr 14 05:26:48 2007 +0200
55829
55830     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
55831             clear the Display after reset.
55832
55833     Signed-off-by: Heiko Schocher <hs@denx.de>
55834
55835 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
55836 Author: Denis Peter <d.peter@mpl.ch>
55837 Date:   Fri Apr 13 09:13:33 2007 +0200
55838
55839     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
55840
55841     Fix bug introduced by "Fix get_partition_info() parameter error in all
55842     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
55843     to use diskboot or scsiboot form another device than 0.
55844
55845     Signed-off-by: Denis Peter <d.peter@mpl.ch>
55846
55847 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
55848 Author: Greg Lopp <lopp@pobox.com>
55849 Date:   Fri Apr 13 08:02:24 2007 +0200
55850
55851     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
55852
55853     Signed-of-by: Greg Lopp <lopp@pobox.com>
55854     Acked-by: Grant Likely <grant.likely@secretlab.ca>
55855
55856 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
55857 Author: Xie Xiaobo <r63061@freescale.com>
55858 Date:   Fri Mar 9 19:08:25 2007 +0800
55859
55860     Fix two bugs for MPC83xx DDR2 controller SPD Init
55861
55862     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
55863     the first bug is that the picos_to_clk routine introduces a huge
55864     rounding error in 83xx.
55865     the second bug is that the mode register write recovery field is
55866     tWR-1, not tWR >> 1.
55867
55868 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
55869 Author: Jeffrey Mann <mannj@embeddedplanet.com>
55870 Date:   Thu Apr 12 14:15:59 2007 +0200
55871
55872     ppc4xx: Fix i2c divisor calcularion for PPC4xx
55873
55874     This patch fixes changes the i2c_init(...) function to use the function
55875     get_OPB_freq() rather than calculating the OPB speed by
55876     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
55877     specific per processor. The prior method was not and so was calculating
55878     the wrong speed for some PPC4xx processors.
55879
55880     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
55881     Signed-off-by: Stefan Roese <sr@denx.de>
55882
55883 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
55884 Author: Wolfgang Denk <wd@denx.de>
55885 Date:   Wed Apr 11 17:25:01 2007 +0200
55886
55887     Update CHANGELOG
55888
55889     Signed-off-by: Wolfgang Denk <wd@denx.de>
55890
55891 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
55892 Author: Wolfgang Denk <wd@denx.de>
55893 Date:   Wed Apr 11 17:22:55 2007 +0200
55894
55895     Update for SC3 board
55896
55897     * Make IDE timeout configurable through ide_reset_timeout variable.
55898     * Use Newline as "password" string
55899     * Use just a single partition in NAND flash
55900
55901 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
55902 Author: Haiying Wang <haiying.wang@freescale.com>
55903 Date:   Mon Jan 22 12:37:30 2007 -0600
55904
55905     Add PIXIS FPGA support for MPC8641HPCN board.
55906
55907     Move the 8641HPCN's PIXIS code to the new directory
55908     board/freescale/common/ as it will be shared by
55909     future boards not in the same processor family.
55910
55911     Write a "pixis_reset" command that utilizes the FPGA
55912     reset sequencer to support alternate soft-reset options
55913     such as using the "alternate" flash bank, enabling
55914     the watch dog, or choosing different CPU frequencies.
55915
55916     Add documentation for the pixis_reset to README.mpc8641hpcn.
55917
55918     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
55919     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55920
55921 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
55922 Author: Gerald Van Baren <vanbaren@cideas.com>
55923 Date:   Fri Apr 6 14:19:43 2007 -0400
55924
55925     Moved fdt command support code to fdt_support.c
55926
55927     ...in preparation for improving the bootm command's handling of fdt blobs.
55928     Also cleaned up some coding sloppiness.
55929
55930 commit 6679f9299534e488a171a9bb8f9bb891de247aab
55931 Author: Gerald Van Baren <vanbaren@cideas.com>
55932 Date:   Fri Apr 6 14:17:14 2007 -0400
55933
55934     libfdt: Make fdt_check_header() public
55935
55936     Changed _fdt_check_header() to fdt_check_header() and made it part of
55937     the interface - it is a useful routine.
55938
55939     Also did some asthetics cleanup to the include files (headers).
55940
55941 commit c0707ce65677650b5ceab0500ee50ae5168afef2
55942 Author: Aubrey Li <aubrey.adi@gmail.com>
55943 Date:   Thu Apr 5 18:34:06 2007 +0800
55944
55945     [Blackfin][PATCH] Kill off a bunch of common local prototypes
55946
55947 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
55948 Author: Aubrey Li <aubrey.adi@gmail.com>
55949 Date:   Thu Apr 5 18:33:04 2007 +0800
55950
55951     [Blackfin][PATCH] Fix dynamic CPLB generation issue
55952
55953 commit 0445e3a264251d75b1be45ef713c70726a2952f0
55954 Author: Aubrey Li <aubrey.adi@gmail.com>
55955 Date:   Thu Apr 5 18:31:47 2007 +0800
55956
55957     [Blackfin][PATCH] minior cleanup
55958
55959 commit 155fd766573981090e638b493d5857562151862e
55960 Author: Aubrey Li <aubrey.adi@gmail.com>
55961 Date:   Thu Apr 5 18:31:18 2007 +0800
55962
55963     [Blackfin][PATCH] Fix copyright and update license
55964
55965 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
55966 Author: Aubrey Li <aubrey.adi@gmail.com>
55967 Date:   Thu Apr 5 18:30:25 2007 +0800
55968
55969     [Blackfin][PATCH] Add BF537 EMAC driver initialization
55970
55971 commit 889256e8604e0c68db1d866d720894dffede9df6
55972 Author: Aubrey Li <aubrey.adi@gmail.com>
55973 Date:   Thu Apr 5 18:29:55 2007 +0800
55974
55975     [Blackfin][PATCH] call real the system synchronize instruction
55976
55977 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
55978 Author: Aubrey Li <aubrey.adi@gmail.com>
55979 Date:   Thu Apr 5 18:29:17 2007 +0800
55980
55981     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
55982
55983 commit dfeeab2cd680df047e68e723b246adf6f33bb556
55984 Author: Aubrey Li <aubrey.adi@gmail.com>
55985 Date:   Thu Apr 5 18:28:34 2007 +0800
55986
55987     [Blackfin][PATCH]: fix flash unaligned copy issue
55988
55989 commit 443feb740584e406efa203af909fe2926608e8d5
55990 Author: Igor Marnat <marny@rambler.ru>
55991 Date:   Wed Mar 21 09:55:01 2007 +0300
55992
55993     Update usage of 'nc' in README.NetConsole
55994
55995     Added information about usage of NetConsole on systems where the -l and -p
55996     switches are mutually exclusive.
55997
55998     Signed-off-by: Igor Marnat <marny@rambler.ru>
55999     Signed-off-by: Ben Warren <bwarren@qstreams.com>
56000
56001 commit 31c98a88228021b314c89ebb8104fb6473da4471
56002 Author: Wolfgang Denk <wd@denx.de>
56003 Date:   Wed Apr 4 02:09:30 2007 +0200
56004
56005     Minor coding style cleanup.
56006
56007 commit 94abd7c0583ebe01e799b25f451201deeaab550d
56008 Author: Wolfgang Denk <wd@denx.de>
56009 Date:   Wed Apr 4 01:49:15 2007 +0200
56010
56011     Minor cleanup.
56012
56013 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
56014 Author: Rodolfo Giometti <giometti@enneenne.com>
56015 Date:   Tue Apr 3 14:27:18 2007 +0200
56016
56017     Support for the Philips ISP116x HCD (Host Controller Driver)
56018
56019     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
56020
56021 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
56022 Author: Markus Klotzbuecher <mk@denx.de>
56023 Date:   Tue Apr 3 14:27:08 2007 +0200
56024
56025     USB: cleanup monahans usb support. Remove dead code.
56026
56027     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56028
56029 commit a65c5768e5537530bd1780af3d3fddc3113a163c
56030 Author: Stefan Roese <sr@denx.de>
56031 Date:   Mon Apr 2 10:09:30 2007 +0200
56032
56033     ppc4xx: Change SysACE address on Katmai
56034
56035     With this new base address of the Xilinx SystemACE controller
56036     the Linux driver will be easier to adapt, since it can now be
56037     mapped via the "normal" ioremap() call.
56038
56039     Signed-off-by: Stefan Roese <sr@denx.de>
56040
56041 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
56042 Author: Gerald Van Baren <vanbaren@cideas.com>
56043 Date:   Sat Mar 31 14:30:53 2007 -0400
56044
56045     Fix some minor whitespace violations.
56046
56047 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
56048 Author: Gerald Van Baren <vanbaren@cideas.com>
56049 Date:   Sat Mar 31 12:23:51 2007 -0400
56050
56051     Add a flattened device tree (fdt) command (2 of 2)
56052
56053     Modifications to the existing code to support the new fdt command.
56054
56055 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
56056 Author: Gerald Van Baren <vanbaren@cideas.com>
56057 Date:   Sat Mar 31 12:22:10 2007 -0400
56058
56059     Add a flattened device tree (fdt) command (1 of 2)
56060
56061     The fdt command uses David Gibson's libfdt library to manipulate as well
56062     as print the flattened device tree.  This patch is the new command,
56063     the second part is the modifications to the existing code.
56064
56065 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
56066 Author: Gerald Van Baren <vanbaren@cideas.com>
56067 Date:   Sat Mar 31 12:13:43 2007 -0400
56068
56069     libfdt: Enhanced and published fdt_next_tag()
56070
56071     Enhanced the formerly private function _fdt_next_tag() to allow stepping
56072       through the tree, used to produce a human-readable dump, and made
56073       it part of the published interface.
56074     Also added some comments.
56075
56076 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
56077 Author: Gerald Van Baren <vanbaren@cideas.com>
56078 Date:   Sat Mar 31 12:05:39 2007 -0400
56079
56080     libfdt: Customizations for use by u-boot.
56081
56082     Changes to David Gibson's original source to fit into u-boot's
56083     environment.  No functionality changes.
56084
56085 commit 35748177c64a4a83a00057e93bb33e40278a2a96
56086 Author: Gerald Van Baren <vanbaren@cideas.com>
56087 Date:   Sat Mar 31 12:00:56 2007 -0400
56088
56089     libfdt: Import libfdt source (2 of 2)
56090
56091     This adds the applicable libfdt source files (unmodified) and a README
56092     to explain where the source came from.
56093
56094 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
56095 Author: Gerald Van Baren <vanbaren@cideas.com>
56096 Date:   Sat Mar 31 11:59:59 2007 -0400
56097
56098     libfdt: Import libfdt source (1 of 2)
56099
56100     This adds the applicable libfdt source files (unmodified) and a README
56101     to explain where the source came from.
56102
56103 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
56104 Author: Stefan Roese <sr@denx.de>
56105 Date:   Sat Mar 31 13:16:23 2007 +0200
56106
56107     ppc4xx: Update Katmai bootstrap command
56108
56109     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
56110     is selected.
56111
56112     Signed-off-by: Stefan Roese <sr@denx.de>
56113
56114 commit cabee756a6532986729477c3cc1ea16ef8517ad2
56115 Author: Stefan Roese <sr@denx.de>
56116 Date:   Sat Mar 31 13:15:06 2007 +0200
56117
56118     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
56119
56120     Additional RAM information is now printed upon powerup, like
56121     DDR2 frequency and CAS latency.
56122
56123     Signed-off-by: Stefan Roese <sr@denx.de>
56124
56125 commit 60723803431ac75cad085690789e433d5ab9174e
56126 Author: Stefan Roese <sr@denx.de>
56127 Date:   Sat Mar 31 08:48:36 2007 +0200
56128
56129     ppc4xx: Change Yucca config file to support ECC
56130
56131     With the updated 44x DDR2 driver the Yucca board now supports
56132     ECC generation and checking.
56133
56134     Signed-off-by: Stefan Roese <sr@denx.de>
56135
56136 commit 490e5730c674b20d708b783a2c5ffd7208f83873
56137 Author: Stefan Roese <sr@denx.de>
56138 Date:   Sat Mar 31 08:47:34 2007 +0200
56139
56140     ppc4xx: Fix "bootstrap" command for Katmai board
56141
56142     The board specific "bootstrap" command is now fixed and can
56143     be used for the AMCC Katmai board to configure different
56144     CPU/PLB/OPB frequencies.
56145
56146     Signed-off-by: Stefan Roese <sr@denx.de>
56147
56148 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
56149 Author: Stefan Roese <sr@denx.de>
56150 Date:   Sat Mar 31 08:46:08 2007 +0200
56151
56152     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
56153
56154     Fix a bug in the auto calibration routine. This driver now runs
56155     more reliable with the tested modules. It's also tested with
56156     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
56157
56158     Signed-off-by: Stefan Roese <sr@denx.de>
56159
56160 commit 342cd097be1e7affe82f42ab3da220959a699e64
56161 Author: Michal Simek <monstr@monstr.eu>
56162 Date:   Fri Mar 30 22:52:09 2007 +0200
56163
56164     [PATCH] Clean include dependence
56165
56166 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
56167 Author: Michal Simek <monstr@monstr.eu>
56168 Date:   Fri Mar 30 22:42:45 2007 +0200
56169
56170     [CLEAN] Remove inefficient Suzaku code
56171
56172 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
56173 Author: Stefan Roese <sr@denx.de>
56174 Date:   Wed Mar 28 15:03:16 2007 +0200
56175
56176     Merge some AMCC make targets to keep the top-level Makefile smaller
56177
56178     Signed-off-by: Stefan Roese <sr@denx.de>
56179
56180 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
56181 Author: Stefan Roese <sr@denx.de>
56182 Date:   Wed Mar 28 14:52:12 2007 +0200
56183
56184     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
56185
56186     The "old" i2c commands (iprobe, imd...) are now compiled in again,
56187     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
56188     config option.
56189
56190     Signed-off-by: Stefan Roese <sr@denx.de>
56191
56192 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
56193 Author: Michal Simek <monstr@monstr.eu>
56194 Date:   Tue Mar 27 00:32:16 2007 +0200
56195
56196     PATCH: Resolve GPL license problem
56197
56198 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
56199 Author: Rodolfo Giometti <giometti@enneenne.com>
56200 Date:   Mon Mar 26 12:03:36 2007 +0200
56201
56202     PXA: pxa27x USB OHCI support
56203
56204     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
56205
56206 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
56207 Author: Markus Klotzbuecher <mk@denx.de>
56208 Date:   Mon Mar 26 11:21:05 2007 +0200
56209
56210     USB: remove the S3C24X0_merge #define, which was introduced while
56211     merging OHCI drivers.
56212
56213     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56214
56215 commit 1798049522f594013aea29457d46794298c6ae15
56216 Author: Michal Simek <root@monstr.eu>
56217 Date:   Mon Mar 26 01:39:07 2007 +0200
56218
56219     Support for XUPV2P board
56220     Reset support
56221     BSP autoconfig support
56222
56223 commit 0d974d5297349504a2ddfa09314be573b5df320a
56224 Author: Stefan Roese <sr@denx.de>
56225 Date:   Sat Mar 24 15:57:09 2007 +0100
56226
56227     [PATCH] Add 4xx GPIO functions
56228
56229     This patch adds some 4xx GPIO functions. It also moves some of the
56230     common code and defines into a common 4xx GPIO header file.
56231
56232     Signed-off-by: Stefan Roese <sr@denx.de>
56233
56234 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
56235 Author: Stefan Roese <sr@denx.de>
56236 Date:   Sat Mar 24 15:55:58 2007 +0100
56237
56238     [PATCH] Small Sequoia cleanup
56239
56240     Signed-off-by: Stefan Roese <sr@denx.de>
56241
56242 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
56243 Author: Stefan Roese <sr@denx.de>
56244 Date:   Sat Mar 24 15:45:34 2007 +0100
56245
56246     [PATCH] Clean up 40EZ/Acadia support
56247
56248     This patch cleans up all the open issue of the preliminary
56249     Acadia support.
56250
56251     Signed-off-by: Stefan Roese <sr@denx.de>
56252
56253 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
56254 Author: Jon Loeliger <jdl@freescale.com>
56255 Date:   Tue Dec 12 11:02:20 2006 -0600
56256
56257     Fix 8641HPCN problem with ld version 2.16
56258
56259     (Dot outside sections problem).
56260
56261     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
56262
56263     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56264
56265 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
56266 Author: Haiying Wang <haiying.wang@freescale.com>
56267 Date:   Thu Dec 7 10:35:55 2006 -0600
56268
56269     Set Rev 2.x 86xx PIC in mixed mode.
56270
56271     Prevent false interrupt from hanging Linux as MSR[EE] is set
56272     to enable interrupts by changing the PIC out of the default
56273     pass through mode into mixed mode.
56274
56275     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
56276     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56277
56278 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
56279 Author: Jason Jin <jason.jin@freescale.com>
56280 Date:   Thu Dec 7 10:32:35 2006 -0600
56281
56282     Add flash cmd function to 8641HPCN ramboot
56283
56284     Also fixes some commmand for 8641 HPCN ramboot case.
56285
56286     Signed-off-by: Jason Jin <jason.jin@freescale.com>
56287     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56288
56289 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
56290 Author: Ed Swarthout <ed.swarthout@freescale.com>
56291 Date:   Thu Dec 7 10:34:14 2006 -0600
56292
56293     Add support for 8641 Rev 2 silicon.
56294
56295     Without this patch, I am unable to get to the prompt on rev 2 silicon.
56296     Only set ddrioovcr for rev1.
56297
56298     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
56299     Signed-off-by: Jon Loeliger <jdl@freescale.com>
56300
56301 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
56302 Author: Wolfgang Denk <wd@denx.de>
56303 Date:   Thu Mar 22 00:13:12 2007 +0100
56304
56305     Code cleanup / re-insert previous Copyright entries.
56306
56307     Signed-off-by: Wolfgang Denk <wd@denx.de>
56308
56309 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
56310 Author: Wolfgang Denk <wd@denx.de>
56311 Date:   Wed Mar 21 23:26:15 2007 +0100
56312
56313     Code cleanup. Update CHANGELOG
56314
56315 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
56316 Author: Stefan Roese <sr@denx.de>
56317 Date:   Wed Mar 21 14:54:29 2007 +0100
56318
56319     ppc4xx: Fix file mode of include/configs/acadia.h
56320
56321     Signed-off-by: Stefan Roese <sr@denx.de>
56322
56323 commit d5f4614c9350d9333e575100fb250aab774d0258
56324 Author: Markus Klotzbuecher <mk@denx.de>
56325 Date:   Wed Mar 21 14:41:46 2007 +0100
56326
56327     SPC1920: fix small clock routing bug
56328
56329     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
56330
56331 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
56332 Author: Stefan Roese <sr@denx.de>
56333 Date:   Wed Mar 21 13:39:57 2007 +0100
56334
56335     [PATCH] Add AMCC Acadia (405EZ) eval board support
56336
56337     This patch adds support for the new AMCC Acadia eval board.
56338
56339     Please note that this Acadia/405EZ support is still in a beta stage.
56340     Still lot's of cleanup needed but we need a preliminary release now.
56341
56342     Signed-off-by: Stefan Roese <sr@denx.de>
56343
56344 commit e01bd218b00af73499331a1a701625a852cd286f
56345 Author: Stefan Roese <sr@denx.de>
56346 Date:   Wed Mar 21 13:38:59 2007 +0100
56347
56348     [PATCH] Add AMCC PPC405EZ support
56349
56350     This patch adds support for the new AMCC 405EZ PPC. It is in
56351     preparation for the AMCC Acadia board support.
56352
56353     Please note that this Acadia/405EZ support is still in a beta stage.
56354     Still lot's of cleanup needed but we need a preliminary release now.
56355
56356     Signed-off-by: Stefan Roese <sr@denx.de>
56357
56358 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
56359 Author: Heiko Schocher <hs@pollux.denx.de>
56360 Date:   Wed Mar 21 08:45:17 2007 +0100
56361
56362     [PATCH] TQM8272: dont change the bits given from the HRCW
56363                      for the SIUMCR and BCR Register.
56364                      Fix the calculation for the EEprom Size
56365
56366     Signed-off-by: Heiko Schocher <hs@denx.de>
56367
56368 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
56369 Author: Aubrey Li <aubrey.adi@gmail.com>
56370 Date:   Tue Mar 20 18:16:24 2007 +0800
56371
56372     [Blackfin][PATCH] Add BF561 EZKIT board support
56373
56374 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
56375 Author: Aubrey Li <aubrey.adi@gmail.com>
56376 Date:   Mon Mar 19 22:55:58 2007 +0800
56377
56378     [Blackfin][PATCH] minor cleanup
56379
56380 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
56381 Author: Wolfgang Denk <wd@denx.de>
56382 Date:   Mon Mar 19 13:10:08 2007 +0100
56383
56384     Remove obsoleted POST files.
56385
56386     Signed-off-by: Wolfgang Denk <wd@denx.de>
56387
56388 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
56389 Author: Aubrey Li <aubrey.adi@gmail.com>
56390 Date:   Mon Mar 19 01:26:11 2007 +0800
56391
56392     [PATCH] Add flash chip M29W320ET/B support
56393
56394 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
56395 Author: Aubrey Li <aubrey.adi@gmail.com>
56396 Date:   Mon Mar 19 01:24:52 2007 +0800
56397
56398     [Blackfin][PATCH] Add BF537 stamp board support
56399
56400 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
56401 Author: Stefan Roese <sr@denx.de>
56402 Date:   Fri Mar 16 21:11:42 2007 +0100
56403
56404     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
56405
56406     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
56407     DDR memory are dynamically programmed matching the total size
56408     of the equipped memory (DIMM modules).
56409
56410     Signed-off-by: Stefan Roese <sr@denx.de>
56411
56412 commit 76d1466f918b881cda2d259254761e73885093c2
56413 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56414 Date:   Tue Mar 13 13:38:05 2007 +0100
56415
56416     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
56417             boards in terms of unification.
56418
56419     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56420
56421 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
56422 Author: Wolfgang Denk <wd@denx.de>
56423 Date:   Tue Mar 13 16:05:55 2007 +0100
56424
56425     Make SC3 board build with 'make O='; use 'addcons' consistently
56426     (SC3 and Jupiter used to use 'addcon' instead).
56427
56428     Signed-off-by: Wolfgang Denk wd@denx.de
56429
56430 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
56431 Author: Heiko Schocher <hs@pollux.denx.de>
56432 Date:   Tue Mar 13 09:40:59 2007 +0100
56433
56434     [PATCH] update board config for jupiter Board:
56435             added Hush Shell,
56436                   CONFIG_CMDLINE_EDITING,
56437                   CFG_ENV_ADDR_REDUND activated
56438
56439     Signed-off-by: Heiko Schocher <hs@denx.de>
56440
56441 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
56442 Author: Aubrey Li <aubrey.adi@gmail.com>
56443 Date:   Mon Mar 12 12:11:55 2007 +0800
56444
56445     [Blackfin][PATCH] minor cleanup
56446
56447 commit bfa5754a58477ac917d21527cd0f079d87cf188e
56448 Author: Aubrey Li <aubrey.adi@gmail.com>
56449 Date:   Mon Mar 12 01:42:06 2007 +0800
56450
56451     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
56452
56453 commit 8440bb14581a294375c34b91b42512f9753d1130
56454 Author: Aubrey Li <aubrey.adi@gmail.com>
56455 Date:   Mon Mar 12 00:25:14 2007 +0800
56456
56457     [Blackfin][PATCH] code cleanup
56458
56459 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
56460 Author: Michal Simek <monstr@monstr.eu>
56461 Date:   Sun Mar 11 13:48:24 2007 +0100
56462
56463     [Microblaze][PATCH] part 2
56464     timer support
56465     interrupt controller support
56466     flash support
56467     ethernet support
56468     cache support
56469     board information support
56470     env support
56471     booting image support
56472
56473     adding support for Xilinx ML401
56474
56475 commit 76316a318de91f6184e7c22a10e02d275ade2441
56476 Author: Michal Simek <monstr@monstr.eu>
56477 Date:   Sun Mar 11 13:42:58 2007 +0100
56478
56479     [Microblaze][PATCH]
56480     timer support
56481     interrupt controller support
56482     flash support
56483     ethernet support
56484     cache support
56485     board information support
56486     env support
56487     booting image support
56488
56489     adding support for Xilinx ML401
56490
56491 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
56492 Author: Aubrey Li <aubrey.adi@gmail.com>
56493 Date:   Sat Mar 10 23:49:29 2007 +0800
56494
56495     [Blackfin][PATCH] code cleanup
56496
56497 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
56498 Author: Aubrey.Li <aubrey.adi@gmail.com>
56499 Date:   Fri Mar 9 13:40:56 2007 +0800
56500
56501     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
56502
56503 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
56504 Author: Aubrey.Li <aubrey.adi@gmail.com>
56505 Date:   Fri Mar 9 13:38:44 2007 +0800
56506
56507     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
56508
56509 commit 992423ab43c2bcf6b704853bd00af77450915e20
56510 Author: Stefan Roese <sr@denx.de>
56511 Date:   Thu Mar 8 23:00:08 2007 +0100
56512
56513     ppc4xx: Fix file mode of sequoia.c
56514
56515     Signed-off-by: Stefan Roese <sr@denx.de>
56516
56517 commit eb92f613556800f7483666db09d9a237ad911d4a
56518 Author: Wolfgang Denk <wd@pollux.denx.de>
56519 Date:   Thu Mar 8 22:52:51 2007 +0100
56520
56521     Minor cleanup.
56522
56523 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
56524 Author: John Otken john@softadvances.com <john@softadvances.com>
56525 Date:   Thu Mar 8 09:39:48 2007 -0600
56526
56527     ppc4xx: Clear Sequoia/Rainier security engine reset bits
56528
56529     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
56530
56531 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
56532 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56533 Date:   Thu Mar 8 16:26:52 2007 +0100
56534
56535     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
56536
56537     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56538
56539 commit d9fc703246840c4b268debf48c334ba55c597dc0
56540 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56541 Date:   Thu Mar 8 16:25:47 2007 +0100
56542
56543     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
56544
56545     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56546
56547 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
56548 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56549 Date:   Thu Mar 8 16:23:11 2007 +0100
56550
56551     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
56552
56553     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56554
56555 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
56556 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56557 Date:   Thu Mar 8 16:20:32 2007 +0100
56558
56559     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
56560
56561     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56562
56563 commit f9fc6a5852a6335840882fa2111925010eea1abe
56564 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56565 Date:   Wed Mar 7 15:32:01 2007 +0100
56566
56567     fixed ethernet phy configuration for plu405 board
56568
56569     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56570
56571 commit 769104c9356594deb2092e204a39c05b33202d6c
56572 Author: Wolfgang Denk <wd@pollux.denx.de>
56573 Date:   Thu Mar 8 21:49:27 2007 +0100
56574
56575     Minor cleanup
56576
56577 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
56578 Author: Stefan Roese <sr@denx.de>
56579 Date:   Thu Mar 8 10:13:16 2007 +0100
56580
56581     [PATCH] Update AMCC Luan 440SP eval board support
56582
56583     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
56584     inititializition. This includes DDR auto calibration and support
56585     for different DIMM modules, instead of the fixed setup used in
56586     the earlier version.
56587
56588     This patch also enables the cache in FLASH for the startup
56589     phase of U-Boot (while running from FLASH). After relocating to
56590     SDRAM the cache is disabled again. This will speed up the boot
56591     process, especially the SDRAM setup, since there are some loops
56592     for memory testing (auto calibration).
56593
56594     Signed-off-by: Stefan Roese <sr@denx.de>
56595
56596 commit 2f5df47351910a2936c7741cf111855829200943
56597 Author: Stefan Roese <sr@denx.de>
56598 Date:   Thu Mar 8 10:10:18 2007 +0100
56599
56600     [PATCH] Update AMCC Yucca 440SPe eval board support
56601
56602     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
56603     inititializition. This includes DDR auto calibration and support
56604     for different DIMM modules, instead of the fixed setup used in
56605     the earlier version.
56606
56607     Signed-off-by: Stefan Roese <sr@denx.de>
56608
56609 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
56610 Author: Stefan Roese <sr@denx.de>
56611 Date:   Thu Mar 8 10:07:18 2007 +0100
56612
56613     ppc4xx: Small AMCC Katmai 440SPe update
56614
56615     Signed-off-by: Stefan Roese <sr@denx.de>
56616
56617 commit df294497479b1dca6dd86318b2a912f72fede0df
56618 Author: Stefan Roese <sr@denx.de>
56619 Date:   Thu Mar 8 10:06:09 2007 +0100
56620
56621     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
56622
56623     Signed-off-by: Stefan Roese <sr@denx.de>
56624
56625 commit 83853178bd36bca6f0f8f1331476620c84a587fc
56626 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
56627 Date:   Wed Mar 7 12:14:50 2007 -0600
56628
56629     net - Support ping reply when processing net-loop
56630
56631     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
56632
56633     This permits the ping command to test the phy interface when the phy
56634     is put in loopback mode (typically by setting register 0 bit 14).
56635
56636     It also allows the port to respond to an external ping when u-boot is
56637     processing some other net command (such as tftp).  This is useful when
56638     tftp appears to hang.
56639
56640     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
56641     Signed-off-by: Ben Warren <bwarren@qstreams.com>
56642
56643 commit fa1aef15bcd47736687be1af544506e90fba545d
56644 Author: Stefan Roese <sr@denx.de>
56645 Date:   Wed Mar 7 16:43:00 2007 +0100
56646
56647     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
56648
56649     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
56650     DDR memory are dynamically programmed matching the total size
56651     of the equipped memory (DIMM modules).
56652
56653     Signed-off-by: Stefan Roese <sr@denx.de>
56654
56655 commit e2ebe696818939e2b974628be9c921ea3fe9de13
56656 Author: Stefan Roese <sr@denx.de>
56657 Date:   Wed Mar 7 16:39:36 2007 +0100
56658
56659     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
56660
56661     This patch fixes a problem that occurs when 2 DIMM's are
56662     used. This problem was first spotted and fixed by Gerald Jackson
56663     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
56664     problem in a little more clever way.
56665
56666     This patch also adds the nice functionality to dynamically
56667     create the TLB entries for the SDRAM (tlb.c). So we should
56668     never run into such problems with wrong (too short) TLB
56669     initialization again on these platforms.
56670
56671     As this feature is new to the "old" 44x SPD DDR driver, it
56672     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
56673
56674     Signed-off-by: Stefan Roese <sr@denx.de>
56675
56676 commit 39218433983417b9df087976a79e3f80dd5e83d6
56677 Author: Wolfgang Denk <wd@denx.de>
56678 Date:   Wed Mar 7 16:33:44 2007 +0100
56679
56680     UC101: fix compiler warnings
56681
56682 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
56683 Author: Wolfgang Denk <wd@pollux.denx.de>
56684 Date:   Wed Mar 7 16:19:46 2007 +0100
56685
56686     HMI1001: fix build error, cleanup compiler warnings.
56687
56688 commit ad5bb451ade552c44bef9119d907929ebc2c126f
56689 Author: Wolfgang Denk <wd@pollux.denx.de>
56690 Date:   Tue Mar 6 18:08:43 2007 +0100
56691
56692     Restructure POST directory to support of other CPUs, boards, etc.
56693
56694 commit a5284efd125967675b2e9c6ef7b95832268ad360
56695 Author: Wolfgang Denk <wd@pollux.denx.de>
56696 Date:   Tue Mar 6 18:01:47 2007 +0100
56697
56698     Fix HOSTARCH handling.
56699     Patch by Mike Frysinger, Mar 05 2007
56700
56701 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
56702 Author: Stefan Roese <sr@denx.de>
56703 Date:   Tue Mar 6 07:47:04 2007 +0100
56704
56705     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
56706
56707     As provided by the AMCC applications team, this patch optimizes the
56708     DDR2 setup for 166MHz bus speed. The values provided are also save
56709     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
56710     setup has to be adjusted as done in this patch.
56711
56712     For this the NAND booting version had to include the "speed.c" file
56713     from the cpu/ppc4xx directory. With this addition the NAND SPL image
56714     will just fit into the 4kbytes of program space. gcc version 4.x as
56715     provided with ELDK 4.x is needed to generate this optimized code.
56716
56717     Signed-off-by: Stefan Roese <sr@denx.de>
56718
56719 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
56720 Author: Wolfgang Denk <wd@pollux.denx.de>
56721 Date:   Sun Mar 4 01:36:05 2007 +0100
56722
56723     Some code cleanup.
56724
56725 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
56726 Author: Kim Phillips <kim.phillips@freescale.com>
56727 Date:   Wed Feb 28 00:02:04 2007 -0600
56728
56729     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
56730
56731     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
56732
56733 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
56734 Author: Kumar Gala <galak@kernel.crashing.org>
56735 Date:   Tue Feb 27 23:51:42 2007 -0600
56736
56737     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
56738
56739     The config value for:
56740     * CFG_ACR_PIPE_DEP
56741     * CFG_ACR_RPTCNT
56742     * CFG_SPCR_TSEC1EP
56743     * CFG_SPCR_TSEC2EP
56744     * CFG_SCCR_TSEC1CM
56745     * CFG_SCCR_TSEC2CM
56746
56747     Were not being used when setting the appropriate register
56748
56749     Added:
56750     * CFG_SCCR_USBMPHCM
56751     * CFG_SCCR_USBDRCM
56752     * CFG_SCCR_PCICM
56753     * CFG_SCCR_ENCCM
56754
56755     To allow full config of the SCCR.
56756
56757     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
56758     that were just bogus.
56759
56760     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56761
56762 commit d51b3cf371cd441030460ef19d36b2924c361b1a
56763 Author: Kim Phillips <kim.phillips@freescale.com>
56764 Date:   Thu Feb 22 20:06:57 2007 -0600
56765
56766     mpc83xx: update [local-]mac-address properties on UEC based devices
56767
56768     8360 and 832x weren't updating their [local-]mac-address
56769     properties. This patch fixes that.
56770
56771     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56772
56773 commit 61f4f912acbe60776c5e00df1ec94094ce672957
56774 Author: Timur Tabi <timur@freescale.com>
56775 Date:   Tue Feb 13 10:41:42 2007 -0600
56776
56777     mpc83xx: write MAC address to mac-address and local-mac-address
56778
56779     Some device trees have a mac-address property, some have local-mac-address,
56780     and some have both.  To support all of these device trees, this patch
56781     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
56782     This function already updates local-mac-address.
56783
56784     Signed-off-by: Timur Tabi <timur@freescale.com>
56785
56786 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
56787 Author: Kim Phillips <kim.phillips@freescale.com>
56788 Date:   Tue Feb 27 18:41:08 2007 -0600
56789
56790     mpc83xx: add command line editing by default
56791
56792 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
56793 Author: Kim Phillips <kim.phillips@freescale.com>
56794 Date:   Wed Feb 14 19:50:53 2007 -0600
56795
56796     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
56797
56798     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
56799     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
56800
56801     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
56802
56803     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56804     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
56805
56806 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
56807 Author: Xie Xiaobo <r63061@freescale.com>
56808 Date:   Wed Feb 14 18:27:17 2007 +0800
56809
56810     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
56811
56812     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
56813     it pass DDR/DDR2 compliance tests.
56814
56815     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
56816
56817 commit b110f40bd180c6b560276589beedf753e97c46ce
56818 Author: Xie Xiaobo <r63061@freescale.com>
56819 Date:   Wed Feb 14 18:27:06 2007 +0800
56820
56821     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
56822
56823     MPC8360E rev2.0 have new spridr,and PVR value,
56824     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
56825
56826     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
56827
56828 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
56829 Author: Xie Xiaobo <r63061@freescale.com>
56830 Date:   Wed Feb 14 18:26:44 2007 +0800
56831
56832     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
56833
56834     MPC8349E rev3.1 have new spridr,and PVR value,
56835     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
56836
56837     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
56838
56839 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
56840 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
56841 Date:   Wed Jan 31 11:04:19 2007 +0100
56842
56843     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
56844
56845     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
56846     which is used to se if an slave will ACK after receiving its address.
56847
56848     Correct i2c probing to use this method as the old method could upset
56849     a slave as it wrote a data byte to it.
56850
56851     Add a small delay in i2c_init() to let the controller
56852     shutdown any ongoing I2C activity.
56853
56854     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
56855
56856 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
56857 Author: Timur Tabi <timur@freescale.com>
56858 Date:   Wed Jan 31 15:54:29 2007 -0600
56859
56860     mpc83xx: Add support for the MPC8349E-mITX-GP
56861
56862     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
56863     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
56864     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
56865
56866     Signed-off-by: Timur Tabi <timur@freescale.com>
56867
56868 commit fab16807adad350f618024350c6950165c247c72
56869 Author: Timur Tabi <timur@freescale.com>
56870 Date:   Wed Jan 31 15:54:20 2007 -0600
56871
56872     mpc83xx: Delete sdram_init() for MPC8349E-mITX
56873
56874     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
56875     never does anything.  This patch deletes it.
56876
56877     Signed-off-by: Timur Tabi <timur@freescale.com>
56878
56879 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
56880 Author: Dave Liu <daveliu@freescale.com>
56881 Date:   Fri Jan 19 10:43:26 2007 +0800
56882
56883     mpc83xx: Fix the LAW1/3 bug
56884
56885     The patch solves the alignment problem of the local bus access windows to
56886     render accessible the memory bank and PHY registers of UPC 1 (starting at
56887     0xf801 0000). What we actually did was to adjust the sizes of the bus
56888     access windows so that the base address alignment requirement would be met.
56889
56890     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
56891     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
56892     Signed-off-by: Dave Liu <daveliu@freescale.com>
56893
56894 commit 97c4b397dce236a7318b304667bf89e59d08b17c
56895 Author: Kim Phillips <kim.phillips@freescale.com>
56896 Date:   Tue Jan 30 16:15:31 2007 -0600
56897
56898     mpc83xx: don't hang if watchdog configured on 8360, 832x
56899
56900     don't hang if watchdog configured on 8360, 832x
56901
56902     The watchdog programming model is the same across all 83xx devices;
56903     make the code reflect that.
56904
56905 commit b70047478570e371ce7223be342ce98afea0f7d6
56906 Author: Kim Phillips <kim.phillips@freescale.com>
56907 Date:   Tue Jan 30 16:15:21 2007 -0600
56908
56909     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
56910
56911     protect memcpy to bad address if a local-mac-address is missing from dt
56912
56913 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
56914 Author: Kim Phillips <kim.phillips@freescale.com>
56915 Date:   Tue Jan 30 16:15:04 2007 -0600
56916
56917     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
56918
56919     make 8360 default environment fdt be 8360 (not 8349)
56920
56921 commit a28899c910024a0226331df07207b1038c300c93
56922 Author: Emilian Medve <Emilian.Medve@freescale.com>
56923 Date:   Tue Jan 30 16:14:50 2007 -0600
56924
56925     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
56926
56927     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
56928     be used for busy-waiting since it strips the 'volatile' property from
56929     the bd variable. gcc3 was working by pure luck.
56930
56931     This is a follow on patch to "Fix the UEC driver bug of QE"
56932
56933 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
56934 Author: Kumar Gala <galak@kernel.crashing.org>
56935 Date:   Tue Jan 30 14:08:30 2007 -0600
56936
56937     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
56938
56939     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
56940     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
56941     CONFIG_MPC834X so they are more generic.
56942
56943     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56944
56945 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
56946 Author: Kim Phillips <kim.phillips@freescale.com>
56947 Date:   Thu Jan 25 13:40:55 2007 -0600
56948
56949     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
56950
56951 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
56952 Author: Kim Phillips <kim.phillips@freescale.com>
56953 Date:   Wed Jan 24 17:18:37 2007 -0600
56954
56955     mpc83xx: sort Makefile targets
56956
56957     reordered targets alphabetically
56958
56959 commit 91e25769771c1164ed63ffca0add49f934ae3343
56960 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
56961 Date:   Tue Jan 16 11:38:14 2007 -0500
56962
56963     mpc83xx: U-Boot support for Wind River SBC8349
56964
56965     I've redone the SBC8349 support to match git-current, which
56966     incorporates all the MPC834x updates from Freescale since the 1.1.6
56967     release,  including the DDR changes.
56968
56969     I've kept all the SBC8349 files as parallel as possible to the
56970     MPC8349EMDS ones for ease of maintenance and to allow for easy
56971     inspection of what was changed to support this board.  Hence the SBC8349
56972     U-Boot has FDT support and everything else that the MPC8349EMDS has.
56973
56974     Fortunately the Freescale updates added support for boards using CS0,
56975     but I had to change spd_sdram.c to allow for board specific settings for
56976     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
56977     default if the board doesn't specify a value.)
56978
56979     Hopefully this should be mergeable as-is and require no whitespace
56980     cleanups or similar, but if something doesn't measure up then let me
56981     know and I'll fix it.
56982
56983     Thanks,
56984     Paul.
56985
56986 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
56987 Author: Sam Song <samsongshu@yahoo.com.cn>
56988 Date:   Thu Dec 14 19:03:21 2006 +0800
56989
56990     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
56991
56992     A redundant semicolon existed in mpc8349itx.c
56993     should be removed.
56994
56995     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
56996
56997 commit f35f358241c549be3f75cfe2eaa642914275b7ba
56998 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
56999 Date:   Wed Dec 6 21:23:55 2006 -0500
57000
57001     mpc83xx: Put the version (and magic) after the HRCW.
57002
57003     Put the version (and magic) after the HRCW.  This puts it in a fixed
57004     location in flash, not at the start of flash but as close as we can get.
57005
57006     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
57007
57008 commit 48aecd969171a6e99a55fae04933857787f9a5bd
57009 Author: Dave Liu <r63238@freescale.com>
57010 Date:   Thu Dec 7 21:14:51 2006 +0800
57011
57012     mpc83xx: Add the MPC832XEMDS board readme
57013
57014     Add the MPC832XEMDS board readme
57015
57016     Signed-off-by: Dave Liu <daveliu@freescale.com>
57017
57018 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
57019 Author: Dave Liu <r63238@freescale.com>
57020 Date:   Thu Dec 7 21:13:15 2006 +0800
57021
57022     mpc83xx: Add support for the MPC832XEMDS board
57023
57024     This patch supports DUART, ETH3/4 and PCI etc.
57025
57026     Signed-off-by: Dave Liu <daveliu@freescale.com>
57027
57028 commit e080313c32322e15ab5a18eb896a252858c57284
57029 Author: Dave Liu <r63238@freescale.com>
57030 Date:   Thu Dec 7 21:11:58 2006 +0800
57031
57032     mpc83xx: streamline the 83xx immr head file
57033
57034     For better format and style, I streamlined the 83xx head files,
57035     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
57036     duplicated macro definition appear in the both files; 2) the structure
57037     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
57038     macro definition put inside the each structure. So, I cleaned up the
57039     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
57040     moved the macro definition to mpc83xx.h, Just like MPC8260.
57041
57042     CHANGELOG
57043
57044     *streamline the 83xx immr head file
57045
57046     Signed-off-by: Dave Liu <daveliu@freescale.com>
57047
57048 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
57049 Author: Dave Liu <r63238@freescale.com>
57050 Date:   Wed Dec 6 11:38:17 2006 +0800
57051
57052     mpc83xx: Fix the UEC driver bug of QE
57053
57054     The patch prevents the GCC tool chain from striping useful code for
57055     optimization. It will make UEC ethernet driver workable, Otherwise the
57056     UEC will fail in tx when you are using gcc4.x. but the driver can work
57057     when using gcc3.4.3.
57058
57059     CHANGELOG
57060
57061     *Prevent the GCC from striping code for optimization, Otherwise the UEC
57062     will tx failed when you are using gcc4.x.
57063
57064     Signed-off-by: Dave Liu <daveliu@freescale.com>
57065
57066 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
57067 Author: Stefan Roese <sr@denx.de>
57068 Date:   Thu Mar 1 21:11:36 2007 +0100
57069
57070     [PATCH] Update AMCC Katmai 440SPe eval board support
57071
57072     This patch updates the recently added Katmai board support. The biggest
57073     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
57074     driver.
57075
57076     Please note, that still some problems are left with some memory
57077     configurations. See the driver for more details.
57078
57079     Signed-off-by: Stefan Roese <sr@denx.de>
57080
57081 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
57082 Author: Stefan Roese <sr@denx.de>
57083 Date:   Thu Mar 1 07:03:25 2007 +0100
57084
57085     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
57086
57087     Signed-off-by: Stefan Roese <sr@denx.de>
57088
57089 commit ccbc7036648e465697ca298ba51e0e76dda352a0
57090 Author: Wolfgang Denk <wd@pollux.denx.de>
57091 Date:   Wed Feb 28 01:28:53 2007 +0100
57092
57093     SC3: fix typo in default environment
57094
57095 commit e344568b1b46af85ec32d815586f91bc115d6223
57096 Author: Sergei Poselenov <sposelenov@emcraft.com>
57097 Date:   Tue Feb 27 20:15:30 2007 +0300
57098
57099     MCC200: Fixes for update procedure
57100
57101     - fix logic error in image type handling
57102     - make sure file system images (cramfs etc.) get stored in flash
57103       with image header stripped so they can be mounted through MTD
57104
57105 commit 743571145b37182757d4e688a77860b36ee77573
57106 Author: Wolfgang Denk <wd@pollux.denx.de>
57107 Date:   Tue Feb 27 14:26:04 2007 +0100
57108
57109     Minor code cleanup.
57110
57111 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
57112 Author: Sergei Poselenov <sposelenov@emcraft.com>
57113 Date:   Tue Feb 27 12:40:16 2007 +0300
57114
57115     MCC200 update - add LCD Progress Indicator
57116
57117 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
57118 Author: Stefan Roese <sr@denx.de>
57119 Date:   Thu Feb 22 07:43:34 2007 +0100
57120
57121     [PATCH] get_dev() now unconditionally uses manual relocation
57122
57123     Since the relocation fix is not included yet and we're not sure how
57124     it will be added, this patch removes code that required relocation
57125     to be fixed for now.
57126
57127     Signed-off-by: Stefan Roese <sr@denx.de>
57128
57129 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
57130 Author: Stefan Roese <sr@denx.de>
57131 Date:   Thu Feb 22 07:40:23 2007 +0100
57132
57133     [PATCH] Change systemace driver to select 8 & 16bit mode
57134
57135     As suggested by Grant Likely this patch enables the Xilinx SystemACE
57136     driver to select 8 or 16bit mode upon startup.
57137
57138     Signed-off-by: Stefan Roese <sr@denx.de>
57139
57140 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
57141 Author: Haiying Wang <Haiying.Wang@freescale.com>
57142 Date:   Wed Feb 21 16:52:31 2007 +0100
57143
57144     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
57145
57146     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
57147     is fully finished. The sync() is defined in each CPU's io.h file. For
57148     those CPUs which do not need sync for now, a dummy sync() is defined in
57149     their io.h as well.
57150
57151     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57152
57153 commit da04995c7dc6772013a9a0dc5c767f190c402478
57154 Author: Stefan Roese <sr@denx.de>
57155 Date:   Wed Feb 21 13:44:34 2007 +0100
57156
57157     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
57158
57159     Signed-off-by: Stefan Roese <sr@denx.de>
57160
57161 commit 751bb57107d78978ae08e697c3deba816f5be091
57162 Author: Stefan Roese <sr@denx.de>
57163 Date:   Tue Feb 20 13:21:57 2007 +0100
57164
57165     [PATCH] Fix relocation problem with "new" get_dev() function
57166
57167     This patch enables the "new" get_dev() function for block devices
57168     introduced by Grant Likely to be used on systems that still suffer
57169     from the relocation problems (manual relocation neede because of
57170     problems with linker script).
57171
57172     Hopefully we can resolve this relocation issue soon for all platform
57173     so we don't need this additional code anymore.
57174
57175     Signed-off-by: Stefan Roese <sr@denx.de>
57176
57177 commit d93e2212f962668b3dce091ff5edc33f2347fe37
57178 Author: Stefan Roese <sr@denx.de>
57179 Date:   Tue Feb 20 13:17:42 2007 +0100
57180
57181     [PATCH] Update SystemACE driver for 16bit access
57182
57183     This patch removes some problems when the Xilinx SystemACE driver
57184     is used with 16bit access on an big endian platform (like the
57185     AMCC Katmai).
57186
57187     Signed-off-by: Stefan Roese <sr@denx.de>
57188
57189 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
57190 Author: Stefan Roese <sr@denx.de>
57191 Date:   Tue Feb 20 13:15:40 2007 +0100
57192
57193     [PATCH] Clean up Katmai (440SPe) linker script
57194
57195     Signed-off-by: Stefan Roese <sr@denx.de>
57196
57197 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
57198 Author: Stefan Roese <sr@denx.de>
57199 Date:   Tue Feb 20 10:57:08 2007 +0100
57200
57201     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
57202
57203     Signed-off-by: Stefan Roese <sr@denx.de>
57204
57205 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
57206 Author: Stefan Roese <sr@denx.de>
57207 Date:   Tue Feb 20 10:51:26 2007 +0100
57208
57209     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
57210
57211     This patch switches to the desired I2C bus when the date/dtt
57212     commands are called. This can be configured using the
57213     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
57214
57215     Signed-off-by: Stefan Roese <sr@denx.de>
57216
57217 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
57218 Author: Stefan Roese <sr@denx.de>
57219 Date:   Tue Feb 20 10:43:34 2007 +0100
57220
57221     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
57222
57223     This patch adds support for the DDR2 controller used on the
57224     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
57225     board and works fine with the following DIMM modules:
57226
57227     - Corsair CM2X512-5400C4 (512MByte per DIMM)
57228     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
57229     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
57230
57231     This patch also adds the nice functionality to dynamically
57232     create the TLB entries for the SDRAM (tlb.c). So we should
57233     never run into such problems with wrong (too short) TLB
57234     initialization again on these platforms.
57235
57236     Signed-off-by: Stefan Roese <sr@denx.de>
57237
57238 commit 36d830c9830379045f5daa9f542ac1c990c70068
57239 Author: Stefan Roese <sr@denx.de>
57240 Date:   Tue Feb 20 10:35:42 2007 +0100
57241
57242     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
57243
57244     Since the existing 4xx SPD SDRAM initialization routines for the
57245     405 SDRAM controller and the 440 DDR controller don't have much in
57246     common this patch splits both drivers into different files.
57247
57248     This is in preparation for the 440 DDR2 controller support (440SP/e).
57249
57250     Signed-off-by: Stefan Roese <sr@denx.de>
57251
57252 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
57253 Author: Stefan Roese <sr@denx.de>
57254 Date:   Tue Feb 20 10:27:08 2007 +0100
57255
57256     [PATCH] PPC4xx: Add support for multiple I2C busses
57257
57258     This patch adds support for multiple I2C busses on the PPC4xx
57259     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
57260     to make use of this feature.
57261
57262     It also merges the 405 and 440 i2c header files into one common
57263     file 4xx_i2c.h.
57264
57265     Also the 4xx i2c reset procedure is reworked since I experienced
57266     some problems with the first access on the 440SPe Katmai board.
57267
57268     Signed-off-by: Stefan Roese <sr@denx.de>
57269
57270 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
57271 Author: Grant Likely <grant.likely@secretlab.ca>
57272 Date:   Tue Feb 20 09:05:45 2007 +0100
57273
57274     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
57275
57276     Block device read/write is anonymous data; there is no need to use a
57277     typed pointer.  void * is fine.  Also add a hook for block_read functions
57278
57279     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57280
57281 commit 53758fa20e935cc87eeb0519ed365df753a6f289
57282 Author: Grant Likely <grant.likely@secretlab.ca>
57283 Date:   Tue Feb 20 09:05:38 2007 +0100
57284
57285     [PATCH 8_9] Add block_write hook to block_dev_desc_t
57286
57287     Preparation for future patches which support block device writing
57288
57289     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57290
57291 commit f4852ebe6ca946a509667eb68be42026f837be76
57292 Author: Grant Likely <grant.likely@secretlab.ca>
57293 Date:   Tue Feb 20 09:05:31 2007 +0100
57294
57295     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
57296
57297     Register read/write does not need to be wrapped in a full function.  The
57298     patch replaces them with macros.
57299
57300     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57301
57302 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
57303 Author: Grant Likely <grant.likely@secretlab.ca>
57304 Date:   Tue Feb 20 09:05:23 2007 +0100
57305
57306     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
57307
57308     The code in this file is not a command; it is a device driver.  Put it in
57309     the correct place.  There are zero functional changes in this patch, it
57310     only moves the file.
57311
57312     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57313
57314 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
57315 Author: Grant Likely <grant.likely@secretlab.ca>
57316 Date:   Tue Feb 20 09:05:16 2007 +0100
57317
57318     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
57319
57320     This patch is in preparation of additional changes to the sysace driver.
57321     May as well take this opportunity to fixup the inconsistent whitespace since
57322     this file is about to undergo major changes anyway.
57323
57324     There are zero functional changes in this patch.  It only cleans up the
57325     the whitespace.
57326
57327     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57328
57329 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
57330 Author: Grant Likely <grant.likely@secretlab.ca>
57331 Date:   Tue Feb 20 09:05:07 2007 +0100
57332
57333     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
57334
57335     isprint is already defined in ctype.c
57336
57337     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57338
57339 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
57340 Author: Grant Likely <grant.likely@secretlab.ca>
57341 Date:   Tue Feb 20 09:05:00 2007 +0100
57342
57343     [PATCH 3_9] Move buffer print code from md command to common function
57344
57345     Printing a buffer is a darn useful thing.  Move the buffer print code
57346     into print_buffer() in lib_generic/
57347
57348     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57349
57350 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
57351 Author: Grant Likely <grant.likely@secretlab.ca>
57352 Date:   Tue Feb 20 09:04:52 2007 +0100
57353
57354     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
57355
57356     Change the xilinx device drivers and board code to include config.h
57357     instead of xparameters.h directly.  config.h always includes the
57358     correct xparameters file.  This change reduces the posibility of
57359     including the wrong file when adding a new xilinx board port
57360
57361     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57362
57363 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
57364 Author: Grant Likely <grant.likely@secretlab.ca>
57365 Date:   Tue Feb 20 09:04:34 2007 +0100
57366
57367     [PATCH 1_4] Merge common get_dev() routines for block devices
57368
57369     Each of the filesystem drivers duplicate the get_dev routine.  This change
57370     merges them into a single function in part.c
57371
57372     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57373
57374 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
57375 Author: Wolfgang Denk <wd@pollux.denx.de>
57376 Date:   Mon Feb 19 23:09:51 2007 +0100
57377
57378     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
57379     as root file system images.
57380
57381 commit 489c696ae7211218961d159e43e722d74c36fcbc
57382 Author: Sergei Poselenov <sposelenov@emcraft.com>
57383 Date:   Wed Feb 14 14:30:28 2007 +0300
57384
57385     MCC200: Extensions to Software Update Mechanism
57386
57387     Update / extend Software Update Mechanism for MCC200 board:
57388
57389     - Add support for rootfs image added. The environment variables
57390       "rootfs_st" and "rootfs_nd" can be used to override the default
57391       values of the image start and end.
57392     - Remove excessive key check code.
57393     - Code cleanup.
57394
57395 commit 4be23a12f23f1372634edc3215137b09768b7949
57396 Author: Stefan Roese <sr@denx.de>
57397 Date:   Mon Feb 19 08:23:15 2007 +0100
57398
57399     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
57400
57401     As spotted by Matthias Fuchs, the READY input should not be
57402     enabled for the NOR FLASH on the Sequoia board.
57403
57404     Signed-off-by: Stefan Roese <sr@denx.de>
57405
57406 commit 2605e90bf676d48123afe5719a846d2b52b24aac
57407 Author: Heiko Schocher <hs@pollux.denx.de>
57408 Date:   Fri Feb 16 07:57:42 2007 +0100
57409
57410     [PATCH] Added support for the jupiter board.
57411
57412     Signed-off-by: Heiko Schocher <hs@denx.de>
57413
57414 commit 497d012e5be0194e1084073d0081eb1a844796b2
57415 Author: Gary Jennejohn <garyj@pollux.denx.de>
57416 Date:   Mon Feb 12 13:11:50 2007 +0100
57417
57418     LPC2292: patch from Siemens.
57419
57420 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
57421 Author: Stefan Roese <sr@denx.de>
57422 Date:   Sat Feb 10 08:49:31 2007 +0100
57423
57424     [PATCH] Add missing p3mx.h file to repository (ups)
57425
57426     Signed-off-by: Stefan Roese <sr@denx.de>
57427
57428 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
57429 Author: Bartlomiej Sieka <tur@semihalf.com>
57430 Date:   Fri Feb 9 10:45:42 2007 +0100
57431
57432     [Motion-PRO] Preliminary support for the Motion-PRO board.
57433
57434 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
57435 Author: Stefan Roese <sr@denx.de>
57436 Date:   Wed Feb 7 16:51:08 2007 +0100
57437
57438     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
57439
57440     Some boards that can have more than 768MBytes of SDRAM need to
57441     set "initrd_high", so that the initrd can be accessed by the
57442     Linux kernel.
57443
57444     Signed-off-by: Stefan Roese <sr@denx.de>
57445
57446 commit 7372ca68227930d03cffa548310524cad5b96733
57447 Author: Stefan Roese <sr@denx.de>
57448 Date:   Fri Feb 2 12:44:22 2007 +0100
57449
57450     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
57451
57452     Previously the strapping DCR/SDR was read to determine if the internal PCI
57453     arbiter is enabled or not. This strapping bit can be overridden, so now
57454     the current status is read from the correct DCR/SDR register.
57455
57456     Signed-off-by: Stefan Roese <sr@denx.de>
57457
57458 commit 2aa54f651a42d198673318f07a20c89a43e4d197
57459 Author: Stefan Roese <sr@denx.de>
57460 Date:   Fri Feb 2 12:42:08 2007 +0100
57461
57462     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
57463
57464     Signed-off-by: Stefan Roese <sr@denx.de>
57465
57466 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
57467 Author: Stefan Roese <sr@denx.de>
57468 Date:   Thu Feb 1 13:22:41 2007 +0100
57469
57470     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
57471
57472     When PCI PNP is enabled the pci pnp configuration routine is called
57473     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
57474     problems with some PCI cards. For now disable the PCI PNP configuration.
57475
57476     Signed-off-by: Stefan Roese <sr@denx.de>
57477
57478 commit 2902fadade3be7659467e8d074048c6b7068f5c0
57479 Author: Stefan Roese <sr@denx.de>
57480 Date:   Wed Jan 31 16:56:10 2007 +0100
57481
57482     [PATCH] Update 440EPx/440GRx cpu detection
57483
57484     Signed-off-by: Stefan Roese <sr@denx.de>
57485
57486 commit d5ea287b02a6945c3977410e364a879dd1a555c8
57487 Author: Stefan Roese <sr@denx.de>
57488 Date:   Wed Jan 31 16:38:04 2007 +0100
57489
57490     [PATCH] Update esd cpci5200 files
57491
57492     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
57493
57494 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
57495 Author: Stefan Roese <sr@denx.de>
57496 Date:   Wed Jan 31 16:37:34 2007 +0100
57497
57498     [PATCH] Add support for esd mecp5200 board
57499
57500     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
57501
57502 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
57503 Author: Stefan Roese <sr@denx.de>
57504 Date:   Wed Jan 31 12:38:50 2007 +0100
57505
57506     [PATCH] Remove unneccessary yellowstone board config file
57507
57508     Signed-off-by: Stefan Roese <sr@denx.de>
57509
57510 commit e802594b6fa1b166308820c276b96dc0d7cc731c
57511 Author: Stefan Roese <sr@denx.de>
57512 Date:   Tue Jan 30 17:06:10 2007 +0100
57513
57514     [PATCH] Update Sequoia (440EPx) config file
57515
57516     The config file now handles the 2nd target, the Rainier (440GRx)
57517     evaluation board better. Additionally the PPC input clock was
57518     adjusted to match the correct value of 33.0 MHz.
57519
57520     Signed-off-by: Stefan Roese <sr@denx.de>
57521
57522 commit 700200c67e73b83751418abe7815840dca8fd6cb
57523 Author: Stefan Roese <sr@denx.de>
57524 Date:   Tue Jan 30 17:04:19 2007 +0100
57525
57526     [PATCH] Merge Yosemite & Yellowstone board ports
57527
57528     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
57529     share one config file and all board specific files. This way we
57530     don't have to maintain two different sets of files for nearly
57531     identical boards.
57532
57533     Signed-off-by: Stefan Roese <sr@denx.de>
57534
57535 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
57536 Author: Stefan Roese <sr@denx.de>
57537 Date:   Tue Jan 30 15:01:49 2007 +0100
57538
57539     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
57540
57541     SCPU doesn't use redundant environment in flash.
57542
57543     Signed-off-by: Stefan Roese <sr@denx.de>
57544
57545 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
57546 Author: Stefan Roese <sr@denx.de>
57547 Date:   Tue Jan 30 12:51:07 2007 +0100
57548
57549     [PATCH] alpr: Update alpr board config file
57550
57551     Signed-off-by: Stefan Roese <sr@denx.de>
57552
57553 commit f8db84f132b1e335f20f96138a1f09ed97b08664
57554 Author: Wolfgang Denk <wd@pollux.denx.de>
57555 Date:   Tue Jan 30 00:50:40 2007 +0100
57556
57557     LPC2292 SODIMM port coding style cleanup.
57558
57559 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
57560 Author: Gary Jennejohn <garyj@pollux.denx.de>
57561 Date:   Wed Jan 24 12:16:56 2007 +0100
57562
57563     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
57564
57565 commit 2daf046ba627f85f44195815778140039636244e
57566 Author: Bartlomiej Sieka <tur@semihalf.com>
57567 Date:   Tue Jan 23 17:22:06 2007 +0100
57568
57569     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
57570
57571 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
57572 Author: Bartlomiej Sieka <tur@semihalf.com>
57573 Date:   Tue Jan 23 14:21:14 2007 +0100
57574
57575     [iDMR] Flash driver on initialisation write-protects some sectors,
57576     currently sectors 0-3. Sector 3 does not need to be protected, though
57577     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
57578     fixes this, i.e., only sectors 0-2 are protected.
57579
57580 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
57581 Author: Bartlomiej Sieka <tur@semihalf.com>
57582 Date:   Tue Jan 23 14:11:22 2007 +0100
57583
57584     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
57585     "mii device" results in "Unexpected exception"). Fixing this properly
57586     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
57587     this commit disables MII commads for now.
57588
57589 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
57590 Author: Bartlomiej Sieka <tur@semihalf.com>
57591 Date:   Tue Jan 23 13:25:22 2007 +0100
57592
57593     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
57594     Identification Register (CIR).
57595
57596 commit fdef388758506765d4d6a7155c8f1584c63ff581
57597 Author: roy zang <tie-fei.zang@freescale.com>
57598 Date:   Mon Jan 22 13:19:21 2007 +0800
57599
57600     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
57601     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
57602     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
57603     mpc7448hpc2 board.
57604
57605 commit a4012396645533aef218354eeba754dff0deace8
57606 Author: Wolfgang Denk <wd@pollux.denx.de>
57607 Date:   Fri Jan 19 23:08:39 2007 +0100
57608
57609     Minor code cleanup.
57610
57611 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
57612 Author: Heiko Schocher <hs@pollux.denx.de>
57613 Date:   Fri Jan 19 19:57:10 2007 +0100
57614
57615     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
57616
57617     Signed-off-by: Heiko Schocher <hs@denx.de>
57618
57619 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
57620 Author: Heiko Schocher <hs@pollux.denx.de>
57621 Date:   Fri Jan 19 18:05:26 2007 +0100
57622
57623     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
57624                  if you must swap the bytes between reading/writing.
57625                  (Needed for the SC3 board)
57626
57627     Signed-off-by: Heiko Schocher <hs@denx.de>
57628
57629 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
57630 Author: Stefan Roese <sr@denx.de>
57631 Date:   Thu Jan 18 16:05:47 2007 +0100
57632
57633     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
57634
57635     Signed-off-by: Stefan Roese <sr@denx.de>
57636
57637 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
57638 Author: Stefan Roese <sr@denx.de>
57639 Date:   Thu Jan 18 11:54:52 2007 +0100
57640
57641     [PATCH] Update Prodrive P3Mx support
57642
57643     Signed-off-by: Stefan Roese <sr@denx.de>
57644
57645 commit 34167a36c29ee946b727465db5c014746a08e978
57646 Author: Stefan Roese <sr@denx.de>
57647 Date:   Thu Jan 18 11:48:10 2007 +0100
57648
57649     [PATCH] Add missing Taishan config file
57650
57651     Signed-off-by: Stefan Roese <sr@denx.de>
57652
57653 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
57654 Author: Heiko Schocher <hs@pollux.denx.de>
57655 Date:   Thu Jan 18 11:28:51 2007 +0100
57656
57657     [PATCH] Fix: Compilerwarnings for SC3 board.
57658                  The EBC Configuration Register is now by CFG_EBC_CFG definable
57659                  Added JFFS2 support for the SC3 board.
57660
57661     Signed-off-by: Heiko Schocher <hs@denx.de>
57662
57663 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
57664 Author: Stefan Roese <sr@denx.de>
57665 Date:   Thu Jan 18 10:25:34 2007 +0100
57666
57667     [PATCH] Add support for AMCC Taishan PPC440GX eval board
57668
57669     Signed-off-by: Stefan Roese <sr@denx.de>
57670
57671 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
57672 Author: Wolfgang Denk <wd@pollux.denx.de>
57673 Date:   Tue Jan 16 18:30:50 2007 +0100
57674
57675     Raname solidcard3 into sc3; add redundant env for sc3
57676
57677 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
57678 Author: Wolfgang Denk <wd@pollux.denx.de>
57679 Date:   Tue Jan 16 12:46:35 2007 +0100
57680
57681     Update default environment for Solidcard3
57682
57683 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
57684 Author: Stefan Roese <sr@denx.de>
57685 Date:   Mon Jan 15 09:46:29 2007 +0100
57686
57687     [PATCH] Fix 440SPe rev B detection from previous patch
57688
57689     Signed-off-by: Stefan Roese <sr@denx.de>
57690
57691 commit a443d31410c571ee8f970da819a44d698fdd6b1f
57692 Author: Heiko Schocher <hs@pollux.denx.de>
57693 Date:   Sun Jan 14 13:35:31 2007 +0100
57694
57695         [FIX] correct I2C Writes for the LM81 Sensor.
57696
57697         Signed-off-by: Heiko Schocher <hs@denx.de>
57698
57699 commit 0bba5452835f19a61204edcda3a58112fd8e2208
57700 Author: Wolfgang Denk <wd@pollux.denx.de>
57701 Date:   Sat Jan 13 11:17:10 2007 +0100
57702
57703     Undo commit 3033ebb2: reset command does not take any arguments
57704
57705     Haiying Wang's modification to the reset command was broken, undo it.
57706
57707     Signed-off-by: Wolfgang Denk <wd@denx.de>
57708
57709 commit 95981778cff0038fd9941044d6a3eda810e33258
57710 Author: Stefan Roese <sr@denx.de>
57711 Date:   Sat Jan 13 08:01:03 2007 +0100
57712
57713     [PATCH] Update 440SP(e) cpu revisions
57714
57715     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
57716
57717     Signed-off-by: Stefan Roese <sr@denx.de>
57718
57719 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
57720 Author: Stefan Roese <sr@denx.de>
57721 Date:   Sat Jan 13 07:59:56 2007 +0100
57722
57723     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
57724
57725     Now the board revision and the current PCI bus speed are printed after
57726     the board message.
57727
57728     Also the EBC initialising is now done via defines in the board config
57729     file.
57730
57731     Signed-off-by: Stefan Roese <sr@denx.de>
57732
57733 commit 36adff362c2c0141ff8a810d42a7e478f779130f
57734 Author: Stefan Roese <sr@denx.de>
57735 Date:   Sat Jan 13 07:59:19 2007 +0100
57736
57737     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
57738
57739     Now the board revision and the current PCI bus speed are printed after
57740     the board message.
57741
57742     Also the EBC initialising is now done via defines in the board config
57743     file.
57744
57745     Signed-off-by: Stefan Roese <sr@denx.de>
57746
57747 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
57748 Author: Stefan Roese <sr@denx.de>
57749 Date:   Sat Jan 13 07:57:51 2007 +0100
57750
57751     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
57752
57753     Now the board revision and the current PCI bus speed are printed after
57754     the board message.
57755
57756     Signed-off-by: Stefan Roese <sr@denx.de>
57757
57758 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
57759 Author: Heiko Schocher <hs@pollux.denx.de>
57760 Date:   Thu Jan 11 15:44:44 2007 +0100
57761
57762         Added support for the SOLIDCARD III board from Eurodesign
57763
57764         Signed-off-by: Heiko Schocher <hs@denx.de>
57765
57766 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
57767 Author: Reinhard Thies <Reinhard.Thies@web.de>
57768 Date:   Wed Jan 10 14:41:14 2007 +0100
57769
57770     Adjusted default environment for cam5200 board.
57771
57772 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
57773 Author: Wolfgang Denk <wd@pollux.denx.de>
57774 Date:   Wed Jan 10 15:35:52 2007 +0100
57775
57776     Update CHANGELOG
57777
57778 commit 787fa15860a57833e50bd30555079a9cd4e519b8
57779 Author: Wolfgang Denk <wd@pollux.denx.de>
57780 Date:   Wed Jan 10 01:28:39 2007 +0100
57781
57782     Fix auto_update for MCC200 board.
57783
57784     The invocation of do_auto_update() is moved to the end of the
57785     misc_init_r() function, after the flash mappings have been
57786     initialized. Please find attached a patch that implements that
57787     change.
57788
57789     Also correct the decoding of the keypad status. With this update, the
57790     key that will trigger the update is Column 2, Row 2.
57791
57792 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
57793 Author: Marian Balakowicz <m8@semihalf.com>
57794 Date:   Wed Jan 10 00:26:15 2007 +0100
57795
57796     CAM5200 flash driver modifications:
57797     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
57798     - add second build target 'cam5200_niosflash' which still uses custom driver
57799
57800 commit 67fea022fa957f59653b5238c7496f80a6b70432
57801 Author: Markus Klotzbuecher <mk@denx.de>
57802 Date:   Tue Jan 9 16:02:48 2007 +0100
57803
57804     SPC1920: cleanup memory contoller setup
57805
57806 commit 8fc2102faa23593c80381437c09f7745a14deb40
57807 Author: Markus Klotzbuecher <mk@denx.de>
57808 Date:   Tue Jan 9 14:57:14 2007 +0100
57809
57810     Fix the cpu speed setup to work with all boards.
57811
57812 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
57813 Author: Markus Klotzbuecher <mk@denx.de>
57814 Date:   Tue Jan 9 14:57:13 2007 +0100
57815
57816     SPC1920: add support for the FM18L08 Ramtron FRAM
57817
57818 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
57819 Author: Markus Klotzbuecher <mk@denx.de>
57820 Date:   Tue Jan 9 14:57:13 2007 +0100
57821
57822     SPC1920: update the HPI register addresses to work with the second
57823     generation of hardware
57824
57825 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
57826 Author: Markus Klotzbuecher <mk@creamnet.de>
57827 Date:   Tue Jan 9 14:57:13 2007 +0100
57828
57829     Miscellanious spc1920 related cleanups
57830
57831 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
57832 Author: Markus Klotzbuecher <mk@denx.de>
57833 Date:   Tue Jan 9 14:57:12 2007 +0100
57834
57835     SPC1920 GO/NOGO led should be set to color red in U-Boot
57836
57837 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
57838 Author: Markus Klotzbuecher <mk@creamnet.de>
57839 Date:   Tue Jan 9 14:57:12 2007 +0100
57840
57841     Add support for the DS3231 RTC
57842
57843 commit 8139567b60d678584b05f0718a681f2047c5e14f
57844 Author: Markus Klotzbuecher <mk@creamnet.de>
57845 Date:   Tue Jan 9 14:57:11 2007 +0100
57846
57847     SMC1 uses external CLK4 instead of BRG on spc1920
57848
57849 commit d8d9de1a02fbd880b613d607143d1f57342affc7
57850 Author: Markus Klotzbuecher <mk@creamnet.de>
57851 Date:   Tue Jan 9 14:57:10 2007 +0100
57852
57853     Update the SPC1920 CMB PLD driver
57854
57855 commit 3f34f869162750e5e999fd140f884f5de952bcfe
57856 Author: Markus Klotzbuecher <mk@creamnet.de>
57857 Date:   Tue Jan 9 14:57:10 2007 +0100
57858
57859     Add / enable I2C support on the spc1920 board
57860
57861 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
57862 Author: Markus Klotzbuecher <mk@creamnet.de>
57863 Date:   Tue Jan 9 14:57:10 2007 +0100
57864
57865     Add support for the tms320671x host port interface (HPI)
57866
57867 commit f4eb54529bb3664c3a562e488b460fe075f79d67
57868 Author: Wolfgang Denk <wd@pollux.denx.de>
57869 Date:   Sun Jan 7 00:13:11 2007 +0100
57870
57871     Prepare for release 1.2.0
57872
57873 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
57874 Author: Stefan Roese <sr@denx.de>
57875 Date:   Sat Jan 6 15:58:09 2007 +0100
57876
57877     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
57878
57879     This patch fixes a problem with an incorrect setup for the refresh
57880     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
57881
57882     Signed-off-by: Stefan Roese <sr@denx.de>
57883
57884 commit f16c1da9577f06c5fc08651a4065537407de4635
57885 Author: Stefan Roese <sr@denx.de>
57886 Date:   Sat Jan 6 15:56:13 2007 +0100
57887
57888     [PATCH] Update ALPR board files
57889
57890     This update brings the ALPR board support to the newest version.
57891     It also fixes a problem with the NAND driver.
57892
57893     Signed-off-by: Stefan Roese <sr@denx.de>
57894
57895 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
57896 Author: Stefan Roese <sr@denx.de>
57897 Date:   Fri Jan 5 11:46:05 2007 +0100
57898
57899     [PATCH] nand: Fix problem with oobsize calculation
57900
57901     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
57902
57903     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
57904     returns a 0x15. In the code fragment below bits [1:0] determine the
57905     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
57906     next field is also ANDed with 0x3. However this is a one bit field
57907     as defined in the Hynix and Samsung parts in the 4th ID byte that
57908     determins the oobsize, not a two bit field. It works on Samsung as
57909     bits[3:2] are 01. However for the Hynix there is a 11 in these two
57910     bits, so the oob size gets messed up.
57911
57912     I checked the correct linux code and the suggested fix from Brian is
57913     also available in the linux nand mtd driver.
57914
57915     Signed-off-by: Stefan Roese <sr@denx.de>
57916
57917 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
57918 Author: Stefan Roese <sr@denx.de>
57919 Date:   Fri Jan 5 10:40:36 2007 +0100
57920
57921     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
57922
57923     This fix will make the MAL burst disabling patch for the Linux
57924     EMAC driver obsolete.
57925
57926     Signed-off-by: Stefan Roese <sr@denx.de>
57927
57928 commit 023889838282b6237b401664f22dd22dfba2c066
57929 Author: Stefan Roese <sr@denx.de>
57930 Date:   Fri Jan 5 10:38:05 2007 +0100
57931
57932     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
57933
57934     This code will optimize the DDR2 controller setup on a board specific
57935     basis.
57936
57937     Note: This code doesn't work right now on the NAND booting image for the
57938     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
57939
57940     Signed-off-by: Stefan Roese <sr@denx.de>
57941
57942 commit cce4acbb68398634b8d011ed7bb0d12269c84230
57943 Author: Bartlomiej Sieka <tur@semihalf.com>
57944 Date:   Thu Dec 28 19:08:21 2006 +0100
57945
57946     Few V38B changes:
57947       - fix a typo in V38B config file
57948       - move watchdog initialisation earlier in the boot process
57949       - add "wdt=off" to default kernel command line (disables kernel watchdog)
57950
57951 commit 92eb729bad876725aeea908d2addba0800620840
57952 Author: Wolfgang Denk <wd@pollux.denx.de>
57953 Date:   Wed Dec 27 01:26:13 2006 +0100
57954
57955     Fix bug in adaption of Stefano Babic's CFI driver patch.
57956
57957 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
57958 Author: Wolfgang Denk <wd@pollux.denx.de>
57959 Date:   Sun Dec 24 01:42:57 2006 +0100
57960
57961     Minor code cleanup.
57962
57963 commit d784fdb05900ada3686d5778783e1fb328e9fb66
57964 Author: Stefano Babic <sbabic@denx.de>
57965 Date:   Tue Dec 12 00:22:42 2006 +0100
57966
57967     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
57968
57969 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
57970 Author: Stefan Roese <sr@denx.de>
57971 Date:   Fri Dec 22 14:29:40 2006 +0100
57972
57973     [PATCH] Fix sequoia flash autodetection (finally correct)
57974
57975     Now 32MByte and 64MByte FLASH is know to work and other
57976     configurations should work too.
57977
57978     Signed-off-by: Stefan Roese <sr@denx.de>
57979
57980 commit 82e5236a8b719543643fd26d5827938ab2b94818
57981 Author: Wolfgang Denk <wd@pollux.denx.de>
57982 Date:   Fri Dec 22 10:30:26 2006 +0100
57983
57984     Minor code cleanup; update CHANGELOG.
57985
57986 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
57987 Author: Heiko Schocher <hs@pollux.denx.de>
57988 Date:   Thu Dec 21 17:17:02 2006 +0100
57989
57990     Added support for the TQM8272 board from TQ
57991
57992     Signed-off-by: Heiko Schocher <hs@denx.de>
57993
57994 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
57995 Author: Heiko Schocher <hs@pollux.denx.de>
57996 Date:   Thu Dec 21 16:14:48 2006 +0100
57997
57998     [PATCH] Add support for the UC101 board from MAN.
57999
58000     Signed-off-by: Heiko Schocher <hs@denx.de>
58001
58002 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
58003 Author: Bartlomiej Sieka <tur@semihalf.com>
58004 Date:   Wed Dec 20 00:29:43 2006 +0100
58005
58006     Fix to make the baudrate changes immediate for the MCF52x2 family.
58007
58008 commit daa6e418bcc0c717752e8de939c213c790286096
58009 Author: Bartlomiej Sieka <tur@semihalf.com>
58010 Date:   Wed Dec 20 00:27:32 2006 +0100
58011
58012     Preliminary support for the iDMR board (ColdFire).
58013
58014 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
58015 Author: Andrei Safronov <safronov@pollux.denx.de>
58016 Date:   Fri Dec 8 16:23:08 2006 +0100
58017
58018     automatic update mechanism
58019
58020 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
58021 Author: roy zang <tie-fei.zang@freescale.com>
58022 Date:   Mon Dec 4 17:56:59 2006 +0800
58023
58024     Slight code clean up.
58025     Add comments, delete duplicate define and remove spaces.
58026     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58027
58028 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
58029 Author: roy zang <tie-fei.zang@freescale.com>
58030 Date:   Mon Dec 4 17:54:21 2006 +0800
58031
58032     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
58033     multiplier table can not refect the real PLL clock behavior of these
58034     processors. Please refer to the hardware specification for detailed
58035     information of the corresponding processors.
58036     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58037
58038 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
58039 Author: roy zang <tie-fei.zang@freescale.com>
58040 Date:   Mon Dec 4 14:46:23 2006 +0800
58041
58042     Remove the static MAC address, ip address, server ip, netmask and
58043     gateway ip for network setting.
58044     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58045
58046 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
58047 Author: roy zang <tie-fei.zang@freescale.com>
58048 Date:   Mon Dec 4 14:33:08 2006 +0800
58049
58050     Remove the duplicate memory test code for mpc744ihpc2 board.
58051     If a memory test is needed, please use the functions in
58052     post/memory.c or memtest command.
58053     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58054
58055 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
58056 Author: roy zang <tie-fei.zang@freescale.com>
58057 Date:   Fri Dec 1 19:01:25 2006 +0800
58058
58059     Fix the exception occuring in RAM table search issue.
58060     The original search_one_table() function code can only processes the search
58061     for the exception occurring in FLASH/ROM, because the exception and fixup
58062     table usually locate in FLASH. If the exception address is also in
58063     FLASH, it will be OK.
58064     If the exception occurs in RAM, after the u-boot relocation, a
58065     relocation offset should be added.
58066
58067     clean up the code in cpu/74xx_7xx/cpu.c
58068
58069     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58070
58071 commit ee311214e0d216f904feea269599d0934bf71f23
58072 Author: roy zang <tie-fei.zang@freescale.com>
58073 Date:   Fri Dec 1 11:47:36 2006 +0800
58074
58075     Clean up the code according to codestyle:
58076     (1) remove some C++ comments.
58077     (2) remove trailing white space.
58078     (3) remove trailing empty line.
58079     (4) Indentation by table.
58080     (5) remove {} in one line condition.
58081     (6) add space before '(' in function call.
58082     Remove some weird printf () output.
58083     Add necessary comments.
58084     Modified Makefile to support building in a separate directory.
58085
58086 commit dd520bf314c7add4183c5191692180f576f96b60
58087 Author: Wolfgang Denk <wd@pollux.denx.de>
58088 Date:   Thu Nov 30 18:02:20 2006 +0100
58089
58090     Code cleanup.
58091
58092 commit 8d9a8610b8256331132227e9e6585c6bd5742787
58093 Author: Wolfgang Denk <wd@pollux.denx.de>
58094 Date:   Thu Nov 30 01:54:07 2006 +0100
58095
58096     Code cleanup. Update CHANGELOG.
58097
58098 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
58099 Author: Grant Likely <grant.likely@secretlab.ca>
58100 Date:   Wed Nov 29 16:23:42 2006 +0100
58101
58102     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
58103
58104     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
58105     not the XLB frequency.
58106
58107     This patch depends on the previous patches for MPC52xx device tree support
58108
58109     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
58110     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
58111
58112 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
58113 Author: Stefan Roese <sr@denx.de>
58114 Date:   Wed Nov 29 15:42:37 2006 +0100
58115
58116     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
58117
58118     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
58119     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
58120     quite similar and share the same board directory "prodrive/p3mx"
58121     and the same config file "p3mx.h".
58122
58123     Signed-off-by: Stefan Roese <sr@denx.de>
58124
58125 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
58126 Author: Stefan Roese <sr@denx.de>
58127 Date:   Wed Nov 29 12:53:15 2006 +0100
58128
58129     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
58130
58131     In the bootvx command the load address was only read from the env
58132     variable "loadaddr" and not optionally passed as paramter as described
58133     in the help. This is fixed with this patch. The behaviour is now the
58134     same as in the bootelf command.
58135
58136     Signed-off-by: Stefan Roese <sr@denx.de>
58137
58138 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
58139 Author: Stefan Roese <sr@denx.de>
58140 Date:   Wed Nov 29 12:03:57 2006 +0100
58141
58142     [PATCH] include/ppc440.h minor error affecting interrupts
58143
58144     Fixed include/ppc440.c for UIC address Bug
58145
58146     Corrects bug affecting the addresses for the universal interrupt
58147     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
58148
58149     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
58150     Signed-off-by: Stefan Roese <sr@denx.de>
58151
58152 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
58153 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
58154 Date:   Tue Nov 28 16:17:27 2006 -0600
58155
58156     Make fsl-i2c not conflict with SOFT I2C
58157
58158     Signed-off-by: Timur Tabi <timur@freescale.com>
58159
58160 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
58161 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
58162 Date:   Tue Nov 28 16:17:18 2006 -0600
58163
58164     Fix I2C master address initialization.
58165
58166     Signed-off-by: Timur Tabi <timur@freescale.com>
58167
58168 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
58169 Author: Kim Phillips <kim.phillips@freescale.com>
58170 Date:   Tue Nov 28 23:31:19 2006 -0600
58171
58172     Assign maintainers for mpc8349emds and mpc8360emds
58173
58174     Dave for mpc8360emds, and me for mpc8349emds.
58175
58176 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
58177 Author: Kim Phillips <kim.phillips@freescale.com>
58178 Date:   Tue Nov 28 23:28:33 2006 -0600
58179
58180     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
58181
58182     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
58183     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
58184
58185 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
58186 Author: Timur Tabi <timur@freescale.com>
58187 Date:   Tue Nov 28 12:09:35 2006 -0600
58188
58189     mpc83xx: Miscellaneous code style fixes
58190
58191     Implement various code style fixes and similar changes.
58192
58193     Signed-off-by: Timur Tabi <timur@freescale.com>
58194
58195 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
58196 Author: Stefan Roese <sr@denx.de>
58197 Date:   Tue Nov 28 17:55:49 2006 +0100
58198
58199     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
58200
58201     This patch adds the code and configuration necessary to boot with an
58202     arch/powerpc Linux kernel.
58203
58204     Signed-off-by: Grant Likely <grant.likely@gmail.com>
58205     Acked-by: Jon Loeliger <jdl@freescale.com>
58206
58207 commit e732faec95a83cb468b4850ae807c8301dde8f6a
58208 Author: Stefan Roese <sr@denx.de>
58209 Date:   Tue Nov 28 16:09:24 2006 +0100
58210
58211     [PATCH] PPC4xx: 440SP Rev. C detection added
58212
58213     Signed-off-by: Stefan Roese <sr@denx.de>
58214
58215 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
58216 Author: Stefan Roese <sr@denx.de>
58217 Date:   Tue Nov 28 11:04:45 2006 +0100
58218
58219     [PATCH] nand: Fix patch merge problem
58220
58221     Signed-off-by: Stefan Roese <sr@denx.de>
58222
58223 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
58224 Author: Stefan Roese <sr@denx.de>
58225 Date:   Tue Nov 28 11:04:45 2006 +0100
58226
58227     [PATCH] nand: Fix patch merge problem
58228
58229     Signed-off-by: Stefan Roese <sr@denx.de>
58230
58231 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
58232 Author: Wolfgang Denk <wd@pollux.denx.de>
58233 Date:   Mon Nov 27 22:53:53 2006 +0100
58234
58235     Update CHANGELOG
58236
58237 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
58238 Author: Stefan Roese <sr@denx.de>
58239 Date:   Mon Nov 27 17:43:25 2006 +0100
58240
58241     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
58242
58243     Patch below corrects the setting of the zmiifer register, it was
58244     overwritting the register rather than ORing the settings.
58245
58246     Signed-off-by: Neil Wilson <NWilson@airspan.com>
58247     Signed-off-by: Stefan Roese <sr@denx.de>
58248
58249 commit d1a72545296800b7e219f93104ad5836f0003d66
58250 Author: Stefan Roese <sr@denx.de>
58251 Date:   Mon Nov 27 17:34:10 2006 +0100
58252
58253     [PATCH] Select NAND embedded environment from board configuration
58254
58255     The current NAND Bootloader setup forces the environment
58256     variables to be in line with the bootloader. This change
58257     enables the configuration to be made in the board include
58258     file instead so that it can be individually enabled.
58259
58260     Signed-off-by: Nick Spence <nick.spence@freescale.com>
58261     Signed-off-by: Stefan Roese <sr@denx.de>
58262
58263 commit 15784862857c3c2214498defcfed84ff137fb81e
58264 Author: Stefan Roese <sr@denx.de>
58265 Date:   Mon Nov 27 17:22:19 2006 +0100
58266
58267     [PATCH] nand_wait() timeout fixes
58268
58269     Two fixes for the nand_wait() function in
58270     drivers/nand/nand_base.c:
58271
58272     1. Use correct timeouts. The original timeouts in Linux
58273     source are 400ms and 20ms not 40s and 20s
58274
58275     2. Return correct error value in case of timeout. 0 is
58276     interpreted as OK.
58277
58278     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
58279     Signed-off-by: Stefan Roese <sr@denx.de>
58280
58281 commit da5553b095bf04f4f109ad7e565dae3aba47b230
58282 Author: Stefan Roese <sr@denx.de>
58283 Date:   Mon Nov 27 17:04:06 2006 +0100
58284
58285     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
58286
58287     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
58288     arguments to bootm.  It removes the getenv("disable_of") test that used
58289     to be used for this purpose.
58290
58291     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
58292     Acked-by: Jon Loeliger <jdl@freescale.com>
58293
58294 commit a9398e018593782c5fa7d0741955fc1256b34c1e
58295 Author: Wolfgang Denk <wd@pollux.denx.de>
58296 Date:   Mon Nov 27 15:32:42 2006 +0100
58297
58298     Minor code cleanup. Update CHANGELOG.
58299
58300 commit 1729b92cde575476684bffe819d0b7791b57bff2
58301 Author: Stefan Roese <sr@denx.de>
58302 Date:   Mon Nov 27 14:52:04 2006 +0100
58303
58304     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
58305
58306     Signed-off-by: Stefan Roese <sr@denx.de>
58307
58308 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
58309 Author: Stefan Roese <sr@denx.de>
58310 Date:   Mon Nov 27 14:49:51 2006 +0100
58311
58312     [PATCH] alpr: remove unused board specific flash driver
58313
58314     Signed-off-by: Stefan Roese <sr@denx.de>
58315
58316 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
58317 Author: Stefan Roese <sr@denx.de>
58318 Date:   Mon Nov 27 14:48:41 2006 +0100
58319
58320     [PATCH] 4xx: Fix problem with board specific reset code
58321
58322     Signed-off-by: Stefan Roese <sr@denx.de>
58323
58324 commit ec0c2ec725aec9524a177a77ce75559e644a931a
58325 Author: Stefan Roese <sr@denx.de>
58326 Date:   Mon Nov 27 14:46:06 2006 +0100
58327
58328     [PATCH] Remove testing 4xx enet PHY setup
58329
58330     Signed-off-by: Stefan Roese <sr@denx.de>
58331
58332 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
58333 Author: Stefan Roese <sr@denx.de>
58334 Date:   Mon Nov 27 14:12:17 2006 +0100
58335
58336     [PATCH] Update Prodrive ALPR board support (440GX)
58337
58338     Signed-off-by: Stefan Roese <sr@denx.de>
58339
58340 commit 58b485776698c3d71ec5a215e392123b4c15afa3
58341 Author: Markus Klotzbuecher <mk@denx.de>
58342 Date:   Mon Nov 27 11:51:21 2006 +0100
58343
58344     Add a small README with information on the generic ohci driver.
58345
58346 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
58347 Author: Markus Klotzbuecher <mk@denx.de>
58348 Date:   Mon Nov 27 11:46:46 2006 +0100
58349
58350     Fix some endianness issues related to the generic ohci driver
58351
58352 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
58353 Author: Markus Klotzbuecher <mk@denx.de>
58354 Date:   Mon Nov 27 11:44:58 2006 +0100
58355
58356     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
58357     to choose between the old and the generic OHCI drivers.
58358
58359 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
58360 Author: Markus Klotzbuecher <mk@denx.de>
58361 Date:   Mon Nov 27 11:43:09 2006 +0100
58362
58363     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
58364     and adapted board configs TQM5200 and yosemite accordingly. This commit
58365     also makes the maximum number of root hub ports configurable
58366     (CFG_USB_OHCI_MAX_ROOT_PORTS).
58367
58368 commit 78d620ebb5871d252270dedfad60c6568993b780
58369 Author: Wolfgang Denk <wd@atlas.denx.de>
58370 Date:   Thu Nov 23 22:58:58 2006 +0100
58371
58372     Updates for TQM5200 modules:
58373     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
58374     - simplify "udate" definitions
58375
58376 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
58377 Author: Stefan Roese <sr@denx.de>
58378 Date:   Wed Nov 22 13:20:50 2006 +0100
58379
58380     [PATCH] PPC4xx start.S: Fix for processor errata
58381
58382     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
58383     errata 1.12: 440_33 by moving patch up in code.
58384
58385     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
58386     Signed-off-by: Stefan Roese <sr@denx.de>
58387
58388 commit 4ef6251403f637841000e0fef9e832aa01339822
58389 Author: Stefan Roese <sr@denx.de>
58390 Date:   Mon Nov 20 20:39:52 2006 +0100
58391
58392     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
58393
58394     Signed-off-by: Stefan Roese <sr@denx.de>
58395
58396 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
58397 Author: Wolfgang Denk <wd@pollux.denx.de>
58398 Date:   Mon Nov 20 10:28:30 2006 +0100
58399
58400     Update CHANGELOG
58401
58402 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
58403 Author: Stefan Roese <sr@denx.de>
58404 Date:   Mon Nov 13 13:55:24 2006 +0100
58405
58406     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
58407
58408        * Adds support for AMD command set Top Boot flash geometry reversal
58409        * Adds support for reading JEDEC Manufacturer ID and Device ID
58410        * Adds support for displaying command set, manufacturer id and
58411          device ids (flinfo)
58412        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
58413        * Removes outdated change history (refer to git log instead)
58414
58415     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
58416     Signed-off-by: Stefan Roese <sr@denx.de>
58417
58418 commit b21b511d4c50408f4853f46f06b601272196223f
58419 Author: Wolfgang Denk <wd@pollux.denx.de>
58420 Date:   Sun Nov 12 21:13:23 2006 +0100
58421
58422     Update CHANGELOG
58423
58424 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
58425 Author: Bartlomiej Sieka <tur@semihalf.com>
58426 Date:   Sat Nov 11 22:48:22 2006 +0100
58427
58428     Disable the watchdog in the default config for the V38B board.
58429
58430 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
58431 Author: Bartlomiej Sieka <tur@semihalf.com>
58432 Date:   Sat Nov 11 22:43:00 2006 +0100
58433
58434     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
58435     group is enabled for USB earlier (in cpu_init_f() instead of
58436     usb_lowlevel_init()).
58437
58438 commit 91650b3e4de688038d4f71279c44858e3e2c6870
58439 Author: Wolfgang Denk <wd@pollux.denx.de>
58440 Date:   Mon Nov 6 17:06:36 2006 +0100
58441
58442     Sequential accesses to non-existent memory must be synchronized,
58443     at least on G2 cores.
58444
58445     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
58446
58447 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
58448 Author: Timur Tabi <timur@freescale.com>
58449 Date:   Fri Nov 3 19:15:00 2006 -0600
58450
58451     mpc83xx: Update 83xx to use fsl_i2c.c
58452
58453     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
58454     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
58455     Added multiple I2C bus support to fsl_i2c.c.
58456
58457     Signed-off-by: Timur Tabi <timur@freescale.com>
58458
58459 commit d239d74b1c937984bc519083a8e7de373a390f06
58460 Author: Timur Tabi <timur@freescale.com>
58461 Date:   Fri Nov 3 12:00:28 2006 -0600
58462
58463     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
58464
58465     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
58466     tree matches the other 8xxx trees.
58467
58468     Signed-off-by: Timur Tabi <timur@freescale.com>
58469
58470 commit f7fb2e703ec9688541416962724adff70a7322cb
58471 Author: Kim Phillips <kim.phillips@freescale.com>
58472 Date:   Thu Nov 2 19:47:11 2006 -0600
58473
58474     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
58475
58476 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
58477 Author: Dave Liu <daveliu@freescale.com>
58478 Date:   Thu Nov 2 18:05:50 2006 -0600
58479
58480     mpc83xx: Fix the incorrect dcbz operation
58481
58482     The 834x rev1.x silicon has one CPU5 errata.
58483
58484     The issue is when the data cache locked with
58485     HID0[DLOCK], the dcbz instruction looks like no-op inst.
58486
58487     The right behavior of the data cache is when the data cache
58488     Locked with HID0[DLOCK], the dcbz instruction allocates
58489     new tags in cache.
58490
58491     The 834x rev3.0 and later and 8360 have not this bug inside.
58492
58493     So, when 834x rev3.0/8360 are working with ECC, the dcbz
58494     instruction will corrupt the stack in cache, the processor will
58495     checkstop reset.
58496
58497     However, the 834x rev1.x can work with ECC with these code,
58498     because the sillicon has this cache bug. The dcbz will not
58499     corrupt the stack in cache.
58500     Really, it is the fault code running on fault sillicon.
58501
58502     This patch fix the incorrect dcbz operation. Instead of
58503     CPU FP writing to initialise the ECC.
58504
58505     CHANGELOG:
58506     * Fix the incorrect dcbz operation instead of CPU FP
58507     writing to initialise the ECC memory. Otherwise, it
58508     will corrupt the stack in cache, The processor will checkstop
58509     reset.
58510
58511     Signed-off-by: Dave Liu <daveliu@freescale.com>
58512
58513 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
58514 Author: Kim Phillips <kim.phillips@freescale.com>
58515 Date:   Wed Nov 1 00:10:40 2006 -0600
58516
58517     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
58518
58519     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
58520     STDOUT_PATH configuration bits to mpc8349emds,
58521     mpc8349itx, and mpc8360emds board code.
58522
58523     redo environment to use bootm with the fdtaddr
58524     for booting ARCH=powerpc kernels by default,
58525     and provide default fdtaddr values.
58526
58527 commit 48041365b3420589ad464ebc7752e0053538b729
58528 Author: Kim Phillips <kim.phillips@freescale.com>
58529 Date:   Wed Nov 1 00:07:25 2006 -0600
58530
58531     mpc83xx: change ft code to modify local-mac-address property
58532
58533     Update 83xx OF code to update local-mac-address properties
58534     for ethernet instead of the obsolete 'address' property.
58535
58536 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
58537 Author: Timur Tabi <timur@freescale.com>
58538 Date:   Tue Oct 31 21:23:16 2006 -0600
58539
58540     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
58541
58542     This patch also adds an improved I2C set_speed(), which handles all clock
58543     frequencies.
58544
58545     Signed-off-by: Timur Tabi <timur@freescale.com>
58546
58547 commit ac4b5622ce050b5ee1e154b98df630d778661632
58548 Author: Dave Liu <daveliu@freescale.com>
58549 Date:   Tue Oct 31 19:54:59 2006 -0600
58550
58551     mpc83xx: add the README.mpc8360emds
58552
58553     add doc/README.mpc8360emds to accompany the new board support
58554
58555 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
58556 Author: Dave Liu <daveliu@freescale.com>
58557 Date:   Fri Nov 3 12:11:15 2006 -0600
58558
58559     mpc83xx: add QE ethernet support
58560
58561     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
58562
58563 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
58564 Author: Dave Liu <daveliu@freescale.com>
58565 Date:   Fri Nov 3 19:33:44 2006 -0600
58566
58567     mpc83xx: Add MPC8360EMDS basic board support
58568
58569     Add support for the Freescale MPC8360EMDS board.
58570     Includes DDR, DUART, Local Bus, PCI.
58571
58572 commit 23892e49352de74f7fac36ff90bb1be143d195e3
58573 Author: Dave Liu <daveliu@freescale.com>
58574 Date:   Tue Oct 31 19:30:40 2006 -0600
58575
58576     mpc83xx: add the QUICC Engine (QE) immap file
58577
58578     common QE immap file.  Also required for 8360.
58579
58580 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
58581 Author: Dave Liu <daveliu@freescale.com>
58582 Date:   Tue Oct 31 19:25:38 2006 -0600
58583
58584     mpc83xx: Add 8360 specifics to 83xx immap
58585
58586     Mainly add QE device dependencies, with appropriate 8360 protection.
58587     Lindent also run.
58588
58589 commit 988833324a7fda482c8ac3ca23eb539f8232e404
58590 Author: Timur Tabi <timur@freescale.com>
58591 Date:   Tue Oct 31 19:14:41 2006 -0600
58592
58593     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
58594
58595     PREREQUISITE PATCHES:
58596
58597     * This patch can only be applied after the following patches have been applied:
58598
58599       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
58600       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
58601
58602     CHANGELOG:
58603
58604     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
58605       the clock for the 2nd USB board (Linux kernel will hang otherwise),
58606       and fix the CONFIG_BOOTARGS macro.
58607
58608     Signed-off-by: Timur Tabi <timur@freescale.com>
58609
58610 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
58611 Author: Timur Tabi <timur@freescale.com>
58612 Date:   Tue Oct 31 18:44:42 2006 -0600
58613
58614     mpc83xx: Add support for the MPC8349E-mITX
58615
58616     PREREQUISITE PATCHES:
58617
58618     * This patch can only be applied after the following patches have been applied:
58619
58620       1) DNX#2006090742000024 "Add support for multiple I2C buses"
58621       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
58622       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
58623       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
58624       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
58625
58626     CHANGELOG:
58627
58628     * Add support for the Freescale MPC8349E-mITX reference design platform.
58629       The second TSEC (Vitesse 7385 switch) is not supported at this time.
58630
58631     Signed-off-by: Timur Tabi <timur@freescale.com>
58632
58633 commit 183da6d9b446cc12123455844ad1187e2375626f
58634 Author: Ben Warren <bwarren@qstreams.com>
58635 Date:   Tue Sep 12 10:15:53 2006 -0400
58636
58637     Additional MPC8349 support for multibus i2c
58638
58639     Hello,
58640
58641     Here is a patch for a file that was accidentally left out of a previous
58642     attempt.
58643
58644     It accompanies the patch with ticket DNX#2006090742000024
58645
58646     CHANGELOG:
58647             Change PCI initialization to use new multi-bus I2C API.
58648
58649     regards,
58650     Ben
58651
58652 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
58653 Author: Ben Warren <bwarren@qstreams.com>
58654 Date:   Thu Sep 7 16:51:04 2006 -0400
58655
58656     Multi-bus I2C implementation of MPC834x
58657
58658     Hello,
58659
58660     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
58661     family and the MPC8349EMDS board in particular.
58662     This patch requires Patch 1 (Add support for multiple I2C buses).
58663     Testing was performed on a 533MHz board.
58664
58665     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
58666
58667     Signed-off-by: Ben Warren <bwarren@qstreams.com>
58668
58669     CHANGELOG:
58670             Implemented driver-level code to support two I2C buses on the
58671     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
58672     are 50kHz, 100kHz and 400kHz on each bus.
58673
58674     regards,
58675     Ben
58676
58677 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
58678 Author: Ben Warren <bwarren@qstreams.com>
58679 Date:   Thu Sep 7 16:50:54 2006 -0400
58680
58681     Add support for multiple I2C buses
58682
58683     Hello,
58684
58685     Attached is a patch providing support for multiple I2C buses at the
58686     command level.  The second part of the patch includes an implementation
58687     for the MPC834x CPU and MPC8349EMDS board.
58688
58689     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
58690
58691     Signed-off-by: Ben Warren <bwarren@qstreams.com>
58692
58693     Overview:
58694
58695     1. Include new 'i2c' command (based on USB implementation) using
58696     CONFIG_I2C_CMD_TREE.
58697
58698     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
58699     the commands to change bus number and speed are only available under the
58700     new 'i2c' command mentioned in the first bullet.
58701
58702     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
58703     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
58704     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
58705
58706     CHANGELOG:
58707             Added new 'i2c' master command for all I2C interaction.  This is
58708     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
58709     setting I2C bus speed as well as changing the active bus if the board
58710     has more than one (conditionally compiled with
58711     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
58712     Updated README.
58713
58714     regards,
58715     Ben
58716
58717 commit bed85caf872714ebf53013967a695c9d63acfc68
58718 Author: Timur Tabi <timur@freescale.com>
58719 Date:   Tue Oct 31 18:13:36 2006 -0600
58720
58721     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
58722
58723     CHANGELOG:
58724
58725     * Errata DDR6, which affects all current MPC 834x processors, lists changes
58726       required to maintain compatibility with various types of DDR memory.  This
58727       patch implements those changes.
58728
58729     Signed-off-by: Timur Tabi <timur@freescale.com>
58730
58731 commit afd6e470f639883002c7c59d562690a5cb0f4865
58732 Author: Timur Tabi <timur@freescale.com>
58733 Date:   Wed Oct 25 18:45:23 2006 -0500
58734
58735     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
58736
58737 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
58738 Author: Timur Tabi <timur@freescale.com>
58739 Date:   Tue Aug 22 17:07:00 2006 -0500
58740
58741     mpc83xx: Add support for variable flash memory sizes on 83xx systems
58742
58743     CHANGELOG:
58744
58745     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
58746        window registers, instead of using a hard-coded value of 8MB.
58747
58748     Signed-off-by: Timur Tabi <timur@freescale.com>
58749
58750 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
58751 Author: Tanya Jiang <tanya.jiang@freescale.com>
58752 Date:   Thu Aug 3 18:38:13 2006 +0800
58753
58754     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
58755
58756     Unified TQM834x variable names with 83xx and consolidated macro
58757     in preparation for the 8360 and other upcoming 83xx devices.
58758
58759     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
58760
58761 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
58762 Author: Dave Liu <daveliu@freescale.com>
58763 Date:   Wed Oct 25 14:41:21 2006 -0500
58764
58765     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
58766
58767     Incorporated the common unified variable names and the changes in preparation
58768     for releasing mpc8360 patches.
58769
58770     Signed-off-by: Dave Liu <daveliu@freescale.com>
58771
58772 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
58773 Author: Tanya Jiang <tanya.jiang@freescale.com>
58774 Date:   Thu Aug 3 18:36:02 2006 +0800
58775
58776     mpc83xx: Fix missing build for mpc8349emds pci.c
58777
58778     Make pci build for mpc8349emds
58779
58780     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
58781
58782 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
58783 Author: Tanya Jiang <tanya.jiang@freescale.com>
58784 Date:   Thu Aug 3 18:39:49 2006 +0800
58785
58786     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
58787
58788     Removed unused file resetvec.S for mpc83xx cpu
58789
58790     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
58791
58792 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
58793 Author: Nick Spence <Nick.Spence@freescale.com>
58794 Date:   Sat Sep 30 00:32:59 2006 -0700
58795
58796     NAND Flash verify across block boundaries
58797
58798     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
58799     defined
58800     and the write crosses a block boundary. The pointer to the verification
58801     buffer (bufstart) is not being updated to reflect the starting of the
58802     new
58803     block so the verification of the second block fails.
58804
58805     CHANGELOG:
58806
58807     * Fix NAND FLASH page verification across block boundaries
58808
58809 commit f484dc791a3932537213c43c654cc1295c64b84c
58810 Author: Nick Spence <nick.spence@freescale.com>
58811 Date:   Thu Sep 7 07:39:46 2006 -0700
58812
58813     Added RGMII support to the TSECs and Marvell 881111 Phy
58814
58815     Added a phy initialization to adjust the RGMII RX and TX timing
58816     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
58817
58818     Signed-off-by: Nick Spence <nick.spence@freescale.com>
58819
58820 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
58821 Author: roy zang <tie-fei.zang@freescale.com>
58822 Date:   Fri Nov 3 13:10:00 2006 +0800
58823
58824     Remove some unused CFG define.
58825     undef CFG_DRAM_TEST
58826
58827 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
58828 Author: roy zang <tie-fei.zang@freescale.com>
58829 Date:   Fri Nov 3 13:07:36 2006 +0800
58830
58831     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
58832     Both work. 0xFF000000 seems more reasonable.
58833
58834 commit c59200443072353044aa4bf737a5a60f9a9af231
58835 Author: Wolfgang Denk <wd@pollux.denx.de>
58836 Date:   Thu Nov 2 15:15:01 2006 +0100
58837
58838     Release U-Boot 1.1.6
58839
58840 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
58841 Author: roy zang <tie-fei.zang@freescale.com>
58842 Date:   Thu Nov 2 19:14:48 2006 +0800
58843
58844     This patch comes from Yuli's posted patch on 8/8/2006
58845     titled "CFI Driver Little-Endian write Issue".
58846
58847     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
58848
58849     If that patch applied, please discard this one.
58850     Until now , I do not see his patch is applied. So please apply this one.
58851
58852     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
58853     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58854
58855 commit b825f158e449e1e9cf74c08e572955e122394c96
58856 Author: roy zang <tie-fei.zang@freescale.com>
58857 Date:   Thu Nov 2 19:12:31 2006 +0800
58858
58859     Tsi108 on chip i2c support.
58860
58861     The i2c  Interface provides a master-only, serial interface that can be
58862     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
58863     device reset.
58864
58865     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58866     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58867
58868 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
58869 Author: roy zang <tie-fei.zang@freescale.com>
58870 Date:   Thu Nov 2 19:11:06 2006 +0800
58871
58872     Tsi108 on chip pci controller support.
58873
58874     If there is no pci card, the tsi108/109 pci configure read will
58875     cause a machine check exception to the processor. PCI error should
58876     also be cleared after the read.
58877
58878     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58879     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58880
58881 commit d1927cee977126e547ceeba23e4f978f377cfb8f
58882 Author: roy zang <tie-fei.zang@freescale.com>
58883 Date:   Thu Nov 2 19:08:55 2006 +0800
58884
58885     Tundra tsi108 on chip Ethernet controller support.
58886
58887     The following is a brief description of the Ethernet controller:
58888     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
58889     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
58890     to manage the two physical connection devices (PHYs).  Each Ethernet port
58891     has its own statistics monitor that tracks and reports key interface
58892     statistics.  Each port supports a 256-entry hash table for address
58893     filtering.  In addition, each port is bridged to the Switch Fabric
58894     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
58895
58896     Each Ethernet port also has a pair of internal Ethernet DMA channels to
58897     support the transmit and receive data flows.  The Ethernet DMA channels
58898     use descriptors set up in memory, the memory map of the device, and
58899     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
58900     handles arbitration for the Switch Fabric.  The Controller also
58901     has a register businterface for register accesses and status monitor
58902     control.
58903
58904     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
58905     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
58906     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
58907     data flows to and from the Ethernet Controller through the Switch Fabric.
58908
58909     Each Ethernet port uses its transmit and receive DMA channels to manage
58910     data flows through buffer descriptors that are predefined by the
58911     system (the descriptors can exist anywhere in the system memory map).
58912     These descriptors are data structures that point to buffers filled
58913     with data ready to transmit over Ethernet, or they point to empty
58914     buffers ready to receive data from Ethernet.
58915
58916     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58917     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58918
58919 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
58920 Author: roy zang <tie-fei.zang@freescale.com>
58921 Date:   Thu Nov 2 19:01:33 2006 +0800
58922
58923     Tundra tsi108 header file.
58924
58925     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
58926     PowerPC processors that offers numerous system interconnect options for
58927     embedded application designers. The Tsi108 can interconnect 60x or
58928     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
58929     and Flash. Provided the macro define for tsi108 chip.
58930
58931     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58932     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58933
58934 commit 87c4db09699c6b89176b31004afcb83eb1585d47
58935 Author: roy zang <tie-fei.zang@freescale.com>
58936 Date:   Thu Nov 2 18:59:15 2006 +0800
58937
58938     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58939     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
58940
58941     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58942     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58943
58944 commit 27801b8ab11c61b577e45742a515bb3b23b80241
58945 Author: roy zang <tie-fei.zang@freescale.com>
58946 Date:   Thu Nov 2 18:57:21 2006 +0800
58947
58948     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58949     Make ,config.mk and link file for the mpc7448hpc2 board.
58950
58951     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58952     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58953
58954 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
58955 Author: roy zang <tie-fei.zang@freescale.com>
58956 Date:   Thu Nov 2 18:55:04 2006 +0800
58957
58958     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58959     The mpc7448hpc2 board support header file.
58960
58961     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58962     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58963
58964 commit 625bb5ddb50b243f931262ca8c46956409471917
58965 Author: roy zang <tie-fei.zang@freescale.com>
58966 Date:   Thu Nov 2 18:52:21 2006 +0800
58967
58968     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58969     The mpc7448hpc2 board support low level assemble language init code.
58970
58971     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58972     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58973
58974 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
58975 Author: roy zang <tie-fei.zang@freescale.com>
58976 Date:   Thu Nov 2 18:49:51 2006 +0800
58977
58978     General code modification for mpc7448hpc2 board support.
58979     1. Add 7447A and 7448 processor support.
58980     2. Add the following flags.
58981
58982     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
58983     (such as by switch on board), this flag should be set.
58984
58985     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
58986     relocates to RAM, this flag should be set.
58987
58988     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
58989     system hang in exception, this flag should be set.
58990
58991     There is a design issue for tsi108/109 pci configure  read. When pci scan
58992     the slots, if there is no pci card, the tsi108/9 will cause a machine
58993     check exception for mpc7448 processor.
58994
58995     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58996     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58997
58998 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
58999 Author: roy zang <tie-fei.zang@freescale.com>
59000 Date:   Thu Nov 2 18:34:47 2006 +0800
59001
59002     Add README file for mpc7448hpc2 board.
59003     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
59004
59005 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
59006 Author: Bartlomiej Sieka <tur@semihalf.com>
59007 Date:   Wed Nov 1 02:04:38 2006 +0100
59008
59009     Finish up support for MarelV38B board
59010      - add watchdog support
59011      - enable GPIO_WKUP_7 pin for input
59012      - code cleanup
59013
59014 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
59015 Author: Bartlomiej Sieka <tur@semihalf.com>
59016 Date:   Wed Nov 1 01:45:46 2006 +0100
59017
59018     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
59019           * remove warnings when compiling ethaddr.c
59020           * adjust linker script (fixes a crash resulting from incorrect
59021           definition of __u_boot_cmd_start)
59022     - Some MarelV38B code cleanup.
59023
59024 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
59025 Author: Bartlomiej Sieka <tur@semihalf.com>
59026 Date:   Wed Nov 1 01:38:16 2006 +0100
59027
59028     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
59029       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
59030       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
59031       MPC5XXX_WU_GPIO_DATA_O for affected boards.
59032
59033     - Add defintions for some MPC5XXX GPIO pins.
59034
59035 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
59036 Author: Bartlomiej Sieka <tur@semihalf.com>
59037 Date:   Wed Nov 1 01:34:29 2006 +0100
59038
59039     Changed MarelV38B board make target to lowercase. Config file cleanup.
59040
59041 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
59042 Author: Wolfgang Denk <wd@pollux.denx.de>
59043 Date:   Sun Oct 29 01:03:51 2006 +0200
59044
59045     Automatically adjust ARFLAGS so "make -s" is really silent.
59046
59047 commit fae684e89844856383bdf101440889557df3e6b1
59048 Author: Stefan Roese <sr@denx.de>
59049 Date:   Sat Oct 28 16:45:00 2006 +0200
59050
59051     [PATCH] omap925.c: Remove unused functions
59052
59053     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
59054     Signed-off-by: Stefan Roese <sr@denx.de>
59055
59056 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
59057 Author: Stefan Roese <sr@denx.de>
59058 Date:   Sat Oct 28 17:12:58 2006 +0200
59059
59060     [PATCH] Add some missing machtypes for netstar & voiceblue boards
59061
59062     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
59063     numbers in code.
59064
59065     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
59066     Signed-off-by: Stefan Roese <sr@denx.de>
59067
59068 commit 856f054410cef52d868feb330168b2a4c4091328
59069 Author: Stefan Roese <sr@denx.de>
59070 Date:   Sat Oct 28 15:55:52 2006 +0200
59071
59072     [PATCH] NAND: Partition name support added to NAND subsystem
59073
59074     chpart, nboot and NAND subsystem related commands now accept also partition
59075     name to specify offset.
59076
59077     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
59078     Signed-off-by: Stefan Roese <sr@denx.de>
59079
59080 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
59081 Author: Wolfgang Denk <wd@pollux.denx.de>
59082 Date:   Sat Oct 28 02:29:44 2006 +0200
59083
59084     Update CHANGELOG.
59085
59086 commit 2751a95abd1b96911081c357e96a12fa97b40dee
59087 Author: Wolfgang Denk <wd@pollux.denx.de>
59088 Date:   Sat Oct 28 02:29:14 2006 +0200
59089
59090     Enable commandline editing and hush shell on all TQM boards.
59091
59092 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
59093 Author: Wolfgang Denk <wd@pollux.denx.de>
59094 Date:   Sat Oct 28 02:28:02 2006 +0200
59095
59096     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
59097
59098 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
59099 Author: Wolfgang Denk <wd@denx.de>
59100 Date:   Sat Oct 28 01:14:32 2006 +0200
59101
59102     Check for illegal character '=' in environment variable names.
59103
59104     Make sure the string passed as variable name does not contain a '='
59105     character. This not only prevents the common error or typing
59106     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
59107     also closes a backdoor which allowed to delete write-protected
59108     environment variables, for example by using "setenv ethaddr=".
59109
59110 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
59111 Author: Wolfgang Denk <wd@pollux.denx.de>
59112 Date:   Sat Oct 28 00:38:39 2006 +0200
59113
59114     Minor code cleanup.
59115
59116 commit e11887a77d81077416a2d1c5e0354916fee8c034
59117 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
59118 Date:   Thu Oct 26 17:55:31 2006 +0200
59119
59120     Don't pass any debug options directly to the assembler
59121
59122     When passing the -g option to gcc, gcc automatically selects a
59123     suitable --g<format> option to pass on to the assembler.
59124     Thus, there's no point in forcing a specific debug option on the
59125     assembler using the -Wa mechanism.
59126
59127     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59128
59129 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
59130 Author: Jon Loeliger <jdl@freescale.com>
59131 Date:   Fri Oct 27 07:47:22 2006 -0500
59132
59133     MPC86xx: Cleaned up unused and conditionally used local variables.
59134
59135     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59136
59137 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
59138 Author: Wolfgang Denk <wd@pollux.denx.de>
59139 Date:   Fri Oct 27 11:55:21 2006 +0200
59140
59141     Fix "ar" flags in some Makefiles to allow for silent "make -s"
59142
59143 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
59144 Author: Ben Warren <bwarren@qstreams.com>
59145 Date:   Thu Oct 26 14:38:25 2006 -0400
59146
59147     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
59148     to a TSEC (e.g. a switch is connected via RMII) or
59149     if the PHY is defective/incorrectly configured.
59150
59151     Signed-off-by: Ben Warren <bwarren@qstreams.com>
59152
59153 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
59154 Author: Ben Warren <bwarren@qstreams.com>
59155 Date:   Thu Oct 26 14:38:25 2006 -0400
59156
59157     Fix TSEC driver: avoid crashes if PHY is not attached
59158     to a TSEC (e.g. a switch is connected via RMII) or
59159     if the PHY is defective/incorrectly configured.
59160
59161     Signed-off-by: Ben Warren <bwarren@qstreams.com>
59162
59163 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
59164 Author: Wolfgang Denk <wd@pollux.denx.de>
59165 Date:   Thu Oct 26 16:24:31 2006 +0200
59166
59167     Code cleanup.
59168
59169 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
59170 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
59171 Date:   Wed Oct 25 15:48:59 2006 +0200
59172
59173     Finish up support for the ATSTK1000/ATSTK1002 boards
59174
59175     Add atstk1002_config target to Makefile and move the AVR32 section
59176     down below Blackfin so that it doesn't end up in the middle of
59177     MIPS.
59178
59179     Drop the autogenerated linker script thing for now. Will have to
59180     revisit how to handle chips with different flash and RAM layout
59181     later.
59182
59183     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59184
59185 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
59186 Author: Kumar Gala <galak@kernel.crashing.org>
59187 Date:   Tue Oct 24 23:47:37 2006 -0500
59188
59189     Added support for Multi-Image files that contain a device tree
59190
59191     If a Multi-Image file contains a third image we try to use it as a
59192     device tree.  The device tree image is assumed to be uncompressed in the
59193     image file.  We automatically allocate space for the device tree in memory
59194     and provide an 8k pad to allow more than a reasonable amount of growth.
59195
59196     Additionally, a device tree that was contained in flash will now automatically
59197     get copied to system memory as part of boot.  Previously an error was
59198     reported if one tried to boot a device tree that was in flash.
59199
59200     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59201
59202 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
59203 Author: Wolfgang Denk <wd@denx.de>
59204 Date:   Tue Oct 24 21:35:55 2006 +0200
59205
59206     Switch to automatically generated CHANGELOG file.
59207     (use "make CHANGELOG" to update it from time to time)
59208
59209 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
59210 Author: Stefan Roese <sr@denx.de>
59211 Date:   Tue Oct 24 18:06:48 2006 +0200
59212
59213     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
59214     Patch by Stefan Roese, 24 Oct 2006
59215
59216 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
59217 Author: Wolfgang Denk <wd@pollux.denx.de>
59218 Date:   Tue Oct 24 17:24:55 2006 +0200
59219
59220     Merge with /home/wd/git/u-boot/master
59221
59222 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
59223 Author: Wolfgang Denk <wd@pollux.denx.de>
59224 Date:   Tue Oct 24 15:32:57 2006 +0200
59225
59226     Code cleanup
59227
59228 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
59229 Author: Wolfgang Denk <wd@pollux.denx.de>
59230 Date:   Tue Oct 24 14:51:36 2006 +0200
59231
59232     Move atstk1000 files into vendor specific directory.
59233     Patch by Haavard Skinnemoen, 12 Sep 2006
59234
59235 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
59236 Author: Wolfgang Denk <wd@pollux.denx.de>
59237 Date:   Tue Oct 24 14:42:37 2006 +0200
59238
59239     Add ATSTK1000 and ATSTK1002 board support
59240     Patch by Haavard Skinnemoen, 06 Sep 2006
59241
59242     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
59243     daughterboard.
59244
59245     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
59246     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
59247     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
59248     CompactFlash cards. For more information, please see this page:
59249
59250     http://www.atmel.com/dyn/products/tools.asp?family_id=682
59251
59252     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
59253     AT32AP7000 chip.
59254
59255     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59256
59257 commit f93ae788c3640fcde5db383471d45548ff4060d0
59258 Author: Wolfgang Denk <wd@pollux.denx.de>
59259 Date:   Tue Oct 24 14:31:24 2006 +0200
59260
59261     Add common serial driver for Atmel AT32 and AT91 chips
59262     Patch by Haavard Skinnemoen, 06 Sep 2006
59263
59264     This is a first attempt at creating a common serial driver for Atmel
59265     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
59266     be possible to support AT91RM9200 and other ARM-based chips with some
59267     minor modifications.
59268
59269     There's nothing fundamentally AVR32-specific in this driver, but it
59270     does use some features which are currently only defined for the
59271     AT32AP CPU port:
59272       * pm_get_clock_freq: Obtain the clock frequency of a given domain
59273       * gd->console_uart: A "struct device" containing information about
59274         register mappings, gpio resources and clocks associated with the
59275         UART device.
59276
59277     For more information about these features, please see the "AT32AP
59278     CPU" patch.
59279
59280 commit 72a087e04705c26cad982879ebd06b5281bf825a
59281 Author: Wolfgang Denk <wd@pollux.denx.de>
59282 Date:   Tue Oct 24 14:27:35 2006 +0200
59283
59284     Add AT32AP CPU and AT32AP7000 SoC support
59285     Patch by Haavard Skinnemoen, 06 Sep 2006
59286
59287     This patch adds support for the AT32AP CPU family and the AT32AP7000
59288     chip, which is the first chip implementing the AVR32 architecture.
59289
59290     The AT32AP CPU core is a high-performance implementation featuring a
59291     7-stage pipeline, separate instruction- and data caches, and a MMU.
59292     For more information, please see the "AVR32 AP Technical Reference":
59293
59294     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
59295
59296     In addition to this, the AT32AP7000 chip comes with a large set of
59297     integrated peripherals, many of which are shared with the AT91 series
59298     of ARM-based microcontrollers from Atmel. Full data sheet is
59299     available here:
59300
59301     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
59302
59303     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59304
59305 commit 7b64fef33c66be648826c0ff9758298ef13d0604
59306 Author: Wolfgang Denk <wd@pollux.denx.de>
59307 Date:   Tue Oct 24 14:21:16 2006 +0200
59308
59309     Add AVR32 architecture support
59310     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
59311
59312     This patch adds common infrastructure code for the Atmel AVR32
59313     architecture. See doc/README.AVR32 for details.
59314
59315     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59316
59317 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
59318 Author: Wolfgang Denk <wd@pollux.denx.de>
59319 Date:   Tue Oct 24 13:57:33 2006 +0200
59320
59321     Use -g instead of -gstabs in AFLAGS_DEBUG
59322     Patch by Haavard Skinnemoen, 30 Aug 2006
59323
59324     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
59325     matter what the target's preferred debugging format is. This patch
59326     simply replaces -gstabs with -g, so that the default debugging format
59327     for the architecture is used.
59328
59329 commit 965829872169c2996023840d98e1d85ad148d629
59330 Author: Wolfgang Denk <wd@pollux.denx.de>
59331 Date:   Tue Oct 24 13:55:18 2006 +0200
59332
59333     Fix/workaround broken dependency handling with make 3.81
59334     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
59335
59336 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
59337 Author: Marian Balakowicz <m8@semihalf.com>
59338 Date:   Mon Oct 23 22:17:05 2006 +0200
59339
59340     Fix sequoia separate object direcory building problems.
59341
59342 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
59343 Author: Jon Loeliger <jdl@freescale.com>
59344 Date:   Fri Oct 20 17:16:35 2006 -0500
59345
59346     Use generic I2C register block on 85xx and 86xx.
59347
59348     Replace private IMMAP I2C structures with generic reg block
59349     and allow 86xx to have multiple I2C device busses.
59350
59351     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59352
59353 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
59354 Author: Jon Loeliger <jdl@freescale.com>
59355 Date:   Fri Oct 20 15:54:34 2006 -0500
59356
59357     Fix compilation warnings on a few 85xx boards.
59358
59359     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59360
59361 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
59362 Author: Jon Loeliger <jdl@freescale.com>
59363 Date:   Fri Oct 20 15:50:15 2006 -0500
59364
59365     Converted all 85xx boards to use a common FSL I2C driver.
59366     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
59367     And removed hard i2c path from a few u-boot.lds scipts too.
59368     Minor whitespace cleanups along the way.
59369
59370     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59371
59372 commit 4d45f69e362b05892c9e92a7907e5820995612aa
59373 Author: Jon Loeliger <jdl@freescale.com>
59374 Date:   Thu Oct 19 12:02:24 2006 -0500
59375
59376     Rewrite a series of goto statements as a sequences of
59377     conditional expressions instead.
59378
59379     Use consistent return code 0/-1 for good/bad indicators.
59380
59381     Include one fewer file if the driver isn't used at all.
59382
59383     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59384
59385 commit 7237c033b02fe295880435f1eb80819a0c987532
59386 Author: Jon Loeliger <jdl@freescale.com>
59387 Date:   Thu Oct 19 11:02:16 2006 -0500
59388
59389     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
59390
59391     in an effort to begin to unify the umpteen FSL I2C drivers that
59392     are all otherwise very similar.
59393
59394     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59395
59396 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
59397 Author: Jon Loeliger <jdl@freescale.com>
59398 Date:   Thu Oct 19 11:33:52 2006 -0500
59399
59400     * Fix a bunch of compiler warnings for gcc 4.0
59401
59402     Signed-off-by: Matthew McClintock <msm@freescale.com>
59403
59404 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
59405 Author: Stefan Roese <sr@denx.de>
59406 Date:   Tue Oct 17 06:14:31 2006 +0200
59407
59408     Add monitor functions for indirect access to PPC440 DCR's
59409     Patch by Leonid Baryudin, 12 Oct 2006
59410
59411 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
59412 Author: Jon Loeliger <jdl@freescale.com>
59413 Date:   Fri Oct 13 16:47:53 2006 -0500
59414
59415     Fixed leading whitespace issues.
59416     Removed spurious LAWAR thing.
59417
59418     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59419
59420 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
59421 Author: Jon Loeliger <jdl@freescale.com>
59422 Date:   Thu Oct 12 10:42:36 2006 -0500
59423
59424     Remove unneeded include files and local variable.
59425
59426     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59427
59428 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
59429 Author: Grant Likely <grant.likely@secretlab.ca>
59430 Date:   Tue Oct 10 00:23:32 2006 -0600
59431
59432     Fix possible uninitialized variable compiler warning.
59433
59434     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
59435     do_bootm_linux() may be uninitialized.  There is no possibility in the
59436     current code that len will get used uninitialized, but this fix follows
59437     the existing convention of setting both len and data to zero at the same
59438     time.
59439
59440     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
59441
59442 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
59443 Author: Matthew McClintock <msm@freescale.com>
59444 Date:   Wed Oct 11 15:13:01 2006 -0500
59445
59446     * Fix a bunch of compiler warnings for gcc 4.0
59447
59448     Signed-off-by: Matthew McClintock <msm@freescale.com>
59449
59450 commit bf651baa365e5447246aad6a633ccd667cf24a39
59451 Author: Jon Loeliger <jdl@freescale.com>
59452 Date:   Wed Oct 11 10:10:43 2006 -0500
59453
59454     Move "ar" flags to config.mk to allow for silent "make -s"
59455
59456 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
59457 Author: Jon Loeliger <jdl@freescale.com>
59458 Date:   Tue Oct 10 17:19:03 2006 -0500
59459
59460     Coding style changes to remove local varible blocks
59461     and reformat a bit nicer.
59462
59463 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
59464 Author: Jon Loeliger <jdl@freescale.com>
59465 Date:   Tue Oct 10 17:16:04 2006 -0500
59466
59467     Fix whitespace issues.
59468
59469 commit 7b382b7125f2397cce63253df62f183e3dfa2770
59470 Author: Jon Loeliger <jdl@freescale.com>
59471 Date:   Tue Oct 10 17:14:45 2006 -0500
59472
59473     Fix whitespace issues.
59474
59475 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
59476 Author: Jon Loeliger <jdl@freescale.com>
59477 Date:   Tue Oct 10 17:06:53 2006 -0500
59478
59479     Fix whitespace issues.
59480
59481 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
59482 Author: Jon Loeliger <jdl@freescale.com>
59483 Date:   Tue Oct 10 17:03:43 2006 -0500
59484
59485     Ran lindent and cleaned up whitespace issues.
59486     Format for 80-columns too.
59487
59488 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
59489 Author: Jon Loeliger <jdl@freescale.com>
59490 Date:   Tue Oct 10 17:02:22 2006 -0500
59491
59492     Fix whitespace and 80-col issues.
59493
59494 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
59495 Author: Stefan Roese <sr@denx.de>
59496 Date:   Sat Oct 7 11:36:51 2006 +0200
59497
59498     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
59499     Patch by Stefan Roese, 07 Oct 2006
59500
59501 commit 5bc528fa4da751d472397b308137238a6465afd2
59502 Author: Stefan Roese <sr@denx.de>
59503 Date:   Sat Oct 7 11:35:25 2006 +0200
59504
59505     Update ALPR code (NAND support working now)
59506     Patch by Stefan Roese, 07 Oct 2006
59507
59508 commit 77d5034847d328753b80c46b83f960a14a26f40e
59509 Author: Stefan Roese <sr@denx.de>
59510 Date:   Sat Oct 7 11:33:03 2006 +0200
59511
59512     Remove compile warnings in fpga code
59513     Patch by Stefan Roese, 07 Oct 2006
59514
59515 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
59516 Author: Stefan Roese <sr@denx.de>
59517 Date:   Sat Oct 7 11:30:52 2006 +0200
59518
59519     Add CONFIG_BOARD_RESET to configure board specific reset function
59520     Patch by Stefan Roese, 07 Oct 2006
59521
59522 commit f55df18187e7a45cb73fec4370d12135e6691ae1
59523 Author: John Traill <john.traill@freescale.com>
59524 Date:   Fri Sep 29 08:23:12 2006 +0100
59525
59526     Fix missing tCycle/modfreq calculation.
59527
59528     Signed-off-by: John Traill <john.traill@freescale.com>
59529
59530 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
59531 Author: Andy Fleming <afleming@freescale.com>
59532 Date:   Wed Sep 13 10:33:35 2006 -0500
59533
59534     Updated config headers to add default FDT-based booting
59535
59536 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
59537 Author: Andy Fleming <afleming@freescale.com>
59538 Date:   Wed Sep 13 10:34:18 2006 -0500
59539
59540     Add support for eTSEC 3 & 4 on 8548 CDS
59541
59542     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
59543       This will only work on rev 1.3 boards (but doesn't break older boards)
59544     * Cleaned up some comments to reflect the expanded role of tsec
59545       in other systems
59546
59547 commit 084d648b109c8984f83674043c1a7fa3885ef801
59548 Author: Andy Fleming <afleming@freescale.com>
59549 Date:   Wed Sep 13 10:33:56 2006 -0500
59550
59551     Added code to support 2.6.18 PCI changes in u-boot
59552
59553     * Added code to swizzle the IRQ map for the PCI
59554
59555 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
59556 Author: Jon Loeliger <jdl@freescale.com>
59557 Date:   Tue Sep 19 09:34:10 2006 -0500
59558
59559     Modified makefile for new build mechanism.
59560
59561     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59562
59563 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
59564 Author: Jon Loeliger <jdl@freescale.com>
59565 Date:   Thu Sep 14 08:40:36 2006 -0500
59566
59567     Handle 86xx SVR values according to the new Reference Manual.
59568     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
59569     by the byte in bits 16-23 instead.
59570     Thanks to Jason Jin for noticing.
59571
59572     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59573
59574 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
59575 Author: Zhang Wei <wei.zhang@freescale.com>
59576 Date:   Mon Aug 28 14:25:31 2006 +0800
59577
59578     Fixed an OF-tree off-by-one bug when adding a new property name.
59579     This bug will cause the kernel booting to pause a long time.
59580
59581     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59582     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
59583
59584 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
59585 Author: Jon Loeliger <jdl@freescale.com>
59586 Date:   Tue Aug 29 11:05:09 2006 -0500
59587
59588     Remove trailing empty lines.
59589
59590 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
59591 Author: Jon Loeliger <jdl@freescale.com>
59592 Date:   Tue Aug 29 09:48:49 2006 -0500
59593
59594     Remove bogus msync and use volatile asm.
59595
59596 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
59597 Author: Jon Loeliger <jdl@freescale.com>
59598 Date:   Tue Aug 29 08:17:14 2006 -0500
59599
59600     Add myself as maintainer for MPC8641HPCN.
59601
59602 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
59603 Author: Zhang Wei <wei.zhang@freescale.com>
59604 Date:   Mon Aug 28 14:25:31 2006 +0800
59605
59606     Fixed an OF-tree off-by-one bug when adding a new property name.
59607     This bug will cause the kernel booting to pause a long time.
59608
59609     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59610
59611 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
59612 Author: Haiying Wang <haiying.wang@freescale.com>
59613 Date:   Fri Aug 25 14:38:34 2006 -0400
59614
59615     Change ramdiskaddr and dtbaddr
59616     Remove PEX fluff commands.
59617
59618     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
59619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59620
59621 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
59622 Author: Matthew McClintock <msm@freescale.com>
59623 Date:   Wed Aug 23 13:32:45 2006 -0500
59624
59625     * Another small fix for booting with disable_of
59626
59627     Signed-off-by: Matthew McClintock <msm@freescale.com>
59628
59629 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
59630 Author: Jon Loeliger <jdl@freescale.com>
59631 Date:   Wed Aug 23 11:04:43 2006 -0500
59632
59633     Cleanup and lindent new AHCI driver.
59634
59635 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
59636 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
59637 Date:   Wed Aug 23 19:15:12 2006 +0800
59638
59639     Add AHCI define and sata support for MPC8641HPCN board.
59640
59641     Signed-off-by:Jason Jin<jason.jin@freescale.com>
59642
59643 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
59644 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
59645 Date:   Wed Aug 23 19:10:44 2006 +0800
59646
59647     Add AHCI support to u-boot
59648
59649     Add AHCI support in u-boot, enable the sata disk controllers which
59650     following the AHCI protocol.
59651
59652     Signed-off-by:Jason Jin<jason.jin@freescale.com>
59653
59654 commit d8ea2acf5f137cae99417df4f573d036ee384668
59655 Author: Zhang Wei <wei.zhang@freescale.com>
59656 Date:   Wed Aug 23 17:54:32 2006 +0800
59657
59658     Add dtb boot-up parameter to default boot commands.
59659
59660     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59661
59662 commit b93775c2036b99baa390ea425c4771895bbc63c4
59663 Author: Jon Loeliger <jdl@freescale.com>
59664 Date:   Tue Aug 22 18:26:08 2006 -0500
59665
59666     Cleanup even more poorly introduced whitespace.
59667
59668 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
59669 Author: Jon Loeliger <jdl@freescale.com>
59670 Date:   Tue Aug 22 18:07:00 2006 -0500
59671
59672     Cleanup more poorly introduced whitespace.
59673
59674 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
59675 Author: Jon Loeliger <jdl@freescale.com>
59676 Date:   Tue Aug 22 17:54:05 2006 -0500
59677
59678     Cleanup poorly introduced whitespace.
59679
59680 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
59681 Author: Jon Loeliger <jdl@freescale.com>
59682 Date:   Tue Aug 22 12:25:27 2006 -0500
59683
59684     General indent and whitespace cleanups.
59685
59686 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
59687 Author: Jon Loeliger <jdl@freescale.com>
59688 Date:   Tue Aug 22 12:06:18 2006 -0500
59689
59690     General indent and whitespace cleanups.
59691
59692 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
59693 Author: Jon Loeliger <jdl@freescale.com>
59694 Date:   Tue Aug 22 10:42:21 2006 -0500
59695
59696     Cleanup compiler warnings.
59697
59698 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
59699 Author: Matthew McClintock <msm@freescale.com>
59700 Date:   Tue Aug 22 09:31:59 2006 -0500
59701
59702     Fix disable_of booting
59703
59704     Signed-off-by: Matthew McClintock <msm@freescale.com>
59705
59706 commit 87a449c8ac396420cb24260f717ea9e6faa82047
59707 Author: Matthew McClintock <msm@freescale.com>
59708 Date:   Tue Aug 22 09:23:55 2006 -0500
59709
59710     Support for FDT in uImage format, error when using FDT from flash
59711
59712     Signed-off-by: Matthew McClintock <msm@freescale.com>
59713
59714 commit 75c299c38369d01addd5e054b8a16217b70f4a86
59715 Author: Haiying Wang <haiying.wang@freescale.com>
59716 Date:   Tue Aug 15 15:12:55 2006 -0400
59717
59718     Unlock cache before kernel starts up for MPC86xx
59719
59720 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
59721 Author: Haiying Wang <haiying.wang@freescale.com>
59722 Date:   Tue Aug 15 15:13:15 2006 -0400
59723
59724     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
59725
59726 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
59727 Author: Haiying Wang <haiying.wang@freescale.com>
59728 Date:   Tue Aug 15 15:12:55 2006 -0400
59729
59730     Unlock cache before kernel starts up for MPC86xx
59731
59732 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
59733 Author: Haiying Wang <haiying.wang@freescale.com>
59734 Date:   Tue Aug 15 15:13:15 2006 -0400
59735
59736     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
59737
59738 commit 86c8e17f25e972a7e272950a0735fad84e082b88
59739 Author: Matthew McClintock <msm@freescale.com>
59740 Date:   Wed Aug 16 13:59:47 2006 -0500
59741
59742     * Fix disable_of booting
59743
59744     Signed-off-by: Matthew McClintock <msm@freescale.com>
59745
59746 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
59747 Author: Matthew McClintock <msm@freescale.com>
59748 Date:   Wed Aug 16 10:54:09 2006 -0500
59749
59750     * Support for FDT in uImage format, error when using FDT from flash
59751
59752     Signed-off-by: Matthew McClintock <msm@freescale.com>
59753
59754 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
59755 Author: Stefan Roese <sr@denx.de>
59756 Date:   Tue Aug 15 14:22:35 2006 +0200
59757
59758     Add initial support for the ALPR board from Prodrive
59759     NAND needs some additional testing
59760     Patch by Heiko Schocher, 15 Aug 2006
59761
59762 commit f0ff4692ff3372dec55074a8eb444943ab095abb
59763 Author: Stefan Roese <sr@denx.de>
59764 Date:   Tue Aug 15 14:15:51 2006 +0200
59765
59766     Add FPGA Altera Cyclone 2 support
59767     Patch by Heiko Schocher, 15 Aug 2006
59768
59769 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
59770 Author: Jon Loeliger <jdl@freescale.com>
59771 Date:   Mon Aug 14 15:33:38 2006 -0500
59772
59773     Fix BAT0 to actually be cacheable, non-guarded as documented.
59774
59775     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59776
59777 commit 40bc83559db5745681909fd7382ae509567e116d
59778 Author: Jon Loeliger <jdl@freescale.com>
59779 Date:   Wed Aug 9 15:32:16 2006 -0500
59780
59781     Removed MPC8641HPCN DTS source file from build.
59782     It is no longer linked into U-Boot; its sources are
59783     now located in the kernel tree.
59784
59785     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59786
59787 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
59788 Author: Matthew McClintock <msm@freescale.com>
59789 Date:   Wed Jun 28 10:47:03 2006 -0500
59790
59791     * Switched default PCI speed for 8540 ADS back to 33MHz
59792
59793     * Added comments and a printf to warn that PCI-X won't
59794       work at 33MHz
59795       Patch by Andy Fleming 17-Mar-2006
59796
59797     Signed-off-by: Andy Fleming <afleming@freescale.com>
59798
59799 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
59800 Author: Matthew McClintock <msm@freescale.com>
59801 Date:   Wed Jun 28 10:46:35 2006 -0500
59802
59803     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
59804
59805     Signed-off-by: Andy Fleming <afleming@freescale.com>
59806
59807 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
59808 Author: Matthew McClintock <msm@freescale.com>
59809 Date:   Wed Jun 28 10:46:13 2006 -0500
59810
59811     * Added VIA configuration table
59812
59813     * Added support for PCI2 on CDS
59814       Patch by Andy Fleming 17-Mar-2006
59815
59816     Signed-off-by: Andy Fleming <afleming@freescale.com>
59817
59818 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
59819 Author: Matthew McClintock <msm@freescale.com>
59820 Date:   Wed Jun 28 10:45:41 2006 -0500
59821
59822     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
59823
59824     Signed-off-by: Andy Fleming <afleming@freescale.com>
59825
59826 commit 97074ed9655309b64231bc2cee69fe85399f8055
59827 Author: Matthew McClintock <msm@freescale.com>
59828 Date:   Wed Jun 28 10:45:17 2006 -0500
59829
59830     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
59831
59832     Signed-off-by: Andy Fleming <afleming@freescale.com>
59833
59834 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
59835 Author: Matthew McClintock <msm@freescale.com>
59836 Date:   Wed Jun 28 10:44:49 2006 -0500
59837
59838     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
59839
59840     Signed-off-by: Andy Fleming <afleming@freescale.com>
59841
59842 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
59843 Author: Matthew McClintock <msm@freescale.com>
59844 Date:   Wed Jun 28 10:44:23 2006 -0500
59845
59846     * 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
59847
59848     Signed-off-by: Andy Fleming <afleming@freescale.com>
59849
59850 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
59851 Author: Matthew McClintock <msm@freescale.com>
59852 Date:   Wed Jun 28 10:43:36 2006 -0500
59853
59854     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
59855
59856     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59857
59858 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
59859 Author: Matthew McClintock <msm@freescale.com>
59860 Date:   Wed Jun 28 10:43:00 2006 -0500
59861
59862     * 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
59863
59864 commit 5498d90312aad9f6bdbf047986027c35b03cd163
59865 Author: Matthew McClintock <msm@freescale.com>
59866 Date:   Wed Jun 28 10:42:24 2006 -0500
59867
59868     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
59869
59870 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
59871 Author: Matthew McClintock <msm@freescale.com>
59872 Date:   Wed Jun 28 10:41:37 2006 -0500
59873
59874     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
59875
59876 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
59877 Author: John Traill <john.traill@freescale.com>
59878 Date:   Wed Aug 9 14:33:50 2006 +0100
59879
59880     Add Rapidio support for the MPC8641HPCN
59881
59882     Signed-off-by: John Traill <john.traill@freescale.com>
59883
59884 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
59885 Author: John Traill <john.traill@freescale.com>
59886 Date:   Tue Aug 8 11:32:43 2006 +0100
59887
59888     Fix caslat calculation
59889
59890     Signed-off-by: John Traill <john.traill@freescale.com>
59891
59892 commit 709d3073e74153278e7904a70819bbef7df50e1a
59893 Author: Jon Loeliger <jdl@freescale.com>
59894 Date:   Thu Aug 3 16:17:56 2006 -0500
59895
59896     Convert to mac-address in ethernet nodes.
59897
59898 commit 71748af833ca1017edf1415be376366ff2937d17
59899 Author: Haiying Wang <haiying.wang@freescale.com>
59900 Date:   Fri Jul 28 12:41:35 2006 -0400
59901
59902     Correct the irq value of DUART2
59903
59904 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
59905 Author: Haiying Wang <haiying.wang@freescale.com>
59906 Date:   Fri Jul 28 12:41:41 2006 -0400
59907
59908     Change the space size of PEX IO in README
59909
59910 commit 239db37c94f7a92941c4465feceb867c609241c5
59911 Author: Haiying Wang <haiying.wang@freescale.com>
59912 Date:   Fri Jul 28 12:41:18 2006 -0400
59913
59914     Move get_board_sys_clk to board directory
59915
59916 commit 492900b985439fbce1a118afde1e35def870db03
59917 Author: John Traill <john.traill@freescale.com>
59918 Date:   Fri Jul 28 09:03:54 2006 +0100
59919
59920     Fix 8641HPCN pollution
59921
59922 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
59923 Author: John Traill <john.traill@freescale.com>
59924 Date:   Fri Jul 28 08:16:06 2006 +0100
59925
59926     Fix 8641HPCN timebase
59927
59928 commit c86360b830f1eecd7a72208575dde4f57879faea
59929 Author: Zhang Wei <wei.zhang@freescale.com>
59930 Date:   Fri Jul 28 00:01:34 2006 +0800
59931
59932     Fixed OF device tree of mpc86xxhpcn board.
59933
59934     The changes works in with kernel irq mapping rework.
59935
59936     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59937
59938 commit bea3f28d285942bf3f7ab339ce85178ded544225
59939 Author: Haiying Wang <haiying.wang@freescale.com>
59940 Date:   Wed Jul 12 10:48:05 2006 -0400
59941
59942     Add support for reading and writing mac addresses to or from ID EEPROM.
59943
59944     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
59945     With attached patch, we can use command "mac/mac read/mac save/"
59946     to read and write EEPROM under u-boot prompt.
59947
59948     U-boot will calculate the checksum of EEPROM while bootup,
59949     if it is right, then u-boot will check whether the mac address
59950     of eTSEC0/1/2/3 is availalbe (non-zero).
59951
59952     If there is mac address availabe in EEPROM, u-boot will use it,
59953     otherewise, u-boot will use the mac address defined in
59954     MPC8641HPCN.h. This matches the requirement to set unique mac address
59955     for each TSEC port.
59956
59957     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
59958     Signed-off-by: York Sun <yorksun@freescale.com>
59959
59960 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
59961 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
59962 Date:   Thu Jul 13 10:35:10 2006 -0500
59963
59964     Fixed initrd issue by define big RAM
59965
59966     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
59967
59968 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
59969 Author: Jason Jin <Jason.jin@freescale.com>
59970 Date:   Fri Jul 7 10:01:45 2006 -0500
59971
59972     We made a u-boot patch to fix the hang up issue
59973     when booting filesystem from ramdisk.
59974
59975     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
59976
59977 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
59978 Author: Matthew McClintock <msm@freescale.com>
59979 Date:   Wed Jun 28 10:47:03 2006 -0500
59980
59981     * Switched default PCI speed for 8540 ADS back to 33MHz
59982     * Added comments and a printf to warn that PCI-X won't
59983       work at 33MHz
59984       Patch by Andy Fleming 17-Mar-2006
59985
59986     Signed-off-by: Andy Fleming <afleming@freescale.com>
59987
59988 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
59989 Author: Matthew McClintock <msm@freescale.com>
59990 Date:   Wed Jun 28 10:46:35 2006 -0500
59991
59992     * Fixed a bug where 8555 PCI code used the old variable and
59993       function names
59994       Patch by Andy Fleming 17-Mar-2006
59995
59996     Signed-off-by: Andy Fleming <afleming@freescale.com>
59997
59998 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
59999 Author: Matthew McClintock <msm@freescale.com>
60000 Date:   Wed Jun 28 10:46:13 2006 -0500
60001
60002     * Added VIA configuration table
60003     * Added support for PCI2 on CDS
60004       Patch by Andy Fleming 17-Mar-2006
60005
60006     Signed-off-by: Andy Fleming <afleming@freescale.com>
60007
60008 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
60009 Author: Matthew McClintock <msm@freescale.com>
60010 Date:   Wed Jun 28 10:45:41 2006 -0500
60011
60012     * Fixed PCI memory definitions
60013       Patch by Andy Fleming 17-Mar-2006
60014
60015     Signed-off-by: Andy Fleming <afleming@freescale.com>
60016
60017 commit 087454609e47295443af793a282cddcd91a5f49c
60018 Author: Matthew McClintock <msm@freescale.com>
60019 Date:   Wed Jun 28 10:45:17 2006 -0500
60020
60021     * Added support for initializing second PCI bus on 85xx
60022       Patch by Andy Fleming 17-Mar-2006
60023
60024     Signed-off-by: Andy Fleming <afleming@freescale.com>
60025
60026 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
60027 Author: Matthew McClintock <msm@freescale.com>
60028 Date:   Wed Jun 28 10:44:49 2006 -0500
60029
60030     * Added PCI-X #defines for PCI-X initialization
60031       Patch by Andy Fleming on 17-Mar-2006
60032
60033     Signed-off-by: Andy Fleming <afleming@freescale.com>
60034
60035 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
60036 Author: Matthew McClintock <msm@freescale.com>
60037 Date:   Wed Jun 28 10:44:23 2006 -0500
60038
60039     * Made sure the code which disables prefetch for PCI devices
60040       sets the size of the prefetch region to 0
60041       Patch by Andy Fleming on 17-Mar-2006
60042
60043     Signed-off-by: Andy Fleming <afleming@freescale.com>
60044
60045 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
60046 Author: Matthew McClintock <msm@freescale.com>
60047 Date:   Wed Jun 28 10:43:36 2006 -0500
60048
60049     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
60050       Patch by Jon Loeliger 17-Jan-2006
60051
60052     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60053
60054 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
60055 Author: Matthew McClintock <msm@freescale.com>
60056 Date:   Wed Jun 28 10:43:00 2006 -0500
60057
60058     * Removed the oftree.dts for stxxtx in light of the changes
60059       to the flat device tree handling code
60060       Patch by Matthew McClintock 26-June-2006
60061
60062 commit 1b380ec225665e73959677f3893dc658c5925e05
60063 Author: Matthew McClintock <msm@freescale.com>
60064 Date:   Wed Jun 28 10:42:24 2006 -0500
60065
60066     * Patch to modify ft_build.c to update flat device trees in place
60067       Patch by Matthew McClintock 26-June-2006
60068
60069 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
60070 Author: Matthew McClintock <msm@freescale.com>
60071 Date:   Wed Jun 28 10:41:37 2006 -0500
60072
60073     * Modify bootm command to support booting with flat device trees
60074       Patch by Matthew McClintock 26-June-2006
60075
60076 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
60077 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
60078 Date:   Wed Jun 28 08:43:56 2006 -0500
60079
60080     Change Id to symbolic name for RTL8139
60081
60082     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60083
60084 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
60085 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
60086 Date:   Tue Jun 27 18:12:10 2006 +0800
60087
60088     Fix RTL8139 in big endian
60089
60090     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
60091     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
60092
60093 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
60094 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
60095 Date:   Tue Jun 27 18:12:23 2006 +0800
60096
60097     Fix Tsec bug when no link
60098
60099      When tftp a non-exist file from the tftp server, u-boot will check
60100      the link of all eth port. The original file will return wrong link
60101      state on the no link ports.
60102
60103     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
60104
60105 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
60106 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
60107 Date:   Tue Jun 27 18:12:02 2006 +0800
60108
60109     Fix bug for io_bar size during pci scan
60110
60111     During the pci scan process, Some devices return bar_reponse with the
60112     highest bytes 0, such as the pci bridge in uli1575 return bar_response
60113     with 0xffffff, So the bar_size should be manually set under 64K.
60114
60115     Signed-off-by: Jason Jin <jason.jin@freescale.com>
60116
60117 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
60118 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
60119 Date:   Tue Jun 27 18:11:54 2006 +0800
60120
60121     Enable PCIE1 for MPC8641HPCN board
60122
60123     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
60124
60125 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
60126 Author: Wolfgang Denk <wd@pollux.denx.de>
60127 Date:   Mon Jun 26 11:06:00 2006 +0200
60128
60129     More code cleanup
60130
60131 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
60132 Author: Jon Loeliger <jdl@freescale.com>
60133 Date:   Thu Jun 22 08:51:46 2006 -0500
60134
60135     Fix bug in 8641hpcn reset command with no args.
60136
60137     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
60138     Acked-by: Jon Loeliger <jdl@freescale.com>
60139
60140 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
60141 Author: Zhang Wei <wei.zhang@freescale.com>
60142 Date:   Tue Jun 20 17:47:15 2006 +0800
60143
60144     Reworked IRQ mapping in OF-tree.
60145
60146 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
60147 Author: Jon Loeliger <jdl@freescale.com>
60148 Date:   Thu Jun 15 21:33:37 2006 -0500
60149
60150     Do not enable address translation on secondary CPUs.
60151     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
60152
60153     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60154
60155 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
60156 Author: Wolfgang Denk <wd@pollux.denx.de>
60157 Date:   Wed Jun 14 18:14:56 2006 +0200
60158
60159     Code cleanup
60160
60161 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
60162 Author: Wolfgang Denk <wd@pollux.denx.de>
60163 Date:   Wed Jun 14 17:45:53 2006 +0200
60164
60165     Various USB related patches
60166     - Add support for mpc8xx USB device.
60167     - Add support for Common Device Class - Abstract Control Model USB console.
60168     - Add support for flow control in USB slave devices.
60169     - Add support for switching between gserial and cdc_acm using environment.
60170     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
60171     - Update usbcore slightly to ease host enumeration.
60172     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
60173     - Add AdderUSB_config as a defconfig to enable usage of the USB console
60174       by default with the Adder87x U-Boot port.
60175     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
60176
60177 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
60178 Author: Jon Loeliger <jdl@jdl.com>
60179 Date:   Wed Jun 7 10:53:55 2006 -0500
60180
60181     Fix a get_board_sys_clk() use-before-def warning.
60182
60183     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60184
60185 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
60186 Author: Jon Loeliger <jdl@jdl.com>
60187 Date:   Wed Jun 7 10:52:49 2006 -0500
60188
60189     Allow DTC path to be passed in.
60190
60191     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60192
60193 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
60194 Author: Haiying Wang <haiying.wang@freescale.com>
60195 Date:   Tue Jun 6 16:54:29 2006 -0400
60196
60197     Modify the IRQ of DUART2
60198
60199 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
60200 Author: Jon Loeliger <jdl@jdl.com>
60201 Date:   Wed May 31 13:55:35 2006 -0500
60202
60203     Review cleanups.
60204
60205     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60206
60207 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
60208 Author: Jon Loeliger <jdl@jdl.com>
60209 Date:   Wed May 31 12:44:44 2006 -0500
60210
60211     White space cleanup.
60212     Some 80-column cleanups.
60213     Convert printf() to puts() where possible.
60214     Use #include "spd_sdram.h" as needed.
60215     Enhanced reset command usage message a bit.
60216
60217     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60218
60219 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
60220 Author: Jon Loeliger <jdl@jdl.com>
60221 Date:   Wed May 31 11:39:34 2006 -0500
60222
60223     Removed unneeded local_bus_init() from 8641HPCN board.
60224
60225     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60226
60227 commit 4d3d729c16c392d2982d3266b659d333c927697d
60228 Author: Jon Loeliger <jdl@jdl.com>
60229 Date:   Wed May 31 11:24:28 2006 -0500
60230
60231     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
60232
60233     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60234
60235 commit b2a941de060350ad15878d8219825f4950e9bb8e
60236 Author: Jon Loeliger <jdl@jdl.com>
60237 Date:   Wed May 31 10:07:28 2006 -0500
60238
60239     Remove dead debug code.
60240
60241     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60242
60243 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
60244 Author: Jon Loeliger <jdl@freescale.com>
60245 Date:   Tue May 30 17:47:00 2006 -0500
60246
60247     Move mpc86xx PIXIS code to board directory
60248
60249     First cut at moving the PIXIS platform code out of
60250     the 86xx cpu directory and into board/mpc8641hpcn
60251     where it belongs.
60252
60253     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60254
60255 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
60256 Author: Markus Klotzbuecher <mk@denx.de>
60257 Date:   Tue May 30 16:56:14 2006 +0200
60258
60259     Support generic OHCI support for the s3c24x0 cpu.
60260
60261 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
60262 Author: Haiying Wang <Haiying.Wang@freescale.com>
60263 Date:   Tue May 30 09:10:32 2006 -0500
60264
60265     Improve "reset" command's interaction with watchdog.
60266
60267         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
60268         "reset altbank wd" will reset another bank WITH watch dog enabled
60269         "diswd" will disable watch dog after u-boot boots up successfully
60270
60271     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
60272
60273 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
60274 Author: Haiying Wang <Haiying.Wang@freescale.com>
60275 Date:   Tue May 30 08:51:19 2006 -0500
60276
60277     Fix two SDRAM setup bugs.
60278
60279         Fix ECC setup bug.
60280         Enable 1T/2T based on number of DIMMs present.
60281
60282     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
60283
60284 commit d11fec5015334deb2010e36ce00bb118cc5429a5
60285 Author: Haiying Wang <Haiying.Wang@freescale.com>
60286 Date:   Fri May 26 10:24:48 2006 -0500
60287
60288     Add first draft of the MPC8641HPCN doc/README.
60289
60290     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60291
60292 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
60293 Author: Haiying Wang <Haiying.Wang@freescale.com>
60294 Date:   Fri May 26 10:13:04 2006 -0500
60295
60296     Added pci@8000 block.
60297     Updated ethernet interrupt mappings (moved up 48).
60298     Cleaned up a few comments.
60299
60300     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60301
60302 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
60303 Author: Haiying Wang <Haiying.Wang@freescale.com>
60304 Date:   Fri May 26 10:01:16 2006 -0500
60305
60306     Allow args on reset command.
60307
60308     Signed-off-by: Jon Loeliger <jdl@jdl.com>
60309
60310 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
60311 Author: Markus Klotzbuecher <mk@denx.de>
60312 Date:   Tue May 23 13:38:35 2006 +0200
60313
60314     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
60315     fixes to the latter.
60316
60317 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
60318 Author: Markus Klotzbuecher <mk@denx.de>
60319 Date:   Tue May 23 10:33:11 2006 +0200
60320
60321     More cleanup for the delta board and the generic usb_ohci driver. Added
60322     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
60323     initialization and cleanup hooks respectively.
60324
60325 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
60326 Author: Markus Klotzbuecher <mk@denx.de>
60327 Date:   Mon May 22 16:33:54 2006 +0200
60328
60329     This patch adds USB storage support for the delta board. This is the first
60330     board to make use of a generic OHCI driver, that calls hooks for board
60331     dependant initialization.
60332
60333 commit 14e37081ff3cac7ebe6e93836523429853b6b292
60334 Author: Jon Loeliger <jdl@jdl.com>
60335 Date:   Fri May 19 13:28:39 2006 -0500
60336
60337     Change arbitration to round-robin for SMP linux.
60338
60339 commit 9a655876e5995be80f49054e2509500e871e4d3a
60340 Author: Jon Loeliger <jdl@jdl.com>
60341 Date:   Fri May 19 13:26:34 2006 -0500
60342
60343     Enable dual DDR controllers and interleaving.
60344
60345 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
60346 Author: Jon Loeliger <jdl@jdl.com>
60347 Date:   Fri May 19 13:22:44 2006 -0500
60348
60349     Update 86xx address map and LAWBARs.
60350
60351 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
60352 Author: Jon Loeliger <jdl@jdl.com>
60353 Date:   Fri May 19 13:14:15 2006 -0500
60354
60355     Remove L2 Cache invalidate polling.
60356
60357 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
60358 Author: Jon Loeliger <jdl@jdl.com>
60359 Date:   Fri May 19 12:33:09 2006 -0500
60360
60361     Enable 2nd CPU and I2C.
60362
60363 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
60364 Author: Jon Loeliger <jdl@freescale.com>
60365 Date:   Mon May 15 07:26:56 2006 -0500
60366
60367     Update interrupt mapping.
60368
60369 commit 6cfea33477b04b63ed47386ed1629529484c33ba
60370 Author: Haiying Wang <Haiying.Wang@freescale.com>
60371 Date:   Wed May 10 09:38:06 2006 -0500
60372
60373     Remove unneeded INIT_RAM_LOCK cache twiddling.
60374     Correctly tracks r29 as global data pointer now.
60375
60376     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
60377
60378 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
60379 Author: Jon Loeliger <jdl@freescale.com>
60380 Date:   Wed May 10 09:33:07 2006 -0500
60381
60382     Remove unnecessary flash.c file.
60383
60384 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
60385 Author: Jon Loeliger <jdl@freescale.com>
60386 Date:   Tue May 9 08:23:49 2006 -0500
60387
60388     Get MPC8641HPCN flash images working.
60389
60390         Enable the CFI driver.
60391         Remove bogus LAWBAR7 cruft.
60392         Use correct TEXT_BASE, Fixup load script.
60393         Enable SPD EEPROM during DDR setup.
60394         Use generic RFC 1918 IP addresses by default.
60395
60396 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
60397 Author: Jon Loeliger <jdl@freescale.com>
60398 Date:   Thu Apr 27 10:15:16 2006 -0500
60399
60400     Cleanup whitespaces and style issues.
60401     Removed //-style comments.
60402     Use 80-column lines.
60403     Remove trailing whitespace.
60404     Remove dead code and debug cruft.
60405
60406 commit a2320a6bf8113a09544c42d160d10ac69d049a03
60407 Author: Jon Loeliger <jdl@freescale.com>
60408 Date:   Thu Apr 27 08:22:39 2006 -0500
60409
60410     Revert bad PCI prefetch limit change.
60411
60412 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
60413 Author: Jon Loeliger <jdl@freescale.com>
60414 Date:   Wed Apr 26 17:58:56 2006 -0500
60415
60416     Initial support for MPC8641 HPCN board.