]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
Update CHANGELOG
[karo-tx-uboot.git] / CHANGELOG
1 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
2 Author: David Brownell <dbrownell@users.sourceforge.net>
3 Date:   Thu Apr 16 23:15:15 2009 -0700
4
5     dm9000 EEPROM reading bugfix
6
7     Make the U-Boot dm9000 driver read addresses from EEPROM just
8     like Linux does ... read six bytes, instead of reading twelve
9     bytes and then discarding every other one.
10
11     Using the right Ethernet address is a big win.
12
13     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15     Acked-by: Ben Warren <biggerbadderben@gmail.com>
16
17 commit d4c02e6f5d49880123e7f584b88f857ffd874381
18 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
19 Date:   Wed Feb 25 14:27:24 2009 +0900
20
21     rtl8169: fix cache coherency problem
22
23     Fix the problem that cannot access actual data when CPU data cache enabled.
24
25     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27     Acked-by: Ben Warren <biggerbadderben@gmail.com>
28
29 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
30 Author: Wolfgang Denk <wd@denx.de>
31 Date:   Sun Apr 26 20:39:26 2009 +0200
32
33     lib_arm/board.c: remove misleading "test-only" comment.
34
35     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
36     had been marked as "test-only", which is plain wrong considering
37     current usage.  Delete this misleading comment.
38
39     Signed-off-by: Wolfgang Denk <wd@denx.de>
40
41 commit 14b9308d511b53042ef478936e367a67282df66a
42 Author: Heiko Schocher <hs@denx.de>
43 Date:   Fri Apr 24 06:50:45 2009 +0200
44
45     83xx: searching "muram-data" by compatible property
46
47     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
48     in the muram-data node, the reg entry needs to be updated.
49     This is done in fdt_fixup_muram(), but we should use
50     the compatible "fsl,qe-muram-data" for searching the
51     node instead of searching the muram-data node with
52     an absolute path.
53
54     Signed-off-by: Heiko Schocher <hs@denx.de>
55     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56
57 commit 8e15088794807944b221c11609d36789efc7f767
58 Author: Anatolij Gustschin <agust@denx.de>
59 Date:   Thu Apr 23 21:29:34 2009 +0200
60
61     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
62
63     The size of U-Boot binary for MPC8360ERDK increased
64     (> 2 flash sectors now), so 'saveenv' will partially
65     overwrite U-Boot in flash and will brick the board.
66     This patch moves environment offset to fourth flash
67     sector and also fixes CONFIG_SYS_MONITOR_LEN.
68
69     Signed-off-by: Anatolij Gustschin <agust@denx.de>
70     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71
72 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
73 Author: Michael Zaidman <michael.zaidman@gmail.com>
74 Date:   Sat Apr 4 01:43:00 2009 +0300
75
76     NetLoop initialization bug
77
78     The patch fixes the bug of partial initialization of global network
79     parameters.
80
81     Upon u-boot's start up the first ping command causes a failure of the
82     consequent TFTP command. It happens in the recently added mechanism of
83     the NetLoop initialization where initialization of global network
84     parameters is separated in the NetInitLoop routine which is called per
85     env_id change. Thus, ping request will initialize the network parameters
86     necessary for ping operation only, afterwards the env_changed_id will be
87     set to the env_id that will prevent all following initialization requests
88     from other protocols.
89     The problem is that the initialized by ping subset of network parameters
90     is not sufficient for other protocols and particularly for TFTP which
91     requires the NetServerIp also.
92
93     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
94     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
95
96 commit b11f664f52c2855990107c18f242223377183575
97 Author: Timur Tabi <timur@freescale.com>
98 Date:   Thu Apr 9 10:27:05 2009 -0500
99
100     net: fix ULI 526x macro usage in netdev.h
101
102     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
103     is used everywhere else, so that's the correct macro name.  Without this fix,
104     Ethernet will not work on the Freescale MPC8610 HPCD.
105
106     Signed-off-by: Timur Tabi <timur@freescale.com>
107     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
108
109 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
110 Author: David Brownell <dbrownell@users.sourceforge.net>
111 Date:   Sun Apr 12 15:38:06 2009 -0700
112
113     fix DaVinci NS16550_REG_SIZE regression
114
115     Update the DaVinci DM6446 boards to use the new convention
116     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
117     from the original 4 bytes, but these chips are little-endian.
118
119     (Resolves a regression added recently by the include/ns16550.h
120     patch to "Unify structure declaration for registers".  The code
121     previously worked just fine because the registers were accessed
122     as host-endian words, not as bytes.)
123
124     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
125
126 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
127 Author: Mike Frysinger <vapier@gentoo.org>
128 Date:   Sun Apr 12 22:29:20 2009 -0400
129
130     cmd_nand: drop duplicate NULL ptr check
131
132     The first if statement checks for NULL ptrs, so there is no need to check
133     it again in later else cases (such as .oob).
134
135     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
136     CC: Scott Wood <scottwood@freescale.com>
137
138 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
139 Author: David Brownell <dbrownell@users.sourceforge.net>
140 Date:   Mon Apr 13 08:03:38 2009 -0700
141
142     CMD_UBI != MTD_PARTITIONS
143
144     Fix dependency goofage:  it should certainly be possible to have the
145     partition support without bringing in UBI commands.
146
147     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
148     Acked-by: Stefan Roese <sr@denx.de>
149
150 commit 6ebff365eb63093ca35b687316002535c6a18820
151 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
152 Date:   Thu Apr 16 21:30:48 2009 +0200
153
154     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
155
156     The timer has been rewrote with a precision at ~0,18%
157
158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
159     Tested-by: Sergey Lapin <slapin@ossfans.org>
160     Tested-by: Eric BENARD <ebenard@free.fr>
161
162 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
163 Author: Ilko Iliev <iliev@ronetix.at>
164 Date:   Thu Apr 16 21:30:48 2009 +0200
165
166     at91: add support for the PM9263 board of Ronetix GmbH
167
168     The PM9263 board is based on the AT91SAM9263-EK board.
169
170     Here is the page on Ronetix website:
171     http://www.ronetix.at/starter_kit_9263.html
172
173     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
174     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
175
176 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
178 Date:   Thu Apr 16 21:30:44 2009 +0200
179
180     at91sam9/at91cap: improve clock framework
181
182     calculate dynamically the clock rate and pllb setting for usb
183
184     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
185
186 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
187 Author: Stefan Roese <sr@denx.de>
188 Date:   Wed Apr 15 14:08:48 2009 +0200
189
190     ppc4xx: Disable POST memory test on NAND-booting Kilauea
191
192     Don't run the memory POST on the NAND-booting version. It will
193     overwrite part of the U-Boot image which is already loaded from NAND
194     to SDRAM. We were just lucky that it booted at all with this SDRAM
195     test enabled.
196
197     Signed-off-by: Stefan Roese <sr@denx.de>
198
199 commit 9a929170be89b27bce677504da27e88600c06c49
200 Author: Stefan Roese <sr@denx.de>
201 Date:   Wed Apr 15 14:06:26 2009 +0200
202
203     ppc4xx: Disable POST memory test on NAND-booting Sequoia
204
205     Don't run the memory POST on the NAND-booting version. It will
206     overwrite part of the U-Boot image which is already loaded from NAND
207     to SDRAM. We were just lucky that it booted at all with this SDRAM
208     test enabled.
209
210     Signed-off-by: Stefan Roese <sr@denx.de>
211
212 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
213 Author: Stefan Roese <sr@denx.de>
214 Date:   Wed Apr 15 11:32:53 2009 +0200
215
216     ppc4xx: Remove unused code for Sequoia NAND booting version
217
218     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
219     used at all. This patch changes it's define to the currently used value of
220     133333333 and removes the unnecessary code.
221
222     Signed-off-by: Stefan Roese <sr@denx.de>
223
224 commit cf9409885cbe01405bad76790e99f8adf3351f4d
225 Author: Stefan Roese <sr@denx.de>
226 Date:   Wed Apr 15 10:50:48 2009 +0200
227
228     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
229
230     This additional text in the bootup log helps to see if the board is
231     configured for NAND-booting. Especially helpful for boards that can
232     boot from NOR and NAND (e.g. most of the AMCC eval boards).
233
234     Signed-off-by: Stefan Roese <sr@denx.de>
235
236 commit 5132106a27b8fb302677852b26ffd319b40d17e2
237 Author: Stefan Roese <sr@denx.de>
238 Date:   Wed Apr 8 10:36:22 2009 +0200
239
240     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
241
242     Currently the NOR & NAND support in Linux only works for the "standard"
243     Sequoia, the version booting for NOR flash. The NAND-booting version
244     has the chip-selects swapped. Here the chip-select mappings:
245
246     "Standard" NOR-booting version:
247     CS0 NOR
248     CS3 NAND
249
250     NAND-booting version:
251     CS0 NAND
252     CS3 NOR
253
254     With this path the dtb gets fixed-up, so that the correct chip-select
255     numbers are patched in the dtb enabling correct NOR & NAND support
256     in Linux on the NAND-booting Sequoia version.
257
258     Signed-off-by: Stefan Roese <sr@denx.de>
259
260 commit aad4eca4ba8d597747199d8af723426681557dda
261 Author: Mike Frysinger <vapier@gentoo.org>
262 Date:   Sat Apr 4 09:10:27 2009 -0400
263
264     Blackfin: audit UART for all known anomalies
265
266     There is no code change here, just new comments, but this keeps me from
267     having to do another audit from scratch in the future.
268
269     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
270
271 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
272 Author: Mike Frysinger <vapier@gentoo.org>
273 Date:   Sat Apr 4 08:40:13 2009 -0400
274
275     Blackfin: add check for anomaly 05000362
276
277     DESCRIPTION:
278     The column address width settings for banks 2 and 3 are misconnected in
279     the SDRAM controller.  Accesses to bank 2 will result in an error if the
280     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
281     that of bank 2.
282
283     WORKAROUND:
284     If using bank 2, make sure that banks 2 and 3 have the same column address
285     width settings in the EBIU_SDBCTL register.  This must be the case
286     regardless of whether or not bank 3 is enabled.
287
288     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
289
290 commit c2e07449f546fb375289cdac1a608fdc20357873
291 Author: Mike Frysinger <vapier@gentoo.org>
292 Date:   Sat Apr 4 08:29:55 2009 -0400
293
294     Blackfin: add comment about anomaly 05000430 avoidance
295
296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
297
298 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
299 Author: Mike Frysinger <vapier@gentoo.org>
300 Date:   Sat Apr 4 08:10:22 2009 -0400
301
302     Blackfin: add workaround for anomaly 05000242
303
304     DESCRIPTION:
305     If the DF bit is set prior to a hardware reset, the PLL will continue to
306     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
307     cleared in the PLL_CTL register.
308
309     WORKAROUND:
310     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
311     2 after reset.
312
313     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
314
315 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
316 Author: Mike Frysinger <vapier@gentoo.org>
317 Date:   Sat Apr 4 08:09:24 2009 -0400
318
319     Blackfin: add workaround for anomaly 05000171
320
321     DESCRIPTION:
322     The Boot ROM is executed at power up/reset and changes the value of the
323     SICA_IWR registers from their default reset value of 0xFFFF, but does not
324     restore them.
325
326     WORKAROUND:
327     User code should not rely on the default value of these registers.  Set
328     the desired values explicitly.
329
330     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
331
332 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
333 Author: Mike Frysinger <vapier@gentoo.org>
334 Date:   Sat Apr 4 08:22:36 2009 -0400
335
336     Blackfin: update anomaly sheets
337
338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
339
340 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
341 Author: Graf Yang <graf.yang@analog.com>
342 Date:   Sat Apr 4 07:45:57 2009 -0400
343
344     Blackfin: nand: flush peripheral before polling it
345
346     We need to make sure the data written to the nand flash controller makes
347     it there before we start polling its status register.  Otherwise, we may
348     get stale data and return before the controller is actually ready.
349
350     Signed-off-by: Graf Yang <graf.yang@analog.com>
351     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
352     Acked-by: Scott Wood <scottwood@freescale.com>
353
354 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
355 Author: Remy Bohmer <linux@bohmer.net>
356 Date:   Sun Apr 5 11:43:28 2009 +0200
357
358     Support for PXA27X UDC.
359
360         This Patch adds Support for PXA27X UDC.
361         (Rebased to drivers/usb reorganisation)
362
363     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
364     Signed-off-by: Remy Bohmer <linux@bohmer.net>
365
366 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
367 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
368 Date:   Fri Apr 3 12:46:58 2009 +0200
369
370     drivers/usb: regorganisation
371
372     move to linux usb driver organisation
373
374     as following
375
376     drivers/usb/gadget
377     drivers/usb/host
378     drivers/usb/musb
379
380     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
381     Signed-off-by: Remy Bohmer <linux@bohmer.net>
382
383 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
384 Author: Todor I Mollov <tmollov@ucsd.edu>
385 Date:   Sat Apr 4 06:53:06 2009 -0400
386
387     Blackfin: spi: make cs deassert function deterministic
388
389     Blackfin SPI driver was not driving the SPI chip-select high before
390     putting the chip-select signals into tri-state mode.  This is probably
391     something that slipped by unnoticed in most designs.  If the signals are
392     put directly into a tri-state mode, then the board is relying on the
393     pull-up resistors to pull up the chip-select before the next transaction.
394     Most of the time this is fine, except when you have two transactions that
395     follow each other very closely, such as the flash erase and read status
396     register commands.  In this case I was seeing a 500ns separation between
397     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
398     timing spec about half the time and resulted in intermittent errors.  (A
399     stronger pull up would fix this, but our design is targeted for low power
400     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
401     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
402     chip-selects high before putting them into tri-state.  For me, this
403     resulted in a rise time of 5ns instead of the previous rise time of about
404     1us, and fully satisfied the timing spec of the chip.
405
406     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
407     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
408
409 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
410 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
411 Date:   Sat Dec 13 21:08:05 2008 +0100
412
413     integratorap: fix PCI support
414
415     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
416
417 commit 1c397508c836dfcb01fb2471c71de0727051f117
418 Author: Dirk Behme <dirk.behme@googlemail.com>
419 Date:   Mon Mar 30 21:15:23 2009 +0200
420
421     OMAP3: Update Overo pin mux for new expansion board
422
423     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
424     switches. This patch changes the pinmux configuration for those pins.
425     They were previously set up for unused MMC3_DAT4-7.
426
427     Signed-off-by: Steve Sakoman <steve@sakoman.com>
428     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
429
430 commit ab298231518675b3784aea88ee9b978438f99e63
431 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
432 Date:   Sun Apr 5 13:08:03 2009 +0200
433
434     arm: unify reset command
435
436     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
437
438 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
440 Date:   Sun Apr 5 13:06:31 2009 +0200
441
442     arm: clean cache management
443
444     unify arm cache management except for non standard cache as ARM7TDMI
445
446     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
447
448 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
449 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
450 Date:   Sun Apr 5 13:02:43 2009 +0200
451
452     arm: update co-processor 15 access
453
454     import system.h from linux
455
456     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
457
458 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
459 Author: Guennadi Liakhovetski <lg@denx.de>
460 Date:   Sun Apr 5 00:42:02 2009 +0200
461
462     ARM: add the imx31_phycore_eet target to MAINTAINERS
463
464     imx31_phycore_eet is a variant of the imx31_phycore board with a few
465     extensions, which justifies a separate entry in the MAINTAINERS list,
466     whereas normally all entries sharing a single configuration file and a
467     board/ directory have only one entry in MAINTAINERS.
468
469     Reported-by: Wolfgang Denk <wd@denx.de>
470     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
471
472 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
473 Author: Guennadi Liakhovetski <lg@denx.de>
474 Date:   Sun Apr 5 00:37:07 2009 +0200
475
476     ARM: fix out-of-tree build of imx31_phycore_eet
477
478     Fix out-of-tree build of the imx31_phycore_eet target.
479
480     Reported-by: Wolfgang Denk <wd@denx.de>
481     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
482
483 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
484 Author: Jon Smirl <jonsmirl@gmail.com>
485 Date:   Sat Apr 4 17:44:51 2009 -0400
486
487     mpc5200: reduce delays in i2c
488
489     The previous code waited 1000us before checking i2c
490     status. Measurement shows i2c is usually ready in
491     under 50us. Change the polling interval to 15us,
492     loop 6,667 times to keep the polling timeout constant
493     at 100ms.
494
495 commit 36003268968949110ef145d9f2eaf8439c96d25b
496 Author: Sanjeev Premi <premi@ti.com>
497 Date:   Fri Apr 3 14:00:07 2009 +0530
498
499     OMAP: Fix compile issue
500
501     Fixes this compile error:
502     board.c: In function 'do_switch_ecc':
503     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
504     make[1]: *** [board.o] Error 1
505     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
506     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
507
508     This is due to the fact that current command uses long
509     help for the usage print even if the CONFIG_SYS_LONGHELP
510     is not enabled. (Thanks Jean-Christophe for explanation).
511
512     Signed-off-by: Sanjeev Premi <premi@ti.com>
513
514 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
515 Author: Minkyu Kang <mk7.kang@samsung.com>
516 Date:   Fri Apr 3 09:56:16 2009 +0900
517
518     s3c64xx: fix the wrong gpio offset
519
520     This patch fix the wrong gpio offset
521
522     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
523
524 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
525 Author: Kyungmin Park <kmpark@infradead.org>
526 Date:   Wed Nov 26 10:18:13 2008 +0900
527
528     Move machine specific code to board at s3c64xx (v2)
529
530     Move machine specific code to smdk6400.
531     Some board use OneNAND instead of NAND.
532
533     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
534     So it's better to use macro instead of hard-coded value.
535
536     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
537
538 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
539 Author: Tom Rix <Tom.Rix@windriver.com>
540 Date:   Wed Apr 1 22:02:19 2009 -0500
541
542     ZOOM1 Remove legacy NAND defines
543
544     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
545
546 commit 5891151707ee5902fe62d554c247f42865815757
547 Author: Tom Rix <Tom.Rix@windriver.com>
548 Date:   Wed Apr 1 22:02:20 2009 -0500
549
550     OMAP3 Fix multiline formatting in board init files.
551
552     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
553
554 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
555 Author: Wolfgang Denk <wd@denx.de>
556 Date:   Sun Apr 5 00:27:57 2009 +0200
557
558     Update CHANGELOG, coding style cleanup.
559
560 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
561 Author: Wolfgang Denk <wd@denx.de>
562 Date:   Sun Apr 5 00:18:44 2009 +0200
563
564     One more fix for building env_embedded.o
565
566     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
567     commit afcbce07, we also need to do the same for
568     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
569
570     Signed-off-by: Wolfgang Denk <wd@denx.de>
571
572 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
573 Author: Scott Wood <scottwood@freescale.com>
574 Date:   Thu Apr 2 16:15:10 2009 -0500
575
576     common/image.c: Relocate strings in tables.
577
578     Without this, u-boot can crash or print garbage if the original link
579     address no longer points to a valid string.
580
581     Signed-off-by: Scott Wood <scottwood@freescale.com>
582
583 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
584 Author: Scott Wood <scottwood@freescale.com>
585 Date:   Thu Apr 2 16:10:36 2009 -0500
586
587     mpc8260: Fill in brg's clock-frequency in device tree.
588
589     Signed-off-by: Scott Wood <scottwood@freescale.com>
590
591 commit c73ed274a211699739d83c2cef92853dc6716e15
592 Author: Scott Wood <scottwood@freescale.com>
593 Date:   Thu Apr 2 18:20:43 2009 -0500
594
595     MPC8260ADS: Add nfsboot/ramboot to default environment.
596
597     This brings it in line with other Freescale boards.
598
599     Signed-off-by: Scott Wood <scottwood@freescale.com>
600
601 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
602 Author: Andreas Huber <andreas.huber@keymile.com>
603 Date:   Thu Apr 2 17:15:34 2009 +0200
604
605     UBI/cfi-mtd: Fix mtd name for multiple chips
606
607     On platforms with multiple NOR chips, currently only the first one
608     can be selected using the "ubi part" command. This patch fixes this
609     problem by using different names for the NOR "mtd devices".
610
611     It also changes the name of the NOR MTD device from "cfi-mtd" to
612     "norX" (X indexing the device numer) to better match the mtdparts
613     defaults.
614
615     Signed-off-by: Stefan Roese <sr@denx.de>
616     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
617
618 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
619 Author: Peter Korsgaard <jacmet@sunsite.dk>
620 Date:   Tue Mar 31 17:52:16 2009 +0200
621
622     tools/setlocalversion: use git svn instead of git-svn
623
624     Use the new "git <subcmd>" syntax instead of the deprecated
625     "git-<subcmd>".
626
627     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
628
629 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
630 Author: Mingkai Hu <Mingkai.hu@freescale.com>
631 Date:   Tue Mar 31 14:09:40 2009 +0800
632
633     eSPI: add the eSPI register support
634
635     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
636
637 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
638 Author: Minkyu Kang <mk7.kang@samsung.com>
639 Date:   Mon Mar 30 14:55:51 2009 +0900
640
641     cmd_mmc: add support for device command for selecting mmc device
642
643     This patch improves device command for selecting mmc device
644
645     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
646
647 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
648 Author: Alan Carvalho de Assis <acassis@gmail.com>
649 Date:   Sat Mar 28 19:50:16 2009 -0300
650
651     Small fix to m5282evb
652
653     This is just a small fix to get u-boot on m5282evb.
654
655     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
656
657 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
658 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
659 Date:   Fri Mar 27 10:21:14 2009 +0100
660
661     UBIFS: add R/O compatibility
662
663     Now UBIFS is supported by u-boot. If we ever decide to change the
664     media format, then people will have to upgrade their u-boots to
665     mount new format images. However, very often it is possible to
666     preserve R/O forward-compatibility, even though the write
667     forward-compatibility is not preserved.
668
669     This patch introduces a new super-block field which stores the
670     R/O compatibility version.
671
672     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
673     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
674     Signed-off-by: Stefan Roese <sr@denx.de>
675
676 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
677 Author: Mike Frysinger <vapier@gentoo.org>
678 Date:   Mon Mar 23 22:27:34 2009 -0400
679
680     more command usage cleanup
681
682     Fix up a few dangling commands like in "Command usage cleanup" commit.
683
684     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
685
686 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
687 Author: Ladislav Michl <ladis@linux-mips.org>
688 Date:   Mon Mar 23 12:06:07 2009 +0100
689
690     Separate mtdparts command from jffs2
691
692     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
693     > Currently the mtdparts commands are included in the jffs2 command support.
694     > This doesn't make sense anymore since other commands (e.g. UBI) use this
695     > infrastructure as well now. This patch separates the mtdparts commands from
696     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
697     > support is needed.
698
699     ... and to make it useful for NAND chips as well, we should also remove now
700     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
701     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
702     but that can be fixed later (tm).
703
704     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
705
706 commit b196ca75503ce307c535b87bf47d51f05e7530df
707 Author: Mike Frysinger <vapier@gentoo.org>
708 Date:   Sun Mar 22 22:18:01 2009 -0400
709
710     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
711
712     Rather than sticking Blackfin-specific stuff into the eeprom example, use
713     an indirect macro so that any board can override it with their own magic
714     sauce in their board config file.
715
716     Also fix some spurious semi-colons in defines while I'm at it ...
717
718     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
719     CC: Ben Warren <biggerbadderben@gmail.com>
720
721 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
722 Author: Sascha Hauer <s.hauer@pengutronix.de>
723 Date:   Sat Mar 21 09:38:46 2009 -0400
724
725     mpc52xx phy: initialize only when needed
726
727     Do not initialize phy on startup, instead initialize it
728     when we actually need it.
729
730     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
731
732 commit 03bab0091948196b9558248684c04f60943ca4b5
733 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
734 Date:   Mon Mar 30 16:51:40 2009 +0200
735
736     at91sam9263ek: enable hush and auto complete support
737
738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
739     Acked-by: Stelian Pop <stelian@popies.net>
740
741 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
742 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
743 Date:   Fri Mar 27 23:26:44 2009 +0100
744
745     at91: move dataflash spi driver to drivers/spi
746
747     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
748
749 commit 2b7178afce59f71e95da657273f4132012098c1f
750 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
751 Date:   Fri Mar 27 23:26:44 2009 +0100
752
753     at91: move usb driver to drivers/usb
754
755     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
756
757 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
758 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
759 Date:   Fri Mar 27 23:26:43 2009 +0100
760
761     at91rm9200: Reset update
762
763     Update the rm9200 reset sequence to try executing a board-specific reset
764     function and move specific board reset to board.
765
766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
767
768 commit 3524049cd053746298e4cfab2449882e75c146fc
769 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
770 Date:   Fri Mar 27 23:26:43 2009 +0100
771
772     at91rm9200: move serial shutdown code to serial drivers
773
774     introduce serial_exit for this purpose. Use it only when the rm9200
775     serial driver is active
776
777     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
778
779 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
780 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
781 Date:   Fri Mar 27 23:26:43 2009 +0100
782
783     at91rm9200: move serial driver to drivers/serial
784
785     add CONFIG_AT91RM9200_USART to activate the driver
786
787     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
788
789 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
790 Author: Ulf Samuelsson <ulf@atmel.com>
791 Date:   Fri Mar 27 23:26:43 2009 +0100
792
793     Add support for the AT91RM9200EK Board.
794
795     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
796     ARM9-based 32-bit RISC microcontroller and enables real-time code development
797     and evaluation.
798
799     Here is the chip page on Atmel website:
800     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
801
802     with
803         - NOR (cfi driver)
804         - DataFlash
805         - USB OHCI
806         - Net
807         - I2C (hard)
808
809     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
810     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
811
812 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
813 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
814 Date:   Fri Mar 27 23:26:42 2009 +0100
815
816     add dataflash mmc mux missing support
817
818     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
819
820 commit 2a325ce3c705ab2d82760afc541c511328472df8
821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
822 Date:   Fri Mar 27 23:26:42 2009 +0100
823
824     at91rm9200dk: Move conditional compilation to Makefile
825
826     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
827
828 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
829 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
830 Date:   Fri Mar 27 23:26:42 2009 +0100
831
832     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
833
834     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
835
836 commit 843a2654bce74192de2b5a43474fdc27a572ab40
837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
838 Date:   Fri Mar 27 23:26:42 2009 +0100
839
840     at91sam9: add watchdog support
841
842     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
843     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
844
845 commit a47492ac60657dd9d59c713aa049319ea6eabd52
846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
847 Date:   Fri Mar 27 13:14:52 2009 +0100
848
849     at91sam9/at91cap: spi init add hardware chip select support
850
851     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
852
853 commit 66932ac3929c7a145a6ef6574a96fd7535154951
854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
855 Date:   Sat Apr 4 19:15:40 2009 +0200
856
857     netstar: fix crc32.c dependancy location
858
859     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
860
861 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
862 Author: Scott Wood <scottwood@freescale.com>
863 Date:   Fri Apr 3 15:24:40 2009 -0500
864
865     MPC8260ADS: Define CONFIG_HAS_ETH0.
866
867     This is required so that the MAC address will be updated in the device tree.
868
869     Signed-off-by: Scott Wood <scottwood@freescale.com>
870
871 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
872 Author: Scott Wood <scottwood@freescale.com>
873 Date:   Fri Apr 3 15:26:45 2009 -0500
874
875     PQ2FADS: Enable PCI.
876
877     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
878
879     Signed-off-by: Scott Wood <scottwood@freescale.com>
880
881 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
882 Author: Wolfgang Denk <wd@denx.de>
883 Date:   Sat Apr 4 16:57:50 2009 +0200
884
885     Fix quoting bug introduced by commit 74de7aef
886
887     Signed-off-by: Wolfgang Denk <wd@denx.de>
888
889 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
890 Author: Wolfgang Denk <wd@denx.de>
891 Date:   Sat Apr 4 16:14:51 2009 +0200
892
893     Fix implicit declaration of function 'htons'
894
895     Include <netinet/in.h> instead of <linux/in.h> to get htons()
896     prototpye.
897
898     Signed-off-by: Wolfgang Denk <wd@denx.de>
899
900 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
901 Author: Kumar Gala <galak@kernel.crashing.org>
902 Date:   Sat Apr 4 10:21:02 2009 -0500
903
904     fsl_law: Fix bug in calculation of LAW sizing
905
906     In set_ddr_laws() when we determined how much of the size requested
907     to be mapped was covered by the the first LAW we needed to recalculate
908     the size based on what was actually mapped.
909
910     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
911
912 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
913 Author: Kumar Gala <galak@kernel.crashing.org>
914 Date:   Thu Apr 2 13:57:05 2009 -0500
915
916     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
917
918     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
919
920 commit c8514622e2713d9c47919acfe23fce386782afe7
921 Author: Kumar Gala <galak@kernel.crashing.org>
922 Date:   Thu Apr 2 13:22:48 2009 -0500
923
924     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
925
926     Rename the pci header for FSL HW so we can move some prototypes
927     in there and stop doing explicit externs
928
929     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
930
931 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
932 Author: Wolfgang Denk <wd@denx.de>
933 Date:   Sat Apr 4 16:10:40 2009 +0200
934
935     Fix building of env_embedded.o
936
937     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
938     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
939     building for many boards.
940
941     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
942     set.
943
944     Signed-off-by: Wolfgang Denk <wd@denx.de>
945
946 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
947 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
948 Date:   Sat Apr 4 12:49:11 2009 +0200
949
950     rename include/zlib.h to include/u-boot/zlib.h
951
952     Some systems have zlib.h installed in /usr/include/. This isn't the
953     desired file for u-boot code - we want the one in include/zlib.h.
954     This rename will avoid the conflict.
955
956     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
957     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
958
959 commit ae644c178f097874a92a6d934f364985fc7e075a
960 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
961 Date:   Sat Apr 4 12:46:31 2009 +0200
962
963     tools/Makefile: fix image.c dependancy location
964
965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
966     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
967
968 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
969 Author: Mike Frysinger <vapier@gentoo.org>
970 Date:   Sat Apr 4 07:42:25 2009 -0400
971
972     tools: add ncb to gitignore
973
974     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
975
976 commit 453c0d7558215cbc8636d94af172886d84e0dbba
977 Author: Detlev Zundel <dzu@denx.de>
978 Date:   Fri Apr 3 16:45:46 2009 +0200
979
980     include/ns16550.h: Unify structure declaration for registers
981
982     Instead of special casing the different access patterns, use common
983     code with light macros sprinkled in to accomodate for the different
984     layouts of the register structure.
985
986     Note that this also changes the types of the registers for the
987     "positively packed (>1)" cases.  As the registers truly are unsigned
988     chars, this is surely the Right Thing, but it is a semantic change.
989     Note that for this case depending on the endianness on the bus, we may
990     see a change of behaviour.
991
992     Signed-off-by: Detlev Zundel <dzu@denx.de>
993
994 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
995 Author: Peter Tyser <ptyser@xes-inc.com>
996 Date:   Fri Mar 13 18:54:52 2009 -0500
997
998     Delete now unused tools/Makefile.win32
999
1000     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1001
1002 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
1003 Author: Peter Tyser <ptyser@xes-inc.com>
1004 Date:   Fri Mar 13 18:54:51 2009 -0500
1005
1006     Add support for building native win32 tools
1007
1008     Add support for compiling the host tools in the tools directory using
1009     the MinGW toolchain.  This produces executables which can be used on
1010     standard Windows computers without requiring cygwin.
1011
1012     One must specify the MinGW compiler and strip utilities as if they
1013     were the host toolchain in order to build win32 executables, eg:
1014
1015     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
1016
1017     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1018
1019 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
1020 Author: Peter Tyser <ptyser@xes-inc.com>
1021 Date:   Fri Mar 13 18:54:50 2009 -0500
1022
1023     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
1024
1025     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1026
1027 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
1028 Author: Peter Tyser <ptyser@xes-inc.com>
1029 Date:   Fri Mar 13 18:54:49 2009 -0500
1030
1031     tools/Makefile: Create generic build rules
1032
1033     Create a few generic build rules to replace the current method which has
1034     1 build target for each file
1035
1036     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1037
1038 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
1039 Author: Peter Tyser <ptyser@xes-inc.com>
1040 Date:   Fri Mar 13 18:54:48 2009 -0500
1041
1042     tools/Makefile: Use auto-generated object file dependencies
1043
1044     Files in the SRCS variable have their dependencies automatically
1045     generated so remove duplicate explicit dependencies
1046
1047     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1048
1049 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
1050 Author: Peter Tyser <ptyser@xes-inc.com>
1051 Date:   Fri Mar 13 18:54:47 2009 -0500
1052
1053     tools/Makefile: Remove symlinks for remaining source files
1054
1055     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1056
1057 commit eed073315b6447eceadf7468a4c2b757442c7c6f
1058 Author: Peter Tyser <ptyser@xes-inc.com>
1059 Date:   Fri Mar 13 18:54:46 2009 -0500
1060
1061     tools/Makefile: Dynamically generate libfdt object dependencies
1062
1063     Add the libfdt files to the SRCS variable so that they have their
1064     dependencies automatically generated
1065
1066     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1067
1068 commit c0170175393b94560fa7a5da6dd31377df5f4a72
1069 Author: Peter Tyser <ptyser@xes-inc.com>
1070 Date:   Fri Mar 13 18:54:45 2009 -0500
1071
1072     tools/Makefile: Remove symlinks for fdt targets
1073
1074     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1075
1076 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
1077 Author: Peter Tyser <ptyser@xes-inc.com>
1078 Date:   Fri Mar 13 18:54:44 2009 -0500
1079
1080     tools/Makefile: Add libfdt/ to the include search path
1081
1082     This change makes the process of symlinking libfdt_internal.h
1083     unnecessary
1084
1085     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1086
1087 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
1088 Author: Peter Tyser <ptyser@xes-inc.com>
1089 Date:   Fri Mar 13 18:54:43 2009 -0500
1090
1091     tools: Remove unecessary symlinking of zlib.h
1092
1093     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
1094     was previously necessary to give U-Boot's version of zlib.h precedence
1095     over the host computer's version of zlib.h.
1096
1097     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1098
1099 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
1100 Author: Peter Tyser <ptyser@xes-inc.com>
1101 Date:   Fri Mar 13 18:54:42 2009 -0500
1102
1103     tools/Makefile: Add tools/ to the include search path
1104
1105     This change makes the process of symlinking mkimage.h and fdt_host.h
1106     unnecessary
1107
1108     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1109
1110 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
1111 Author: Peter Tyser <ptyser@xes-inc.com>
1112 Date:   Fri Mar 13 18:54:41 2009 -0500
1113
1114     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
1115
1116     Also conditionally add ncb.o to OBJ_FILES list
1117
1118     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1119
1120 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
1121 Author: Peter Tyser <ptyser@xes-inc.com>
1122 Date:   Fri Mar 13 18:54:40 2009 -0500
1123
1124     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
1125
1126     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1127
1128 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
1129 Author: Peter Tyser <ptyser@xes-inc.com>
1130 Date:   Fri Mar 13 18:54:39 2009 -0500
1131
1132     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
1133
1134     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1135
1136 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
1137 Author: Peter Tyser <ptyser@xes-inc.com>
1138 Date:   Fri Mar 13 18:54:38 2009 -0500
1139
1140     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
1141
1142     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1143
1144 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
1145 Author: Peter Tyser <ptyser@xes-inc.com>
1146 Date:   Fri Mar 13 18:54:37 2009 -0500
1147
1148     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
1149
1150     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1151
1152 commit eeba8617908e33f7e7db3b1588c04ca65b856793
1153 Author: Peter Tyser <ptyser@xes-inc.com>
1154 Date:   Fri Mar 13 18:54:36 2009 -0500
1155
1156     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
1157
1158     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1159
1160 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
1161 Author: Peter Tyser <ptyser@xes-inc.com>
1162 Date:   Fri Mar 13 18:54:35 2009 -0500
1163
1164     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
1165
1166     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1167
1168 commit ee3584a5970230ee96aae19505ad3226734ee4ff
1169 Author: Peter Tyser <ptyser@xes-inc.com>
1170 Date:   Fri Mar 13 18:54:34 2009 -0500
1171
1172     tools/Makefile: Split variable declarations into multiple lines
1173
1174     Split variable declarations into multiple lines and use the standard
1175     VAR-y convention.  Also move object and binary variable declarations to
1176     after config.mk has been included to allow for these lists to utilize
1177     the CONFIG_XXX variables.
1178
1179     These changes lay the groundwork for conditional compilation of files
1180     in the tools directory.
1181
1182     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1183
1184 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
1185 Author: Peter Tyser <ptyser@xes-inc.com>
1186 Date:   Fri Mar 13 18:54:33 2009 -0500
1187
1188     tools/Makefile: Remove inappropriate double-tabs
1189
1190     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1191
1192 commit 652f4ba076689fd0acd447561a777b1c440a4b57
1193 Author: Peter Tyser <ptyser@xes-inc.com>
1194 Date:   Fri Mar 13 18:54:32 2009 -0500
1195
1196     tools/Makefile: Remove HOSTARCH HOSTOS defines
1197
1198     The values of HOSTARCH and HOSTOS which are exported from the top-level
1199     Makefile should be used
1200
1201     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1202
1203 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
1204 Author: Peter Tyser <ptyser@xes-inc.com>
1205 Date:   Fri Mar 13 18:54:31 2009 -0500
1206
1207     gen_eth_addr: Use POSIX rand() and srand()
1208
1209     Replace random()/srandom() use with rand()/srand() to support
1210     compilation with the mingw toolchain.  The rand()/srand() functions are
1211     generally more common and are functionally equivalent to the original
1212     random()/srandom() calls.
1213
1214     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1215
1216 commit 24d2ae5e9debe4b75151a55251031a14477fa875
1217 Author: Peter Tyser <ptyser@xes-inc.com>
1218 Date:   Fri Mar 13 18:54:28 2009 -0500
1219
1220     elf.h: Use stdint.h to provide standard typedefs for WIN32
1221
1222     The original code provided an incomplete set of typedefs for WIN32
1223     compiles and replicated the standard typedefs that are already
1224     provided by stdint.h
1225
1226     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1227
1228 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
1229 Author: Peter Tyser <ptyser@xes-inc.com>
1230 Date:   Fri Mar 13 18:54:27 2009 -0500
1231
1232     common/Makefile: Conditionally compile env_embedded.o
1233
1234     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1235
1236 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
1237 Author: Peter Tyser <ptyser@xes-inc.com>
1238 Date:   Fri Mar 13 18:54:26 2009 -0500
1239
1240     Makefile: Add removal of *.exe files to clean target
1241
1242     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1243
1244 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
1245 Author: Peter Tyser <ptyser@xes-inc.com>
1246 Date:   Fri Mar 13 18:54:25 2009 -0500
1247
1248     Makefile: Make autoconf.mk a dependency of the depend target
1249
1250     The original code did not generate autoconf.mk until after some targets
1251     dependencies had already been calculated, for example the directories in
1252     the SUBDIRS variable
1253
1254     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1255
1256 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
1257 Author: unsik Kim <donari75@gmail.com>
1258 Date:   Wed Feb 25 11:31:24 2009 +0900
1259
1260     mflash: Initial mflash support
1261
1262     Mflash is fusion memory device mainly targeted consumer eletronic and
1263     mobile phone.
1264     Internally, it have nand flash and other hardware logics and supports
1265     some different operation (ATA, IO, XIP) modes.
1266
1267     IO mode is custom mode for the host that doesn't have IDE interface.
1268     (Many mobile targeted SoC doesn't have IDE bus)
1269
1270     This driver support mflash IO mode.
1271
1272     Followings are brief descriptions about IO mode.
1273
1274     1. IO mode based on ATA protocol and uses some custom command. (read
1275        confirm, write confirm)
1276     2. IO mode uses SRAM bus interface.
1277
1278     Signed-off-by: unsik Kim <donari75@gmail.com>
1279
1280 commit 200779e3e2a9aeda7030b171a8c39d7797019917
1281 Author: Detlev Zundel <dzu@denx.de>
1282 Date:   Fri Apr 3 11:53:01 2009 +0200
1283
1284     Rename common ns16550 constants with UART_ prefix to prevent conflicts
1285
1286     Fix problems introduced in commit
1287     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
1288     diagnosis functions for inka4x0] which redefined MSR_RI which is
1289     already used on PowerPC systems.
1290
1291     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
1292     be needed for other redundant occurrences though.
1293
1294     Signed-off-by: Detlev Zundel <dzu@denx.de>
1295
1296 commit 99067b08f4a0ce20ff337a35211239f334d8f451
1297 Author: Scott Wood <scottwood@freescale.com>
1298 Date:   Wed Apr 1 15:33:24 2009 -0500
1299
1300     Noisily disable the legacy NAND subsystem.
1301
1302     Legacy NAND is marked for feature removal after April 2009 (i.e. this
1303     upcoming release).  There are still several boards that reference it
1304     (though many do so only for disk-on-chip support which has been silently
1305     disabled for a while now).  These boards will now fail to build
1306     with #error, though the code is still there if the user removes #error.
1307
1308     The plan is to remove the code outright in the next release, along with
1309     any board code that refers to it (such as board/esd/common/auto_update.c).
1310
1311     Also, remove the legacy NAND API description from README.nand.
1312
1313     Signed-off-by: Scott Wood <scottwood@freescale.com>
1314
1315 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
1316 Author: apgmoorthy <moorthy.apg@samsung.com>
1317 Date:   Fri Mar 27 14:45:23 2009 +0530
1318
1319     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
1320
1321     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
1322     However, u-boot image for apollon board is 195KB making the board
1323     unbootable with OneNAND.
1324
1325     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
1326     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
1327
1328     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
1329     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
1330     Signed-off-by: Scott Wood <scottwood@freescale.com>
1331
1332 commit 74de7aefd79690bae8cf5a5120f5962d444be089
1333 Author: Wolfgang Denk <wd@denx.de>
1334 Date:   Wed Apr 1 23:34:12 2009 +0200
1335
1336     Add "source" command; prepare removal of "autoscr" command
1337
1338     According to the doc/feature-removal-schedule.txt, the "autoscr"
1339     command will be replaced by the "source" command in approximately 6
1340     months from now.
1341
1342     This patch prepares this change and starts a 6 month transition
1343     period as follows:
1344
1345     - The new "source" command has been added, which implements exactly
1346       the same functionlaity as the old "autoscr" command before
1347     - The old "autoscr" command name is kept as an alias for compatibility
1348     - Command sequences, script files atc. have been adapted to use the
1349       new "source" command
1350     - Related environment variables ("autoscript", "autoscript_uname")
1351       have *not* been adapted yet; these will be renamed resp. removed in
1352       a separate patch when the support for the "autoscr" command get's
1353       finally dropped.
1354
1355     Signed-off-by: Wolfgang Denk <wd@denx.de>
1356
1357 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
1358 Author: Wolfgang Denk <wd@denx.de>
1359 Date:   Thu Apr 2 17:31:09 2009 +0200
1360
1361     Add "GPL cleanup" task to feature-removal-schedule.txt
1362
1363     Announce removal of all non-GPL or GPL-incompatible files
1364     after August 2009.
1365
1366     Signed-off-by: Wolfgang Denk <wd@denx.de>
1367
1368 commit d9596ffbdc79cea285010b67dd20a4618303f624
1369 Author: Mike Frysinger <vapier@gentoo.org>
1370 Date:   Thu Apr 2 12:51:28 2009 -0400
1371
1372     sf: stmicro: dont send 4 bytes when reading status register
1373
1374     I can't find anywhere in the datasheet that says the status register needs
1375     3 dummy bytes sent to it before being able to read back the first real
1376     result.  Tests on a Blackfin board show that after writing the opcode, the
1377     status register starts coming back immediately.  So only write out the
1378     read status register opcode before polling the result.
1379
1380     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1381     CC: Jason McMullan <mcmullan@netapp.com>
1382     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1383
1384 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
1385 Author: Mike Frysinger <vapier@gentoo.org>
1386 Date:   Thu Apr 2 08:11:31 2009 -0400
1387
1388     sf: set common timeouts in seconds, not milliseconds
1389
1390     Since timeouts are only hit when there is a problem in the system, we
1391     don't want to prematurely timeout on a functioning setup.  Thus having
1392     low timeouts (in milliseconds) doesn't gain us anything in the production
1393     case, but rather increases likely hood of causing problems where none
1394     otherwise exist.
1395
1396     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1397     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1398
1399 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
1400 Author: Mike Frysinger <vapier@gentoo.org>
1401 Date:   Thu Apr 2 06:51:49 2009 -0400
1402
1403     sf: stmicro: use common page timeout define
1404
1405     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1406     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1407
1408 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
1409 Author: Mike Frysinger <vapier@gentoo.org>
1410 Date:   Sat Mar 28 06:41:09 2009 -0400
1411
1412     sf: always read 5 bytes for the idcode
1413
1414     Some SPI flash drivers like to have extended id information available
1415     (like the spansion flash), so rather than making it re-issue the ID cmd
1416     to get at the last 2 bytes, have the common code read 5 bytes rather than
1417     just 3.  This also matches the Linux behavior where it always reads 5 id
1418     bytes from all flashes.
1419
1420     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1421     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1422     CC: Mingkai Hu <Mingkai.hu@freescale.com>
1423
1424 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
1425 Author: Mike Frysinger <vapier@gentoo.org>
1426 Date:   Fri Mar 27 16:34:21 2009 -0400
1427
1428     sf: stmicro: drop redundant id read
1429
1430     The common SPI flash code reads the idcode and passes it down to the SPI
1431     flash driver, so there is no need to read it again ourselves.
1432
1433     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1434     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1435     CC: Jason McMullan <mcmullan@netapp.com>
1436     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1437
1438 commit 1c5874374e091b4bb62917c519861f7682fe066e
1439 Author: Mike Frysinger <vapier@gentoo.org>
1440 Date:   Fri Mar 27 19:27:58 2009 -0400
1441
1442     sf: add driver for SST flashes
1443
1444     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1445     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1446
1447 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
1448 Author: Mike Frysinger <vapier@gentoo.org>
1449 Date:   Mon Mar 23 23:03:58 2009 -0400
1450
1451     sf: drop DEBUG defines
1452
1453     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1454     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1455
1456 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
1457 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1458 Date:   Sun Jan 4 07:44:07 2009 +0100
1459
1460     mtd: add some at45 spi flash support
1461
1462      - AT45DB321D
1463      - AT45DB161D
1464      - AT45DB081D
1465      - AT45DB041D
1466      - AT45DB021D
1467      - AT45DB011D
1468
1469     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1470     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1471
1472 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
1473 Author: Mingkai Hu <Mingkai.hu@freescale.com>
1474 Date:   Tue Mar 31 14:09:41 2009 +0800
1475
1476     mtd: SPI Flash: Support the Spansion Flash
1477
1478     Add MTD SPI Flash support for S25FL008A, S25FL016A,
1479     S25FL032A, S25FL064A, S25FL128P.
1480
1481     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
1482     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1483
1484 commit 40587701924aa0afc86b3840421b4cc6de42c748
1485 Author: Mike Frysinger <vapier@gentoo.org>
1486 Date:   Mon Mar 30 20:56:45 2009 -0400
1487
1488     Blackfin: force all boards to HZ of 1000
1489
1490     Since the Blackfin timer code requires HZ to be 1000, barf on any board
1491     that tries to use a different value.
1492
1493     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1494
1495 commit f4032d2eec9d71a59c6c724671e577f67a76839b
1496 Author: Mike Frysinger <vapier@gentoo.org>
1497 Date:   Fri Mar 27 21:07:45 2009 -0400
1498
1499     Blackfin: bf533-stamp: drop old spi flash driver
1500
1501     Now that the common SPI flash code supports all the flashes, we can stop
1502     using the old driver.
1503
1504     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1505
1506 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
1507 Author: Mike Frysinger <vapier@gentoo.org>
1508 Date:   Thu Mar 26 15:42:12 2009 -0400
1509
1510     Blackfin: add BF538/BF539 SPI portmux handling
1511
1512     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1513
1514 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
1515 Author: Mike Frysinger <vapier@gentoo.org>
1516 Date:   Mon Mar 23 22:36:10 2009 -0400
1517
1518     Blackfin: do not delay on output bytes
1519
1520     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1521
1522 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
1523 Author: Mike Frysinger <vapier@gentoo.org>
1524 Date:   Mon Mar 23 22:17:27 2009 -0400
1525
1526     Blackfin: drop newline from OTP help
1527
1528     Looks like I accidentally added a newline to the OTP help when merging and
1529     older change.
1530
1531     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1532
1533 commit d3c38d96b991d641a33f7748130dae008563cdc9
1534 Author: Mike Frysinger <vapier@gentoo.org>
1535 Date:   Sun Mar 22 23:43:31 2009 -0400
1536
1537     Blackfin: convert bfin_sdh to legacy mmc
1538
1539     The Blackfin SDH controller is still using the legacy framework, so update
1540     the driver to use the renamed functions.
1541
1542     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1543
1544 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
1545 Author: Mike Frysinger <vapier@gentoo.org>
1546 Date:   Sun Feb 22 16:30:38 2009 -0500
1547
1548     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
1549
1550     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1551
1552 commit ad9073211ca9e62162a39851e082b8d07a662fb6
1553 Author: Mike Frysinger <vapier@gentoo.org>
1554 Date:   Fri Feb 13 17:10:58 2009 -0500
1555
1556     Blackfin: fix crash when booting from external memory
1557
1558     When testing a u-boot binary that hasn't been booted from the bootrom, we
1559     have to make sure the bootstruct structure has sane storage space.  If we
1560     don't, the initcode will crash when it tries to dereference an invalid
1561     pointer.
1562
1563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1564
1565 commit 84a9dda324c3faa56be14449d7519b993d9397a9
1566 Author: Mike Frysinger <vapier@gentoo.org>
1567 Date:   Sun Oct 12 21:32:52 2008 -0400
1568
1569     Blackfin: bf518f-ezbrd: new board port
1570
1571     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1572
1573 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
1574 Author: Mike Frysinger <vapier@gentoo.org>
1575 Date:   Sun Oct 12 21:30:48 2008 -0400
1576
1577     Blackfin: bf526-ezbrd: new board port
1578
1579     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1580
1581 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
1582 Author: Mike Frysinger <vapier@gentoo.org>
1583 Date:   Sun Oct 12 21:25:33 2008 -0400
1584
1585     Blackfin: bf538f-ezkit: new board port
1586
1587     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1588
1589 commit d9a5d113b93583c984711127ab8503e136ed1e4a
1590 Author: Mike Frysinger <vapier@gentoo.org>
1591 Date:   Sun Oct 12 20:59:12 2008 -0400
1592
1593     Blackfin: bf527-ezkit: new board port
1594
1595     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1596
1597 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
1598 Author: Mike Frysinger <vapier@gentoo.org>
1599 Date:   Sun Oct 12 05:05:42 2008 -0400
1600
1601     Blackfin: bf548-ezkit: new board port
1602
1603     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1604
1605 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
1606 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
1607 Date:   Tue Mar 3 14:23:59 2009 +0100
1608
1609     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
1610
1611     Allow the inclusion of libfdt.h in C++ source.
1612
1613     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
1614     Acked-by: David Gibson <david@gibson.dropbear.id.au>
1615
1616 commit 13d93f38e86818739317b0206d597265cf9e675e
1617 Author: Emil Medve <Emilian.Medve@Freescale.com>
1618 Date:   Mon Feb 23 10:43:36 2009 -0600
1619
1620     Fix a possible overflow case detected by gcc 4.3.2
1621
1622     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
1623     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
1624
1625     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
1626
1627 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
1628 Author: David Gibson <david@gibson.dropbear.id.au>
1629 Date:   Fri Feb 6 14:03:24 2009 +1100
1630
1631     libfdt: Rework/cleanup fdt_next_tag()
1632
1633     Currently, callers of fdt_next_tag() must usually follow the call with
1634     some sort of call to fdt_offset_ptr() to verify that the blob isn't
1635     truncated in the middle of the tag data they're going to process.
1636     This is a bit silly, since fdt_next_tag() generally has to call
1637     fdt_offset_ptr() on at least some of the data following the tag for
1638     its own operation.
1639
1640     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
1641     verify the data between its starting offset and the offset it returns
1642     in nextoffset.  This simplifies fdt_get_property() which no longer has
1643     to verify itself that the property data is all present.
1644
1645     At the same time, I neaten and clarify the error handling for
1646     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
1647     a tag value in some circumstances - which almost none of the callers
1648     checked for.  Also, fdt_next_tag() could return FDT_END either because
1649     it encountered an FDT_END tag, or because it reached the end of the
1650     structure block - no way was provided to tell between these cases.
1651
1652     With this patch, fdt_next_tag() always returns FDT_END with a negative
1653     value in nextoffset for an error.  This means the several places which
1654     loop looking for FDT_END will still work correctly - they only need to
1655     check for errors at the end.  The errors which fdt_next_tag() can
1656     report are:
1657         - -FDT_ERR_TRUNCATED if it reached the end of the structure
1658            block instead of finding a tag.
1659
1660         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
1661                tag data couldn't be verified with fdt_offset_ptr().
1662
1663     This patch also updates the callers of fdt_next_tag(), where
1664     appropriate, to make use of the new error reporting.
1665
1666     Finally, the prototype for the long gone _fdt_next_tag() is removed
1667     from libfdt_internal.h.
1668
1669     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
1670
1671 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
1672 Author: David Gibson <david@gibson.dropbear.id.au>
1673 Date:   Fri Feb 6 14:01:56 2009 +1100
1674
1675     libfdt: Rework fdt_next_node()
1676
1677     Currently fdt_next_node() will find the next node in the blob
1678     regardless of whether it is above, below or at the same level in the
1679     tree as the starting node - the depth parameter is updated to indicate
1680     which is the case.  When a depth parameter is supplied, this patch
1681     makes it instead terminate immediately when it finds the END_NODE tag
1682     for a node at depth 0.  In this case it returns the offset immediately
1683     past the END_NODE tag.
1684
1685     This has a couple of advantages.  First, this slightly simplifies
1686     fdt_subnode_offset(), which no longer needs to explicitly check that
1687     fdt_next_node()'s iteration hasn't left the starting node.  Second,
1688     this allows fdt_next_node() to be used to implement
1689     _fdt_node_end_offset() considerably simplifying the latter function.
1690
1691     The other users of fdt_next_node() either don't need to iterate out of
1692     the starting node, or don't pass a depth parameter at all.  Any
1693     callers that really need to iterate out of the starting node, but keep
1694     tracking depth can do so by biasing the initial depth value.
1695
1696     This is a semantic change, but I think it's very unlikely to break any
1697     existing library users.
1698
1699     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
1700
1701 commit c123098035be8bae3859bbfbd06861f197c07631
1702 Author: Scott Wood <scottwood@freescale.com>
1703 Date:   Tue Mar 31 17:49:36 2009 -0500
1704
1705     mpc83xx: Set guarded bit on BAT that covers the end of the address space
1706
1707     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
1708     address space; however, not all of this space is covered by a device.  In
1709     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
1710     at the far end of the address space.
1711
1712     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
1713     some circumstances, this leads to the CPU speculatively loading from
1714     0xfffffff8 if p is NULL.  This leads to a machine check.
1715
1716     Signed-off-by: Scott Wood <scottwood@freescale.com>
1717
1718     continuation to the remaining mpc83xx boards that suffer from the same problem.
1719
1720     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1721
1722 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
1723 Author: Kim Phillips <kim.phillips@freescale.com>
1724 Date:   Mon Mar 30 14:28:05 2009 -0500
1725
1726     rtc: remove broken rtc_read and rtc_write declarations
1727
1728     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
1729     EPSON)" introduces the following build error on boards configuring e.g,
1730     the ds1374 rtc:
1731
1732     Configuring for MPC837XEMDS board...
1733     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
1734     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
1735     ds1374.c:104: error: conflicting types for 'rtc_write'
1736     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
1737
1738     this reverts the erroneous chunk.
1739
1740     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1741     Acked-by: Detlev Zundel <dzu@denx.de>
1742     CC: Detlev Zundel <dzu@denx.de>
1743     CC: Andreas Pfefferle <ap@denx.de>
1744
1745 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
1746 Author: Kumar Gala <galak@kernel.crashing.org>
1747 Date:   Tue Mar 31 17:58:13 2009 -0500
1748
1749     85xx/86xx: Ensure MP boot page is not used
1750
1751     We had a bug on 86xx in which the boot page used to bring up secondary
1752     cores was being overwritten and used for the malloc region in u-boot.
1753
1754     We need to reserve the region of memory that the boot page is going to
1755     be put at so nothing uses it.
1756
1757     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1758     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
1759
1760 commit c840d26c752141b94bbc24ac748ddd45752a955a
1761 Author: Kumar Gala <galak@kernel.crashing.org>
1762 Date:   Tue Mar 31 23:11:05 2009 -0500
1763
1764     85xx: Introduce determine_mp_bootpg() helper.
1765
1766     Match determine_mp_bootpg() that was added for 86xx.  We need this to
1767     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
1768     make sure to reserve the region of memory used for the MP bootpg() so
1769     other u-boot code doesn't use it.
1770
1771     Also added a comment about how cpu_reset() is dealing w/an errata on
1772     early 85xx MP HW.
1773
1774     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1775
1776 commit 7649a590b53ee548f41428bf20780f74ce9fc099
1777 Author: Kumar Gala <galak@kernel.crashing.org>
1778 Date:   Tue Mar 31 23:02:38 2009 -0500
1779
1780     86xx: Cleanup MP support
1781
1782     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
1783     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
1784       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
1785       to reserve the region of memory used for the MP bootpg() so other
1786       u-boot code doesn't use it.
1787     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
1788       allow cmd_mp.c to build and work. In the future we should look at
1789       implementing all these functions. This could be common w/85xx if we
1790       use spin tables on 86xx.
1791
1792     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1793
1794 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
1795 Author: Becky Bruce <beckyb@kernel.crashing.org>
1796 Date:   Tue Mar 31 18:38:37 2009 -0500
1797
1798     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
1799
1800     We're missing the board_lmb_reserve definitions that allow
1801     cpu_mp_lmb_reserve to be called; this means that Linux
1802     is free to reallocate reserved pages.  Linux currently boots
1803     because we're getting lucky - the page we've reserved is
1804     high enough in memory that it isn't allocated by Linux
1805     while we still need it to be in existence.
1806
1807     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1808     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1809
1810 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
1811 Author: Ladislav Michl <ladis@linux-mips.org>
1812 Date:   Tue Mar 31 13:43:10 2009 +0200
1813
1814     NetStar: fix NAND
1815
1816     Fix NAND support broken during new NAND code merge. Move those few lines of
1817     code to board/netstar/netstar.c
1818
1819     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1820
1821 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
1822 Author: Jens Scharsig <esw@bus-elektronik.de>
1823 Date:   Tue Mar 31 08:18:29 2009 +0200
1824
1825     soft_i2c.c compiler/linker error
1826
1827     This patch fix the compiler/linker errors
1828
1829     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
1830     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
1831
1832     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
1833     uesd/undef (wrong define order)
1834
1835     and
1836
1837     removes additional empty lines
1838
1839     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1840
1841 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
1842 Author: Haiying Wang <Haiying.Wang@freescale.com>
1843 Date:   Fri Mar 27 17:02:45 2009 -0400
1844
1845     MPC85xx: Add MPC8569MDS board support
1846
1847     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
1848     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
1849
1850     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1851     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
1852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1853
1854 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
1855 Author: Haiying Wang <Haiying.Wang@freescale.com>
1856 Date:   Fri Mar 27 17:02:44 2009 -0400
1857
1858     MPC85xx: Add MPC8569 CPU support
1859
1860     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
1861     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
1862     then invalidate it after LBCR bit 13 is set.
1863
1864     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1865     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1866
1867 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
1868 Author: Haiying Wang <Haiying.Wang@freescale.com>
1869 Date:   Thu Mar 26 17:01:49 2009 -0400
1870
1871     MPC85xx: Load and enable QE microcode patch in IRAM
1872
1873     For the silicon which doesn't have ROM support in QE, it always needs to load
1874     a pre-built ucode binary to IRAM so that QE can work.
1875
1876     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1877     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
1878
1879 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
1880 Author: Kumar Gala <galak@kernel.crashing.org>
1881 Date:   Thu Mar 19 09:16:10 2009 -0500
1882
1883     85xx: Add support for additional e500mc features
1884
1885     * Enable backside L2
1886     * e500mc no longer has timebase enable in HID (moved to CCSR register)
1887
1888     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1889
1890 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
1891 Author: Dave Liu <daveliu@freescale.com>
1892 Date:   Sat Mar 14 12:48:30 2009 +0800
1893
1894     fsl-ddr: add the DDR3 SPD infrastructure
1895
1896     - support mirrored DIMMs, not support register DIMMs
1897     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
1898     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
1899
1900     Signed-off-by: Dave Liu <daveliu@freescale.com>
1901     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
1902
1903 commit 6a8197836702991468cead5ead073f589e2623ad
1904 Author: Dave Liu <daveliu@freescale.com>
1905 Date:   Sat Mar 14 12:48:19 2009 +0800
1906
1907     fsl-ddr: Fix two bugs in the ddr infrastructure
1908
1909     1. wr_lat
1910        UM said the total write latency for DDR2 is equal to
1911        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
1912        so, the WR_LAT = CL - 1;
1913     2. rd_to_pre
1914        we missed to add the ADD_LAT for DDR2 case.
1915
1916     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
1917     Signed-off-by: Dave Liu <daveliu@freescale.com>
1918
1919 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
1920 Author: Kumar Gala <galak@kernel.crashing.org>
1921 Date:   Thu Mar 26 01:34:39 2009 -0500
1922
1923     83xx: Use common LSDMR defines from asm/fsl_lbc.h
1924
1925     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1926     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1927
1928 commit b0fe93eda69721aef1fdef576164b668fad83bbd
1929 Author: Kumar Gala <galak@kernel.crashing.org>
1930 Date:   Thu Mar 26 01:34:38 2009 -0500
1931
1932     85xx: Use common LSDMR defines from asm/fsl_lbc.h
1933
1934     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1935
1936 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
1937 Author: Kumar Gala <galak@kernel.crashing.org>
1938 Date:   Thu Mar 26 01:34:37 2009 -0500
1939
1940     Add LSDMR (SDRAM Mode Register) definition on localbus
1941
1942     The masks for various bit defines of LSDMR are common and thus we can
1943     define them in one place rather than replicating them in each config.h
1944
1945     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1946
1947 commit 89c00fb15859213788f0ad089934c376fb356099
1948 Author: Ladislav Michl <ladis@linux-mips.org>
1949 Date:   Mon Mar 30 18:58:41 2009 +0200
1950
1951     OMAP: use {read,write}l to access timer registers
1952
1953     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1954
1955 commit 81472d893fa565c9d300928a40e504a689bde131
1956 Author: Ladislav Michl <ladis@linux-mips.org>
1957 Date:   Mon Mar 30 18:58:41 2009 +0200
1958
1959     OMAP: rename timer divisor
1960
1961     Divisor field is called PTV not PVT.
1962
1963     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1964     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1965
1966 commit fe672d60b2a8c9e803596ba4533fa1776015551d
1967 Author: Ladislav Michl <ladis@linux-mips.org>
1968 Date:   Mon Mar 30 18:58:40 2009 +0200
1969
1970     OMAP: reindent timer code
1971
1972     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1973
1974 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
1975 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1976 Date:   Mon Mar 30 18:58:40 2009 +0200
1977
1978     s3c2410: move nand driver to drivers/mtd/nand
1979
1980     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1981
1982 commit d3b635774194404bcd424f6b376419bce22076ad
1983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1984 Date:   Mon Mar 30 18:58:40 2009 +0200
1985
1986     s3c24x0: move i2c driver to drivers/i2c
1987
1988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1989
1990 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
1991 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1992 Date:   Mon Mar 30 18:58:39 2009 +0200
1993
1994     s3c24x0: move serial driver to drivers/serial
1995
1996     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1997
1998 commit 942ba9969b9efa25f816c238861ecb339c54ed73
1999 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2000 Date:   Mon Mar 30 18:58:39 2009 +0200
2001
2002     davinci: move i2c driver to drivers/i2c
2003
2004     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2005
2006 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
2007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008 Date:   Mon Mar 30 18:58:39 2009 +0200
2009
2010     davinci: move nand driver to drivers/mtd/nand
2011
2012     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2013
2014 commit d3e55d0774a180c1837bd7ddec464015e883bd86
2015 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2016 Date:   Mon Mar 30 18:58:38 2009 +0200
2017
2018     imx: move serial driver to drivers/serial
2019
2020     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2021
2022 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
2023 Author: Detlev Zundel <dzu@denx.de>
2024 Date:   Mon Mar 30 00:31:36 2009 +0200
2025
2026     inka4x0: Use proper accessor macros for memory mapped registers.
2027
2028     Signed-off-by: Detlev Zundel <dzu@denx.de>
2029
2030 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
2031 Author: Detlev Zundel <dzu@denx.de>
2032 Date:   Mon Mar 30 00:31:35 2009 +0200
2033
2034     inka4x0: Add hardware diagnosis and RTC in configuration.
2035
2036     This patch adds the board specific communication routines needed by
2037     the external 4543 RTC.
2038
2039     Signed-off-by: Detlev Zundel <dzu@denx.de>
2040     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2041
2042 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
2043 Author: Detlev Zundel <dzu@denx.de>
2044 Date:   Mon Mar 30 00:31:34 2009 +0200
2045
2046     inka4x0: Add hardware diagnosis functions for inka4x0
2047
2048     This patch adds advanced diagnosis functions for the inka4x0 board.
2049
2050     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2051     Signed-off-by: Detlev Zundel <dzu@denx.de>
2052
2053 commit 04e11cf383ff6231535fd981023bb1306b2133d4
2054 Author: Detlev Zundel <dzu@denx.de>
2055 Date:   Mon Mar 30 00:31:33 2009 +0200
2056
2057     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
2058
2059     Signed-off-by: Detlev Zundel <dzu@denx.de>
2060     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2061
2062 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
2063 Author: Detlev Zundel <dzu@denx.de>
2064 Date:   Mon Mar 30 00:31:32 2009 +0200
2065
2066     drivers/twserial: Add protocol driver for "three wire serial" interface.
2067
2068     This pretty unintelligent interface is used on some RTC chips.
2069
2070     Signed-off-by: Detlev Zundel <dzu@denx.de>
2071
2072 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
2073 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2074 Date:   Sun Mar 29 23:01:42 2009 +0200
2075
2076     arm720t/clps7111: move serial driver to drivers/serial
2077
2078     add CONFIG_CLPS7111_SERIAL to activate the driver
2079
2080     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2081
2082 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
2083 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2084 Date:   Sun Mar 29 23:01:42 2009 +0200
2085
2086     lpc2292: move serial driver to drivers/serial
2087
2088     add CONFIG_LPC2292_SERIAL to activate the driver
2089
2090     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2091
2092 commit 176a600d0ecdaccbac483d2ba992d0119f853119
2093 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2094 Date:   Sun Mar 29 23:01:42 2009 +0200
2095
2096     ks8695: move serial driver to drivers/serial
2097
2098     add CONFIG_KS8695_SERIAL to activate the driver
2099
2100     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2101
2102 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
2103 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2104 Date:   Sun Mar 29 23:01:42 2009 +0200
2105
2106     s3c64xx: move usb driver to drivers/usb
2107
2108     add CONFIG_USB_S3C64XX to activate the driver
2109
2110     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2111
2112 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
2113 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2114 Date:   Sun Mar 29 23:01:41 2009 +0200
2115
2116     imx31: move serial driver to drivers/serial
2117
2118     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2119
2120 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
2121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2122 Date:   Sun Mar 29 23:01:41 2009 +0200
2123
2124     netarm: move serial driver to drivers/serial
2125
2126     add CONFIG_NETARM_SERIAL to activate the driver
2127
2128     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2129
2130 commit 412ab705888742add435dd6ffc2e8bda14962235
2131 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2132 Date:   Sun Mar 29 23:01:41 2009 +0200
2133
2134     sa1100: move serial driver to drivers/serial
2135
2136     add CONFIG_SA1100_SERIAL to activate the driver
2137
2138     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2139
2140 commit b2368754a9202225fd072e159fb78da7d2cdb623
2141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2142 Date:   Sun Mar 29 23:01:41 2009 +0200
2143
2144     s3c44b0: extract cache from cpu.c
2145
2146     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2147
2148 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
2149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2150 Date:   Sun Mar 29 23:01:41 2009 +0200
2151
2152     s3c44b0: move serial driver to drivers/serial
2153
2154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2155
2156 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
2157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2158 Date:   Sun Mar 29 23:01:40 2009 +0200
2159
2160     s3c44b0: move rtc driver to drivers/rtc
2161
2162     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2163
2164 commit 50f601cca8985615f9e3de4c34887448ade8a64b
2165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2166 Date:   Sun Mar 29 23:01:40 2009 +0200
2167
2168     s3c44b0: move i2c driver to drivers/i2c
2169
2170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2171
2172 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
2173 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2174 Date:   Sun Mar 29 23:01:36 2009 +0200
2175
2176     s3c4510b: move specific code to soc directory
2177
2178     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2179
2180 commit 04531f3c11c693dc54924f82c41979d960309c9d
2181 Author: Ladislav Michl <ladis@linux-mips.org>
2182 Date:   Wed Mar 25 23:43:58 2009 +0100
2183
2184     NetStar: add RTC support
2185
2186     Add RTC support.
2187
2188     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2189
2190 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
2191 Author: Ladislav Michl <ladis@linux-mips.org>
2192 Date:   Wed Mar 25 23:43:50 2009 +0100
2193
2194     NetStar: use generic flash driver
2195
2196     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2197
2198 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
2199 Author: Ladislav Michl <ladis@linux-mips.org>
2200 Date:   Mon Mar 16 23:31:20 2009 +0100
2201
2202     NetStar: update crcit utility
2203
2204     Make crc32 function to match its prototype. Use more meaningful identifiers.
2205
2206     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2207
2208 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
2209 Author: Ladislav Michl <ladis@linux-mips.org>
2210 Date:   Mon Mar 23 17:46:27 2009 +0100
2211
2212     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
2213
2214     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2215
2216 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
2217 Author: Wolfgang Denk <wd@denx.de>
2218 Date:   Sun Mar 29 00:58:16 2009 +0100
2219
2220     VCMA9: fix compile errors
2221
2222     Fix these:
2223     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
2224     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
2225
2226     Signed-off-by: Wolfgang Denk <wd@denx.de>
2227
2228 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
2229 Author: Wolfgang Denk <wd@denx.de>
2230 Date:   Sun Mar 29 00:54:21 2009 +0100
2231
2232     ARM: fix warning: 'print_eth' defined but not used
2233
2234     This warning got issued for all ARM systems that don't have
2235     CONFIG_CMD_NET enabled.
2236
2237     Signed-off-by: Wolfgang Denk <wd@denx.de>
2238
2239 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
2240 Author: Ladislav Michl <ladis@linux-mips.org>
2241 Date:   Mon Mar 23 18:16:34 2009 +0100
2242
2243     cs8900 compile fix
2244
2245     cs8900.c: In function 'eth_init':
2246     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
2247     cs8900.c:165: error: invalid operands to binary <<
2248     cs8900.c:166: error: invalid operands to binary <<
2249     cs8900.c:167: error: invalid operands to binary <<
2250
2251     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2252     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2253
2254 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
2255 Author: Wolfgang Denk <wd@denx.de>
2256 Date:   Sat Mar 28 20:16:16 2009 +0100
2257
2258     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
2259
2260     ...and some other compile warnings.
2261
2262     Signed-off-by: Wolfgang Denk <wd@denx.de>
2263
2264 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
2265 Author: Wolfgang Denk <wd@denx.de>
2266 Date:   Sat Mar 28 16:17:29 2009 +0100
2267
2268     mpc8xx/ether.c: fix warning: unused variable 'bd'
2269
2270     Also minor coding style cleanup.
2271
2272     Signed-off-by: Wolfgang Denk <wd@denx.de>
2273
2274 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
2275 Author: Detlev Zundel <dzu@denx.de>
2276 Date:   Wed Mar 25 17:27:52 2009 +0100
2277
2278     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
2279
2280     Other commands implementing subcommands can reuse this code nicely.
2281
2282     Signed-off-by: Detlev Zundel <dzu@denx.de>
2283     Signed-off-by: Andreas Pfefferle <ap@denx.de>
2284
2285 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
2286 Author: Detlev Zundel <dzu@denx.de>
2287 Date:   Tue Mar 24 18:02:33 2009 +0100
2288
2289     mpc5xxx: Add structure definition for several more register blocks.
2290
2291     Signed-off-by: Detlev Zundel <dzu@denx.de>
2292
2293 commit 739b0e594677a0676577bc95db4495a5563fc7f8
2294 Author: Detlev Zundel <dzu@denx.de>
2295 Date:   Fri Mar 27 15:03:55 2009 +0100
2296
2297     MAINTAINERS: Add entry for 'inka4x0' board.
2298
2299     Signed-off-by: Detlev Zundel <dzu@denx.de>
2300
2301 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
2302 Author: Detlev Zundel <dzu@denx.de>
2303 Date:   Fri Mar 27 15:03:54 2009 +0100
2304
2305     MAINTAINERS: Keep list sorted.
2306
2307     Signed-off-by: Detlev Zundel <dzu@denx.de>
2308
2309 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
2310 Author: Mike Frysinger <vapier@gentoo.org>
2311 Date:   Thu Mar 26 11:17:41 2009 -0400
2312
2313     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
2314
2315     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
2316
2317     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2318     CC: Ben Warren <biggerbadderben@gmail.com>
2319
2320 commit 76756e41cde0a617e781a604cc47dfaef63697cd
2321 Author: Heiko Schocher <hs@denx.de>
2322 Date:   Thu Mar 26 07:33:59 2009 +0100
2323
2324     ppc: cleanup compiler errors/warnings
2325
2326     Current u-boot top of tree builds with warnings/errors for
2327     the following boards:
2328
2329     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
2330     RPXClassic debris PN62
2331
2332     following patch solves this.
2333
2334     Signed-off-by: Heiko Schocher <hs@denx.de>
2335     Acked-by: Mike Frysinger <vapier@gentoo.org>
2336
2337 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
2338 Author: Stefan Roese <sr@denx.de>
2339 Date:   Thu Mar 26 16:14:13 2009 +0100
2340
2341     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
2342
2343     This patch fixes a bug in the Sequoia TLB init code to reconfigure
2344     the correct TLB (boot space) after running from RAM. This bug was
2345     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
2346     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
2347     TLB in the Sequoia init.S file.
2348
2349     Signed-off-by: Stefan Roese <sr@denx.de>
2350
2351 commit e2b66fe453a3679f807b37fc5923d89214302764
2352 Author: Wolfgang Denk <wd@denx.de>
2353 Date:   Thu Mar 26 10:00:57 2009 +0100
2354
2355     ads5121: enable instruction cache
2356
2357     Enabling the instruction cache significantly accelerates U-Boot
2358     operations like CRC checking, image uncompression, etc.
2359
2360     Kudos to Andrea Scian for pointing out.
2361
2362     Signed-off-by: Wolfgang Denk <wd@denx.de>
2363
2364 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
2365 Author: Jon Smirl <jonsmirl@gmail.com>
2366 Date:   Sun Mar 22 22:55:45 2009 -0400
2367
2368     mpc5200: suppress printf until console initialized
2369
2370     On boards which have the environment in eeprom, i2c_init() is called
2371     before the console and RAM are initialized.
2372     Suppress printfs until the console is initialized.
2373
2374     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
2375     Acked-by: Heiko Schocher <hs@denx.de>
2376
2377 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
2378 Author: Guennadi Liakhovetski <lg@denx.de>
2379 Date:   Wed Mar 25 11:36:50 2009 +0100
2380
2381     ARM: Add the imx31_phycore_eet board to MAKEALL
2382
2383     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
2384
2385 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
2386 Author: Nishanth Menon <nm@ti.com>
2387 Date:   Wed Mar 25 22:13:56 2009 +0100
2388
2389     OMAP3:Beagle: Enable mtdparts
2390
2391     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
2392     provides a flexible way to create and maintain u-boot mtd
2393     partitions. This allows commands such as "nand erase fs"
2394     to work and the user no longer needs to decode the absolute
2395     nand offsets. This patch enables this function for beagleboard
2396
2397     Signed-off-by: Nishanth Menon <nm@ti.com>
2398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2399
2400 commit 4de1a5daab079ddc8ce1274144700203d692105c
2401 Author: Mike Frysinger <vapier@gentoo.org>
2402 Date:   Sun Feb 22 16:26:35 2009 -0500
2403
2404     Blackfin: bf537-stamp: split post code out into dedicated post.c
2405
2406     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2407
2408 commit 5e8f245743ed14c89e495ba2c027703db9813160
2409 Author: Mike Frysinger <vapier@gentoo.org>
2410 Date:   Sat Oct 11 22:51:56 2008 -0400
2411
2412     Blackfin: add support for S25FL128 parts
2413
2414     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2415
2416 commit bf1e028bf3eab1d702fa0627cade4460688f3913
2417 Author: Mike Frysinger <vapier@gentoo.org>
2418 Date:   Sat Oct 11 22:51:23 2008 -0400
2419
2420     Blackfin: overhaul SPI flash handling to speed things up
2421
2422     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2423
2424 commit efcc08cededa2168b96f12a22a5872340880d334
2425 Author: Mike Frysinger <vapier@gentoo.org>
2426 Date:   Sat Oct 11 22:51:05 2008 -0400
2427
2428     Blackfin: add support for SST SPI flashes
2429
2430     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2431
2432 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
2433 Author: Mike Frysinger <vapier@gentoo.org>
2434 Date:   Sat Oct 11 22:50:10 2008 -0400
2435
2436     Blackfin: add hack for crappy m25p80
2437
2438     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2439
2440 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
2441 Author: Mike Frysinger <vapier@gentoo.org>
2442 Date:   Wed Jan 21 20:47:12 2009 -0500
2443
2444     Blackfin: bf537-stamp: increase monitor size
2445
2446     The new jffs2 code pushed the code size just over the limit, so increase
2447     the limit a bit more.
2448
2449     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2450
2451 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
2452 Author: Mike Frysinger <vapier@gentoo.org>
2453 Date:   Mon Dec 8 16:16:11 2008 -0500
2454
2455     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
2456
2457     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
2458     increase the speed of SCLK to 125MHz rather than 100MHz.
2459
2460     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2461
2462 commit 751e54c3b77311b720b794813cce20546f288ada
2463 Author: Mike Frysinger <vapier@gentoo.org>
2464 Date:   Sat Oct 11 22:44:14 2008 -0400
2465
2466     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
2467
2468     Use the common net eth functions to setup the env/global data with the MAC
2469     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
2470
2471     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2472
2473 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
2474 Author: Mike Frysinger <vapier@gentoo.org>
2475 Date:   Tue Dec 9 13:47:39 2008 -0500
2476
2477     Blackfin: add clkin_hz= to default kernel command line for ADI boards
2478
2479     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2480
2481 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
2482 Author: Mike Frysinger <vapier@gentoo.org>
2483 Date:   Sun Oct 12 23:49:13 2008 -0400
2484
2485     Blackfin: bf533-stamp: bump up default clocks
2486
2487     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
2488     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
2489
2490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2491
2492 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
2493 Author: Mike Frysinger <vapier@gentoo.org>
2494 Date:   Sat Oct 11 22:40:22 2008 -0400
2495
2496     Blackfin: bf533-stamp: rewrite startup LED notifications
2497
2498     Again, don't clobber pins that we aren't actually using, and use the common
2499     LED framework rather than our own hob-job-but-not-really-working.
2500
2501     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2502
2503 commit cf6f469e2730fc8ab3523808b828be000d6eee77
2504 Author: Mike Frysinger <vapier@gentoo.org>
2505 Date:   Sun Jun 1 09:09:48 2008 -0400
2506
2507     Blackfin: unify common ADI board settings
2508
2509     Rather than duplicate the same ADI settings in every ADI board, create a
2510     common ADI config header and have all ADI boards start using that.  This
2511     will also make merging the ~10 boards I have to forward port a lot easier.
2512
2513     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2514
2515 commit 196c74311f394c6eb08bd9ab07a35671299b9851
2516 Author: Kyungmin Park <kmpark@infradead.org>
2517 Date:   Tue Mar 3 09:05:53 2009 +0900
2518
2519     Reduce OneNAND IPL common code
2520
2521     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
2522     bootloader, but it's common code used about 300~400 bytes. So board
2523     specific codes, such as lowlevel_init, can't has enough code. It make
2524     a difficult to implement OneNAND IPL.
2525
2526     his patch make this common code as small as possible. and give
2527     lowlevel_init can have more codes.
2528
2529     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2530     Signed-off-by: Scott Wood <scottwood@freescale.com>
2531
2532 commit 16f2f5a351004129e79e79816697a367fd9e5446
2533 Author: Wolfgang Grandegger <wg@grandegger.com>
2534 Date:   Wed Feb 11 18:38:24 2009 +0100
2535
2536     Add multi-chip NAND support for the TQM8548 modules
2537
2538     This patches configures the NAND UPM-FSL driver with multi-chip
2539     support for the Micron MT29F8G08FAB NAND flash memory on the
2540     TQM8548 modules.
2541
2542     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2543     Signed-off-by: Scott Wood <scottwood@freescale.com>
2544
2545 commit 33846df28fa1f4cf96a96c18142d48d813caa892
2546 Author: Wolfgang Grandegger <wg@grandegger.com>
2547 Date:   Wed Feb 11 18:38:23 2009 +0100
2548
2549     Add wait flags to support board/chip specific delays
2550
2551     The NAND flash on the TQM8548_BE modules requires a short delay after
2552     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
2553     requires a further short delay after writing out a buffer. Normally the
2554     R/B pin should be checked, but it's not connected on the TQM8548_BE.
2555     The corresponding Linux FSL UPM driver uses similar delay points at the
2556     same locations. To manage these extra delays in a more general way, I
2557     introduced the "wait_flags" field allowing the board-specific driver to
2558     specify various types of extra delay.
2559
2560     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2561     Signed-off-by: Scott Wood <scottwood@freescale.com>
2562
2563 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
2564 Author: Wolfgang Grandegger <wg@grandegger.com>
2565 Date:   Wed Feb 11 18:38:22 2009 +0100
2566
2567     Add support for TQM-specific chip select logic to FSL-UPM
2568
2569     For the NAND chips on the TQM8548 modules, a special chip-select logic is
2570     used. It uses dedicated address lines to be set via UPM machine address
2571     register (mar). This patch adds such support to the FSL-UPM driver.
2572
2573     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2574     Signed-off-by: Scott Wood <scottwood@freescale.com>
2575
2576 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
2577 Author: Wolfgang Grandegger <wg@grandegger.com>
2578 Date:   Wed Feb 11 18:38:21 2009 +0100
2579
2580     Add multi chip support to the FSL-UPM driver
2581
2582     This patch adds support for multi-chip NAND devices to the FSL-UPM
2583     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
2584     called with the argument "chip_nr" to allow testing the proper chip
2585     select line. The NAND support of the MPC8360ERDK is updated as well.
2586     No other boards are currently using the FSL UPM driver.
2587
2588     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2589     Signed-off-by: Scott Wood <scottwood@freescale.com>
2590
2591 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
2592 Author: Wolfgang Grandegger <wg@grandegger.com>
2593 Date:   Wed Feb 11 18:38:20 2009 +0100
2594
2595     Enable multi chip support in the NAND layer
2596
2597     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
2598     Multi-chips devices are displayed as shown:
2599
2600       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
2601
2602     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2603     Signed-off-by: Scott Wood <scottwood@freescale.com>
2604
2605 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
2606 Author: Mike Frysinger <vapier@gentoo.org>
2607 Date:   Sat Oct 11 21:58:33 2008 -0400
2608
2609     Blackfin: put memory into self-refresh before/after programming clocks
2610
2611     When initializing the core clocks, stick external memory into self-refresh.
2612     This gains us a few cool things:
2613      - support suspend-to-RAM with Linux
2614      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
2615      - make sure settings are stable before flashing new version
2616      - finally fully unify initialize startup code path between LDR/non-LDR
2617
2618     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2619
2620 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
2621 Author: Mike Frysinger <vapier@gentoo.org>
2622 Date:   Sat Oct 11 21:56:08 2008 -0400
2623
2624     Blackfin: do not program voltage regulator on parts that do not have one
2625
2626     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
2627     regulator, so do not attempt to program the memory as if it does.
2628
2629     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2630
2631 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
2632 Author: Mike Frysinger <vapier@gentoo.org>
2633 Date:   Sun Jun 1 01:28:24 2008 -0400
2634
2635     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
2636
2637     If the board config does not specify an explicit EBIU_SDBCTL value, set it
2638     up with sane values based on other configuration options.
2639
2640     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2641
2642 commit 3986e981f565c08f10c7e526af8cb518d741c349
2643 Author: Mike Frysinger <vapier@gentoo.org>
2644 Date:   Sat Dec 6 18:06:58 2008 -0500
2645
2646     Blackfin: handle reboot anomaly 432
2647
2648     Workaround anomaly 432:
2649     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
2650     register before executing the PLL programming sequence.  Therefore, any
2651     interrupt enabled in the SIC_IWR1 register prior to the call to
2652     bfrom_SysControl() can prematurely terminate the idle sequence required
2653     for the PLL to relock properly. SIC_IWR0 is properly handled.
2654
2655     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2656
2657 commit 7e1d212b6da492c6ea32c62af92e185284f41291
2658 Author: Mike Frysinger <vapier@gentoo.org>
2659 Date:   Sat Oct 18 04:04:49 2008 -0400
2660
2661     Blackfin: kill off LDR jump block
2662
2663     The Boot ROM uses EVT1 as the entry point so set that rather than having
2664     to use a tiny jump block in the default EVT1 location.
2665
2666     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2667
2668 commit a75fa148d60b1975403441e45565621bba50d2d9
2669 Author: Mike Frysinger <vapier@gentoo.org>
2670 Date:   Tue Jan 6 10:00:48 2009 -0500
2671
2672     Blackfin: simplify symbol_lookup() a bit
2673
2674     No need to skip a byte as the symbol table handles this.
2675
2676     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2677
2678 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
2679 Author: Mike Frysinger <vapier@gentoo.org>
2680 Date:   Sat Feb 7 05:43:21 2009 -0500
2681
2682     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
2683
2684     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2685
2686 commit 58130f8920151d9e8942bbdf3388f2defb47e415
2687 Author: Mike Frysinger <vapier@gentoo.org>
2688 Date:   Sat Feb 7 05:41:17 2009 -0500
2689
2690     Blackfin: drop SPORT_TX read helper macros
2691
2692     The SPORT_TX registers cannot be read (the hardware will trigger an error),
2693     so drop the read helper macros.
2694
2695     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2696
2697 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
2698 Author: Mike Frysinger <vapier@gentoo.org>
2699 Date:   Sat Feb 7 05:25:35 2009 -0500
2700
2701     Blackfin: unify duplicate CPU port definitions
2702
2703     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2704
2705 commit 744fd240d181b0b05b1436e1b655c9a62526c752
2706 Author: Mike Frysinger <vapier@gentoo.org>
2707 Date:   Fri Feb 6 00:59:50 2009 -0500
2708
2709     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
2710
2711     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
2712     are no longer used/needed.
2713
2714     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2715
2716 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
2717 Author: Mike Frysinger <vapier@gentoo.org>
2718 Date:   Mon Oct 6 04:01:26 2008 -0400
2719
2720     Blackfin: print out Flash: before checking it
2721
2722     If there is some problem in the flash init/checking code, it's nicer to see
2723     the message "Flash:" before crashing.  This way the source of the problem
2724     is a bit more straightforward.
2725
2726     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2727
2728 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
2729 Author: Mike Frysinger <vapier@gentoo.org>
2730 Date:   Thu Aug 7 15:33:09 2008 -0400
2731
2732     Blackfin: safely flush data caches when in writeback mode
2733
2734     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2735
2736 commit c06f2b13022703611bc3e512bd34f9014a46f448
2737 Author: Mike Frysinger <vapier@gentoo.org>
2738 Date:   Thu Aug 7 13:21:48 2008 -0400
2739
2740     Blackfin: update lockbox api according to latest documentation
2741
2742     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2743
2744 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
2745 Author: Mike Frysinger <vapier@gentoo.org>
2746 Date:   Sat Oct 11 21:49:06 2008 -0400
2747
2748     Blackfin: mark bfin_reset static
2749
2750     The function is only used locally, so mark it static.
2751
2752     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2753
2754 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
2755 Author: Sonic Zhang <Sonic.Zhang@analog.com>
2756 Date:   Fri Mar 20 19:28:20 2009 -0400
2757
2758     Blackfin: spi: there is no PORTJ_FER MMR on BF537
2759
2760     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
2761     then there is no PORTJ_FER register for us to worry about.
2762
2763     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
2764     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2765
2766 commit e82b762f293debc53c5afa90f37264f6b07520f9
2767 Author: Mike Frysinger <vapier@gentoo.org>
2768 Date:   Tue Mar 17 13:58:23 2009 -0400
2769
2770     Blackfin: fix jtag console tstc
2771
2772     The jtag tstc operation was checking the hardware to see if data is
2773     available from it (which is fine for the jtag getc operation), but the
2774     higher layers need to know whether any data is available.  Since we have
2775     to read up to 4 bytes at a time from the hardware, the higher layers need
2776     to know they can consume the cached bytes as well.
2777
2778     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2779
2780 commit bc683f58b1f1d8d20546fe019483967a51a49df1
2781 Author: Mike Frysinger <vapier@gentoo.org>
2782 Date:   Sun Feb 22 16:23:41 2009 -0500
2783
2784     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
2785
2786     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2787
2788 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
2789 Author: Mike Frysinger <vapier@gentoo.org>
2790 Date:   Sun Feb 22 16:02:27 2009 -0500
2791
2792     Blackfin: unify net-related init code
2793
2794     Unify all of the net-related init code in the common Blackfin board init
2795     code to clean up the ifdef mess a bit.
2796
2797     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2798
2799 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
2800 Author: Mike Frysinger <vapier@gentoo.org>
2801 Date:   Wed Feb 18 12:51:48 2009 -0500
2802
2803     Blackfin: fix SWRST/SYSCR register sizes
2804
2805     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2806
2807 commit a9d6777d39154978b9ef9c682b2627a3480b194c
2808 Author: Mike Frysinger <vapier@gentoo.org>
2809 Date:   Wed Feb 18 12:51:31 2009 -0500
2810
2811     Blackfin: update anomaly lists
2812
2813     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2814
2815 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
2816 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2817 Date:   Thu Mar 19 18:31:38 2009 +0100
2818
2819     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
2820
2821     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2822     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2823
2824 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
2825 Author: Eric Schumann <E.Schumann@phytec.de>
2826 Date:   Sat Mar 21 09:59:34 2009 -0400
2827
2828     Make flash protection work, when the environment is in EEPROM
2829
2830     On the pcm030 the environment is located in the onboard EEPROM. But we want
2831     to handle flash sector protection in a safe manner. So we must read the
2832     unlock environment variable from EEPROM instead from flash.
2833
2834     This patch is required as long the evironment is saved into the EEPROM.
2835
2836     Stefan: Additional change as suggested by Wolfgang, use bigger char array
2837     (instead of 4).
2838
2839     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
2840     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2841     Acked-by: Wolfgang Denk <wd@denx.de>
2842     Signed-off-by: Stefan Roese <sr@denx.de>
2843
2844 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
2845 Author: Jon Smirl <jonsmirl@gmail.com>
2846 Date:   Sat Mar 21 11:17:56 2009 -0400
2847
2848     Add define for mpc5200 CDM_CLK_ENA
2849
2850     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
2851
2852 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
2853 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
2854 Date:   Sun Mar 22 14:48:16 2009 +0100
2855
2856     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
2857
2858     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
2859
2860     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
2861     It is essentially the same, with a few minor differences.
2862
2863     Here is the chip page on Atmel website:
2864     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
2865
2866     Signed-off-by: Justin Waters <justin.waters@timesys.com>
2867     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
2868     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2869
2870 commit 118d168035cc93f586da4812c89cb153eb9f4243
2871 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2872 Date:   Sun Mar 22 14:28:14 2009 +0100
2873
2874     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
2875
2876     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2877
2878 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
2879 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2880 Date:   Sun Mar 22 14:28:13 2009 +0100
2881
2882     cmc_pu2: fix misc_init_r prototype
2883
2884     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2885
2886 commit 53158aea995221706b42c7bad9f717b31ae20414
2887 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2888 Date:   Sun Jan 11 03:32:01 2009 +0100
2889
2890     at91sam9xeek: fix soc name
2891
2892     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2893
2894 commit 74c076d6c33d6d42ab065541a38383587879e7b7
2895 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2896 Date:   Sun Mar 22 10:22:34 2009 +0100
2897
2898     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
2899
2900     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2901
2902 commit 163966087d62680547f188a93c61d01c8155254e
2903 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2904 Date:   Sat Mar 21 21:08:01 2009 +0100
2905
2906     atmel/at91/boards: compile dataflash partition only when dataflash is
2907
2908     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2909
2910 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
2911 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2912 Date:   Sat Mar 21 21:08:00 2009 +0100
2913
2914     at91sam9/at91cap: move common macb initialisation to cpu
2915
2916     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2917
2918 commit f3f91f886bc8927fd692ac411b7423a87ffec532
2919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2920 Date:   Sat Mar 21 21:08:00 2009 +0100
2921
2922     at91sam9/at91cap: move common usb host initialisation to cpu
2923
2924     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2925
2926 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
2927 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2928 Date:   Sat Mar 21 21:08:00 2009 +0100
2929
2930     at91sam9/at91cap: move common led management to cpu
2931
2932     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2933
2934 commit 7ebafb7ec1a0285af8380623c009576f92583b98
2935 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2936 Date:   Sat Mar 21 21:07:59 2009 +0100
2937
2938     at91sam9/at91cap: move common spi initialisation to cpu
2939
2940     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2941
2942 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
2943 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2944 Date:   Sat Mar 21 21:07:59 2009 +0100
2945
2946     at91sam9/at91cap: move common serial initialisation to cpu
2947
2948     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2949
2950 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
2951 Author: Wolfgang Denk <wd@denx.de>
2952 Date:   Sat Mar 21 22:04:41 2009 +0100
2953
2954     Prepare 2009.03
2955
2956     Update CHANGELOG
2957
2958     Signed-off-by: Wolfgang Denk <wd@denx.de>
2959
2960 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
2961 Author: Vivek Kutal <vivek.kutal@azingo.com>
2962 Date:   Mon Feb 23 21:35:11 2009 +0530
2963
2964     Replaced endpoint numbers with appropriate macros in usbtty.c.
2965
2966     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
2967     Signed-off-by: Remy Bohmer <linux@bohmer.net>
2968
2969 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
2970 Author: Michael Lawnick <ml.lawnick@gmx.de>
2971 Date:   Thu Mar 19 10:06:41 2009 +0100
2972
2973     UBIFS: Missing offset relocation for compressor 'none'
2974
2975     On systems where U-Boot is linked to another address than it really lays
2976     (e.g. backup image), calls via function pointers must be fixed with a
2977     '+= gd->reloc_off'.
2978     This was not done for none_compr in ubifs_compressors_init() what leads
2979     to system crash on ubifsmount command.
2980
2981     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
2982     Acked-by: Stefan Roese <sr@denx.de>
2983
2984 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
2985 Author: Stefan Roese <sr@denx.de>
2986 Date:   Thu Mar 19 15:35:50 2009 +0100
2987
2988     UBIFS: Add UBIFS commands
2989
2990     This patchset adds these UBIFS related commands:
2991
2992     - ubifsmount
2993       Mount an UBIFS volume
2994
2995     - ubifsls
2996       List a directory of the mounted UBIFS volume
2997
2998     - ubifsload
2999       Load a file from the mounted UBIFS volume to memory
3000
3001     Signed-off-by: Stefan Roese <sr@denx.de>
3002
3003 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
3004 Author: Stefan Roese <sr@denx.de>
3005 Date:   Thu Mar 19 15:35:05 2009 +0100
3006
3007     UBIFS: Implement read-only UBIFS support in U-Boot
3008
3009     The U-Boot UBIFS implementation is largely a direct copy from the current
3010     Linux version (2.6.29-rc6). As already done in the UBI version we have an
3011     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
3012     ...). This makes it possible to use the original Linux code with very
3013     little changes. And by this we can better update to later Linux versions.
3014
3015     I removed some of the Linux features that are not used in the U-Boot
3016     version (e.g. garbage-collection, write support).
3017
3018     Signed-off-by: Stefan Roese <sr@denx.de>
3019     CC: Artem Bityutskiy <dedekind@infradead.org>
3020     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
3021
3022 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
3023 Author: Stefan Roese <sr@denx.de>
3024 Date:   Thu Mar 19 15:34:56 2009 +0100
3025
3026     Add LZO decompressor support
3027
3028     This patch adds LZO decompression support to U-Boot. It is needed for
3029     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
3030     decompressor. Since we only support read-only in UBIFS, only the
3031     decompressor is needed.
3032
3033     All this is copied with minor changes from the current Linux kernel
3034     version (2.6.28-rc8).
3035
3036     This patch only implements this LZO decompressor support for PPC.
3037     Other platforms using UBIFS will have to add the required
3038     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
3039     from the Linux source tree as I have done it for PPC in this patch.
3040
3041     Signed-off-by: Stefan Roese <sr@denx.de>
3042
3043 commit 68d7d65100e84df00bca971c114092731b441090
3044 Author: Stefan Roese <sr@denx.de>
3045 Date:   Thu Mar 19 13:30:36 2009 +0100
3046
3047     Separate mtdparts command from jffs2
3048
3049     Currently the mtdparts commands are included in the jffs2 command support.
3050     This doesn't make sense anymore since other commands (e.g. UBI) use this
3051     infrastructure as well now. This patch separates the mtdparts commands from
3052     the jffs2 commands making it possible to only select mtdparts when no JFFS2
3053     support is needed.
3054
3055     Signed-off-by: Stefan Roese <sr@denx.de>
3056     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3057
3058 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
3059 Author: Stefan Roese <sr@denx.de>
3060 Date:   Wed Feb 25 12:11:15 2009 +0100
3061
3062     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
3063
3064     Signed-off-by: Stefan Roese <sr@denx.de>
3065
3066 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
3067 Author: Grzegorz Bernacki <gjb@semihalf.com>
3068 Date:   Tue Mar 17 10:06:40 2009 +0100
3069
3070     Add support for the digsy MTC board.
3071
3072     This is the InterControl custom device based on the MPC5200B chip.
3073
3074     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
3075
3076 commit ff7dc067369e30066744f096995aef7d97574d15
3077 Author: Stefan Roese <sr@denx.de>
3078 Date:   Mon Feb 23 16:52:36 2009 +0100
3079
3080     powerpc: Fix compilation warning in board.c
3081
3082     Fix this warning:
3083
3084     board.c: In function 'board_init_r':
3085     board.c:653: warning: unused variable 'i'
3086     board.c:651: warning: unused variable 'e'
3087
3088     Signed-off-by: Stefan Roese <sr@denx.de>
3089
3090 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
3091 Author: Stefan Roese <sr@denx.de>
3092 Date:   Mon Feb 23 16:42:51 2009 +0100
3093
3094     ppc4xx: Don't write the MAC address into the internal SoC registers
3095
3096     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
3097     addresses into the SoC registers instead.
3098
3099     Signed-off-by: Stefan Roese <sr@denx.de>
3100
3101 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
3102 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3103 Date:   Fri Feb 20 10:19:19 2009 +0100
3104
3105     ppc4xx: Use correct io accessors for esd 405/440 boards
3106
3107     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
3108     macros. Also volatile pointer references are replaced by the
3109     new accessors.
3110
3111     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3112     Signed-off-by: Stefan Roese <sr@denx.de>
3113
3114 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
3115 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3116 Date:   Fri Feb 20 10:19:18 2009 +0100
3117
3118     ppc4xx: Use correct io accessors for esd 405 boards
3119
3120     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
3121     macros. Also volatile pointer references are replaced by the
3122     new accessors.
3123
3124     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3125     Signed-off-by: Stefan Roese <sr@denx.de>
3126
3127 commit a59205d1519375d027f97a545ad642ab20fce6f8
3128 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3129 Date:   Fri Feb 20 10:19:17 2009 +0100
3130
3131     ppc4xx: Cleanup linker scripts of esd 4xx boards
3132
3133     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3134     Signed-off-by: Stefan Roese <sr@denx.de>
3135
3136 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
3137 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3138 Date:   Fri Feb 20 10:19:16 2009 +0100
3139
3140     ppc4xx: Update TEXT_BASE for DASA_SIM boards
3141
3142     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
3143
3144     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3145     Signed-off-by: Stefan Roese <sr@denx.de>
3146
3147 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
3148 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3149 Date:   Fri Feb 20 10:19:15 2009 +0100
3150
3151     ppc4xx: DU405 maintenance fix
3152
3153     -strip unused features
3154     -fix resetting phy
3155
3156     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3157     Signed-off-by: Stefan Roese <sr@denx.de>
3158
3159 commit 75511b47ac2647be48218dbb93af05b21f404f67
3160 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3161 Date:   Fri Feb 20 10:19:14 2009 +0100
3162
3163     ppc4xx: Abort autoboot only by space key on CPCI405 boards
3164
3165     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3166     Signed-off-by: Stefan Roese <sr@denx.de>
3167
3168 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
3169 Author: Graeme Russ <graeme.russ@gmail.com>
3170 Date:   Tue Feb 24 21:14:56 2009 +1100
3171
3172     Add basic relocation to i386 port
3173
3174     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
3175
3176 commit 8c63d47651f77d9fb887cad433370b866eb0a193
3177 Author: Graeme Russ <graeme.russ@gmail.com>
3178 Date:   Tue Feb 24 21:14:45 2009 +1100
3179
3180     Implement SC520 timers
3181
3182     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3183
3184 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
3185 Author: Graeme Russ <graeme.russ@gmail.com>
3186 Date:   Tue Feb 24 21:14:32 2009 +1100
3187
3188     Factor out SC520 sub-features
3189
3190     Moved sub-features of the SC520 code which is currently selectively compiled
3191     using #ifdef out of sc520.c into individual files selectively compiled via
3192     the makefile
3193
3194     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3195
3196 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
3197 Author: Graeme Russ <graeme.russ@gmail.com>
3198 Date:   Tue Feb 24 21:13:40 2009 +1100
3199
3200     Rewrite i386 interrupt handling
3201
3202     Rewrite interrupt handling functionality for the i386 port. Separated
3203     functionality into separate CPU and Architecture components.
3204
3205     It appears as if the i386 interrupt handler functionality was intended
3206     to allow multiple handlers to be installed for a given interrupt.
3207     Unfortunately, this functionality was not fully implemented and also
3208     had the problem that irq_free_handler() does not allow the passing
3209     of the handler function pointer and therefore could never be used to
3210     free specific handlers that had been installed for a given IRQ.
3211
3212     There were also various issues with array bounds not being fully
3213     tested.
3214
3215     I had two objectives in mind for the new implementation:
3216
3217     1) Keep the implementation as similar as possible to existing
3218        implementations. To that end, I have used the leon2/3
3219        implementations as the reference
3220
3221     2) Seperate CPU and Architecture specific elements. All specific i386
3222        interrupt functionality is now in cpu/i386/ with the high level
3223        API and architecture specific code in lib_i386. Functionality
3224        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
3225        been further split out into an individual file to allow for the
3226        implementation of the PIC architecture of the SC520 CPU (supports
3227        more IRQs)
3228
3229     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3230
3231 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
3232 Author: Graeme Russ <graeme.russ@gmail.com>
3233 Date:   Tue Feb 24 21:12:35 2009 +1100
3234
3235     Move ali512x.h
3236
3237     Moved ali512x.h from include/asm-i386/ic/ to /include
3238
3239     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3240
3241 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
3242 Author: Graeme Russ <graeme.russ@gmail.com>
3243 Date:   Tue Feb 24 21:12:20 2009 +1100
3244
3245     Rename SC520 Configuration Options
3246
3247     Options are now all uniformly CONFIG_SYS_SC520_<option>
3248
3249     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
3250
3251 commit f62fb99941c625605aa16a0097b396a5c16d2c88
3252 Author: Trent Piepho <xyzzy@speakeasy.org>
3253 Date:   Wed Feb 18 15:22:05 2009 -0800
3254
3255     Fix all linker script to handle all rodata sections
3256
3257     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
3258     which needs to be added the the linker script.  Instead of just adding this
3259     one section, we use a wildcard ".rodata*" to get all rodata linker section
3260     gcc has now and might add in the future.
3261
3262     However, '*(.rodata*)' by itself will result in sub-optimal section
3263     ordering.  The sections will be sorted by object file, which causes extra
3264     padding between the unaligned rodata.str.1.1 of one object file and the
3265     aligned rodata of the next object file.  This is easy to fix by using the
3266     SORT_BY_ALIGNMENT command.
3267
3268     This patch has not be tested one most of the boards modified.  Some boards
3269     have a linker script that looks something like this:
3270
3271     *(.text)
3272     . = ALIGN(16);
3273     *(.rodata)
3274     *(.rodata.str1.4)
3275     *(.eh_frame)
3276
3277     I change this to:
3278
3279     *(.text)
3280     . = ALIGN(16);
3281     *(.eh_frame)
3282     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
3283
3284     This means the start of rodata will no longer be 16 bytes aligned.
3285     However, the boundary between text and rodata/eh_frame is still aligned to
3286     16 bytes, which is what I think the real purpose of the ALIGN call is.
3287
3288     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
3289
3290 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
3291 Author: Mike Frysinger <vapier@gentoo.org>
3292 Date:   Wed Feb 11 18:26:08 2009 -0500
3293
3294     remove bi_enet*addr from global data for all arches
3295
3296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3297     CC: Ben Warren <biggerbadderben@gmail.com>
3298     CC: Daniel Hellstrom <daniel@gaisler.com>
3299     CC: Michal Simek <monstr@seznam.cz>
3300     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3301     CC: Scott McNutt <smcnutt@psyent.com>
3302     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3303
3304 commit eb85aa594c1b57a1e3be9689b65171a137a36432
3305 Author: Mike Frysinger <vapier@gentoo.org>
3306 Date:   Wed Feb 11 20:07:19 2009 -0500
3307
3308     ppc: mark global bi_enet*addr as legacy
3309
3310     The environment is the canonical storage location of the mac address, so
3311     we're killing off the global data location and moving everything to
3312     querying the env directly.
3313
3314     In the ppc case, these things are part of the legacy ABI, so keep them
3315     around but mark them as legacy so no new code will touch them.
3316
3317     Also stop calling load_sernum_ethaddr() since all boards now implement
3318     this as a stub.
3319
3320     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3321     CC: Ben Warren <biggerbadderben@gmail.com>
3322
3323 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
3324 Author: Mike Frysinger <vapier@gentoo.org>
3325 Date:   Wed Feb 11 20:09:52 2009 -0500
3326
3327     boards: get mac address from env and move load_sernum_ethaddr() to board init
3328
3329     The environment is the canonical storage location of the mac address, so
3330     we're killing off the global data location and moving everything to
3331     querying the env directly.
3332
3333     Rather than have common ppc code call a board-specific function like
3334     load_sernum_ethaddr(), have each board call it in its own board-specific
3335     misc_init_r() function.
3336
3337     The boards that get converted here are:
3338         - kup4k/kup4x
3339         - pcs440ep
3340         - tqm8xx
3341
3342     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3343     CC: Ben Warren <biggerbadderben@gmail.com>
3344     CC: Stefan Roese <sr@denx.de>
3345
3346 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
3347 Author: Mike Frysinger <vapier@gentoo.org>
3348 Date:   Wed Feb 11 19:55:01 2009 -0500
3349
3350     cmc_pu2: get mac address from environment
3351
3352     The environment is the canonical storage location of the mac address, so
3353     we're killing off the global data location and moving everything to
3354     querying the env directly.
3355
3356     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
3357     handle this board specially in common ARM code.
3358
3359     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3360     CC: Ben Warren <biggerbadderben@gmail.com>
3361
3362 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
3363 Author: Mike Frysinger <vapier@gentoo.org>
3364 Date:   Mon Feb 16 18:03:14 2009 -0500
3365
3366     boards: move board_get_enetaddr() into board-specific init
3367
3368     The environment is the canonical storage location of the mac address, so
3369     we're killing off the global data location and moving everything to
3370     querying the env directly.
3371
3372     Rather than have the common ppc code have board-specific hooks, move the
3373     board_get_enetaddr() function into the board-specific init functions.
3374
3375     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3376     CC: Ben Warren <biggerbadderben@gmail.com>
3377
3378 commit f11e6ff5b1859d9213f0d501b3309e065f487543
3379 Author: Mike Frysinger <vapier@gentoo.org>
3380 Date:   Wed Feb 11 19:39:55 2009 -0500
3381
3382     arm: get mac address from environment
3383
3384     The environment is the canonical storage location of the mac address, so
3385     we're killing off the global data location and moving everything to
3386     querying the env directly.
3387
3388     Some warts are remaining and should be killed off (by moving the func to
3389     the appropriate board init code):
3390         - davinci_eth_set_mac_addr
3391         - cs8900_get_enetaddr
3392         - smc_set_mac_addr
3393
3394     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3395     CC: Ben Warren <biggerbadderben@gmail.com>
3396
3397 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
3398 Author: Mike Frysinger <vapier@gentoo.org>
3399 Date:   Wed Feb 11 19:36:20 2009 -0500
3400
3401     nx823: get mac address from environment
3402
3403     The environment is the canonical storage location of the mac address, so
3404     we're killing off the global data location and moving everything to
3405     querying the env directly.
3406
3407     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
3408     into misc_init_r() as is the env setup.  This lets us kill off the former
3409     function in the process.
3410
3411     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3412     CC: Ben Warren <biggerbadderben@gmail.com>
3413
3414 commit 19b5b533ccd522abeb501d510750693c35e20456
3415 Author: Mike Frysinger <vapier@gentoo.org>
3416 Date:   Wed Feb 11 18:27:18 2009 -0500
3417
3418     lib_*/board.c: do not initialize bi_enet*addr in global data
3419
3420     Since everyone is using the environment for mac address storage, there is
3421     no point in seeding the global data.
3422
3423     The arches that are converted here:
3424         i386
3425         m68k
3426         microblaze
3427         mips
3428         nios
3429         nios2
3430         sh
3431         sparc
3432
3433     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3434     CC: Ben Warren <biggerbadderben@gmail.com>
3435     CC: Daniel Hellstrom <daniel@gaisler.com>
3436     CC: Michal Simek <monstr@seznam.cz>
3437     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3438     CC: Scott McNutt <smcnutt@psyent.com>
3439     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3440
3441 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
3442 Author: Mike Frysinger <vapier@gentoo.org>
3443 Date:   Wed Feb 11 19:19:54 2009 -0500
3444
3445     npe: get mac address from environment
3446
3447     The environment is the canonical storage location of the mac address, so
3448     we're killing off the global data location and moving everything to
3449     querying the env directly.
3450
3451     The resulting code can also be simplified even further.
3452
3453     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3454     CC: Stefan Roese <sr@denx.de>
3455     CC: Ben Warren <biggerbadderben@gmail.com>
3456
3457 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
3458 Author: Mike Frysinger <vapier@gentoo.org>
3459 Date:   Wed Feb 11 19:18:41 2009 -0500
3460
3461     cpu/: get mac address from environment
3462
3463     The environment is the canonical storage location of the mac address, so
3464     we're killing off the global data location and moving everything to
3465     querying the env directly.
3466
3467     The cpus that get converted here:
3468         at91rm9200
3469         mpc512x
3470         mpc5xxx
3471         mpc8260
3472         mpc8xx
3473         ppc4xx
3474
3475     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3476     CC: Ben Warren <biggerbadderben@gmail.com>
3477     CC: John Rigby <jrigby@freescale.com>
3478     CC: Stefan Roese <sr@denx.de>
3479
3480 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
3481 Author: Mike Frysinger <vapier@gentoo.org>
3482 Date:   Wed Feb 11 19:09:54 2009 -0500
3483
3484     lan91c96/smc91111/smc911x: get mac address from environment
3485
3486     The environment is the canonical storage location of the mac address, so
3487     we're killing off the global data location and moving everything to
3488     querying the env directly.
3489
3490     Also, do not bother checking the EEPROM if the env is setup.  This
3491     simplifies the code greatly.
3492
3493     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3494     Signed-off-by: Wolfgang Dnek <wd@denx.de>
3495     CC: Ben Warren <biggerbadderben@gmail.com>
3496     CC: Rolf Offermanns <rof@sysgo.de>
3497     CC: Erik Stahlman <erik@vt.edu>
3498     CC: Daris A Nevil <dnevil@snmc.com>
3499     CC: Sascha Hauer <s.hauer@pengutronix.de>
3500
3501 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
3502 Author: Mike Frysinger <vapier@gentoo.org>
3503 Date:   Wed Feb 11 19:14:09 2009 -0500
3504
3505     sh_eth: get mac address from environment
3506
3507     The environment is the canonical storage location of the mac address, so
3508     we're killing off the global data location and moving everything to
3509     querying the env directly.
3510
3511     The sh_eth driver can also be simplified a bit by using enetaddr member of
3512     the eth_device structure.
3513
3514     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3515     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3516     CC: Carlos Munoz <carlos@kenati.com>
3517     CC: Ben Warren <biggerbadderben@gmail.com>
3518
3519 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
3520 Author: Mike Frysinger <vapier@gentoo.org>
3521 Date:   Wed Feb 11 19:06:09 2009 -0500
3522
3523     cs8900: get mac address from environment
3524
3525     The environment is the canonical storage location of the mac address, so
3526     we're killing off the global data location and moving everything to
3527     querying the env directly.
3528
3529     The cs8900 driver also changes slightly in that the hardware is not
3530     consulted if the mac address in the env is sane.
3531
3532     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3533     CC: Marius Groeger <mgroeger@sysgo.de>
3534     CC: Ben Warren <biggerbadderben@gmail.com>
3535
3536 commit c4b8762f11d337e6a9d90c227b2871d65d372469
3537 Author: Mike Frysinger <vapier@gentoo.org>
3538 Date:   Wed Feb 11 19:04:25 2009 -0500
3539
3540     bcm570x: get mac address from environment
3541
3542     The environment is the canonical storage location of the mac address, so
3543     we're killing off the global data location and moving everything to
3544     querying the env directly.
3545
3546     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
3547     no need to pass the NodeAddress as a second parameter.  So drop the second
3548     argument to the LM_SetMacAddress() function (and update the tigon3 driver
3549     accordingly).
3550
3551     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3552     CC: Ben Warren <biggerbadderben@gmail.com>
3553
3554 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
3555 Author: Mike Frysinger <vapier@gentoo.org>
3556 Date:   Wed Feb 11 19:01:26 2009 -0500
3557
3558     drivers/net/: get mac address from environment
3559
3560     The environment is the canonical storage location of the mac address, so
3561     we're killing off the global data location and moving everything to
3562     querying the env directly.
3563
3564     The drivers that get converted here:
3565         3c589
3566         4xx_enet
3567         dc2114x
3568         dm9000x
3569         enc28j60
3570         fsl_mcdmafec
3571         ks8695eth
3572         mcffec
3573         rtl8019
3574         rtl8169
3575         s3c4510b_eth
3576         xilinx_emac
3577         xilinx_emaclite
3578
3579     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3580     CC: Ben Warren <biggerbadderben@gmail.com>
3581     CC: Rolf Offermanns <rof@sysgo.de>
3582     CC: Stefan Roese <sr@denx.de>
3583     CC: Sascha Hauer <saschahauer@web.de>
3584     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3585     CC: Greg Ungerer <greg.ungerer@opengear.com>
3586     CC: Xue Ligong <lgxue@hotmail.com>
3587     CC: Masami Komiya <mkomiya@sonare.it>
3588     CC: Curt Brune <curt@cucy.com>
3589     CC: Michal SIMEK <monstr@monstr.eu>
3590
3591 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
3592 Author: Mike Frysinger <vapier@gentoo.org>
3593 Date:   Wed Feb 11 18:38:38 2009 -0500
3594
3595     boards: get mac address from environment
3596
3597     The boards that get converted here to use the environment for the mac
3598     address rather than global data:
3599         debris
3600         mgcoge
3601         mgsuvd
3602         muas3001
3603         netstal
3604         pn62
3605         sixnet
3606         vcma9
3607         xilinx (the ones that use xilinx_enet)
3608
3609     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3610     CC: Ben Warren <biggerbadderben@gmail.com>
3611     CC: Sangmoon Kim <dogoil@etinsys.com>
3612     CC: Heiko Schocher <hs@denx.de>
3613     CC: David Mueller <d.mueller@elsoft.ch>
3614     CC: Niklaus Giger <niklaus.giger@netstal.com>
3615     CC: Wolfgang Grandegger <wg@denx.de>
3616     CC: Dave Ellis <DGE@sixnetio.com>
3617     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
3618
3619 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
3620 Author: Mike Frysinger <vapier@gentoo.org>
3621 Date:   Wed Feb 11 18:36:45 2009 -0500
3622
3623     AmigaOneG3SE/enet: get mac address from environment
3624
3625     Always use the MAC address that is stored in the environment first before
3626     falling back to the ROM.  This also cuts out any comparison steps: if the
3627     mac in the env is sane, the ROM is never consulted.
3628
3629     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3630     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
3631     CC: Ben Warren <biggerbadderben@gmail.com>
3632
3633 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
3634 Author: Mike Frysinger <vapier@gentoo.org>
3635 Date:   Wed Feb 11 18:52:38 2009 -0500
3636
3637     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
3638
3639     Since the ethernet layer handles updating of device addresses itself from
3640     the environment, there is no point in calling eth_set_enetaddr().
3641
3642     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3643     CC: Ben Warren <biggerbadderben@gmail.com>
3644
3645 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
3646 Author: Mike Frysinger <vapier@gentoo.org>
3647 Date:   Wed Feb 11 18:54:07 2009 -0500
3648
3649     lynxkdi: get mac address from environment
3650
3651     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3652     CC: Ben Warren <biggerbadderben@gmail.com>
3653
3654 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
3655 Author: Mike Frysinger <vapier@gentoo.org>
3656 Date:   Wed Feb 11 18:51:43 2009 -0500
3657
3658     bootvx: get mac address from environment
3659
3660     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3661     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
3662     CC: Ben Warren <biggerbadderben@gmail.com>
3663
3664 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
3665 Author: Mike Frysinger <vapier@gentoo.org>
3666 Date:   Wed Feb 11 18:50:10 2009 -0500
3667
3668     bdinfo: get mac address from environment
3669
3670     Add a new print_eth() function to automate the eth*addr env var acquisition
3671     and display.  Affects all arches.
3672
3673     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3674     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3675     CC: Scott McNutt <smcnutt@psyent.com>
3676     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3677     CC: Michal Simek <monstr@seznam.cz>
3678     CC: Daniel Hellstrom <daniel@gaisler.com>
3679     CC: Ben Warren <biggerbadderben@gmail.com>
3680
3681 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
3682 Author: Mike Frysinger <vapier@gentoo.org>
3683 Date:   Wed Feb 11 18:23:48 2009 -0500
3684
3685     net: get mac address from environment and use eth util funcs
3686
3687     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3688     CC: Ben Warren <biggerbadderben@gmail.com>
3689
3690 commit 500b6c51e4c41f4562cb48344af98deb7e342731
3691 Author: Mike Frysinger <vapier@gentoo.org>
3692 Date:   Mon Oct 13 15:06:25 2008 -0400
3693
3694     Blackfin: bfin_mac: force boards to setup the MAC themselves
3695
3696     Since the on-chip MAC does not have an eeprom or similar interface, force
3697     all Blackfin boards that use this driver to setup the board data with a
3698     proper MAC.
3699
3700     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3701     CC: Ben Warren <biggerbadderben@gmail.com>
3702
3703 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
3704 Author: Mike Frysinger <vapier@gentoo.org>
3705 Date:   Wed Feb 11 14:12:34 2009 -0500
3706
3707     doc/README.enetaddr: document proper MAC usage
3708
3709     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3710     CC: Ben Warren <biggerbadderben@gmail.com>
3711
3712 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
3713 Author: Mike Frysinger <vapier@gentoo.org>
3714 Date:   Thu Jan 29 19:43:44 2009 -0500
3715
3716     net: new utility functions for working with enetaddr's
3717
3718     Declare new utility functions for converting between the environment
3719     variables (eth*addr) and the binary MAC address representation.  This way
3720     we can unify all the random places that already do this kind of thing.
3721
3722     The functions in question:
3723         eth_parse_enetaddr - "..." -> {...}
3724         eth_getenv_enetaddr - env -> {...}
3725         eth_setenv_enetaddr - {...} -> env
3726
3727     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3728     CC: Ben Warren <biggerbadderben@gmail.com>
3729
3730 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
3731 Author: Mike Frysinger <vapier@gentoo.org>
3732 Date:   Tue Feb 17 00:00:53 2009 -0500
3733
3734     convert print_IPaddr() to %pI4
3735
3736     Now that our printf functions support the %pI4 modifier like the kernel,
3737     let's drop the inflexible print_IPaddr() function and covert over to the
3738     %pI4 modifier.
3739
3740     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3741     CC: Ben Warren <biggerbadderben@gmail.com>
3742
3743 commit 6c6166f52983dac775e3852f9d0f49d033f27108
3744 Author: Mike Frysinger <vapier@gentoo.org>
3745 Date:   Mon Feb 16 23:21:36 2009 -0500
3746
3747     vsprintf: pull updates from Linux kernel
3748
3749     This brings in support for the %p modifier which allows us to easily print
3750     out things like ip addresses, mac addresses, and pointers.
3751
3752     It also converts the rarely used 'q' length modifier to the common 'L'
3753     modifier when dealing with quad types.
3754
3755     While this new code is a bit larger (~1k .text), most of it should be made
3756     up by converting the existing ip/mac address code to use format modifiers.
3757
3758     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3759
3760 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
3761 Author: Jon Smirl <jonsmirl@gmail.com>
3762 Date:   Thu Mar 19 23:04:18 2009 -0400
3763
3764     .gitignore for generated files in api_examples directory
3765
3766     Add .gitignore for generated files in api_examples directory
3767
3768     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
3769     Signed-off-by: Wolfgang Denk <wd@denx.de>
3770
3771 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
3772 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3773 Date:   Wed Mar 18 12:27:04 2009 +0900
3774
3775     net: sh_eth: Remove sh_eth_reset() from halt function
3776
3777     sh_eth_reset is function to reset Ether IP.
3778     The MAC address is stored in IP, but it is initialized by this function.
3779     OS (e.g. Linux Kernel) can not use this device when initialized.
3780     This revises this problem.
3781
3782     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3783
3784 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
3785 Author: Anatolij Gustschin <agust@denx.de>
3786 Date:   Fri Mar 20 12:45:50 2009 +0100
3787
3788     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
3789
3790     PCI outbound address map configuration doesn't match the
3791     PCI memory address range covered by appropriate TLB entry
3792     configuration for canyonlands causing machine check
3793     exceptions while accessing PCI memory regions. This patch
3794     provides a fix for this issue.
3795
3796     Kazuaki Ichinohe observed and reported this issue while
3797     testing display output with PCI ATI video card on canyonlands.
3798
3799     Signed-off-by: Anatolij Gustschin <agust@denx.de>
3800     Signed-off-by: Stefan Roese <sr@denx.de>
3801
3802 commit 7a88601a34132548c3c591ea87ab3468b51121b0
3803 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3804 Date:   Fri Mar 6 10:09:37 2009 -0500
3805
3806     CFI: geometry reversal for STMicro M29W320DT
3807
3808     Follow up to the flash_fixup_stm to fix geometry reversal
3809     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
3810
3811     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3812     Signed-off-by: Stefan Roese <sr@denx.de>
3813
3814 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
3815 Author: Mike Frysinger <vapier@gentoo.org>
3816 Date:   Wed Feb 25 17:29:40 2009 -0500
3817
3818     smc911x_eeprom: update register API
3819
3820     The smc911x driver changed the naming convention for its register funcs,
3821     so update the eeprom code accordingly.
3822
3823     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3824     CC: Ben Warren <biggerbadderben@gmail.com>
3825
3826 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
3827 Author: Grzegorz Bernacki <gjb@semihalf.com>
3828 Date:   Tue Mar 17 10:06:39 2009 +0100
3829
3830     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
3831
3832     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
3833     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
3834     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
3835     Total5200 and will be used by digsy MTC and other boards with
3836     ATA CS on I2C pins.
3837
3838     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
3839
3840 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
3841 Author: Heiko Schocher <hs@denx.de>
3842 Date:   Thu Mar 12 07:37:34 2009 +0100
3843
3844     8xx: add support for new keymile kmsupx4 board.
3845
3846     This patch adds support for the kmsupx4 board from Keymile,
3847     based on a Freescale MPC852T CPU
3848
3849     - serial console on SMC1
3850     - 32 MB SDRAM
3851     - 32 MB NOR Flash
3852     - Ethernet over SCC3
3853     - I2C Bitbang
3854
3855     Signed-off-by: Heiko Schocher <hs@denx.de>
3856
3857 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
3858 Author: Heiko Schocher <hs@denx.de>
3859 Date:   Thu Mar 12 07:37:28 2009 +0100
3860
3861     8xx, mgsuvd: rename board to a more generic name
3862
3863     renaming the "mgsuvd" board port into "km8xx", because
3864     there come more similar boards from keymile.
3865     Compiling the mgsuvd board with "make mgsuvd_config"
3866     remains.
3867
3868     Signed-off-by: Heiko Schocher <hs@denx.de>
3869
3870 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
3871 Author: Heiko Schocher <hs@denx.de>
3872 Date:   Thu Mar 12 07:37:23 2009 +0100
3873
3874     8xx, mgsuvd: Coding Style cleanup config file
3875
3876     Signed-off-by: Heiko Schocher <hs@denx.de>
3877
3878 commit 364123db6730d32330f818b65360d2cd27396667
3879 Author: Heiko Schocher <hs@denx.de>
3880 Date:   Thu Mar 12 07:37:18 2009 +0100
3881
3882     powerpc: common updates for keymile boards
3883
3884     - added to keymile-common.h:
3885       - bootcount support
3886       - COMMAND HISTORY
3887       - CONFIG_AUTO_COMPLETE
3888       - CONFIG_SYS_FLASH_PROTECTION
3889       - JFFS2 support
3890       - CONFIG_VERSION_VARIABLE
3891     - extracted common I2C settings for all boards
3892     - common default environment settings summarized
3893
3894     Signed-off-by: Heiko Schocher <hs@denx.de>
3895
3896 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
3897 Author: Heiko Schocher <hs@denx.de>
3898 Date:   Thu Mar 12 07:37:15 2009 +0100
3899
3900     8xx, icache: enabling ICache not before running from RAM
3901
3902     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
3903     is not enabled before code runs from RAM.
3904
3905     Signed-off-by: Heiko Schocher <hs@denx.de>
3906
3907 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
3908 Author: Heiko Schocher <hs@denx.de>
3909 Date:   Thu Mar 12 07:37:11 2009 +0100
3910
3911     82xx, mgcoge: fix environment sector size
3912
3913     Size of one environment sector is 0x20000.
3914
3915     Signed-off-by: Heiko Schocher <hs@denx.de>
3916
3917 commit 27057d416c7cc9eb1860953da8836352c07f13e9
3918 Author: Ladislav Michl <ladis@linux-mips.org>
3919 Date:   Mon Mar 16 23:27:31 2009 +0100
3920
3921     NetStar: config reindentation
3922
3923     Fix indentation broken by symbol renames. "Sort" driver related definitons.
3924
3925     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
3926
3927 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
3928 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3929 Date:   Tue Mar 17 11:21:43 2009 +0000
3930
3931     ColdFire: Fix incorrect definition
3932
3933     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3934
3935 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
3936 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3937 Date:   Mon Mar 2 19:16:45 2009 +0000
3938
3939     ColdFire: Fix M5329EVB and M5373EVB nand issue
3940
3941     The Nand flash was unable to read and write properly
3942     due to Nand Chip Select (nCE) setup was in reverse
3943     order. Also, increase the Nand time out value to 60.
3944
3945     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3946
3947 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
3948 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3949 Date:   Tue Jan 27 15:19:35 2009 +0000
3950
3951     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
3952
3953     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
3954     ColdFire compiler.
3955
3956     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3957
3958 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
3959 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3960 Date:   Tue Jan 27 12:57:47 2009 +0000
3961
3962     ColdFire: Provide gzip image size V2 & V3 platforms
3963
3964     Default gzip bootm size is 8MB. Some platforms require
3965     more than 8MB
3966
3967     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3968
3969 commit c3a9e6374210679a81f611c1bcf968988bc20e41
3970 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3971 Date:   Wed Feb 18 11:49:31 2009 +0000
3972
3973     ColdFire: Fix M54451 serial boot dram setup
3974
3975     The serial boot dram extended/standard mode register was not
3976     setup and was using default DRAM setup causing the U-boot was
3977     unstable to boot up in serial mode.
3978
3979     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3980
3981 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
3982 Author: arun c <arun.edarath@gmail.com>
3983 Date:   Thu Dec 4 15:57:15 2008 +0530
3984
3985     Coldfire: XL Bus minor fixes
3986
3987     According to coldfire manual data timeout > address time out
3988     also use correct macro to program XARB_CFG
3989
3990     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
3991
3992 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
3993 Author: Scott Wood <scottwood@freescale.com>
3994 Date:   Tue Mar 17 12:06:04 2009 -0500
3995
3996     NAND: Have nboot accept .e and .i as legacy no-ops.
3997
3998     This was intended to happen before, but a trivial bug prevented it.
3999
4000     Signed-off-by: Scott Wood <scottwood@freescale.com>
4001
4002 commit 0987505540918b2464b73069af3a5b766dbd3ceb
4003 Author: Ladislav Michl <ladis@linux-mips.org>
4004 Date:   Fri Mar 13 14:38:19 2009 +0100
4005
4006     NAND: Make nboot skip bad blocks
4007
4008     nboot command currently does not skip bad blocks and gives read error when
4009     loading image stored over bad block. With patch applied, nboot works as
4010     expected:
4011
4012     Device 0 bad blocks:
4013       00780000
4014       014a0000
4015       02000000
4016       02cc0000
4017       04aa0000
4018
4019     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
4020        Image Name:   Linux-2.6.22-omap1
4021        Created:      2008-11-20  23:44:32 UTC
4022        Image Type:   ARM Linux Kernel Image (uncompressed)
4023        Data Size:    1052520 Bytes =  1 MB
4024        Load Address: 10008000
4025        Entry Point:  10008000
4026     Skipping bad block 0x02cc0000
4027     Automatic boot of image at addr 0x10400000 ...
4028     ...
4029
4030     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
4031     Signed-off-by: Scott Wood <scottwood@freescale.com>
4032
4033 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
4034 Author: Stefan Roese <sr@denx.de>
4035 Date:   Thu Mar 12 07:27:25 2009 +0100
4036
4037     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
4038
4039     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
4040     the DDR2 configuration to only use one CS (rank). As this code is most
4041     likely copied from the original Sequoia version, this error was copied
4042     as well.
4043
4044     This patch also removes some dead code.
4045
4046     Signed-off-by: Stefan Roese <sr@denx.de>
4047
4048 commit 9199b9cc8f56aca26504b48cf702176208f46e54
4049 Author: Stefan Roese <sr@denx.de>
4050 Date:   Thu Mar 12 07:24:40 2009 +0100
4051
4052     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
4053
4054     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
4055     the DDR2 configuration to only use one CS (rank). As this code is most
4056     likely copied from the original Sequoia version, this error was copied
4057     as well.
4058
4059     Signed-off-by: Stefan Roese <sr@denx.de>
4060
4061 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
4062 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
4063 Date:   Wed Mar 11 10:54:46 2009 +0200
4064
4065     Fix AMCC Sequoia board DDR memory configuration
4066
4067     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
4068     specifies that BankSel#1 is not connected, while bootloader memory
4069     configuration is (board/amcc/sequoia/sdram.c):
4070            mtsdram(DDR0_10, 0x00000300);
4071     i.e. both Chip Selects used - not correct.
4072
4073     If we change to correct value here:
4074            mtsdram(DDR0_10, 0x00000100);
4075     memory is accessible OK also.
4076
4077     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
4078     Signed-off-by: Stefan Roese <sr@denx.de>
4079
4080 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
4081 Author: Wolfgang Denk <wd@denx.de>
4082 Date:   Sun Mar 15 22:40:09 2009 +0100
4083
4084     Prepare 2009.03-rc2
4085
4086     Update CHANEGLOG, fix minor coding style issue.
4087
4088     Signed-off-by: Wolfgang Denk <wd@denx.de>
4089
4090 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
4091 Author: Jerry Van Baren <gvb.uboot@gmail.com>
4092 Date:   Fri Mar 13 11:40:10 2009 -0400
4093
4094     mpc83xx: Add bank configuration to FSL spd_sdram.c
4095
4096     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
4097     bank SDRAMs.
4098
4099     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4100     Acked-by: Dave Liu <daveliu@freescale.com>
4101     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4102
4103 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
4104 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4105 Date:   Fri Mar 13 08:58:14 2009 +0100
4106
4107     mpc83xx: correctly set encryption and I2C bus 0 clock
4108
4109     This patch makes sure the correct mask is applied when setting
4110     the encryption and I2C bus 0 clock in SCCR.
4111     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
4112     won't function.
4113
4114     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
4115     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4116
4117 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
4118 Author: Dirk Behme <dirk.behme@googlemail.com>
4119 Date:   Thu Mar 12 19:30:50 2009 +0100
4120
4121     OMAP3: Add support for OMAP3 die ID
4122
4123     Read and store OMAP3 die ID in U-Boot environment.
4124
4125     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4126
4127 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
4128 Author: Jon Smirl <jonsmirl@gmail.com>
4129 Date:   Wed Mar 11 15:08:56 2009 -0400
4130
4131     MPC5200 FEC MII speed register
4132
4133     Set a non-zero speed in the MII register so that MII commands will work.
4134
4135     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
4136
4137 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
4138 Author: Yusuke.Goda <goda.yusuke@renesas.com>
4139 Date:   Fri Mar 13 16:08:18 2009 +0900
4140
4141     sh: ap325rxa: Change the wait cycle in the area 5
4142
4143     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
4144     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4145
4146 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
4147 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4148 Date:   Wed Feb 25 16:04:26 2009 +0900
4149
4150     sh: Fix cannot work rtl8139 on r2dplus
4151
4152     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
4153     registration.
4154
4155     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4156     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4157
4158 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
4159 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4160 Date:   Fri Feb 27 18:35:41 2009 +0900
4161
4162     sh: Add netdev header fixing of warning/build
4163
4164     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4165     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4166
4167 commit ada9318252f51c2626e9837c623f9812b0308dea
4168 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4169 Date:   Tue Mar 3 15:11:17 2009 +0900
4170
4171     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
4172
4173     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
4174     for this mode. This command changes PMB for using 512MB system memory.
4175
4176     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4177     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4178
4179 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
4180 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4181 Date:   Wed Feb 25 14:26:42 2009 +0900
4182
4183     sh: Add some register value configurable to PCI of SH7780
4184
4185     Some register value was hardcoded for System memory size 128MB and
4186     memory offset 0x08000000. This patch fixed the problem.
4187
4188     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4189     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4190
4191 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
4192 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4193 Date:   Wed Feb 25 14:26:52 2009 +0900
4194
4195     sh: Add system memory registration to PCI for SH4
4196
4197     It is necessary for some pci device driver.
4198
4199     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4200     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4201
4202 commit b3061b40db691245a7bb9a55354b4edacbf3902d
4203 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4204 Date:   Wed Feb 25 14:26:55 2009 +0900
4205
4206     sh: Add value for PCI system memory registration of sh7785lcr
4207
4208     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4209     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4210
4211 commit 6d84ae3956a6cd7aebd86f661130752594e60124
4212 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4213 Date:   Tue Mar 3 15:11:08 2009 +0900
4214
4215     sh: Add macros for SH-4A 32-Bit Address Extended Mode
4216
4217     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4218     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4219
4220 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
4221 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4222 Date:   Tue Feb 3 13:35:05 2009 +0900
4223
4224     sh: use write{8,16,32} in ms7720se lowlevel_init
4225
4226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4227     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4228
4229 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
4230 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4231 Date:   Mon Mar 9 18:07:53 2009 -0500
4232
4233     tsec: report when there is no vendor specific PHY support
4234
4235     Commit af1c2b84 added a generic phy support, with an ID of zero
4236     and a 32 bit mask; meaning that it will match on any PHY ID.
4237
4238     The problem is that there is a test that checked if a matching
4239     PHY was found, and if not, it printed the non-matching ID.
4240     But since there will always be a match (on the generic PHY,
4241     worst case), this test will never trip.
4242
4243     In the case of a misconfigured PHY address, or of a PHY that
4244     isn't explicitly supported outside of the generic support,
4245     you will never see the ID of 0xffffffff, or the ID of the
4246     real (but unsupported) chip.  It will silently fall through
4247     onto the generic support.
4248
4249     This change makes that test useful again, and ensures that
4250     the selection of generic PHY support doesn't happen without
4251     some sort of notice.  It also makes it explicitly clear that
4252     the generic PHY must be last in the PHY table.
4253
4254     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4255     Acked-by: Andy Fleming <afleming@freescale.com>
4256
4257 commit c279dfc10186ceba78d3862036f158750e86599a
4258 Author: Wolfgang Denk <wd@denx.de>
4259 Date:   Mon Mar 9 10:53:05 2009 +0100
4260
4261     SIMPC8313 board: fix out of tree building.
4262
4263     Fix typo in makefile which broke out of tree builds.
4264
4265     Also use expolicit "rm" instead of "ln -sf" which is known to be
4266     unreliable.
4267
4268     Signed-off-by: Wolfgang Denk <wd@denx.de>
4269     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4270
4271 commit 49b5aff491bd574935ecaf8545152066a25eff3d
4272 Author: ksi@koi8.net <ksi@koi8.net>
4273 Date:   Mon Feb 23 10:53:13 2009 -0800
4274
4275     Add eTSEC 1/2 IO override control (corrected)
4276
4277     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
4278
4279     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
4280
4281 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
4282 Author: Andy Fleming <afleming@freescale.com>
4283 Date:   Fri Mar 6 19:05:52 2009 -0600
4284
4285     fsl: Remove unnecessary debug printfs
4286
4287     These were left in accidentally, and are not really useful unless the
4288     code is as broken as it was when it was being developed.
4289
4290     Signed-off-by: Andy Fleming <afleming@freescale.com>
4291
4292 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
4293 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
4294 Date:   Tue Feb 24 02:37:59 2009 -0600
4295
4296     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
4297
4298     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
4299     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
4300
4301     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4302
4303 commit a922fdb87af25c25c032424908dcf60fbf3250ea
4304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4305 Date:   Tue Feb 24 06:13:10 2009 +0100
4306
4307     PXA: timer use do_div and simplify it
4308
4309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4310
4311 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
4312 Author: Wolfgang Denk <wd@denx.de>
4313 Date:   Mon Mar 9 10:51:39 2009 +0100
4314
4315     SIMPC8313 board: fix out of tree building.
4316
4317     Fix typo in makefile which broke out of tree builds.
4318
4319     Also use expolicit "rm" instead of "ln -sf" which is known to be
4320     unreliable.
4321
4322     Signed-off-by: Wolfgang Denk <wd@denx.de>
4323
4324 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
4325 Author: Heiko Schocher <hs@denx.de>
4326 Date:   Tue Feb 24 11:30:51 2009 +0100
4327
4328     8360, kmeter1: added bootcount feature.
4329
4330     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
4331
4332     The bootcounter uses 8 bytes from the muram,
4333     because no other memory was found on this
4334     CPU for the bootcount feature. So we must
4335     correct the muram size in DTS before booting
4336     Linux.
4337
4338     This feature is actual only implemented for
4339     MPC8360, because not all 83xx CPU have qe,
4340     and therefore no muram, which this feature
4341     uses.
4342
4343     Signed-off-by: Heiko Schocher <hs@denx.de>
4344     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4345
4346 commit 1e7ed2565031e01abc18c713030a0a9829c07684
4347 Author: Heiko Schocher <hs@denx.de>
4348 Date:   Tue Feb 24 11:30:48 2009 +0100
4349
4350     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
4351
4352     old code implemented the QE_ENET10 errata only for Silicon
4353     Revision 2.0. New code reads now the Silicon Revision
4354     register and sets dependend on the Silicon Revision the
4355     values as advised in the QE_ENET10 errata.
4356
4357     Signed-off-by: Heiko Schocher <hs@denx.de>
4358     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4359
4360 commit 605f78e34a3f0103693b891f2573edd352e7d495
4361 Author: Heiko Schocher <hs@denx.de>
4362 Date:   Tue Feb 24 11:30:44 2009 +0100
4363
4364     83xx, kmeter1: updates for 2009.03
4365
4366     - HRCW update
4367       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
4368       HRCWH_LALE_EARLY added
4369     - DDR-SDRAM settings modified. This solves sporadically
4370       problems with this memory.
4371     - CS1 now 128 MB window size
4372     - CS3 now 512 MB window size
4373     - PRAM activated
4374     - MTDPARTS_DEFAULT defined
4375     - CONFIG_HOSTNAME added
4376     - MONITOR_LEN now 384 KB
4377
4378     Signed-off-by: Heiko Schocher <hs@denx.de>
4379     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4380
4381 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
4382 Author: Heiko Schocher <hs@denx.de>
4383 Date:   Tue Feb 24 11:30:40 2009 +0100
4384
4385     83xx, kmeter1: autodetect size of DDR II RAM
4386
4387     it is possible that some board variants have different DDR II
4388     RAM sizes. So we autodetect the size of the assembled RAM.
4389
4390     Signed-off-by: Heiko Schocher <hs@denx.de>
4391     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4392
4393 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
4394 Author: Heiko Schocher <hs@denx.de>
4395 Date:   Tue Feb 24 11:30:37 2009 +0100
4396
4397     83xx, i2c: add mux support for fsl_i2c
4398
4399     This patch adds I2C mux support for the fsl_i2c driver. This
4400     allows you to add "new" i2c busses, which are reached over
4401     i2c muxes. For more infos, please look in the README and
4402     search for CONFIG_I2C_MUX.
4403
4404     Signed-off-by: Heiko Schocher <hs@denx.de>
4405     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4406
4407 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
4408 Author: Heiko Schocher <hs@denx.de>
4409 Date:   Tue Feb 24 11:30:34 2009 +0100
4410
4411     83xx, kmeter1: add I2C, dtt, eeprom support
4412
4413     This patch adds I2C support for the Keymile kmeter1 board.
4414     It uses the First I2C Controller from the CPU, for
4415     accessing 4 temperature sensors, an eeprom with IVM data
4416     and the booteeprom over a pca9547 mux.
4417
4418     Signed-off-by: Heiko Schocher <hs@denx.de>
4419     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4420
4421 commit db1d72afd77287bc8577210f3f71ab249dcf146f
4422 Author: Heiko Schocher <hs@denx.de>
4423 Date:   Tue Feb 24 11:30:30 2009 +0100
4424
4425     i2c, dtt: move dtt_init () to board_init_r ()
4426
4427     In case where a board not uses CONFIG_POST, it is not
4428     necessary to init the DTTs when running from flash.
4429
4430     Signed-off-by: Heiko Schocher <hs@denx.de>
4431     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4432
4433 commit 5b0055547f0246908b79cc300170d87380b69e18
4434 Author: Dave Liu <daveliu@freescale.com>
4435 Date:   Wed Feb 25 12:31:32 2009 +0800
4436
4437     83xx: Fix some bugs in spd sdram code
4438
4439     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
4440       tRTP according to DDR2 JEDEC spec.
4441     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
4442     3. add the support of DDR2-533,667,800 DIMMs
4443     4. cpo
4444     5. make the AL to min to gain better performance.
4445
4446     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
4447     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
4448
4449     items 1, 2 and 5:
4450     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4451
4452     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4453     Signed-off-by: Dave Liu <daveliu@freescale.com>
4454     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4455
4456 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
4457 Author: Valeriy Glushkov <gvv@lstec.com>
4458 Date:   Wed Feb 4 18:27:49 2009 +0200
4459
4460     MPC8349ITX: several config issues fixed
4461
4462     The previous version rebooted forever with DDR bigger than 256MB.
4463     Access the DS1339 RTC chip is on I2C1 bus.
4464     Allow DHCP.
4465
4466     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
4467     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4468
4469 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
4470 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4471 Date:   Thu Feb 19 18:20:39 2009 +0300
4472
4473     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
4474
4475     The SerDes initialization should be finished before negating the reset
4476     signal according to the reference manual. This isn't an issue on real
4477     hardware, but we'd better stick to the specifications anyway.
4478
4479     Suggested-by: Liu Dave <DaveLiu@freescale.com>
4480     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4481     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4482
4483 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
4484 Author: Heiko Schocher <hs@denx.de>
4485 Date:   Wed Feb 25 12:28:32 2009 +0100
4486
4487     i2c, dtt: move dtt_init () to board_init_r ()
4488
4489     it is not necessary to init the DTTs so early,
4490     so move this init to board_init_r ().
4491
4492     Signed-off-by: Heiko Schocher <hs@denx.de>
4493
4494 commit 00cc5595a7caac8066b408774383a956c2e26797
4495 Author: Anatolij Gustschin <agust@denx.de>
4496 Date:   Wed Feb 25 20:28:13 2009 +0100
4497
4498     lcd: Fix compilation warning in common/lcd.c
4499
4500     Fix following warning while compilation for mcc200 board:
4501
4502     lcd.c: In function 'lcd_display_bitmap':
4503     lcd.c:625: warning: unused variable 'cmap'
4504
4505     Signed-off-by: Anatolij Gustschin <agust@denx.de>
4506
4507 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
4508 Author: Graeme Russ <graeme.russ@gmail.com>
4509 Date:   Tue Feb 24 21:11:24 2009 +1100
4510
4511     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
4512
4513     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
4514
4515     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
4516
4517 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
4518 Author: Mike Frysinger <vapier@gentoo.org>
4519 Date:   Mon Feb 23 10:29:47 2009 -0500
4520
4521     smc911x: split out useful defines/functions into local header
4522
4523     The smc911x driver has a lot of useful defines/functions which can be used
4524     by pieces of code (such as example eeprom programmers).  Rather than
4525     forcing each place to duplicate these defines/functions, split them out
4526     of the smdc911x driver into a local header.
4527
4528     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4529     Acked-by: Ben Warren <biggerbadderben@gmail.com>
4530     CC: Sascha Hauer <s.hauer@pengutronix.de>
4531     CC: Guennadi Liakhovetski <lg@denx.de>
4532     CC: Magnus Lilja <lilja.magnus@gmail.com>
4533     CC: Ben Warren <biggerbadderben@gmail.com>
4534
4535 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
4536 Author: Guennadi Liakhovetski <lg@denx.de>
4537 Date:   Tue Feb 24 10:44:02 2009 +0100
4538
4539     ARM: add an "eet" variant of the imx31_phycore board
4540
4541     The "eet" variant of the imx31_phycore board has an OLED display, using a
4542     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
4543     chip-select for it. With this configuration you can display 256 colour BMP
4544     images in 16-bit RGB (RGB565) LCD mode.
4545
4546     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4547     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4548
4549 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
4550 Author: Guennadi Liakhovetski <lg@denx.de>
4551 Date:   Fri Feb 6 10:37:57 2009 +0100
4552
4553     video: add an i.MX31 framebuffer driver
4554
4555     Add a driver for the Synchronous Display Controller and the Display
4556     Interface on i.MX31, using IPU for DMA channel setup. So far only
4557     displaying of bitmaps is supported, no text output.
4558
4559     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4560     Acked-by: Anatolij Gustschin <agust@denx.de>
4561
4562 commit b245e65ee3c4cce3ccf008a21f4528239655876c
4563 Author: Guennadi Liakhovetski <lg@denx.de>
4564 Date:   Fri Feb 6 10:37:53 2009 +0100
4565
4566     LCD: support 8bpp BMPs on 16bpp displays
4567
4568     This patch also simplifies some ifdefs in lcd.c, introduces a generic
4569     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
4570     over to.
4571
4572     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4573     Acked-by: Anatolij Gustschin <agust@denx.de>
4574
4575 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
4576 Author: Mark Jackson <mpfj@mimc.co.uk>
4577 Date:   Fri Feb 6 10:37:49 2009 +0100
4578
4579     Add 16bpp BMP support
4580
4581     This patch adds 16bpp BMP support to the common lcd code.
4582
4583     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
4584
4585     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
4586     this to other platforms should be a simple task !!
4587
4588     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
4589     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4590     Acked-by: Anatolij Gustschin <agust@denx.de>
4591
4592 commit 689551c5ff1b394b88412f3df22144e79468d3a9
4593 Author: Guennadi Liakhovetski <lg@denx.de>
4594 Date:   Fri Feb 6 10:37:41 2009 +0100
4595
4596     A driver for the S6E63D6 SPI display controller from Samsung
4597
4598     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
4599     It only provides access to controller's registers so the client can freely
4600     configure it.
4601
4602     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4603     Acked-by: Anatolij Gustschin <agust@denx.de>
4604
4605 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
4606 Author: Guennadi Liakhovetski <lg@denx.de>
4607 Date:   Fri Feb 13 09:26:40 2009 +0100
4608
4609     i.MX31: support GPIO as a chip-select in the mxc_spi driver
4610
4611     Some SPI devices have special requirements on chip-select handling.
4612     With this patch we can use a GPIO as a chip-select and strictly follow
4613     the SPI_XFER_BEGIN and SPI_XFER_END flags.
4614
4615     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4616     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4617
4618 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
4619 Author: Guennadi Liakhovetski <lg@denx.de>
4620 Date:   Sat Feb 7 01:18:07 2009 +0100
4621
4622     i.MX31: add a simple gpio driver
4623
4624     This is a minimal driver, so far only managing output. It will
4625     be used by the mxc_spi.c driver.
4626
4627     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4628     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4629
4630 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
4631 Author: Guennadi Liakhovetski <lg@denx.de>
4632 Date:   Sat Feb 7 00:09:12 2009 +0100
4633
4634     i.MX31: fix SPI driver for shorter than 32 bit
4635
4636     Fix setting the SPI Control register, 8 and 16-bit transfers
4637     and a wrong pointer in the free routine in the mxc_spi driver.
4638
4639     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4640     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4641
4642 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
4643 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4644 Date:   Thu Feb 19 18:20:52 2009 +0300
4645
4646     mpc83xx: MPC837XERDB: Add PCIe support
4647
4648     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
4649     slots. Let's support them.
4650
4651     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4652     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4653
4654 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
4655 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4656 Date:   Thu Feb 19 18:20:50 2009 +0300
4657
4658     mpc83xx: PCI: Fix hard-coded first_busno value
4659
4660     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
4661     erroneously re-use PCI0's first_busno for PCI1 hoses.
4662
4663     NOTE: The patch is untested. All MPC83xx FSL boards I have have
4664     PCI1 in miniPCI form, for which I don't have any cards handy.
4665
4666     But looking in cpu/mpc85xx/pci.c:
4667     ...
4668     #ifdef CONFIG_MPC85XX_PCI2
4669             hose = &pci_hose[1];
4670
4671             hose->first_busno = pci_hose[0].last_busno + 1;
4672
4673     And considering that we do the same for MPC83xx PCI-E support,
4674     I think this patch is correct.
4675
4676     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4677     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4678
4679 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
4680 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4681 Date:   Thu Feb 19 18:20:46 2009 +0300
4682
4683     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
4684
4685     This patch fixes copy-paste issue: pci_hose[0]'s first and last
4686     busnos were used to fixup pci1's nodes.
4687
4688     We don't see this bug triggering only because Linux reenumerate
4689     buses anyway.
4690
4691     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4692     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4693
4694 commit b24a99f6666ac278ec9f9c1334518af828833d19
4695 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4696 Date:   Thu Feb 19 18:20:44 2009 +0300
4697
4698     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
4699
4700     This patch fixes an issue in config space read accessors: we should
4701     fill-in the value even if we fail (e.g. skipping devices), otherwise
4702     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
4703
4704     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4705     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4706
4707 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
4708 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4709 Date:   Thu Feb 19 18:20:42 2009 +0300
4710
4711     mpc83xx: PCIe: Don't start bus enumeration at 0
4712
4713     Currently we assign first_busno = 0 for the first PCIe hose, but this
4714     scheme won't work if we have ordinary PCI hose already registered (its
4715     first_busno value is 0 too).
4716
4717     The old code worked fine only because we have PCI disabled on
4718     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
4719     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
4720     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
4721     triggers.
4722
4723     So, to fix the issue, we should use pci_last_busno() + 1 for the
4724     first_busno (i.e. last available busno).
4725
4726     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
4727     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4728     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4729
4730 commit cc2a8c7751ddbae3116660064f446888538b93e9
4731 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4732 Date:   Thu Feb 19 18:20:41 2009 +0300
4733
4734     PCI: Add pci_last_busno() helper
4735
4736     This is just a handy routine that reports last PCI busno: we walk
4737     down all the hoses and return last hose's last_busno.
4738
4739     Will be used by PCI/PCIe initialization code.
4740
4741     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4742     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4743
4744 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
4745 Author: Becky Bruce <beckyb@kernel.crashing.org>
4746 Date:   Mon Feb 23 13:56:51 2009 -0600
4747
4748     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
4749
4750     Currently, we get 256MB as the default, but since all the 86xx
4751     board configs define a 2G BAT mapping for RAM, raise default
4752     to 2G.
4753
4754     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
4755     Acked-by: Jon Loeliger <jdl@freescale.com>
4756
4757 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
4758 Author: Becky Bruce <beckyb@kernel.crashing.org>
4759 Date:   Thu Feb 12 10:43:32 2009 -0600
4760
4761     mpc8641hpcn: Indicate 36-bit addr map in boot messages
4762
4763     If 36-bit addressing is enabled, print a message on the console
4764     when we boot.
4765
4766     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
4767
4768 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
4769 Author: Mark Jackson <mpfj-list@mimc.co.uk>
4770 Date:   Fri Feb 13 15:48:18 2009 +0000
4771
4772     Setup extra MIMC200 chip selects
4773
4774     Added code to setup the extra Flash and FRAM chip selects as used on the
4775     MIMC200 board.
4776
4777     V2 moves the init code from the common "cpu.c" file into the board specific
4778     setup file.
4779
4780     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
4781     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4782
4783 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
4784 Author: Mark Jackson <mpfj@mimc.co.uk>
4785 Date:   Mon Nov 24 12:10:56 2008 +0000
4786
4787     MIMC200: tidy GCLK init code
4788
4789     Change the MIMC200 startup code to use the built-in (rather than
4790     hard-coded) funtions for setting up gclk outputs.
4791
4792     We'll also move the code to the new, more-appropriate
4793     board_postclk_init() routine.
4794
4795     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
4796     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4797
4798 commit b423f94063bf04e92047ff85c7e53441eb3b712b
4799 Author: Olav Morken <olavmrk@gmail.com>
4800 Date:   Fri Jan 23 12:56:32 2009 +0100
4801
4802     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
4803
4804     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
4805     workaround, two NOPs can be inserted.
4806
4807     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
4808     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
4809     Signed-off-by: Olav Morken <olavmrk@gmail.com>
4810     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4811
4812 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
4813 Author: Gunnar Rangoy <gunnar@rangoy.com>
4814 Date:   Fri Jan 23 12:56:29 2009 +0100
4815
4816     AVR32: Make GPIO implmentation cpu dependent
4817
4818     There are some differences in the implementation of GPIO in the
4819     at32uc chip compared to the ap700x series.
4820
4821     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
4822     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
4823     Signed-off-by: Olav Morken <olavmrk@gmail.com>
4824     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4825
4826 commit a38de083d2979db3680f0d0978c509a172c8fa00
4827 Author: Olav Morken <olavmrk@gmail.com>
4828 Date:   Fri Jan 23 12:56:28 2009 +0100
4829
4830     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
4831
4832     The AVR32A architecture (which AT32UC3A-series is based on) has a
4833     different memory layout than the AVR32B-architecture. This patch moves
4834     addrspace.h to an arch-dependent directory in preparation for
4835     AT32UC3A-support. It also moves some address-space manipulation
4836     functions from io.h to addrspace.h.
4837
4838     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
4839     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
4840     Signed-off-by: Olav Morken <olavmrk@gmail.com>
4841     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4842
4843 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
4844 Author: Olav Morken <olavmrk@gmail.com>
4845 Date:   Fri Jan 23 12:56:27 2009 +0100
4846
4847     AVR32: Make cacheflush cpu-dependent
4848
4849     The AT32UC3A series of processors doesn't contain any cache, and issuing
4850     cache control instructions on those will cause an exception. This commit
4851     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
4852
4853     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
4854     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
4855     Signed-off-by: Olav Morken <olavmrk@gmail.com>
4856     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4857
4858 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
4859 Author: Heiko Schocher <hs@denx.de>
4860 Date:   Tue Feb 10 09:38:52 2009 +0100
4861
4862     netloop: speed up NetLoop
4863
4864     NetLoop polls every cycle with getenv some environment variables.
4865     This is horribly slow, especially when the environment is big.
4866
4867     This patch reads only the environment variables in NetLoop,
4868     when they were changed.
4869
4870     Also moved the init part of the NetLoop function in a seperate
4871     function.
4872
4873     Signed-off-by: Heiko Schocher <hs@denx.de>
4874     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4875
4876 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
4877 Author: Mike Frysinger <vapier@gentoo.org>
4878 Date:   Mon Dec 22 02:56:07 2008 -0500
4879
4880     smc911x_eeprom: new example app for managing newer SMC parts
4881
4882     A forward port of the last version to work with the newer smc911x driver.
4883     I only have a board with a LAN9218 part on it, so that is the only one
4884     I've tested.  But there isn't anything in this that would make it terribly
4885     chip specific afaik.
4886
4887     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4888     CC: Sascha Hauer <s.hauer@pengutronix.de>
4889     CC: Guennadi Liakhovetski <lg@denx.de>
4890     CC: Magnus Lilja <lilja.magnus@gmail.com>
4891     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4892
4893 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
4894 Author: Pieter Henning <phenning@vastech.co.za>
4895 Date:   Sun Feb 22 23:17:15 2009 -0800
4896
4897     Added Vitesse VSC8211 definitions to TSEC driver
4898
4899     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
4900     the phy_info list in tsec.c
4901
4902     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
4903     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4904
4905 commit 32688e572ff96715b41420e9a7f280db6c399b65
4906 Author: Wolfgang Denk <wd@denx.de>
4907 Date:   Mon Feb 23 00:22:21 2009 +0100
4908
4909     Update CHANGELOG;  Prepare 2009.03-rc1
4910
4911     Signed-off-by: Wolfgang Denk <wd@denx.de>
4912
4913 commit 80b827c2b78329c6503b271e43d9eb693d644710
4914 Author: Wolfgang Denk <wd@denx.de>
4915 Date:   Sun Feb 22 23:45:40 2009 +0100
4916
4917     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
4918
4919     The file was generated from building versatile_defconfig.
4920
4921     Signed-off-by: Wolfgang Denk <wd@denx.de>
4922
4923 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
4924 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4925 Date:   Sun Feb 22 14:24:11 2009 +0900
4926
4927     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
4928
4929     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
4930     like this:
4931
4932     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
4933     Configuring for dbau1x00 board...
4934     au1x00_eth.c: In function 'au1x00_send':
4935     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4936     au1x00_eth.c: In function 'au1x00_recv':
4937     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4938     au1x00_eth.c: In function 'au1x00_init':
4939     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4940     au1x00_eth.c: In function 'au1x00_recv':
4941     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4942     au1x00_eth.c: In function 'au1x00_init':
4943     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4944     au1x00_eth.c: In function 'au1x00_send':
4945     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
4946
4947     We're passing a volatile pointer to a function which is expecting a non-
4948     volatile pointer.  That's potentially dangerous, so gcc warns about it.
4949     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
4950
4951     To fix this, we add a volatile attribute to the argument in question.
4952     The virt_to_phys function in Linux kernel also does the same thing.
4953
4954     Signed-off-by: Stefan Roese <sr@denx.de>
4955     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4956
4957 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
4958 Author: Dirk Behme <dirk.behme@googlemail.com>
4959 Date:   Fri Feb 20 17:51:28 2009 +0100
4960
4961     OMAP3: Clean up MMC code
4962
4963     Clean up OMAP3 MMC code:
4964
4965     * Convert register access to struct & readx/writex style
4966     * Replace hardcode values by macros
4967     * Remove macro defined twice
4968
4969     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4970
4971 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
4972 Author: Dirk Behme <dirk.behme@googlemail.com>
4973 Date:   Thu Feb 12 18:55:43 2009 +0100
4974
4975     OMAP3: Pandora: Update pin mux
4976
4977     Clock pin must have input enabled for MMC3 to work.
4978     Also enable pull-ups for cmd/data lines to be consistent
4979     with remaining MMC host pin setup.
4980
4981     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
4982
4983 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
4984 Author: Dirk Behme <dirk.behme@googlemail.com>
4985 Date:   Thu Feb 12 18:55:42 2009 +0100
4986
4987     OMAP3: Add OMAP3 auto detection
4988
4989     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
4990     and removes hardcoded values.
4991
4992     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
4993     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4994
4995 commit f956fd0338f4990793a10f767929ba4963665261
4996 Author: Dirk Behme <dirk.behme@googlemail.com>
4997 Date:   Thu Feb 12 18:55:41 2009 +0100
4998
4999     OMAP3: Beagle: Add board revision detection
5000
5001     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
5002     which might need different software handling. For this, GPIO pin 171 (GPIO
5003     module 6, offset 11) can be used to check for board revision. If this pin
5004     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
5005
5006     To handle board differences you can call function beagle_get_revision().
5007     E.g.:
5008
5009     if (beagle_get_revision()) {
5010
5011     /* do special revision C stuff here */
5012
5013     }
5014
5015     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5016
5017 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
5018 Author: Dirk Behme <dirk.behme@googlemail.com>
5019 Date:   Thu Feb 12 18:55:40 2009 +0100
5020
5021     OMAP3: Overo: Clean up pin mux and GPIO configuration
5022
5023     * Make Overo GPIO114 an input for touchscreen PENDOWN
5024     * Make Overo GPIO144-147 readable
5025     * Make Overo EHCI pinmux match beagle rev c setup
5026     * Adjust pinmux for SMSC911X network chip support
5027     * Remove unnecessary GPIO setup
5028     * Fix merge error in Makefile
5029
5030     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
5031     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5032
5033 commit 2579019b8248e5f166e60e37065766efc8a49dbc
5034 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5035 Date:   Sun Feb 22 17:08:41 2009 +0100
5036
5037     nmdk8815: fix onenand support
5038
5039     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5040
5041 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
5042 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5043 Date:   Sun Feb 22 17:56:50 2009 +0100
5044
5045     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
5046
5047     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5048
5049 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
5050 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5051 Date:   Sun Feb 22 17:49:43 2009 +0100
5052
5053     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
5054
5055     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5056
5057 commit 4f5728987f4f9f7845688482aa2b7f2127768165
5058 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5059 Date:   Sun Feb 22 15:49:28 2009 +0100
5060
5061     arm: add uart dcc support
5062
5063     Serial driver via the EmbeddedICE macrocell's DCC channel using
5064     co-processor 14.
5065
5066     It does include a timeout to ensure that the system does not
5067     totally freeze when there is nothing connected to read.
5068
5069     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5070
5071 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
5072 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5073 Date:   Fri Nov 21 14:35:56 2008 -0500
5074
5075     ARM DaVinci: Add common peripherals and modules enable functions.
5076
5077     Taken all the duplicated code for enabling common modules and apply
5078     software workarounds from the board specific code into common
5079     functions. Also added comments explaining the workarounds
5080     (from TI errata documents) and replaced some numerical bit numbers
5081     with more meaningful defines.
5082
5083     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5084
5085 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
5086 Author: Alessandro Rubini <rubini@unipv.it>
5087 Date:   Mon Feb 9 15:53:33 2009 +0100
5088
5089     Enable Ethernet for Nomadik 8815 Evaluation Kit
5090
5091     This trivially enables Ethernet support in the debug board
5092     by setting up the proper chip select.
5093
5094     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5095     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5096
5097 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
5098 Author: Alessandro Rubini <rubini@unipv.it>
5099 Date:   Mon Feb 9 15:53:31 2009 +0100
5100
5101     Nand driver for Nomadik SoC
5102
5103     This driver implements the ECC algorithm described in
5104     the CPU data sheet and uses the OOB layout chosen in
5105     already-released development systems (shipped with a custom-made
5106     u-boot 1.3.1).
5107
5108     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5109     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5110
5111 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
5112 Author: Alessandro Rubini <rubini@unipv.it>
5113 Date:   Mon Feb 9 15:53:31 2009 +0100
5114
5115     Added nomadik.h header
5116
5117     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
5118     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
5119
5120 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
5121 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5122 Date:   Wed Oct 29 20:05:18 2008 +0900
5123
5124     r8a66597-hcd: fix cannot use external hub
5125
5126     Fix the problem that cannot use external hub, because this driver
5127     did not control correctly a DEVADDx register.
5128
5129     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5130     Signed-off-by: Remy Bohmer <linux@bohmer.net>
5131
5132 commit e1ffaee728190e76a4596a3579d94e730143585f
5133 Author: Mike Frysinger <vapier@gentoo.org>
5134 Date:   Thu Feb 19 01:20:27 2009 -0500
5135
5136     Blackfin: disable syscontrol code for now
5137
5138     Looks like the initcode updates fell out of order during my merges.  The
5139     patch that really fixes up this code is part of power-on overhaul and so
5140     is too large for merging at this point.  Instead, we can disable the code
5141     as no currently in-tree board depends on it.  The next merge window will
5142     fix things up properly.
5143
5144     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5145
5146 commit 1b228d68f54832edd867ef98520f760f68192ab7
5147 Author: Mike Frysinger <vapier@gentoo.org>
5148 Date:   Thu Feb 19 01:19:49 2009 -0500
5149
5150     Blackfin: bf537-stamp: fix I2C board defines
5151
5152     The previous merge for cleaning up the I2C driver incorrectly reverted the
5153     CFG_xxx rename for some of the I2C defines.
5154
5155     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5156     Signed-off-by: Heiko Schocher <hs@denx.de>
5157
5158 commit 09fee8e8677a6265e89144ccc163bf00e321769e
5159 Author: Wolfgang Denk <wd@denx.de>
5160 Date:   Sun Feb 22 01:19:52 2009 +0100
5161
5162     Coding Style cleanup; update CHANGELOG
5163
5164     Signed-off-by: Wolfgang Denk <wd@denx.de>
5165
5166 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
5167 Author: Wolfgang Denk <wd@denx.de>
5168 Date:   Sun Feb 22 01:17:47 2009 +0100
5169
5170     Makefile: fix cleanup
5171
5172     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
5173     to adapt the cleanup rules in the Makefile
5174
5175     Signed-off-by: Wolfgang Denk <wd@denx.de>
5176
5177 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
5178 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5179 Date:   Fri Feb 20 13:01:56 2009 -0500
5180
5181     Cleanup the comment for m68k linux boot argument passing.
5182
5183     This patch clarifies the way m68k passes linux boot argument.
5184     The one gotcha here is that the assembly instruction that
5185     the compiler uses to jump to the kernel is 'jsr' which pushes the
5186     program counter for the instruction after the jsr into the stack pointer.
5187
5188     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5189     Signed-off-by: Wolfgang Denk <wd@denx.de>
5190
5191 commit 4d41650eec959668280a612467bd95c7b8398513
5192 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
5193 Date:   Tue Feb 10 16:44:45 2009 +0000
5194
5195     sh: Fix rsk7203 in tree build
5196
5197     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
5198
5199 commit fca0cecff73db99d99ad094cca7980472b8a11b5
5200 Author: Minkyu Kang <mk7.kang@samsung.com>
5201 Date:   Wed Feb 18 09:05:52 2009 +0900
5202
5203     bootm: Reduce the unnecessary memmove
5204
5205     Although load address and image start address are same address,
5206     bootm command always does memmove.
5207     That is unnecessary memmove and can be taken few milliseconds
5208     (about 500 msec to 1000 msec).
5209     If skip this memmove, we can reduce the boot time.
5210
5211     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
5212
5213 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
5214 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5215 Date:   Sun Feb 15 22:29:15 2009 +0100
5216
5217     fpga: Fix Spartan III FPGA booting
5218
5219     This patch does some minor fixing of the Xilinx Spartan III
5220     FPGA boot code:
5221
5222     - Fixed call order of post configuration callback and
5223       success message printing (result of copy-paste?)
5224     - remove obsolete comment
5225     - minor coding style cleanup
5226
5227     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5228
5229 commit 3818b677641038d27b2663fbd6771ad38c932f86
5230 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5231 Date:   Sun Feb 15 22:28:36 2009 +0100
5232
5233     fpga: Fix Spartan II FPGA booting
5234
5235     This patch does some minor fixing of the Xilinx Spartan II
5236     FPGA boot code:
5237
5238     - Fixed call order of post configuration callback and
5239       success message printing (result of copy-paste?)
5240     - relocate post configuration callback only when it
5241       is implemented
5242     - remove obsolete comment
5243     - minor coding style cleanup
5244
5245     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5246
5247 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
5248 Author: Mike Frysinger <vapier@gentoo.org>
5249 Date:   Wed Feb 11 20:26:52 2009 -0500
5250
5251     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
5252
5253     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5254
5255 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
5256 Author: Derek Ou <dou@siconix.com>
5257 Date:   Tue Feb 3 16:00:07 2009 -0700
5258
5259     lcd_putc bug fix for tab.
5260
5261     Signed-off-by: Derek Ou <dou@siconix.com>
5262
5263 commit 35c9e14d8096e519fe76c953a43d52a09617345c
5264 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
5265 Date:   Mon Feb 2 09:46:21 2009 +0900
5266
5267     MIPS: cpu/mips/Makefile: Add a missing START line
5268
5269     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
5270     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
5271     line.  This patch puts it back.
5272
5273     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
5274
5275 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
5276 Author: Wolfgang Denk <wd@denx.de>
5277 Date:   Sat Feb 21 21:51:21 2009 +0100
5278
5279     Enable ext2 support for TQM8xxL/M based boards
5280
5281     Signed-off-by: Wolfgang Denk <wd@denx.de>
5282
5283 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
5284 Author: Tom Rix <Tom.Rix@windriver.com>
5285 Date:   Fri Feb 20 03:47:50 2009 +0100
5286
5287     ARM:PXA Use new definitions in mmc.h
5288
5289     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5290     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5291
5292 commit 682beeac34dc9ab18fab58b26973d2e29d113717
5293 Author: Andy Fleming <afleming@freescale.com>
5294 Date:   Fri Feb 20 03:47:50 2009 +0100
5295
5296     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
5297
5298     These names are being taken over by the new MMC framework.  Hopefuly
5299     the PXA can be easily ported, and these functions will go away entirely.
5300
5301     Signed-off-by: Andy Fleming <afleming@freescale.com>
5302     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5303
5304 commit b03d92e5584935886ff91d5aa0755dc8888b7187
5305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5306 Date:   Fri Feb 20 03:47:50 2009 +0100
5307
5308     pxa: move mmc drivers to drivers/mmc
5309
5310     introduce new macro CONFIG_PXA_MMC to activate it
5311
5312     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5313
5314 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
5315 Author: Tom Rix <Tom.Rix@windriver.com>
5316 Date:   Thu Feb 19 19:27:22 2009 -0600
5317
5318     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
5319
5320     These structures are defined in the common mmc.h
5321
5322     This was compile checked on cerf250.
5323
5324 commit 94a3312920b6f9b5da27309549fb73650718c10a
5325 Author: Micha Kalfon <smichak.uv@gmail.com>
5326 Date:   Wed Feb 11 19:50:11 2009 +0200
5327
5328     pxa: fixing get_timer to return time in miliseconds.
5329
5330     Fixing the get_timer function to return time in miliseconds instead of
5331     ticks. Also fixed PXA boards to use the conventional value of 1000 for
5332     CONFIG_SYS_HZ.
5333
5334     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
5335
5336 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
5337 Author: Tom Rix <Tom.Rix@windriver.com>
5338 Date:   Thu Feb 19 16:45:43 2009 -0600
5339
5340     ARM:OMAP3 Change mmc_init to mmc_legacy_init
5341
5342     omap3_mmc.c was changed to define mmc_legacy_init.
5343     Remove unused functions.
5344
5345     Compile tested on all arm
5346     Runtime tested on Zoom1.
5347
5348     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5349
5350 commit 9e80bb21629988063574f88ca0d28baadff4d963
5351 Author: Heiko Schocher <hs@denx.de>
5352 Date:   Thu Feb 19 17:23:58 2009 +0100
5353
5354     82xx, mgcoge: updates for 2009.03
5355
5356     - activate CS4 for accessing the FPGA
5357     - activate Rx buf len > 1 on SMC
5358     - pram activated
5359     - MTDPARTS_DEFAULT defined
5360     - update the size of the flashes in the DTS
5361       before booting Linux
5362     - MONITOR_LEN updated to 384k
5363     - added CONFIG_HOSTNAME
5364     - added CONFIG_ENV_BUFFER_PRINT
5365     - Environment size reduced to 16k
5366
5367     Signed-off-by: Heiko Schocher <hs@denx.de>
5368
5369 commit df909554e2401f307925e1bd45d576e4176d9de9
5370 Author: Heiko Schocher <hs@denx.de>
5371 Date:   Thu Feb 19 17:24:01 2009 +0100
5372
5373     8xx, mgsuvd: updates for 2009.03
5374
5375     - activate Rx buf len > 1 on SMC
5376     - pram activated
5377     - MTDPARTS_DEFAULT defined
5378     - update the size of the flash in the DTS
5379       before booting Linux
5380     - MONITOR_LEN updated to 384k
5381     - added CONFIG_HOSTNAME
5382     - added CONFIG_ENV_BUFFER_PRINT
5383     - Environment size reduced to 16k
5384
5385     Signed-off-by: Heiko Schocher <hs@denx.de>
5386
5387 commit 3511b4e208e12be85b532866f1c660aa2e021557
5388 Author: Dirk Behme <dirk.behme@googlemail.com>
5389 Date:   Wed Feb 18 19:59:39 2009 +0100
5390
5391     MMC: Don't use new framework code if not enabled
5392
5393     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
5394     isn't enabled.
5395
5396     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
5397
5398 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
5399 Author: Wolfgang Denk <wd@denx.de>
5400 Date:   Thu Feb 19 13:53:29 2009 +0100
5401
5402     TQM8xxL: make some room in low memory for future needs
5403
5404     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
5405     small boot sectors in the flash. This patch makes some room in the
5406     first sector to prepare for a size increase of lib_generic/vsprintf.o
5407     by a future patch.
5408
5409     Signed-off-by: Wolfgang Denk <wd@denx.de>
5410
5411 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
5412 Author: Kim Phillips <kim.phillips@freescale.com>
5413 Date:   Wed Feb 18 18:06:18 2009 -0600
5414
5415     README: remove duplicate entry
5416
5417     it's been around since the original commit (2ad6b513) that added two
5418     identical entries.
5419
5420     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5421
5422 commit 1bba30efe1717bea13026e15c7c7d906419fac69
5423 Author: Wolfgang Denk <wd@denx.de>
5424 Date:   Thu Feb 19 00:41:08 2009 +0100
5425
5426     Coding style cleanup, update CHANGELOG
5427
5428     Signed-off-by: Wolfgang Denk <wd@denx.de>
5429
5430 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
5431 Author: Kim Phillips <kim.phillips@freescale.com>
5432 Date:   Wed Feb 18 17:43:59 2009 -0600
5433
5434     sata_sil3114: fix compiler warning
5435
5436     judging from other printfs in the same file, it seems ata should be
5437     postpended with the interface number, not the address of the global
5438     port variable.  Fixes this for current u-boot-mpc83xx tree:
5439
5440     Configuring for MPC8349ITX board...
5441     sata_sil3114.c: In function 'sata_bus_softreset':
5442     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
5443     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
5444
5445     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5446
5447 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
5448 Author: Ron Madrid <ron_madrid@sbcglobal.net>
5449 Date:   Wed Feb 18 14:30:44 2009 -0800
5450
5451     Create configuration option for restricted ns16550 functions
5452
5453     This patch will create a configuration option for a minimum configuration for
5454     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
5455     configuration option to the SIMPC8313.h config file in order to fix the NAND
5456     bootstrap build error.  This option will exclude all functions with exception of
5457     NS16550_putc and NS16550_init.  This will be used primarily to save space and
5458     remove unused code from builds in which space is limited.
5459
5460     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
5461
5462 commit 7b0bc0219db8981613259473cf19699ac259b4fb
5463 Author: Kim Phillips <kim.phillips@freescale.com>
5464 Date:   Wed Feb 18 16:14:29 2009 -0600
5465
5466     mkconfig: include board config.h before asm/config.h
5467
5468     swapping the include order suppresses warnings for board configs
5469     that define their own CONFIG_MAX_MEM_MAPPED:
5470
5471     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
5472                     from /home/r1aaha/git/u-boot/include/common.h:35,
5473                     from simpc8313.c:26:
5474     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
5475     "CONFIG_MAX_MEM_MAPPED" redefined
5476     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
5477                     from /home/r1aaha/git/u-boot/include/common.h:35,
5478                     from simpc8313.c:26:
5479     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
5480     the location of the previous definition
5481
5482     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5483
5484 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
5485 Author: Wolfgang Denk <wd@denx.de>
5486 Date:   Wed Feb 18 21:35:38 2009 +0100
5487
5488     Fix build errors after making flash_get_info() non-static
5489
5490     Fix for these build problems:
5491     error: static declaration of 'flash_get_info' follows non-static declaration
5492
5493     Signed-off-by: Wolfgang Denk <wd@denx.de>
5494
5495 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
5496 Author: Stefan Roese <sr@denx.de>
5497 Date:   Wed Feb 18 13:18:00 2009 +0100
5498
5499     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
5500
5501     This patch fixes a problem recently seen on some 4xx platforms. For
5502     example on Kilauea PCIe slot #0.
5503
5504     Signed-off-by: Stefan Roese <sr@denx.de>
5505
5506 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
5507 Author: Stefan Roese <sr@denx.de>
5508 Date:   Wed Feb 18 14:05:37 2009 +0100
5509
5510     ppc4xx: Some more PMC405 coding-style cleanup
5511
5512     Signed-off-by: Stefan Roese <sr@denx.de>
5513
5514 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
5515 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5516 Date:   Sun Feb 15 22:27:47 2009 +0100
5517
5518     ppc4xx: Update PMC405 board support
5519
5520     This patch prepares the good old PMC405 board support for
5521     upcoming PMC405V2 patches.
5522
5523     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5524     Signed-off-by: Stefan Roese <sr@denx.de>
5525
5526 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
5527 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5528 Date:   Sun Feb 15 22:26:54 2009 +0100
5529
5530     ppc4xx: Cleanup PMC405 board support
5531
5532     This patch fixes coding style for PMC405 board support.
5533     Also some unneeded features/code is removed.
5534
5535     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5536     Signed-off-by: Stefan Roese <sr@denx.de>
5537
5538 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
5539 Author: Ilya Yanok <yanok@emcraft.com>
5540 Date:   Thu Feb 5 04:08:20 2009 +0100
5541
5542     qong: changes to Dave/DENX Qong configuration
5543
5544     1. Changes to the default environment:
5545       - "bootcmd" defined as "run flash_self"
5546       - "saveenv" command removed from "update"
5547       - "uboot" changed to "u-boot" (also in "load")
5548       - "addmtd" variable defined (and added to all boot commands)
5549     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
5550     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
5551     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
5552     with truncated "bootargs" environment variable.
5553
5554     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5555
5556 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
5557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5558 Date:   Sun Feb 1 17:07:52 2009 +0100
5559
5560     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
5561
5562     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5563
5564 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
5565 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5566 Date:   Sun Feb 1 17:07:51 2009 +0100
5567
5568     common/console: coding style cleanup
5569
5570     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5571
5572 commit daaf74f176b548dfd34a9990231f4189201d57ba
5573 Author: Mike Frysinger <vapier@gentoo.org>
5574 Date:   Thu Jan 29 20:02:23 2009 -0500
5575
5576     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
5577
5578     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
5579     into the Makefile so we avoid pointless compiling of the file.
5580
5581     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5582
5583 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
5584 Author: Mike Frysinger <vapier@gentoo.org>
5585 Date:   Thu Jan 29 20:02:07 2009 -0500
5586
5587     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
5588
5589     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
5590     avoid pointless compiles.
5591
5592     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5593
5594 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
5595 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
5596 Date:   Thu Jan 29 10:35:40 2009 +0200
5597
5598     include/image.h: Ease grepping of image_* functions
5599
5600     Because the functions have been defined using macros, grepping for
5601     their definitions is not possible. This patch adds the real function
5602     names in comments.
5603
5604     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
5605     Acked-by: Mike Frysinger <vapier@gentoo.org>
5606
5607 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
5608 Author: Mike Frysinger <vapier@gentoo.org>
5609 Date:   Wed Jan 28 19:08:14 2009 -0500
5610
5611     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
5612
5613     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
5614     rather than a generic "env" command, or anything else related to the
5615     environment.  So, let's make sure the define is named accordingly.
5616
5617     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5618
5619 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
5620 Author: Valeriy Glushkov <gvv@lstec.com>
5621 Date:   Fri Jan 23 20:02:17 2009 +0200
5622
5623     disable imls command if no flash is defined
5624
5625     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
5626
5627     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
5628
5629 commit 923aa48126259c13de95131203f1d28bfa5cb889
5630 Author: Rafal Jaworowski <raj@semihalf.com>
5631 Date:   Fri Jan 23 13:27:18 2009 +0100
5632
5633     API: Improve glue mid-layer of the API demo application.
5634
5635     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
5636     read, which allows for better control and error handling (this introduces
5637     additional error code API_ESYSC returned by the glue mid-layer).
5638
5639     - Clean up definitions naming and usage.
5640
5641     - Other minor cosmetics.
5642
5643     Note these changes do not touch the API proper, so the interface between
5644     U-Boot and standalone applications remains unchanged.
5645
5646     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
5647
5648 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
5649 Author: Rafal Jaworowski <raj@semihalf.com>
5650 Date:   Fri Jan 23 13:27:17 2009 +0100
5651
5652     API: Only output test data when reading was successful.
5653
5654     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
5655
5656 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
5657 Author: Rafal Jaworowski <raj@semihalf.com>
5658 Date:   Fri Jan 23 13:27:16 2009 +0100
5659
5660     API: Provide syscall entry point for the ARM architecture.
5661
5662     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
5663     Acked-by: Rafal Jaworowski <raj@semihalf.com>
5664
5665 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
5666 Author: Rafal Jaworowski <raj@semihalf.com>
5667 Date:   Fri Jan 23 13:27:15 2009 +0100
5668
5669     API: Use stack pointer as API signature search hint in the glue layer.
5670
5671     De-hardcode range in RAM we search for the API signature. Instead use the stack
5672     pointer as a hint to narrow down the range in which the signature could reside
5673     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
5674     from stack area). Adjust PowerPC code in API demo to the new scheme.
5675
5676     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
5677     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
5678
5679 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
5680 Author: Wolfgang Denk <wd@denx.de>
5681 Date:   Tue Feb 17 10:26:38 2009 +0100
5682
5683     TQM8260: fix locations of kernel and ramdisk images in flash
5684
5685     After introducing redundant environment the kernel images was
5686     overlapping with environment.
5687
5688     Signed-off-by: Wolfgang Denk <wd@denx.de>
5689
5690 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
5691 Author: Heiko Schocher <hs@denx.de>
5692 Date:   Wed Feb 11 19:26:15 2009 +0100
5693
5694     83xx: add missing TIMING_CFG1_CASLAT_* defines
5695
5696     Signed-off-by: Heiko Schocher <hs@denx.de>
5697     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5698
5699 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
5700 Author: Valeriy Glushkov <gvv@lstec.com>
5701 Date:   Thu Feb 5 14:35:21 2009 +0200
5702
5703     mpc8349itx: allow SATA boot from the onboard SIL1334
5704
5705     This patch allows using of SATA devices connected
5706     to the onboard PCI SIL1334 SATA controller.
5707
5708     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
5709     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5710
5711 commit e1ac387f4645499746856adc1aeaa9787da2eca6
5712 Author: Andy Fleming <afleming@freescale.com>
5713 Date:   Thu Oct 30 16:50:14 2008 -0500
5714
5715     83xx: Add eSDHC support on 8379 EMDS board
5716
5717     Signed-off-by: Andy Fleming <afleming@freescale.com>
5718
5719 commit 80522dc8369a89938369fbcee572e662373bc9a3
5720 Author: Andy Fleming <afleming@freescale.com>
5721 Date:   Thu Oct 30 16:51:33 2008 -0500
5722
5723     85xx: Add eSDHC support for 8536 DS
5724
5725     Signed-off-by: Andy Fleming <afleming@freescale.com>
5726
5727 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
5728 Author: Andy Fleming <afleming@freescale.com>
5729 Date:   Thu Oct 30 16:47:16 2008 -0500
5730
5731     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
5732
5733     This uses the new MMC framework
5734
5735     Some contributions by Dave Liu <daveliu@freescale.com>
5736
5737     Signed-off-by: Andy Fleming <afleming@freescale.com>
5738
5739 commit 272cc70b211e945e4413122aa73868f6ada732a5
5740 Author: Andy Fleming <afleming@freescale.com>
5741 Date:   Thu Oct 30 16:41:01 2008 -0500
5742
5743     Add MMC Framework
5744
5745     Here's a new framework (based roughly off the linux one) for managing
5746     MMC controllers.  It handles all of the standard SD/MMC transactions,
5747     leaving the host drivers to implement only what is necessary to
5748     deal with their specific hardware.
5749
5750     This also hooks the infrastructure into the PowerPC board code
5751     (similar to how the ethernet infrastructure now hooks in)
5752
5753     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
5754
5755     Signed-off-by: Andy Fleming <afleming@freescale.com>
5756
5757 commit 1de97f9856f697380cc504126ab92561ed238803
5758 Author: Andy Fleming <afleming@freescale.com>
5759 Date:   Thu Oct 30 16:31:39 2008 -0500
5760
5761     Eliminated arch-specific mmc header requirement
5762
5763     The current MMC infrastructure relies on the existence of an
5764     arch-specific header file.  This isn't necessary, and a couple
5765     drivers were forced to implement dummy files to meet this requirement.
5766     Instead, we move the stuff in those header files into a more appropriate
5767     place, and eliminate the stubs and the #include of asm/arch/mmc.h
5768
5769     Signed-off-by: Andy Fleming <afleming@freescale.com>
5770
5771 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
5772 Author: Andy Fleming <afleming@freescale.com>
5773 Date:   Thu Oct 30 16:21:00 2008 -0500
5774
5775     Convert mmc_init to mmc_legacy_init
5776
5777     This is to get it out of the way of incoming MMC framework
5778
5779     Signed-off-by: Andy Fleming <afleming@freescale.com>
5780
5781 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
5782 Author: Andy Fleming <afleming@freescale.com>
5783 Date:   Thu Oct 30 16:19:25 2008 -0500
5784
5785     Eliminate support for using MMC as memory
5786
5787     MMC cards are not memory, so we stop treating them that way.
5788
5789     Signed-off-by: Andy Fleming <afleming@freescale.com>
5790
5791 commit e1be0d25ecf494ae81245ca438738ba839d6329b
5792 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
5793 Date:   Sun Jan 4 08:46:38 2009 +0530
5794
5795     32bit BUg fix for DDR2 on 8572
5796
5797     This errata fix is required for 32 bit DDR2 controller on 8572.
5798     May  also be required for P10XX20XX platforms
5799
5800     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
5801
5802 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
5803 Author: Andy Fleming <afleming@freescale.com>
5804 Date:   Mon Feb 16 09:40:20 2009 -0600
5805
5806     TQM85xx: Fix a couple warnings in TQM8548 build
5807
5808     The ecm variable in sdram.c was being declared for all 8548, but only
5809     used by specific 8548 boards, so we make that variable require those
5810     specific boards, too
5811
5812     The nand code was using an index "i" into a table, and then re-using "i"
5813     to set addresses for each upm.  However, then it relied on the old value
5814     of i still being there to enable things.  Changed the second "i" to "j"
5815
5816     Signed-off-by: Andy Fleming <afleming@freescale.com>
5817
5818 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
5819 Author: Wolfgang Grandegger <wg@grandegger.com>
5820 Date:   Wed Feb 11 18:38:26 2009 +0100
5821
5822     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
5823
5824     This patch adds the workaround for erratum DDR20 according to MPC8548
5825     Device Errata document, Rev. 1: "CKE signal may not function correctly
5826     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
5827     processor version 2.1 and the work-around must be removed.
5828
5829     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5830
5831 commit 080408fdc71706adcb883d22125637c54f6010b1
5832 Author: Wolfgang Grandegger <wg@grandegger.com>
5833 Date:   Wed Feb 11 18:38:25 2009 +0100
5834
5835     MPC85xx: TQM8548: use cache for AG and BE variants
5836
5837     This patch makes accesses to the system memory cachable by removing the
5838     caching-inhibited and guarded flags from the relevant TLB entries for
5839     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
5840     are configured similarly.
5841
5842     This results in a big averall performace improvement. TFTP downloads,
5843     NAND Flash accesses, kernel boots, etc. are much faster.
5844
5845     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5846
5847 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
5848 Author: Wolfgang Grandegger <wg@grandegger.com>
5849 Date:   Wed Feb 11 18:38:24 2009 +0100
5850
5851     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
5852
5853     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
5854     module.
5855
5856     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
5857     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5858
5859 commit 88b0e88d186479349e5a2b771e82775109e10fb4
5860 Author: Wolfgang Grandegger <wg@grandegger.com>
5861 Date:   Wed Feb 11 18:38:23 2009 +0100
5862
5863     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
5864
5865     According to new TQM8548 timing specification:
5866     Refresh Recovery: 34 -> 53 clocks
5867     CKE pulse width:  1 -> 3 cycles
5868     Window for four activities: 13 -> 14 cycles
5869
5870     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
5871     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5872
5873 commit a865bcdac89278cac4dfc07dec8299403110499d
5874 Author: Wolfgang Grandegger <wg@grandegger.com>
5875 Date:   Wed Feb 11 18:38:22 2009 +0100
5876
5877     MPC85xx: TQM8548: add support for the TQM8548_AG module
5878
5879     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
5880     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
5881     with "$ make TQM8548_AG_config".
5882
5883     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5884
5885 commit ad7ee5d43b0db94079d56521dabca25674f28747
5886 Author: Wolfgang Grandegger <wg@grandegger.com>
5887 Date:   Wed Feb 11 18:38:21 2009 +0100
5888
5889     MPC85xx: TQM8548: add support for the TQM8548_BE module
5890
5891     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
5892     interface. With NAND support, the image is significantly larger and
5893     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
5894     module with "$ make TQM8548_BE_config".
5895
5896     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5897
5898 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
5899 Author: Wolfgang Grandegger <wg@grandegger.com>
5900 Date:   Wed Feb 11 18:38:20 2009 +0100
5901
5902     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
5903
5904     The TQM8548_AG module does not have the standard PCI/PCI-X interface
5905     connected but just the PCI Express interface . So far it was not
5906     possible to disable it without disabling the complete PCI interface
5907     (CONFIG_PCI) including PCI Express.
5908
5909     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5910
5911 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
5912 Author: Wolfgang Grandegger <wg@grandegger.com>
5913 Date:   Wed Feb 11 18:38:19 2009 +0100
5914
5915     MPC85xx: TQM85xx: fix flash protection for boot loader
5916
5917     As the reset vector is located at 0xfffffffc, all flash sectors from the
5918     beginning of the U-Boot binary to 0xffffffff must be protected. On the
5919     TQM8548-AG having small sectors at the end of the flash it happened that
5920     the last two sector were not protected and an "erase all" left an
5921     un-bootable system behind:
5922
5923     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
5924       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
5925       Erase timeout: 8192 ms, write timeout: 1 ms
5926
5927       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
5928       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
5929
5930     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
5931     board BSPs as well.
5932
5933     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
5934
5935 commit a1c8a719262151f97119e76166043ee3da3f97b2
5936 Author: Peter Tyser <ptyser@xes-inc.com>
5937 Date:   Fri Feb 6 14:30:40 2009 -0600
5938
5939     86xx: Update CPU info output on bootup
5940
5941     - Update style of 86xx CPU information on boot to more closely
5942       match 85xx boards
5943     - Fix detection of 8641/8641D
5944     - Use strmhz() to display frequencies
5945     - Display L1 information
5946     - Display L2 cache size
5947     - Fixed CPU/SVR version output
5948
5949     == Before ==
5950     Freescale PowerPC
5951     CPU:
5952         Core: E600 Core 0, Version: 0.2, (0x80040202)
5953         System: Unknown, Version: 2.1, (0x80900121)
5954         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
5955         L2: Enabled
5956     Board: X-ES XPedite5170 3U VPX SBC
5957
5958     == After ==
5959     CPU:   8641D, Version: 2.1, (0x80900121)
5960     Core:  E600 Core 0, Version: 2.2, (0x80040202)
5961     Clock Configuration:
5962            CPU:1066.667 MHz, MPX:533.333 MHz
5963            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
5964     L1:    D-cache 32 KB enabled
5965            I-cache 32 KB enabled
5966     L2:    512 KB enabled
5967     Board: X-ES XPedite5170 3U VPX SBC
5968
5969     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5970
5971 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
5972 Author: Peter Tyser <ptyser@xes-inc.com>
5973 Date:   Thu Feb 5 11:25:24 2009 -0600
5974
5975     86xx: Update Global Utilities structure
5976
5977     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5978
5979 commit 4ef630df773e45806d701bf5d25c328778bb4cde
5980 Author: Peter Tyser <ptyser@xes-inc.com>
5981 Date:   Thu Feb 5 11:25:25 2009 -0600
5982
5983     86xx: Reset update
5984
5985     Update the 86xx reset sequence to try executing a board-specific reset
5986     function.  If the board-specific reset is not implemented or does not
5987     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
5988     reset procedure than the previous method and allows all board
5989     peripherals to be reset if needed.
5990
5991     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5992
5993 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
5994 Author: Kumar Gala <galak@kernel.crashing.org>
5995 Date:   Tue Feb 10 23:53:40 2009 -0600
5996
5997     fsl-ddr: Allow system to boot if we have more than 4G of memory
5998
5999     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
6000     an error and hang.  Instead of doing that since DDR is mapped in the
6001     lowest priority LAWs we setup the DDR controller and the max amount
6002     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
6003
6004     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6005     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
6006
6007 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
6008 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6009 Date:   Wed Jan 21 17:17:33 2009 -0600
6010
6011     mpc85xx: Add support for the P2020
6012
6013     Added various p2020 processor specific details:
6014     * SVR for p2020, p2020E
6015     * immap updates for LAWs and DDR on p2020
6016     * LAW defines related to p2020
6017
6018     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6019     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
6020     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6021
6022 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
6023 Author: Kumar Gala <galak@kernel.crashing.org>
6024 Date:   Tue Feb 10 17:36:15 2009 -0600
6025
6026     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
6027
6028     Added some info that is printed out when we boot to distiquish if we
6029     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
6030     different address maps.
6031
6032     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6033
6034 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
6035 Author: Andy Fleming <afleming@freescale.com>
6036 Date:   Fri Dec 5 20:10:22 2008 -0600
6037
6038     Fixup SGMII PHY ids in the device tree
6039
6040     The device tree's PHY addresses need to be fixed up if we're using the
6041     SGMII Riser Card.
6042
6043     The 8572, 8536, and 8544 DS boards were modified to call this function.
6044
6045     Code idea taken from Liu Yu <yu.liu@freescale.com>
6046
6047     Signed-off-by: Andy Fleming <afleming@freescale.com>
6048
6049 commit 5dc0cf68f8f101042997d75188081d8526d705ea
6050 Author: Andy Fleming <afleming@freescale.com>
6051 Date:   Wed Feb 11 15:10:31 2009 -0600
6052
6053     Make some minor whitespace changes to eliminate line-wrapping
6054
6055     Signed-off-by: Andy Fleming <afleming@freescale.com>
6056
6057 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
6058 Author: Andy Fleming <afleming@freescale.com>
6059 Date:   Wed Feb 11 15:07:24 2009 -0600
6060
6061     Add eth_get_dev_by_index
6062
6063     This allows code to iterate through the ethernet devices
6064
6065     Signed-off-by: Andy Fleming <afleming@freescale.com>
6066
6067 commit b67305120aaf268a6140125346678166d14f1f47
6068 Author: Kumar Gala <galak@kernel.crashing.org>
6069 Date:   Mon Feb 9 22:03:04 2009 -0600
6070
6071     85xx: Fix bug in device tree setup in 36-bit physical confg
6072
6073     In the 36-bit physical config for MPC8572DS when need the start address
6074     of memory and it size to be kept in phys_*_t instead of a ulong since
6075     we support >4G of memory in the config and ulong cant represent that.
6076     Otherwise we end up seeing the memory node in the device tree reporting
6077     back we have memory starting @ 0 and of size 0.
6078
6079     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6080
6081 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
6082 Author: Kumar Gala <galak@kernel.crashing.org>
6083 Date:   Mon Feb 9 22:03:05 2009 -0600
6084
6085     85xx: Fix address map for 36-bit config of MPC8572DS
6086
6087     When we introduced the 36-bit config of the MPC8572DS board we had the
6088     wrong PCI MEM bus address map.  Additionally, the change to the address
6089     map exposes a small issue in our dummy read on the ULI bus.  We need
6090     to use the new mapping functions to handle that read properly in the
6091     36-bit config.
6092
6093     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6094
6095 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
6096 Author: Kumar Gala <galak@kernel.crashing.org>
6097 Date:   Fri Feb 6 09:56:35 2009 -0600
6098
6099     85xx: Fix how we map DDR memory
6100
6101     Previously we only allowed power-of-two memory sizes and didnt
6102     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
6103     and should properly handle any size that we can make in the TLBs
6104     we have available to us
6105
6106     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6107
6108 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
6109 Author: Kumar Gala <galak@kernel.crashing.org>
6110 Date:   Fri Feb 6 09:56:34 2009 -0600
6111
6112     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
6113
6114     If we only have one controller we can completely ignore how
6115     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
6116     and think we have twice as much memory.
6117
6118     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6119
6120 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
6121 Author: Kumar Gala <galak@kernel.crashing.org>
6122 Date:   Wed Feb 4 09:35:57 2009 -0600
6123
6124     85xx: Format cpu freq printing to handle 8 cores
6125
6126     Only print 4 cpu freq per line.  This way when we have 8 cores its a
6127     bit more readable.
6128
6129     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6130
6131 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
6132 Author: Abraham, Thomas <t-abraham@ti.com>
6133 Date:   Tue Oct 28 16:51:31 2008 +0530
6134
6135     USB: Remove LUN number from CDB
6136
6137     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.
6138
6139     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
6140     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6141
6142 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
6143 Author: Atin Malaviya <atin.malaviya@gmail.com>
6144 Date:   Tue Feb 3 15:17:10 2009 -0500
6145
6146     Added usbtty_configured() check. Fixed attribute(packed) warnings.
6147
6148     V3: Fixed line-wrap problem due to user error in mail!
6149
6150     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
6151     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
6152     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
6153
6154     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
6155     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6156
6157 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
6158 Author: Guennadi Liakhovetski <lg@denx.de>
6159 Date:   Fri Feb 13 09:23:36 2009 +0100
6160
6161     i.MX31: Start the I2C clock on driver initialisation
6162
6163     i.MX31 powers on with most clocks running, so, after a power on this explicit
6164     clock start up is not required. However, as Linux boots it disables most clocks
6165     to save power. This includes the I2C clock. If we then soft reboot from Linux
6166     the I2C clock stays off. This breaks the phycore, which has its environment in
6167     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
6168     initialisation routine.
6169
6170     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6171     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6172
6173 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
6174 Author: Mike Frysinger <vapier@gentoo.org>
6175 Date:   Wed Feb 11 20:36:14 2009 -0500
6176
6177     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
6178
6179     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
6180     common code are no longer needed.
6181
6182     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6183
6184 commit c2d9befa0b4695b89476fb5d259742c09afe243f
6185 Author: Heiko Schocher <hs@denx.de>
6186 Date:   Thu Feb 12 08:08:54 2009 +0100
6187
6188     82xx, mgcoge: fix compile error
6189
6190     With actual u-boot compiling the mgcoge port fails, because
6191     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
6192     necessary to define CONFIG_NET_MULTI.
6193
6194     Seems to me the mgcoge port is the only actual existing 8260
6195     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
6196     to be fixed.
6197
6198     Signed-off-by: Heiko Schocher <hs@denx.de>
6199
6200 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
6201 Author: Dirk Eibach <eibach@gdsys.de>
6202 Date:   Mon Feb 9 08:18:34 2009 +0100
6203
6204     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
6205
6206     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
6207     Signed-off-by: Stefan Roese <sr@denx.de>
6208
6209 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
6210 Author: Carolyn Smith <carolyn.smith@tektronix.com>
6211 Date:   Thu Feb 12 06:13:44 2009 +0100
6212
6213     ppc4xx: Fix initialization of the SDRAM_CODT register
6214
6215     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
6216     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
6217     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
6218
6219     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
6220     Signed-off-by: Stefan Roese <sr@denx.de>
6221
6222 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
6223 Author: Stefan Roese <sr@denx.de>
6224 Date:   Wed Feb 11 09:29:33 2009 +0100
6225
6226     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
6227
6228     Some AMCC eval boards do have a board_eth_init() function calling
6229     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
6230     with the new eth_init rework.
6231
6232     Signed-off-by: Stefan Roese <sr@denx.de>
6233
6234 commit c645012aefebb301e6907d148c6c8efacac049d4
6235 Author: Adam Graham <agraham@amcc.com>
6236 Date:   Mon Feb 9 13:18:12 2009 -0800
6237
6238     ppc4xx: Autocalibration can set RDCC to over aggressive value.
6239
6240     The criteria of the AMCC SDRAM Controller DDR autocalibration
6241     U-Boot code is to pick the largest passing write/read/compare
6242     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
6243     Cycle Select value.
6244
6245     On some Kilauea boards the DDR autocalibration algorithm can
6246     find a large passing write/read/compare window with a small
6247     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
6248     value "T1 Sample".
6249
6250     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
6251     "T1 Sample" proves to be to aggressive when later on U-Boot
6252     relocates into DDR memory and executes.
6253
6254     The memory traces on the Kilauea board are short so on some
6255     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
6256     value of "T1 Sample" shows up as a potentially valid value for
6257     the DDR autocalibratiion algorithm.
6258
6259     The fix is to define a weak default function which provides
6260     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
6261     to accept for DDR autocalibration.  The default will be the
6262     "T2 Sample" value.  A board developer who has a well defined
6263     board and chooses to be more aggressive can always provide
6264     their own board specific string function with the more
6265     aggressive "T1 Sample" value or stick with the default
6266     minimum SDRAM_RDCC.[RDSS] value of "T2".
6267
6268     Also put in a autocalibration loop fix for case where current
6269     write/read/compare passing window size is the same as a prior
6270     window size, then in this case choose the write/read/compare
6271     result that has the associated smallest RDCC T-Sample value.
6272
6273     Signed-off-by: Adam Graham <agraham@amcc.com>
6274     Signed-off-by: Stefan Roese <sr@denx.de>
6275
6276 commit 2ede879fcb67470524847bb4fc8972651bb46184
6277 Author: Stefan Roese <sr@denx.de>
6278 Date:   Wed Feb 11 09:37:12 2009 +0100
6279
6280     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
6281
6282     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
6283     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
6284
6285     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
6286     boards right now.
6287
6288     Signed-off-by: Stefan Roese <sr@denx.de>
6289
6290 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
6291 Author: Wolfgang Denk <wd@denx.de>
6292 Date:   Thu Feb 12 00:08:39 2009 +0100
6293
6294     Coding style cleanup; update CHANGELOG
6295
6296     Signed-off-by: Wolfgang Denk <wd@denx.de>
6297
6298 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
6299 Author: Peter Tyser <ptyser@xes-inc.com>
6300 Date:   Fri Jan 30 16:36:40 2009 -0600
6301
6302     Add feature-removal-schedule.txt
6303
6304     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6305
6306 commit 255d28e1642e8fc32a6753226be1a96b481ce111
6307 Author: Heiko Schocher <hs@denx.de>
6308 Date:   Tue Feb 10 09:32:38 2009 +0100
6309
6310     8xx serial, smc: Coding-Style cleanup serial SMC driver
6311
6312     Signed-off-by: Heiko Schocher <hs@denx.de>
6313
6314 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
6315 Author: Heiko Schocher <hs@denx.de>
6316 Date:   Tue Feb 10 09:31:47 2009 +0100
6317
6318     8xx serial, smc: add configurable SMC Rx buffer len
6319
6320     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
6321     With this option it is possible to allow the receive
6322     buffer for the SMC on 8xx to be greater then 1. In case
6323     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
6324     old version.
6325
6326     When defining CONFIG_SYS_SMC_RXBUFLEN also
6327     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
6328     idle timeout for the SMC.
6329
6330     Signed-off-by: Heiko Schocher <hs@denx.de>
6331
6332 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
6333 Author: Mike Frysinger <vapier@gentoo.org>
6334 Date:   Thu Feb 5 21:04:36 2009 -0500
6335
6336     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
6337
6338     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
6339     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
6340     code in the process.
6341
6342     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6343
6344 commit ab76e9848a1f4db64d14233741d739a3b3360c93
6345 Author: Mike Frysinger <vapier@gentoo.org>
6346 Date:   Thu Feb 5 21:04:50 2009 -0500
6347
6348     bzip2: move ifdef handling to Makefile COBJS-$(...)
6349
6350     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6351
6352 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
6353 Author: Jerry Van Baren <gvb.uboot@gmail.com>
6354 Date:   Thu Feb 5 22:18:02 2009 -0500
6355
6356     Fix whitespace damage: double space changed to a tab
6357
6358     At some point an intentional double space at the end of the sentence
6359     got changed into a tab in the GPL header line:
6360      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6361
6362     This patch fixes the damage.
6363
6364     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
6365
6366 commit 4f975678de995b55749d5e84590c268972a7c835
6367 Author: Heiko Schocher <hs@denx.de>
6368 Date:   Tue Feb 10 09:53:29 2009 +0100
6369
6370     cfi: make flash_get_info() non static
6371
6372     If on your board is more than one flash, you must know
6373     the size of every single flash, for example, for updating
6374     the DTS before booting Linux. So make this function
6375     flash_get_info() extern, and you can have all info
6376     about your flashes.
6377
6378     Signed-off-by: Heiko Schocher <hs@denx.de>
6379     Signed-off-by: Stefan Roese <sr@denx.de>
6380
6381 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
6382 Author: Ben Warren <biggerbadderben@gmail.com>
6383 Date:   Thu Feb 5 23:58:25 2009 -0800
6384
6385     net: removed board-specific CONFIGs from MPC5xxx FEC driver
6386
6387     Added new CONFIG options for the three type of MAC-PHY interconnect and
6388     applied them all relevant board config files
6389
6390     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6391
6392 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
6393 Author: Mike Frysinger <vapier@gentoo.org>
6394 Date:   Thu Feb 5 21:04:47 2009 -0500
6395
6396     net/sntp.c: move ifdef into Makefile COBJS-$(...)
6397
6398     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6399     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6400
6401 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
6402 Author: Andy Fleming <afleming@freescale.com>
6403 Date:   Tue Feb 3 18:26:41 2009 -0600
6404
6405     tsec: Fix a bug in soft-resetting
6406
6407     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
6408     clock cycles, so it's been mostly working.  But we had no guarantee, and at
6409     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
6410     enforces a 2 microsecond gap between assertion and deassertion.
6411
6412     Signed-off-by: Andy Fleming <afleming@freescale.com>
6413     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6414
6415 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
6416 Author: Simon Munton <simon@nidoran.m5data.com>
6417 Date:   Mon Feb 2 09:44:08 2009 +0000
6418
6419     Fix 100Mbs ethernet operation on sh7763 based boards
6420
6421     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
6422     used in the GECMR register. Following diff fixes the problem
6423
6424     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
6425     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6426
6427 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
6428 Author: ksi@koi8.net <ksi@koi8.net>
6429 Date:   Fri Feb 6 16:27:55 2009 -0800
6430
6431     Fix MPC8260 with ethernet on SCC
6432
6433     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
6434     typo or something...
6435
6436     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
6437     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6438
6439 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
6440 Author: Heiko Schocher <hs@denx.de>
6441 Date:   Fri Jan 30 12:56:15 2009 +0100
6442
6443     82xx serial, smc: Coding-Style cleanup serial SMC driver
6444
6445     Signed-off-by: Heiko Schocher <hs@denx.de>
6446
6447 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
6448 Author: Heiko Schocher <hs@denx.de>
6449 Date:   Fri Jan 30 12:55:38 2009 +0100
6450
6451     82xx serial, smc: add configurable SMC Rx buffer len
6452
6453     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
6454     With this option it is possible to allow the receive
6455     buffer for the SMC on 82xx to be greater then 1. In case
6456     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
6457     old version.
6458
6459     When defining CONFIG_SYS_SMC_RXBUFLEN also
6460     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
6461     idle timeout for the SMC.
6462
6463     Signed-off-by: Heiko Schocher <hs@denx.de>
6464
6465 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
6466 Author: Kumar Gala <galak@kernel.crashing.org>
6467 Date:   Fri Feb 6 08:08:06 2009 -0600
6468
6469     ppc: Fix roll over bug in flush_cache()
6470
6471     If we call flush_cache(0xfffff000, 0x1000) it would never
6472     terminate the loop since end = 0xffffffff and we'd roll over
6473     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
6474
6475     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6476
6477 commit 87c9063963561d3d01064be34d0c30855a56587b
6478 Author: Kumar Gala <galak@kernel.crashing.org>
6479 Date:   Thu Feb 5 20:40:58 2009 -0600
6480
6481     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
6482
6483     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
6484     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
6485
6486     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6487     Acked-by: Stefan Roese <sr@denx.de>
6488
6489 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
6490 Author: Kumar Gala <galak@kernel.crashing.org>
6491 Date:   Thu Feb 5 20:40:57 2009 -0600
6492
6493     Add an architecture specific config.h for common defines
6494
6495     We have common defines that we duplicate in various ways.  Having an
6496     arch specific config.h gives us a common location for those defines.
6497
6498     Eventually we should be able to replace this when we have proper
6499     Kconfig support.
6500
6501     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6502
6503 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
6504 Author: Becky Bruce <beckyb@kernel.crashing.org>
6505 Date:   Tue Feb 3 18:10:56 2009 -0600
6506
6507     mpc8641hpcn: Change PCI MEM pci bus address
6508
6509     Now that the rest of u-boot can support it, change the PCI bus
6510     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
6511     and use the same bus address for both PCI1 and PCI2.  This will
6512     maximize the amount of PCI address space left over to map RAM
6513     on systems with large amounts of memory.
6514
6515     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6516
6517 commit 1785dbeed43599eed1d8875673c96912cd770141
6518 Author: Becky Bruce <beckyb@kernel.crashing.org>
6519 Date:   Tue Feb 3 18:10:55 2009 -0600
6520
6521     drivers/block/ahci: Fix pci mapping bug
6522
6523     The code assumes that the pci bus address and the virtual
6524     address used to access a region are the same, but they might
6525     not be.  Fix this assumption.
6526
6527     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6528
6529 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
6530 Author: Becky Bruce <beckyb@kernel.crashing.org>
6531 Date:   Tue Feb 3 18:10:54 2009 -0600
6532
6533     MPC8641HPCN: Enable CONFIG_ADDR_MAP
6534
6535     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6536
6537 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
6538 Author: Becky Bruce <beckyb@kernel.crashing.org>
6539 Date:   Tue Feb 3 18:10:53 2009 -0600
6540
6541     mpc8641hpcn: Clean up PCI mapping concepts
6542
6543     Clean up PCI mapping concepts in the 8641 config - rename _BASE
6544     to _BUS, as it's actually a PCI bus address, separate virtual
6545     and physical addresses into _VIRT and _PHYS, and use each
6546     appopriately.
6547
6548     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6549
6550 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
6551 Author: Becky Bruce <beckyb@kernel.crashing.org>
6552 Date:   Tue Feb 3 18:10:52 2009 -0600
6553
6554     mpc86xx: Add support to populate addr map based on BATs
6555
6556     If CONFIG_ADDR_MAP is enabled, update the address map
6557     whenever we write a bat.
6558
6559     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6560
6561 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
6562 Author: Becky Bruce <beckyb@kernel.crashing.org>
6563 Date:   Tue Feb 3 18:10:51 2009 -0600
6564
6565     powerpc: Move duplicated BAT defines to mmu.h
6566
6567     The BAT fields are architected; there's no need for these to be in
6568     cpu-specific files.  Drop the duplication and move these to
6569     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
6570     used by the alaska board, and switch to using the BATU_BL_xxx defines
6571     used by all the other boards.  The BL_ defines previously in use
6572     had to be shifted into the proper position for use, which was inefficient.
6573
6574     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6575
6576 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
6577 Author: Becky Bruce <beckyb@kernel.crashing.org>
6578 Date:   Tue Feb 3 18:10:50 2009 -0600
6579
6580     drivers/pci: Create pci_map_bar function
6581
6582     It is no longer always true that the pci bus address can be
6583     used as the virtual address for pci accesses.  pci_map_bar()
6584     is created to return the virtual address for a pci region.
6585
6586     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6587
6588 commit 2ecca3401775b125c3b9ff65766befb23989414b
6589 Author: Becky Bruce <beckyb@kernel.crashing.org>
6590 Date:   Tue Feb 3 18:10:49 2009 -0600
6591
6592     mpc8641hpcn: Set up outbound pci windows before inbound
6593
6594     Because the inbound pci windows are mapped generously, set up
6595     the more specific outbound windows first.  This way, when we
6596     search the pci regions for something, we will hit on the more
6597     specific region.  This can actually be a problem on systems
6598     with large amounts of RAM.
6599
6600     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6601
6602 commit b81b773ead0687114dc8a800f99ea6e504447739
6603 Author: Becky Bruce <beckyb@kernel.crashing.org>
6604 Date:   Mon Feb 2 16:34:52 2009 -0600
6605
6606     mpc8641hpcn: Use physical address in flash banks defintion
6607
6608     If the VA and PA of the flash aren't the same, the banks list
6609     should be initialized to hold the physical address.  Correct this.
6610
6611     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
6612
6613 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
6614 Author: Ilya Yanok <yanok@emcraft.com>
6615 Date:   Tue Feb 10 00:22:31 2009 +0100
6616
6617     qong: support for Dave/DENX QongEVB-LITE board
6618
6619     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
6620
6621     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6622     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6623
6624 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
6625 Author: Ilya Yanok <yanok@emcraft.com>
6626 Date:   Mon Feb 9 18:45:28 2009 +0100
6627
6628     dnet: driver for Dave DNET ethernet controller
6629
6630     Driver for Dave DNET ethernet controller (used on Dave/DENX
6631     QongEVB-LITE board).
6632
6633     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6634     Acked-by: Ben Warren <biggerbadderben@gmail.com>
6635
6636 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
6637 Author: Kumar Gala <galak@kernel.crashing.org>
6638 Date:   Fri Feb 6 09:49:32 2009 -0600
6639
6640     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
6641
6642     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
6643     we should give preference to memory regions that aren't system memory.
6644
6645     Its possible that we have over mapped system memory in the regions and
6646     we want to avoid depending on the order of the regions.
6647
6648     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6649
6650 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
6651 Author: Kumar Gala <galak@kernel.crashing.org>
6652 Date:   Fri Feb 6 09:49:31 2009 -0600
6653
6654     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
6655
6656     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
6657     can be confusing when reading the code.
6658
6659     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
6660     for system memory mapping purposes.
6661
6662     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6663
6664 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
6665 Author: Ilya Yanok <yanok@emcraft.com>
6666 Date:   Sun Feb 8 00:59:43 2009 +0300
6667
6668     mx31: add GPIO registers definitions
6669
6670     Added definitions for i.MX31 processor GPIO registers.
6671
6672     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6673
6674 commit 8da601280a8acbc3385784780ed35130e53812f1
6675 Author: Peter Tyser <ptyser@xes-inc.com>
6676 Date:   Wed Feb 4 13:47:22 2009 -0600
6677
6678     NAND: Add timeout for reset command
6679
6680     Without the timeout present an infinite loop can occur if the
6681     NAND device is broken or not present.
6682
6683     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6684     Signed-off-by: Scott Wood <scottwood@freescale.com>
6685
6686 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
6687 Author: Peter Tyser <ptyser@xes-inc.com>
6688 Date:   Wed Feb 4 13:39:40 2009 -0600
6689
6690     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
6691
6692     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
6693     for disabling the "No NAND device found!!!" warning when
6694     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
6695     for silencing the warning.
6696
6697     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6698     Signed-off-by: Scott Wood <scottwood@freescale.com>
6699
6700 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
6701 Author: Valeriy Glushkov <gvv@lstec.com>
6702 Date:   Mon Jan 19 16:32:59 2009 +0200
6703
6704     NAND: Fixed invalid pointers to static relocated chip names
6705
6706     Dear Wolfgang,
6707
6708     You are right, the patch was ugly.
6709     The new one seems to be better.
6710
6711     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
6712     Signed-off-by: Scott Wood <scottwood@freescale.com>
6713
6714 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
6715 Author: Nishanth Menon <nm@ti.com>
6716 Date:   Mon Feb 2 18:20:12 2009 -0600
6717
6718     ARM:OMAP3:Zoom1: Add nand unlock option
6719
6720     Enable NAND_UNLOCK option for unlocking nand for
6721     erase/write operations
6722
6723     Signed-off-by: Nishanth Menon <nm@ti.com>
6724
6725 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
6726 Author: derek@siconix.com <derek@siconix.com>
6727 Date:   Mon Jan 26 14:08:17 2009 -0700
6728
6729     env_nand: fix env memory release
6730
6731     This fixes a bug that tmp environment memory not being released.
6732
6733     Signed-off-by: Derek Ou <dou@siconix.com>
6734     Signed-off-by: Scott Wood <scottwood@freescale.com>
6735
6736 commit 05fd88776419df59e7f37bac063a209409dd801d
6737 Author: Guennadi Liakhovetski <lg@denx.de>
6738 Date:   Fri Feb 6 10:37:45 2009 +0100
6739
6740     ARM: remove unused variable
6741
6742     The "size" variable in start_armboot() in lib_arm/board.c is only really
6743     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
6744     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
6745
6746     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6747
6748 commit 6989e4f546d960a407dd5425f800dff9751c8132
6749 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6750 Date:   Thu Feb 5 09:33:50 2009 -0500
6751
6752     Coldfire: M527x: Add missing GPIO register address defines
6753
6754     Add missing GPIO registers address definition for Coldfire M5271.
6755
6756     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6757
6758 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
6759 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6760 Date:   Fri Jan 23 14:42:58 2009 -0500
6761
6762     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
6763
6764     Modified mii_init to support boards with PHYs that are not set to
6765     autonegotiate, but still want to use u-boot's mii commands to probe
6766     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
6767
6768     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6769
6770 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
6771 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6772 Date:   Fri Jan 23 11:44:30 2009 -0500
6773
6774     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
6775
6776     Applied the patch for baudrate divider value truncation for
6777     serial_init to serial_setbrg as well.
6778
6779     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6780
6781 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
6782 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6783 Date:   Fri Jan 23 14:07:05 2009 -0500
6784
6785     Coldfire: M5271EVB: Board header update (dependencies)
6786
6787     Cleanup for M5271EVB:
6788     Added clarification on the use of CONFIG_SYS_CLOCK.
6789     Modified to use u-boot's HUSH parser.
6790     Cleanup on environment settings.
6791     Removed compiler warning by defining CONFIG_SYS_CS0_*
6792
6793     Dependencies:
6794     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
6795     This depends on a patch to include/asm-m68k/m5271.h
6796     that defines the multiplier and divider ratios.
6797
6798     Removed the definition of CONFIG_SYS_FECI2C.
6799     This depends on a patch that removes the use of it in
6800     cpu/mcf52x2/cpu_init.c
6801
6802     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6803
6804 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
6805 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6806 Date:   Thu Jan 29 14:36:06 2009 -0500
6807
6808     Coldfire: M5271: Allow board header file to specify clock multiplier
6809
6810     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
6811
6812     Allow the board header file to set their own multiplier and divider.
6813     Added the #define for the multiplier and divider to the cpu header file.
6814
6815     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6816
6817 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
6818 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6819 Date:   Fri Jan 23 10:47:13 2009 -0500
6820
6821     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
6822
6823     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
6824     Use read-modify-write to activate the FEC pins without disabling I2C.
6825
6826     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6827
6828 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
6829 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6830 Date:   Fri Jan 23 09:45:34 2009 -0500
6831
6832     Coldfire: cmd_bdinfo cleanup
6833
6834     CONFIG_M68K bdinfo cleanup:
6835
6836     Fixed compiler warning about baudrate printing.
6837     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
6838
6839     Added printing of "cpufreq"
6840
6841     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6842
6843 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
6844 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6845 Date:   Fri Jan 23 09:27:00 2009 -0500
6846
6847     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
6848
6849     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
6850     was causing the bus clock (not CPU clock) to be declared twice as
6851     fast as it actually is. This causes UARTS to operate at half the
6852     specified baudrate.
6853
6854     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6855
6856 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
6857 Author: Dirk Eibach <eibach@gdsys.de>
6858 Date:   Tue Feb 3 15:15:21 2009 +0100
6859
6860     ppc4xx: Make PCIE support selectable
6861
6862     On some platforms PCIE support is not required, but would be included
6863     because the cpu supports it. To reduce fooprint it is now configurable
6864     via CONFIG_PCI_DISABLE_PCIE.
6865
6866     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
6867     Signed-off-by: Stefan Roese <sr@denx.de>
6868
6869 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
6870 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6871 Date:   Tue Feb 3 22:13:16 2009 +0100
6872
6873     ppc4xx: Only fixup opb attached UARTs
6874
6875     This patch updates the fdt UART clock fixup code to
6876     only touch CPU internal UARTs on 4xx systems.
6877     Only these UARTs are definitely clocked by gd->uart_clk.
6878
6879     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6880     Signed-off-by: Stefan Roese <sr@denx.de>
6881
6882 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
6883 Author: Mike Frysinger <vapier@gentoo.org>
6884 Date:   Tue Jan 13 11:00:29 2009 -0500
6885
6886     Blackfin: move default boot SPI CS to common code
6887
6888     Move the default SPI CS that we boot from into common code so that it can
6889     be used in other SPI drivers and environment settings.
6890
6891     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6892
6893 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
6894 Author: Mike Frysinger <vapier@gentoo.org>
6895 Date:   Wed Dec 10 12:33:54 2008 -0500
6896
6897     Blackfin: dynamically update UART speed when initializing
6898
6899     Previously, booting over the UART required the baud rate to be known ahead
6900     of time.  Using a bit of tricky simple math, we can calculate the new board
6901     rate based on the old divisors.
6902
6903     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6904     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
6905
6906 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
6907 Author: Mike Frysinger <vapier@gentoo.org>
6908 Date:   Tue Dec 9 17:21:08 2008 -0500
6909
6910     Blackfin: add support for fast SPI reads with Boot ROM
6911
6912     Newer Blackfin boot roms support using the fast SPI read command rather than
6913     just the slow one.  If the functionality is available, then use it.
6914
6915     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6916
6917 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
6918 Author: Mike Frysinger <vapier@gentoo.org>
6919 Date:   Sat Oct 11 21:46:52 2008 -0400
6920
6921     Blackfin: check for reserved settings in DDR MMRs
6922
6923     Some bits of the DDR MMRs should not be set.  If they do, bad things may
6924     happen (like random failures or hardware destruction).
6925
6926     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6927
6928 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
6929 Author: Mike Frysinger <vapier@gentoo.org>
6930 Date:   Sat Oct 11 21:54:00 2008 -0400
6931
6932     Blackfin: set default voltage levels for BF538/BF539 parts
6933
6934     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6935
6936 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
6937 Author: Mike Frysinger <vapier@gentoo.org>
6938 Date:   Sun Jun 1 01:29:57 2008 -0400
6939
6940     Blackfin: use on-chip syscontrol() rom function when available
6941
6942     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
6943     to be used to properly program the memory and voltage settings as it will
6944     include (possibly critical) factory tested bias values.
6945
6946     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6947
6948 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
6949 Author: Stefan Roese <sr@denx.de>
6950 Date:   Thu Feb 5 11:44:52 2009 +0100
6951
6952     cfi_flash: Fix typo in cfi_flash.c
6953
6954     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
6955     introduced a small typo and compilation warning for systems with CFI
6956     legacy support (e.g. hcu4). This patch fixes it.
6957
6958     Signed-off-by: Stefan Roese <sr@denx.de>
6959
6960 commit 28745db969b72693754991c838f68a7fb4a8b1ab
6961 Author: Stefan Roese <sr@denx.de>
6962 Date:   Thu Jan 29 11:21:38 2009 +0100
6963
6964     jedec_flash: Only use manufacturer defines from common flash.h
6965
6966     This patch removes the double defined manufacturer defines from
6967     jedec_flash.c. Since the common defines in flash.h are 32bit
6968     we now need the (16) cast. This patch also removes the compilation
6969     warning (e.g. seen on hcu5):
6970
6971     ./MAKEALL hcu5
6972     Configuring for hcu5 board...
6973     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
6974
6975     Signed-off-by: Stefan Roese <sr@denx.de>
6976
6977 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
6978 Author: Stefan Roese <sr@denx.de>
6979 Date:   Thu Feb 5 11:25:57 2009 +0100
6980
6981     cfi_flash: Silence compilation warning
6982
6983     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
6984     introduced a small compilation warning. This patch fixes it.
6985
6986     Signed-off-by: Stefan Roese <sr@denx.de>
6987
6988 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
6989 Author: Becky Bruce <beckyb@kernel.crashing.org>
6990 Date:   Mon Feb 2 16:34:51 2009 -0600
6991
6992     flash/cfi_flash: Use virtual sector start address, not phys
6993
6994     include/flash.h was commented to say that the address in
6995     flash_info->start was a physical address.  However, from u-boot's
6996     point of view, and looking at most flash code, it makes more
6997     sense for this to be a virtual address.  So I corrected the
6998     comment to indicate that this was a virtual address.
6999
7000     The only flash driver that was actually treating the address
7001     as physical was the mtd/cfi_flash driver.  However, this code
7002     was using it inconsistently as it actually directly dereferenced
7003     the "start" element, while it used map_physmem to get a
7004     virtual address in other places.  I changed this driver so
7005     that the code which initializes the info->start field calls
7006     map_physmem to get a virtual address, eliminating the need for
7007     further map_physmem calls.  The code is now consistent.
7008
7009     The *only* place a physical address should be used is when defining the
7010     flash banks list that is used to initialize the flash_info struct,
7011     usually found in the board config file.
7012
7013     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7014     Signed-off-by: Stefan Roese <sr@denx.de>
7015
7016 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
7017 Author: Wolfgang Denk <wd@denx.de>
7018 Date:   Wed Feb 4 09:42:20 2009 +0100
7019
7020     Fix compiler warning
7021
7022     (shows up only when DEBUG is enabled)
7023
7024     Signed-off-by: Wolfgang Denk <wd@denx.de>
7025
7026 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
7027 Author: Mike Frysinger <vapier@gentoo.org>
7028 Date:   Mon Oct 6 03:45:55 2008 -0400
7029
7030     Blackfin: update anomaly lists
7031
7032     Update the anomaly lists to match latest anomaly sheets.
7033
7034     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7035
7036 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
7037 Author: Ralph Kondziella <rk@argos-messtechnik.de>
7038 Date:   Mon Jan 26 12:34:36 2009 -0700
7039
7040     ADS5121 Add PATA support
7041
7042     Original patch from Ralph Kondziella
7043     plus clean up by Wolfgang Denk
7044     plus changes by John Rigby
7045         use ips clock not lpc
7046         port forward to current u-boot release
7047
7048     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
7049     Signed-off-by: Wolfgang Denk <wd@denx.de>
7050     Signed-off-by: John Rigby <jrigby@freescale.com>
7051
7052 commit abfbd0ae4967df18102345db4f4b529a13da107b
7053 Author: Martha Marx <mmarx@silicontkx.com>
7054 Date:   Mon Jan 26 10:45:07 2009 -0700
7055
7056     ADS5121 Add IC Ident Module (IIM) support
7057
7058     IIM (IC Identification Module) is the fusebox for the mpc5121.
7059     Use #define CONFIG_IIM to turn on the clock for this module
7060     use #define CONFIG_CMD_FUSE to add fusebox commands.
7061     Fusebox commands include the ability to read
7062     the status, read the register cache, override the register cache,
7063     program the fuses and sense them.
7064
7065     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
7066     Signed-off-by: John Rigby <jrigby@freescale.com>
7067
7068 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
7069 Author: John Rigby <jrigby@freescale.com>
7070 Date:   Fri Jan 23 10:33:15 2009 -0700
7071
7072     ADS5121 Fix rev2 silicon pci iopad config
7073
7074     Reset config is not correct
7075
7076     Signed-off-by: John Rigby <jrigby@freescale.com>
7077
7078 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
7079 Author: John Rigby <jrigby@freescale.com>
7080 Date:   Wed Nov 19 13:57:34 2008 -0700
7081
7082     ADS5121 DIU Add diu_bmp_addr env
7083
7084     Add support for using a bmp other than
7085     FSL_Logo_BMP for the DIU splash screen.
7086
7087     Can now set the env var "diu_bmp_addr" to
7088     the address of a BMP in flash to use instead
7089     of the default FSL_Logo_BMP.
7090
7091     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
7092     Signed-off-by: John Rigby <jrigby@freescale.com>
7093
7094 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
7095 Author: John Rigby <jrigby@freescale.com>
7096 Date:   Thu Oct 30 16:39:35 2008 -0600
7097
7098     ADS5121 DIU Make inclusion of FSL logo optional
7099
7100     Make inclusion of FSL logo optional and
7101     turn it off by default.
7102
7103     Signed-off-by: John Rigby <jrigby@freescale.com>
7104
7105 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
7106 Author: Remy Bohmer <linux@bohmer.net>
7107 Date:   Sun Feb 1 12:27:53 2009 +0100
7108
7109     Compile warning fix in onenand_uboot.h
7110
7111     Regression since merge window after 2009.01
7112
7113     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7114
7115 commit a270d1e7295c3d829f42c0480117941dfc1c6477
7116 Author: Stefan Roese <sr@denx.de>
7117 Date:   Thu Jan 29 06:33:55 2009 +0100
7118
7119     USB: Add EHCI support for VCT EHCI controller (really with driver now)
7120
7121     Somehow I missed the real driver part in my last patch version. This patch
7122     now adds the driver.
7123
7124     Signed-off-by: Stefan Roese <sr@denx.de>
7125     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7126
7127 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
7128 Author: Cliff Cai <cliff.cai@analog.com>
7129 Date:   Sat Nov 29 18:22:38 2008 -0500
7130
7131     Blackfin: add driver for on-chip MMC/SD controller
7132
7133     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
7134
7135     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
7136     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7137
7138 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
7139 Author: Mike Frysinger <vapier@gentoo.org>
7140 Date:   Sat Oct 11 22:47:34 2008 -0400
7141
7142     Blackfin: add port muxing for BF51x SPI
7143
7144     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7145
7146 commit fc68f9f85959664d528daea2aef5ef54974331ce
7147 Author: Mike Frysinger <vapier@gentoo.org>
7148 Date:   Tue Jan 6 06:16:19 2009 -0500
7149
7150     Blackfin: output booting source when booting
7151
7152     Knowing the booting source of the part is useful, especially when the part
7153     can switch dynamically between sources.
7154
7155     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7156
7157 commit 8df3ce0f49c37947800ac7c84e751499882619fc
7158 Author: Mike Frysinger <vapier@gentoo.org>
7159 Date:   Thu Dec 11 06:30:46 2008 -0500
7160
7161     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
7162
7163     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
7164     the Blackfin on-chip bootrom to boot out of SPI flash.
7165
7166     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7167
7168 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
7169 Author: Mike Frysinger <vapier@gentoo.org>
7170 Date:   Thu Dec 11 04:06:26 2008 -0500
7171
7172     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
7173
7174     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7175
7176 commit e5eb93e77391bcc308697116c544ea1340aaae8a
7177 Author: Mike Frysinger <vapier@gentoo.org>
7178 Date:   Sat Dec 6 02:54:52 2008 -0500
7179
7180     Blackfin: add port I bits
7181
7182     Some people need to access port I, so make sure the pins are defined.
7183
7184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7185
7186 commit 8a6b272596d43de0db4943eac7af58c3534c4026
7187 Author: Sonic Zhang <Sonic.Zhang@analog.com>
7188 Date:   Wed Nov 26 22:16:45 2008 -0500
7189
7190     Blackfin: add driver for on-chip ATAPI controller
7191
7192     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
7193
7194     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
7195     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7196
7197 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
7198 Author: Mike Frysinger <vapier@gentoo.org>
7199 Date:   Wed Nov 26 21:43:06 2008 -0500
7200
7201     Blackfin: add driver for on-chip NAND controller
7202
7203     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
7204
7205     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7206
7207 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
7208 Author: Mike Frysinger <vapier@gentoo.org>
7209 Date:   Wed Nov 12 07:18:15 2008 -0500
7210
7211     Blackfin: build with -mno-fdpic
7212
7213     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
7214     up u-boot, including ones that output FDPIC ELF by default.
7215
7216     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7217
7218 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
7219 Author: Mike Frysinger <vapier@gentoo.org>
7220 Date:   Tue Nov 11 05:43:57 2008 -0500
7221
7222     Blackfin: fix up EBIU defines
7223
7224     The EBIU defines for EBSZ 256/512 were incorrect.
7225
7226     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7227
7228 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
7229 Author: Mike Frysinger <vapier@gentoo.org>
7230 Date:   Wed Nov 5 12:45:24 2008 -0500
7231
7232     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
7233
7234     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
7235     as usable with the source/destination addresses and the count size.
7236
7237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7238
7239 commit b93c68648426f906d63b98117496b6415f505f39
7240 Author: Mike Frysinger <vapier@gentoo.org>
7241 Date:   Wed Nov 5 08:50:23 2008 -0500
7242
7243     Blackfin: only flag L1 instruction for DMA memcpy
7244
7245     The performance difference from doing an 8 bit DMA memcpy vs an optimized
7246     core memcpy can be pretty big when you add in the overhead of setting up the
7247     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
7248     actually require it.
7249
7250     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7251
7252 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
7253 Author: Mike Frysinger <vapier@gentoo.org>
7254 Date:   Wed Nov 5 07:20:37 2008 -0500
7255
7256     Blackfin: dma_memcpy(): fix random failures
7257
7258     We have to make sure the DMA channel is actually disabled in hardware before
7259     attempting to reprogram it.  Otherwise the new settings are ignored and we
7260     end up with random hangs/failures.
7261
7262     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7263
7264 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
7265 Author: Mike Frysinger <vapier@gentoo.org>
7266 Date:   Tue Nov 4 00:04:03 2008 -0500
7267
7268     Blackfin: rewrite cache handling functions
7269
7270     Take the cache flush functions from the kernel as they use hardware loops in
7271     order to get optimal performance.
7272
7273     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7274
7275 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
7276 Author: Mike Frysinger <vapier@gentoo.org>
7277 Date:   Mon Nov 3 22:30:05 2008 -0500
7278
7279     Blackfin: setup bi_enetaddr for single nets
7280
7281     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
7282     based on $ethaddr, so set it up.
7283
7284     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7285
7286 commit 40599239e7875b39e2a5c12e6545992041c72c52
7287 Author: Mike Frysinger <vapier@gentoo.org>
7288 Date:   Fri Oct 24 22:48:47 2008 -0400
7289
7290     Blackfin: cache core/system clock values
7291
7292     Calculating the clocks requires a bit of calls to gcc math functions, so
7293     cache the values after the first run since they'll most likely never
7294     change once U-Boot is up and running.
7295
7296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7297
7298 commit 6957a6209b02f6b69607fc47425f13731cc477f1
7299 Author: Mike Frysinger <vapier@gentoo.org>
7300 Date:   Fri Oct 24 18:18:16 2008 -0400
7301
7302     Blackfin: enable --gc-sections
7303
7304     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
7305     and linking with --gc-sections.
7306
7307     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7308
7309 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
7310 Author: Mike Frysinger <vapier@gentoo.org>
7311 Date:   Mon Oct 20 21:08:54 2008 -0400
7312
7313     Blackfin: dont check baud if it wont actually get used
7314
7315     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7316
7317 commit 400f5778f375bc99c73c8488c555def261ccfab7
7318 Author: Mike Frysinger <vapier@gentoo.org>
7319 Date:   Tue Oct 14 07:54:09 2008 -0400
7320
7321     Blackfin: add driver for on-chip SPI controller
7322
7323     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
7324
7325     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7326
7327 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
7328 Author: Mike Frysinger <vapier@gentoo.org>
7329 Date:   Sat Oct 18 05:33:51 2008 -0400
7330
7331     Blackfin: only build post code when CONFIG_POST
7332
7333     Save some time by using CONFIG_POST in the Makefile rather than C files.
7334
7335     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7336
7337 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
7338 Author: Mike Frysinger <vapier@gentoo.org>
7339 Date:   Thu Jan 8 11:57:57 2009 -0500
7340
7341     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
7342
7343     Redo how pointers are managed to get rid of ugly casts and strict pointer
7344     aliasing issues that are highlighted by gcc 4.3.
7345
7346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7347     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7348
7349 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
7350 Author: Mike Frysinger <vapier@gentoo.org>
7351 Date:   Tue Dec 9 17:46:21 2008 -0500
7352
7353     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
7354
7355     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
7356     does exactly the same thing as common "CONFIG_RMII".
7357
7358     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7359     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7360
7361 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
7362 Author: Mike Frysinger <vapier@gentoo.org>
7363 Date:   Wed Nov 5 06:36:15 2008 -0500
7364
7365     Blackfin: bfin_mac: use common debug()
7366
7367     Rather then defining our own DEBUGF(), just use the common debug().
7368
7369     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7370     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7371
7372 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
7373 Author: Mike Frysinger <vapier@gentoo.org>
7374 Date:   Mon Oct 20 13:59:51 2008 -0400
7375
7376     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
7377
7378     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
7379     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
7380
7381     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7382     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7383
7384 commit ac45af4e63ea925f4accc98453aab1a1166c196d
7385 Author: Mike Frysinger <vapier@gentoo.org>
7386 Date:   Tue Oct 14 04:52:00 2008 -0400
7387
7388     Blackfin: bfin_mac: cleanup MII/PHY functions
7389
7390     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
7391     existing common linux/miiphy.h code and hook into the `mii` command.
7392
7393     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7394     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7395
7396 commit 6b310a05f0d10c751f22468040932139f71c71d3
7397 Author: Mike Frysinger <vapier@gentoo.org>
7398 Date:   Tue Oct 14 00:31:30 2008 -0400
7399
7400     Blackfin: bfin_mac: set MDCDIV based on SCLK
7401
7402     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
7403     use the real algorithm so it gets set correctly regardless of SCLK.
7404
7405     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7406     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7407
7408 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
7409 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7410 Date:   Sat Jan 31 09:10:48 2009 +0100
7411
7412     ixp: move serial to drivers/serial
7413
7414     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7415
7416 commit f90c8022f448bc5e93090e4b714368e52e912f0f
7417 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7418 Date:   Sat Jan 31 09:04:58 2009 +0100
7419
7420     ixp: move pci init in arm/board instead of cpu
7421
7422     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7423
7424 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
7425 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7426 Date:   Sat Jan 31 08:56:49 2009 +0100
7427
7428     ixp: move pci drivers to drivers/pci
7429
7430     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7431
7432 commit 012d5bab09a534e4800b02f50cf508e6837202ea
7433 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7434 Date:   Sat Jan 31 08:53:44 2009 +0100
7435
7436     ixp: Move conditional compilation to Makefile
7437
7438     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7439
7440 commit f693f501d67434df1f815fd1824a71973ae08207
7441 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7442 Date:   Sat Jan 31 08:53:44 2009 +0100
7443
7444     ixp: add missing os define
7445
7446     need by arm-elf toolchains and no impact on the arm-linux one
7447
7448     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7449
7450 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
7451 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7452 Date:   Sat Jan 31 09:53:39 2009 +0100
7453
7454     ixp: remove the option to include the Microcode
7455
7456     instead the board will have to load it from flash or ram
7457     which will be specified by npe_ucode env var
7458
7459     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7460
7461 commit 1b017baf2071d8daf643bce87250db898c606c66
7462 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7463 Date:   Fri Jan 30 09:45:23 2009 +0100
7464
7465     ixp/npe: Move conditional compilation to Makefile
7466
7467     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7468
7469 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
7470 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7471 Date:   Wed Jan 28 21:58:04 2009 +0100
7472
7473     SX1: add hardware V2 support
7474
7475     In the V2 the 2 flash has been replace by one 32MB flash
7476
7477     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7478
7479 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
7480 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7481 Date:   Wed Jan 28 21:58:03 2009 +0100
7482
7483     SX1: Fix second flash mapping
7484
7485     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7486
7487 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
7488 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7489 Date:   Wed Jan 28 21:58:03 2009 +0100
7490
7491     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
7492
7493     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7494
7495 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
7496 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7497 Date:   Wed Jan 28 21:57:59 2009 +0100
7498
7499     move Samsung's board to board/samsung
7500
7501     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7502
7503 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
7504 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7505 Date:   Thu Jan 29 12:07:21 2009 +0100
7506
7507     move ARM Ltd. to vendor dir
7508
7509     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7510
7511 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
7512 Author: Larry Johnson <lrj@acm.org>
7513 Date:   Wed Jan 28 15:30:37 2009 -0500
7514
7515     ppc4xx: Clean up configuration file for Korat board
7516
7517     This patch updates the default environmental variables for the
7518     Korat PPC 440EPx board, and makes additional minor fixes.
7519
7520     Signed-off-by: Larry Johnson <lrj@acm.org>
7521     Signed-off-by: Stefan Roese <sr@denx.de>
7522
7523 commit f20405e31680efc36293c59b4963db57c9d93df4
7524 Author: Larry Johnson <lrj@acm.org>
7525 Date:   Wed Jan 28 15:30:02 2009 -0500
7526
7527     ppc4xx: Add variable "korat_usbcf" for Korat board
7528
7529     The new environment variable "korat_usbcf" selects the USB
7530     port used by the Korat board's CompactFlash controller.
7531
7532     Signed-off-by: Larry Johnson <lrj@acm.org>
7533     Signed-off-by: Stefan Roese <sr@denx.de>
7534
7535 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
7536 Author: Gunnar Rangoy <gunnar@rangoy.com>
7537 Date:   Fri Jan 23 12:56:31 2009 +0100
7538
7539     AVR32: macb - Search for PHY id
7540
7541     This patch adds support for searching through available PHY-addresses in
7542     the macb-driver. This is needed for the ATEVK1100 evaluation board,
7543     where the PHY-address will be initialized to either 1 or 7.
7544
7545     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
7546     enabled tells the driver to search for the PHY address.
7547
7548     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
7549     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
7550     Signed-off-by: Olav Morken <olavmrk@gmail.com>
7551     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7552
7553 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
7554 Author: Olav Morken <olavmrk@gmail.com>
7555 Date:   Fri Jan 23 12:56:26 2009 +0100
7556
7557     Fix IP alignment problem
7558
7559     This patch removes volatile from:
7560     volatile IP_t *ip = (IP_t *)xip;
7561
7562     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
7563     using volatile, which causes an exception since xip isn't aligned on a word
7564     boundary.
7565
7566     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
7567     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
7568     Signed-off-by: Olav Morken <olavmrk@gmail.com>
7569     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7570
7571 commit 12a8b9db12f82a189ff143a58731007f5469da61
7572 Author: Ron Madrid <ron_madrid@sbcglobal.net>
7573 Date:   Wed Jan 28 16:17:21 2009 -0800
7574
7575     Marvell 88E1118 interrupt fix
7576
7577     This patch adjusts the LED control so that interrupt lines are not reading LEDs
7578     and effectively causing indefinite interrupts to the controller.
7579
7580     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
7581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7582
7583 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
7584 Author: Stefan Roese <sr@denx.de>
7585 Date:   Wed Jan 21 17:14:26 2009 +0100
7586
7587     net: smc911x.c: Add LAN9211 to chip_ids[] array
7588
7589     Signed-off-by: Stefan Roese <sr@denx.de>
7590     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7591
7592 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
7593 Author: Mike Frysinger <vapier@gentoo.org>
7594 Date:   Tue Jan 27 16:53:39 2009 -0500
7595
7596     Move is_valid_ether_addr() to include/net.h
7597
7598     Import the is_valid_ether_addr() function from the Linux kernel.
7599
7600     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7601     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7602
7603 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
7604 Author: Michal Simek <monstr@monstr.eu>
7605 Date:   Mon Jan 5 12:25:13 2009 +0100
7606
7607     net: Sort Makefile labels
7608
7609     Signed-off-by: Michal Simek <monstr@monstr.eu>
7610     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7611
7612 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
7613 Author: Wolfgang Denk <wd@denx.de>
7614 Date:   Wed Jan 28 23:06:42 2009 +0100
7615
7616     85xx: Fix compile breakage with sbc8540 and sbc8560
7617
7618     This fixes an error which raises just a warning:
7619     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
7620
7621     Signed-off-by: Wolfgang Denk <wd@denx.de>
7622
7623 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
7624 Author: Mike Frysinger <vapier@gentoo.org>
7625 Date:   Wed Jan 28 13:48:55 2009 -0500
7626
7627     SPD823TS: do not define CONFIG_CMD_ENV
7628
7629     Since the SPD823TS board does not actually have any writable flash to save
7630     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
7631     disabled.
7632
7633     This fixes the build error:
7634     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
7635     common/cmd_nvedit.c:557: undefined reference to `saveenv'
7636     make: *** [u-boot] Error 1
7637
7638     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7639
7640 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
7641 Author: Dirk Behme <dirk.behme@googlemail.com>
7642 Date:   Wed Jan 28 21:40:16 2009 +0100
7643
7644     OMAP3: Add Zoom1 board support
7645
7646     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
7647     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
7648
7649     Signed-off-by: Nishanth Menon <nm@ti.com>
7650     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
7651
7652 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
7653 Author: Dirk Behme <dirk.behme@googlemail.com>
7654 Date:   Wed Jan 28 21:39:58 2009 +0100
7655
7656     OMAP3: Add Pandora support
7657
7658     Add Pandora support.
7659
7660     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
7661     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7662     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
7663
7664 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
7665 Author: Dirk Behme <dirk.behme@googlemail.com>
7666 Date:   Wed Jan 28 21:39:58 2009 +0100
7667
7668     OMAP3: Add EVM board
7669
7670     Add EVM board support.
7671
7672     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
7673     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7674     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
7675
7676 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
7677 Author: Dirk Behme <dirk.behme@googlemail.com>
7678 Date:   Wed Jan 28 21:39:57 2009 +0100
7679
7680     OMAP3: Add Overo board
7681
7682     Add Overo board support.
7683
7684     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
7685     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7686     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
7687
7688 commit f904cdbb68167c647887f19929ad295dbaac8862
7689 Author: Dirk Behme <dirk.behme@googlemail.com>
7690 Date:   Tue Jan 27 18:19:12 2009 +0100
7691
7692     OMAP3: Add common power code, README, and BeagleBoard
7693
7694     Add BeagleBoard support, common power code and README.
7695
7696     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
7697     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
7698
7699 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
7700 Author: Kumar Gala <galak@kernel.crashing.org>
7701 Date:   Wed Jan 28 08:31:10 2009 -0600
7702
7703     85xx: Fix compile breakage with MPC8540EVAL
7704
7705     Configuring for MPC8540EVAL board...
7706     mpc8540eval.c: In function 'checkboard':
7707     mpc8540eval.c:53: error: invalid operands to binary /
7708     make[1]: *** [mpc8540eval.o] Error 1
7709
7710     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7711
7712 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
7713 Author: Bryan Wu <bryan.wu@analog.com>
7714 Date:   Sun Jan 18 23:04:27 2009 -0500
7715
7716     usb_scan_devices: fix output with no devices
7717
7718     We should check the return of usb_new_device() so that if no USB device is
7719     found, we print out the right message rather than always saying "new usb
7720     device found".
7721
7722     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
7723     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7724     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7725
7726 commit f1c1f540243438246aefb703fdcf16957e3a72e1
7727 Author: Stefan Roese <sr@denx.de>
7728 Date:   Thu Jan 22 10:11:21 2009 +0100
7729
7730     USB: Add high-speed (480Mb/s) to all USB related outputs
7731
7732     With this patch the USB related connection speed output ("usb tree" command and
7733     debug output) is now high-speed enabled.
7734
7735     This patch also fixes a compilation warning when debugging is enabled.
7736
7737     Signed-off-by: Stefan Roese <sr@denx.de>
7738     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7739
7740 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
7741 Author: Stefan Roese <sr@denx.de>
7742 Date:   Wed Jan 21 17:12:19 2009 +0100
7743
7744     USB: Add dcache support to the EHCI driver
7745
7746     This patch adds routines to handle (flush/invalidate) the dcache for the
7747     QH and qTD structures and data buffers. This is needed on platforms using
7748     this EHCI support with dcache enabled (like the MIPS VCT board port).
7749
7750     Signed-off-by: Stefan Roese <sr@denx.de>
7751     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7752
7753 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
7754 Author: Stefan Roese <sr@denx.de>
7755 Date:   Wed Jan 21 17:12:28 2009 +0100
7756
7757     USB: Add EHCI support for VCT EHCI controller
7758
7759     Signed-off-by: Stefan Roese <sr@denx.de>
7760     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7761
7762 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
7763 Author: Stefan Roese <sr@denx.de>
7764 Date:   Wed Jan 21 17:12:10 2009 +0100
7765
7766     USB: Add config option to call ehci_hcd_init() again after EHCI reset
7767
7768     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
7769     to call ehci_hcd_init() again after ehci_reset() is executed. This
7770     is needed for the upcoming VCT EHCI support which needs to re-init
7771     the hcd part again after the EHCI CMD_RESET is executed.
7772
7773     Signed-off-by: Stefan Roese <sr@denx.de>
7774     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7775
7776 commit 597eb28bd9691266b7b804364cda577cdb51d106
7777 Author: Stefan Roese <sr@denx.de>
7778 Date:   Wed Jan 21 17:12:01 2009 +0100
7779
7780     USB: Fix speed detection on EHCI cntr with root hub transaction translators
7781
7782     This patch fixes an issue that the speed of USB devices was not detected
7783     correctly on some EHCI controllers. This will be used on the upcoming VCT
7784     EHCI support.
7785
7786     Signed-off-by: Stefan Roese <sr@denx.de>
7787     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7788
7789 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
7790 Author: Thomas Abraham <t-abraham@ti.com>
7791 Date:   Sun Jan 4 09:41:20 2009 +0530
7792
7793     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
7794
7795     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
7796     configuration file.
7797
7798     Signed-off-by: Ravi Babu <ravibabu@ti.com>
7799     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
7800     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7801     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
7802     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7803
7804 commit 538ef967715322f64ee08efa2296d9682111b014
7805 Author: Thomas Abraham <t-abraham@ti.com>
7806 Date:   Sun Jan 4 09:41:16 2009 +0530
7807
7808     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
7809
7810     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
7811     controller hook up to USB core layer.
7812
7813     Signed-off-by: Ravi Babu <ravibabu@ti.com>
7814     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
7815     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7816     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
7817     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7818
7819 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
7820 Author: Thomas Abraham <t-abraham@ti.com>
7821 Date:   Sun Jan 4 09:41:13 2009 +0530
7822
7823     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
7824
7825     Adding DM6446 (TI DaVinci) platform specific USB functionality for
7826     USB Phy and VBUS initialization.
7827
7828     Signed-off-by: Ravi Babu <ravibabu@ti.com>
7829     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
7830     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7831     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
7832     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7833
7834 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
7835 Author: Thomas Abraham <t-abraham@ti.com>
7836 Date:   Sun Jan 4 09:41:09 2009 +0530
7837
7838     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
7839
7840     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
7841     platform.
7842
7843     Signed-off-by: Ravi Babu <ravibabu@ti.com>
7844     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
7845     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7846     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
7847     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7848
7849 commit a142896934c755e679ba87e227a8e449f39b0012
7850 Author: Thomas Abraham <t-abraham@ti.com>
7851 Date:   Sun Jan 4 09:41:03 2009 +0530
7852
7853     usb : musb : Adding host controller driver for Mentor USB controller
7854
7855     Adding Mentor USB core functionality and Mentor USB Host controller
7856     functionality for Mentor USB OTG controller (musbhdrc).
7857
7858     Signed-off-by: Ravi Babu <ravibabu@ti.com>
7859     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
7860     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7861     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
7862     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7863
7864 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
7865 Author: Mike Frysinger <vapier@gentoo.org>
7866 Date:   Thu Jan 1 18:27:27 2009 -0500
7867
7868     usb.h: use standard __LITTLE_ENDIAN from Linux headers
7869
7870     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
7871     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
7872     already setting up.
7873
7874     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7875     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7876
7877 commit 7b6e31eb17e3ff76238a60803fc531517d516223
7878 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7879 Date:   Wed Dec 31 10:33:56 2008 +0100
7880
7881     USB ehci ixp4xx support
7882
7883     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
7884
7885     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
7886     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7887
7888 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
7889 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7890 Date:   Wed Dec 31 10:33:22 2008 +0100
7891
7892     USB ehci remove infinite loop and use handshake function
7893
7894     USB ehci code cleanup. Use handshake instead of infinite while loop
7895     to check the STD_ASS status
7896
7897     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
7898     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7899
7900 commit 8fea2914ac974029b65926ef8247d908f84d202d
7901 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7902 Date:   Wed Dec 31 10:32:41 2008 +0100
7903
7904     Add initial support for USB ehci pci
7905
7906     Add USB ehci pci support. This patch doesn't include any
7907     pci_ids and it is not tested on real hardware.
7908
7909     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
7910     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7911
7912 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
7913 Author: Bryan Wu <Bryan.Wu@analog.com>
7914 Date:   Thu Jan 1 19:48:07 2009 -0500
7915
7916     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
7917
7918     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
7919     does not like to be reset, so check for it.
7920
7921     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
7922     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7923     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7924
7925 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
7926 Author: Thomas Abraham <t-abraham@ti.com>
7927 Date:   Sun Jan 4 12:15:35 2009 +0530
7928
7929     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
7930
7931     This patch populates the 'priv' field of the USB keyboard device_t
7932     structure. The 'priv' field is populated with the address of the
7933     'struct usb_device' structure that represents the USB device.
7934
7935     The 'priv' field can then be used in the 'usb_event_poll' function to
7936     determine the USB device that requires to be polled. An
7937     example of its usage in 'usb_event_poll' function is as below.
7938
7939         device_t *dev;
7940         struct usb_device *usb_kbd_dev;
7941
7942         <snip>
7943
7944         dev = device_get_by_name("usbkbd");
7945         usb_kbd_dev = (struct usb_device *)dev->priv;
7946         iface = &usb_kbd_dev->config.if_desc[0];
7947
7948     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
7949     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7950
7951 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
7952 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7953 Date:   Thu Dec 18 10:05:37 2008 +0100
7954
7955     USB change speed
7956
7957     USB changes the speed according to the port status
7958
7959     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
7960     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7961
7962 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
7963 Author: Remy Böhmer <linux@bohmer.net>
7964 Date:   Sat Dec 13 22:51:58 2008 +0100
7965
7966     EHCI fix code and ixp4xx test.
7967     USB ehci configuration parameter:
7968
7969     #define CONFIG_CMD_USB          1
7970     #define CONFIG_USB_STORAGE      1
7971     #define CONFIG_USB_EHCI
7972     #define CONFIG_USB_EHCI_IXP4XX      1
7973     #define CONFIG_EHCI_IS_TDI  1
7974     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
7975     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
7976     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
7977     #define CONFIG_LEGACY_USB_INIT_SEQ      1
7978
7979     2 USB Device(s) found
7980            scanning bus for storage devices... 0 Storage Device(s) found
7981     => usb tree
7982
7983     Device Tree:
7984       1  Hub (1.5MBit/s, 0mA)
7985       |  u-boot EHCI Host Controller
7986       |
7987       |+-2  Mass Storage (12MBit/s, 100mA)
7988            Sony Storage Media 0C07040930296
7989
7990     =>
7991
7992     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
7993     Signed-off-by: Remy Böhmer <linux@bohmer.net>
7994
7995 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
7996 Author: michael <michael@panicking.retis>
7997 Date:   Thu Dec 11 13:43:55 2008 +0100
7998
7999     [PATCH] This patch add varius fix to the ehci.
8000     - fix ehci_readl, ehci_writel
8001     - introduce new define in ehci.h
8002     - introduce the handshake function for waiting on a register
8003     - fix usb_ehci_fsl with the new HC_LENGTH macro
8004
8005     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8006     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8007
8008 commit db63299b1dd2894ade542278210bccd046de6435
8009 Author: michael <michael@panicking.retis>
8010 Date:   Wed Dec 10 17:55:19 2008 +0100
8011
8012     [PATCH] Fix EHCI usb. I start to test on a
8013     IXP465 board and I find some errors in the code. This
8014     patch fix:
8015     - descriptor initizialization (config, interface and endpoint
8016       must be one next-to the other when the USB_DT_CONFIG message
8017       is send.
8018     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
8019       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
8020     - Introduce the linux version of the usb_config_descriptor and
8021       usb_interface descriptor. This descriptor does't contains
8022       u-boot extension.
8023
8024     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8025     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8026
8027 commit 6b92487dcf9afe83a3570153d66940fdb293be76
8028 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8029 Date:   Fri Nov 28 13:22:09 2008 +0100
8030
8031     USB ehci freescale support
8032
8033     Add USB ehci freescale support
8034
8035     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8036     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8037
8038 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
8039 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8040 Date:   Fri Nov 28 13:20:46 2008 +0100
8041
8042     USB ehci core support
8043
8044     Add USB ehci core support
8045
8046     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8047     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8048
8049 commit 3e126484df7868e341545cce740b24b62b0cd3b7
8050 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8051 Date:   Fri Nov 28 13:19:19 2008 +0100
8052
8053     Prepare USB layer for ehci
8054
8055     Prepare USB layer for ehci support
8056
8057     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8058     Signed-off-by: Remy Böhmer <linux@bohmer.net>
8059
8060 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
8061 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
8062 Date:   Wed Dec 10 15:52:06 2008 +0100
8063
8064     USB storage cleanup patch
8065
8066     Cleanup usb storage
8067
8068     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
8069     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8070
8071 commit fe033ad6d0883063fe857237abb9436fab03208c
8072 Author: Mike Frysinger <vapier@gentoo.org>
8073 Date:   Sun Oct 12 06:02:55 2008 -0400
8074
8075     Blackfin: fixup misc warnings such as printf's and missing casts
8076
8077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8078
8079 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
8080 Author: Mike Frysinger <vapier@gentoo.org>
8081 Date:   Sun Oct 12 22:09:26 2008 -0400
8082
8083     Blackfin: convert old boards to use COBJS-y Makefile style
8084
8085     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8086
8087 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
8088 Author: Mike Frysinger <vapier@gentoo.org>
8089 Date:   Sat Oct 11 22:38:37 2008 -0400
8090
8091     Blackfin: bf533-stamp: rewrite resource swap logic
8092
8093     The old swap function tended to clobber unrelated pins and screw up masks.
8094     Rewrite the thing from scratch so it only uses the resources it needs.
8095
8096     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8097
8098 commit 29d4ea0a9073c82469184331010136f52edf8db6
8099 Author: Mike Frysinger <vapier@gentoo.org>
8100 Date:   Sat Oct 11 22:08:42 2008 -0400
8101
8102     Blackfin: bootldr: implement BF53x/BF56x LDR loader
8103
8104     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
8105     arbitrary memory locations, so implement a basic one in software.
8106
8107     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8108
8109 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
8110 Author: Mike Frysinger <vapier@gentoo.org>
8111 Date:   Sat Oct 11 22:05:42 2008 -0400
8112
8113     Blackfin: implement real write support for OTP
8114
8115     Now that real documentation has been released for the OTP interface and
8116     the on-chip ROM wrt writing/timings, implement support for reading/writing
8117     as well as dumping/locking.
8118
8119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8120
8121 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
8122 Author: Mike Frysinger <vapier@gentoo.org>
8123 Date:   Sat Oct 11 22:04:05 2008 -0400
8124
8125     Blackfin: update on-chip ROM API
8126
8127     This brings the API for the on-chip ROM in line with the toolchain and
8128     hardware documentation.
8129
8130     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8131
8132 commit 7633903bff432ec7b27905dce7396958553f2be6
8133 Author: Mike Frysinger <vapier@gentoo.org>
8134 Date:   Sat Oct 11 21:52:17 2008 -0400
8135
8136     Blackfin: allow serial console to be disabled
8137
8138     Some devices have no UART device pulled out, so allow people to disable the
8139     driver completely in favor of other methods (like JTAG-console).
8140
8141     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8142
8143 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
8144 Author: Mike Frysinger <vapier@gentoo.org>
8145 Date:   Sat Oct 11 21:51:20 2008 -0400
8146
8147     Blackfin: support console-over-JTAG
8148
8149     The Blackfin JTAG has the ability to pass data via a back-channel without
8150     halting the processor.  Utilize that channel to emulate a console.
8151
8152     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8153
8154 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
8155 Author: Mike Frysinger <vapier@gentoo.org>
8156 Date:   Sat Oct 11 21:49:06 2008 -0400
8157
8158     Blackfin: handle new anomalies with reset
8159
8160     Workaround fun new anomalies related to software reset of the processor.
8161
8162     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8163
8164 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
8165 Author: Mike Frysinger <vapier@gentoo.org>
8166 Date:   Sat Oct 11 21:44:00 2008 -0400
8167
8168     Blackfin: pass RETX to Linux
8169
8170     Make sure we save the value of RETX at power on and then pass it on to the
8171     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
8172
8173     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8174
8175 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
8176 Author: Mike Frysinger <vapier@gentoo.org>
8177 Date:   Sat Oct 11 21:40:26 2008 -0400
8178
8179     Blackfin: clarify relocation comment during init
8180
8181     People often ask questions about the init process and when things go
8182     from flash to relocated base, so clarify the comments a bit.
8183
8184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8185
8186 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
8187 Author: Mike Frysinger <vapier@gentoo.org>
8188 Date:   Sat Oct 11 21:23:41 2008 -0400
8189
8190     Blackfin: just set SP register directly during init
8191
8192     No need to set the SP register indirectly to the configured value when it
8193     can be set directly.
8194
8195     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8196
8197 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
8198 Author: Mike Frysinger <vapier@gentoo.org>
8199 Date:   Sat Oct 11 21:15:53 2008 -0400
8200
8201     Blackfin: add portmuxing for UARTs on the BF51x
8202
8203     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8204
8205 commit 4f6a313240c531042f16909a3a170ab047b95779
8206 Author: Mike Frysinger <vapier@gentoo.org>
8207 Date:   Sun Jun 1 01:26:29 2008 -0400
8208
8209     Blackfin: respect CONFIG_CLKIN_HALF
8210
8211     As pointed out by Ivan Koryakovskiy, the initialization code was not
8212     actually respecting the CONFIG_CLKIN_HALF option when configuring the
8213     PLL_CTL register.
8214
8215     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8216
8217 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
8218 Author: Mike Frysinger <vapier@gentoo.org>
8219 Date:   Sun Jun 1 01:21:34 2008 -0400
8220
8221     Blackfin: use common memcpy routine during init
8222
8223     Rather than using a local custom memcpy function, just call the existing
8224     optimized Blackfin version.
8225
8226     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8227
8228 commit 362c943347364e9373af4c5530778491ab56ec2e
8229 Author: Mike Frysinger <vapier@gentoo.org>
8230 Date:   Wed Apr 9 02:27:06 2008 -0400
8231
8232     Blackfin: set default boot SPI CS for BF538/BF539
8233
8234     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
8235     Blackfin parts.
8236
8237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8238
8239 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
8240 Author: Mike Frysinger <vapier@gentoo.org>
8241 Date:   Wed Apr 9 02:20:59 2008 -0400
8242
8243     Blackfin: punt unused BF533-STAMP definitions
8244
8245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8246
8247 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
8248 Author: Mike Frysinger <vapier@gentoo.org>
8249 Date:   Fri Apr 18 20:44:11 2008 -0400
8250
8251     Blackfin: resurrect BF533-STAMP video splash driver
8252
8253     This video driver used to live in the Blackfin cpu directory, but it was
8254     lost during the unification process.  This brings it back.
8255
8256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8257
8258 commit a750d038f2548d846ea1e046d873dc932d041319
8259 Author: Mike Frysinger <vapier@gentoo.org>
8260 Date:   Wed Apr 9 02:31:29 2008 -0400
8261
8262     Blackfin: tighten up post memory coding style
8263
8264     No functional changes here; just cleanup code style a bit.
8265
8266     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8267
8268 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
8269 Author: Mike Frysinger <vapier@gentoo.org>
8270 Date:   Wed Apr 9 02:29:18 2008 -0400
8271
8272     Blackfin: bf537-stamp nand: fix more style errors in previous commit
8273
8274     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8275
8276 commit 41f3325ae9add641036d7cb362e884b698e53f07
8277 Author: Mike Frysinger <vapier@gentoo.org>
8278 Date:   Sat Oct 11 20:31:17 2008 -0400
8279
8280     Blackfin: drop dead/wrong debug code in initdram()
8281
8282     The DEBUG code in initdram() is quite old and was never really useful, so
8283     just drop it altogether.  Common Blackfin debug code does a better job.
8284
8285     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8286
8287 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
8288 Author: Mike Frysinger <vapier@gentoo.org>
8289 Date:   Sat Oct 11 20:30:28 2008 -0400
8290
8291     Blackfin: bf533-ezkit: shuffle flash defines a little
8292
8293     Some of the flash defines weren't in the correct location and caused build
8294     problems in some configurations, so let's move types and defines to better
8295     local locations.
8296
8297     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8298
8299 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
8300 Author: Mike Frysinger <vapier@gentoo.org>
8301 Date:   Mon Oct 6 04:16:47 2008 -0400
8302
8303     Blackfin: overhaul i2c driver
8304
8305     The current Blackfin i2c driver does not work properly with certain devices
8306     due to it breaking up transfers incorrectly.  This is a rewrite of the
8307     driver and relocates it to the newer place in the source tree.
8308
8309     Also remove duplicated I2C speed defines in Blackfin board configs and
8310     disable I2C slave address usage since it isn't implemented.
8311
8312     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8313
8314 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
8315 Author: Mike Frysinger <vapier@gentoo.org>
8316 Date:   Mon Oct 6 04:00:07 2008 -0400
8317
8318     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
8319
8320     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
8321     128kB when setting up the default flash protection region for U-Boot
8322     itself.
8323
8324     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8325
8326 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
8327 Author: Mike Frysinger <vapier@gentoo.org>
8328 Date:   Mon Oct 6 03:57:39 2008 -0400
8329
8330     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
8331
8332     When setting up the global data, rather than relying on sizeof(), use the
8333     common CONFIG_SYS_GBL_DATA_SIZE define.
8334
8335     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8336
8337 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
8338 Author: Mike Frysinger <vapier@gentoo.org>
8339 Date:   Mon Oct 6 03:52:24 2008 -0400
8340
8341     Blackfin: implement general support for CONFIG_STATUS_LED
8342
8343     Here are the Blackfin-specific and board-independent pieces for status leds.
8344
8345     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8346
8347 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
8348 Author: Mike Frysinger <vapier@gentoo.org>
8349 Date:   Mon Oct 6 03:49:32 2008 -0400
8350
8351     Blackfin: do not init i2c in Blackfin board init
8352
8353     The common code takes care of calling i2c_init() when needed, so no point
8354     in us doing it as well.
8355
8356     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8357
8358 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
8359 Author: Mike Frysinger <vapier@gentoo.org>
8360 Date:   Mon Oct 6 03:42:20 2008 -0400
8361
8362     Blackfin: bfin_mac: update port muxing
8363
8364     Adds support more Blackfin parts and fixes broken muxing for older ones.
8365
8366     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8367
8368 commit 05b75e48832fc4afeecf8e76d704349557dffa35
8369 Author: Mike Frysinger <vapier@gentoo.org>
8370 Date:   Mon Oct 6 03:35:44 2008 -0400
8371
8372     Blackfin: fix dcache handling when doing dma memcpy's
8373
8374     Our dcache invalidate function doesn't just invalidate, it also flushes.
8375     So rename the function accordingly and fix the dma_memcpy() function so it
8376     doesn't inadvertently corrupt the data destination.
8377
8378     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8379
8380 commit 68e5632494168095d75f120af70043b68afd2476
8381 Author: Mike Frysinger <vapier@gentoo.org>
8382 Date:   Thu Aug 7 18:56:56 2008 -0400
8383
8384     Blackfin: dont generate ldrs with --force
8385
8386     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8387
8388 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
8389 Author: Mike Frysinger <vapier@gentoo.org>
8390 Date:   Thu Aug 7 18:55:30 2008 -0400
8391
8392     Blackfin: pass --bmode/--initcode when creating ldr
8393
8394     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8395
8396 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
8397 Author: Mike Frysinger <vapier@gentoo.org>
8398 Date:   Thu Aug 7 18:39:27 2008 -0400
8399
8400     Blackfin: minimize time cache is turned off when replacing cplb entries
8401
8402     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8403
8404 commit 21d631360430cf0ae9099612273cd4de28911ba9
8405 Author: Mike Frysinger <vapier@gentoo.org>
8406 Date:   Thu Aug 7 15:31:13 2008 -0400
8407
8408     Blackfin: split cache handling out of dma_memcpy()
8409
8410     Creating a new dma_memcpy() function that skips all cache checks allows us
8411     to use the function in very early init where the cache is not yet setup.
8412
8413     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8414
8415 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
8416 Author: Mike Frysinger <vapier@gentoo.org>
8417 Date:   Thu Aug 7 15:30:49 2008 -0400
8418
8419     Blackfin: abort dma_memcpy() for L1 scratchpad
8420
8421     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8422
8423 commit 81b799add709177e838466461f7b9989488b0fd5
8424 Author: Mike Frysinger <vapier@gentoo.org>
8425 Date:   Thu Aug 7 15:27:52 2008 -0400
8426
8427     Blackfin: rename bootm.c to boot.c
8428
8429     The boot file contains functions for more than just "bootm", so rename it
8430     accordingly.
8431
8432     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8433
8434 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
8435 Author: Mike Frysinger <vapier@gentoo.org>
8436 Date:   Thu Aug 7 13:22:37 2008 -0400
8437
8438     Blackfin: set more sane default board config values
8439
8440     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8441
8442 commit 36cd52a00794fb15ffab05d640acca92d7482993
8443 Author: Mike Frysinger <vapier@gentoo.org>
8444 Date:   Thu Aug 7 15:24:59 2008 -0400
8445
8446     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
8447
8448     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8449
8450 commit c8054bc12e00669bd7588f2b30fef48aa94babac
8451 Author: Mike Frysinger <vapier@gentoo.org>
8452 Date:   Thu Aug 7 13:21:27 2008 -0400
8453
8454     Blackfin: add bit defines for DDR parts
8455
8456     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8457
8458 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
8459 Author: Mike Frysinger <vapier@gentoo.org>
8460 Date:   Thu Aug 7 13:21:11 2008 -0400
8461
8462     Blackfin: add defines to describe active bootrom behavior
8463
8464     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8465
8466 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
8467 Author: Kim Phillips <kim.phillips@freescale.com>
8468 Date:   Tue Jan 27 16:03:53 2009 -0600
8469
8470     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
8471
8472     extend commit c70564e6b1bd08f3230182392238907f3531a87e
8473     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
8474     to the simpc8313 build and fix this:
8475
8476     ...Large Page NAND...Configuring for SIMPC8313 board...
8477     nand_boot_fsl_elbc.o: In function `nand_boot':
8478     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
8479     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
8480     make: *** [nand_spl] Error 2
8481
8482     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8483
8484 commit 54a7cc4912feefa45be961cc47cc159563725d2f
8485 Author: Wolfgang Denk <wd@denx.de>
8486 Date:   Wed Jan 28 09:25:31 2009 +0100
8487
8488     mpc8536ds.c: include sata.h to for needed function prototypes
8489
8490     Signed-off-by: Wolfgang Denk <wd@denx.de>
8491
8492 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
8493 Author: Peter Tyser <ptyser@xes-inc.com>
8494 Date:   Tue Jan 27 18:03:12 2009 -0600
8495
8496     Command usage cleanup
8497
8498     Remove command name from all command "usage" fields and update
8499     common/command.c to display "name - usage" instead of
8500     just "usage". Also remove newlines from command usage fields.
8501
8502     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8503
8504 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
8505 Author: Peter Tyser <ptyser@xes-inc.com>
8506 Date:   Tue Jan 27 18:03:11 2009 -0600
8507
8508     amcc: Clean up command usage output
8509
8510     Update taihu and taishan commands to use cmd_usage() function
8511     to display usage messages.
8512
8513     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8514
8515 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
8516 Author: Peter Tyser <ptyser@xes-inc.com>
8517 Date:   Tue Jan 27 18:03:10 2009 -0600
8518
8519     Standardize command usage messages with cmd_usage()
8520
8521     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8522
8523 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
8524 Author: Peter Tyser <ptyser@xes-inc.com>
8525 Date:   Tue Jan 27 18:03:09 2009 -0600
8526
8527     pcs440ep: Clean up led command definition
8528
8529     The pcs440ep's led command usage formatting is non-standard.  It
8530     was made standard in preparation for larger command usage updates.
8531
8532     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8533
8534 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
8535 Author: Peter Tyser <ptyser@xes-inc.com>
8536 Date:   Tue Jan 27 18:03:08 2009 -0600
8537
8538     Clean up diufb command definitions
8539
8540     The diufb command usage formatting is non-standard.  It was
8541     made standard in preparation for larger command usage updates.
8542
8543     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8544
8545 commit 6450a8485836fc80615ae6de6a864c33369b44f5
8546 Author: Wolfgang Denk <wd@denx.de>
8547 Date:   Wed Jan 28 00:29:26 2009 +0100
8548
8549     Update CHANGELOG, tiny coding style cleanup.
8550
8551     Signed-off-by: Wolfgang Denk <wd@denx.de>
8552
8553 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
8554 Author: Mike Frysinger <vapier@gentoo.org>
8555 Date:   Tue Jan 27 16:12:21 2009 -0500
8556
8557     SATA: do not auto-initialize during boot
8558
8559     Rather than have the board code initialize SATA automatically during boot,
8560     make the user manually run "sata init".  This brings the SATA subsystem in
8561     line with common U-Boot policy.
8562
8563     Rather than having a dedicated weak function "is_sata_supported", people
8564     can override sata_initialize() to do their weird board stuff.  Then they
8565     can call the actual __sata_initialize().
8566
8567     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8568
8569 commit 50970839712dda35399e2fa83fe818df9354d618
8570 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8571 Date:   Mon Jan 26 08:45:14 2009 -0500
8572
8573     part_efi: Fix partition size calculation due to inclusive ending LBA.
8574
8575     The ending LBA is inclusive. Hence, the partition size should be
8576     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
8577
8578     This is confirmed against the results from the parted tool.
8579     (e.g. use parted /dev/sda -s unit S print) and observe the size.
8580
8581     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8582
8583 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
8584 Author: Tomasz Figa <tomasz.figa@gmail.com>
8585 Date:   Tue Dec 30 18:35:57 2008 +0100
8586
8587     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
8588
8589     This patch fixes a bug (?) introduced after inclusion of the new
8590     JFFS2 code.
8591
8592     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
8593     fill in part->sector_size (keeping it as 0), but a correct value is
8594     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
8595     to be in the same place of the memory, what obviously means
8596     impossibility to use the JFFS2 partition.
8597
8598     This problem is fixed in this patch by including sector size
8599     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
8600
8601     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
8602
8603 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
8604 Author: Mike Frysinger <vapier@gentoo.org>
8605 Date:   Tue Dec 30 02:59:25 2008 -0500
8606
8607     saveenv: standardize enablement
8608
8609     Rather than special casing each environment type for enabling the saveenv
8610     command, have them all behave the same.  This avoids bitrot as new env
8611     sources are added/removed.
8612
8613     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8614
8615 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
8616 Author: Andrew Dyer <adyer@righthandtech.com>
8617 Date:   Mon Dec 29 17:36:01 2008 -0600
8618
8619     soft_i2c.c add option for repeated start in i2c_read()
8620
8621     This patch adds a #define to optionally change the behaviour of
8622     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
8623     stop-start between sending the device address pointer write and
8624     reading back the data.  The current behaviour is retained as the
8625     default.
8626
8627     While most devices will work either way, I have a smart battery(*)
8628     that requires repeated start, and someone at some point found a
8629     device that required a stop-start.
8630
8631     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
8632
8633     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
8634
8635 commit 3429071700963ca2f944c51d695a7481af0cee33
8636 Author: Wolfgang Denk <wd@denx.de>
8637 Date:   Tue Jan 27 22:07:14 2009 +0100
8638
8639     {delta,zylonite}/lowlevel_init.S: fix typo
8640
8641     Commit 9d803d8c mistakenly changed some constants
8642     from 0x300 into 300 - this patch fixes it.
8643
8644     Pointed out by Tom Evans <tom@ceos.com.au>, see
8645     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
8646     details.
8647
8648     Signed-off-by: Wolfgang Denk <wd@denx.de>
8649
8650 commit 1bc434373013af241835c14011ac3f291dccbf53
8651 Author: Stefan Althoefer <stefan.althoefer@web.de>
8652 Date:   Sat Dec 20 19:40:41 2008 +0100
8653
8654     drivers/net/e1000.c: missing terminator for supported devices
8655
8656     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
8657
8658 commit 65f7d41031a70b1649b35020995c505edca91533
8659 Author: Wolfgang Denk <wd@denx.de>
8660 Date:   Tue Jan 27 21:36:28 2009 +0100
8661
8662     fat.c: fix warning: array subscript is above array bounds
8663
8664     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
8665
8666     Signed-off-by: Wolfgang Denk <wd@denx.de>
8667
8668 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
8669 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8670 Date:   Fri Jan 2 15:11:41 2009 +0100
8671
8672     Fix gunzip in case of insufficient output buffer
8673
8674     U-Boot's gunzip() function does not handle the return code
8675     of zlib's inflate() function correctly. gunzip() is implemented
8676     to uncompress all input data in one run. So the correct return
8677     code for the good case is Z_STREAM_END. In case of insufficient
8678     output buffer memory inflate returns Z_OK. For gunzip() this
8679     is an error.
8680
8681     It also makes sense to me to call inflateEnd() also in case
8682     of an error.
8683
8684     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8685
8686 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
8687 Author: Stefan Roese <sr@denx.de>
8688 Date:   Wed Jan 21 17:25:01 2009 +0100
8689
8690     MIPS: Add VCT board series support (Part 3/3)
8691
8692     Signed-off-by: Stefan Roese <sr@denx.de>
8693
8694 commit ae691e5719c48f1d2826cb72722497d1d162765b
8695 Author: Stefan Roese <sr@denx.de>
8696 Date:   Wed Jan 21 17:24:49 2009 +0100
8697
8698     MIPS: Add VCT board series support (Part 2/3)
8699
8700     Signed-off-by: Stefan Roese <sr@denx.de>
8701
8702 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
8703 Author: Stefan Roese <sr@denx.de>
8704 Date:   Wed Jan 21 17:24:39 2009 +0100
8705
8706     MIPS: Add VCT board series support (Part 1/3)
8707
8708     Signed-off-by: Stefan Roese <sr@denx.de>
8709
8710 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
8711 Author: Stefan Roese <sr@denx.de>
8712 Date:   Wed Jan 21 17:20:20 2009 +0100
8713
8714     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
8715
8716     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
8717     Those functions are needed for the upcoming dcache support for the USB
8718     EHCI driver. I chose this API because those cache handling functions are
8719     already present in the PPC architecture.
8720
8721     Signed-off-by: Stefan Roese <sr@denx.de>
8722     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8723
8724 commit de832a99414ff06a4b2cdc9f5280b387da039834
8725 Author: Stefan Roese <sr@denx.de>
8726 Date:   Mon Jan 26 10:05:20 2009 +0100
8727
8728     nand_spl: Fix compile problem with board_nand_init() prototype
8729
8730     This patch removes the now obsolete and additionally wrongly defined
8731     board_nand_init() prototype from nand_spl/nand_boot.c.
8732
8733     Signed-off-by: Stefan Roese <sr@denx.de>
8734     Signed-off-by: Scott Wood <scottwood@freescale.com>
8735
8736 commit e8eac437189430d8e04a5d254ed92c58bc534a79
8737 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8738 Date:   Wed Jan 14 08:44:26 2009 -0500
8739
8740     CFI: Add geometry reversal for STMicro M29W320ET
8741
8742     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
8743
8744     Modeled after flash_fixup_amd, this patch handles the geometry reversal
8745     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
8746     Since I cannot test all STM's chips, the detection is implemented as
8747     narrow as possible for now.
8748
8749     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8750     Signed-off-by: Stefan Roese <sr@denx.de>
8751
8752 commit 0f8e851e897b535959a0781171910cd97f33c30c
8753 Author: Jens Gehrlein <sew_s@tqs.de>
8754 Date:   Tue Dec 16 17:25:55 2008 +0100
8755
8756     CFI: increase performance of function find_sector()
8757
8758     Tested on TQM5200S-BD with Samsung K8P2815UQB
8759
8760     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
8761     Signed-off-by: Stefan Roese <sr@denx.de>
8762
8763 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
8764 Author: Jens Gehrlein <sew_s@tqs.de>
8765 Date:   Tue Dec 16 17:25:54 2008 +0100
8766
8767     CFI: avoid redundant function call in single word programming mode
8768
8769     The function find_sector() doesn't need to be called twice in
8770     the case of AMD command set.
8771     Tested on TQM5200S-BD with Samsung K8P2815UQB.
8772
8773     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
8774     Signed-off-by: Stefan Roese <sr@denx.de>
8775
8776 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
8777 Author: Stefan Roese <sr@denx.de>
8778 Date:   Mon Jan 26 10:15:23 2009 +0100
8779
8780     ppc4xx: Remove compilation warning in gdppc440etc.c
8781
8782     Signed-off-by: Stefan Roese <sr@denx.de>
8783
8784 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
8785 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8786 Date:   Fri Jan 2 12:19:47 2009 +0100
8787
8788     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
8789
8790     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
8791     Either they define or undef it. Because it's not used in any source
8792     files this patch removes any references to it.
8793
8794     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8795     Signed-off-by: Stefan Roese <sr@denx.de>
8796
8797 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
8798 Author: Dirk Eibach <eibach@gdsys.de>
8799 Date:   Tue Dec 9 13:12:40 2008 +0100
8800
8801     ppc4xx: Add GDsys PowerPC 440 ETX board support.
8802
8803     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
8804     Based on the AMCC Yosemite board support by Stefan Roese.
8805
8806     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
8807     Signed-off-by: Stefan Roese <sr@denx.de>
8808
8809 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
8810 Author: Dirk Eibach <eibach@gdsys.de>
8811 Date:   Tue Dec 9 11:00:07 2008 +0100
8812
8813     ppc4xx: Improve DDR autodetect
8814
8815     Added support for a second memory bank to DDR autodetection for 440
8816     platforms.
8817     Made hardcoded values configurable.
8818
8819     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
8820     Signed-off-by: Stefan Roese <sr@denx.de>
8821
8822 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
8823 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8824 Date:   Fri Nov 21 12:06:26 2008 +0900
8825
8826     sh: sh7763rdp: Update sh7763rdp config
8827
8828     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
8829
8830     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8831     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8832
8833 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
8834 Author: Gary Jennejohn <garyj@denx.de>
8835 Date:   Thu Nov 20 12:28:38 2008 +0100
8836
8837     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
8838
8839     This change is needed for mgcoge because it uses two ethernet drivers.
8840
8841     Add a check for the presence of the PIGGY board on mgcoge.  Without this
8842     board networking cannot work and the initialization must be aborted.
8843
8844     Only allocate rtx once to prevent DPRAM exhaustion.
8845
8846     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
8847     soon) in eth.c.
8848
8849     Signed-off-by: Gary Jennejohn <garyj@denx.de>
8850     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8851
8852 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
8853 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8854 Date:   Fri Nov 21 12:04:18 2008 +0900
8855
8856     sh: sh_eth: Change new network API
8857
8858     sh_eth used old network API. This patch changed new API.
8859
8860     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8861     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8862
8863 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
8864 Author: Stefan Roese <sr@denx.de>
8865 Date:   Wed Nov 12 13:31:02 2008 +0100
8866
8867     net: smc911x: Make register read/write functions weak
8868
8869     This patch changes the reg_read/_write to smc911x_reg_read/_write
8870     and defines then as weak so that they can be overridden by board
8871     specific version.
8872
8873     This will be used by the upcoming VCTH board support.
8874
8875     Signed-off-by: Stefan Roese <sr@denx.de>
8876     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8877
8878 commit 8b69b563039989885969d24465c56f8ac4c07c4c
8879 Author: Heiko Schocher <hs@denx.de>
8880 Date:   Thu Nov 20 09:57:14 2008 +0100
8881
8882     powerpc: net: support for the SMSC LAN8700 PHY
8883
8884     Signed-off-by: Heiko Schocher <hs@denx.de>
8885     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8886
8887 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
8888 Author: Alessandro Rubini <rubini@unipv.it>
8889 Date:   Sat Jan 24 18:10:37 2009 +0100
8890
8891     Initial support for Nomadik 8815 development board
8892
8893     The NMDK8815 board is distributed by ST Microelectornics.
8894     Other (proprietary) code must be run to unlock the CPU before
8895     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
8896
8897     This is the initial port, with basic infrastructure and
8898     a working serial port.
8899
8900     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8901     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
8902     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8903
8904 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
8905 Author: Dirk Behme <dirk.behme@googlemail.com>
8906 Date:   Sun Dec 14 09:47:18 2008 +0100
8907
8908     OMAP3: Add I2C support
8909
8910     Add I2C support.
8911
8912     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8913
8914 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
8915 Author: Dirk Behme <dirk.behme@googlemail.com>
8916 Date:   Sun Dec 14 09:47:17 2008 +0100
8917
8918     OMAP3: Add MMC support
8919
8920     Add MMC support.
8921
8922     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8923
8924 commit 12201a13547ec22ddcdae278e74465e54a3be60c
8925 Author: Dirk Behme <dirk.behme@googlemail.com>
8926 Date:   Sun Dec 14 09:47:16 2008 +0100
8927
8928     OMAP3: Add NAND support
8929
8930     Add NAND support.
8931
8932     Signed-off-by: Nishanth Menon <nm@ti.com>
8933     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
8934     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8935
8936 commit 91eee546737ae21d930af479530997174c342b13
8937 Author: Dirk Behme <dirk.behme@googlemail.com>
8938 Date:   Sun Dec 14 09:47:15 2008 +0100
8939
8940     OMAP3: Add common board, interrupt and system info
8941
8942     Add common board, interrupt and system info code.
8943
8944     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8945
8946 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
8947 Author: Dirk Behme <dirk.behme@googlemail.com>
8948 Date:   Sun Dec 14 09:47:14 2008 +0100
8949
8950     OMAP3: Add common clock, memory and low level code
8951
8952     Add common clock, memory and low level code
8953
8954     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8955
8956 commit 0b02b184003e6a5023e05d5f31de54db279b1431
8957 Author: Dirk Behme <dirk.behme@googlemail.com>
8958 Date:   Sun Dec 14 09:47:13 2008 +0100
8959
8960     OMAP3: Add common cpu and start code
8961
8962     Add common cpu and start code.
8963
8964     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8965
8966 commit a8b6450546cd507d331b8fde384791d84bde5651
8967 Author: Dirk Behme <dirk.behme@googlemail.com>
8968 Date:   Sun Dec 14 09:47:12 2008 +0100
8969
8970     OMAP3: Add OMAP3, memory and function prototype headers
8971
8972     Add OMAP3, memory and function prototype header files for OMAP3.
8973
8974     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8975
8976 commit 2c803210a464abbac35752ca1c737514360b4c32
8977 Author: Dirk Behme <dirk.behme@googlemail.com>
8978 Date:   Sun Dec 14 09:47:11 2008 +0100
8979
8980     OMAP3: Add pin mux, clock and cpu headers
8981
8982     Add pin mux, clock and cpu header files for OMAP3.
8983
8984     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8985
8986 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
8987 Author: Maxim Artamonov <scn1874@yandex.ru>
8988 Date:   Wed Dec 3 05:38:17 2008 +0300
8989
8990     bugfix for i.mx31 CCM_UPCTL reg
8991
8992     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
8993
8994 commit 24113a44ed5cd3257a0237c3961e121812fca6db
8995 Author: Mike Frysinger <vapier@gentoo.org>
8996 Date:   Tue Dec 30 03:15:38 2008 -0500
8997
8998     easylogo: add optional gzip support
8999
9000     Some images can be quite large, so add an option to compress the
9001     image data with gzip in the U-Boot image. Then at runtime, the
9002     board can decompress it with the normal zlib functions.
9003
9004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9005
9006 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
9007 Author: Bryan Wu <bryan.wu@analog.com>
9008 Date:   Fri Jan 2 20:47:45 2009 -0500
9009
9010     fat: fix unaligned errors
9011
9012     A couple of buffers in the fat code are declared as an array of bytes.
9013     But it is then cast up to a structure with 16bit and 32bit members.
9014     Since GCC assumes structure alignment here, we have to force the
9015     buffers to be aligned according to the structure usage.
9016
9017     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
9018     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9019
9020 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
9021 Author: Brad Bozarth <bflinux@yumbrad.com>
9022 Date:   Thu Jan 1 22:45:47 2009 -0500
9023
9024     spi flash: fix crash due to spi flash miscommunication
9025
9026     Higher spi flash layers expect to be given back a pointer that was
9027     malloced so that it can free the result, but the lower layers return
9028     a pointer that is in the middle of the malloced memory. Reorder the
9029     members of the lower spi structures so that things work out.
9030
9031     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
9032     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9033     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9034
9035 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
9036 Author: Yuri Tikhonov <yur@emcraft.com>
9037 Date:   Sat Dec 20 14:54:21 2008 +0300
9038
9039     FPU POST: fix warnings when building with 2.18 binutils
9040
9041     When compile u-boot with the 2.18 binutils the following
9042     warning messages for each object file in post/lib_ppc/fpu/ is
9043     produced at the linking stage:
9044
9045     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
9046     ...
9047
9048     This is because of the fact that, in general, the soft-float and
9049     hard-float ABIs are incompatible; the 2.18 binutils do checking
9050     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
9051     produce the worning like above if these are not compatible.
9052
9053     The incompatibility of ABIs is concerned only the float values:
9054     e.g. the soft-float ABI assumes the float argument passing in the
9055     pair of rX registers, and the hard-float ABI assumes passing of
9056     the float argument in the fX register. When we don't pass the float
9057     arguments between the functions compiled with different floatness,
9058     then such an application will work correctly.
9059     This is the case for the FPU POST: u-boot (compiled with soft-float)
9060     doesn't pass to (and doesn't get from) the FPU POST functions any
9061     floats; there are no functions exported from the post/lib_ppc/fpu/
9062     objects which would work with float parameters/returns too. So, we
9063     can reassure the linker not to worry about the difference in ABI
9064     attributes of linking files just by setting the 'soft-float'
9065     attribute for the objects in post/lib_ppc/fpu. And this patch does
9066     this.
9067
9068     Also, to avoid passing both soft- and hard-float options in CFLAGS
9069     when compiling the files from post/lib_ppc/fpu (which is OK, but
9070     looks rather dirty) this patch removes the soft-float string from
9071     CFLAGS in post/lib_ppc/fpu/Makefile.
9072
9073     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
9074
9075 commit a7c9310457e85b4598abe5b304108edf11332e2f
9076 Author: Peter Tyser <ptyser@xes-inc.com>
9077 Date:   Wed Dec 17 16:36:22 2008 -0600
9078
9079     Add support for Maxim's DS4510 I2C device
9080
9081     Initial support for the DS4510, a CPU supervisor with
9082     integrated EEPROM, SRAM, and 4 programmable non-volatile
9083     GPIO pins. The CONFIG_DS4510 define enables support
9084     for the device while the CONFIG_CMD_DS4510 define
9085     enables the ds4510 command. The additional
9086     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
9087     CONFIG_DS4510_RST defines add additional sub-commands
9088     to the ds4510 command when defined.
9089
9090     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9091
9092 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
9093 Author: Dirk Eibach <eibach@gdsys.de>
9094 Date:   Tue Dec 16 14:51:56 2008 +0100
9095
9096     common: Iteration limit for memory test.
9097
9098     The iteration limit is passed to mtest as a fourth parameter:
9099     [start [end [pattern [iterations]]]]
9100     If no fourth parameter is supplied, there is no iteration limit and the
9101     test will loop forever.
9102
9103     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9104
9105 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
9106 Author: Stefan Roese <sr@denx.de>
9107 Date:   Mon Dec 15 15:40:12 2008 +0100
9108
9109     serial: Rename driver vcth to vct to support other board variants
9110
9111     Moved driver vcth.c to vct.c to better reflect the VCT board series.
9112     This driver is now used by the VCT platforms:
9113
9114     vct_premium
9115     vct_platinum
9116     vct_platinumsvc
9117
9118     Signed-off-by: Stefan Roese <sr@denx.de>
9119
9120 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
9121 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9122 Date:   Fri Dec 12 00:45:27 2008 +0900
9123
9124     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
9125
9126     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9127
9128 commit c3284b030b1cd492b4f46c576aea01bef258599d
9129 Author: Peter Korsgaard <jacmet@sunsite.dk>
9130 Date:   Wed Dec 10 16:24:16 2008 +0100
9131
9132     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
9133
9134     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
9135     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
9136     !CONFIG_AUTOBOOT_KEYED case.
9137
9138     Do this by reversing the loop so we do at least one iteration before
9139     checking for timeout.
9140
9141     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9142
9143 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
9144 Author: Niklaus Giger <niklaus.giger@netstal.com>
9145 Date:   Mon Dec 8 17:24:08 2008 +0100
9146
9147     Added legacy flash ST Micro M29W040B
9148
9149 commit 626d07348e5f9f302f4ea182161a89f7362a0488
9150 Author: Graeme Russ <graeme.russ@gmail.com>
9151 Date:   Mon Dec 8 20:04:51 2008 +1100
9152
9153     Fixed off-by-one errors in lib_m68k/interrupts.c
9154
9155     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9156
9157 commit a5989c42ae5e295f274a795c426c47819bbdbfda
9158 Author: Graeme Russ <graeme.russ@gmail.com>
9159 Date:   Sun Dec 7 10:29:05 2008 +1100
9160
9161     Removed all references to CONFIG_SYS_RESET_GENERIC
9162
9163     Generic i386 reset - #define made redundant by weak function
9164
9165     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9166
9167 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
9168 Author: Graeme Russ <graeme.russ@gmail.com>
9169 Date:   Sun Dec 7 10:29:04 2008 +1100
9170
9171     Remove #ifdef CONFIG_SC520 in source code
9172
9173     CONFIG_SC520 is now used for conditional compile
9174
9175     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9176
9177 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
9178 Author: Graeme Russ <graeme.russ@gmail.com>
9179 Date:   Sun Dec 7 10:29:03 2008 +1100
9180
9181     Added MMCR reset functionality
9182
9183     Reset function specific to AMD SC520 microcontroller - Is more of a
9184     'hard reset' that the triple fault.
9185
9186     Requires CONFIG_SYS_RESET_SC520 to be defined in config
9187
9188     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
9189     but ld requires that a object file in a library arhive MUST contain
9190     at least one function which does not override a weak function (and is
9191     called from outside the object file) in order for that object file to
9192     be extracted from the archive. This would be the only function on the
9193     new file, and hence, will never get linked in.
9194
9195     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9196
9197 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
9198 Author: Graeme Russ <graeme.russ@gmail.com>
9199 Date:   Sun Dec 7 10:29:02 2008 +1100
9200
9201     Moved generic (triple fault) reset code
9202
9203     Moved from interrupts.c to cpu.c and made into a weak function to
9204     allow vendor specific override
9205
9206     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
9207     added to the vendor specific code without the need to remember to
9208     #undef usage of the generic method and if you forget to include your
9209     custom reset method, you will always get the default.
9210
9211     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9212
9213 commit 9933d609020c297788f53f334c8465fa7a99b10c
9214 Author: Graeme Russ <graeme.russ@gmail.com>
9215 Date:   Sun Dec 7 10:29:01 2008 +1100
9216
9217     Moved definition of set_vector() to new header file
9218
9219     This allows for future tidy ups and functionality that will require
9220     set_vector ()
9221
9222     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9223
9224 commit 407976185e0dda2c90e89027121a1071b9c77bfb
9225 Author: Graeme Russ <graeme.russ@gmail.com>
9226 Date:   Sun Dec 7 10:29:00 2008 +1100
9227
9228     Moved sc520 specific code into new cpu/i386/sc520 folder
9229
9230     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9231     Signed-off-by: Wolfgang Denk <wd@denx.de>
9232
9233 commit 85ffbbd51914925a542d8528be7f072e5ab02157
9234 Author: Graeme Russ <graeme.russ@gmail.com>
9235 Date:   Sun Dec 7 10:28:58 2008 +1100
9236
9237     Renamed cpu/i386/reset.S to resetvec.S
9238
9239     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
9240     for CPU reset functions
9241
9242     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9243
9244 commit a3f4c123f569474e80ea012b8db0de46afdb6443
9245 Author: Wolfgang Denk <wd@denx.de>
9246 Date:   Sat Jan 24 01:01:49 2009 +0100
9247
9248     Makefile: keep lists sorted.
9249
9250     Signed-off-by: Wolfgang Denk <wd@denx.de>
9251
9252 commit c620c01e96814558470698ed5cab1bf2f504d1b5
9253 Author: Graeme Russ <graeme.russ@gmail.com>
9254 Date:   Sun Dec 7 10:28:57 2008 +1100
9255
9256     Added initial eNET board support
9257
9258     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9259
9260 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
9261 Author: Gary Jennejohn <garyj@denx.de>
9262 Date:   Thu Nov 20 11:37:26 2008 +0100
9263
9264     POWERPC 82xx: add the SCC as an HDLC controller
9265
9266     Right now this is only used by keymile.
9267
9268     Signed-off-by: Gary Jennejohn <garyj@denx.de>
9269
9270 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
9271 Author: Heiko Schocher <hs@denx.de>
9272 Date:   Thu Nov 20 09:59:09 2008 +0100
9273
9274     powerpc, keymile boards: extract identical config options
9275
9276     This patch extracts the identical config options for the
9277     keymile boards mgcoge, mgsuvd and kmeter1 in a new
9278     common config file keymile-common.h.
9279
9280     Signed-off-by: Heiko Schocher <hs@denx.de>
9281
9282 commit 210c8c00aad3328145204adab434bb7d70b06b75
9283 Author: Heiko Schocher <hs@denx.de>
9284 Date:   Fri Nov 21 08:29:40 2008 +0100
9285
9286     powerpc: keymile: Add a check for the PIGGY debug board
9287
9288     Check the presence of the PIGGY on the keymile boards mgcoge,
9289     mgsuvd and kmeter1. If the PIGGY is not present, dont register
9290     this Ethernet device.
9291
9292     Signed-off-by: Heiko Schocher <hs@denx.de>
9293     Acked-by: Ben Warren <biggerbadderben@gmail.com>
9294
9295 commit de0443614af4d16675ab436665aeb11ddc9f7214
9296 Author: Heiko Schocher <hs@denx.de>
9297 Date:   Thu Nov 20 09:57:47 2008 +0100
9298
9299     powerpc: 83xx: add support for the kmeter1 board
9300
9301     This patch adds support for the kmeter1 board from Keymile,
9302     based on a Freescale MPC8360 CPU.
9303
9304     - serial console on UART 1
9305     - 256 MB DDR2 RAM
9306     - 64 MB NOR Flash
9307     - Ethernet RMII Mode over UCC4
9308     - PHY SMSC LAN8700
9309
9310     Signed-off-by: Heiko Schocher <hs@denx.de>
9311
9312 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
9313 Author: Sergei Poselenov <sposelenov@emcraft.com>
9314 Date:   Tue Nov 4 13:51:18 2008 +0100
9315
9316     Add a do_div() wrapper macro, lldiv().
9317
9318     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
9319     the dividend and returns the result of division, so it is useful
9320     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
9321
9322     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9323
9324 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
9325 Author: Kumar Gala <galak@kernel.crashing.org>
9326 Date:   Fri Jan 23 14:22:14 2009 -0600
9327
9328     85xx: Add a 36-bit physical configuration for MPC8572DS
9329
9330     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
9331     to allow for larger memory sizes.
9332
9333     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9334
9335 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
9336 Author: Kumar Gala <galak@kernel.crashing.org>
9337 Date:   Fri Jan 23 14:22:13 2009 -0600
9338
9339     85xx: Handle eLBC difference w/36-bit physical
9340
9341     The eLBC only handles 32-bit physical address in systems with 36-bit
9342     physical.  The previos generation of LBC handled 34-bit physical
9343     address in 36-bit systems.  Added a new CONFIG option to convey
9344     the difference between the LBC and eLBC.
9345
9346     Also added defines for XAM bits used in LBC for the extended 34-bit
9347     support.
9348
9349     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9350
9351 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
9352 Author: Kumar Gala <galak@kernel.crashing.org>
9353 Date:   Fri Jan 23 14:22:12 2009 -0600
9354
9355     85xx: Use BR_ADDR macro for NAND chipselects
9356
9357     Use the new BR_ADDR macro to properly setup the address field of the
9358     localbus chipselects used by NAND.
9359
9360     This allows us to deal with 36-bit phys on these boards in the future.
9361
9362     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9363
9364 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
9365 Author: Haiying Wang <Haiying.Wang@freescale.com>
9366 Date:   Thu Jan 15 11:58:35 2009 -0500
9367
9368     Add secondary CPUs processor frequency for e500 core
9369
9370     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
9371     and prints each CPU's frequency separately. It also fixes up each CPU's
9372     frequency in "clock-frequency" of fdt blob.
9373
9374     Signed-off-by: James Yang <James.Yang@freescale.com>
9375     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9376
9377 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
9378 Author: Dave Liu <daveliu@freescale.com>
9379 Date:   Fri Nov 21 16:31:53 2008 +0800
9380
9381     85xx: enable the auto self refresh for wake up ARP
9382
9383     The wake up ARP feature need use the memory to process
9384     wake up packet, we enable auto self refresh to support it.
9385
9386     Signed-off-by: Dave Liu <daveliu@freescale.com>
9387     Acked-by: Andy Fleming <afleming@freescale.com>
9388
9389 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
9390 Author: Dave Liu <daveliu@freescale.com>
9391 Date:   Fri Nov 21 16:31:43 2008 +0800
9392
9393     fsl-ddr: use the 1T timing as default configuration
9394
9395     For light loaded system, we use the 1T timing to gain better
9396     memory performance, but for some heavily loaded system,
9397     you have to add the 2T timing options to board files.
9398
9399     Signed-off-by: Dave Liu <daveliu@freescale.com>
9400     Acked-by: Andy Fleming <afleming@freescale.com>
9401
9402 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
9403 Author: Dave Liu <daveliu@freescale.com>
9404 Date:   Fri Nov 21 16:31:35 2008 +0800
9405
9406     fsl-ddr: make the self refresh idle threshold configurable
9407
9408     Some 85xx processors have the advanced power management feature,
9409     such as wake up ARP, that needs enable the automatic self refresh.
9410
9411     If the DDR controller pass the SR_IT (self refresh idle threshold)
9412     idle cycles, it will automatically enter self refresh. However,
9413     anytime one transaction is issued to the DDR controller, it will
9414     reset the counter and exit self refresh state.
9415
9416     Signed-off-by: Dave Liu <daveliu@freescale.com>
9417     Acked-by: Andy Fleming <afleming@freescale.com>
9418
9419 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
9420 Author: Dave Liu <daveliu@freescale.com>
9421 Date:   Fri Nov 21 16:31:29 2008 +0800
9422
9423     fsl-ddr: clean up the ddr code for DDR3 controller
9424
9425     - The DDR3 controller is expanding the bits for timing config
9426     - Add the DDR3 32-bit bus mode support
9427
9428     Signed-off-by: Dave Liu <daveliu@freescale.com>
9429     Acked-by: Andy Fleming <afleming@freescale.com>
9430
9431 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
9432 Author: Dave Liu <daveliu@freescale.com>
9433 Date:   Fri Nov 21 16:31:22 2008 +0800
9434
9435     fsl-ddr: update the bit mask for DDR3 controller
9436
9437     According to the latest 8572 UM, the DDR3 controller
9438     is expanding the bit mask, and we use the extend ACTTOPRE
9439     mode when tRAS more than 19 MCLK.
9440
9441     Signed-off-by: Dave Liu <daveliu@freescale.com>
9442
9443 commit aca5f018a8386b85469482ed9867e3e29a2437d0
9444 Author: Kumar Gala <galak@kernel.crashing.org>
9445 Date:   Tue Dec 2 16:08:40 2008 -0600
9446
9447     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
9448
9449     Introduce a new define to seperate out the virtual address that PCI
9450     IO space is at from the physical address.  In most situations these are
9451     mapped 1:1.  However any code accessing the bus should use VIRT.
9452
9453     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9454     Acked-by: Andy Fleming <afleming@freescale.com>
9455
9456 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
9457 Author: Kumar Gala <galak@kernel.crashing.org>
9458 Date:   Tue Dec 2 16:08:39 2008 -0600
9459
9460     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
9461
9462     Introduce a new define to seperate out the virtual address that PCI
9463     memory is at from the physical address.  In most situations these are
9464     mapped 1:1.  However any code accessing the bus should use VIRT.
9465
9466     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9467     Acked-by: Andy Fleming <afleming@freescale.com>
9468
9469 commit a6e04c344ad1eefd47a75484441b385da815b8df
9470 Author: Kumar Gala <galak@kernel.crashing.org>
9471 Date:   Tue Dec 2 16:08:38 2008 -0600
9472
9473     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
9474
9475     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
9476     of TLBs.  This is what we should have always been using from the start.
9477
9478     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9479     Acked-by: Andy Fleming <afleming@freescale.com>
9480
9481 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
9482 Author: Kumar Gala <galak@kernel.crashing.org>
9483 Date:   Tue Dec 2 16:08:37 2008 -0600
9484
9485     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
9486
9487     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
9488     of _IO_BASE so we are more explicit.
9489
9490     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9491
9492 commit 10795f42cb94e71bcb262b615084f69dd886399a
9493 Author: Kumar Gala <galak@kernel.crashing.org>
9494 Date:   Tue Dec 2 16:08:36 2008 -0600
9495
9496     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
9497
9498     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
9499     of _MEM_BASE so we are more explicit.
9500
9501     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9502     Acked-by: Andy Fleming <afleming@freescale.com>
9503
9504 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
9505 Author: Kumar Gala <galak@kernel.crashing.org>
9506 Date:   Tue Dec 2 14:19:34 2008 -0600
9507
9508     85xx: separate FLASH BASE virtual from physical address
9509
9510     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
9511     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
9512
9513     This allows us to deal with 36-bit phys on these boards in the future.
9514
9515     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9516     Acked-by: Andy Fleming <afleming@freescale.com>
9517
9518 commit 52b565f5ad23b682489055b187767d8bf1c2e444
9519 Author: Kumar Gala <galak@kernel.crashing.org>
9520 Date:   Tue Dec 2 14:19:33 2008 -0600
9521
9522     85xx: separate PIXIS virtual from physical address
9523
9524     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
9525     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
9526
9527     This allows us to deal with 36-bit phys on these boards in the future.
9528
9529     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9530     Acked-by: Andy Fleming <afleming@freescale.com>
9531
9532 commit 30837e5b21d5a742983581ab9ee3fac085311d19
9533 Author: Haiying Wang <Haiying.Wang@freescale.com>
9534 Date:   Tue Nov 11 08:52:09 2008 -0500
9535
9536     Add README file for MPC8572DS board
9537
9538     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9539     Acked-by: Andy Fleming <afleming@freescale.com>
9540
9541 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
9542 Author: Mike Frysinger <vapier@gentoo.org>
9543 Date:   Mon Oct 20 16:15:04 2008 -0400
9544
9545     Blackfin: use common strmhz() in system output
9546
9547     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9548
9549 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
9550 Author: Ron Madrid <ron_madrid@sbcglobal.net>
9551 Date:   Thu Jan 22 15:05:24 2009 -0800
9552
9553     mpc83xx: New board support for SIMPC8313
9554
9555     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
9556     board boots from NAND devices and is configureable for either large or small
9557     page devices.  The board supports non-soldered DDR2, one ethernet port, a
9558     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
9559     to the eLBC providing glue logic to a TMS320C67xx DSP.
9560
9561     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
9562     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9563
9564 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
9565 Author: Mike Frysinger <vapier@gentoo.org>
9566 Date:   Sun Jan 18 19:46:06 2009 -0500
9567
9568     nand: fixup printf modifiers to match types used
9569
9570     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9571     Signed-off-by: Scott Wood <scottwood@freescale.com>
9572
9573 commit 389e6620e2271096df3316917528003627db4021
9574 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
9575 Date:   Tue Jan 20 16:57:55 2009 +0100
9576
9577     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
9578
9579     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
9580     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
9581     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
9582     tested before ".jffs2s" and only the first two characters are compared.
9583
9584     Correction:
9585     Test for ".jffs2s" first and compare the first 7 characters.
9586
9587     Signed-off-by: Scott Wood <scottwood@freescale.com>
9588
9589 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
9590 Author: Wolfgang Grandegger <wg@grandegger.com>
9591 Date:   Fri Jan 16 18:55:54 2009 +0100
9592
9593     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
9594
9595     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
9596     changes the default from 8 to 1 for the legacy and the new MTD
9597     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
9598     in the board config files because none of the boards use multi
9599     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
9600     define
9601
9602      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
9603
9604     but that's bogus and did not work anyhow.
9605
9606     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9607     Signed-off-by: Scott Wood <scottwood@freescale.com>
9608
9609 commit c70564e6b1bd08f3230182392238907f3531a87e
9610 Author: Dave Liu <daveliu@freescale.com>
9611 Date:   Tue Dec 2 11:48:51 2008 +0800
9612
9613     NAND: Fix cache and memory inconsistency issue
9614
9615     We load the secondary stage u-boot image from NAND to
9616     system memory by nand_load, but we did not flush d-cache
9617     to memory, nor invalidate i-cache before we jump to RAM.
9618     When the system has cache enabled and the TLB/page attribute
9619     of system memory is cacheable, it will cause issues.
9620
9621     - 83xx family is using the d-cache lock, so all of d-cache
9622       access is cache-inhibited. so you can't see the issue.
9623     - 85xx family is using d-cache, i-cache enable, partial
9624       cache lock. you will see the issue.
9625
9626     This patch fixes the cache issue.
9627
9628     Signed-off-by: Dave Liu <daveliu@freescale.com>
9629     Signed-off-by: Scott Wood <scottwood@freescale.com>
9630
9631 commit 50657c273278f74378e1ac39b41d612b92fdffa0
9632 Author: Nishanth Menon <menon.nishanth@gmail.com>
9633 Date:   Sat Dec 13 09:43:06 2008 -0600
9634
9635     NAND: Enable nand lock, unlock feature
9636
9637     Enable nand lock, unlock and status of lock feature.
9638     Not every device and platform requires this, hence,
9639     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
9640
9641     Nand unlock and status operate on block boundary instead
9642     of page boundary. Details in:
9643     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
9644
9645     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
9646     Includes preliminary suggestions from Scott Wood
9647
9648     Signed-off-by: Nishanth Menon <nm@ti.com>
9649     Signed-off-by: Scott Wood <scottwood@freescale.com>
9650
9651 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
9652 Author: Mike Frysinger <vapier@gentoo.org>
9653 Date:   Sat Dec 6 02:40:55 2008 -0500
9654
9655     NAND: move board_nand_init to nand.h
9656
9657     Rather than putting the function prototype for board_nand_init() in the one
9658     place where it gets called, put it into nand.h so that every place that also
9659     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
9660     such as using the wrong return value (void rather than int) when defining
9661     the function.
9662
9663     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9664     Signed-off-by: Scott Wood <scottwood@freescale.com>
9665
9666 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
9667 Author: Stefan Roese <sr@denx.de>
9668 Date:   Tue Dec 2 11:06:47 2008 +0100
9669
9670     OneNAND: Additional sync with 2.6.27
9671
9672     - Add subpage write support
9673     - Add onenand_oob_64/32 ecclayout
9674
9675     This has been missing and without it UBI has some incompatibilies issues
9676     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
9677     placed differently (2048 instead of 512) without this fix.
9678
9679     Signed-off-by: Stefan Roese <sr@denx.de>
9680     Signed-off-by: Scott Wood <scottwood@freescale.com>
9681
9682 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
9683 Author: Kyungmin Park <kmpark@infradead.org>
9684 Date:   Thu Nov 13 15:14:33 2008 +0900
9685
9686     Add markbad function
9687
9688     Add missing markbad function
9689     If not, it's hang when it entered the mtd->mark_bad().
9690
9691     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9692
9693 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
9694 Author: Stefan Roese <sr@denx.de>
9695 Date:   Wed Nov 12 13:47:24 2008 +0100
9696
9697     OneNAND: Bad block aware read/write command support
9698
9699     Update OneNAND command to support bad block awareness.
9700     Also change the OneNAND command style to better match the
9701     NAND version.
9702
9703     Signed-off-by: Stefan Roese <sr@denx.de>
9704     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
9705
9706 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
9707 Author: Stefan Roese <sr@denx.de>
9708 Date:   Tue Nov 11 10:29:09 2008 +0100
9709
9710     OneNAND: Save version_id in onenand_chip struct
9711
9712     The version (ver_id) was not stored in the onenand_chip structure and
9713     because of this the continuous locking scheme could be enabled on some
9714     chips.
9715
9716     Signed-off-by: Stefan Roese <sr@denx.de>
9717
9718 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
9719 Author: Stefan Roese <sr@denx.de>
9720 Date:   Tue Nov 11 10:28:53 2008 +0100
9721
9722     OneNAND: Fix compiler warnings
9723
9724     Signed-off-by: Stefan Roese <sr@denx.de>
9725
9726 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
9727 Author: Dave Liu <daveliu@freescale.com>
9728 Date:   Tue Nov 4 14:55:06 2008 +0800
9729
9730     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
9731
9732     Signed-off-by: Dave Liu <daveliu@freescale.com>
9733
9734 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
9735 Author: Kyungmin Park <kmpark@infradead.org>
9736 Date:   Tue Nov 4 09:24:07 2008 +0900
9737
9738     Sync with 2.6.27
9739
9740     Sync with OneNAND kernel codes
9741
9742     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9743
9744 commit e7f325be9edeb84bb457301776bbac1f7257dafc
9745 Author: Michal Simek <monstr@monstr.eu>
9746 Date:   Mon Jan 5 13:35:31 2009 +0100
9747
9748     microblaze: Use cache functions (especially cache status)
9749     in systems which are configured without flash
9750
9751 commit e9b737deb2c30125362d20e24170617476026e94
9752 Author: Michal Simek <monstr@monstr.eu>
9753 Date:   Mon Jan 5 13:29:32 2009 +0100
9754
9755     microblaze: Add cache flush
9756
9757 commit b4f8dda35bfad447b4106828232705b2e878d168
9758 Author: Michal Simek <monstr@monstr.eu>
9759 Date:   Mon Jan 5 13:28:40 2009 +0100
9760
9761     microblaze: Add bootup messages to board.c
9762
9763 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
9764 Author: Michal Simek <monstr@monstr.eu>
9765 Date:   Fri Dec 19 13:25:55 2008 +0100
9766
9767     microblaze: Change microblaze-generic config file
9768
9769     Signed-off-by: Michal Simek <monstr@monstr.eu>
9770
9771 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
9772 Author: Michal Simek <monstr@monstr.eu>
9773 Date:   Fri Dec 19 13:14:05 2008 +0100
9774
9775     microblaze: Rename ml401 to microblaze-generic
9776
9777     Signed-off-by: Michal Simek <monstr@monstr.eu>
9778
9779 commit 6677876181cc8772bca8a372479a500d160f3993
9780 Author: Scott Wood <scottwood@freescale.com>
9781 Date:   Tue Jan 20 11:56:11 2009 -0600
9782
9783     83xx: Use the proper sequence for updating IMMR.
9784
9785     This ensures that subsequent accesses properly hit the new window.
9786
9787     The dcbi during the NAND loop was accidentally working around this;
9788     it's no longer necessary, as the cache is not enabled.
9789
9790     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
9791     Signed-off-by: Scott Wood <scottwood@freescale.com>
9792     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9793
9794 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
9795 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9796 Date:   Thu Jan 8 04:26:19 2009 +0300
9797
9798     mpc83xx: Add PCI-E support for MPC837XEMDS boards
9799
9800     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
9801     provides two PCI-E (x2) ports. Though, only one port can be used in x2
9802     mode. Two ports can function simultaneously in x1 mode.
9803
9804     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
9805
9806     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9807     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9808
9809 commit 8f11e34b31a7be124a3239653f33af9510502045
9810 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9811 Date:   Thu Jan 8 04:26:17 2009 +0300
9812
9813     mpc83xx: Add PCI-E support for MPC8315ERDB boards
9814
9815     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
9816     support them.
9817
9818     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9819     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9820
9821 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
9822 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9823 Date:   Thu Jan 8 04:26:12 2009 +0300
9824
9825     mpc83xx: Add support for MPC83xx PCI-E controllers
9826
9827     This patch adds support for MPC83xx PCI-E controllers in Root Complex
9828     mode.
9829
9830     The patch is based on Tony Li and Dave Liu work[1].
9831
9832     Though unlike the original patch, by default we don't register PCI-E
9833     buses for use in U-Boot, we only configure the controllers for future
9834     use in other OSes (Linux). This is done because we don't have enough
9835     of spare BATs to map all the PCI-E regions.
9836
9837     To actually use PCI-E in U-Boot, users should explicitly define
9838     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
9839     only then U-Boot will able to access PCI-E, but at the cost of disabled
9840     address translation.
9841
9842     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
9843
9844     Signed-off-by: Tony Li <tony.li@freescale.com>
9845     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9846     Acked-by: Dave Liu <daveliu@freescale.com>
9847     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9848
9849 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
9850 Author: Ira Snyder <iws@ovro.caltech.edu>
9851 Date:   Mon Jan 12 13:33:17 2009 -0800
9852
9853     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
9854
9855     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
9856     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
9857     "Clocking in PCI Agent Mode".
9858
9859     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
9860     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9861
9862 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
9863 Author: Ira Snyder <iws@ovro.caltech.edu>
9864 Date:   Mon Jan 12 13:32:26 2009 -0800
9865
9866     83xx: PCI agent mode fixes for multi-board systems
9867
9868     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
9869     the boards will lock up the PCI bus by scanning against each other.
9870
9871     The boards lock against each other by trying to access the PCI bus before
9872     clearing their configuration lock bit. Both boards end up in a loop,
9873     sending and receiving "Target Not Ready" messages forever.
9874
9875     When running in PCI agent mode, the scanning now takes place after the
9876     boards have cleared their configuration lock bit.
9877
9878     Also, add a missing declaration to the mpc83xx.h header file, fixing a
9879     build warning.
9880
9881     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
9882     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9883
9884 commit 455a46915b82896cc2070eb326d075555c2bc580
9885 Author: Ron Madrid <ron_madrid@sbcglobal.net>
9886 Date:   Fri Dec 12 13:12:45 2008 -0800
9887
9888     mpc83xx: Size optimization of start.S
9889
9890     Currently there are in excess of 100 bytes located at the beginning of the image
9891     built by start.S that are not being utilized.  This patch moves a few functions
9892     into this part of the image.  This will create a greater number of *available*
9893     bytes that can be used by board specific code in NAND builds and will decrease
9894     the size of the assembled code in other builds.
9895
9896     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
9897     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9898
9899 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
9900 Author: Wolfgang Denk <wd@denx.de>
9901 Date:   Wed Jan 21 23:08:12 2009 +0100
9902
9903     Prepare v2009.01
9904
9905     Signed-off-by: Wolfgang Denk <wd@denx.de>
9906
9907 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
9908 Author: Wolfgang Denk <wd@denx.de>
9909 Date:   Sun Jan 18 21:37:48 2009 +0100
9910
9911     Prepare 2009.01-rc3
9912
9913     Update CHANGELOG
9914
9915     Signed-off-by: Wolfgang Denk <wd@denx.de>
9916
9917 commit 4cda437898f7873752f0201757cd33f12196ce87
9918 Author: Mike Frysinger <vapier@gentoo.org>
9919 Date:   Sat Jan 17 13:32:42 2009 -0500
9920
9921     build system: treat all Darwin's alike
9922
9923     The x86 based version of Darwin behaves the same quirky way as the powerpc
9924     Darwin, so only check HOSTOS when setting up Darwin workarounds.
9925
9926     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9927
9928 commit c088a108c75db565e07292fd668dfa5491e85bc2
9929 Author: Peter Korsgaard <jacmet@sunsite.dk>
9930 Date:   Wed Jan 14 13:52:24 2009 +0100
9931
9932     fdt_resize(): fix actualsize calculations with unaligned blobs
9933
9934     The code in fdt_resize() to extend the fdt size to end on a page boundary
9935     is wrong for fdt's not located at an address aligned on a page boundary.
9936     What's even worse, the code would make actualsize shrink rather than grow
9937     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
9938     causing fdt_add_mem_rsv to fail.
9939
9940     Fix it by aligning end address (blob + size) to a page boundary instead.
9941     For aligned fdt's this is equivalent to what we had before.
9942
9943     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9944
9945 commit fadad1573fb16c90025f08a2861d6047d093cba7
9946 Author: Mike Frysinger <vapier@gentoo.org>
9947 Date:   Fri Jan 9 04:38:17 2009 -0500
9948
9949     ncb: use socklen_t
9950
9951     The recvfrom() function takes a socklen_t, not an int.
9952
9953     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9954
9955 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
9956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9957 Date:   Sun Jan 11 16:35:16 2009 +0100
9958
9959     sh: serial: use readx/writex accessors
9960
9961     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9962     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9963
9964 commit 9e1fa628bdb64745811cdd26c4f953846c076180
9965 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9966 Date:   Sun Jan 11 16:35:15 2009 +0100
9967
9968     sh: serial: coding style cleanup
9969
9970     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9971     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9972
9973 commit c9935c992575922b7ef13eec0656ed8665d324e3
9974 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9975 Date:   Sun Jan 11 17:48:56 2009 +0900
9976
9977     sh: Fix compile error on lowlevel_init file
9978
9979     lowlevel_init of SH was corrected to use the write/readXX macro.
9980     However, there was a problem that was not able to be compiled partially.
9981     This patch corrected this.
9982
9983     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9984
9985 commit a5b04d00bfeb940c62232972ce644d50b45797f9
9986 Author: Kieran Bingham <kieranbingham@gmail.com>
9987 Date:   Tue Dec 30 01:16:03 2008 +0000
9988
9989     sh: Fix up rsk7203 target for out of tree build
9990
9991     Fix up rsk7203 target to build successfully using out-of-tree build.
9992
9993     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
9994     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9995
9996 commit f7e78f3b74aae9caca2997bad865a72338326c0a
9997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9998 Date:   Sat Dec 20 19:29:49 2008 +0100
9999
10000     sh: use write{8,16,32} in all lowlevel_init
10001
10002     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10003     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10004
10005 commit e4430779623af500de1cee7892c379f07ef59813
10006 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10007 Date:   Sat Dec 20 19:29:48 2008 +0100
10008
10009     sh: lowlevel_init coding style cleanup
10010
10011     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10012     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10013
10014 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
10015 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10016 Date:   Sat Dec 20 15:27:45 2008 +0100
10017
10018     sh: update sh2/sh2a timer coding style
10019
10020     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10021     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10022
10023 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
10024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10025 Date:   Sat Dec 20 15:25:22 2008 +0100
10026
10027     sh: update sh timer coding style
10028
10029     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10030     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10031
10032 commit 0e3ece33801e377be67ffa29f083421ad820f28b
10033 Author: Wolfgang Denk <wd@denx.de>
10034 Date:   Wed Jan 14 23:26:05 2009 +0100
10035
10036     Prepare 2009.01-rc2
10037
10038     Update CHANGELOG.
10039
10040     Signed-off-by: Wolfgang Denk <wd@denx.de>
10041
10042 commit e92c9a860e44c14513c8909ce4299e253a775eeb
10043 Author: Wolfgang Denk <wd@denx.de>
10044 Date:   Wed Jan 14 22:35:30 2009 +0100
10045
10046     cpu/mpc824x/Makefile: fix warning with parallel builds
10047
10048     Parallel builds would occasionally issue this build warning:
10049
10050         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
10051
10052     Use "ln -sf" as quick work around for the issue.
10053
10054     Signed-off-by: Wolfgang Denk <wd@denx.de>
10055
10056 commit 3ba605d4beec649438539e7df97b5fedb26592fb
10057 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10058 Date:   Fri Jan 2 12:18:49 2009 +0100
10059
10060     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
10061
10062     This patch adds esd's loadpci BSP command to CPCI4052 and
10063     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
10064
10065     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10066     Signed-off-by: Stefan Roese <sr@denx.de>
10067
10068 commit 600fe46fb3dab7f07604f9009904f31584415114
10069 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10070 Date:   Fri Jan 2 12:18:12 2009 +0100
10071
10072     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
10073
10074     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10075     Signed-off-by: Stefan Roese <sr@denx.de>
10076
10077 commit f6a1f490d224c600a09137e58d1026d150b8e679
10078 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10079 Date:   Fri Jan 2 12:17:36 2009 +0100
10080
10081     ppc4xx: Cleanup CPCI405 board code
10082
10083     This patch cleans up CPCI405 board support:
10084     - wrap long lines
10085     - unification of spaces in function calls
10086     - remove dead code
10087
10088     Use correct io accessors on peripherals.
10089
10090     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10091     Signed-off-by: Stefan Roese <sr@denx.de>
10092
10093 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
10094 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10095 Date:   Fri Jan 2 12:16:35 2009 +0100
10096
10097     ppc4xx: Enable auto RS485 mode on PLU405 boards
10098
10099     This patch turns on the auto RS485 mode in the 2nd external
10100     uart on PLU405 boards. This is a special mode of the used
10101     Exar XR16C2850 uart. Because these boards only have a 485 physical
10102     layer connected it's a good idea to turn it on by default.
10103
10104     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10105     Signed-off-by: Stefan Roese <sr@denx.de>
10106
10107 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
10108 Author: Haiying Wang <Haiying.Wang@freescale.com>
10109 Date:   Tue Jan 13 16:29:28 2009 -0500
10110
10111     Some changes of TLB entry setting for MPC8572DS
10112
10113     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
10114     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
10115     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
10116
10117     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
10118
10119     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10120
10121 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
10122 Author: Haiying Wang <Haiying.Wang@freescale.com>
10123 Date:   Tue Jan 13 16:29:22 2009 -0500
10124
10125     Change DDR tlb start entry to CONFIG param for 85xx
10126
10127     So that we can locate the DDR tlb start entry to the value other than 8. By
10128     default, it is still 8.
10129
10130     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10131
10132 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
10133 Author: Roy Zang <tie-fei.zang@freescale.com>
10134 Date:   Fri Jan 9 16:02:35 2009 +0800
10135
10136     Change PCIE1&2 deciide logic on MPC8544DS board more readable
10137
10138     The IO port selection for MPC8544DS board:
10139      Port                       cfg_io_ports
10140      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
10141      PCIE2              0x4, 0x5, 0x6, 0x7
10142      PCIE3              0x6, 0x7
10143      This patch changes the PCIE12 and PCIE2 logic more readable.
10144     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10145
10146 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
10147 Author: Roy Zang <tie-fei.zang@freescale.com>
10148 Date:   Fri Jan 9 16:01:52 2009 +0800
10149
10150     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
10151
10152     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
10153     PCIE1 bit.
10154     On MPC8572DS board, PCIE refers to PCIE1.
10155     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10156
10157 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
10158 Author: Roy Zang <tie-fei.zang@freescale.com>
10159 Date:   Fri Jan 9 16:00:55 2009 +0800
10160
10161     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
10162
10163     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
10164      This patch fixes this issue.
10165      For MPC8572
10166      Port                       cfg_io_ports
10167      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
10168      PCIE2              0x3, 0x7
10169      PCIE3              0x7
10170
10171     For MPC8544
10172     Port                        cfg_io_ports
10173     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
10174     PCIE2               0x4, 0x5, 0x6, 0x7
10175     PCIE3               0x6, 0x7
10176     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10177
10178 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
10179 Author: Becky Bruce <beckyb@kernel.crashing.org>
10180 Date:   Wed Dec 3 22:36:44 2008 -0600
10181
10182     mpc8610hpcd: Fix PCI mapping concepts
10183
10184     Rename _BASE to _BUS, as it's actually a PCI bus address,
10185     separate virtual and physical addresses into _VIRT and _PHYS,
10186     and use each appopriately.  This makes the code easier to read
10187     and understand, and facilitates mapping changes going forward.
10188
10189     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10190
10191 commit 79e436cad3b4a7db88408c3f05175028f30d700d
10192 Author: Becky Bruce <beckyb@kernel.crashing.org>
10193 Date:   Wed Dec 3 22:36:26 2008 -0600
10194
10195     sbc8641d: Fix PCI mapping concepts
10196
10197     Rename _BASE to _BUS, as it's actually a PCI bus address,
10198     separate virtual and physical addresses into _VIRT and _PHYS,
10199     and use each appopriately.  This makes the code easier to read
10200     and understand, and facilitates mapping changes going forward.
10201
10202     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10203
10204 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
10205 Author: Wolfgang Denk <wd@denx.de>
10206 Date:   Mon Jan 12 14:50:35 2009 +0100
10207
10208     MPC86xx: fix build warnings
10209
10210     Signed-off-by: Wolfgang Denk <wd@denx.de>
10211
10212 commit 032a1c934ef4dc003281f57302b6e693062c1868
10213 Author: Mike Frysinger <vapier@gentoo.org>
10214 Date:   Mon Jan 5 16:09:44 2009 -0500
10215
10216     bf537-stamp/nand: fix board_nand_init prototype
10217
10218     The board_nand_init() function should return an int, not void.
10219
10220     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10221
10222 commit 687f952e4119594ab913be11c90f7f018c2a7a79
10223 Author: Mike Frysinger <vapier@gentoo.org>
10224 Date:   Thu Dec 11 07:04:48 2008 -0500
10225
10226     Blackfin: drop CONFIG_SPI handling in board init
10227
10228     The eeprom SPI init functions are duplicated as the common code already
10229     executes these for us.
10230
10231     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10232
10233 commit e7e684b10d73a303902208594c7c3e7e0d753282
10234 Author: Mike Frysinger <vapier@gentoo.org>
10235 Date:   Fri Oct 24 17:51:57 2008 -0400
10236
10237     Blackfin: fix out-of-tree building with ldscripts
10238
10239     Many of the Blackfin board linker scripts are preprocessed, so make sure we
10240     output the linker script into the build tree rather than the source tree.
10241
10242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10243
10244 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
10245 Author: Mike Frysinger <vapier@gentoo.org>
10246 Date:   Fri Oct 24 17:48:54 2008 -0400
10247
10248     Blackfin: fix linker scripts to work with --gc-sections
10249
10250     Make sure all .text sections get pulled in and the entry point is properly
10251     referenced so they don't get discarded when linking with --gc-sections.
10252
10253     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10254
10255 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
10256 Author: Mike Frysinger <vapier@gentoo.org>
10257 Date:   Sat Oct 11 20:45:44 2008 -0400
10258
10259     Blackfin: set proper LDRFLAGS for parallel booting LDRs
10260
10261     In order to boot an LDR out of parallel flash, the ldr utility needs a few
10262     flags to tell it to generate the right header.
10263
10264     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10265
10266 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
10267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10268 Date:   Tue Jan 6 21:41:59 2009 +0100
10269
10270     at91rm9200: move define from lowlevel_init to header
10271
10272     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10273
10274 commit 8a48686fac2030287765f1970ea046bd5734b733
10275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10276 Date:   Sat Jan 3 17:22:26 2009 +0100
10277
10278     m501sk: move to the common memory setup
10279
10280     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10281
10282 commit d481c80d78f954133c035dae6c7d22de3625795d
10283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10284 Date:   Sat Jan 3 17:22:25 2009 +0100
10285
10286     at91rm9200: rename lowlevel init value to CONFIG_SYS_
10287
10288     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10289
10290 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
10291 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
10292 Date:   Tue Jan 6 21:13:14 2009 +0100
10293
10294     at91: add at91sam9xeek board support
10295
10296     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
10297     it as another entry for at91sam9260 in the Makefile.
10298
10299     Check documentation at :
10300     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
10301
10302     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
10303     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10304
10305 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
10306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10307 Date:   Tue Jan 6 21:15:57 2009 +0100
10308
10309     fix bmp_logo.h make dependencies to allow parallel build
10310
10311     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10312
10313 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
10314 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10315 Date:   Sat Jan 3 17:22:24 2009 +0100
10316
10317     at91: Fix Atmel's at91sam9 boards out of tree build
10318
10319     introduced in commit 89a7a87f084c
10320
10321     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10322
10323 commit 0668236bafaa1c11c521652a2facebc74beecbf0
10324 Author: Wolfgang Denk <wd@denx.de>
10325 Date:   Tue Dec 30 22:56:11 2008 +0100
10326
10327     README: update mailing list name and hits to patch submission.
10328
10329     Signed-off-by: Wolfgang Denk <wd@denx.de>
10330
10331 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
10332 Author: Peter Tyser <ptyser@xes-inc.com>
10333 Date:   Tue Dec 23 16:32:01 2008 -0600
10334
10335     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
10336
10337     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10338
10339 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
10340 Author: Peter Tyser <ptyser@xes-inc.com>
10341 Date:   Tue Dec 23 16:32:00 2008 -0600
10342
10343     XPedite5200 board support cleanup
10344
10345     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10346
10347 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
10348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10349 Date:   Tue Dec 2 21:58:04 2008 +0100
10350
10351     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
10352
10353     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10354     Signed-off-by: Remy Böhmer <linux@bohmer.net>
10355
10356 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
10357 Author: Trent Piepho <tpiepho@freescale.com>
10358 Date:   Wed Dec 3 15:16:37 2008 -0800
10359
10360     mpc8[56]xx: Put localbus clock in sysinfo and gd
10361
10362     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
10363     and print it out, but don't save it.
10364
10365     This changes where its calculated and stored to be more consistent with the
10366     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
10367
10368     The localbus frequency is added to sysinfo and calculated when sysinfo is
10369     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
10370
10371     get_clocks() copies the frequency into the global data, as the other
10372     frequencies are, into a new field that is only enabled for MPC85xx and
10373     MPC86xx.
10374
10375     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
10376     from sysinfo, like the other frequencies, instead of calculating it on the
10377     spot.
10378
10379     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
10380     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10381     Acked-by: Jon Loeliger <jdl@freescale.com>
10382
10383 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
10384 Author: Trent Piepho <tpiepho@freescale.com>
10385 Date:   Wed Dec 3 15:16:36 2008 -0800
10386
10387     mpc86xx: Double local bus clock divider
10388
10389     The local bus clock divider should be doubled for both 8610 and 8641.
10390
10391     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
10392     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10393     Acked-by: Jon Loeliger <jdl@freescale.com>
10394
10395 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
10396 Author: Trent Piepho <tpiepho@freescale.com>
10397 Date:   Wed Dec 3 15:16:35 2008 -0800
10398
10399     mpc8568: Double local bus clock divider
10400
10401     The clock divider for the MPC8568 local bus should be doubled, like the
10402     other newer MPC85xx chips.
10403
10404     Since there are now more chips with a 2x divider than a 1x, and any new
10405     85xx chips will probably be 2x, invert the sense of the #if so that it
10406     lists the 1x chips instead of the 2x ones.
10407
10408     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
10409     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10410     Acked-by: Jon Loeliger <jdl@freescale.com>
10411
10412 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
10413 Author: Dave Liu <daveliu@freescale.com>
10414 Date:   Tue Dec 16 12:09:27 2008 +0800
10415
10416     85xx: Fix the boot window issue
10417
10418     If one custom board is using the 8MB flash, it is set
10419     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
10420     The current start.S code will be broken at switch_as.
10421
10422     It is because the TLB1[15] is set as 16MB page size,
10423     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
10424
10425     For the 8MB flash case, the EPN = 0xefxxxxxx,
10426     RPN = 0xffxxxxxx. Assume the virt address of switch_as
10427     is 0xef7ff18c, the real address of the instruction at
10428     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
10429     of the range of the default 8MB boot LAW window
10430     0xff800000 - 0xffffffff.
10431
10432     So when we switch to AS1 address space at switch_as,
10433     the core can't fetch the instruction at switch_as any
10434     more. It will cause broken issue.
10435
10436     Signed-off-by: Dave Liu <daveliu@freescale.com>
10437
10438 commit 58da8890d5fbd074746037722a423de9ac408616
10439 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10440 Date:   Thu Dec 11 15:47:50 2008 -0500
10441
10442     sbc8548: use proper PHY address
10443
10444     The values given for the PHY address were wrong, so the code
10445     read no valid PHY ID, and fell through to the generic PHY
10446     support, which would work on 1000M but would not auto negotiate
10447     down to 100M or 10M.
10448
10449     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10450
10451 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
10452 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10453 Date:   Thu Dec 11 15:47:51 2008 -0500
10454
10455     sbc8548: enable command line editing by default.
10456
10457     Lets make things a bit more user friendly.  It isn't 1985 anymore.
10458
10459     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10460
10461 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
10462 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10463 Date:   Thu Dec 11 15:47:49 2008 -0500
10464
10465     sbc8548: don't enable the 3rd and 4th eTSEC
10466
10467     These interfaces don't have usable connectors on the board, so don't
10468     bother enumerating or configuring them.
10469
10470     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10471
10472 commit 181a3650113883728927928b3ac81ad6dade4b2c
10473 Author: Haiying Wang <Haiying.Wang@freescale.com>
10474 Date:   Wed Dec 3 10:08:19 2008 -0500
10475
10476     Set IVPR to kenrel entry point in second core boot page
10477
10478     Assuming the OSes exception vectors start from the base of kernel address, and
10479     the kernel physical starting address can be relocated to an non-zero address.
10480     This patch enables the second core to have a valid IVPR for debugger before
10481     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
10482     value for second core which runs kernel at different physical address other
10483     than 0x0.
10484
10485     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10486
10487 commit a5d212a263c58cc746481bf1fc878510533ce7d6
10488 Author: Trent Piepho <tpiepho@freescale.com>
10489 Date:   Wed Dec 3 15:16:34 2008 -0800
10490
10491     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
10492
10493     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
10494     instead of four.
10495
10496     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
10497     should be safe as the fifth bit was defined as reserved and set to 0.
10498
10499     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
10500
10501     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
10502     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10503     Acked-by: Jon Loeliger <jdl@freescale.com>
10504
10505 commit 58ec4866ed916c7e422f5107bb27b0822084728e
10506 Author: Trent Piepho <tpiepho@freescale.com>
10507 Date:   Wed Dec 3 15:16:38 2008 -0800
10508
10509     mpc8[56]xx: Put localbus clock in device tree
10510
10511     Export the localbus frequency in the device tree, the same way the CPU, TB,
10512     CCB, and various other frequencies are exported in their respective device
10513     tree nodes.
10514
10515     Some localbus devices need this information to be programed correctly, so
10516     it makes sense to export it along with the other frequencies.
10517
10518     Unfortunately, when someone wrote the localbus dts bindings, they didn't
10519     bother to define what the "compatible" property should be.  So it seems no
10520     one was quite sure what to put in their dts files.
10521
10522     Based on current existing dts files in the kernel source, I've used
10523     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
10524     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
10525     apparently not entirely backward compatible with the pq3 LBC and so eLBC
10526     equipped platforms like 8572 won't use pq3-localbus.
10527
10528     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
10529     and is also looked for by the Linux code.  On MPC8641, I've also used
10530     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
10531     which don't use "fsl,elbc" or any other acceptable name to match on.
10532
10533     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
10534     Acked-by: Kumar Gala <galak@kernel.crashing.org>
10535     Acked-by: Jon Loeliger <jdl@freescale.com>
10536
10537 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
10538 Author: Kumar Gala <galak@kernel.crashing.org>
10539 Date:   Tue Dec 16 14:59:22 2008 -0600
10540
10541     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
10542
10543     The current code that determines which bank/chipselect is used for a
10544     given NAND instance only worked for 32-bit addresses and assumed
10545     a 1:1 mapping.  This breaks in 36-bit physical configs.
10546
10547     The proper way to handle this is to use the virt_to_phys() and
10548     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
10549     with the the virtual address the NAND code uses.
10550
10551     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10552     Acked-by: Scott Wood <scottwood@freescale.com>
10553
10554 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
10555 Author: Kumar Gala <galak@kernel.crashing.org>
10556 Date:   Tue Dec 16 14:59:21 2008 -0600
10557
10558     ppc: Use addrmap in virt_to_phys and map_physmem.
10559
10560     If we have addr map support enabled use the mapping functions to
10561     implement virt_to_phys() and map_physmem().
10562
10563     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10564
10565 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
10566 Author: Kumar Gala <galak@kernel.crashing.org>
10567 Date:   Tue Dec 16 14:59:20 2008 -0600
10568
10569     85xx: Add support to populate addr map based on TLB settings
10570
10571     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10572
10573 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
10574 Author: Peter Tyser <ptyser@xes-inc.com>
10575 Date:   Mon Dec 1 13:47:13 2008 -0600
10576
10577     XPedite5200 board support
10578
10579     Initial support for Extreme Engineering Solutions XPedite5200 -
10580     a MPC8548-based PMC single board computer.
10581
10582     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10583
10584 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
10585 Author: Peter Tyser <ptyser@xes-inc.com>
10586 Date:   Wed Oct 29 12:39:27 2008 -0500
10587
10588     85xx: Enable inbound PCI config cycles for X-ES boards
10589
10590     Update X-ES Freescale boards to allow inbound PCI configuration
10591     cycles when configured as agent/endpoint.
10592
10593     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10594
10595 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
10596 Author: Peter Tyser <ptyser@xes-inc.com>
10597 Date:   Wed Dec 17 16:36:23 2008 -0600
10598
10599     XPedite5370 board support
10600
10601     Initial support for Extreme Engineering Solutions XPedite5370 -
10602     a MPC8572-based 3U VPX single board computer with a PMC/XMC
10603     site.
10604
10605     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10606
10607 commit e92739d34e2d6b6aca93b2598248210710897ce8
10608 Author: Peter Tyser <ptyser@xes-inc.com>
10609 Date:   Wed Dec 17 16:36:21 2008 -0600
10610
10611     Add support for PCA953x I2C gpio devices
10612
10613     Initial support for NXP's 4 and 8 bit I2C gpio expanders
10614     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
10615     enables support for the devices while the CONFIG_CMD_PCA953X
10616     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
10617     define enables an 'info' sub-command which provides summary
10618     information for the given pca953x device.
10619
10620     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10621
10622 commit 7a8979591171676417ab36852d8811a8c46accd8
10623 Author: Peter Tyser <ptyser@xes-inc.com>
10624 Date:   Wed Oct 29 12:39:26 2008 -0500
10625
10626     pci/fsl_pci_init: Enable inbound PCI config cycles
10627
10628     Add fsl_pci_config_unlock() function to enable a
10629     PCI/PCIe interface configured in agent/endpoint mode to
10630     respond to inbound PCI configuration cycles.
10631
10632     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10633
10634 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
10635 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10636 Date:   Wed Dec 17 16:43:18 2008 +0100
10637
10638     avr32: Remove second definition of virt_to_phys()
10639
10640     The second definition introduced by 65e43a1063 conflicts with the
10641     existing one.
10642
10643     Also, convert the existing definition to use phys_addr_t. The volatile
10644     qualifier is still needed due to brain damage elsewhere.
10645
10646     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10647
10648 commit b616f2b545f73757669b37386f0b37bb61fc6797
10649 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10650 Date:   Mon Sep 8 22:27:18 2008 +0200
10651
10652     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
10653
10654     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10655     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10656
10657 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
10658 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10659 Date:   Tue Dec 16 22:10:31 2008 +0100
10660
10661     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
10662
10663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10664     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10665
10666 commit 13095b2f07dacb1f863772266c1789d47a523a8a
10667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10668 Date:   Tue Dec 16 22:10:30 2008 +0100
10669
10670     MIPS: qemu_mips: move env storage just after u-boot
10671
10672     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10673     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10674
10675 commit aced78d852d0b009e8aaa1445af8cb40861ee549
10676 Author: Wolfgang Denk <wd@denx.de>
10677 Date:   Tue Dec 16 23:48:27 2008 +0100
10678
10679     Prepare 2009.01-rc1
10680
10681     Signed-off-by: Wolfgang Denk <wd@denx.de>
10682
10683 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
10684 Author: Wolfgang Denk <wd@denx.de>
10685 Date:   Tue Dec 16 23:13:46 2008 +0100
10686
10687     include/configs/at91cap9adk.h: fix typo.
10688
10689     Signed-off-by: Wolfgang Denk <wd@denx.de>
10690
10691 commit 45ca04f2377361593151d2d4da51f8ba4832d233
10692 Author: Wolfgang Denk <wd@denx.de>
10693 Date:   Tue Dec 16 22:32:25 2008 +0100
10694
10695     board/trab/memory.c: Fix compile problems.
10696
10697     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
10698
10699     Actually we'd need a major cleanup here - as it turns out,
10700     board/trab/memory.c is more or less a verbatim copy of
10701     post/drivers/memory.c ... but then, trab is EOL anyway,r
10702     so this is not worth the effort.
10703
10704     Signed-off-by: Wolfgang Denk <wd@denx.de>
10705
10706 commit ff49ea8977b56916edd5b1766d9939010e30b181
10707 Author: Scott Wood <scottwood@freescale.com>
10708 Date:   Tue Dec 16 14:24:16 2008 -0600
10709
10710     NAND: Mark the BBT as scanned prior to calling scan_bbt.
10711
10712     Otherwise, recursion can occur if scan_bbt does not find a bad block
10713     table, and tries to write one, and the attempt to erase the BBT area
10714     causes a bad block check.
10715
10716     Signed-off-by: Scott Wood <scottwood@freescale.com>
10717
10718 commit 584eedab66d0828f2d571a24b10526c4e65f547b
10719 Author: Ilya Yanok <yanok@emcraft.com>
10720 Date:   Thu Dec 11 05:51:57 2008 +0300
10721
10722     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
10723
10724     Include <linux/mtd/compat.h> header for min_t definition instead of
10725     providing our own one. Removes warnings in case of OneNAND support
10726     enabled.
10727
10728     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
10729     just for min_t...
10730
10731     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
10732     Acked-by: Stefan Roese <sr@denx.de>
10733
10734 commit b1ffecec37b57a59c139042267faac458e5324e9
10735 Author: Becky Bruce <beckyb@kernel.crashing.org>
10736 Date:   Wed Dec 3 23:04:37 2008 -0600
10737
10738     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
10739
10740     Casting a pointer to a phys_addr_t when it's an unsigned long long
10741     on a 32-bit system without first casting to a non-pointer type
10742     generates a compiler warning. Fix this.
10743
10744     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
10745
10746 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
10747 Author: Wolfgang Denk <wd@denx.de>
10748 Date:   Tue Dec 16 16:22:50 2008 +0100
10749
10750     trab: make trab_fkt standalone code independent of libgcc
10751
10752     Use our own local functions in lib_arm/ instead.
10753
10754     Signed-off-by: Wolfgang Denk <wd@denx.de>
10755
10756 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
10757 Author: Wolfgang Denk <wd@denx.de>
10758 Date:   Tue Dec 16 14:44:06 2008 +0100
10759
10760     post/Makefile: fix dependency problem with parallel builds
10761
10762     Parallel builds (using "make -jN") would occasionally fail with error
10763     messages like
10764         ppc_4xxFP-objdump: string.o: File format not recognized
10765     or
10766         post/libpost.a(cpu.o): In function `cpu_post_test':
10767         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
10768     or similar. We now make sure to run the 'postdeps" step before
10769     attempting to build the specific POST libraries.
10770
10771     Signed-off-by: Wolfgang Denk <wd@denx.de>
10772
10773 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
10774 Author: Wolfgang Denk <wd@denx.de>
10775 Date:   Tue Dec 16 14:41:02 2008 +0100
10776
10777     Makefile: fix dependency problem with parallel builds
10778
10779     Parallel builds (using "make -jN") would occasionally fail with error
10780     messages like
10781         include/autoconf.mk:212: *** missing separator.  Stop.
10782     Line numbers and affected boards were changing. Obviously some
10783     Makefiles included autoconf.mk while it was still being written to.
10784     As a fix, we now write to a temporary file first and then rename it,
10785     so that it is really ready to use as soon as it appears.
10786
10787     Signed-off-by: Wolfgang Denk <wd@denx.de>
10788
10789 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
10790 Author: Wolfgang Denk <wd@denx.de>
10791 Date:   Tue Dec 16 01:02:17 2008 +0100
10792
10793     Coding style cleanup, update CHANGELOG.
10794
10795     Signed-off-by: Wolfgang Denk <wd@denx.de>
10796
10797 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
10798 Author: Mike Frysinger <vapier@gentoo.org>
10799 Date:   Thu Dec 11 18:39:08 2008 -0500
10800
10801     spi/stmicro: fix debug() display of cmd
10802
10803     The stmicro_wait_ready() func tries to show the actual opcode that was sent
10804     to the device, but instead it displays the array pointer.  Fix it to pull
10805     out the opcode from the start of the array.
10806
10807     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10808
10809 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
10810 Author: Mike Frysinger <vapier@gentoo.org>
10811 Date:   Thu Dec 11 06:23:37 2008 -0500
10812
10813     env_sf: support embedded environments
10814
10815     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
10816     size is larger than the env size, then it means the env is embedded in a
10817     block.  So we have to save/restore the part of the sector which is not the
10818     environment.  Previously, saving the environment in SPI flash in this
10819     setup would probably brick the board as the rest of the sector tends to
10820     contain actual U-Boot data/code.
10821
10822     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10823     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10824
10825 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
10826 Author: Timur Tabi <timur@freescale.com>
10827 Date:   Wed Dec 3 11:28:30 2008 -0600
10828
10829     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
10830
10831     All implementations of the functions i2c_reg_read() and
10832     i2c_reg_write() are identical. We can save space and simplify the
10833     code by converting these functions into inlines and putting them in
10834     i2c.h.
10835
10836     Signed-off-by: Timur Tabi <timur@freescale.com>
10837     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10838
10839 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
10840 Author: Dave Liu <daveliu@freescale.com>
10841 Date:   Fri Dec 5 15:36:14 2008 +0800
10842
10843     lib_ppc: rework the flush_cache
10844
10845     - It is possible to miss flush/invalidate the last
10846       cache line, we fix it at here.
10847     - add the volatile and memory clobber.
10848
10849     They are pointed by Scott Wood.
10850
10851     Signed-off-by: Dave Liu <daveliu@freescale.com>
10852
10853 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
10854 Author: Kumar Gala <galak@kernel.crashing.org>
10855 Date:   Sat Dec 13 17:20:28 2008 -0600
10856
10857     Introduce addr_map library
10858
10859     Add a library that helps in translating between virtual and physical
10860     addresses.  This library can be useful as a simple means to implement
10861     map_physmem() and virt_to_phys() for platforms that need functionality
10862     beyond the simple 1:1 mapping.
10863
10864     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10865
10866 commit 65e43a10631537dcb92c302d36301a12308216c3
10867 Author: Kumar Gala <galak@kernel.crashing.org>
10868 Date:   Sat Dec 13 17:20:27 2008 -0600
10869
10870     Introduce virt_to_phys()
10871
10872     virt_to_phys() returns the physical address given a virtual. In most
10873     cases this will be just the input value as the vast majority of
10874     systems run in a 1:1 mode.
10875
10876     However in systems that are not running this way it should report the
10877     physical address or ~0 if no mapping exists for the given virtual
10878     address.
10879
10880     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10881
10882 commit 45845301af3de8675c1f7bbc815c6de35452605a
10883 Author: Yuri Tikhonov <yur@emcraft.com>
10884 Date:   Sun Dec 7 22:12:50 2008 +0100
10885
10886     POST Make: fix the sub-dir dependencies missing.
10887
10888     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
10889
10890 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
10891 Author: Martin Michlmayr <tbm@cyrius.com>
10892 Date:   Wed Aug 6 14:44:05 2008 +0300
10893
10894     Fix a typo in fw_env.config
10895
10896     Reported-by: Martin Michlmayr <tbm@cyrius.com>
10897     Signed-off-by: Wolfgang Denk <wd@denx.de>
10898
10899 commit ba490b7761c62b549c222a9723e532dc801a3899
10900 Author: Peter Tyser <ptyser@xes-inc.com>
10901 Date:   Mon Dec 1 16:22:45 2008 -0600
10902
10903     Remove unused CONFIG_ADDR_STREAMING defines
10904
10905     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10906
10907 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
10908 Author: Peter Tyser <ptyser@xes-inc.com>
10909 Date:   Mon Nov 24 11:54:47 2008 -0600
10910
10911     cmd_mem: Remove unused variable
10912
10913     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10914
10915 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
10916 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10917 Date:   Sun Dec 14 10:29:39 2008 +0100
10918
10919     Fix new found CFG_
10920
10921     Also fix some minor typos.
10922
10923     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10924     Signed-off-by: Wolfgang Denk <wd@denx.de>
10925
10926 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
10927 Author: Sergei Poselenov <sposelenov@emcraft.com>
10928 Date:   Fri Sep 19 12:07:34 2008 +0200
10929
10930     Remove compiler warning: target CPU does not support interworking
10931
10932     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
10933
10934     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
10935     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10936
10937 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
10938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10939 Date:   Mon Nov 24 13:33:51 2008 +0100
10940
10941     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
10942
10943     FDT support is used for both FIT style images and for architectures
10944     that can pass a fdt blob to an OS (ppc, m68k, sparc).
10945
10946     For other architectures and boards which do not pass a fdt blob to an
10947     OS but want to use the new uImage format, we just need FIT support.
10948
10949     Now we can have the 4 following configurations :
10950
10951     1) FIT only             CONFIG_FIT
10952     2) fdt blob only        CONFIG_OF_LIBFDT
10953     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
10954     4) none                 none
10955
10956     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10957
10958 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
10959 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10960 Date:   Wed Dec 10 15:13:32 2008 +0100
10961
10962     ppc4xx: Disable EEPROM write access on PMC440 boards
10963
10964     This patch disables EEPROM wrtie access by default on PMC440 board.
10965
10966     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10967
10968 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
10969 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10970 Date:   Wed Dec 10 15:12:56 2008 +0100
10971
10972     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
10973
10974     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10975
10976 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
10977 Author: Stefan Roese <sr@denx.de>
10978 Date:   Tue Nov 18 16:36:12 2008 +0100
10979
10980     MIPS: Flush data cache upon relocation
10981
10982     This patch now adds a flush to the data cache upon relocation. The
10983     current implementation is missing this. Only a comment states that it
10984     should be done. So let's really do it now.
10985
10986     Signed-off-by: Stefan Roese <sr@denx.de>
10987     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10988
10989 commit 44174343688dba32571a34550dba08971c65fef1
10990 Author: Stefan Roese <sr@denx.de>
10991 Date:   Tue Nov 18 16:36:22 2008 +0100
10992
10993     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
10994
10995     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
10996     enables support for boards where the lowlevel initialization is
10997     already done when U-Boot runs (e.g. via OnChip ROM).
10998
10999     This will be used in the upcoming VCTH board support.
11000
11001     Signed-off-by: Stefan Roese <sr@denx.de>
11002     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11003
11004 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
11005 Author: Stefan Roese <sr@denx.de>
11006 Date:   Wed Nov 12 13:18:02 2008 +0100
11007
11008     MIPS: Add board_early_init_f() to init_sequence
11009
11010     This patch adds the board_early_init_f() call to the MIPS init
11011     sequence. A weak dummy implementation is also added which can be
11012     overridden by a board specific version.
11013
11014     This will be used by the upcoming VCTH board support.
11015
11016     Signed-off-by: Stefan Roese <sr@denx.de>
11017     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11018
11019 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
11020 Author: Stefan Roese <sr@denx.de>
11021 Date:   Wed Nov 12 13:18:19 2008 +0100
11022
11023     MIPS: Add onenand_init() to board.c and move nand_init()
11024
11025     This patch adds a call to onenand_init() for OneNAND support and moves
11026     the nand_init() call to an earlier place, so that the environment can
11027     be used from NAND and OneNAND.
11028
11029     Signed-off-by: Stefan Roese <sr@denx.de>
11030     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11031
11032 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
11033 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11034 Date:   Tue Dec 9 11:32:46 2008 +0900
11035
11036     sh: Update sh2/sh2a timer
11037
11038     Renesas SH2/SH2A timer broken.
11039     This patch fix timer function.
11040
11041     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11042     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11043
11044 commit a319f1496210117b73198e3d889ffffaf6825d00
11045 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11046 Date:   Fri Dec 5 07:27:37 2008 +0100
11047
11048     sh: r2dplus fix register access
11049
11050     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11051     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11052
11053 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
11054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11055 Date:   Tue Dec 2 07:40:03 2008 +0100
11056
11057     sh: r2dplus/lowlevel_init: coding style fix
11058
11059     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11060     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11061
11062 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
11063 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11064 Date:   Tue Nov 25 11:05:19 2008 +0900
11065
11066     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
11067
11068     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
11069     CACHE_OC_WAY_SHIFT every CPU.
11070     This patch corrects these values.
11071
11072     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11073     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11074
11075 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
11076 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11077 Date:   Thu Nov 20 16:44:42 2008 +0900
11078
11079     sh: Update sh timer function
11080
11081     Change to write/readX function and fix timer problem.
11082
11083     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11084     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11085
11086 commit b81786cff476c41e332eaeb679158f6527cd67d4
11087 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11088 Date:   Tue Nov 4 11:58:58 2008 +0900
11089
11090     sh: Migo-R: Update BSC value
11091
11092     A value of BSC CS4 was wrong, Fixed it.
11093
11094     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11095     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11096
11097 commit 5783758fd260a02f44566ad8f29f899565cd0403
11098 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11099 Date:   Mon Nov 17 16:52:09 2008 +0900
11100
11101     sh: Update ms7722se board config
11102
11103     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11104     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11105
11106 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
11107 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11108 Date:   Mon Nov 17 16:53:09 2008 +0900
11109
11110     sh: Update SuperH serial driver
11111
11112     The address of SCFSR register is wrong at SH7720/SH7721.
11113     This patch fix this.
11114
11115     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11116     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11117
11118 commit 9a1d3557dcd47365c12eeab584b822e57d994352
11119 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11120 Date:   Tue Nov 11 22:20:15 2008 +0100
11121
11122     sh: fix rsk7203 and MigoR out of tree build
11123
11124     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11125     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11126
11127 commit 1951f847f0a851853871b613ad7cf21a5242226c
11128 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11129 Date:   Wed Dec 10 14:41:25 2008 +0100
11130
11131     ppc4xx: Update TEXT_BASE for CPCI405 boards
11132
11133     This patch fixes building U-Boot for CPCI405 boards.
11134
11135     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11136     Signed-off-by: Stefan Roese <sr@denx.de>
11137
11138 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
11139 Author: Stefan Roese <sr@denx.de>
11140 Date:   Tue Dec 9 20:08:01 2008 +0100
11141
11142     ppc4xx: Remove some features from ALPR to fit into 256k again
11143
11144     Signed-off-by: Stefan Roese <sr@denx.de>
11145
11146 commit 3b089e4f889a2902449d55e081c886ae607cae89
11147 Author: Stefan Roese <sr@denx.de>
11148 Date:   Wed Dec 10 10:32:59 2008 +0100
11149
11150     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
11151
11152     With this patch we set the type back to NONE upon failing UBI partition
11153     initialization. Otherwise further calls to the UBI subsystem would try
11154     to really access the non-existing UBI partition.
11155
11156     Thanks to Michael Lawnick for pointing this out.
11157
11158     Signed-off-by: Stefan Roese <sr@denx.de>
11159
11160 commit 817329351639a8895cd9b87b33aeff043f3d5a44
11161 Author: Stefan Roese <sr@denx.de>
11162 Date:   Wed Dec 10 10:28:33 2008 +0100
11163
11164     UBI: Return -ENOMEM upon failing malloc
11165
11166     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
11167     failing malloc().
11168
11169     Signed-off-by: Stefan Roese <sr@denx.de>
11170
11171 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
11172 Author: Ben Warren <biggerbadderben@gmail.com>
11173 Date:   Tue Dec 9 23:34:15 2008 -0800
11174
11175     Fix compile error in building MBX860T.
11176
11177     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11178
11179 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
11180 Author: Michal Simek <monstr@monstr.eu>
11181 Date:   Tue Nov 25 11:42:20 2008 +0100
11182
11183     microblaze: Remove XUPV2P board
11184
11185     ---
11186
11187     Microblaze platforms use generic settings and to have
11188     many platforms is confusing that's why I decided to remove this
11189     platform from U-BOOT. ml401 tree is sufficient for covering
11190     all Microblaze platforms.
11191
11192     This change will go through microblaze custodian tree.
11193
11194 commit 99ba6f353582720defff6e6e6761dc455a207d31
11195 Author: Michal Simek <monstr@monstr.eu>
11196 Date:   Mon Nov 24 18:25:41 2008 +0100
11197
11198     microblaze: Remove CONFIG_LIBFDT due to error in common files
11199
11200 commit e7d591e823a991513833af7030468409e25a3b13
11201 Author: Michal Simek <monstr@monstr.eu>
11202 Date:   Mon Nov 24 11:43:00 2008 +0100
11203
11204     microblaze: Fix ml401 uart16550 setting
11205
11206     Signed-off-by: Michal Simek <monstr@monstr.eu>
11207
11208 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
11209 Author: Michal Simek <monstr@monstr.eu>
11210 Date:   Mon Nov 24 11:38:22 2008 +0100
11211
11212     microblaze: Set up relocation is done
11213
11214 commit bcb6dd9187d4b23c748704767bd12d20c829e996
11215 Author: Mike Frysinger <vapier@gentoo.org>
11216 Date:   Tue Dec 9 23:20:31 2008 -0500
11217
11218     tools/netconsole: new script for working with netconsole over UDP
11219
11220     While the doc/README.NetConsole does have a snippet for people to
11221     create their own netcat script, it's a lot easier to make a simple
11222     dedicated script and tell people to use it.
11223
11224     Also spruce it up a bit to make it user friendly.
11225
11226     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11227
11228 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
11229 Author: Sonic Zhang <Sonic.Zhang@analog.com>
11230 Date:   Tue Dec 9 23:20:18 2008 -0500
11231
11232     fs/fat: handle FAT on SATA
11233
11234     The FAT file system driver should also handle FAT on SATA devices.
11235
11236     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
11237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11238
11239 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
11240 Author: Ben Warren <biggerbadderben@gmail.com>
11241 Date:   Tue Dec 9 23:26:31 2008 -0800
11242
11243     Fix compile error in building MBX860T.
11244     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
11245
11246     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11247
11248 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
11249 Author: Jerry Van Baren <gvb.uboot@gmail.com>
11250 Date:   Mon Nov 24 08:15:02 2008 -0500
11251
11252     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
11253
11254     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
11255     following warnings from FDT:
11256
11257     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
11258     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
11259
11260     Fix: Protect the definition of uintptr_t when compiling on the host
11261     system.
11262
11263     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
11264
11265 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
11266 Author: Graeme Russ <graeme.russ@gmail.com>
11267 Date:   Sat Nov 22 08:43:29 2008 +1100
11268
11269     Moved sc520 PCI definitions to stand-alone file
11270
11271     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
11272
11273 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
11274 Author: Graeme Russ <graeme.russ@gmail.com>
11275 Date:   Sat Nov 22 08:43:21 2008 +1100
11276
11277     Fixed path to sc520 SSI include file
11278
11279     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
11280
11281 commit d4f70da544c33db3e4fce6473dea4ecca4322545
11282 Author: Graeme Russ <graeme.russ@gmail.com>
11283 Date:   Fri Nov 21 06:28:05 2008 +1100
11284
11285     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
11286
11287     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
11288
11289 commit c034075a713b60e654c64e88e87da29440f31bb4
11290 Author: Stefan Roese <sr@denx.de>
11291 Date:   Wed Nov 12 13:30:10 2008 +0100
11292
11293     serial: Add vcth UART driver
11294
11295     This patch adds the UART driver for the upcoming VCTH board support.
11296
11297     Signed-off-by: Stefan Roese <sr@denx.de>
11298
11299 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
11300 Author: Ilya Yanok <yanok@emcraft.com>
11301 Date:   Thu Nov 13 19:49:36 2008 +0300
11302
11303     jffs2: cache data_crc results
11304
11305     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
11306     jffs2_1pass_read_inode() data_crc is going to be calculated on each
11307     inode access. This patch adds caching of data_crc() results. There
11308     is no significant improvement in speed (because of flash access
11309     caching added in previous patch I think, crc in RAM is really fast)
11310     but this patch impacts memory usage -- every b_node structure uses
11311     12 bytes instead of 8.
11312
11313     Signed-off-by: Alexey Neyman <avn@emcraft.com>
11314     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11315
11316 commit 9b7076229ec6a958bd835ab70745f7676297ce82
11317 Author: Ilya Yanok <yanok@emcraft.com>
11318 Date:   Thu Nov 13 19:49:35 2008 +0300
11319
11320     jffs2: summary support
11321
11322     This patch adds support for reading fs information from summary
11323     node instead of scanning full eraseblock.
11324
11325     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11326
11327 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
11328 Author: Ilya Yanok <yanok@emcraft.com>
11329 Date:   Thu Nov 13 19:49:34 2008 +0300
11330
11331     jffs2: add buffer to cache flash accesses
11332
11333     With this patch JFFS2 code allocates memory buffer of max_totlen size
11334     (size of the largest node, calculated during scan time) and uses it to
11335     store entire node. Speeds up loading. If malloc fails we use old ways
11336     to do things.
11337
11338     Signed-off-by: Alexey Neyman <avn@emcraft.com>
11339     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11340
11341 commit 8a36d31f72411144ac0412ee7e1880e801acd754
11342 Author: Ilya Yanok <yanok@emcraft.com>
11343 Date:   Thu Nov 13 19:49:33 2008 +0300
11344
11345     jffs2: rewrite jffs2 scanning code based on Linux one
11346
11347     Rewrites jffs2_1pass_build_lists() function in style of Linux's
11348     jffs2_scan_medium() and jffs2_scan_eraseblock().
11349     This includes:
11350      - Caching flash acceses
11351      - Smart dealing with free space
11352
11353     Signed-off-by: Alexey Neyman <avn@emcraft.com>
11354     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11355
11356 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
11357 Author: Ilya Yanok <yanok@emcraft.com>
11358 Date:   Thu Nov 13 19:49:32 2008 +0300
11359
11360     jffs2: add sector_size field to part_info structure
11361
11362     This patch adds sector_size field to part_info structure (used
11363     by new JFFS2 code).
11364
11365     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11366
11367 commit f73846956778a7dfee83403ef9747aff77198848
11368 Author: Ilya Yanok <yanok@emcraft.com>
11369 Date:   Thu Nov 13 19:49:31 2008 +0300
11370
11371     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
11372
11373     We need to update i_version inside cycle to find really latest version
11374     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
11375     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
11376
11377     Signed-off-by: Alexey Neyman <avn@emcraft.com>
11378     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
11379
11380 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
11381 Author: Wolfgang Denk <wd@denx.de>
11382 Date:   Tue Dec 9 23:13:51 2008 +0100
11383
11384     evb64260: fix "cast to pointer from integer of different size" warnings
11385
11386     Signed-off-by: Wolfgang Denk <wd@denx.de>
11387
11388 commit d2776827315c3d469b8cb4cec14d58877798daa2
11389 Author: Stefan Althoefer <stefan.althoefer@web.de>
11390 Date:   Sun Dec 7 19:39:11 2008 +0100
11391
11392     USB: descriptor handling
11393
11394     Hi,
11395
11396     I found a bug when working with the u-boot USB subsystem on IXP425 processor
11397     (big endian Xscale aka ARMv5).
11398     I recognized that the second usb_endpoint_descriptor of the attached memory
11399     stick was corrupted.
11400
11401     The reason for this are the packed structures below (either u-boot and
11402     u-boot-usb):
11403
11404     --------------
11405     /* Endpoint descriptor */
11406     struct usb_endpoint_descriptor {
11407         unsigned char  bLength;
11408         unsigned char  bDescriptorType;
11409         unsigned char  bEndpointAddress;
11410         unsigned char  bmAttributes;
11411         unsigned short wMaxPacketSize;
11412         unsigned char  bInterval;
11413         unsigned char  bRefresh;
11414         unsigned char  bSynchAddress;
11415
11416     } __attribute__ ((packed));
11417     /* Interface descriptor */
11418     struct usb_interface_descriptor {
11419         unsigned char  bLength;
11420         unsigned char  bDescriptorType;
11421         unsigned char  bInterfaceNumber;
11422         unsigned char  bAlternateSetting;
11423         unsigned char  bNumEndpoints;
11424         unsigned char  bInterfaceClass;
11425         unsigned char  bInterfaceSubClass;
11426         unsigned char  bInterfaceProtocol;
11427         unsigned char  iInterface;
11428
11429         unsigned char  no_of_ep;
11430         unsigned char  num_altsetting;
11431         unsigned char  act_altsetting;
11432         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
11433     } __attribute__ ((packed));
11434     ------------
11435
11436     As usb_endpoint_descriptor is only 7byte in length, the start of all
11437     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
11438     of these structures also not word aligned.
11439
11440     ARMv5 Architecture however does not support non-aligned multibyte
11441     data type (see A2.8 of ARM Architecture Reference Manual).
11442
11443     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
11444     Signed-off-by: Remy Böhmer <linux@bohmer.net>
11445
11446 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
11447 Author: Kumar Gala <galak@kernel.crashing.org>
11448 Date:   Tue Dec 9 10:27:33 2008 -0600
11449
11450     drivers/fsl_pci_init: Fix compile warning
11451
11452     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
11453     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
11454
11455     The check only makes sense if we are CONFIG_PHYS_64BIT
11456
11457     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11458
11459 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
11460 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11461 Date:   Sun Dec 7 09:45:35 2008 +0100
11462
11463     usbtty/omap: update to current API
11464
11465     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11466     Signed-off-by: Remy Böhmer <linux@bohmer.net>
11467
11468 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
11469 Author: Anatolij Gustschin <agust@denx.de>
11470 Date:   Tue Dec 9 17:52:05 2008 +0100
11471
11472     video: fix FADS823 and RRvision compiling issues
11473
11474     Since commit 561858ee building for FADS823 and RRvision
11475     doesn't work. Let's include version.h and timestamp.h
11476     unconditionally to fix the problem.
11477
11478     Signed-off-by: Anatolij Gustschin <agust@denx.de>
11479
11480 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
11481 Author: Stefan Roese <sr@denx.de>
11482 Date:   Tue Dec 2 10:53:47 2008 +0100
11483
11484     UBI: Fix size parsing in "ubi create"
11485
11486     Signed-off-by: Stefan Roese <sr@denx.de>
11487
11488 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
11489 Author: Stefan Roese <sr@denx.de>
11490 Date:   Thu Nov 27 14:07:09 2008 +0100
11491
11492     UBI: Enable re-initializing of the "ubi part" command
11493
11494     With this patch now, the user can call "ubi part" multiple times to
11495     re-connect the UBI device to another MTD partition.
11496
11497     Signed-off-by: Stefan Roese <sr@denx.de>
11498
11499 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
11500 Author: Stefan Roese <sr@denx.de>
11501 Date:   Thu Nov 27 14:05:15 2008 +0100
11502
11503     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
11504
11505     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
11506     first call of add_mtd_partitions(). Otherwise this won't work on platforms
11507     where the relocation is broken (like MIPS or PPC).
11508
11509     Signed-off-by: Stefan Roese <sr@denx.de>
11510
11511 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
11512 Author: Trent Piepho <tpiepho@freescale.com>
11513 Date:   Wed Nov 12 17:29:48 2008 -0800
11514
11515     Section name should be ".data", not "data"
11516
11517     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
11518     Signed-off-by: Wolfgang Denk <wd@denx.de>
11519
11520 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
11521 Author: Wolfgang Denk <wd@denx.de>
11522 Date:   Tue Dec 9 00:39:08 2008 +0100
11523
11524     MAKEALL: Automatically use parallel builds
11525
11526     Add logic to the MAKEALL script to determine the number of CPU cores
11527     on the system, and run a parallel build if there is more than one.
11528     Usually this significantrly accelerates builds.
11529
11530     Allow to manually adjust the number of parallel make jobs by using
11531     the "BUILD_NCPUS" environment variable.
11532
11533     Signed-off-by: Wolfgang Denk <wd@denx.de>
11534
11535 commit 268405fa7c44156c5192a70779920c70906af8d6
11536 Author: Wolfgang Denk <wd@denx.de>
11537 Date:   Tue Dec 9 00:24:30 2008 +0100
11538
11539     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
11540
11541     Signed-off-by: Wolfgang Denk <wd@denx.de>
11542
11543 commit 153176a9414120ca1736f3cc4951623d6e14e6af
11544 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11545 Date:   Tue Nov 11 06:08:59 2008 +0100
11546
11547     avr32/bootm: remove unused variable 'ret'
11548
11549     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11550     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11551
11552 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
11553 Author: Peter Tyser <ptyser@xes-inc.com>
11554 Date:   Wed Nov 12 13:06:48 2008 -0600
11555
11556     Remove unneeded CONFIG_SHELL references
11557
11558     Make should be using the bash shell by default which makes
11559     CONFIG_SHELL unnecessary
11560
11561     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11562
11563 commit cf7a7b99794bac936899819b95539be1dbd71708
11564 Author: Peter Tyser <ptyser@xes-inc.com>
11565 Date:   Wed Nov 12 12:33:20 2008 -0600
11566
11567     Use bash for default GNU Make shell application
11568
11569     Some Make script commands rely on bash-specific features like brace
11570     expansion, so default to bash for the SHELL variable with a fallback
11571     to the standard sh shell
11572
11573     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11574
11575 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
11576 Author: Heiko Schocher <hs@denx.de>
11577 Date:   Wed Nov 12 09:50:45 2008 +0100
11578
11579     jffs2: rename devices_init () in common/jffs2.c
11580
11581     rename devices_init () in common/jffs2.c to
11582     jffs2_devices_init (), because there is also a
11583     devices_init () in common/devices.c.
11584
11585     Signed-off-by: Heiko Schocher <hs@denx.de>
11586
11587 commit af5eb847a10f1037590001355d88bab3fe7be48b
11588 Author: Daniel Hellstrom <daniel@gaisler.com>
11589 Date:   Mon Nov 10 12:46:20 2008 +0000
11590
11591     SPARC: Fixed compiler error introduced by commit c160a9544743
11592
11593     This patch fixes a build error for the SPARC platform. It was
11594     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
11595
11596     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
11597
11598 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
11599 Author: Gary Jennejohn <garyj@denx.de>
11600 Date:   Sun Nov 9 12:50:59 2008 +0100
11601
11602     mgsuvd add the board-specific part of the HDLC driver
11603
11604     Signed-off-by: Gary Jennejohn <garyj@denx.de>
11605
11606 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
11607 Author: Gary Jennejohn <garyj@denx.de>
11608 Date:   Sun Nov 9 12:45:03 2008 +0100
11609
11610     mgcoge add the board-specific part of the HDLC driver
11611
11612     Signed-off-by: Gary Jennejohn <garyj@denx.de>
11613
11614 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
11615 Author: Gary Jennejohn <garyj@denx.de>
11616 Date:   Sun Nov 9 12:36:15 2008 +0100
11617
11618     keymile add the common parts of the HDLC driver
11619
11620     This implements the ICN protocol used across the backplane and is
11621     needed by all the keymile boards.
11622
11623     Signed-off-by: Gary Jennejohn <garyj@denx.de>
11624
11625 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
11626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11627 Date:   Fri Nov 7 22:46:22 2008 +0100
11628
11629     drivers/bios_emulator: Move conditional compilation to Makefile
11630
11631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11632
11633 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
11634 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
11635 Date:   Thu Nov 6 14:01:51 2008 -0500
11636
11637     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
11638
11639     Corrected endian order printing for compact flash serial number.
11640
11641     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
11642
11643 commit 16a28ef219c27423a1ef502f19070c4d375079b8
11644 Author: Gary Jennejohn <garyj@denx.de>
11645 Date:   Thu Nov 6 15:04:23 2008 +0100
11646
11647     IOMUX: Add console multiplexing support.
11648
11649     Modifications to support console multiplexing.  This is controlled using
11650     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
11651
11652     This allows a user to specify multiple console devices in the environment
11653     with a command like this: setenv stdin serial,nc.  As a result, the user can
11654     enter text on both the serial and netconsole interfaces.
11655
11656     All devices - stdin, stdout and stderr - can be set in this manner.
11657
11658     1) common/iomux.c and include/iomux.h contain the environment setting
11659     implementation.
11660     2) doc/README.iomux contains a somewhat more detailed description.
11661     3) The implementation in (1) is called from common/cmd_nvedit.c to
11662     handle setenv and from common/console.c to handle initialization of
11663     input/output devices at boot time.
11664     4) common/console.c also contains the code needed to poll multiple console
11665     devices for input and send output to all devices registered for output.
11666     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
11667     when CONFIG_SYS_CONSOLE_MUX is set.
11668
11669     Signed-off-by: Gary Jennejohn <garyj@denx.de>
11670
11671 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
11672 Author: Mike Frysinger <vapier@gentoo.org>
11673 Date:   Tue Nov 4 16:03:46 2008 -0500
11674
11675     strings: use puts() rather than printf()
11676
11677     When running `strings` on really long strings, the stack tends to get
11678     smashed due to printf().  Switch to puts() instead since we're only passing
11679     the data through.
11680
11681     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11682
11683 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
11684 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
11685 Date:   Mon Nov 3 22:16:18 2008 +0100
11686
11687     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
11688
11689     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
11690
11691 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
11692 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
11693 Date:   Mon Nov 3 22:15:34 2008 +0100
11694
11695     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
11696
11697     - fix size too small by one in sprintf
11698     - changed old (pre 2004) device name ibmEmac to emac
11699     - boot device may be overriden in board config
11700     - servername may be defined in board config
11701     - additional parameters may be defined in board config
11702     - fixed some line wrappings
11703     - replaced  redundant MAX define by max
11704
11705     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
11706
11707 commit e9084b23d16102f44ace24379a1c0c352497ef80
11708 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
11709 Date:   Mon Nov 3 22:14:36 2008 +0100
11710
11711     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
11712
11713     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
11714
11715 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
11716 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
11717 Date:   Mon Nov 3 22:13:47 2008 +0100
11718
11719     README: Document CONFIG_SYS parameters for vxworks
11720
11721     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
11722
11723 commit ace514837cac656e29c37a19569cb8ea83071126
11724 Author: Peter Tyser <ptyser@xes-inc.com>
11725 Date:   Fri Oct 31 11:12:38 2008 -0500
11726
11727     lcd: Let the board code show board-specific info cleanup
11728
11729     remove unneeded version.h from lcd.c
11730
11731     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11732     Signed-off-by: Wolfgang Denk <wd@denx.de>
11733
11734 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
11735 Author: Peter Tyser <ptyser@xes-inc.com>
11736 Date:   Mon Nov 3 09:30:59 2008 -0600
11737
11738     Update U-Boot's build timestamp on every compile
11739
11740     Use the GNU 'date' command to auto-generate a new U-Boot
11741     timestamp on every compile.
11742
11743     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11744
11745 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
11746 Author: Remy Bohmer <linux@bohmer.net>
11747 Date:   Thu Dec 4 22:25:57 2008 +0100
11748
11749     Remove redundant armv4 flag from arm926ejs compile flags
11750
11751     Currently the arm926ejs tree has the armv4 option set during compilation.
11752     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
11753
11754     Signed-off-by: Remy Bohmer <linux@bohmer.net>
11755
11756 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
11757 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
11758 Date:   Sat Dec 6 13:11:14 2008 +0100
11759
11760     at91: Choose environment variables location within make config target
11761
11762     This patch adds the possiblity to choose the media where the environment will
11763     be located. This allow to choose this fundamental configuration without editing
11764     config files.
11765
11766     Documentation file added.
11767
11768     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
11769     Acked-by: Stelian Pop <stelian@popies.net>
11770     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11771
11772 commit 1450c4a6682378567030414a9f1198c39b7730c7
11773 Author: Anatolij Gustschin <agust@denx.de>
11774 Date:   Mon Nov 3 15:30:34 2008 +0100
11775
11776     lwmon, tqm8xx: Fix build errors
11777
11778     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
11779     lcd: Let the board code show board-specific info
11780
11781     introduced some bugs which prevent U-Boot building
11782     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
11783     be defined in the board configuration.
11784
11785     Also "LCD enabled" building for TQM823L doesn't work
11786     since this commit.
11787
11788     This patch fixes above-mentioned issues.
11789
11790     Signed-off-by: Anatolij Gustschin <agust@denx.de>
11791
11792 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
11793 Author: Mike Frysinger <vapier@gentoo.org>
11794 Date:   Sun Nov 2 01:18:18 2008 -0400
11795
11796     ignore .gdb_history files
11797
11798     When using gdb, history files will often get generated.  So ignore them.
11799
11800     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11801
11802 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
11803 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11804 Date:   Fri Oct 31 12:26:55 2008 +0100
11805
11806     FPGA: move fpga drivers to drivers/fpga
11807
11808     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11809
11810 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
11811 Author: Peter Tyser <ptyser@xes-inc.com>
11812 Date:   Mon Dec 1 16:29:38 2008 -0600
11813
11814     net: Fix TftpStart() ip:filename bug
11815
11816     The TftpStart() function modifies the 'BootFile'
11817     string when 'BootFile' contains both an IP address
11818     and filename (eg 1.2.3.4:/path/file). This causes
11819     subsequent calls to TftpStart to incorrectly parse
11820     the TFTP filename and server IP address to use.
11821     For example:
11822
11823     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
11824     Speed: 100, half duplex
11825     Using eTSEC1 device
11826     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
11827                      ^^^^^^^^^^ CORRECT
11828     Filename '/home/ptyser/non_existant'.
11829               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
11830     Load address: 0x100000
11831     Loading: *
11832     TFTP error: 'File not found' (1)
11833     Starting again
11834
11835     eTSEC2: No link.
11836     Speed: 100, half duplex
11837     Using eTSEC1 device
11838     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
11839                      ^^^^^^^^^^ WRONG
11840     Filename '10.52.0.62'.
11841               ^^^^^^^^^^ WRONG
11842     Load address: 0x100000
11843     Loading: *
11844     TFTP error: 'File not found' (1)
11845     Starting again
11846
11847     TftpStart() was modified to not modify the 'BootFile' string.
11848
11849     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11850     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11851
11852 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
11853 Author: Peter Tyser <ptyser@xes-inc.com>
11854 Date:   Mon Dec 1 16:26:21 2008 -0600
11855
11856     net: Add additional IP fragmentation check
11857
11858     Ignore IP packets which have the "more fragments" flag bit
11859     set.  This flag indicates the IP packet is fragmented and
11860     must be ignored by U-Boot.
11861
11862     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11864
11865 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
11866 Author: Peter Tyser <ptyser@xes-inc.com>
11867 Date:   Mon Dec 1 16:26:20 2008 -0600
11868
11869     net: Define IP flag field values
11870
11871     These defines were pulled from the "Add simple
11872     IP/UDP fragmentation support" patch from Frank
11873     Haverkamp <haver@vnet.ibm.com>.
11874
11875     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11876     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11877
11878 commit 23afaba65ec5206757e589ef334a8b38168c045f
11879 Author: Anatolij Gustschin <agust@denx.de>
11880 Date:   Tue Dec 2 10:31:04 2008 +0100
11881
11882     net: tsec: Fix Marvell 88E1121R phy init
11883
11884     This patch tries to ensure that phy interrupt pin
11885     won't be asserted after booting. We experienced
11886     following issues with current 88E1121R phy init:
11887
11888     Marvell 88E1121R phy can be hardware-configured
11889     to share MDC/MDIO and interrupt pins for both ports
11890     P0 and P1 (e.g. as configured on socrates board).
11891     Port 0 interrupt pin will be shared by both ports
11892     in such configuration. After booting Linux and
11893     configuring eth0 interface, port 0 phy interrupts
11894     are enabled. After rebooting without proper eth0
11895     interface shutdown port 0 phy interrupts remain
11896     enabled so any change on port 0 (link status, etc.)
11897     cause assertion of the interrupt. Now booting Linux
11898     and configuring eth1 interface will cause permanent
11899     phy interrupt storm as the registered phy 1 interrupt
11900     handler doesn't acknowledge phy 0 interrupts. This
11901     of course should be fixed in Linux driver too.
11902
11903     Signed-off-by: Anatolij Gustschin <agust@denx.de>
11904     Acked-by: Andy Fleming <afleming@freescale.com>
11905     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11906
11907 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
11908 Author: Peter Tyser <ptyser@xes-inc.com>
11909 Date:   Tue Dec 2 12:59:51 2008 -0600
11910
11911     net: Fix download command parsing
11912
11913     When CONFIG_SYS_HUSH_PARSER is defined network download
11914     commands with 1 argument in the format 'tftp "/path/file"'
11915     do not work as expected. The hush command parser strips
11916     the quotes from "/path/file" which causes the network
11917     commands to interpret "/path/file" as an address
11918     instead of the intended filename.
11919
11920     The previous check for a leading quote in netboot_common()
11921     was replaced with a check which ensures only valid
11922     numbers are treated as addresses.
11923
11924     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11925     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11926
11927 commit 3c2c2f427905040c1513d0c51d637689cba48346
11928 Author: Remy Bohmer <linux@bohmer.net>
11929 Date:   Thu Nov 27 22:30:27 2008 +0100
11930
11931     Remove non-ascii characters from fat code
11932
11933     This code contains some non-ascii characters in comment lines and code.
11934     Most editors do not display those characters properly and editing those
11935     files results always in diffs at these places which are usually not required
11936     to be changed at all. This is error prone.
11937
11938     So, remove those weird characters and replace them by normal C-style
11939     equivalents for which the proper defines were already in the header.
11940
11941     Signed-off-by: Remy Bohmer <linux@bohmer.net>
11942
11943 commit dc889e865356497d3e495570118c2245ebce2631
11944 Author: Dave Liu <daveliu@freescale.com>
11945 Date:   Fri Nov 28 20:16:58 2008 +0800
11946
11947     85xx: fix the wrong DDR settings for MPC8572DS
11948
11949     The default DDR freq is 400MHz or 800M data rate,
11950     the old settings is pure wrong for the default case.
11951
11952     Signed-off-by: Dave Liu <daveliu@freescale.com>
11953     Acked-by: Andy Fleming <afleming@freescale.com>
11954
11955 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
11956 Author: Kumar Gala <galak@kernel.crashing.org>
11957 Date:   Mon Nov 24 10:29:26 2008 -0600
11958
11959     85xx: init gd as early as possible
11960
11961     Moved up the initialization of GD so C code like set_tlb() can use
11962     gd->flags to determine if we've relocated or not in the future.
11963
11964     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11965     Acked-by: Andy Fleming <afleming@freescale.com>
11966
11967 commit aed461af81012a398a205e9be67ab37667491838
11968 Author: Kumar Gala <galak@kernel.crashing.org>
11969 Date:   Mon Nov 24 10:29:25 2008 -0600
11970
11971     85xx: Fix relocation of CCSRBAR
11972
11973     If the virtual address for CCSRBAR is the same after relocation but
11974     the physical address is changing we'd end up having two TLB entries with
11975     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
11976     temp virt address to access the old CCSRBAR to relocate it.
11977
11978     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11979     Acked-by: Andy Fleming <afleming@freescale.com>
11980
11981 commit ea154a1781135d822eedee7567cc156089eae93c
11982 Author: Kumar Gala <galak@kernel.crashing.org>
11983 Date:   Mon Nov 24 10:25:14 2008 -0600
11984
11985     FSL: Moved BR_PHYS_ADDR for localbus to common header
11986
11987     The BR_PHYS_ADDR macro is useful on all machines that have local bus
11988     which is pretty much all 83xx/85xx/86xx chips.
11989
11990     Additionally most 85xx & 86xx will need it if they want to support
11991     36-bit physical addresses.
11992
11993     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11994     Acked-by: Andy Fleming <afleming@freescale.com>
11995
11996 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
11997 Author: Peter Tyser <ptyser@xes-inc.com>
11998 Date:   Mon Dec 1 13:47:12 2008 -0600
11999
12000     85xx: Add PORDEVSR_PCI1 define
12001
12002     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
12003
12004     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
12005
12006     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12007     Signed-off-by: Andy Fleming <afleming@freescale.com>
12008
12009 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
12010 Author: Becky Bruce <becky.bruce@freescale.com>
12011 Date:   Fri Nov 21 19:24:22 2008 -0600
12012
12013     drivers/fsl_pci_init: Fix inbound window mapping bug
12014
12015     The current code will cause the creation of a 4GB window
12016     starting at 0 if we have more than 4GB of RAM installed,
12017     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
12018     to return erroneous information. Limit the size to 4GB - 1;
12019     which causes the code to create one 2GB and one 1GB window
12020     instead.
12021
12022     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
12023     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12024     Acked-by: Andy Fleming <afleming@freescale.com>
12025
12026 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
12027 Author: Jon Loeliger <jdl@freescale.com>
12028 Date:   Thu Nov 20 15:36:48 2008 -0600
12029
12030     Removed unused CONFIG_L1_INIT_RAM symbol.
12031
12032     Prevent further viral propogation of the unused
12033     symbol CONFIG_L1_INIT_RAM by just removing it.
12034
12035     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12036     Acked-by: Andy Fleming <afleming@freescale.com>
12037
12038 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
12039 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
12040 Date:   Wed Oct 29 09:21:44 2008 -0500
12041
12042     fsl ddr skip interleaving if not supported.
12043
12044     Removed while(1) hang if memctl_intlv_ctl is set wrong.
12045     Remove embedded tabs from strings.
12046
12047     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
12048     Acked-by: Kumar Gala <galak@kernel.crashing.org>
12049     Acked-by: Andy Fleming <afleming@freescale.com>
12050
12051 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
12052 Author: Anatolij Gustschin <agust@denx.de>
12053 Date:   Thu Nov 13 18:08:57 2008 +0100
12054
12055     85xx: socrates: fix DDR SDRAM tlb entry configuration
12056
12057     since commit be0bd8234b9777ecd63c4c686f72af070d886517
12058     tlb entry for socrates DDR SDRAM will be reconfigured
12059     by setup_ddr_tlbs() from initdram() causing an
12060     inconsistency with previously configured DDR SDRAM tlb
12061     entry from tlb_table:
12062
12063     socrates>l2cam 7 9
12064     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
12065       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
12066       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
12067       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
12068
12069     This patch makes the presence of the DDR SDRAM tlb entry in
12070     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
12071     inconsistency.
12072
12073     Signed-off-by: Anatolij Gustschin <agust@denx.de>
12074     Acked-by: Andy Fleming <afleming@freescale.com>
12075
12076 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
12077 Author: Peter Tyser <ptyser@xes-inc.com>
12078 Date:   Tue Nov 11 10:17:10 2008 -0600
12079
12080     85xx: Add CPU 2 errata workaround to all 8548 boards
12081
12082     All mpc8548-based boards should implement the suggested workaround
12083     to CPU 2 errata. Without the workaround, its possible for the
12084     8548's core to hang while executing a msync or mbar 0 instruction
12085     and a snoopable transaction from an I/O master tagged to make
12086     quick forward progress is present.
12087
12088     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12089     Acked-by: Andy Fleming <afleming@freescale.com>
12090
12091 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
12092 Author: Dave Liu <daveliu@freescale.com>
12093 Date:   Tue Oct 28 17:53:45 2008 +0800
12094
12095     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
12096
12097     we need TLB entry for DDR at !SPD case.
12098
12099     Signed-off-by: Dave Liu <daveliu@freescale.com>
12100     Acked-by: Andy Fleming <afleming@freescale.com>
12101
12102 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
12103 Author: Dave Liu <daveliu@freescale.com>
12104 Date:   Tue Oct 28 17:53:38 2008 +0800
12105
12106     85xx: remove the unused ddr_enable_ecc in the board file
12107
12108     The DDR controller of 8548/8544/8568/8572/8536 processors
12109     have the ECC data init feature, and the new DDR code is
12110     using the feature, and we don't need the way with DMA to
12111     init memory any more.
12112
12113     Signed-off-by: Dave Liu <daveliu@freescale.com>
12114     Acked-by: Andy Fleming <afleming@freescale.com>
12115
12116 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
12117 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12118 Date:   Sun Nov 30 19:36:53 2008 +0100
12119
12120     at91rm9200dk: Fix typo
12121
12122     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12123
12124 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
12125 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12126 Date:   Sun Nov 30 19:36:50 2008 +0100
12127
12128     AT91: remove non supported board AT91RM9200DF macro
12129
12130     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12131
12132 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
12133 Author: Ilko Iliev <iliev@ronetix.at>
12134 Date:   Tue Dec 2 17:27:54 2008 +0100
12135
12136     mtd/dataflash.c: fix a problem with the last partition
12137
12138     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
12139     partition can be defined to use the area to the end of dataflash size.
12140     Now it is possible to have only one dataflash partition from 0 to the end
12141     of of dataflash size.
12142
12143     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12144
12145 commit 03f797793b124dccaae145b977d15d6cb9e74504
12146 Author: Ilko Iliev <iliev@ronetix.at>
12147 Date:   Tue Dec 2 17:20:17 2008 +0100
12148
12149     fix some coding style violations.
12150
12151     This patch fix some coding style violations.
12152
12153     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12154
12155 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
12156 Author: Stefan Roese <sr@denx.de>
12157 Date:   Thu Nov 27 14:11:37 2008 +0100
12158
12159     OneNAND: Add missing mtd info struct before calling onenand_erase()
12160
12161     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
12162     for use in UBI) via CONFIG_MTD_PARTITIONS.
12163
12164     Signed-off-by: Stefan Roese <sr@denx.de>
12165     Signed-off-by: Scott Wood <scottwood@freescale.com>
12166
12167 commit 29382d4064fbaff5daacff4c3209370fa5713966
12168 Author: Becky Bruce <becky.bruce@freescale.com>
12169 Date:   Thu Nov 20 16:43:52 2008 -0600
12170
12171     mpc8641: Fix error in README
12172
12173     I made some updates to the code that didn't make it into the
12174     README - fix this
12175
12176     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12177
12178 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
12179 Author: Jon Loeliger <jdl@freescale.com>
12180 Date:   Thu Nov 20 12:01:02 2008 -0600
12181
12182     Removed unused CONFIG_L1_INIT_RAM symbol.
12183
12184     Prevent further viral propogation of the unused
12185     symbol CONFIG_L1_INIT_RAM by just removing it.
12186
12187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12188
12189 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
12190 Author: Jon Loeliger <jdl@freescale.com>
12191 Date:   Thu Nov 20 14:02:56 2008 -0600
12192
12193     86xx: Fix non-64-bit compilation problems.
12194
12195     Introducing 64-bit (36-bit) support for the MPC8641HPCN
12196     failed to accomodate the other two 86xx boards.
12197     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
12198     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
12199     with nominal 32-bit values.
12200
12201     Signed-off-by: Jon Loeliger <jdl@freescale.com>
12202     Acked-by: Becky Bruce <becky.bruce@freescale.com>
12203
12204 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
12205 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12206 Date:   Wed Nov 26 17:40:37 2008 +0100
12207
12208     Remove obsolete command (apply afte USB style patch, 80 chars strict)
12209
12210     Remove USB obsolete commmand
12211
12212     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12213     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12214
12215 commit de39f8c19d7c12017248c49d432dcb81db68f724
12216 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12217 Date:   Wed Nov 26 17:41:34 2008 +0100
12218
12219     USB style patch, 80 chars strict
12220
12221     USB Code style patch
12222
12223     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
12224     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12225
12226 commit d10c5a87cb8affbb4d35a311370316d4383d598e
12227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12228 Date:   Fri Nov 7 22:46:21 2008 +0100
12229
12230     drivers/usb: Move conditional compilation to Makefile
12231
12232     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12233     Signed-off-by: Remy Böhmer <linux@bohmer.net>
12234
12235 commit 2077e348c2a84901022ad95311b47b70361e6daa
12236 Author: Scott Wood <scottwood@freescale.com>
12237 Date:   Tue Nov 25 10:47:02 2008 -0600
12238
12239     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
12240
12241     This caused the operation to be needlessly repeated if there were
12242     no bad blocks and no errors.
12243
12244     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
12245     Signed-off-by: Scott Wood <scottwood@freescale.com>
12246
12247 commit 89295028e7d8f7a524f485328279d72fdb102385
12248 Author: Michal Simek <monstr@monstr.eu>
12249 Date:   Mon Nov 24 12:09:50 2008 +0100
12250
12251     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
12252
12253     This BSP should be outside u-boot source tree.
12254     The second reason is that xilinx ppc405 was moved to generic platform.
12255
12256     Signed-off-by: Michal Simek <monstr@monstr.eu>
12257     Signed-off-by: Stefan Roese <sr@denx.de>
12258
12259 commit 24eea623d4974a169026a975ba12fb23d48154b1
12260 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12261 Date:   Mon Nov 24 15:11:10 2008 +0100
12262
12263     ppc4xx: Remove unused features
12264
12265     This patch disables some unused features from the PCI405 configuration
12266     to keep U-Boot image size below 192k.
12267
12268     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12269     Signed-off-by: Stefan Roese <sr@denx.de>
12270
12271 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
12272 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12273 Date:   Mon Nov 24 15:11:09 2008 +0100
12274
12275     ppc4xx: Use correct io accessors for PCI405
12276
12277     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12278     Signed-off-by: Stefan Roese <sr@denx.de>
12279
12280 commit 348c849d86a6f0785752b9bc497a34658713d1d1
12281 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12282 Date:   Mon Nov 24 15:11:08 2008 +0100
12283
12284     ppc4xx: Remove unused code from PCI405 code
12285
12286     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12287     Signed-off-by: Stefan Roese <sr@denx.de>
12288
12289 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
12290 Author: Heiko Schocher <hs@denx.de>
12291 Date:   Thu Nov 20 09:59:09 2008 +0100
12292
12293     powerpc, keymile boards: extract identical config options
12294
12295     This patch extracts the identical config options for the
12296     keymile boards mgcoge, mgsuvd and kmeter1 in a new
12297     common config file keymile-common.h.
12298
12299     Signed-off-by: Heiko Schocher <hs@denx.de>
12300     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12301
12302 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
12303 Author: Heiko Schocher <hs@denx.de>
12304 Date:   Fri Nov 21 08:29:40 2008 +0100
12305
12306     powerpc: keymile: Add a check for the PIGGY debug board
12307
12308     Check the presence of the PIGGY on the keymile boards mgcoge,
12309     mgsuvd and kmeter1. If the PIGGY is not present, dont register
12310     this Ethernet device.
12311
12312     Signed-off-by: Heiko Schocher <hs@denx.de>
12313     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12314
12315 commit 58c696eed839af894e0265064669c402dc28b371
12316 Author: Wolfgang Denk <wd@xpert.denx.de>
12317 Date:   Mon Nov 24 21:50:59 2008 +0100
12318
12319     AT91RM9200DK: fix broken boot from NOR flash
12320
12321     Signed-off-by: Wolfgang Denk <wd@denx.de>
12322
12323 commit 8052352f20b33bef8f9872fc983eac73d4693c38
12324 Author: Jens Scharsig <esw@bus-elektronik.de>
12325 Date:   Tue Nov 18 10:48:46 2008 +0100
12326
12327     at91rm9200: fix broken boot from nor flash
12328
12329     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
12330     CONFIG_AT91RM9200 is defined and nor preloader is used.
12331
12332     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
12333
12334 commit 25ea652e907516a283b38237e83712a918f125d7
12335 Author: Piotr Ziecik <kosmo@semihalf.com>
12336 Date:   Mon Nov 17 15:58:00 2008 +0100
12337
12338     UBI: Add proof-of-concept CFI flash support
12339
12340     With this patch UBI can be used on CFI flash chips.
12341
12342     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
12343     Signed-off-by: Stefan Roese <sr@denx.de>
12344
12345 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
12346 Author: Piotr Ziecik <kosmo@semihalf.com>
12347 Date:   Mon Nov 17 15:57:59 2008 +0100
12348
12349     mtd: Remove a printf() from add_mtd_device().
12350
12351     Remove a printf() from add_mtd_device(), which produces spurious output.
12352
12353     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
12354     Signed-off-by: Stefan Roese <sr@denx.de>
12355
12356 commit 91809ed51d8327a8dbbf29aa98a091154c282171
12357 Author: Piotr Ziecik <kosmo@semihalf.com>
12358 Date:   Mon Nov 17 15:57:58 2008 +0100
12359
12360     cfi-mtd: Add cfi-mtd driver.
12361
12362     Add cfi-mtd driver, which exports CFI flash to MTD layer.
12363     This allows CFI flash devices to be used from MTD layer.
12364
12365     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
12366     option. Initialization is done by calling cfi_mtd_init() from
12367     flash_init().
12368
12369     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
12370     Signed-off-by: Stefan Roese <sr@denx.de>
12371
12372 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
12373 Author: Piotr Ziecik <kosmo@semihalf.com>
12374 Date:   Mon Nov 17 15:49:32 2008 +0100
12375
12376     cfi_flash: Add interface for flash verbosity control
12377
12378     Add interface for flash verbosity control. It allows
12379     to disable output from low-level flash API. It is useful
12380     when calling these low-level functions from context other
12381     than flash commands (for example the MTD/CFI interface
12382     implmentation).
12383
12384     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
12385     Signed-off-by: Stefan Roese <sr@denx.de>
12386
12387 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
12388 Author: Piotr Ziecik <kosmo@semihalf.com>
12389 Date:   Thu Nov 20 15:17:38 2008 +0100
12390
12391     cfi_flash: Export flash_sector_size() function.
12392
12393     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
12394     so that it can be used in the upcoming cfi-mtd driver.
12395
12396     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
12397     Signed-off-by: Stefan Roese <sr@denx.de>
12398
12399 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
12400 Author: Stefan Roese <sr@denx.de>
12401 Date:   Mon Nov 17 14:45:22 2008 +0100
12402
12403     cfi_flash: Make all flash access functions weak
12404
12405     This patch defines all flash access functions as weak so that
12406     they can be overridden by board specific versions.
12407
12408     This will be used by the upcoming VCTH board support where the NOR
12409     FLASH unfortunately can't be accessed memory-mapped. Special
12410     accessor functions are needed here.
12411
12412     To enable this weak functions you need to define
12413     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
12414     Otherwise the "old" default functions will be used resulting
12415     in smaller code.
12416
12417     Signed-off-by: Stefan Roese <sr@denx.de>
12418     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12419
12420 commit a5c4067017631d903e1afa6ad615f0ce19fea517
12421 Author: Stefan Roese <sr@denx.de>
12422 Date:   Mon Nov 24 08:31:16 2008 +0100
12423
12424     UBI: Change parsing of size in commands to default to hex
12425
12426     Currently the size parameters of the UBI commands (e.g. "ubi write") are
12427     decoded as decimal instead of hex as default. This patch now interprets
12428     all these values consistantly as hex, as all other standard U-Boot commands
12429     do.
12430
12431     Signed-off-by: Stefan Roese <sr@denx.de>
12432
12433 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
12434 Author: Stefan Roese <sr@denx.de>
12435 Date:   Fri Nov 21 13:06:06 2008 +0100
12436
12437     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
12438
12439     Signed-off-by: Stefan Roese <sr@denx.de>
12440
12441 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
12442 Author: Yuri Tikhonov <yur@emcraft.com>
12443 Date:   Fri Nov 14 16:19:19 2008 +0300
12444
12445     ppc4xx: katmai: Change default config
12446
12447      This patch enables support for EXT2, and increases the
12448     CONFIG_SYS_BOOTMAPSZ size for the default configuration
12449     of the katmai boards to use them as the RAID-reference
12450     AMCC setups.
12451
12452      EXT2 enabling allows one to boot kernels from the EXT2
12453     formatted Compact Flash cards.
12454
12455      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
12456     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
12457     the memory area with DTB file (which is placed at the
12458     end of the bootmap area) will turn out to be overlapped
12459     with the BSS segment of the 256KB kernel, and zeroed
12460     in early_init() of Linux.
12461
12462      Actually, increasing of the bootmap size could be done
12463     via setting of the bootm_size U-Boot variable, but it looks
12464     like the current U-Boot implementation have some bootm_size-
12465     related functionality lost. In many places through the U-Boot
12466     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
12467     (instead of trying to read the corresponding value from the
12468     environment). The same is truth for the boot_jump_linux()
12469     function in lib_ppc/bootm.c, where U-Boot transfers control
12470     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
12471     value to the booting kernel.
12472
12473     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12474     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12475     Signed-off-by: Stefan Roese <sr@denx.de>
12476
12477 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
12478 Author: Dave Mitchell <dmitch71@gmail.com>
12479 Date:   Thu Nov 20 14:09:50 2008 -0600
12480
12481     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
12482
12483     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
12484     internal SRAM.
12485
12486     Adjusted internal SRAM initialization to match updated user
12487     manual recommendation.
12488
12489     OCM & ISRAM are now mapped as follows:
12490             physical        virtual         size
12491     ISRAM   0x4_0000_0000   0xE300_0000     256k
12492     OCM     0x4_0004_0000   0xE304_0000     64k
12493
12494     A single TLB was used for this mapping.
12495
12496     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
12497     Signed-off-by: Stefan Roese <sr@denx.de>
12498
12499 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
12500 Author: Dave Mitchell <dmitch71@gmail.com>
12501 Date:   Thu Nov 20 14:00:49 2008 -0600
12502
12503     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
12504
12505     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
12506     L2 cache DCRs from ppc440.h to this new header.
12507
12508     Also converted these DCR defines from lowercase to uppercase and
12509     modified referencing modules to use them.
12510
12511     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
12512     Signed-off-by: Stefan Roese <sr@denx.de>
12513
12514 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
12515 Author: Steven A. Falco <sfalco@harris.com>
12516 Date:   Thu Nov 20 14:37:57 2008 -0500
12517
12518     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
12519
12520     The definitions of bits in SDR_CFG are incorrect, and not used within
12521     U-Boot.  Therefore, they can be removed.
12522
12523     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
12524     and are unused, so they can be removed too.
12525
12526     A definition for SDR0_DDRCFG is added.
12527
12528     Signed-off-by: Steven A. Falco <sfalco@harris.com>
12529     Signed-off-by: Stefan Roese <sr@denx.de>
12530
12531 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
12532 Author: Dirk Behme <dirk.behme@gmail.com>
12533 Date:   Mon Nov 10 20:15:25 2008 +0100
12534
12535     ARM: OMAP: Convert IO macros
12536
12537     Convert IO macros to readx/writex.
12538
12539     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
12540
12541 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
12542 Author: Ilko Iliev <iliev@ronetix.at>
12543 Date:   Sun Nov 9 15:53:14 2008 +0100
12544
12545     lib_arm: do_bootm_linux() - correct a small mistake
12546
12547     This patch corrects a small bug in the "if" condition:
12548     the parameter "flag" is 0 and the "if" condition is always true.
12549     The result is - the boom command doesn't start the kernel.
12550     Affected targets: all arm based.
12551
12552     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12553
12554 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
12555 Author: Stelian Pop <stelian@popies.net>
12556 Date:   Sun Nov 9 00:14:46 2008 +0100
12557
12558     AT91: Enable PLLB for USB
12559
12560     At least some (old ?) versions of the AT91Bootstrap do not set up the
12561     PLLB correctly to 48 MHz in order to make USB host function correctly.
12562
12563     This patch sets up the PLLB to the same values Linux uses, and makes USB
12564     work ok on the following CPUs:
12565         - AT91CAP9
12566         - AT91SAM9260
12567         - AT91SAM9263
12568
12569     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
12570     the relevant AT91CAP9/AT91SAM9 atmel boards.
12571
12572     Signed-off-by: Stelian Pop <stelian@popies.net>
12573     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12574
12575 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
12576 Author: Stelian Pop <stelian@popies.net>
12577 Date:   Fri Nov 7 13:55:14 2008 +0100
12578
12579     AT91: Use AT91_CPU_CLOCK in displays
12580
12581     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
12582     speed in the LCD driver.
12583
12584     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
12585     corresponding board clocks.
12586
12587     Signed-off-by: Stelian Pop <stelian@popies.net>
12588
12589 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
12590 Author: Heiko Schocher <hs@denx.de>
12591 Date:   Thu Nov 20 09:57:47 2008 +0100
12592
12593     powerpc: 83xx: add support for the kmeter1 board
12594
12595     This patch adds support for the kmeter1 board from Keymile,
12596     based on a Freescale MPC8360 CPU.
12597
12598     - serial console on UART 1
12599     - 256 MB DDR2 RAM
12600     - 64 MB NOR Flash
12601     - Ethernet RMII Mode over UCC4
12602     - PHY SMSC LAN8700
12603
12604     Signed-off-by: Heiko Schocher <hs@denx.de>
12605     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12606
12607 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
12608 Author: Stefan Roese <sr@denx.de>
12609 Date:   Thu Nov 20 11:46:20 2008 +0100
12610
12611     ppc4xx: Clear all potentially pending exceptions in MCSR
12612
12613     This is needed on Canyonlands which still has an exception pending
12614     while running relocate_code(). This leads to a failure after trap_init()
12615     is moved to the top of board_init_r().
12616
12617     Signed-off-by: Stefan Roese <sr@denx.de>
12618
12619 commit facdad5f2602e899a01746916beddbf9e856b5ee
12620 Author: Heiko Schocher <hs@denx.de>
12621 Date:   Wed Nov 19 10:10:30 2008 +0100
12622
12623     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
12624
12625     Signed-off-by: Heiko Schocher <hs@denx.de>
12626     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12627
12628 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
12629 Author: Howard Gregory <Greg.Howard@freescale.com>
12630 Date:   Tue Nov 4 14:55:33 2008 +0800
12631
12632     mpc83xx: Improve the performance of DDR memory
12633
12634     modify the CAS timings. my understanding is that these
12635     settings decrease various wait times in the DDR interface.
12636     Because these wait times are in clock cycles, and the DDR
12637     clock on the 8315 RDB runs slower than on some other 83xx
12638     platforms, we can dial down these values without a problem,
12639     thereby decreasing the latency of memory a little.
12640
12641     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
12642     Signed-off-by: Dave Liu <daveliu@freescale.com>
12643     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12644
12645 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
12646 Author: Kyungmin Park <kyungmin.park@samsung.com>
12647 Date:   Fri Oct 24 14:55:33 2008 +0200
12648
12649     ARM: Add Apollon UBI support
12650
12651     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
12652     macro.
12653
12654     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12655     Signed-off-by: Stefan Roese <sr@denx.de>
12656
12657 commit 694a0b3f1c0accd0de94b89555155d69f8022824
12658 Author: Kyungmin Park <kyungmin.park@samsung.com>
12659 Date:   Wed Nov 19 11:47:05 2008 +0100
12660
12661     UBI: Add UBI command support
12662
12663     This patch adds these UBI commands:
12664
12665     ubi part [nand|onenand] [part] - Show or set current partition
12666     ubi info [l[ayout]] -Display volume and UBI layout information
12667     ubi create[vol] volume [size] [type] - Create volume name with size
12668     ubi write[vol] address volume size - Write volume from address with size
12669     ubi read[vol] address volume [size] - Read volume to address with size
12670     ubi remove[vol] volume - Remove volume
12671
12672     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12673     Signed-off-by: Stefan Roese <sr@denx.de>
12674
12675 commit 58be3a1056d88c6d05f3e914389282807e69923a
12676 Author: Kyungmin Park <kyungmin.park@samsung.com>
12677 Date:   Wed Nov 19 16:38:24 2008 +0100
12678
12679     UBI: Add basic UBI support to U-Boot (Part 8/8)
12680
12681     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12682     It's based on the Linux UBI version and basically has a "OS"
12683     translation wrapper that defines most Linux specific calls
12684     (spin_lock() etc.) into no-ops. Some source code parts have been
12685     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12686     this version with the Linux version and simplifies future UBI
12687     ports/bug-fixes from the Linux version.
12688
12689     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12690     Signed-off-by: Stefan Roese <sr@denx.de>
12691
12692 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
12693 Author: Kyungmin Park <kyungmin.park@samsung.com>
12694 Date:   Wed Nov 19 16:36:36 2008 +0100
12695
12696     UBI: Add basic UBI support to U-Boot (Part 7/8)
12697
12698     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12699     It's based on the Linux UBI version and basically has a "OS"
12700     translation wrapper that defines most Linux specific calls
12701     (spin_lock() etc.) into no-ops. Some source code parts have been
12702     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12703     this version with the Linux version and simplifies future UBI
12704     ports/bug-fixes from the Linux version.
12705
12706     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12707     Signed-off-by: Stefan Roese <sr@denx.de>
12708
12709 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
12710 Author: Kyungmin Park <kyungmin.park@samsung.com>
12711 Date:   Wed Nov 19 16:32:36 2008 +0100
12712
12713     UBI: Add basic UBI support to U-Boot (Part 6/8)
12714
12715     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12716     It's based on the Linux UBI version and basically has a "OS"
12717     translation wrapper that defines most Linux specific calls
12718     (spin_lock() etc.) into no-ops. Some source code parts have been
12719     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12720     this version with the Linux version and simplifies future UBI
12721     ports/bug-fixes from the Linux version.
12722
12723     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12724     Signed-off-by: Stefan Roese <sr@denx.de>
12725
12726 commit c91a719daa331b5856109313371e4ece5ec06d96
12727 Author: Kyungmin Park <kyungmin.park@samsung.com>
12728 Date:   Wed Nov 19 16:28:06 2008 +0100
12729
12730     UBI: Add basic UBI support to U-Boot (Part 5/8)
12731
12732     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12733     It's based on the Linux UBI version and basically has a "OS"
12734     translation wrapper that defines most Linux specific calls
12735     (spin_lock() etc.) into no-ops. Some source code parts have been
12736     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12737     this version with the Linux version and simplifies future UBI
12738     ports/bug-fixes from the Linux version.
12739
12740     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12741     Signed-off-by: Stefan Roese <sr@denx.de>
12742
12743 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
12744 Author: Kyungmin Park <kyungmin.park@samsung.com>
12745 Date:   Wed Nov 19 16:27:23 2008 +0100
12746
12747     UBI: Add basic UBI support to U-Boot (Part 4/8)
12748
12749     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12750     It's based on the Linux UBI version and basically has a "OS"
12751     translation wrapper that defines most Linux specific calls
12752     (spin_lock() etc.) into no-ops. Some source code parts have been
12753     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12754     this version with the Linux version and simplifies future UBI
12755     ports/bug-fixes from the Linux version.
12756
12757     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12758     Signed-off-by: Stefan Roese <sr@denx.de>
12759
12760 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
12761 Author: Kyungmin Park <kyungmin.park@samsung.com>
12762 Date:   Wed Nov 19 16:26:54 2008 +0100
12763
12764     UBI: Add basic UBI support to U-Boot (Part 3/8)
12765
12766     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12767     It's based on the Linux UBI version and basically has a "OS"
12768     translation wrapper that defines most Linux specific calls
12769     (spin_lock() etc.) into no-ops. Some source code parts have been
12770     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12771     this version with the Linux version and simplifies future UBI
12772     ports/bug-fixes from the Linux version.
12773
12774     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12775     Signed-off-by: Stefan Roese <sr@denx.de>
12776
12777 commit 961df83361aff9a14f226214224eb8a06e05ba24
12778 Author: Kyungmin Park <kyungmin.park@samsung.com>
12779 Date:   Wed Nov 19 16:25:44 2008 +0100
12780
12781     UBI: Add basic UBI support to U-Boot (Part 2/8)
12782
12783     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12784     It's based on the Linux UBI version and basically has a "OS"
12785     translation wrapper that defines most Linux specific calls
12786     (spin_lock() etc.) into no-ops. Some source code parts have been
12787     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12788     this version with the Linux version and simplifies future UBI
12789     ports/bug-fixes from the Linux version.
12790
12791     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12792     Signed-off-by: Stefan Roese <sr@denx.de>
12793
12794 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
12795 Author: Kyungmin Park <kyungmin.park@samsung.com>
12796 Date:   Wed Nov 19 16:23:06 2008 +0100
12797
12798     UBI: Add basic UBI support to U-Boot (Part 1/8)
12799
12800     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
12801     It's based on the Linux UBI version and basically has a "OS"
12802     translation wrapper that defines most Linux specific calls
12803     (spin_lock() etc.) into no-ops. Some source code parts have been
12804     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
12805     this version with the Linux version and simplifies future UBI
12806     ports/bug-fixes from the Linux version.
12807
12808     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12809     Signed-off-by: Stefan Roese <sr@denx.de>
12810
12811 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
12812 Author: Kyungmin Park <kyungmin.park@samsung.com>
12813 Date:   Wed Nov 19 16:20:36 2008 +0100
12814
12815     MTD: Add MTD paritioning infrastructure
12816
12817     This MTD part infrastructure will be used by the upcoming
12818     UBI support.
12819
12820     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12821     Signed-off-by: Stefan Roese <sr@denx.de>
12822
12823 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
12824 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
12825 Date:   Thu Oct 16 22:54:03 2008 +0530
12826
12827     Align end of bss by 4 bytes
12828
12829     Most of the bss initialization loop increments 4 bytes
12830     at a time. And the loop end is checked for an 'equal'
12831     condition. Make the bss end address aligned by 4, so
12832     that the loop will end as expected.
12833
12834     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
12835     Signed-off-by: Wolfgang Denk <wd@denx.de>
12836
12837 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
12838 Author: Becky Bruce <becky.bruce@freescale.com>
12839 Date:   Mon Nov 10 19:45:35 2008 -0600
12840
12841     mpc8641: fix address-cells default in old .dts detection
12842
12843     address-cells defaults to 2, not 1; so in the unlikely
12844     event that it isn't specified, this patch is required
12845     for correct operation.
12846
12847     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12848
12849 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
12850 Author: Becky Bruce <becky.bruce@freescale.com>
12851 Date:   Fri Oct 31 17:14:39 2008 -0500
12852
12853     lib_ppc: Move trap_init to occur earlier
12854
12855     Doing trap_init immediately once we're running from RAM
12856     means we're no longer dependent on the physical location of
12857     the flash on non-BookE platforms. Before trap_init, those
12858     platforms switch to real mode and go to 0xfff00100 on exception.
12859     After the switch, they go to 0x00000100  This makes it easier to
12860     move the flash location.
12861
12862     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12863
12864 commit d52082b12c6e545705a19433a2f4142526536189
12865 Author: Becky Bruce <becky.bruce@freescale.com>
12866 Date:   Fri Nov 7 13:46:19 2008 -0600
12867
12868     mpc8641: Try to detect old .dts files
12869
12870     Since we've changed the memory map of the board, be nice and
12871     add some checking to try to catch out-of-date .dts files.  We do
12872     this by checking the CCSRBAR location in the .dts and comparing
12873     it to the CCSRBAR location in u-boot.  If they don't match, a
12874     warning msg is printed.  This isn't foolproof, but it's simple and
12875     will catch most of the cases where an out-of-date .dts is present,
12876     including all of the cases where a new u-boot is used with an old
12877     standard MPC8641 .dts file as supplied with Linux.
12878
12879     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12880
12881 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
12882 Author: Becky Bruce <becky.bruce@freescale.com>
12883 Date:   Thu Nov 6 13:04:09 2008 -0600
12884
12885     toplevel Makefile: Add MPC8641HPCN_36BIT target
12886
12887     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
12888
12889     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12890
12891 commit 3111d32c494e8251b90917447796a7206b757e1e
12892 Author: Becky Bruce <becky.bruce@freescale.com>
12893 Date:   Thu Nov 6 17:37:35 2008 -0600
12894
12895     mpc8641: Support 36-bit physical addressing
12896
12897     This patch creates a memory map with all the devices
12898     in 36-bit physical space, in addition to the 32-bit map.
12899     The CCSR relocation is moved (again, sorry) to
12900     allow for the physical address to be 36 bits - this
12901     requires translation to be enabled.  With 36-bit physical
12902     addressing enabled, we are no longer running with VA=PA
12903     translations.  This means we have to distinguish between
12904     the two in the config file.  The existing region name is
12905     used to indicate the virtual address, and a _PHYS variety
12906     is created to represent the physical address.
12907
12908     Large physical addressing is not enabled by default.
12909     Set CONFIG_PHYS_64BIT in the config file to turn this on.
12910
12911     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12912
12913 commit c759a01a0022de9378a3a761f49786f87684c916
12914 Author: Becky Bruce <becky.bruce@freescale.com>
12915 Date:   Thu Nov 6 17:36:04 2008 -0600
12916
12917     mpc8641: Change 32-bit memory map
12918
12919     The memory map on the 8641hpcn is modified to look more like
12920     the 85xx boards; this is a step towards a more standardized
12921     layout going forward. As part of this change, we now relocate
12922     the flash.
12923
12924     The regions for some of the mappings were far larger than they
12925     needed to be.  I have reduced the mappings to match the
12926     actual sizes supported by the hardware.
12927
12928     In addition I have removed the comments at the head
12929     of the BAT blocks in the config file, rather than updating
12930     them.  These get horribly out of date, and it's a simple
12931     matter to look at the defines to see what they are set to
12932     since everything is right here in the same file.
12933
12934     Documentation has been changed to reflect the new map, as this
12935     change is user visible, and affects the OS which runs post-uboot.
12936
12937     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12938
12939 commit bf9a8c34309ed9276258295db9e9212aabb2531a
12940 Author: Becky Bruce <becky.bruce@freescale.com>
12941 Date:   Wed Nov 5 14:55:35 2008 -0600
12942
12943     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
12944
12945     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
12946     of the bootpage in flash.   Use this to create an early mapping
12947     definition for the FLASH, and change the early_bats code to use this.
12948
12949     This  change facilitates the relocation of the flash since the early
12950     mappings are no longer tied to the final location of the flash.
12951
12952     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12953
12954 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
12955 Author: Becky Bruce <becky.bruce@freescale.com>
12956 Date:   Wed Nov 5 14:55:34 2008 -0600
12957
12958     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
12959
12960     Using a mtmsr/blr means that you have to be executing at the
12961     same virtual address once you enable translation.  This is
12962     unnecessarily restrictive, and is not really how this is
12963     usually done.  Change it to use the more common mtspr SRR0/SRR1
12964     and rfi method.
12965
12966     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12967
12968 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
12969 Author: Becky Bruce <becky.bruce@freescale.com>
12970 Date:   Wed Nov 5 14:55:33 2008 -0600
12971
12972     mpc8641: make DIAG_ADDR == FLASH_BASE
12973
12974     Currently, that's what it is, but it's hardcoded.
12975
12976     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12977
12978 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
12979 Author: Becky Bruce <becky.bruce@freescale.com>
12980 Date:   Wed Nov 5 14:55:32 2008 -0600
12981
12982     mpc8641: Drop imaginary second flash bank, map 8MB
12983
12984     There's a lot of setup and foo for the second flash
12985     bank.  The problem is, this board doesn't actually have one.
12986     Clean this up.  Also, the flash is 8M in size.  Get rid
12987     of the confusing aliased overmapping, and just map 8M.
12988
12989     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12990
12991 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
12992 Author: Becky Bruce <becky.bruce@freescale.com>
12993 Date:   Wed Nov 5 14:55:31 2008 -0600
12994
12995     mpc8641: only define CONFIG_ENV_SIZE once
12996
12997     It's currently defined twice inside in an if/else block, but
12998     both halves set the same value.  Move the define outside
12999     the if.
13000
13001     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13002
13003 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
13004 Author: Becky Bruce <becky.bruce@freescale.com>
13005 Date:   Wed Nov 5 14:55:30 2008 -0600
13006
13007     mpc86xx: Move setup_bats into cpu_init_f
13008
13009     In order to later allow for a physical relocation of the
13010     flash, setup_bats, which sets up the final BAT mapping
13011     for the board, needs to happen *after* init_laws().
13012     Otherwise, there will be no window programmed for the flash
13013     at the new physical location at the point when we change
13014     the mmu translation.
13015
13016     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13017
13018 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
13019 Author: Becky Bruce <becky.bruce@freescale.com>
13020 Date:   Wed Nov 5 14:55:29 2008 -0600
13021
13022     mpc8641: Remove extra "0" from BR2 define
13023
13024     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13025
13026 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
13027 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13028 Date:   Thu Oct 23 09:08:18 2008 -0400
13029
13030     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
13031
13032     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
13033     This adds support for PHY-less MAC connections to the UEC.
13034
13035     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13036     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13037
13038 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
13039 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13040 Date:   Thu Oct 23 16:27:24 2008 +0000
13041
13042     ColdFire: Add mii driver in drivers/net
13043
13044     All CF platforms' mii.c are consolidated into one
13045
13046     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13047     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13048
13049 commit 25a859066b3af1070eb69f12022113c0a91bd813
13050 Author: Ben Warren <biggerbadderben@gmail.com>
13051 Date:   Mon Oct 27 23:53:17 2008 -0700
13052
13053     Moved initialization of PPC4xx EMAC to cpu_eth_init()
13054
13055     Removed initialization of the driver from net/eth.c
13056
13057     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13058     Acked-by: Stefan Roese <sr@denx.de>
13059
13060 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
13061 Author: Ben Warren <biggerbadderben@gmail.com>
13062 Date:   Sun Nov 9 21:29:23 2008 -0800
13063
13064     Moved PPC4xx EMAC driver to drivers/net
13065
13066     Also changed path in all linker scripts that reference this driver
13067
13068     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13069     Acked-by: Stefan Roese <sr@denx.de>
13070
13071 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
13072 Author: Ben Warren <biggerbadderben@gmail.com>
13073 Date:   Mon Oct 27 23:50:15 2008 -0700
13074
13075     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
13076
13077     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
13078
13079     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13080     Acked-by: Stefan Roese <sr@denx.de>
13081
13082 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
13083 Author: Ben Warren <biggerbadderben@gmail.com>
13084 Date:   Thu Oct 23 22:02:49 2008 -0700
13085
13086     Moved initialization of MPC8XX SCC to cpu_eth_init()
13087
13088     Removed initialization of the driver from net/eth.c
13089
13090     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13091
13092 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
13093 Author: Ben Warren <biggerbadderben@gmail.com>
13094 Date:   Wed Oct 22 23:47:51 2008 -0700
13095
13096     Moved initialization of MPC8220 FEC to cpu_eth_init()
13097
13098     Removed initialization of the driver from net/eth.c
13099
13100     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13101
13102 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
13103 Author: Ben Warren <biggerbadderben@gmail.com>
13104 Date:   Wed Oct 22 23:32:48 2008 -0700
13105
13106     Moved initialization of QE Ethernet controller to cpu_eth_init()
13107
13108     Removed initialization of the driver from net/eth.c
13109
13110     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13111
13112 commit 3456a148276d5494b53ee40242efb6462d163504
13113 Author: Ben Warren <biggerbadderben@gmail.com>
13114 Date:   Wed Oct 22 23:20:29 2008 -0700
13115
13116     Moved initialization of FCC Ethernet controller to cpu_eth_init
13117
13118     Affected boards:
13119         Several MPC8xx boards
13120         Several MPC8260/MPC8272 boards
13121         Several MPC85xx boards
13122
13123     Removed initialization of the driver from net/eth.c
13124
13125     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13126
13127 commit 62e15b497f5c6334c059512678c8db7940ae4c61
13128 Author: Ben Warren <biggerbadderben@gmail.com>
13129 Date:   Thu Oct 30 22:15:35 2008 -0700
13130
13131     Fix typo in cpu/mpc85xx/cpu.c
13132
13133     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
13134
13135     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13136
13137 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
13138 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13139 Date:   Sun Oct 19 12:08:50 2008 +0900
13140
13141     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
13142
13143     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
13144     as a part of ongoing eth_initialize cleanup work.  The function ret value
13145     is also fixed as it should be negative on fail.
13146
13147     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13148     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13149
13150 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
13151 Author: Ben Warren <biggerbadderben@gmail.com>
13152 Date:   Fri Sep 5 01:55:22 2008 -0400
13153
13154     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
13155
13156     Also, removed the driver initialization from net/eth.c
13157
13158     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13159
13160 commit f2a7806fc23e82d30c8548911369e0c530607354
13161 Author: Clive Stubbings <uboot@xentech.co.uk>
13162 Date:   Mon Oct 27 15:05:00 2008 +0000
13163
13164     xilinx_emaclite buffer overrun
13165
13166     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
13167     PKTSIZE_ALIGN bytes long.
13168
13169     Acked-by: Michal Simek <monstr@monstr.eu>
13170
13171     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13172
13173 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
13174 Author: richardretanubun <richardretanubun@ruggedcom.com>
13175 Date:   Fri Sep 26 08:59:12 2008 -0400
13176
13177     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
13178
13179     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
13180     This patch makes these function use the devname argument that is passed in to
13181     allow access to the phy registers of other devices in devlist[].
13182
13183     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
13184
13185     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13186
13187 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
13188 Author: richardretanubun <richardretanubun@ruggedcom.com>
13189 Date:   Mon Oct 6 15:31:43 2008 -0400
13190
13191     Adds two more ethernet interface to 83xx
13192
13193     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
13194     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
13195     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13196
13197 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
13198 Author: Stelian Pop <stelian@popies.net>
13199 Date:   Fri Nov 7 13:54:31 2008 +0100
13200
13201     AT91: Replace AT91_BASE_EMAC by the board specific values.
13202
13203     AT91_BASE_EMAC is never used outside the board specific files,
13204     so replace its usage by the board specific AT91xxx_BASE_EMAC.
13205
13206     Signed-off-by: Stelian Pop <stelian@popies.net>
13207     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13208
13209 commit c91e17affa175ce06afa89b04752301eb4a61666
13210 Author: Stelian Pop <stelian@popies.net>
13211 Date:   Fri Nov 7 12:09:21 2008 +0100
13212
13213     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
13214
13215     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
13216     Since they are never used outside the board specific files, they can
13217     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
13218     AT91xxx_ID_US2.
13219
13220     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
13221
13222     Signed-off-by: Stelian Pop <stelian@popies.net>
13223     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13224
13225 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
13226 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13227 Date:   Sat Nov 1 10:47:59 2008 +0100
13228
13229     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
13230
13231     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13232
13233 commit 1079432e04ccf71aa3684181186182cd63512f19
13234 Author: Sergey Lapin <slapin@ossfans.org>
13235 Date:   Fri Oct 31 12:28:43 2008 +0100
13236
13237     Custom AFEB9260 board support
13238
13239     This patch provides support for AFEB9260 board, a product of
13240     OpenSource hardware and software. Some commertial projects
13241     are made with this design. A board is basically AT91SAM9260-EK
13242     with some modifications and different peripherals and different
13243     parts used. Main purpose of this project is to gain experience in
13244     hardware design.
13245     More info: http://groups.google.com/group/arm9fpga-evolution-board
13246     (In Russian only, sorry).
13247     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
13248
13249     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
13250
13251 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
13252 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
13253 Date:   Tue Oct 21 13:17:16 2008 +0900
13254
13255     Change to use "do_div" macro
13256
13257     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
13258
13259 commit e352495318d8056a00faa21b633b3e4374bfbf52
13260 Author: Roman Mashak <romez777@gmail.com>
13261 Date:   Wed Oct 22 16:00:26 2008 -0400
13262
13263     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
13264
13265     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
13266     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
13267
13268     Signed-off-by: Roman Mashak <romez777@gmail.com>
13269
13270 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
13271 Author: Roman Mashak <romez777@gmail.com>
13272 Date:   Tue Oct 21 03:01:41 2008 -0700
13273
13274     ARM/Versatile port: Removed unused functions
13275
13276     Removal of never used functions.
13277
13278     Signed-off-by: Roman Mashak <romez777@gmail.com>
13279
13280 commit 1266df887781c779deaf6d05eea2ef90a470cb34
13281 Author: Becky Bruce <becky.bruce@freescale.com>
13282 Date:   Mon Nov 3 15:44:01 2008 -0600
13283
13284     powerpc: change 86xx SMP boot method
13285
13286     We put the bootpg for the secondary cpus into memory and use
13287     BPTR to get to it.  This is a step towards converting to the
13288     ePAPR boot methodology.  Also, the code is written to
13289     deal properly with more than 4GB of RAM.
13290
13291     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13292
13293 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
13294 Author: Becky Bruce <becky.bruce@freescale.com>
13295 Date:   Fri Oct 31 17:13:49 2008 -0500
13296
13297     8641HPCN: Config file cleanup
13298
13299     There are several items in the config file that were hardcoded
13300     but that should really be based on other config options, since
13301     the regions are contiguous and depend on being so.  This cleans
13302     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
13303     addresses into the proper format for BR registers.
13304
13305     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13306
13307 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
13308 Author: Becky Bruce <becky.bruce@freescale.com>
13309 Date:   Fri Oct 31 17:13:32 2008 -0500
13310
13311     86xx: Make dram_size a phys_size_t
13312
13313     It's currently a long and should be phys_size_t.
13314
13315     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13316
13317 commit 104992fc541302a6bac74448e01e7fdad20abca0
13318 Author: Becky Bruce <becky.bruce@freescale.com>
13319 Date:   Sun Nov 2 18:19:32 2008 -0600
13320
13321     powerpc 86xx: Handle CCSR relocation earlier
13322
13323     Currently, the CCSR gets relocated while translation is
13324     enabled, meaning we need 2 BAT translations to get to both the
13325     old location and the new location.  Also, the DEFAULT
13326     CCSR location has a dependency on the BAT that maps the
13327     FLASH region.  Moving the relocation removes this unnecessary
13328     dependency. This makes it easier and more intutive to
13329     modify the board's memory map.
13330
13331     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
13332     BAT for CCSR space.
13333
13334     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13335
13336 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
13337 Author: Becky Bruce <becky.bruce@freescale.com>
13338 Date:   Fri Oct 31 17:14:14 2008 -0500
13339
13340     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
13341
13342     You can't actually have both, and with some coming changes to
13343     change the memory map for the board and support 36-bit physical,
13344     we need the extra BAT that is being consumed by having both.
13345
13346     I also make non-PCI configs build cleanly, for the sake of sanity.
13347
13348     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13349
13350 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
13351 Author: Becky Bruce <becky.bruce@freescale.com>
13352 Date:   Fri Oct 31 17:14:00 2008 -0500
13353
13354     mpc8641: Stop supporting non-PCI_PNP configs
13355
13356     We don't actually ever do this, remove the code so we
13357     can stop maintaining it.
13358
13359     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13360
13361 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
13362 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13363 Date:   Fri Oct 24 12:59:12 2008 +0000
13364
13365     ColdFire: Fix M5329EVB and M5373EVB nand issue
13366
13367     Fix compilation issue caused by a few mismatches.
13368     Provide proper nand chip select enable/disable in
13369     nand_hwcontrol() rather than in board_nand_init()
13370     just enable once. Remove redundant local nand driver
13371     functions - nand_read_byte(), nand_write_byte() and
13372     nand_dev_ready() to use common nand driver.
13373
13374     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13375
13376 commit 1b2708442224a551a0b865b52710306333888932
13377 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13378 Date:   Wed Oct 22 11:55:30 2008 +0000
13379
13380     ColdFire: Fix compilation error
13381
13382     The error was caused by the change for strmhz() in cpu.c.
13383     A few of them were one extra close parenthesis.
13384
13385     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13386
13387 commit 536e7dac16769954915a484e682a2efb28699133
13388 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13389 Date:   Wed Oct 22 11:38:21 2008 +0000
13390
13391     ColdFire: Add MCF5301x CPU and M53017EVB support
13392
13393     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13394
13395 commit a21d0c2cc9add8894d971ab791f4032f077db817
13396 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13397 Date:   Tue Oct 21 15:37:02 2008 +0000
13398
13399     ColdFire: Add SBF support for M52277EVB
13400
13401     Add serial boot support
13402
13403     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13404
13405 commit b202816c61042c183fe67d097a5893b0f2dafba0
13406 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13407 Date:   Tue Oct 21 14:19:26 2008 +0000
13408
13409     ColdFire: Use CFI driver for M5272C3
13410
13411     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13412
13413 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
13414 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13415 Date:   Tue Oct 21 13:47:54 2008 +0000
13416
13417     ColdFire: Relocate FEC's GPIO and mii functions protocols
13418
13419     Place FEC pin assignments in cpu_init.c from platform's
13420     mii.c
13421
13422     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13423
13424 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
13425 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13426 Date:   Tue Oct 21 12:15:44 2008 +0000
13427
13428     ColdFire: Remove platforms mii.c file
13429
13430     Will use mcfmii.c driver in drivers/net rather than
13431     keep creating new mii.c for each future platform.
13432     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
13433     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
13434     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
13435     mii.c
13436
13437     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13438
13439 commit 012522fef3b382469125beb46a315ab4dee02fb0
13440 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13441 Date:   Tue Oct 21 10:03:07 2008 +0000
13442
13443     ColdFire: Modules header files cleanup
13444
13445     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
13446     MDHA, SKHA, INTC, and FlexBus structures and
13447     definitions in immap_5xxx.h to more unify modules
13448     header files. Append DSPI support for m547x_8x.
13449     SSI cleanup. Remove USB Host structure from immap_539.h.
13450     Apply changes to use FlexBus structures in mcf52x2's
13451     cpu_init.c and platform configuration files.
13452
13453     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13454
13455 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
13456 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13457 Date:   Tue Oct 21 08:52:36 2008 +0000
13458
13459     ColdFire: Remove linker file
13460
13461     Each different build for M54455EVB and M5235EVB will
13462     create a u-boot.lds linker file. It is redundant to
13463     keep the u-boot.lds
13464
13465     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13466
13467 commit 0829323073c505556ed5f5073f91adb504584d45
13468 Author: Peter Tyser <ptyser@xes-inc.com>
13469 Date:   Fri Oct 31 11:26:44 2008 -0500
13470
13471     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
13472
13473     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13474
13475 commit a80b21d5127583171d6e9bc7f722947641898012
13476 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13477 Date:   Fri Oct 31 12:12:12 2008 +0100
13478
13479     common/Makefile: create others group for non core, environment and command files
13480
13481     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13482
13483 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
13484 Author: Wolfgang Denk <wd@denx.de>
13485 Date:   Fri Oct 31 01:13:37 2008 +0100
13486
13487     TQM8260: use CFI flash driver instead of custom driver.
13488
13489     Signed-off-by: Wolfgang Denk <wd@denx.de>
13490
13491 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
13492 Author: Andy Fleming <afleming@freescale.com>
13493 Date:   Thu Oct 30 17:35:30 2008 -0500
13494
13495     Consolidate MAX/MIN definitions
13496
13497     There were several, now there is one (two if you count the lower-case
13498     versions).
13499
13500     Signed-off-by: Andy Fleming <afleming@freescale.com>
13501
13502 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
13503 Author: Heiko Schocher <hs@denx.de>
13504 Date:   Thu Oct 30 09:23:09 2008 +0100
13505
13506     mgsuvd: remove unused defines in config file.
13507
13508     Signed-off-by: Heiko Schocher <hs@denx.de>
13509
13510 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
13511 Author: Wolfgang Denk <wd@denx.de>
13512 Date:   Sun Nov 2 16:14:22 2008 +0100
13513
13514     Coding Style cleanup, update CHANGELOG
13515
13516     Signed-off-by: Wolfgang Denk <wd@denx.de>
13517
13518 commit a47f957ab523019992fdef857af01bd71c58a4da
13519 Author: Alessandro Rubini <rubini-list@gnudd.com>
13520 Date:   Fri Oct 31 22:33:21 2008 +0100
13521
13522     NAND: Allow NAND and OneNAND to coexist
13523
13524     This removes in nand.h code that is verbatim duplicated from bbm.h,
13525     including directly bbm.h in nand.h. The previous state of affairs
13526     prevented compiling code for a board hosting both NAND and OneNAND chips.
13527
13528     Reported-by: Scott Wood <scottwood@freescale.com>
13529     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13530     Signed-off-by: Scott Wood <scottwood@freescale.com>
13531
13532 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
13533 Author: Scott Wood <scottwood@freescale.com>
13534 Date:   Fri Oct 31 13:51:12 2008 -0500
13535
13536     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
13537
13538     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
13539     Signed-off-by: Scott Wood <scottwood@freescale.com>
13540
13541 commit c57fc28947e248fb03c49a28b467686299895055
13542 Author: Jason Jin <Jason.Jin@freescale.com>
13543 Date:   Fri Oct 31 05:07:04 2008 -0500
13544
13545     NAND: Add NAND support for MPC8536DS board
13546
13547     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
13548     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
13549     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
13550
13551     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
13552     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
13553     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13554
13555 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
13556 Author: Haiying Wang <Haiying.Wang@freescale.com>
13557 Date:   Fri Oct 31 05:06:14 2008 -0500
13558
13559     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
13560
13561     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
13562
13563     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
13564     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13565
13566 commit 51b572a801be57790fe26adaa530210e7fba59cc
13567 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13568 Date:   Fri Oct 24 10:49:48 2008 +0900
13569
13570     sh: rsk7203: Moved rsk7203 board to board/renesas
13571
13572     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13573
13574 commit 58453b00b3ebb26aaa901210023f99504a90bb00
13575 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13576 Date:   Fri Oct 24 10:48:31 2008 +0900
13577
13578     sh: MigoR: Moved MigoR board to board/renesas
13579
13580     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13581
13582 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
13583 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13584 Date:   Fri Oct 24 10:39:44 2008 +0900
13585
13586     sh: r2dplus: Moved r2dplus board to board/renesas
13587
13588     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13589
13590 commit 78385bf2359d828184d0b3649f7ae6b933420000
13591 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13592 Date:   Fri Oct 24 10:36:13 2008 +0900
13593
13594     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
13595
13596     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13597
13598 commit c6525d459c350bfc246ea7826456af77e1e314eb
13599 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13600 Date:   Fri Oct 24 10:35:19 2008 +0900
13601
13602     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
13603
13604     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13605
13606 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
13607 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13608 Date:   Fri Oct 24 10:34:21 2008 +0900
13609
13610     sh: r7780mp: Moved r7780mp board to board/renesas
13611
13612     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13613
13614 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
13615 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13616 Date:   Fri Oct 24 10:32:14 2008 +0900
13617
13618     sh: ap325rxa: Moved ap325rxa board to board/renesas
13619
13620     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13621
13622 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
13623 Author: Wolfgang Denk <wd@xpert.denx.de>
13624 Date:   Fri Oct 31 01:12:28 2008 +0100
13625
13626     CFI Driver: Fix "flash not ready" problem
13627
13628     This patch fixes a problem on systems where the NOR flash is attached
13629     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
13630     on the assumption that the same flash address is read twice without
13631     any other interjacent flash accesses.  However, on 32 bit systems the
13632     function flash_read64() [as currently implemented] does not perform
13633     an atomic 64 bit read - instead, this is broken down into two 32 bit
13634     read accesses on addresses "addr" and "addr + 4".  So instead of
13635     reading a 64 bit value twice from "addr", we see a sequence of 4 32
13636     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
13637     consequence is that flash_toggle() fails to work.
13638
13639     This patch implements a simple, but somewhat ugly solution, as it
13640     avoids the use of flash_read64() in this critical place (by breaking
13641     it down manually into 32 bit read operations) instead of rewriting
13642     flash_read64() such to perform atomic 64 bit reads as one could
13643     expect.  However, such a rewrite would require the use of floating
13644     point load operations, which becomes pretty complex:
13645
13646         save MSR;
13647         set Floating Point Enable bit in MSR;
13648         use "lfd" instruction to perform atomic 64 bit read;
13649         use "stfd" to store value to temporary variable on stack;
13650         load u64 value from temporary variable;
13651         restore saved MSR;
13652         return u64 value;
13653
13654     The benefit-cost ratio of such an implementation was considered too
13655     bad to actually attempt this, especially as we can expect that such
13656     an implementation would not only have a bigger memory footprint but
13657     also cause a performance degradation.
13658
13659     Signed-off-by: Wolfgang Denk <wd@denx.de>
13660     Signed-off-by: Stefan Roese <sr@denx.de>
13661
13662 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
13663 Author: Stefan Roese <sr@denx.de>
13664 Date:   Fri Oct 31 10:48:08 2008 +0100
13665
13666     ppc4xx: Fix spelling error in MAINTAINERS file
13667
13668     Signed-off-by: Stefan Roese <sr@denx.de>
13669
13670 commit be270798900b75ad9c47c7b79c72f70441196c56
13671 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13672 Date:   Tue Oct 28 13:37:00 2008 +0100
13673
13674     ppc4xx: Update PMC440 board support
13675
13676     This patch brings PMC440 board support up to date:
13677
13678     - fix GPIO configuration
13679     - add misc_init_f()
13680     - use better values for usbact variable
13681     - fix USB 2.0 phy reset sequence
13682     - shrink BAR2 to save PCI address space
13683     - add FDT support
13684
13685     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13686     Signed-off-by: Stefan Roese <sr@denx.de>
13687
13688 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
13689 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13690 Date:   Tue Oct 28 13:36:59 2008 +0100
13691
13692     ppc4xx: Fix PMC440 BSP commands
13693
13694     This patch fixes the PMC440 BSP commands painit and selfreset
13695
13696     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13697     Signed-off-by: Stefan Roese <sr@denx.de>
13698
13699 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
13700 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13701 Date:   Tue Oct 28 13:36:58 2008 +0100
13702
13703     ppc4xx: Update PMC440 board configuration
13704
13705     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13706     Signed-off-by: Stefan Roese <sr@denx.de>
13707
13708 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
13709 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13710 Date:   Tue Oct 28 13:36:57 2008 +0100
13711
13712     ppc4xx: Fix esd loadpci command
13713
13714     This patch fixes esd's loadpci command when not all
13715     memory on adapter boards is accessable via PCI.
13716
13717     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13718     Signed-off-by: Stefan Roese <sr@denx.de>
13719
13720 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
13721 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13722 Date:   Tue Oct 28 13:36:56 2008 +0100
13723
13724     ppc4xx: Clean up PMC440 header
13725
13726     -Codingstyle cleanup
13727     -Remove unused GPIO define
13728
13729     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13730     Signed-off-by: Stefan Roese <sr@denx.de>
13731
13732 commit 295133258a44f97a57fb2ec339aecfda11f4db95
13733 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13734 Date:   Tue Oct 28 13:36:55 2008 +0100
13735
13736     ppc4xx: Handle other board variant in PMC440 FPGA code
13737
13738     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13739     Signed-off-by: Stefan Roese <sr@denx.de>
13740
13741 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
13742 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13743 Date:   Mon Oct 27 12:35:59 2008 +0100
13744
13745     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
13746
13747     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
13748     config files of both infrastuctures
13749
13750     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13751     Signed-off-by: Stefan Roese <sr@denx.de>
13752
13753 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
13754 Author: Stefan Roese <sr@denx.de>
13755 Date:   Sat Oct 25 06:45:31 2008 +0200
13756
13757     ppc4xx: Correctly configure the GPIO pin muxing on Arches
13758
13759     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
13760     pin multiplexing correctly
13761
13762     Signed-off-by: Stefan Roese <sr@denx.de>
13763
13764 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
13765 Author: Bartlomiej Sieka <tur@semihalf.com>
13766 Date:   Thu Oct 30 23:22:04 2008 +0100
13767
13768     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
13769
13770     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
13771
13772 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
13773 Author: David Gibson <david@gibson.dropbear.id.au>
13774 Date:   Wed Oct 29 23:27:45 2008 -0500
13775
13776     libfdt: Fix bug in fdt_subnode_offset_namelen()
13777
13778     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
13779     which causes it to keep searching after it's finished the subnodes of
13780     the given parent, and into the subnodes of siblings of the original
13781     node which come after it in the tree.
13782
13783     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
13784     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13785
13786 commit f242a08871839eac081ba5b599af979f3a148a0d
13787 Author: Peter Korsgaard <jacmet@sunsite.dk>
13788 Date:   Tue Oct 28 08:26:52 2008 +0100
13789
13790     fdt_resize(): ensure minimum padding
13791
13792     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
13793     (16 bytes), so make sure that fdt_resize at least adds that much
13794     padding, no matter what the location or size of the fdt is.
13795
13796     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13797     Acked-by: Andy Fleming <afleming@freescale.com>
13798
13799 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
13800 Author: Dave Liu <daveliu@freescale.com>
13801 Date:   Thu Oct 23 21:59:35 2008 +0800
13802
13803     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
13804
13805     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
13806
13807     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
13808
13809     This is needed in unlock_ram_in_cache() because it is called from C and
13810     will corrupt the small data area anchor that is kept in R2.
13811
13812     lock_ram_in_cache() is modified similarly as good coding practice, but
13813     is not called from C.
13814
13815     Signed-off-by: Nick Spence <nick.spence@freescale.com>
13816
13817     also, the r2 is used as global data pointer.
13818
13819     Signed-off-by: Dave Liu <daveliu@freescale.com>
13820
13821 commit e053ab1903ccae6048ef759025b9f675bba91450
13822 Author: Scott Wood <scottwood@freescale.com>
13823 Date:   Tue Oct 28 11:45:04 2008 -0500
13824
13825     mpc83xx pci: Round up memory size in inbound window.
13826
13827     The current calculation will fail to cover all memory if
13828     its size is not a power of two.
13829
13830     Signed-off-by: Scott Wood <scottwood@freescale.com>
13831     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13832
13833 commit 1c671977dc81359628be27ac99c174e76e8069ba
13834 Author: Dave Liu <daveliu@freescale.com>
13835 Date:   Thu Oct 23 21:19:13 2008 +0800
13836
13837     86xx: remove the unused definition
13838
13839     Signed-off-by: Dave Liu <daveliu@freescale.com>
13840
13841 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
13842 Author: Dave Liu <daveliu@freescale.com>
13843 Date:   Tue Oct 28 17:47:49 2008 +0800
13844
13845     86xx: remove the redundant r2 global data pointer save
13846
13847     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
13848     the another global data pointer save, but in fact the
13849     global data pointer will be initialized in the board_init_r,
13850     so remove it such as the 85xx/83xx family.
13851
13852     Signed-off-by: Dave Liu <daveliu@freescale.com>
13853     Acked-by: Kumar Gala <kumar.gala@freescale.com>
13854
13855 commit bd888e9544419665334a6f47f81f34011cea38f3
13856 Author: Dave Liu <daveliu@freescale.com>
13857 Date:   Tue Oct 28 17:47:41 2008 +0800
13858
13859     86xx: remove the unused code for 86xx family
13860
13861     I believe these code was copied from 74xx family, but for
13862     86xx, it is unused.
13863
13864     Signed-off-by: Dave Liu <daveliu@freescale.com>
13865     Acked-by: Kumar Gala <kumar.gala@freescale.com>
13866
13867 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
13868 Author: Dave Liu <daveliu@freescale.com>
13869 Date:   Tue Oct 28 17:46:35 2008 +0800
13870
13871     86xx: remove the second DDR LAW setting for mpc8641hpcn
13872
13873     The DDR1 LAW will precedence the DDR2 LAW, so remove
13874     the second DDR LAW.
13875
13876     Signed-off-by: Dave Liu <daveliu@freescale.com>
13877     Acked-by: Becky Bruce <becky.bruce@freescale.com>
13878
13879 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
13880 Author: Dave Liu <daveliu@freescale.com>
13881 Date:   Tue Oct 28 17:46:23 2008 +0800
13882
13883     86xx: remove the unused ddr_enable_ecc in the board file
13884
13885     The DDR controller of 86xx processors have the ECC data init
13886     feature, and the new DDR code is using the feature, we don't
13887     need the way with DMA to init memory again.
13888
13889     Signed-off-by: Dave Liu <daveliu@freescale.com>
13890     Acked-by: Kumar Gala <kumar.gala@freescale.com>
13891
13892 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
13893 Author: Dave Liu <daveliu@freescale.com>
13894 Date:   Tue Oct 28 17:46:12 2008 +0800
13895
13896     86xx: Move the clear_tlbs before MMU turn on
13897
13898     We must invalidate TLBs before MMU turn on, but
13899     currently the code is not, if there are some stale
13900     TLB entry valid in the TLBs, it will cause strange
13901     issue.
13902
13903     Signed-off-by: Dave Liu <daveliu@freescale.com>
13904     Acked-by: Becky Bruce <becky.bruce@freescale.com>
13905
13906 commit 5cdade07b118d07154cb882650f9778cecc8a87c
13907 Author: Scott Wood <scottwood@freescale.com>
13908 Date:   Mon Oct 27 15:57:08 2008 -0500
13909
13910     mpc8313erdb: Document NAND boot.
13911
13912     Previously, the documentation claimed that NAND boot is not supported.
13913     This is no longer true.
13914
13915     Signed-off-by: Scott Wood <scottwood@freescale.com>
13916
13917 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
13918 Author: Scott Wood <scottwood@freescale.com>
13919 Date:   Wed Oct 29 14:20:26 2008 -0500
13920
13921     NAND: Properly create JFFS2 cleanmarkers.
13922
13923     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
13924     command is currently broken, and among other things causes all blocks
13925     to be marked bad.
13926
13927     This implements it properly using MTD_OOB_AUTO, along with some
13928     indentation fixes.
13929
13930     Signed-off-by: Scott Wood <scottwood@freescale.com>
13931
13932 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
13933 Author: Scott Wood <scottwood@freescale.com>
13934 Date:   Wed Oct 29 13:42:41 2008 -0500
13935
13936     NAND fsl elbc: Set FMR[ECCM] based on page size.
13937
13938     Hardware expects ECCM 0 for small page and ECCM 1 for large page
13939     when booting from NAND, so use those defaults.
13940
13941     Signed-off-by: Scott Wood <scottwood@freescale.com>
13942
13943 commit c013b74975dab0805ef6d369b013230c4e8a660d
13944 Author: Haiying Wang <Haiying.Wang@freescale.com>
13945 Date:   Wed Oct 29 13:32:59 2008 -0400
13946
13947     NAND: Add support for MPC8572DS board
13948
13949     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
13950     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
13951     config file.
13952
13953     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
13954     make room for the increased code size with NAND enabled.
13955
13956     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
13957     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
13958     Signed-off-by: Scott Wood <scottwood@freescale.com>
13959
13960 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
13961 Author: Haiying Wang <Haiying.Wang@freescale.com>
13962 Date:   Wed Oct 29 11:05:55 2008 -0400
13963
13964     Make Freescale local bus registers available for both 83xx and 85xx.
13965
13966     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
13967       can be shared by both 83xx and 85xx
13968     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
13969       files which use lbus83xx_t.
13970     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
13971       85xx can share them.
13972
13973     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
13974     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
13975     Signed-off-by: Scott Wood <scottwood@freescale.com>
13976
13977 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
13978 Author: Scott Wood <scottwood@freescale.com>
13979 Date:   Mon Oct 27 15:38:30 2008 -0500
13980
13981     NAND: Align right column of the shorthelp with other commands.
13982
13983     I accidentally broke this in when making consistent the partial
13984     alignment of the longhelp.
13985
13986     Signed-off-by: Scott Wood <scottwood@freescale.com>
13987
13988 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
13989 Author: Karl Beldan <karl.beldan@gmail.com>
13990 Date:   Mon Sep 15 16:08:03 2008 +0200
13991
13992     NAND: Reset chip on power-up
13993
13994     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
13995     The first command sent is NAND_CMD_READID.
13996     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
13997     Tested with an MT29F4G08AAC.
13998
13999     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
14000     Signed-off-by: Scott Wood <scottwood@freescale.com>
14001
14002 commit c45912d8abc52de796b9059a58faf7c4166eab58
14003 Author: Scott Wood <scottwood@freescale.com>
14004 Date:   Fri Oct 24 16:20:43 2008 -0500
14005
14006     NAND: sync with 2.6.27
14007
14008     This brings the core NAND code up to date with the Linux kernel.
14009
14010     Since there were several drivers in Linux as of the last update that are
14011     not in u-boot, I'm not bringing over new drivers that have been added
14012     since in the absence of an interested party.
14013
14014     I did not update OneNAND since it was recently synced by Kyungmin Park,
14015     and I'm not sure exactly what the common ancestor is.
14016
14017     Signed-off-by: Scott Wood <scottwood@freescale.com>
14018
14019 commit b1d0db1805c3395149777e507b6da53410abac4e
14020 Author: Kumar Gala <galak@kernel.crashing.org>
14021 Date:   Tue Oct 21 17:25:47 2008 -0500
14022
14023     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
14024
14025     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
14026
14027     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14028
14029 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
14030 Author: Kumar Gala <galak@kernel.crashing.org>
14031 Date:   Tue Oct 21 17:25:46 2008 -0500
14032
14033     bootm: support subcommands in linux ppc bootm
14034
14035     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
14036
14037     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14038
14039 commit 49c3a861d11735838f1f1b11999ce433006dc919
14040 Author: Kumar Gala <galak@kernel.crashing.org>
14041 Date:   Tue Oct 21 17:25:45 2008 -0500
14042
14043     bootm: Add subcommands
14044
14045     Add the ability to break the steps of the bootm command into several
14046     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
14047
14048     This allows us to do things like manipulate device trees before
14049     they are passed to a booting kernel or setup memory for a secondary
14050     core in multicore situations.
14051
14052     Not all OS types support all subcommands (currently only start, loados,
14053     ramdisk, fdt, and go are supported).
14054
14055     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14056
14057 commit be08315933537f061bc1ce61f33a29c56458bbad
14058 Author: Kumar Gala <galak@kernel.crashing.org>
14059 Date:   Tue Oct 21 17:25:44 2008 -0500
14060
14061     bootm: Move to using a function pointer table for the boot os function
14062
14063     This removes a bit of code and makes it easier for the upcoming sub bootm
14064     command support to call into the proper OS specific handler.
14065
14066     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14067     Signed-off-by: Wolfgang Denk <wd@denx.de>
14068
14069 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
14070 Author: Graeme Russ <graeme.russ@gmail.com>
14071 Date:   Mon Sep 29 23:03:14 2008 +1000
14072
14073     i386: Renamed show_boot_progress in assembler code
14074
14075     Renamed show_boot_progress in assembler init phase to
14076     show_boot_progress_asm to avoid link conflicts with C version
14077
14078     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
14079
14080 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
14081 Author: Peter Tyser <ptyser@xes-inc.com>
14082 Date:   Mon Oct 27 16:42:00 2008 -0500
14083
14084     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
14085
14086     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
14087     processors have a 3-bit wide IO_SEL field but have the most
14088     significant bit is wired to 0 so this change should not affect
14089     them.
14090
14091     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14092
14093 commit cd4251624205cb97104f6e32679dc7754934f711
14094 Author: Becky Bruce <becky.bruce@freescale.com>
14095 Date:   Mon Oct 27 16:09:42 2008 -0500
14096
14097     powerpc: fix pci window initialization to work with > 4GB DRAM
14098
14099     The existing code has a few errors that need to be fixed in
14100     order to support large RAM sizes.  Fix those, and add a
14101     comment to make it clearer.
14102
14103     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14104     Acked-by: Kumar Gala <galak@kernel.crashing.org>
14105
14106 commit 219542a1a66ca017b12860920714a9859b18a5d7
14107 Author: Kumar Gala <galak@kernel.crashing.org>
14108 Date:   Mon Oct 27 13:16:20 2008 -0500
14109
14110     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
14111
14112     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14113
14114 commit 6b59e03e0237a40a2305ea385defdfd92000978b
14115 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14116 Date:   Mon Sep 1 16:21:22 2008 +0200
14117
14118     lcd: Let the board code show board-specific info
14119
14120     The information displayed when CONFIG_LCD_INFO is set is inherently
14121     board-specific, so it should be done by the board code. The current code
14122     dealing with this only handles two cases, and is already a horrible mess
14123     of #ifdeffery.
14124
14125     Yes, this duplicates some code, but it also allows boards to print more
14126     board-specific information; this used to be very difficult.
14127
14128     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14129     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14130
14131 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
14132 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14133 Date:   Mon Sep 1 16:21:21 2008 +0200
14134
14135     lcd: Set lcd_is_enabled before clearing the screen
14136
14137     This allows the logo/info rendering routines to use the regular
14138     lcd_putc/lcd_puts/lcd_printf calls.
14139
14140     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14141     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14142
14143 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
14144 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14145 Date:   Mon Sep 1 16:21:20 2008 +0200
14146
14147     lcd: Implement lcd_printf()
14148
14149     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
14150     this by borrowing the lcd_printf() implementation from the cogent board
14151     code (which appears to use its own LCD framework.)
14152
14153     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14154     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14155
14156 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
14157 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14158 Date:   Mon Sep 1 16:21:19 2008 +0200
14159
14160     atmel_lcdfb: Straighten out funky vl_sync logic
14161
14162     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
14163     otherwise we don't. WTF?
14164
14165     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14166     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14167
14168 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
14169 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14170 Date:   Mon Sep 1 16:21:18 2008 +0200
14171
14172     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
14173
14174     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
14175     includes a file that does, asm/arch/gpio.h, but this file doesn't
14176     include <asm/arch/hardware.h> like it's supposed to.
14177
14178     Add the missing include to asm/arch/gpio.h and remove the workaround
14179     from the atmel_lcdfb driver. This makes the driver compile on avr32.
14180
14181     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14182     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14183
14184 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
14185 Author: Kumar Gala <galak@kernel.crashing.org>
14186 Date:   Wed Oct 22 14:38:55 2008 -0500
14187
14188     86xx: Convert all fsl_pci_init users to new APIs
14189
14190     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
14191     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
14192
14193     With these changes the board code is a bit smaller and we get dma-ranges
14194     set in the device tree for these boards.
14195
14196     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14197     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14198     Acked-by: Jon Loeliger <jdl@freescale.com>
14199
14200 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
14201 Author: Kumar Gala <galak@kernel.crashing.org>
14202 Date:   Tue Oct 21 08:28:33 2008 -0500
14203
14204     85xx: Convert all fsl_pci_init users to new APIs
14205
14206     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
14207     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
14208     and ft_fsl_pci_setup().
14209
14210     With these changes the board code is a bit smaller and we get dma-ranges
14211     set in the device tree for these boards.
14212
14213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14214     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14215
14216 commit a2aab460727e5f674353a83a81000ef794bffcae
14217 Author: Kumar Gala <galak@kernel.crashing.org>
14218 Date:   Thu Oct 23 00:01:06 2008 -0500
14219
14220     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
14221
14222     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14223     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14224
14225 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
14226 Author: Kumar Gala <galak@kernel.crashing.org>
14227 Date:   Wed Oct 22 14:06:24 2008 -0500
14228
14229     pci/fsl_pci_init: Add a common PCI inbound setup function
14230
14231     Add a common setup function that determines the pci_region(s) based
14232     on how much memory we have in the system.
14233
14234     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14235     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14236
14237 commit 612ea01018a459234d54ed57ec6a5a244ce75678
14238 Author: Kumar Gala <galak@kernel.crashing.org>
14239 Date:   Tue Oct 21 10:13:14 2008 -0500
14240
14241     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
14242
14243     * PCI Inbound window was setup incorrectly.  The PCI address and system
14244       address were swapped.  The PCI address should be setting piwar/piwbear
14245       and the system address should be setting pitar.
14246
14247     * Removed masking of addresses to allow for system address to support
14248       system address & PCI address >32-bits
14249
14250     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
14251
14252     * Respect the PCI_REGION_PREFETCH for inbound windows
14253
14254     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14255     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14256
14257 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
14258 Author: Kumar Gala <galak@kernel.crashing.org>
14259 Date:   Wed Oct 22 23:33:56 2008 -0500
14260
14261     fdt: Added helper to set PCI dma-ranges property
14262
14263     Added fdt_pci_dma_ranges() that parses the pci_region info from the
14264     struct pci_controller and populates the dma-ranges based on it.
14265
14266     The max # of windws/dma-ranges we support is 3 since on embedded
14267     PowerPC based systems this is the max number of windows.
14268
14269     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14270     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14271
14272 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
14273 Author: Kumar Gala <galak@kernel.crashing.org>
14274 Date:   Thu Oct 23 00:05:47 2008 -0500
14275
14276     fdt: Add fdt_getprop_u32_default helpers
14277
14278     Add helper functions to return find a node and return it's property
14279     or a default value.
14280
14281     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14282     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14283     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
14284
14285 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
14286 Author: Kumar Gala <galak@kernel.crashing.org>
14287 Date:   Tue Oct 21 18:06:15 2008 -0500
14288
14289     86xx: Enable 64-bit PCI resources on all Freescale boards
14290
14291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14292     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14293
14294 commit 0151cbaccf4504821ecfde0217299bd740086bb6
14295 Author: Kumar Gala <galak@kernel.crashing.org>
14296 Date:   Tue Oct 21 11:33:58 2008 -0500
14297
14298     85xx: Enable 64-bit PCI resources on all Freescale boards
14299
14300     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14301     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14302
14303 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
14304 Author: Kumar Gala <galak@kernel.crashing.org>
14305 Date:   Tue Oct 21 08:36:08 2008 -0500
14306
14307     pci: Allow for PCI addresses to be 64-bit
14308
14309     PCI bus is inherently 64-bit.  While not all system require access to
14310     the full 64-bit PCI address range some do.  This allows those systems
14311     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
14312
14313     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14314     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
14315     Acked-by: Wolfgang Denk <wd@denx.de>
14316
14317 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
14318 Author: Dave Liu <daveliu@freescale.com>
14319 Date:   Thu Oct 23 21:18:53 2008 +0800
14320
14321     85xx: Fix the incorrect register used for DDR erratum1
14322
14323     The 8572 DDR erratum1:
14324     DDR controller may enter an illegal state when operating
14325     in 32-bit bus mode with 4-beat bursts.
14326
14327     Description:
14328     When operating with a 32-bit bus, it is recommended that
14329     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
14330     This forces the DDR controller to use 4-beat bursts when
14331     communicating to the DRAMs. However, an issue exists that
14332     could lead to data corruption when the DDR controller is
14333     in 32-bit bus mode while using 4-beat bursts.
14334
14335     Projected Impact:
14336     If the DDR controller is operating in 32-bit bus mode with
14337     4-beat bursts, then the controller may enter into a bad state.
14338     All subsequent reads from memory is corrupted.
14339     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
14340     Therefore, this erratum does not affect DDR3 mode.
14341
14342     Work Arounds:
14343     To work around this issue, software must set DEBUG_1[31] in
14344     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
14345     and CCSRBAR offset + 0x6f00 for DDR_2).
14346
14347     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
14348     as condition, but it should be DDR_SDRAM_CFG register.
14349
14350     Signed-off-by: Dave Liu <daveliu@freescale.com>
14351
14352 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
14353 Author: Dave Liu <daveliu@freescale.com>
14354 Date:   Thu Oct 23 21:17:19 2008 +0800
14355
14356     85xx: remove unused config definition
14357
14358     Signed-off-by: Dave Liu <daveliu@freescale.com>
14359
14360 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
14361 Author: Kumar Gala <galak@kernel.crashing.org>
14362 Date:   Thu Oct 23 01:47:38 2008 -0500
14363
14364     85xx: Add basic e500mc core support
14365
14366     Introduce CONFIG_E500MC to deal with the minor differences between
14367     e500v2 and e500mc.
14368
14369     * Certain fields of HID0/1 don't exist anymore on e500mc
14370     * Cache line size is 64-bytes on e500mc
14371     * reset value of PIR is different
14372
14373     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14374
14375 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
14376 Author: Kumar Gala <galak@kernel.crashing.org>
14377 Date:   Thu Oct 23 01:47:37 2008 -0500
14378
14379     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
14380
14381     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
14382     e500mc's 64-byte cacheline properly when it gets added.
14383
14384     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14385
14386 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
14387 Author: Georg Schardt <schardt@team-ctech.de>
14388 Date:   Fri Oct 24 13:51:52 2008 +0200
14389
14390     ppc4xx: New board avnet fx12 minimodul
14391
14392     This patch adds support for the avnet fx12 minimodul.
14393     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
14394     patch from Ricardo.
14395
14396     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
14397     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14398     Signed-off-by: Stefan Roese <sr@denx.de>
14399
14400 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
14401 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14402 Date:   Tue Oct 21 18:29:46 2008 +0200
14403
14404     ppc4xx: Generic architecture for xilinx ppc405(v3)
14405
14406     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
14407     ppc440 boards, this patch presents a common architecture for all the
14408     xilinx ppc405 boards.
14409
14410     Any custom xilinx ppc405 board can be added very easily with no code
14411     duplicity.
14412
14413     This patch also adds a simple generic board, that can be used on almost
14414     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
14415
14416     This patch is prepared to work with the latest version of EDK (10.1)
14417
14418     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14419     Signed-off-by: Stefan Roese <sr@denx.de>
14420
14421 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
14422 Author: Stefan Roese <sr@denx.de>
14423 Date:   Fri Oct 24 08:56:09 2008 +0200
14424
14425     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
14426
14427     Since the new autocalibration still has some problems on some Kilauea
14428     boards with 200MHz DDR2 frequency we disable the autocalibration and
14429     use the hardcoded values as done before. This seems to work reliably
14430     on all known DDR2 frequencies.
14431
14432     After the autocalibration issue is fixed we will enable it again.
14433
14434     Signed-off-by: Stefan Roese <sr@denx.de>
14435
14436 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
14437 Author: Mike Frysinger <vapier@gentoo.org>
14438 Date:   Wed Apr 9 02:02:07 2008 -0400
14439
14440     Blackfin: fix up UART status bit handling
14441
14442     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
14443     This can cause problems when we poll the LSR and then later try and handle
14444     any errors detected.
14445
14446     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14447
14448 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
14449 Author: Mike Frysinger <vapier@gentoo.org>
14450 Date:   Sat Oct 11 20:42:17 2008 -0400
14451
14452     Blackfin: bf561-ezkit: drop redundant code
14453
14454     Common Blackfin code already announces CPU information.
14455
14456     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14457
14458 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
14459 Author: Mike Frysinger <vapier@gentoo.org>
14460 Date:   Sat Oct 11 20:43:10 2008 -0400
14461
14462     Blackfin: bf561-ezkit: drop pointless USB code
14463
14464     The USB/LAN register settings are not actually used/needed in order to
14465     drive things from U-Boot, so drop the code.
14466
14467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14468
14469 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
14470 Author: Mike Frysinger <vapier@gentoo.org>
14471 Date:   Sat Oct 11 20:47:58 2008 -0400
14472
14473     Blackfin: linker scripts: force start.o and set initcode boundaries
14474
14475     Make sure that the start.o object is always the first object in our linker
14476     script regardless of configuration settings, and add some linker symbols
14477     so the ldr utility can properly locate the initcode when generating a LDR.
14478
14479     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14480
14481 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
14482 Author: Mike Frysinger <vapier@gentoo.org>
14483 Date:   Sat Oct 11 21:19:39 2008 -0400
14484
14485     Blackfin: small cpu init optimization while setting interrupt mask
14486
14487     Use the sti instruction to set the initial interrupt mask rather than
14488     banging on the core IMASK MMR to save both space and time.
14489
14490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14491
14492 commit 960922291c9594acb575cec7e47d7bed9b58182c
14493 Author: Mike Frysinger <vapier@gentoo.org>
14494 Date:   Sat Oct 11 21:18:10 2008 -0400
14495
14496     Blackfin: set initial stack correctly according to Blackfin ABI
14497
14498     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14499
14500 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
14501 Author: Mike Frysinger <vapier@gentoo.org>
14502 Date:   Sun Apr 20 03:11:53 2008 -0400
14503
14504     Blackfin: make baud calculation more accurate
14505
14506     We should use the algorithm in the Linux kernel so that the UART divisor
14507     calculation is more accurate.  It also fixes problems on some picky UARTs
14508     that have sampling anomalies.
14509
14510     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14511
14512 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
14513 Author: Mike Frysinger <vapier@gentoo.org>
14514 Date:   Mon Oct 6 04:21:41 2008 -0400
14515
14516     Blackfin: decode hwerrcause/excause when crashing
14517
14518     Having to decode hwerrcause/excause values is a pain, so automate it.
14519
14520     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14521
14522 commit 2de95bb20c488f20298df6881b700a5a757ee780
14523 Author: Mike Frysinger <vapier@gentoo.org>
14524 Date:   Mon Oct 6 04:20:54 2008 -0400
14525
14526     Blackfin: fix register dump messages
14527
14528     Make sure we report RETI/IPEND correctly.
14529
14530     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14531
14532 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
14533 Author: Mike Frysinger <vapier@gentoo.org>
14534 Date:   Mon Oct 6 04:19:34 2008 -0400
14535
14536     Blackfin: don't bother displaying reboot msg when crashing
14537
14538     The hang function already tells you to reboot, so no point in showing it
14539     twice.
14540
14541     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14542
14543 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
14544 Author: Mike Frysinger <vapier@gentoo.org>
14545 Date:   Sun Jun 1 01:23:48 2008 -0400
14546
14547     Blackfin: enable support for nested interrupts
14548
14549     During cpu init, make sure we initialize the CEC properly so that
14550     interrupts can fire and be handled while U-Boot is running.
14551
14552     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14553
14554 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
14555 Author: Mike Frysinger <vapier@gentoo.org>
14556 Date:   Mon Oct 6 03:55:25 2008 -0400
14557
14558     Blackfin: init NAND before relocating env
14559
14560     If booting out of NAND, we need to make sure we initialize it properly
14561     before attempting to relocate the environment.
14562
14563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14564
14565 commit 0f9a8819416ba40a53de50af148847a0e508f84d
14566 Author: Mike Frysinger <vapier@gentoo.org>
14567 Date:   Thu Aug 7 18:40:13 2008 -0400
14568
14569     Blackfin: check cache bits, not cplb bits
14570
14571     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14572
14573 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
14574 Author: Mike Frysinger <vapier@gentoo.org>
14575 Date:   Thu Aug 7 17:52:59 2008 -0400
14576
14577     Blackfin: drop unused cache flush code
14578
14579     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14580
14581 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
14582 Author: Mike Frysinger <vapier@gentoo.org>
14583 Date:   Thu Aug 7 15:21:47 2008 -0400
14584
14585     Blackfin: unify cache handling code
14586
14587     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14588
14589 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
14590 Author: Mike Frysinger <vapier@gentoo.org>
14591 Date:   Mon Oct 6 03:39:07 2008 -0400
14592
14593     Blackfin: only initialize the RTC when actually used
14594
14595     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14596
14597 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
14598 Author: Mike Frysinger <vapier@gentoo.org>
14599 Date:   Mon Oct 6 03:44:33 2008 -0400
14600
14601     Blackfin: fix SWRST register definition
14602
14603     The SWRST register is a 16bit, not 32bit, register.
14604
14605     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14606
14607 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
14608 Author: Mike Frysinger <vapier@gentoo.org>
14609 Date:   Thu Aug 7 18:54:57 2008 -0400
14610
14611     Blackfin: build with -fomit-frame-pointer
14612
14613     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14614
14615 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
14616 Author: Mike Frysinger <vapier@gentoo.org>
14617 Date:   Thu Aug 7 17:50:26 2008 -0400
14618
14619     Blackfin: document some of the blackfin directories
14620
14621     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14622
14623 commit e4337968e43698a68ba608369f46d4a4114111ca
14624 Author: Mike Frysinger <vapier@gentoo.org>
14625 Date:   Thu Aug 7 15:16:56 2008 -0400
14626
14627     Blackfin: only enable hardware error irq by default
14628
14629     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14630
14631 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
14632 Author: Mike Frysinger <vapier@gentoo.org>
14633 Date:   Thu Aug 7 13:36:43 2008 -0400
14634
14635     Blackfin: punt old unused mem_init.h header
14636
14637     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14638
14639 commit bcc121a01608042066a19ab5bff5bcfb805bf406
14640 Author: Mike Frysinger <vapier@gentoo.org>
14641 Date:   Thu Aug 7 13:18:55 2008 -0400
14642
14643     Blackfin: delete unused page_descriptor_table_size define
14644
14645     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14646
14647 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
14648 Author: Mike Frysinger <vapier@gentoo.org>
14649 Date:   Thu Aug 7 13:17:03 2008 -0400
14650
14651     Blackfin: fix typo in boot mode comment and add NAND define
14652
14653     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14654
14655 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
14656 Author: Ben Maan <moo@cow>
14657 Date:   Thu Aug 7 13:14:21 2008 -0400
14658
14659     Blackfin: fix port mux defines for BF54x
14660
14661     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14662
14663 commit 0656ef2ba274910d31364fe022f6c7db0051660d
14664 Author: Mike Frysinger <vapier@gentoo.org>
14665 Date:   Thu Aug 7 13:09:50 2008 -0400
14666
14667     Blackfin: update anomaly lists
14668
14669     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14670
14671 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
14672 Author: Mike Frysinger <vapier@gentoo.org>
14673 Date:   Thu Aug 7 13:08:54 2008 -0400
14674
14675     Blackfin: unify DSPID/DBGSTAT MMR definitions
14676
14677     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14678
14679 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
14680 Author: Wolfgang Denk <wd@denx.de>
14681 Date:   Tue Oct 21 15:53:51 2008 +0200
14682
14683     Fix strmhz(): avoid printing negative fractions
14684
14685     Signed-off-by: Wolfgang Denk <wd@denx.de>
14686
14687 commit 4a7f6b750d8de543fdf8e58acd86745010054571
14688 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
14689 Date:   Fri Oct 17 08:55:51 2008 -0400
14690
14691     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
14692
14693     This is done to allow other 83XX based platforms which also have UPM
14694     (e.g. 8360) to configure and use their UPM in u-boot.
14695
14696     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14697     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14698
14699 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
14700 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14701 Date:   Tue Oct 14 22:58:53 2008 +0400
14702
14703     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
14704
14705     With this patch u-boot can fixup the dr_mode and phy_type properties
14706     for the Dual-Role USB controller.
14707
14708     While at it, also remove #ifdefs around includes, they are not needed.
14709
14710     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14711     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14712
14713 commit b3379f3fd13969934c00097c05754e7a8990fd39
14714 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14715 Date:   Wed Oct 8 20:52:54 2008 +0400
14716
14717     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
14718
14719     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
14720     current settings don't work with the default chip on the board.
14721     Nevertheless Freescale's U-Boot sets the option register correctly,
14722     so I just dumped the register from the working u-boot. My guess is
14723     that the old settings were applicable for some pilot boards, not
14724     found in the production.
14725
14726     This patch also enables FSL ELBC driver so that we could access
14727     the NAND storage in the u-boot.
14728
14729     The NAND support costs about 45KB, so the u-boot no longer fits
14730     into two 128KB NOR flash sectors, thus we also have to adjust
14731     environment location: add another 128KB to the monitor length.
14732
14733     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14734
14735     It is due to hardware design and logic defect, that is the
14736     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
14737     the NAND chip connected to nLCS3,  you have to set up the
14738     OR3[BCTLD] = '1' for normal operation, otherwise it will have
14739     bus contention due to the pin 48/25 of U60 is enabled.
14740
14741     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
14742     asserted upon access to the NAND chip, keep the default state.
14743
14744     Acked-by: Dave Liu <daveliu@freescale.com>
14745     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14746
14747 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
14748 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14749 Date:   Thu Oct 2 19:17:33 2008 +0400
14750
14751     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
14752
14753     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
14754     standalone or acting as a PCI agent. User's Guide says:
14755
14756     - When the CPLD recognizes its location on the PIB it automatically
14757       configures RCW to the PCI Host.
14758     - If the CPLD fails to recognize its location then it is automatically
14759       configured as an Agent and the PCI is configured to an external arbiter.
14760
14761     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
14762     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
14763     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
14764     any arbiter bad things will happen (here the board hangs during any config
14765     space reads).
14766
14767     In this situation we must disable the PCI. And in case of anybody really
14768     want to use an external arbiter, we provide "pci_external_aribter"
14769     environment variable.
14770
14771     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14772     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14773
14774 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
14775 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14776 Date:   Thu Oct 2 18:32:25 2008 +0400
14777
14778     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
14779
14780     This involves configuring the SerDes and fixing up the flags and
14781     PHY addresses for the TSECs.
14782
14783     For Linux we also fix up the device tree.
14784
14785     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14786     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14787
14788 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
14789 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14790 Date:   Thu Oct 2 18:31:59 2008 +0400
14791
14792     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
14793
14794     We'll use these masks to parse TSEC modes out of HRCWH.
14795
14796     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14797     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14798
14799 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
14800 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14801 Date:   Thu Oct 2 18:31:56 2008 +0400
14802
14803     mpc83xx: serdes: add forgotten shifts for rfcks
14804
14805     The rfcks should be shifted by 28 bits left. We didn't notice the bug
14806     because we were using only 100MHz clocks (for which rfcks == 0).
14807
14808     Though, for SGMII we'll need 125MHz clocks.
14809
14810     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14811     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14812
14813 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
14814 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14815 Date:   Thu Oct 2 18:31:53 2008 +0400
14816
14817     mpc83xx: fix serdes setup for the MPC8378E boards
14818
14819     MPC837xE specs says that SerDes1 has:
14820
14821     â€” Two lanes running x1 SGMII at 1.25 Gbps;
14822     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
14823
14824     And for SerDes2:
14825
14826     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
14827     â€” One lane running x2 PCI Express at 2.5 Gbps;
14828     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
14829
14830     The spec also explicitly states that PEX options are not valid for
14831     the SD1.
14832
14833     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
14834     which is wrong to do.
14835
14836     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14837     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14838
14839 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
14840 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14841 Date:   Wed Sep 10 18:12:37 2008 +0400
14842
14843     mpc83xx: mpc8360emds: rework LBC SDRAM setup
14844
14845     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
14846     it difficult to use (b/c then the memory is discontinuous and
14847     there is quite big memory hole between the DDR/SDRAM regions).
14848
14849     This patch reworks LBC SDRAM setup so that now we dynamically
14850     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
14851     DDR memory).
14852
14853     With this patch we're able to:
14854
14855     - Boot without external DDR memory;
14856     - Use most "DDR + SDRAM" setups without need to support for
14857       sparse/discontinuous memory model in the software.
14858
14859     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14860     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14861
14862 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
14863 Author: Wolfgang Denk <wd@xpert.denx.de>
14864 Date:   Tue Oct 21 11:23:56 2008 +0200
14865
14866     FDT: don't use private kernel header files
14867
14868     On some systems (for example Fedora Core 4) U-Boot builds with the
14869     following wanrings only:
14870
14871     ...
14872     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
14873                      from fdt.c:51:
14874                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
14875
14876     This patch fixes this problem.
14877
14878     Signed-off-by: Wolfgang Denk <wd@denx.de>
14879
14880 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
14881 Author: Stefan Roese <sr@denx.de>
14882 Date:   Mon Oct 13 15:15:31 2008 +0200
14883
14884     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
14885
14886     Signed-off-by: Stefan Roese <sr@denx.de>
14887
14888 commit 43cbce69d48d052574d71f50724be546d90a46a4
14889 Author: Stefan Roese <sr@denx.de>
14890 Date:   Mon Oct 13 10:45:14 2008 +0200
14891
14892     ppc4xx: Correctly setup ranges property in ebc node
14893
14894     Previously only the NOR flash mapping was written into the ranges
14895     property of the ebc node. This patch now writes all enabled chip
14896     select areas into the ranges property.
14897
14898     Signed-off-by: Stefan Roese <sr@denx.de>
14899
14900 commit d7b26d58328f137471ea97de382bfa63f7239931
14901 Author: Dirk Eibach <eibach@gdsys.de>
14902 Date:   Wed Oct 8 15:37:50 2008 +0200
14903
14904     ppc4xx: Add GDSys neo 405EP board support
14905
14906     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
14907     Signed-off-by: Stefan Roese <sr@denx.de>
14908
14909 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
14910 Author: Niklaus Giger <niklaus.giger@netstal.com>
14911 Date:   Wed Oct 1 14:46:13 2008 +0200
14912
14913     ppc4xx: Update configs for Netstal boards
14914
14915     I reorganized my config files, putting the common stuff into netstal-common.h
14916     (got the idea by looking a amcc-common.h from Stefan).
14917
14918     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
14919
14920     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
14921     Signed-off-by: Stefan Roese <sr@denx.de>
14922
14923 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
14924 Author: Adam Graham <agraham@amcc.com>
14925 Date:   Wed Oct 8 10:13:19 2008 -0700
14926
14927     ppc4xx: Add routine to retrieve CPU number
14928
14929     Provide a weak defined routine to retrieve the CPU number for
14930     reference boards that have multiple CPU's.  Default behavior
14931     is the existing single CPU print output.  Reference boards with
14932     multiple CPU's need to provide a board specific routine.
14933     See board/amcc/arches/arches.c for an example.
14934
14935     Signed-off-by: Adam Graham <agraham@amcc.com>
14936     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
14937     Signed-off-by: Stefan Roese <sr@denx.de>
14938
14939 commit 59217bae40e90982ab5400d849c08af683ace036
14940 Author: Adam Graham <agraham@amcc.com>
14941 Date:   Wed Oct 8 10:13:14 2008 -0700
14942
14943     ppc4xx: Add static support for 44x IBM SDRAM Controller
14944
14945     This patch add the capability to configure a PPC440 based IBM SDRAM
14946     Controller with static, compiled-in, values. PPC440 memory subsystem
14947     includes a Memory Queue core.
14948
14949     Signed-off-by: Adam Graham <agraham@amcc.com>
14950     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
14951     Signed-off-by: Stefan Roese <sr@denx.de>
14952
14953 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
14954 Author: Adam Graham <agraham@amcc.com>
14955 Date:   Wed Oct 8 10:12:53 2008 -0700
14956
14957     ppc4xx: Add AMCC Arches board support (dual 460GT)
14958
14959     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
14960     This board is a dual processor board with each processor providing
14961     independent resources for Rapid IO, Gigabit Ethernet, and serial
14962     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
14963     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
14964     port. The two 460GT's will communicate with each other via shared
14965     memory, Gigabit Ethernet and x1 PCI-Express.
14966
14967     Signed-off-by: Adam Graham <agraham@amcc.com>
14968     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
14969     Signed-off-by: Stefan Roese <sr@denx.de>
14970
14971 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
14972 Author: Wolfgang Denk <wd@xpert.denx.de>
14973 Date:   Sun Oct 19 21:54:30 2008 +0200
14974
14975     TQM8260: environment in flash instead EEPROM, baudrate 115k
14976
14977     Several customers have reported problems with the environment in
14978     EEPROM, including corrupted content after board reset. Probably the
14979     code to prevent I2C Enge Conditions is not working sufficiently.
14980
14981     We move the environment to flash now, which allows to have a backup
14982     copy plus gives much faster boot times.
14983
14984     Also, change the default console initialization to 115200 bps as used
14985     on most other boards.
14986
14987     Signed-off-by: Wolfgang Denk <wd@denx.de>
14988
14989 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
14990 Author: Kumar Gala <galak@kernel.crashing.org>
14991 Date:   Sun Oct 19 12:49:19 2008 -0500
14992
14993     85xx: Fix compile warning in mpc8536ds.c
14994
14995     mpc8536ds.c: In function 'is_sata_supported':
14996     mpc8536ds.c:615: warning: unused variable 'devdisr'
14997
14998     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14999
15000 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
15001 Author: Wolfgang Denk <wd@denx.de>
15002 Date:   Sun Oct 19 02:35:50 2008 +0200
15003
15004     Cleanup: fix "MHz" spelling
15005
15006     Signed-off-by: Wolfgang Denk <wd@denx.de>
15007
15008 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
15009 Author: Wolfgang Denk <wd@denx.de>
15010 Date:   Sun Oct 19 02:35:49 2008 +0200
15011
15012     Use strmhz() to format clock frequencies
15013
15014     Signed-off-by: Wolfgang Denk <wd@denx.de>
15015
15016 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
15017 Author: Wolfgang Denk <wd@denx.de>
15018 Date:   Sun Oct 19 02:35:48 2008 +0200
15019
15020     strmhz(): Round numbers when printing clock frequencies
15021
15022     Round clock frequencies for printing.
15023
15024     Many boards printed off clock frequencies like 399 MHz instead of the
15025     exact 400 MHz because numberes were not rounded. This is fixed now.
15026
15027     Signed-off-by: Wolfgang Denk <wd@denx.de>
15028
15029 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
15030 Author: Timur Tabi <timur@freescale.com>
15031 Date:   Mon Oct 20 15:16:47 2008 -0500
15032
15033     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
15034
15035     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
15036     to add a comment that the correct value disagrees with the 8544 reference
15037     manual.  The changelog for that commit is also wrong, as it says "bit 28"
15038     when it should be "bit 24".
15039
15040     Signed-off-by: Timur Tabi <timur@freescale.com>
15041
15042 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
15043 Author: Heiko Schocher <hs@denx.de>
15044 Date:   Fri Oct 17 18:24:06 2008 +0200
15045
15046     mgcoge: add redundant environment sector
15047
15048     Signed-off-by: Heiko Schocher <hs@denx.de>
15049
15050 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
15051 Author: Heiko Schocher <hs@denx.de>
15052 Date:   Fri Oct 17 18:23:27 2008 +0200
15053
15054     mgsuvd: update size of environment
15055
15056     Signed-off-by: Heiko Schocher <hs@denx.de>
15057
15058 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
15059 Author: Jason Jin <Jason.jin@freescale.com>
15060 Date:   Fri Oct 10 11:41:00 2008 +0800
15061
15062     Enabled the Freescale SGMII riser card on 8536DS
15063
15064     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
15065
15066 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
15067 Author: Liu Yu <yu.liu@freescale.com>
15068 Date:   Fri Oct 10 11:40:59 2008 +0800
15069
15070     Enabled the Freescale SGMII riser card on 8572DS
15071
15072     This patch based on Andy's work.
15073     Including command 'pixis_set_sgmii' support.
15074
15075     Signed-off-by: Liu Yu <yu.liu@freescale.com>
15076
15077 commit bff188baf9427c35745356439435acf3864d4c65
15078 Author: Liu Yu <yu.liu@freescale.com>
15079 Date:   Fri Oct 10 11:40:58 2008 +0800
15080
15081     Make pixis_set_sgmii more general to support MPC85xx boards.
15082
15083     The pixis sgmii command depend on the FPGA support on the board, some 85xx
15084     boards support SGMII riser card but did not support this command, define
15085     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
15086
15087     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
15088     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
15089     PIXIS_VCFGEN1_MASK in header file for both boards.
15090
15091     Signed-off-by: Liu Yu <yu.liu@freescale.com>
15092
15093 commit 5e981d683d2363204c76773941c2e9c2044c808f
15094 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15095 Date:   Wed Oct 8 23:38:02 2008 -0500
15096
15097     Add cpu/8xxx to TAGS_SUBDIRS
15098
15099     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15100
15101 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
15102 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15103 Date:   Thu Oct 9 01:25:55 2008 -0500
15104
15105     fsl_law clear enable before changing.
15106
15107     Debug sessions may have left enabled laws.
15108     Changing lawbar with an unkown enabled tgtid could cause problems.
15109
15110     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15111
15112 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
15113 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15114 Date:   Thu Oct 9 00:29:27 2008 -0500
15115
15116     mpc8572 additional end-point mode
15117
15118     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
15119     Include host_agent == 0 decode for end-point determination.
15120
15121     This is not needed for the ds reference board since pcie3 will be a host
15122     in order to connect to the uli chip.  Include it here as a reference for
15123     other mpc8572 boards.
15124
15125     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15126
15127 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
15128 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15129 Date:   Wed Oct 8 23:37:59 2008 -0500
15130
15131     85xx if NUM_CPUS>1, print cpu number
15132
15133     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15134
15135 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
15136 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
15137 Date:   Wed Oct 8 23:38:01 2008 -0500
15138
15139     pixis do not print long help if not configured
15140
15141     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15142
15143 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
15144 Author: Andy Fleming <afleming@freescale.com>
15145 Date:   Tue Oct 7 08:09:50 2008 -0500
15146
15147     Have u-boot pass stashing parameters into device tree
15148
15149     Some cores don't support ethernet stashing at all, and some
15150     instances have errata.  Adds 3 properties to gianfar nodes
15151     which support stashing.  For now, just add this support to
15152     85xx SoCs.
15153
15154     Signed-off-by: Andy Fleming <afleming@freescale.com>
15155
15156 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
15157 Author: Haiying Wang <Haiying.Wang@freescale.com>
15158 Date:   Fri Oct 3 12:37:57 2008 -0400
15159
15160     Add DDR options setting on MPC8641HPCN board
15161
15162     * Add board specific parameter table to choose correct cpo, clk_adjust,
15163     write_data_delay based on board ddr frequency and n_ranks.
15164
15165     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
15166
15167     Signed-off-by: James Yang <James.Yang@freescale.com>
15168     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15169
15170 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
15171 Author: Haiying Wang <Haiying.Wang@freescale.com>
15172 Date:   Fri Oct 3 12:37:41 2008 -0400
15173
15174     Add ddr interleaving suppport for MPC8572DS board
15175
15176     * Add board specific parameter table to choose correct cpo, clk_adjust,
15177     write_data_delay, 2T based on board ddr frequency and n_ranks.
15178
15179     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
15180
15181     * Set memory controller interleaving mode to bank interleaving, and disable
15182     bank(chip select) interleaving mode by default, because the default on-board
15183     DDR DIMMs are 2x512MB single-rank.
15184
15185     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
15186
15187     Signed-off-by: James Yang <James.Yang@freescale.com>
15188     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15189
15190 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
15191 Author: Haiying Wang <Haiying.Wang@freescale.com>
15192 Date:   Fri Oct 3 12:37:26 2008 -0400
15193
15194     Add debug information for DDR controller registers
15195
15196     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15197
15198 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
15199 Author: Haiying Wang <Haiying.Wang@freescale.com>
15200 Date:   Fri Oct 3 12:37:10 2008 -0400
15201
15202     Check DDR interleaving mode
15203
15204     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
15205     ba_intlv_ctl.
15206     * Print DDR interleaving mode information
15207     * Add doc/README.fsl-ddr to describe the interleaving setting
15208
15209     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15210
15211 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
15212 Author: Haiying Wang <Haiying.Wang@freescale.com>
15213 Date:   Fri Oct 3 12:36:55 2008 -0400
15214
15215     Pass dimm parameters to populate populate controller options
15216
15217     Because some dimm parameters like n_ranks needs to be used with the board
15218     frequency to choose the board parameters like clk_adjust etc. in the
15219     board_specific_paramesters table of the board ddr file, we need to pass
15220     the dimm parameters to the board file.
15221
15222     * move ddr dimm parameters header file from /cpu to /include directory.
15223     * add ddr dimm parameters to populate board specific options.
15224     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
15225
15226     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15227
15228 commit dbbbb3abeff325855cae76e33d69d5665631443f
15229 Author: Haiying Wang <Haiying.Wang@freescale.com>
15230 Date:   Fri Oct 3 12:36:39 2008 -0400
15231
15232     Make DDR interleaving mode work correctly
15233
15234     Fix some bugs:
15235       1. Correctly set intlv_ctl in cs_config.
15236       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
15237       3. Set base_address and total memory for each ddr controller in memory
15238          controller interleaving mode.
15239
15240     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15241
15242 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
15243 Author: Kumar Gala <galak@kernel.crashing.org>
15244 Date:   Mon Sep 22 23:40:42 2008 -0500
15245
15246     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
15247
15248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15249
15250 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
15251 Author: Kumar Gala <galak@kernel.crashing.org>
15252 Date:   Mon Sep 22 14:11:11 2008 -0500
15253
15254     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
15255
15256     Changing the flash from cacheable to cache-inhibited was taking a significant
15257     amount of time due to the fact that we were iterating over the full 256M of
15258     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
15259
15260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15261
15262 commit 54e091d3b603a3332c619199ca83a07e95960da4
15263 Author: Kumar Gala <galak@kernel.crashing.org>
15264 Date:   Mon Sep 22 14:11:10 2008 -0500
15265
15266     85xx: Export invalidate_{i,d}cache and add flush_dcache
15267
15268     Added the ability for C code to invalidate the i/d-cache's and
15269     to flush the d-cache.  This allows us to more efficient change mappings
15270     from cache-able to cache-inhibited.
15271
15272     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15273
15274 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
15275 Author: Heiko Schocher <hs@denx.de>
15276 Date:   Fri Oct 17 16:11:52 2008 +0200
15277
15278     mgcoge, mgsuvd: extract more common code
15279
15280     in ft_blob_update () for both boards was an unneccessary
15281     repetition of code, which this patch moves in a common
15282     function for this boards.
15283
15284     Signed-off-by: Heiko Schocher <hs@denx.de>
15285
15286 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
15287 Author: Heiko Schocher <hs@denx.de>
15288 Date:   Fri Oct 17 12:15:55 2008 +0200
15289
15290     mgcoge, mgsuvd: use in_*/out_* accesors
15291
15292     Signed-off-by: Heiko Schocher <hs@denx.de>
15293
15294 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
15295 Author: Heiko Schocher <hs@denx.de>
15296 Date:   Fri Oct 17 13:52:51 2008 +0200
15297
15298     mgsuvd: fix compiler warning when using soft_i2c driver
15299
15300     Signed-off-by: Heiko Schocher <hs@denx.de>
15301
15302 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
15303 Author: Heiko Schocher <hs@denx.de>
15304 Date:   Fri Oct 17 12:15:05 2008 +0200
15305
15306     mgsuvd: fix coding style
15307
15308     Signed-off-by: Heiko Schocher <hs@denx.de>
15309
15310 commit 5f4c3137f4f051787707c548133823f1656eb508
15311 Author: Heiko Schocher <hs@denx.de>
15312 Date:   Fri Oct 17 12:13:30 2008 +0200
15313
15314     mgcoge: Second Flash on CS5 not on CS1
15315
15316     Signed-off-by: Heiko Schocher <hs@denx.de>
15317
15318 commit 76da19df5b8e186d269f29190696bd31fb6c836b
15319 Author: Kumar Gala <galak@kernel.crashing.org>
15320 Date:   Thu Oct 16 21:52:08 2008 -0500
15321
15322     Added arch_lmb_reserve to allow arch specific memory regions protection
15323
15324     Each architecture has different ways of determine what regions of memory
15325     might not be valid to get overwritten when we boot.  This provides a
15326     hook to allow them to reserve any regions they care about.  Currently
15327     only ppc, m68k and sparc need/use this.
15328
15329     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15330
15331 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
15332 Author: Heiko Schocher <hs@denx.de>
15333 Date:   Thu Oct 16 16:32:35 2008 +0200
15334
15335     mgcoge: added CONFIG_FIT to support the new u-boot image format
15336
15337     Signed-off-by: Heiko Schocher <hs@denx.de>
15338
15339 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
15340 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15341 Date:   Thu Oct 16 15:01:15 2008 +0200
15342
15343     rename CFG_ macros to CONFIG_SYS
15344
15345     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15346
15347 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
15348 Author: Kumar Gala <galak@kernel.crashing.org>
15349 Date:   Mon Oct 13 14:12:55 2008 -0500
15350
15351     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
15352
15353     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15354
15355 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
15356 Author: Kumar Gala <galak@kernel.crashing.org>
15357 Date:   Tue Sep 23 10:05:02 2008 -0500
15358
15359     Expose command table search for sub-commands
15360
15361     Sub-command can benefit from using the same table and search functions
15362     that top level commands have.  Expose this functionality by refactoring
15363     find_cmd() and introducing find_cmd_tbl() that sub-command processing
15364     can call.
15365
15366     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15367
15368 commit f7e51b27508446f8cae3927975817137979ad5e8
15369 Author: Heiko Schocher <hs@denx.de>
15370 Date:   Wed Oct 15 09:41:33 2008 +0200
15371
15372     mgsuvd, mgcoge: added BOOTCOUNT feature.
15373
15374     Signed-off-by: Heiko Schocher <hs@denx.de>
15375
15376 commit 8f64da7f83b553889bc08400c97047998382e9d2
15377 Author: Heiko Schocher <hs@denx.de>
15378 Date:   Wed Oct 15 09:41:00 2008 +0200
15379
15380     mgcoge, mgsuvd: added support for the IVM EEprom.
15381
15382     The EEprom contains some Manufacturerinformation,
15383     which are read from u-boot at boot time, and saved
15384     in same hush shell variables.
15385
15386     Signed-off-by: Heiko Schocher <hs@denx.de>
15387
15388 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
15389 Author: Heiko Schocher <hs@denx.de>
15390 Date:   Wed Oct 15 09:40:28 2008 +0200
15391
15392     hush: add showvar command for hush shell.
15393
15394     This new command shows the local variables defined in
15395     the hush shell:
15396
15397     => help showvar
15398     showvar
15399         - print values of all hushshell variables
15400     showvar name ...
15401         - print value of hushshell variable 'name'
15402
15403     Also make the set_local_var() and unset_local_var ()
15404     no longer static, so it is possible to define local
15405     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
15406     is defined, u-boot calls hush_init_var (), where
15407     boardspecific code can define local hush shell
15408     variables at boottime.
15409
15410     Signed-off-by: Heiko Schocher <hs@denx.de>
15411
15412 commit 67b23a322848d828a5e45c0567b72762bfde7abf
15413 Author: Heiko Schocher <hs@denx.de>
15414 Date:   Wed Oct 15 09:39:47 2008 +0200
15415
15416     I2C: adding new "i2c bus" Command to the I2C Subsystem.
15417
15418     With this Command it is possible to add new I2C Busses,
15419     which are behind 1 .. n I2C Muxes. Details see README.
15420
15421     Signed-off-by: Heiko Schocher <hs@denx.de>
15422
15423 commit c24853644ddd2dd2e4246b5854a93e6254a14092
15424 Author: Heiko Schocher <hs@denx.de>
15425 Date:   Wed Oct 15 09:39:08 2008 +0200
15426
15427     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
15428
15429     As documented in doc/I2C_Edge_Conditions, adding a
15430     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
15431     for the mgcoge and mgsuvd board.
15432
15433     This code was originally written by Keymile in association
15434     with Anatech and Atmel in 1998. The Code toggels the SCL
15435     until the SCA line goes to HIGH (max. 16 times).
15436     And after this, a start condition is sent.
15437
15438     This is another approach to deblock the I2C Bus. The
15439     soft I2C driver actually sends 9 clocks with SDA High,
15440     and then a stop at the end, to deblock the I2C Bus.
15441
15442     Maybe we should use the approach from Keymile as
15443     the new standard?
15444
15445     Signed-off-by: Heiko Schocher <hs@denx.de>
15446
15447 commit 4ca107effebfbabac1057c39632105dacef95957
15448 Author: Heiko Schocher <hs@denx.de>
15449 Date:   Wed Oct 15 09:38:38 2008 +0200
15450
15451     soft_i2c: Add CFG_I2C_INIT_BOARD option
15452
15453     This patch adds the option for a boardspecific
15454     I2C deblocking mechanism for the soft i2c driver.
15455
15456     Signed-off-by: Heiko Schocher <hs@denx.de>
15457
15458 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
15459 Author: Heiko Schocher <hs@denx.de>
15460 Date:   Wed Oct 15 09:38:07 2008 +0200
15461
15462     mgcoge, mgsuvd: add DTT (LM75) support.
15463
15464     Signed-off-by: Heiko Schocher <hs@denx.de>
15465
15466 commit 8e442df438ab677057571e3ac01846bff7719bce
15467 Author: Heiko Schocher <hs@denx.de>
15468 Date:   Wed Oct 15 09:37:34 2008 +0200
15469
15470     lm75: Make the LM75 MULTI_BUS compatible.
15471
15472     Signed-off-by: Heiko Schocher <hs@denx.de>
15473
15474 commit 12f1678127c1df2b2878ba93c88948bedc060775
15475 Author: Heiko Schocher <hs@denx.de>
15476 Date:   Wed Oct 15 09:37:04 2008 +0200
15477
15478     lm75: fix Codingstyle issues.
15479
15480     Signed-off-by: Heiko Schocher <hs@denx.de>
15481
15482 commit f2202450c75ba6934b356024101500ddcde6e2a6
15483 Author: Heiko Schocher <hs@denx.de>
15484 Date:   Wed Oct 15 09:36:33 2008 +0200
15485
15486     mgcoge, mgsuvd: added EEprom support.
15487
15488     Signed-off-by: Heiko Schocher <hs@denx.de>
15489
15490 commit 9661bf9d120f760238b2a073b84f2baf05010057
15491 Author: Heiko Schocher <hs@denx.de>
15492 Date:   Wed Oct 15 09:36:03 2008 +0200
15493
15494     mgcoge, mgsuvd: add I2C support.
15495
15496     Signed-off-by: Heiko Schocher <hs@denx.de>
15497
15498 commit 98aed379586a155292efbf3209356836584b601c
15499 Author: Heiko Schocher <hs@denx.de>
15500 Date:   Wed Oct 15 09:35:26 2008 +0200
15501
15502     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
15503
15504     This patch fixes the following warnings, when using
15505     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
15506     systems:
15507
15508     soft_i2c.c: In function 'send_reset':
15509     soft_i2c.c:93: warning: unused variable 'immr'
15510     soft_i2c.c: In function 'send_start':
15511     soft_i2c.c:124: warning: unused variable 'immr'
15512     soft_i2c.c: In function 'send_stop':
15513     soft_i2c.c:146: warning: unused variable 'immr'
15514     soft_i2c.c: In function 'send_ack':
15515     soft_i2c.c:171: warning: unused variable 'immr'
15516     soft_i2c.c: In function 'write_byte':
15517     soft_i2c.c:196: warning: unused variable 'immr'
15518     soft_i2c.c: In function 'read_byte':
15519     soft_i2c.c:244: warning: unused variable 'immr'
15520
15521     Signed-off-by: Heiko Schocher <hs@denx.de>
15522
15523 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
15524 Author: Heiko Schocher <hs@denx.de>
15525 Date:   Wed Oct 15 09:34:45 2008 +0200
15526
15527     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
15528
15529     Signed-off-by: Heiko Schocher <hs@denx.de>
15530
15531 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
15532 Author: Heiko Schocher <hs@denx.de>
15533 Date:   Wed Oct 15 09:34:05 2008 +0200
15534
15535     mgcoge: fix Coding Style issues.
15536
15537     Signed-off-by: Heiko Schocher <hs@denx.de>
15538
15539 commit e43a27c49712203fe8848a17714330623edfb2eb
15540 Author: Heiko Schocher <hs@denx.de>
15541 Date:   Wed Oct 15 09:33:30 2008 +0200
15542
15543     I2C: add new command i2c reset.
15544
15545     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
15546     it is not possible to get out of this, until the
15547     complete Hardware gets a reset. This new commando
15548     calls again i2c_init (and that calls i2c_init_board
15549     if defined), which will deblock the I2C Bus.
15550
15551     Signed-off-by: Heiko Schocher <hs@denx.de>
15552     Signed-off-by: Wolfgang Denk <wd@denx.de>
15553
15554 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
15555 Author: Heiko Schocher <hs@denx.de>
15556 Date:   Wed Oct 15 09:32:25 2008 +0200
15557
15558     mgsuvd, mgcoge: move this 2 boards in one dir.
15559
15560     There are some more extensions, which are for both boards
15561     and some more boards from this manufacturer will follow soon.
15562
15563     Signed-off-by: Heiko Schocher <hs@denx.de>
15564     Signed-off-by: Wolfgang Denk <wd@denx.de>
15565
15566 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
15567 Author: Dirk Eibach <eibach@gdsys.de>
15568 Date:   Wed Oct 8 13:44:27 2008 +0200
15569
15570     hwmon: Add LM63 support
15571
15572     This patch adds support for the National LM63 temperature
15573     sensor with integrated fan control. It's used on the GDSys
15574     Neo board (405EP) which will be submitted later.
15575
15576     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15577     Acked-by: Stefan Roese <sr@denx.de>
15578
15579 commit 7ba890bf2f2b92831420243c058951aa831119fd
15580 Author: Kyungmin Park <kmpark@infradead.org>
15581 Date:   Wed Oct 8 11:01:17 2008 +0900
15582
15583     Add Red Black Tree support
15584
15585     Now it's used at UBI module. Of course other modules can use it.
15586     If you want to use it, please define CONFIG_RBTREE
15587
15588     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15589
15590 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
15591 Author: richardretanubun <richardretanubun@ruggedcom.com>
15592 Date:   Mon Oct 6 16:10:53 2008 -0400
15593
15594     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
15595
15596     Added support for CONFIG_EFI_PARTITION to ext2 commands.
15597     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
15598
15599 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
15600 Author: richardretanubun <richardretanubun@ruggedcom.com>
15601 Date:   Fri Sep 26 11:13:22 2008 -0400
15602
15603     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
15604
15605     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
15606     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
15607
15608     Based on linux/fs/partitions/efi.[ch]
15609
15610     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
15611
15612 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
15613 Author: Bartlomiej Sieka <tur@semihalf.com>
15614 Date:   Wed Oct 1 15:26:32 2008 +0200
15615
15616     FIT: output image load address for type 'firmware', fix message while there
15617
15618     Now that the auto-update feature uses the 'firmware' type for updates, it is
15619     useful to inspect the load address of such images.
15620
15621     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15622
15623 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
15624 Author: Bartlomiej Sieka <tur@semihalf.com>
15625 Date:   Wed Oct 1 15:26:31 2008 +0200
15626
15627     Automatic software update from TFTP server
15628
15629     The auto-update feature allows to automatically download software updates
15630     from a TFTP server and store them in Flash memory during boot. Updates are
15631     contained in a FIT file and protected with SHA-1 checksum.
15632
15633     More detailed description can be found in doc/README.update.
15634
15635     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15636     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15637
15638 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
15639 Author: Bartlomiej Sieka <tur@semihalf.com>
15640 Date:   Wed Oct 1 15:26:27 2008 +0200
15641
15642     flash: factor out adjusting of Flash address to the end of sector
15643
15644     The upcoming automatic update feature needs the ability to adjust an
15645     address within Flash to the end of its respective sector. Factor out
15646     this functionality to a new function flash_sect_roundb().
15647
15648     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15649     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15650     Signed-off-by: Stefan Roese <sr@denx.de>
15651
15652 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
15653 Author: Bartlomiej Sieka <tur@semihalf.com>
15654 Date:   Wed Oct 1 15:26:29 2008 +0200
15655
15656     net: Make TFTP server timeout configurable
15657
15658     There are two aspects of a TFTP transfer involving timeouts:
15659     1. timeout waiting for initial server reply after sending RRQ
15660     2. timeouts while transferring actual data from the server
15661
15662     Since the upcoming auto-update feature attempts a TFTP download during each
15663     boot, it is undesirable to have a long delay when the TFTP server is not
15664     available. Thus, this commit makes the server timeout (1.) configurable by two
15665     global variables:
15666
15667     TftpRRQTimeoutMSecs
15668     TftpRRQTimeoutCountMax
15669
15670     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
15671     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
15672     The total delay when trying to download a file from a non-existing TFTP server
15673     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
15674
15675     Timeouts during file transfers (2.) are unaffected.
15676
15677     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15678     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15679     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15680
15681 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
15682 Author: Bartlomiej Sieka <tur@semihalf.com>
15683 Date:   Wed Oct 1 15:26:28 2008 +0200
15684
15685     net: express the first argument to NetSetTimeout() in milliseconds
15686
15687     Enforce millisecond semantics of the first argument to NetSetTimeout() --
15688     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
15689     get_timer() countiing in milliseconds).
15690
15691     Rationale for this patch is to enable millisecond granularity for
15692     network-related timeouts, which is needed for the upcoming automatic
15693     software update feature.
15694
15695     Summary of changes:
15696     - do not scale the first argument to NetSetTimeout() by CFG_HZ
15697     - change timeout values used in the networking code to milliseconds
15698
15699     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
15700     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15701     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15702
15703 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
15704 Author: richardretanubun <richardretanubun@ruggedcom.com>
15705 Date:   Mon Sep 29 18:28:23 2008 -0400
15706
15707     Adds two more ethernet interface to 83xx
15708
15709     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
15710     Six eth interface is chosen because the platform I am using combines
15711     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
15712
15713     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
15714     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15715
15716 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
15717 Author: Haiying Wang <Haiying.Wang@freescale.com>
15718 Date:   Wed Sep 24 11:42:12 2008 -0500
15719
15720     Change UEC PHY interface to RGMII on MPC8568MDS
15721
15722     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
15723
15724     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
15725     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
15726
15727     Now both UEC1 and UEC2 can work properly under u-boot.
15728
15729     It is also in consistent with the kernel setting for 8568 UEC phy interface.
15730
15731     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
15732     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15733
15734 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
15735 Author: Wolfgang Denk <wd@denx.de>
15736 Date:   Sat Oct 18 21:30:31 2008 +0200
15737
15738     Prepare v2008.10 release: update CHANGELOG & Makefile
15739
15740     Signed-off-by: Wolfgang Denk <wd@denx.de>
15741
15742 commit f7a35a60cf45491871a5c28e9ad24db005487857
15743 Author: Heiko Schocher <hs@denx.de>
15744 Date:   Fri Oct 17 18:24:06 2008 +0200
15745
15746     mgcoge: add redundant environment sector
15747
15748     Signed-off-by: Heiko Schocher <hs@denx.de>
15749     Signed-off-by: Wolfgang Denk <wd@denx.de>
15750
15751 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
15752 Author: Heiko Schocher <hs@denx.de>
15753 Date:   Fri Oct 17 18:23:27 2008 +0200
15754
15755     mgsuvd: update size of environment
15756
15757     Signed-off-by: Heiko Schocher <hs@denx.de>
15758
15759 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
15760 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
15761 Date:   Thu Oct 16 13:38:00 2008 -0500
15762
15763     83xx NAND boot: wait for LTESR[CC]
15764
15765     At least some revisions of the 8313, and possibly other chips, do not
15766     wait for all pages of the initial 4K NAND region to be loaded before
15767     beginning execution; thus, we wait for it before branching out of the
15768     first NAND page.
15769
15770     This fixes warm reset problems when booting from NAND on 8313erdb.
15771
15772     Signed-off-by: Scott Wood <scottwood@freescale.com>
15773     Acked-by: Kim Phillips <kim.phillips@freescale.com>
15774
15775 commit bf29e0ea0af03d593c64614136acc723a7a022a2
15776 Author: Yuri Tikhonov <yur@emcraft.com>
15777 Date:   Fri Oct 17 12:54:18 2008 +0200
15778
15779     ppc4xx: PPC44x MQ initialization
15780
15781     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
15782     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
15783     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
15784
15785     Previously the appropriate initialization had been made in Linux, by the
15786     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
15787     registers after normal operation has begun is not supported and could
15788     have unpredictable results.
15789
15790     Comment from Stefan: This patch doesn't change the resulting value of the
15791     MQ registers. It explicitly sets/clears all bits to the desired state which
15792     better documents the resulting register value instead of relying on pre-set
15793     default values.
15794
15795     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
15796     Signed-off-by: Stefan Roese <sr@denx.de>
15797
15798 commit ec081c2c190148b374e86a795fb6b1c49caeb549
15799 Author: Stefan Roese <sr@denx.de>
15800 Date:   Fri Oct 17 12:51:46 2008 +0200
15801
15802     ppc4xx: PPC44x MQ initialization
15803
15804     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
15805     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
15806     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
15807
15808     Previously the appropriate initialization had been made in Linux, by the
15809     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
15810     registers after normal operation has begun is not supported and could
15811     have unpredictable results.
15812
15813     Comment from Stefan: This patch doesn't change the resulting value of the
15814     MQ registers. It explicitly sets/clears all bits to the desired state which
15815     better documents the resulting register value instead of relying on pre-set
15816     default values.
15817
15818     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
15819     Signed-off-by: Stefan Roese <sr@denx.de>
15820
15821 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
15822 Author: Kumar Gala <galak@kernel.crashing.org>
15823 Date:   Thu Oct 16 21:58:50 2008 -0500
15824
15825     85xx: Using proper I2C source clock divider for MPC8544
15826
15827     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
15828     bit 26, instead it should be bit 28.  This caused in incorrect
15829     interpretation of the i2c_clk which is the same as the SEC clk on
15830     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
15831     in PORDEVSR2.
15832
15833     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15834
15835 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
15836 Author: Kumar Gala <galak@kernel.crashing.org>
15837 Date:   Thu Oct 16 21:58:49 2008 -0500
15838
15839     Revert "85xx: Using proper I2C source clock divider for MPC8544"
15840
15841     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
15842
15843     The fix introduced by this patch is not correct.  The problem is
15844     that the documentation is not correct for the MPC8544 with regards
15845     to which bit in PORDEVSR2 is for the SEC_CFG.
15846
15847     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15848
15849 commit 2179c4766bffeece98e5e92040629a96c97e230c
15850 Author: Kumar Gala <galak@kernel.crashing.org>
15851 Date:   Wed Oct 15 10:19:41 2008 -0500
15852
15853     85xx: Fix compile warning
15854
15855     mpc8536ds.c: In function 'is_sata_supported':
15856     mpc8536ds.c:614: warning: unused variable 'devdisr'
15857
15858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15859
15860 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
15861 Author: Jason Jin <Jason.jin@freescale.com>
15862 Date:   Wed Oct 15 10:40:24 2008 +0800
15863
15864     Fix the function conflict in x86emu when DEBUG is on
15865
15866     The function parse_line() in common/main.c was exposed globally by commit
15867     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
15868     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
15869     This patch fix this by renaming the function in the debug.c file.
15870
15871     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
15872
15873 commit b4dbacf69a669a17487054552fc2761149dd6767
15874 Author: Wolfgang Denk <wd@denx.de>
15875 Date:   Wed Oct 15 15:50:45 2008 +0200
15876
15877     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
15878
15879     Signed-off-by: Wolfgang Denk <wd@denx.de>
15880
15881 commit 374b9038293d01d8744a46af9b7854a6fd99b228
15882 Author: Heiko Schocher <hs@denx.de>
15883 Date:   Wed Oct 15 09:51:19 2008 +0200
15884
15885     Fix compiler warning in lib_ppc/board.c
15886
15887     Fix compiler warning introduced by commit 0f8cbc18
15888
15889     Signed-off-by: Heiko Schocher <hs@denx.de>
15890     Signed-off-by: Wolfgang Denk <wd@denx.de>
15891
15892 commit 9724555755a6f1066636481b41f7094e0ce93a69
15893 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
15894 Date:   Thu Oct 9 10:29:14 2008 +0530
15895
15896     mpc83xx: wait till UPM completes the write to array
15897
15898     Reference manual states that MxMR[MAD] increment is the indication
15899     of write to UPM array is complete. Honour that. Also, make the dummy
15900     write explicit.
15901
15902     also fix the comment.
15903
15904     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
15905     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15906
15907 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
15908 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
15909 Date:   Wed Oct 8 18:12:20 2008 -0500
15910
15911     Remove unwanted ';' at end of define.
15912
15913     Currently this is not creating any problem. But it will result
15914     in compilation error when used as below.
15915
15916     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
15917
15918     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
15919
15920     continuation of the theme based on git grep "^#define CFG_.*;$" include/
15921
15922     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15923
15924 commit b2934a56650e9a6c54432f9ce6dc36757967385e
15925 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15926 Date:   Mon Oct 6 10:53:59 2008 -0400
15927
15928     ARM DaVinci: Add maintainer information for SFFSDR board.
15929
15930     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15931
15932 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
15933 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15934 Date:   Sat Oct 4 19:26:16 2008 +0200
15935
15936     api: fix type mismatch
15937
15938     This patch fixes a type mismatch and thus removes a compiler
15939     warning when compiling with CONFIG_API on powerpc.
15940
15941     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15942
15943 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
15944 Author: Peter Tyser <ptyser@xes-inc.com>
15945 Date:   Wed Oct 1 12:25:04 2008 -0500
15946
15947     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
15948
15949     Original code displayed:
15950      => help i2c
15951      i2c i2c speed [speed] - show or set I2C bus speed
15952      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
15953      ...
15954
15955     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15956
15957 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
15958 Author: Wolfgang Denk <wd@denx.de>
15959 Date:   Tue Oct 14 22:13:41 2008 +0200
15960
15961     Update CHANGELOG
15962
15963     Signed-off-by: Wolfgang Denk <wd@denx.de>
15964
15965 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
15966 Author: Jason Jin <Jason.jin@freescale.com>
15967 Date:   Fri Oct 10 11:41:01 2008 +0800
15968
15969     Do not init SATA when disabled on 8536DS.
15970
15971     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
15972     driver still try to access the SATA registers, the cpu will hangup.
15973     This patch try to fix this by reading the serdes status before the SATA
15974     initialize.
15975
15976     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
15977     Acked-by: Andy Fleming <afleming@freescale.com>
15978
15979 commit 9dbc366744960013965fce8851035b6141f3b3ae
15980 Author: Remy Bohmer <linux@bohmer.net>
15981 Date:   Fri Oct 10 10:23:22 2008 +0200
15982
15983     The PIPE_INTERRUPT flag is used wrong
15984
15985     At a lot of places in the code the PIPE_INTERRUPT flags and friends
15986     are used wrong. The wrong bits are compared to this flag resulting
15987     in wrong conditions. Also there are macros that should be used for
15988     PIPE_* flags.
15989     This patch tries to fix them all, however, I was not able to test the
15990     changes, because I do not have any of these boards.
15991
15992     Review required!
15993
15994     Signed-off-by: Remy Bohmer <linux@bohmer.net>
15995     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
15996
15997 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
15998 Author: Remy Bohmer <linux@bohmer.net>
15999 Date:   Fri Oct 10 10:23:21 2008 +0200
16000
16001     fix USB initialisation procedure
16002
16003     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
16004     At some places directly 8,16,32,64 was used instead of the encoded
16005     value. Made a enum for the options to make this more clear and to help
16006     preventing similar errors in the future.
16007
16008     After fixing this bug it became clear that another bug existed where
16009     the 'pipe' is and-ed with PIPE_* flags, where it should have been
16010     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
16011
16012     Also removed the triple 'get_device_descriptor' sequence, it has no use,
16013     and Windows nor Linux behaves that way.
16014     There is also a poll going on with a timeout when usb_control_msg() fails.
16015     However, the poll is useless, because the flag will never be set on a error,
16016     because there is no code that runs in a parallel that can set this flag.
16017     Changed this to something more logical.
16018
16019     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
16020     Linux is doing. There is no difference anymore in the early initialisation
16021     sequence.
16022
16023     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16024     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16025
16026 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
16027 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
16028 Date:   Fri Oct 3 00:03:55 2008 +0400
16029
16030     fsl_diu: fix alignment error that caused malloc corruption
16031
16032     When aligning malloc()ed screen_base, invalid offset was added.
16033     This not only caused misaligned result (which did not cause hardware
16034     misbehaviour), but - worse - caused screen_base + smem_len to
16035     be out of malloc()ed space, which in turn caused breakage of
16036     futher malloc()/free() operation.
16037
16038     This patch fixes screen_base alignment.
16039
16040     Also this patch makes memset() that cleans framebuffer to be executed
16041     on first initialization of diu, not only on re-initialization. It looks
16042     correct to clean the framebuffer instead of displaying random garbage;
16043     I believe that was disabled only because that memset caused breakage
16044     of malloc/free described above - which no longer happens with the fix
16045     described above.
16046
16047     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
16048
16049 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
16050 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16051 Date:   Wed Sep 24 10:29:37 2008 +0200
16052
16053     api: Fix building with CONFIG_API
16054
16055     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
16056
16057     USB_MAX_STOR_DEV is defined in include/usb.h, but
16058     needed in api/api_storage.c.
16059
16060     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16061
16062 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
16063 Author: Peter Tyser <ptyser@xes-inc.com>
16064 Date:   Tue Sep 23 12:39:40 2008 -0500
16065
16066     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
16067
16068     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16069
16070 commit 81e612014c40c922ec35488d17c504d4e9286f06
16071 Author: Peter Tyser <ptyser@xes-inc.com>
16072 Date:   Tue Sep 23 12:38:42 2008 -0500
16073
16074     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
16075
16076     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
16077     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
16078     sensor drivers are not necessary
16079
16080     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16081
16082 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
16083 Author: Mike Frysinger <vapier@gentoo.org>
16084 Date:   Tue Oct 14 07:04:38 2008 -0400
16085
16086     cmd_spi: remove broken signed casting for display
16087
16088     Since we're working with unsigned data, you can't apply a signed pointer
16089     cast and then attempt to print the result.  Otherwise you get wrong output
16090     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
16091
16092     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16093
16094 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
16095 Author: Mike Frysinger <vapier@gentoo.org>
16096 Date:   Tue Oct 14 07:05:24 2008 -0400
16097
16098     strings cmd: drop old CONFIG_CFG_STRINGS define
16099
16100     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
16101     CONFIG_CMD_STRINGS and Makefile control.
16102
16103     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16104
16105 commit fecb5ade3b37f62981f2b05b621005850173aaa9
16106 Author: Jason Jin <Jason.jin@freescale.com>
16107 Date:   Fri Sep 19 17:32:49 2008 +0800
16108
16109     Fix the NAND size overflow issue.
16110
16111     When the total size of all NAND devices exceeds 4 GiB, the size  will
16112     overflow. This patch tries to fix this.
16113
16114     Note that we still have a problem when a single NAND device is bigger
16115     than 4 GiB: then the overflow would actually happen earlier, i. e.
16116     when storing the size in nand_info[].size, as nand_info[].size is an
16117     "u_int32_t".
16118
16119     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16120     Signed-off-by: Wolfgang Denk <wd@denx.de>
16121
16122 commit 30f574717277238b9014b8136c90eea77196490f
16123 Author: Louis Su <louis@asix.com.tw>
16124 Date:   Wed Jul 9 11:01:37 2008 +0800
16125
16126     AX88180: new gigabit network driver
16127
16128     Signed-off-by: Louis Su <louis@asix.com.tw>
16129     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16130
16131 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
16132 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16133 Date:   Tue Aug 19 16:07:03 2008 +0200
16134
16135     enable 10/100M at VSC8601 at tsec driver
16136
16137     Currently VSC8601 doesn't link with 10/100M partners if the
16138     EEPROM/Strapping is not set up.
16139     Setting the auto-neg register fixes this.
16140
16141     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16142     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16143
16144 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
16145 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16146 Date:   Tue Sep 30 15:02:53 2008 +0900
16147
16148     net: ne2000: Divided a function of NE2000 driver
16149
16150     get_prom function was used __attriute__ , but it is not enable.
16151     ax88796.o does not do link besides ne2000.o. When ld is carried
16152     out, get_prom function of ax88796.c is ignored.
16153     This problem is a thing by specifications of ld.
16154     I checked and test this patch on SuperH and MIPS.
16155
16156     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16157     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16158
16159 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
16160 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16161 Date:   Tue Oct 14 11:10:59 2008 +0900
16162
16163     sh: rsk7203: Add smc911x driver support to board config file
16164
16165     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16166     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16167
16168 commit cae6f909baf86357b3c0bd01acfc414348c4d175
16169 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16170 Date:   Thu Oct 9 13:54:33 2008 +0900
16171
16172     sh: Fix cannot execute a stand-alone application
16173
16174     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
16175
16176     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16177     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16178
16179 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
16180 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
16181 Date:   Wed Oct 8 23:38:00 2008 -0500
16182
16183     fsl_pci_init do not scan bus when configured as an end-point
16184
16185     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
16186     Acked-by: Andy Fleming <afleming@freescale.com>
16187
16188 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
16189 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16190 Date:   Tue Sep 16 17:07:53 2008 -0400
16191
16192     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
16193
16194     This is no longer necessary now that the GD_FLG_RELOC flag is set for
16195     all ARM boards.
16196
16197     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16198
16199 commit d977a57356657ba241256231efca32828a5822f9
16200 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16201 Date:   Sat Sep 13 10:04:32 2008 +0200
16202
16203     Fix lzma uncompress call (image_start wrongly used instead image_len)
16204
16205     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16206
16207 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
16208 Author: Nick Spence <nick.spence@freescale.com>
16209 Date:   Thu Aug 28 14:09:15 2008 -0700
16210
16211     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
16212
16213     This is needed in unlock_ram_in_cache() because it is called from C and
16214     will corrupt the small data area anchor that is kept in R2.
16215
16216     lock_ram_in_cache() is modified similarly as good coding practice, but
16217     is not called from C.
16218
16219     Signed-off-by: Nick Spence <nick.spence@freescale.com>
16220
16221 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
16222 Author: Kumar Gala <galak@kernel.crashing.org>
16223 Date:   Tue Aug 19 15:05:34 2008 -0500
16224
16225     86xx: remove redudant code with lib_ppc/interrupts.c
16226
16227     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
16228     Not know how that happened, but there is no good reason for it.
16229
16230     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
16231     they exist.
16232
16233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16234
16235 commit 0d01f66d235118515b5086b88f82498bc0695d6a
16236 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
16237 Date:   Thu Oct 9 01:26:36 2008 -0500
16238
16239     CFI: cfi_flash write fix for AMD legacy
16240
16241     The flash_unlock_seq requires a sector for AMD_LEGACY.
16242     Fix a retcode check typeo.
16243
16244     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
16245     Signed-off-by: Stefan Roese <sr@denx.de>
16246
16247 commit 542b385a620a1783454a00424930e51895f45073
16248 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16249 Date:   Tue Oct 7 13:13:10 2008 +0200
16250
16251     ppc4xx: Fix USB 2.0 phy reset sequence
16252
16253     This patch fixes USB 2.0 communication issues on some DU440 boards.
16254
16255     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16256     Signed-off-by: Stefan Roese <sr@denx.de>
16257
16258 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
16259 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16260 Date:   Tue Oct 7 13:13:09 2008 +0200
16261
16262     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
16263
16264     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16265     Signed-off-by: Stefan Roese <sr@denx.de>
16266
16267 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
16268 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16269 Date:   Tue Oct 7 13:13:08 2008 +0200
16270
16271     ppc4xx: Fix DU440 GPIO configuration
16272
16273     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16274     Signed-off-by: Stefan Roese <sr@denx.de>
16275
16276 commit 35dd025c70fcc4389317db2f2a9d14795172137d
16277 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16278 Date:   Tue Oct 7 13:13:07 2008 +0200
16279
16280     ppc4xx: Update DU440 config
16281
16282     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16283     Signed-off-by: Stefan Roese <sr@denx.de>
16284
16285 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
16286 Author: Kumar Gala <galak@kernel.crashing.org>
16287 Date:   Wed Oct 8 15:36:39 2008 -0500
16288
16289     MPC8572DS: Fix compile warnings
16290
16291     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
16292     compile warnings:
16293
16294     cmd_i2c.c:112: warning: missing braces around initializer
16295     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
16296
16297     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16298
16299 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
16300 Author: Wolfgang Grandegger <wg@grandegger.com>
16301 Date:   Tue Sep 30 10:55:57 2008 +0200
16302
16303     85xx: Using proper I2C source clock divider for MPC8544
16304
16305     Measurements with our MPC8544 board showed that the I2C bus frequency
16306     is wrong by a factor of 1.5. Obviously, the interpretation of the
16307     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
16308     correct. There seems to be an error in the 8544 RM.
16309
16310     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
16311
16312 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
16313 Author: Rafal Czubak <rcz@semihalf.com>
16314 Date:   Wed Oct 8 13:41:30 2008 +0200
16315
16316     FSL: Fix get_cpu_board_revision() return value.
16317
16318     get_cpu_board_revision() returned board revision based on information stored
16319     in global static struct eeprom. It should instead use one from local struct
16320     board_eeprom, to which the data is actually read from EEPROM. The bug led to
16321     system hang after printing L1 cache information on U-Boot startup. The problem
16322     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
16323     boards using CFG_I2C_EEPROM_CCID.
16324
16325     The change has been successfully tested on MPC8555CDS system.
16326
16327     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
16328
16329 commit 747f316cca484ed627a97dd3391febabce384186
16330 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16331 Date:   Tue Sep 30 20:08:49 2008 +0200
16332
16333     update uImage FIT multi documentation
16334
16335     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16336
16337 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
16338 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16339 Date:   Tue Sep 30 20:08:36 2008 +0200
16340
16341     move README.imx31 to doc/ and merge with README.mx31
16342
16343     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16344
16345 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
16346 Author: Guennadi Liakhovetski <lg@denx.de>
16347 Date:   Thu Sep 25 20:54:37 2008 +0200
16348
16349     i.MX31: switch to CFG_HZ=1000
16350
16351     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
16352     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
16353     provides 2% or 0.4% precision depending on the
16354     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
16355     boot-delay.
16356
16357     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16358
16359 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
16360 Author: gnusercn <gnusercn@gmail.com>
16361 Date:   Wed Oct 8 18:58:58 2008 +0200
16362
16363     Fix bug: in arch-arm, env_get_char dose not work fine
16364
16365     due to the arm implementation which supposed that U-Boot is in RAM
16366     when we jump to start_armboot
16367
16368     Signed-off-by: gnusercn <gnusercn@gmail.com>
16369     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16370
16371 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
16372 Author: Adam Graham <agraham@amcc.com>
16373 Date:   Mon Oct 6 10:16:13 2008 -0700
16374
16375     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
16376
16377     After changing SDRAM_CLKTR phase value rerun the memory preload
16378     initialization sequence (INITPLR) to reset and relock the memory
16379     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
16380     adjustment effects the phase relationship of the internal, to the
16381     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
16382
16383     Signed-off-by: Adam Graham <agraham@amcc.com>
16384     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
16385     Signed-off-by: Stefan Roese <sr@denx.de>
16386
16387 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
16388 Author: Haiying Wang <Haiying.Wang@freescale.com>
16389 Date:   Fri Oct 3 11:48:03 2008 -0400
16390
16391     Remove redundant #define for MPC8536DS
16392
16393     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16394
16395 commit 445a7b38308eb05b41de74165b20855db58c7ee5
16396 Author: Haiying Wang <Haiying.Wang@freescale.com>
16397 Date:   Fri Oct 3 11:47:30 2008 -0400
16398
16399     Add ID EEPROM support for MPC8572DS
16400
16401     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
16402     system information like mac addresses etc. This patch enables it.
16403
16404     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16405
16406 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
16407 Author: Haiying Wang <Haiying.Wang@freescale.com>
16408 Date:   Fri Oct 3 11:46:59 2008 -0400
16409
16410     Minor fixes for I2C address on MPC8572DS
16411
16412     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
16413     according to the board spec, and adds the 2nd i2c bus offset.
16414
16415     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16416
16417 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
16418 Author: Jason Jin <Jason.jin@freescale.com>
16419 Date:   Sat Sep 27 14:40:57 2008 +0800
16420
16421     Fix the incorrect DDR clk freq reporting on 8536DS
16422
16423     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
16424     The display is still sync mode DDR freq. This patch try to fix
16425     this. The display DDR freq is now the actual freq in both
16426     sync and async mode.
16427
16428     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16429
16430 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
16431 Author: Kumar Gala <galak@kernel.crashing.org>
16432 Date:   Tue Oct 7 10:28:46 2008 -0500
16433
16434     85xx: Remove setting of *cache-line-size in device trees
16435
16436     ePAPR says if the *cache-block-size is the same as *cache-line-size
16437     than we don't need the *cache-line-size property.
16438
16439     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16440
16441 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
16442 Author: Mark Jackson <mpfj@mimc.co.uk>
16443 Date:   Fri Oct 3 11:48:57 2008 +0100
16444
16445     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
16446
16447     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
16448     Also fixed default uImage location.
16449
16450     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
16451     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16452
16453 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
16454 Author: Gerald Van Baren <vanbaren@cideas.com>
16455 Date:   Sat Oct 4 07:56:06 2008 -0400
16456
16457     libfdt: Fix error in documentation for fdt_get_alias_namelen()
16458
16459     Oops, screwed up the function name in the documenting comment for this
16460     function.  Trivial correction in this patch.
16461
16462     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
16463     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
16464
16465 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
16466 Author: David Gibson <david@gibson.dropbear.id.au>
16467 Date:   Wed Aug 20 16:55:14 2008 +1000
16468
16469     libfdt: Add function to explicitly expand aliases
16470
16471     Kumar has already added alias expansion to fdt_path_offset().
16472     However, in some circumstances it may be convenient for the user of
16473     libfdt to explicitly get the string expansion of an alias.  This patch
16474     adds a function to do this, fdt_get_alias(), and uses it to implement
16475     fdt_path_offset().
16476
16477     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
16478
16479 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
16480 Author: Mike Frysinger <vapier@gentoo.org>
16481 Date:   Thu Oct 2 01:55:38 2008 -0400
16482
16483     cfi_flash: do not reset flash when probe fails
16484
16485     The CFI flash driver starts at flash_init() which calls down into
16486     flash_get_size().  This starts by calling flash_detect_cfi().  If said
16487     function fails, flash_get_size() finishes by attempting to reset the
16488     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
16489     which filters down into flash_make_cmd() and that happily smashes the
16490     stack by sticking info->portwidth bytes into a cfiword_t variable that
16491     lives on the stack.  On a 64bit system you probably won't notice, but
16492     killing the last 8 bytes on a 32bit system usually leads to a corrupt
16493     return address.  Which is what happens on a Blackfin system.
16494
16495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16496     Signed-off-by: Stefan Roese <sr@denx.de>
16497
16498 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
16499 Author: Stefan Roese <sr@denx.de>
16500 Date:   Fri Sep 26 17:03:26 2008 +0200
16501
16502     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
16503
16504     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
16505     Without this, the chosen node is not overwritten if it already
16506     exists.
16507
16508     Signed-off-by: Stefan Roese <sr@denx.de>
16509
16510 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
16511 Author: Jon Loeliger <jdl@freescale.com>
16512 Date:   Thu Sep 25 11:02:17 2008 -0500
16513
16514     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
16515
16516     Using Gcc 4.3 detected this problem:
16517
16518         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
16519         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
16520         occur when assuming that (X + c) < X is always false
16521
16522     To fix the problem, treat the offset as an unsigned int.
16523
16524     The problem report and proposed fix were provided
16525     by Steve Papacharalambous <stevep@freescale.com>.
16526
16527     Signed-off-by: Jon Loeliger <jdl@freescale.com>
16528
16529 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
16530 Author: David Gibson <david@gibson.dropbear.id.au>
16531 Date:   Fri Aug 29 14:19:13 2008 +1000
16532
16533     libfdt: Fix bugs in fdt_get_path()
16534
16535     The current implementation of fdt_get_path() has a couple of bugs,
16536     fixed by this patch.
16537
16538     First, contrary to its documentation, on success it returns the length
16539     of the node's path, rather than 0.  The testcase is correspondingly
16540     wrong, and the patch fixes this as well.
16541
16542     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
16543     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
16544     Specifically this happens when there is insufficient space even to
16545     hold the path's second last component.  This behaviour is corrected,
16546     and the testcase updated to check it.
16547
16548     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
16549
16550 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
16551 Author: Wolfgang Denk <wd@denx.de>
16552 Date:   Wed Oct 1 12:34:58 2008 +0200
16553
16554     TQM5200: enable support for ATAPI devices
16555
16556     Signed-off-by: Wolfgang Denk <wd@denx.de>
16557
16558 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
16559 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16560 Date:   Mon Sep 15 05:48:25 2008 +0200
16561
16562     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
16563
16564     we need this due to the arm implementation which supposed that U-Boot
16565     is in RAM when we jump to start_armboot
16566
16567     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
16568     in order to do it for all arm board
16569
16570     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16571
16572 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
16573 Author: Kim Phillips <kim.phillips@freescale.com>
16574 Date:   Wed Sep 24 08:46:25 2008 -0500
16575
16576     mpc83xx: don't disable autoboot
16577
16578     bootdelay set to -1 'permanently' disables autobooting, even if
16579     bootcmd is specified.  Change to a positive value to allow
16580     autobooting when a bootcmd is set.
16581
16582     Reported-by: Coray Tate <Coray.Tate@freescale.com>
16583     Cc: Scott Wood <scottwood@freescale.com>
16584     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16585
16586 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
16587 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16588 Date:   Wed Sep 24 10:42:15 2008 +0900
16589
16590     mpc83xx: Fix typo in include/mpc83xx.h
16591
16592     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
16593
16594     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16595     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16596
16597 commit 162c41c03179727a1d14262f703c9a8bc40231fa
16598 Author: Kim Phillips <kim.phillips@freescale.com>
16599 Date:   Tue Sep 23 09:38:49 2008 -0500
16600
16601     mpc83xx: add h/w flash protection to board configs
16602
16603     the operating system may leave flash in a h/w locked state after writing.
16604     This allows u-boot to continue to write flash by enabling h/w unlocking
16605     by default.
16606
16607     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16608
16609 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
16610 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
16611 Date:   Thu Sep 11 21:35:36 2008 +0400
16612
16613     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
16614
16615     The spd_dram code shifts the base address, then masks 20 bits, but
16616     forgets to shift the base address back. Fix this by just masking the
16617     base address correctly.
16618
16619     Found this bug while trying to relocate a DDR memory at the base != 0.
16620
16621     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
16622     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16623
16624 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
16625 Author: Stefan Roese <sr@denx.de>
16626 Date:   Mon Sep 22 16:10:43 2008 +0200
16627
16628     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
16629
16630     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
16631     either one PCIe node or the SATA node in the device tree blob. This
16632     patch removes the unnecessary and even confusing warning, when the node
16633     is not found at all.
16634
16635     Signed-off-by: Stefan Roese <sr@denx.de>
16636
16637 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
16638 Author: Remy Bohmer <linux@bohmer.net>
16639 Date:   Fri Sep 19 13:30:06 2008 +0200
16640
16641     Add missing device types to dev_print() in part.c
16642
16643     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16644
16645 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
16646 Author: Wolfgang Denk <wd@denx.de>
16647 Date:   Mon Sep 22 22:23:06 2008 +0200
16648
16649     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
16650     eventually leads to a machine check. This change assures that DPRAM
16651     is allocated only once in that case.
16652
16653     Signed-off-by: Gary Jennejohn <garyj@denx.de>
16654     Signed-off-by: Wolfgang Denk <wd@denx.de>
16655
16656 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
16657 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
16658 Date:   Wed Sep 17 17:57:34 2008 +0200
16659
16660     Fix Spartan-3 definitions.
16661
16662     A few Spartan-3 definitions erroneously use Spartan-3E size
16663     constants. This patch fixes them.
16664
16665     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
16666
16667 commit 28113e1f0da4146b823ffce37680d31d5685a60b
16668 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
16669 Date:   Wed Sep 17 17:41:58 2008 +0200
16670
16671     Remove duplicate Spartan-3E definition.
16672
16673     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
16674     Signed-off-by: Wolfgang Denk <wd@denx.de>
16675
16676 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
16677 Author: Anatolij Gustschin <agust@denx.de>
16678 Date:   Wed Sep 17 13:46:17 2008 +0200
16679
16680     socrates: change default mtest address range
16681
16682     Running mtest command on socrates without specifying
16683     an address range crashes the board. This patch changes
16684     default mtest address range to prevent this behavior.
16685
16686     Signed-off-by: Anatolij Gustschin <agust@denx.de>
16687
16688 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
16689 Author: Anatolij Gustschin <agust@denx.de>
16690 Date:   Wed Sep 17 12:34:45 2008 +0200
16691
16692     socrates: fix crash after relocation
16693
16694     Currently U-Boot crashes after relocation to RAM.
16695     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
16696     register to READ_LAT + 1 (to the value it was before
16697     conversion of socrates to new DDR code) fixes the
16698     problem.
16699
16700     Signed-off-by: Anatolij Gustschin <agust@denx.de>
16701
16702 commit 562788b0a303f3528b920d81f547f5ca77ba528e
16703 Author: Anatolij Gustschin <agust@denx.de>
16704 Date:   Wed Sep 17 11:45:51 2008 +0200
16705
16706     socrates: fix SPD EEPROM address
16707
16708     Commit be0bd8234b9777ecd63c4c686f72af070d886517
16709     changed SPD EEPROM address to 0x51 and DDR SDRAM
16710     detection stopped working. Change this address
16711     back to 0x50.
16712
16713     Signed-off-by: Anatolij Gustschin <agust@denx.de>
16714
16715 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
16716 Author: Stefan Roese <sr@denx.de>
16717 Date:   Mon Sep 22 11:06:50 2008 +0200
16718
16719     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
16720
16721     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
16722
16723     Signed-off-by: Stefan Roese <sr@denx.de>
16724
16725 commit e58c41e26cf3c8accd60311be579f452e368e97e
16726 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16727 Date:   Thu Sep 18 20:13:08 2008 +0900
16728
16729     usb: Fix compile warning of r8a66597-hcd
16730
16731     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16732     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16733
16734 commit b5d10a13525c07ec6374adf840d7c87553b5f189
16735 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16736 Date:   Thu Sep 18 19:34:36 2008 +0900
16737
16738     sh: Fix compile warning
16739
16740     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16741
16742 commit 4a065abf926f128beb36d93449defa0d690e7fef
16743 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16744 Date:   Thu Sep 18 19:04:26 2008 +0900
16745
16746     sh: Add support watchdog for SH4A core
16747
16748     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
16749     And fix some compile warning.
16750
16751     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16752
16753 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
16754 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16755 Date:   Wed Sep 17 11:45:26 2008 +0900
16756
16757     sh: Fix typo in SH serial driver
16758
16759     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16760     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16761
16762 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
16763 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16764 Date:   Wed Sep 17 11:08:36 2008 +0900
16765
16766     sh: Add support any page size and empty_zero_page to SH Linux uImage
16767
16768     Old U-Boot supported 4KB page size only. If this version, Linux
16769     kernel can not get command line from U-Boot.
16770     SH Linux kernel can change page size and empty_zero_page.
16771     This patch support this function and fix promlem.
16772
16773     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16774     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16775
16776 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
16777 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16778 Date:   Thu Aug 28 13:40:52 2008 +0900
16779
16780     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
16781
16782     Add function of smc911x, pkt_data_pull and pkt_data_push.
16783
16784     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16785     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16786
16787 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
16788 Author: Wolfgang Denk <wd@denx.de>
16789 Date:   Thu Sep 18 13:57:32 2008 +0200
16790
16791     ADS5121: fix typo in "rootpath" default setting
16792
16793     Signed-off-by: Wolfgang Denk <wd@denx.de>
16794
16795 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
16796 Author: Remy Bohmer <linux@bohmer.net>
16797 Date:   Tue Sep 16 14:55:44 2008 +0200
16798
16799     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
16800
16801     There are several differences between Linux, Windows and U-boot for initialising the
16802     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
16803     things really different, and some are wrong (compared to the USB standard).
16804
16805     This patch fixes some errors:
16806     * The NEW_init procedure that was already in the code is good, while the old procedure
16807       is wrong. See code comments for more info.
16808     * On a Control request the data returned by the device can be more than 8 bytes, while
16809       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
16810       This results in a lot of USB sticks not being recognised, and the transmission ended
16811       frequently with a CTL:TIMEOUT Error.
16812     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
16813
16814     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16815     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16816
16817 commit 6f5794a6f78b313231256958fd73673c6aacc116
16818 Author: Remy Bohmer <linux@bohmer.net>
16819 Date:   Tue Sep 16 14:55:43 2008 +0200
16820
16821     Refactoring parts of the common USB OHCI code
16822
16823     This patch refactors some large routines of the USB OHCI code by
16824     making some routines smaller and more readable which helps
16825     debugging and understanding the code. (Makes the code looks
16826     somewhat more like the Linux implementation.)
16827
16828     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
16829
16830     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16831     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16832
16833 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
16834 Author: Remy Bohmer <linux@bohmer.net>
16835 Date:   Tue Sep 16 14:55:42 2008 +0200
16836
16837     Fix for USB sticks not working on ARM while using GCC 4.x compilers
16838
16839     The GCC-compiler makes an optimisation error while optimising the routine
16840     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
16841     but there lots of compilers out there that makes this error, that it is
16842     probably wiser to workaround it in U-boot itself.
16843
16844     What happens is that the register r3 is used as loop-counter 'i', but gets
16845     overwritten later on. From there it starts using register r3 for several other
16846     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
16847
16848     This error occurs on at least several versions of Code Sourcery Lite compilers
16849     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
16850     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
16851
16852     We work around it by splitting up this routine in 2 parts, and making sure that
16853     the split out part is NOT inlined any longer. This will make GCC spit out assembler
16854     that do not show this problem. Another possibility is to adapt the Makefile to stop
16855     optimisation for the complete file. I think this solution is nicer.
16856
16857     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16858     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
16859
16860 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
16861 Author: Wolfgang Denk <wd@denx.de>
16862 Date:   Wed Sep 17 10:17:55 2008 +0200
16863
16864     Coding style cleanup; update CHANEGLOG
16865
16866     Signed-off-by: Wolfgang Denk <wd@denx.de>
16867
16868 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
16869 Author: Victor Gallardo <vgallardo@amcc.com>
16870 Date:   Tue Sep 16 06:59:13 2008 -0700
16871
16872     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
16873
16874     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
16875     Signed-off-by: Adam Graham <agraham@amcc.com>
16876     Signed-off-by: Stefan Roese <sr@denx.de>
16877
16878 commit ce47eb402c5e29a025399dc282246414fc492940
16879 Author: Peter Tyser <ptyser@xes-inc.com>
16880 Date:   Tue Sep 16 10:04:47 2008 -0500
16881
16882     Support for multiple SGMII/TBI interfaces for TSEC ethernet
16883
16884     Fix TBI PHY accesses to use the proper offset in CPU register space. The
16885     previous code would incorrectly access the TBI PHY by reading/writing to CPU
16886     register space at the same location as would be used to access external PHYs.
16887
16888     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16889     Acked-by: Andy Fleming <afleming@freescale.com>
16890
16891 commit 7c803be2eb3cae245dedda438776e08fb122250f
16892 Author: Wolfgang Denk <wd@denx.de>
16893 Date:   Tue Sep 16 18:02:19 2008 +0200
16894
16895     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
16896
16897     After switching to using the CFI flash driver, the correct remapping
16898     of the flash banks was forgotten.
16899
16900     Also, some boards were not adapted, and the old legacy flash driver
16901     was not removed yet.
16902
16903     Signed-off-by: Wolfgang Denk <wd@denx.de>
16904
16905 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
16906 Author: Wolfgang Denk <wd@denx.de>
16907 Date:   Sun Sep 14 00:59:35 2008 +0200
16908
16909     Prepare v2008.10-rc2
16910
16911     Signed-off-by: Wolfgang Denk <wd@denx.de>
16912
16913 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
16914 Author: Wolfgang Denk <wd@denx.de>
16915 Date:   Sat Sep 13 02:23:05 2008 +0200
16916
16917     Coding style cleanup, update CHANGELOG
16918
16919     Signed-off-by: Wolfgang Denk <wd@denx.de>
16920
16921 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
16922 Author: Peter Tyser <ptyser@xes-inc.com>
16923 Date:   Wed Sep 10 09:18:34 2008 -0500
16924
16925     Update mailing list email and archive addresses
16926
16927     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16928
16929 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
16930 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
16931 Date:   Thu Sep 11 15:40:01 2008 +0200
16932
16933     85xx: socrates: autoprobe Lime chip
16934
16935     This patch is an attempt to implement autoprobing for the Lime
16936     presence on the bus.
16937     Configure GPCM for Lime CS2 and try to access chip ID registers.
16938     Second read atempt delivers register values if the chip is present.
16939
16940     Signed-off-by: Anatolij Gustschin <agust@denx.de>
16941
16942 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
16943 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
16944 Date:   Thu Sep 11 15:40:01 2008 +0200
16945
16946     85xx: socrates: Add support for new image format.
16947
16948     Signed-off-by: Detlev Zundel <dzu@denx.de>
16949
16950 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
16951 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16952 Date:   Thu Sep 11 17:28:18 2008 +0900
16953
16954     sh: Fix compile error for r2dplus
16955
16956     netdev.h was not include by r2dplus.
16957
16958     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16959
16960 commit 56844a22b76c719e600047e23b80465a44d76abd
16961 Author: Heiko Schocher <hs@denx.de>
16962 Date:   Thu Sep 11 08:11:23 2008 +0200
16963
16964     powerpc: Fix bootm to boot up again with a Ramdisk
16965
16966     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
16967     and this stopped Linux from booting with a Ramdisk. This patch fixes
16968     this, by deleting the useless dummy mem reservation.
16969
16970     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
16971     added to of_size, so we dont need anymore a dummy mem reservation.
16972
16973     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
16974     system (=0x44 bytes) and rounded it up to 0x80).
16975
16976     Signed-off-by: Heiko Schocher <hs@denx.de>
16977     Acked-by: Kumar Gala <galak@kernel.crashing.org>
16978
16979 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
16980 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16981 Date:   Mon Sep 8 02:46:13 2008 +0200
16982
16983     Add support for LZMA uncompression algorithm.
16984
16985     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16986     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16987
16988 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
16989 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
16990 Date:   Fri Jun 27 23:04:20 2008 +0400
16991
16992     fsl_elbc_nand: ecclayout cleanups
16993
16994     This patch deletes oobavail assignments, they're calculated by the nand
16995     core code in nand_scan_tail, plus current oobavail values are wrong for
16996     the LP NANDs.
16997
16998     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
16999     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17000     Signed-off-by: Scott Wood <scottwood@freescale.com>
17001
17002 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
17003 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17004 Date:   Fri Jun 27 23:04:13 2008 +0400
17005
17006     fsl_elbc_nand: implement support for flash-based BBT
17007
17008     This patch implements support for flash-based BBT for chips working
17009     through ELBC NAND controller, so that NAND core will not have to re-scan
17010     for bad blocks on every boot.
17011
17012     Because ELBC controller may provide HW-generated ECCs we should adjust
17013     bbt pattern and bbt version positions in the OOB free area.
17014
17015     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17016     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17017     Signed-off-by: Scott Wood <scottwood@freescale.com>
17018
17019 commit 97ae023648e764f794ffb9c52da109d6caf09c47
17020 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17021 Date:   Fri Jun 27 23:04:04 2008 +0400
17022
17023     fsl_elbc_nand: fix OOB workability for large page NAND chips
17024
17025     For large page chips, nand_bbt is looking into OOB area, and checking
17026     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
17027     reserved for bbt means.
17028
17029     But ELBC driver is specifying ecclayout so that oobfree area starts at
17030     offset 1, so only one byte left for the bbt purposes.
17031
17032     This causes problems with any OOB users, namely JFFS2: after first mount
17033     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
17034
17035       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
17036       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17037       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17038       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
17039
17040     And on the next boot, NAND core will rescan for bad blocks, then will
17041     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
17042
17043     To fix the issue we should implement our own bad block pattern: just one
17044     byte at OOB start. Though, this will work only for x8 chips. For x16
17045     chips two bytes must be checked. Since ELBC driver does not support x16
17046     NANDs (yet), we're safe for now.
17047
17048     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17049     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
17050     Signed-off-by: Scott Wood <scottwood@freescale.com>
17051
17052 commit 7238ada313057a85409485b8ee21515dc10c07a5
17053 Author: Wolfgang Denk <wd@denx.de>
17054 Date:   Fri Sep 12 13:52:21 2008 +0200
17055
17056     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
17057
17058     Signed-off-by: Wolfgang Denk <wd@denx.de>
17059
17060 commit b18410e508a12ba0a177dfc2a386857c806fa96d
17061 Author: Stefan Roese <sr@denx.de>
17062 Date:   Thu Sep 11 13:05:56 2008 +0200
17063
17064     ppc4xx: Enable device tree (FDT) support in zeus board port
17065
17066     Signed-off-by: Stefan Roese <sr@denx.de>
17067
17068 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
17069 Author: Stefan Roese <sr@denx.de>
17070 Date:   Wed Sep 10 16:53:47 2008 +0200
17071
17072     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
17073
17074     This patch fixes a problem introdiced with patch
17075     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
17076     initdram()].
17077
17078     The boards affected are:
17079     - PCI405
17080     - PPChameleonEVB
17081     - quad100hd
17082     - taihu
17083     - zeus
17084
17085     Signed-off-by: Stefan Roese <sr@denx.de>
17086
17087 commit 61737c59a3285f6fadf96a5836879898c04ec28d
17088 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17089 Date:   Thu Sep 11 19:41:26 2008 -0400
17090
17091     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
17092
17093     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17094     Signed-off-by: Stefan Roese <sr@denx.de>
17095
17096 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
17097 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17098 Date:   Thu Sep 11 19:41:25 2008 -0400
17099
17100     ppc4xx: Fix compilation of v5fx30teval_flash
17101
17102     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17103     Signed-off-by: Stefan Roese <sr@denx.de>
17104
17105 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
17106 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17107 Date:   Wed Sep 10 17:44:30 2008 -0400
17108
17109     ppc4xx: Fix in-tree build for ppc440-generic boards
17110
17111     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17112     Signed-off-by: Stefan Roese <sr@denx.de>
17113
17114 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
17115 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17116 Date:   Fri Sep 12 02:20:47 2008 +0200
17117
17118     ARM: synchronize mach-types.h with linux 2.6.27-rc6
17119
17120     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17121
17122 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
17123 Author: Jens Scharsig <esw@bus-elektronik.de>
17124 Date:   Fri Sep 12 02:20:47 2008 +0200
17125
17126     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
17127
17128     This patch prevents linker error on AT91RM9200 boards, if
17129     CONFIG_CMD_I2_TREE is set.
17130     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
17131
17132     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
17133
17134 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
17135 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17136 Date:   Fri Sep 12 02:20:47 2008 +0200
17137
17138     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
17139
17140     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
17141
17142     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17143
17144 commit 03db53335c8eba656a7c44d1555b1a4514383e33
17145 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17146 Date:   Fri Sep 12 02:20:46 2008 +0200
17147
17148     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
17149
17150     __ARM__ is given by arm_config.mk automatically.
17151
17152     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17153
17154 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
17155 Author: Claudio Scordino <claudio@evidence.eu.com>
17156 Date:   Fri Sep 12 02:20:46 2008 +0200
17157
17158     Fix MACH_TYPE for the AT91RM9200DK board.
17159
17160     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
17161
17162 commit 274737e5eb25b2bcd3af3a96da923effd543284f
17163 Author: Andrew Dyer <adyer@righthandtech.com>
17164 Date:   Fri Sep 12 02:20:46 2008 +0200
17165
17166     i.mx change get_timer(base) to return time since base
17167
17168     This patch changes get_timer() for i.MX to return the time since
17169     'base' instead of the time since the counter was at zero.
17170
17171     Symptom seen is flash timeout errors when erasing or programming a
17172     sector using the common cfi flash code.
17173
17174     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17175
17176 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
17177 Author: Andrew Dyer <adyer@righthandtech.com>
17178 Date:   Fri Sep 12 02:20:46 2008 +0200
17179
17180     i.MX use u-boot baud rate and don't assume UART master clock
17181
17182     1) Change the i.MX serial driver to use the baud rate set in the
17183      u-boot environment
17184
17185     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
17186
17187     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
17188      one to clear" like other status bits in the reg.)
17189
17190     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17191
17192 commit 6e1551a870d360805b9d172dc56d935064abe71d
17193 Author: Andrew Dyer <adyer@righthandtech.com>
17194 Date:   Fri Sep 12 02:20:46 2008 +0200
17195
17196     arm920t fix constant error in start.S
17197
17198     Code in cpu/arm920t/start.S will die with a compilation error if
17199     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
17200     the ARM sub instruction.  Change the code so that each is subtracted
17201     independently to avoid the error.
17202
17203     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
17204
17205 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
17206 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
17207 Date:   Fri Sep 12 02:20:40 2008 +0200
17208
17209     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
17210
17211     - Correct Invalid #define of MPUTIM_PTV_MASK for
17212        omap1510 & omap730 register definition
17213
17214      MPUTIM_PTV_MASK is defined as
17215      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
17216
17217      while it should have been
17218      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
17219
17220     - Below Patch corrects the same
17221
17222     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
17223
17224 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
17225 Author: Adrian Filipi <adrian.filipi@eurotech.com>
17226 Date:   Fri Jul 18 11:52:02 2008 -0400
17227
17228     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
17229
17230     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
17231
17232 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
17233 Author: Guennadi Liakhovetski <lg@denx.de>
17234 Date:   Thu Aug 28 12:25:11 2008 +0200
17235
17236     i.MX31: document timer precision option
17237
17238     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17239
17240 commit 1a6337b01351b82a45b0defa76f08744511c580b
17241 Author: Magnus Lilja <lilja.magnus@gmail.com>
17242 Date:   Fri Aug 29 10:36:18 2008 +0200
17243
17244     i.MX31: Make the SPI bus and chip select configurable for MC13783
17245
17246     The i.MX31 has three SPI buses and each bus has several chip selects
17247     and the MC13783 chip can be connected to any of these. The current
17248     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
17249
17250     This patch makes make MC13783 SPI bus and chip select configurable
17251     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
17252
17253     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17254
17255 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
17256 Author: Magnus Lilja <lilja.magnus@gmail.com>
17257 Date:   Fri Aug 29 10:36:17 2008 +0200
17258
17259     i.MX31: Add reset_timer() and modify get_timer_masked().
17260
17261     This patch adds the reset_timer() function (needed by nand_base.c) and
17262     modifies the get_timer_masked() to work in the same way as the omap24xx
17263     function.
17264
17265     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17266
17267 commit deeec4991a55de243787002ede24d2331d234fc8
17268 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17269 Date:   Wed Sep 10 22:48:09 2008 +0200
17270
17271     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
17272
17273     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17274
17275 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
17276 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17277 Date:   Wed Sep 10 22:48:09 2008 +0200
17278
17279     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
17280
17281     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17282
17283 commit 0e8d158664a913392cb01fb11a948d83f72e105e
17284 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17285 Date:   Wed Sep 10 22:48:06 2008 +0200
17286
17287     rename CFG_ENV macros to CONFIG_ENV
17288
17289     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17290
17291 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
17292 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17293 Date:   Wed Sep 10 22:48:05 2008 +0200
17294
17295     nvedit: rename error comment to CONFIG_ENV_IS_IN_
17296
17297     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17298
17299 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
17300 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17301 Date:   Wed Sep 10 22:48:05 2008 +0200
17302
17303     cmd_mem: Move conditional compilation to Makefile
17304
17305     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17306
17307 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
17308 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17309 Date:   Wed Sep 10 22:48:05 2008 +0200
17310
17311     move cmd_get_data_size to command.c
17312
17313     add CMD_DATA_SIZE macro to enable it
17314
17315     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17316
17317 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
17318 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17319 Date:   Wed Sep 10 22:48:04 2008 +0200
17320
17321     env_flash: Move conditional compilation to Makefile
17322
17323     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17324
17325 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
17326 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17327 Date:   Wed Sep 10 22:48:04 2008 +0200
17328
17329     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
17330
17331     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17332
17333 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
17334 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17335 Date:   Wed Sep 10 22:48:03 2008 +0200
17336
17337     cleanup use of CFG_ENV_IS_IN_FLASH
17338
17339     - #if CFG_ENV_IS_IN_FLASH
17340     - #if (CFG_ENV_IS_IN_FLASH == 1)
17341     - #define CFG_ENV_IS_IN_FLASH 0
17342
17343     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17344
17345 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
17346 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17347 Date:   Wed Sep 10 22:48:01 2008 +0200
17348
17349     rename environment.c in env_embedded.c to reflect is functionality
17350
17351     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17352
17353 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
17354 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17355 Date:   Wed Sep 10 22:48:01 2008 +0200
17356
17357     env_nowhere: Move conditional compilation to Makefile
17358
17359     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17360
17361 commit 93f6d72544da4510a146bc4c93d609b0116cde37
17362 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17363 Date:   Wed Sep 10 22:48:00 2008 +0200
17364
17365     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
17366
17367     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17368
17369 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
17370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17371 Date:   Wed Sep 10 22:48:00 2008 +0200
17372
17373     env_sf: Move conditional compilation to Makefile
17374
17375     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17376
17377 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
17378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17379 Date:   Wed Sep 10 22:48:00 2008 +0200
17380
17381     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
17382
17383     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17384
17385 commit 55c5f49910ec8225347aa1d211352a84de6649b4
17386 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17387 Date:   Wed Sep 10 22:48:00 2008 +0200
17388
17389     env_onenand: Move conditional compilation to Makefile
17390
17391     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17392
17393 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
17394 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17395 Date:   Wed Sep 10 22:47:59 2008 +0200
17396
17397     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
17398
17399     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17400
17401 commit 957a0e69575683efd70ace147746bbb3d8e7c501
17402 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17403 Date:   Wed Sep 10 22:47:59 2008 +0200
17404
17405     env_nvram: Move conditional compilation to Makefile
17406
17407     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17408
17409 commit 9314cee6917444ab88bd4e758da7a30975120187
17410 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17411 Date:   Wed Sep 10 22:47:59 2008 +0200
17412
17413     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
17414
17415     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17416
17417 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
17418 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17419 Date:   Wed Sep 10 22:47:59 2008 +0200
17420
17421     env_nand: Move conditional compilation to Makefile
17422
17423     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17424
17425 commit 51bfee192099206a4397f15f3b93516e01f58ab0
17426 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17427 Date:   Wed Sep 10 22:47:58 2008 +0200
17428
17429     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
17430
17431     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17432
17433 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
17434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17435 Date:   Wed Sep 10 22:47:58 2008 +0200
17436
17437     env_dataflash: Move conditional compilation to Makefile
17438
17439     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17440
17441 commit 057c849c45b9ee19df8ff3acdeee66be52819962
17442 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17443 Date:   Wed Sep 10 22:47:58 2008 +0200
17444
17445     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
17446
17447     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17448
17449 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
17450 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17451 Date:   Wed Sep 10 22:47:52 2008 +0200
17452
17453     cmd_eeprom: Move conditional compilation to Makefile
17454
17455     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17456
17457 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
17458 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17459 Date:   Fri Sep 5 09:19:54 2008 +0200
17460
17461     env_eeprom: Move conditional compilation to Makefile
17462
17463     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17464
17465 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
17466 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17467 Date:   Fri Sep 5 09:19:30 2008 +0200
17468
17469     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
17470
17471     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17472
17473 commit 32628c5008105a732212003d83b75f05e5243bb2
17474 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17475 Date:   Sat Aug 30 23:54:58 2008 +0200
17476
17477     cmd_mac: Move conditional compilation to Makefile
17478
17479     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
17480     start in commit ad8f8687b78c3e917b173f038926695383c55555
17481
17482     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17483
17484 commit e5648acab153f0f429bfc714902c5aaa7879f71b
17485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17486 Date:   Sat Aug 30 23:47:41 2008 +0200
17487
17488     cmd_fdc: Move conditional compilation to Makefile
17489
17490     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17491
17492 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
17493 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17494 Date:   Sat Aug 30 23:47:38 2008 +0200
17495
17496     common/Makefile: add core command section
17497
17498     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17499
17500 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
17501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17502 Date:   Sat Aug 30 23:29:57 2008 +0200
17503
17504     cmd_vfd: Move conditional compilation to Makefile
17505
17506     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17507
17508 commit 6644641d072aee3087da129d8443187196a4d8a9
17509 Author: Scott Wood <scottwood@freescale.com>
17510 Date:   Wed Sep 10 11:48:49 2008 -0500
17511
17512     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
17513
17514     This is part of the switch to newer upstream MTD code.
17515
17516     Signed-off-by: Scott Wood <scottwood@freescale.com>
17517
17518 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
17519 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17520 Date:   Sat Aug 30 17:06:55 2008 -0400
17521
17522     ARM DaVinci: Fix broken HW ECC for large page NAND.
17523
17524     Based on original patch by Bernard Blackham <bernard@largestprime.net>
17525
17526     U-boot's HW ECC support for large page NAND on Davinci is completely
17527     broken.  Some kernels, such as the 2.6.10 one supported by
17528     MontaVista for DaVinci, rely upon this broken behaviour as they
17529     share the same code for ECCs. In the existing scheme, error
17530     detection *might* work on large page, but error correction
17531     definitely does not.  Small page ECC correction works, but the
17532     format is not compatible with the mainline git kernel.
17533
17534     This patch adds ECC code that matches what is currently in the
17535     Davinci git repository (since NAND support was added in 2.6.24).
17536     This makes the ECC and OOB layout written by u-boot compatible with
17537     Linux for both small page and large page devices and fixes ECC
17538     correction for large page devices.
17539
17540     The old behaviour can be restored by defining the macro
17541     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
17542
17543     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
17544     Acked-by: Sergey Kubushyn <ksi@koi8.net>
17545     Signed-off-by: Scott Wood <scottwood@freescale.com>
17546
17547 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
17548 Author: Heiko Schocher <hs@denx.de>
17549 Date:   Wed Sep 10 11:15:28 2008 +0200
17550
17551     muas3001: update BR4 settings
17552
17553     Also set up the port pins for using I2C.
17554
17555     Signed-off-by: Heiko Schocher <hs@denx.de>
17556
17557 commit 3591293509e0c0bcf244b0f974775bff2e25697e
17558 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
17559 Date:   Wed Sep 10 09:43:49 2008 +0300
17560
17561     autoscr: Fix one-character lines and non-newline terminated scripts
17562
17563     When not using hush, the autoscr command now executes lines that are
17564     only one character long. It also runs the last line of scripts even if
17565     it does not end in a newline.
17566
17567     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
17568
17569 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
17570 Author: Victor Gallardo <vgallardo@amcc.com>
17571 Date:   Tue Sep 9 15:13:29 2008 -0700
17572
17573     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
17574
17575     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
17576     and glacier.
17577
17578     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
17579
17580 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
17581 Author: Heiko Schocher <hs@denx.de>
17582 Date:   Mon Sep 8 10:21:11 2008 +0200
17583
17584     muas3001: added support for the LM75 sensor.
17585
17586     Signed-off-by: Heiko Schocher <hs@denx.de>
17587
17588 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
17589 Author: Heiko Schocher <hs@denx.de>
17590 Date:   Mon Sep 8 10:20:19 2008 +0200
17591
17592     muas3001: activate WDT for the muas3001 board.
17593
17594     Signed-off-by: Heiko Schocher <hs@denx.de>
17595
17596 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
17597 Author: Heiko Schocher <hs@denx.de>
17598 Date:   Mon Sep 8 10:19:36 2008 +0200
17599
17600     muas3001: added 64MB SDRAM autodetection.
17601
17602     Signed-off-by: Heiko Schocher <hs@denx.de>
17603
17604 commit 5251469943895de4bb9a04d5053352cc22acb7d5
17605 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
17606 Date:   Thu Aug 21 07:12:26 2008 -0700
17607
17608     Fix printf errors under -DDEBUG
17609
17610     Fix printf format-string/arg mismatches under -DDEBUG.
17611
17612     These warnings occur with DEBUG defined for a platform using
17613     cpu/mpc85xx.  Users of other architectures can unearth similar
17614     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
17615     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
17616
17617     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
17618     Signed-off-by: Andy Fleming <afleming@freescale.com>
17619
17620 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
17621 Author: Wolfgang Denk <wd@denx.de>
17622 Date:   Tue Sep 9 23:55:18 2008 +0200
17623
17624     Update CHANGELOG, prepare 2008-10-rc1 release
17625
17626     Signed-off-by: Wolfgang Denk <wd@denx.de>
17627
17628 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
17629 Author: Kumar Gala <galak@kernel.crashing.org>
17630 Date:   Mon Sep 8 08:51:29 2008 -0500
17631
17632     85xx: Ensure timebase is zero on secondary cores
17633
17634     The e500um says the timebase is volatile out of reset.  To ensure
17635     TB sync works we need to make sure its zero.
17636
17637     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17638
17639 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
17640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17641 Date:   Tue Sep 9 22:18:24 2008 +0200
17642
17643     bootm_load_os: fix load_end debug message
17644
17645     print load_end value not pointer
17646
17647     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17648
17649 commit 1d9af0be764960e6cc1c093e97176c3542796820
17650 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17651 Date:   Tue Sep 9 22:18:23 2008 +0200
17652
17653     bootm: enable fdt support only on ppc, m68k and sparc
17654
17655     ...as done in image.c
17656
17657     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17658
17659 commit 748b5274e76f81df85cfcffaffedc323678d0623
17660 Author: Markus Heidelberg <markus.heidelberg@web.de>
17661 Date:   Tue Sep 9 18:51:05 2008 +0200
17662
17663     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
17664
17665     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
17666
17667 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
17668 Author: Markus Heidelberg <markus.heidelberg@web.de>
17669 Date:   Tue Sep 9 17:31:46 2008 +0200
17670
17671     gitignore: add tags files and Vim swap file
17672
17673     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
17674
17675 commit 1d9b67b23fca6a25154333733204339802510720
17676 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17677 Date:   Tue Sep 9 17:52:47 2008 +0900
17678
17679     add board_eth_init() for sh7785lcr board
17680
17681     Fix the problem that cannot work RTL8169 on sh7785lcr board.
17682
17683     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17684
17685 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
17686 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17687 Date:   Wed Aug 6 16:08:41 2008 -0500
17688
17689     mtd: SPI Flash: Support the STMicro Flash
17690
17691     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
17692     M25P40, M25P64, M25P80, M25P128.
17693
17694     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
17695     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17696
17697 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
17698 Author: Wolfgang Denk <wd@denx.de>
17699 Date:   Tue Sep 9 17:55:31 2008 +0200
17700
17701     trab: fix build problem after change to use do_div()
17702
17703     We must link with libgeneric now.
17704
17705     Signed-off-by: Wolfgang Denk <wd@denx.de>
17706
17707 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
17708 Author: Ryan CHEN <ryan.chen@st.com>
17709 Date:   Wed Aug 20 13:00:17 2008 -0400
17710
17711     Correct drv_usb_kbd_init function
17712
17713     The patch is that check if usb_get_dev_index() function return valid
17714     pointer. If valid, continue. Otherwise return -1.
17715
17716     Signed-off-by: Ryan Chen <ryan.chen@st.com>
17717     Acked-by: Markus Klotzbuecher <mk@denx.de>
17718
17719 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
17720 Author: Remy Bohmer <linux@bohmer.net>
17721 Date:   Wed Aug 20 11:22:02 2008 +0200
17722
17723     Make usb-stop() safe to call multiple times in a row.
17724
17725     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
17726     enabled the usb_stop() command in common/cmd_bootm.c which was
17727     not enabled for some time, because no board did actually set the
17728     CFG_CMD_USB flag. So, now the usb_stop() is executed before
17729     loading the linux kernel.
17730
17731     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
17732     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
17733     If some other piece of code calls usb_stop() before the bootm command,
17734     this command will hangup the system during boot.
17735     (usb start and stop is typically used while booting from usb memory stick)
17736
17737     But, stopping the usb stack twice is useless anyway, and a flag already
17738     existed that kept track on the usb_init()/usb_stop() calls.
17739     So, we now check if the usb stack is really started before we stop it.
17740
17741     This problem is now fixed in both the upper as low-level layer.
17742
17743     Signed-off-by: Remy Bohmer <linux@bohmer.net>
17744     Acked-by: Markus Klotzbuecher <mk@denx.de>
17745
17746 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
17747 Author: Wolfgang Denk <wd@denx.de>
17748 Date:   Tue Sep 9 16:55:47 2008 +0200
17749
17750     Makefile: fix bug introduced by commit 47ffd6c2
17751
17752 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
17753 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17754 Date:   Tue Sep 9 10:00:33 2008 -0400
17755
17756     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
17757
17758     This patch solves the problems compiling ml507, v5fx30teval and
17759     ppc440-generic out of tree.
17760
17761     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17762
17763 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
17764 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
17765 Date:   Thu Sep 4 15:35:46 2008 -0300
17766
17767     Fix dev_print when called from usb_stor_info (usb storage command)
17768
17769     Fix output of the usb storage command. It was printing "Device 0: not
17770     available" because IF_TYPE_USB was not included into the switch
17771     statement.
17772
17773     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
17774
17775 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
17776 Author: Bartlomiej Sieka <tur@semihalf.com>
17777 Date:   Tue Sep 9 12:58:16 2008 +0200
17778
17779     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
17780
17781     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17782
17783 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
17784 Author: Bartlomiej Sieka <tur@semihalf.com>
17785 Date:   Tue Sep 9 12:58:15 2008 +0200
17786
17787     FIT: add ability to check hashes of all images in FIT, improve output
17788
17789     - add function fit_all_image_check_hashes() that verifies if all
17790       hashes of all images in the FIT are valid
17791     - improve output of fit_image_check_hashes() when the hash check fails
17792
17793     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17794
17795 commit 1de1fa408967cef6804bb046b904114519bb36f0
17796 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17797 Date:   Mon Sep 8 20:54:39 2008 +0200
17798
17799     qemu_mips: Update linux bootm to support dynamic cmdline
17800
17801     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17802
17803 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
17804 Author: Peter Tyser <ptyser@xes-inc.com>
17805 Date:   Mon Sep 8 14:56:49 2008 -0500
17806
17807     Add support for booting of INTEGRITY operating system uImages
17808
17809     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17810
17811 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
17812 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17813 Date:   Mon Sep 8 21:01:29 2008 +0200
17814
17815     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
17816
17817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17818
17819 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
17820 Author: Kumar Gala <galak@kernel.crashing.org>
17821 Date:   Mon Sep 8 13:57:12 2008 -0500
17822
17823     Remove support for booting ARTOS images
17824
17825     Pantelis Antoniou stated:
17826         AFAIK, it is still used but the products using PPC are long gone.
17827         Nuke it plz (from orbit).
17828
17829     So remove it since it cleans up a usage of env_get_char outside of
17830     the environment code.
17831
17832     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17833
17834 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
17835 Author: Wolfgang Denk <wd@denx.de>
17836 Date:   Tue Sep 9 15:45:18 2008 +0200
17837
17838     Makefile: compile and link each module just once
17839
17840     Several source files need to be compiled and linked when one or more
17841     config options are selected. To allow for easy selection in the
17842     Makefiles yet to avoild multiple compilation (which costs build time)
17843     and especially multiple linking (which causes errors), we use
17844     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
17845
17846     By courtesy of Detlev Zundel who suggested this approach.
17847
17848     Signed-off-by: Wolfgang Denk <wd@denx.de>
17849
17850 commit 48d0192fe869948fef14b460b5f0c85bca933693
17851 Author: Andreas Engel <andreas.engel@ericsson.com>
17852 Date:   Mon Sep 8 14:30:53 2008 +0200
17853
17854     Moved conditional compile into Makefile
17855
17856     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
17857
17858 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
17859 Author: Andreas Engel <andreas.engel@ericsson.com>
17860 Date:   Mon Sep 8 10:17:31 2008 +0200
17861
17862     Merged serial_pl010.c and serial_pl011.c.
17863
17864     They only differ in the init function.
17865     This also adds the missing watchdog support for the PL011.
17866
17867     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
17868
17869 commit 0817d688f307ee2c0598e79175c94a40ce90337b
17870 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17871 Date:   Sun Sep 7 17:10:27 2008 -0400
17872
17873     Remove gap fill in srec object v2
17874
17875     SREC files do not need gap fill: The load address is specified in the
17876     file. On the other hand, it can't be avoided in a .bin object. It has
17877     no information about memory location.
17878
17879     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17880
17881 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
17882 Author: Markus Heidelberg <markus.heidelberg@web.de>
17883 Date:   Sun Sep 7 20:18:27 2008 +0200
17884
17885     README: fix missing subdirectory in the documentation
17886
17887     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
17888
17889 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
17890 Author: Graeme Russ <graeme.russ@gmail.com>
17891 Date:   Sun Sep 7 07:08:42 2008 +1000
17892
17893     Update i386 code (sc520_cdp)
17894
17895     Attempt to bring i386 / sc520 inline with master
17896
17897     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
17898
17899 commit 5608692104efa8d56df803dc79ea41ac3607eee5
17900 Author: Guennadi Liakhovetski <lg@denx.de>
17901 Date:   Thu Sep 4 13:01:49 2008 +0200
17902
17903     fw_env: add NAND support
17904
17905     Add support for environment in NAND with automatic NOR / NAND recognition,
17906     including unaligned environment, bad-block skipping, redundant environment
17907     copy.
17908
17909     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17910
17911 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
17912 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17913 Date:   Tue Sep 9 09:50:24 2008 +0200
17914
17915     ppc4xx: Fix out-of-tree building of CPCI405 variants
17916
17917     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17918     Acked-by: Stefan Roese <sr@denx.de>
17919
17920 commit 59f630588e3fdbd698a0a2798e52a8924e899563
17921 Author: Sergei Poselenov <sposelenov@emcraft.com>
17922 Date:   Fri Aug 15 15:42:11 2008 +0200
17923
17924     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
17925
17926     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17927
17928 commit e64987a892353f3d49eb242d997820ef8f538912
17929 Author: Anatolij Gustschin <agust@denx.de>
17930 Date:   Fri Aug 15 15:42:13 2008 +0200
17931
17932     85xx: socrates: Enable Lime support.
17933
17934     This patch adds Lime GDC support together with support for the PWM
17935     backlight control through the w83782d chip.  The reset pin of the
17936     latter is attached to GPIO, so we need to reset it in
17937     early_board_init_r.
17938
17939     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17940
17941 commit 3e79b588b5199f35016f178fc0d5d1266382097f
17942 Author: Detlev Zundel <dzu@denx.de>
17943 Date:   Fri Aug 15 15:42:12 2008 +0200
17944
17945     85xx: Socrates: Major code update.
17946
17947     - Update the local bus ranges in the FDT for Linux for the various
17948       devices connected to the local bus via chip-select.
17949
17950     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
17951       lower than 66 MHz and uses I/O accessor functions consequently.
17952
17953     - UPM data update.
17954
17955     - Update of default environment and configuration.  Use I2C multibus
17956       as we do have two I2C buses.  Also enable sdram and ext2 commands.
17957
17958     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17959     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17960     Signed-off-by: Detlev Zundel <dzu@denx.de>
17961
17962 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
17963 Author: Timur Tabi <timur@freescale.com>
17964 Date:   Fri Jul 18 16:52:23 2008 +0200
17965
17966     Update Freescale 85xx boards to sys_eeprom.c
17967
17968     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
17969     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
17970     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
17971     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
17972
17973     Signed-off-by: Timur Tabi <timur@freescale.com>
17974
17975 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
17976 Author: Wolfgang Denk <wd@denx.de>
17977 Date:   Tue Sep 9 10:08:02 2008 +0200
17978
17979     lib_ppc/interrupts.c: make board_show_activity() a weak function
17980
17981     This allows to use show_activity() without having to
17982     define an empty board_show_activity() function.
17983
17984     Signed-off-by: Wolfgang Denk <wd@denx.de>
17985
17986 commit fe876787f8743883ce58fed61525eaa2f34da4c5
17987 Author: Wolfgang Denk <wd@denx.de>
17988 Date:   Tue Sep 9 10:06:44 2008 +0200
17989
17990     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
17991
17992     Signed-off-by: Wolfgang Denk <wd@denx.de>
17993
17994 commit 965de106ba8900372c8b16dc60d5acab7f925e38
17995 Author: Wolfgang Denk <wd@denx.de>
17996 Date:   Tue Sep 9 10:03:47 2008 +0200
17997
17998     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
17999
18000     Signed-off-by: Wolfgang Denk <wd@denx.de>
18001
18002 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
18003 Author: Sergei Poselenov <sposelenov@emcraft.com>
18004 Date:   Fri Aug 15 15:42:11 2008 +0200
18005
18006     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
18007
18008     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18009
18010 commit 36241ca29d4804a1006fb3f26069effda5202581
18011 Author: Anatolij Gustschin <agust@denx.de>
18012 Date:   Fri Aug 15 15:42:13 2008 +0200
18013
18014     85xx: socrates: Enable Lime support.
18015
18016     This patch adds Lime GDC support together with support for the PWM
18017     backlight control through the w83782d chip.  The reset pin of the
18018     latter is attached to GPIO, so we need to reset it in
18019     early_board_init_r.
18020
18021     Signed-off-by: Anatolij Gustschin <agust@denx.de>
18022
18023 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
18024 Author: Detlev Zundel <dzu@denx.de>
18025 Date:   Fri Aug 15 15:42:12 2008 +0200
18026
18027     85xx: Socrates: Major code update.
18028
18029     - Update the local bus ranges in the FDT for Linux for the various
18030       devices connected to the local bus via chip-select.
18031
18032     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
18033       lower than 66 MHz and uses I/O accessor functions consequently.
18034
18035     - UPM data update.
18036
18037     - Update of default environment and configuration.  Use I2C multibus
18038       as we do have two I2C buses.  Also enable sdram and ext2 commands.
18039
18040     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
18041     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18042     Signed-off-by: Detlev Zundel <dzu@denx.de>
18043
18044 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
18045 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18046 Date:   Tue Sep 9 01:22:39 2008 +0200
18047
18048     disk-on-chip: remove duplicate doc_probe declaration
18049
18050     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18051
18052 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
18053 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18054 Date:   Tue Sep 9 00:59:40 2008 +0200
18055
18056     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
18057
18058     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18059
18060 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
18061 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18062 Date:   Tue Sep 9 00:59:39 2008 +0200
18063
18064     rs5c372: fix rtc_set prototype
18065
18066     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18067
18068 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
18069 Author: Sergei Poselenov <sposelenov@emcraft.com>
18070 Date:   Thu Aug 14 14:08:28 2008 +0200
18071
18072     ARM: fix warning: target CPU does not support interworking
18073
18074     This patch fixes warnings like this:
18075
18076     start.S:0: warning: target CPU does not support interworking
18077
18078     which come from some ARM cross compilers and are caused by hard-coded
18079     (with "--with-cpu=arm9" configuration option) ARM targets (which
18080     support ARM Thumb instructions), while the ARM target selected from
18081     the command line (with "-march=armv4") doesn't support Thumb
18082     instructions.
18083
18084     This warning is issued by the compiler regardless of the real use of
18085     the Thumb instructions in code.
18086
18087     To fix this problem, we use options according to compiler version
18088     being used.
18089
18090     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18091     Signed-off-by: Wolfgang Denk <wd@denx.de>
18092
18093 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
18094 Author: Sergei Poselenov <sposelenov@emcraft.com>
18095 Date:   Thu Aug 14 14:08:28 2008 +0200
18096
18097     ARM: Use do_div() instead of division for "long long".
18098
18099     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18100     Signed-off-by: Wolfgang Denk <wd@denx.de>
18101
18102 commit 8febd13c69cb68652577d1a9fcbde954bf784155
18103 Author: Timur Tabi <timur@freescale.com>
18104 Date:   Fri Jul 18 16:52:23 2008 +0200
18105
18106     Update Freescale 85xx boards to sys_eeprom.c
18107
18108     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
18109     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
18110     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
18111     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
18112
18113     Signed-off-by: Timur Tabi <timur@freescale.com>
18114
18115 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
18116 Author: Wolfgang Denk <wd@denx.de>
18117 Date:   Mon Sep 8 23:26:22 2008 +0200
18118
18119     lib_arm/bootm.c: fix compile warnings
18120
18121     bootm.c:128: warning: label 'error' defined but not used
18122     bootm.c:65: warning: unused variable 'ret'
18123
18124     Signed-off-by: Wolfgang Denk <wd@denx.de>
18125
18126 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
18127 Author: Wolfgang Denk <wd@denx.de>
18128 Date:   Mon Sep 8 22:46:42 2008 +0200
18129
18130     ml507: fix out of tree build problem
18131
18132     Signed-off-by: Wolfgang Denk <wd@denx.de>
18133
18134 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
18135 Author: Wolfgang Denk <wd@denx.de>
18136 Date:   Mon Sep 8 22:10:28 2008 +0200
18137
18138     common/cmd_bootm.c: fix printf() format warnings
18139
18140     Signed-off-by: Wolfgang Denk <wd@denx.de>
18141
18142 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
18143 Author: Wolfgang Denk <wd@denx.de>
18144 Date:   Mon Sep 8 22:37:45 2008 +0200
18145
18146     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
18147
18148     missing doc_probe() prototype.
18149
18150     Signed-off-by: Wolfgang Denk <wd@denx.de>
18151
18152 commit 2c5e3cc4994897d364b148942ff23e47783198f6
18153 Author: Wolfgang Denk <wd@denx.de>
18154 Date:   Mon Sep 8 21:28:14 2008 +0200
18155
18156     mk48t59: fix compile problem introduced by commit d1e23194
18157
18158     Signed-off-by: Wolfgang Denk <wd@denx.de>
18159
18160 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
18161 Author: Stefan Roese <sr@denx.de>
18162 Date:   Mon Sep 8 14:11:12 2008 +0200
18163
18164     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
18165
18166     This patch moves some 4xx specific prototypes out of include common.h
18167     to a ppc4xx specific header.
18168
18169     Signed-off-by: Stefan Roese <sr@denx.de>
18170
18171 commit ac53ee8318678190bf3c68da477a84a657d86fb0
18172 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18173 Date:   Fri Sep 5 15:34:04 2008 +0200
18174
18175     ppc4xx: Update CPCI405(AB) configuration
18176
18177     This patch add FDT support and command line editing capabilities
18178     for CPCI405 and CPCI405AB boards.
18179
18180     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18181     Signed-off-by: Stefan Roese <sr@denx.de>
18182
18183 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
18184 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18185 Date:   Fri Sep 5 15:34:03 2008 +0200
18186
18187     ppc4xx: Cleanup CPCI405 linker script
18188
18189     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18190     Signed-off-by: Stefan Roese <sr@denx.de>
18191
18192 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
18193 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18194 Date:   Fri Sep 5 15:34:02 2008 +0200
18195
18196     ppc4xx: Update CPCI405 variants handling
18197
18198     This patch replaces the BOARD_REVISION variable in include/config.mk
18199     by a using a temporary include file in the platform directory.
18200
18201     The former way does not work anymore and the latter is also used by
18202     some other boards.
18203
18204     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18205     Signed-off-by: Stefan Roese <sr@denx.de>
18206
18207 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
18208 Author: Stefan Roese <sr@denx.de>
18209 Date:   Mon Sep 8 10:01:48 2008 +0200
18210
18211     ppc4xx: Remove CONFIG_CS8952_PHY define
18212
18213     Since this define is only used on one board that was never really in
18214     production, removing this compile time option doesn't hurt and makes
18215     the code more readable.
18216
18217     Signed-off-by: Stefan Roese <sr@denx.de>
18218
18219 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
18220 Author: Stefan Roese <sr@denx.de>
18221 Date:   Fri Sep 5 14:11:40 2008 +0200
18222
18223     ppc4xx: Fix compilation warning for PIP405
18224
18225     This patch fixes a compilation warning for the PIP405 board. It moves the
18226     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
18227     occur anymore. I am a little unsure if this #ifdef is at the correct
18228     place now or if it could be removed completely. This needs to get
18229     tested on the PIP405 board.
18230
18231     Signed-off-by: Stefan Roese <sr@denx.de>
18232
18233 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
18234 Author: Stefan Roese <sr@denx.de>
18235 Date:   Fri Sep 5 14:09:09 2008 +0200
18236
18237     ppc4xx: Fix compilation warning for canyonlands & glacier
18238
18239     Signed-off-by: Stefan Roese <sr@denx.de>
18240
18241 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
18242 Author: Kumar Gala <galak@kernel.crashing.org>
18243 Date:   Fri Sep 5 14:40:29 2008 -0500
18244
18245     Fix compiler warning in mpc8xxx ddr code
18246
18247     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
18248     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
18249     ctrl_regs.c:523: note: 'caslat' was declared here
18250
18251     Add a warning in DDR1 case if cas_latency isn't a value we know about.
18252
18253     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18254     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18255
18256 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
18257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18258 Date:   Mon Sep 1 23:06:23 2008 +0200
18259
18260     rtc: allow rtc_set to return an error and use it in cmd_date
18261
18262     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18263
18264 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
18265 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18266 Date:   Mon Sep 1 01:16:33 2008 +0200
18267
18268     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
18269
18270     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18271
18272 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
18273 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18274 Date:   Sun Aug 31 05:37:04 2008 +0900
18275
18276     config.mk: Move arch-specific condition to $(ARCH)_config.mk
18277
18278     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18279
18280 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
18281 Author: Kumar Gala <galak@kernel.crashing.org>
18282 Date:   Fri Aug 29 19:08:29 2008 -0500
18283
18284     Prevent crash if random/invalid ramdisks are passed to bootm
18285
18286     Adds returning an error from the ramdisk detection code if
18287     its not a real ramdisk (invalid).  There is no reason we can't
18288     just return back to the console if we detect an invalid
18289     ramdisk or CRC error.
18290
18291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18292
18293 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
18294 Author: Anatolij Gustschin <agust@denx.de>
18295 Date:   Fri Aug 29 21:04:45 2008 +0200
18296
18297     Prevent crash if random DTB address is passed to bootm
18298
18299     This patch adds bootm_start() return value check. If
18300     error status is returned, we do not proceed further to
18301     prevent board reset or crash as we still can recover
18302     at this point.
18303
18304     Signed-off-by: Anatolij Gustschin <agust@denx.de>
18305
18306 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
18307 Author: Andrew Dyer <adyer@righthandtech.com>
18308 Date:   Fri Aug 29 12:30:39 2008 -0500
18309
18310     clean up some #if !defined() in drivers/video/cfb_console.c
18311
18312     rearrange some #if !defined() / #else / #endif statements to remove
18313     the negative logic.
18314
18315     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
18316
18317 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
18318 Author: Kyungmin Park <kmpark@infradead.org>
18319 Date:   Fri Aug 29 09:02:20 2008 +0900
18320
18321     apollon: use the last memory area for u-boot
18322
18323     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18324
18325 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
18326 Author: Heiko Schocher <hs@denx.de>
18327 Date:   Thu Aug 28 13:50:42 2008 +0200
18328
18329     TQM8272: move NAND part in seperate File
18330
18331     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
18332     because I have no longer access to the hardware.
18333
18334     Signed-off-by: Heiko Schocher <hs@denx.de>
18335
18336 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
18337 Author: Heiko Schocher <hs@denx.de>
18338 Date:   Thu Aug 28 13:48:36 2008 +0200
18339
18340     TQM8272: Fix compiling error for the TQM8272 board.
18341
18342     Fix compile problems caused by
18343     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
18344
18345     Signed-off-by: Heiko Schocher <hs@denx.de>
18346
18347 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
18348 Author: Kyungmin Park <kmpark@infradead.org>
18349 Date:   Wed Aug 27 14:45:20 2008 +0900
18350
18351     Add JFFS2 command support on OneNAND
18352
18353     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18354
18355 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
18356 Author: Mark Jackson <mpfj@mimc.co.uk>
18357 Date:   Mon Aug 25 19:21:30 2008 +0100
18358
18359     Allow console input to be disabled
18360
18361     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
18362
18363     When CONFIG_DISABLE_CONSOLE is defined, setting
18364     GD_FLG_DISABLE_CONSOLE disables all console input and output.
18365
18366     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
18367
18368 commit 2b22d608f370565c87f55928b524207031419c11
18369 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18370 Date:   Wed Jul 30 12:39:29 2008 +0200
18371
18372     loads: allow negative offsets
18373
18374     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18375
18376 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
18377 Author: Yuri Tikhonov <yur@emcraft.com>
18378 Date:   Thu Sep 4 11:19:05 2008 +0200
18379
18380     USB EHCI: reset root hub
18381
18382     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
18383     resetting only via EHCI registers. So, this patch adds the
18384     corresponding kind of reset to OHCI's hc_reset() if the newly
18385     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
18386     board).
18387
18388     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18389     Acked-by: Markus Klotzbuecher <mk@denx.de>
18390
18391 commit 5875d358f025c1b042d8a0f08384b756de7256c9
18392 Author: Yuri Tikhonov <yur@emcraft.com>
18393 Date:   Fri Aug 15 15:42:09 2008 +0200
18394
18395     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
18396
18397     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18398
18399 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
18400 Author: Stefan Roese <sr@denx.de>
18401 Date:   Fri Sep 5 10:47:46 2008 +0200
18402
18403     devices: Use list_add_tail() instead of list_add() to register a device
18404
18405     This patch fixes a problem spotted on Glacier/Canyonlands (and most
18406     likely lots of other board ports), that no serial output was seen
18407     after console initialization in console_init_r(). This is because the
18408     last added console device was used instead of the first added.
18409
18410     This patch fixes this problem by using list_add_tail() instead of
18411     list_add() to register a device. This way the first added console
18412     is used again.
18413
18414     Signed-off-by: Stefan Roese <sr@denx.de>
18415
18416 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
18417 Author: Victor Gallardo <vgallardo@amcc.com>
18418 Date:   Thu Sep 4 23:49:36 2008 -0700
18419
18420     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
18421
18422     This patch adds GPCS, SGMII and M88E1112 PHY support
18423     for the AMCC PPC460GT/EX processors.
18424
18425     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
18426     Signed-off-by: Stefan Roese <sr@denx.de>
18427
18428 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
18429 Author: Adam Graham <agraham@amcc.com>
18430 Date:   Wed Sep 3 12:26:59 2008 -0700
18431
18432     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
18433
18434     Signed-off-by: Adam Graham <agraham@amcc.com>
18435     Signed-off-by: Stefan Roese <sr@denx.de>
18436
18437 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
18438 Author: Adam Graham <agraham@amcc.com>
18439 Date:   Wed Sep 3 12:26:28 2008 -0700
18440
18441     ppc4xx: IBM Memory Controller DDR autocalibration routines
18442
18443     Alternate SDRAM DDR autocalibration routine that can be generically used
18444     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
18445     support of more DIMM/memory chip vendors and gets the DDR autocalibration
18446     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
18447
18448     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
18449     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
18450     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
18451     lot longer to run than Method_B.  Method_B executes in the same amount of time
18452     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
18453     Normally Method_B is used and it is set as the default method.
18454
18455     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
18456     Controller registers.[bit-field]:
18457     1)  SDRAM0_RQDC.[RQFD]
18458     2)  SDRAM0_RFDC.[RFFD]
18459
18460     This alternate PPC4xx DDR autocalibration code calibrates the following
18461     IBM SDRAM Controller registers.[bit-field]:
18462
18463     1)  SDRAM0_WRDTR.[WDTR]
18464     2)  SDRAM0_CLKTR.[CKTR]
18465     3)  SDRAM0_RQDC.[RQFD]
18466     4)  SDRAM0_RFDC.[RFFD]
18467
18468     and will also use the calibrated settings of the above four registers that
18469     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
18470     register.[bit-field].
18471
18472     Signed-off-by: Adam Graham <agraham@amcc.com>
18473     Signed-off-by: Stefan Roese <sr@denx.de>
18474
18475 commit e07f4a8033b6270b8103049adb6456f660ff4a89
18476 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18477 Date:   Mon Sep 1 13:09:39 2008 -0400
18478
18479     ppc44x: Unification of virtex5 pp440 boards
18480
18481     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
18482
18483     It unificates 3 different things:
18484
18485     1) Source code
18486     A new board called ppc440-generic has been created. This board includes
18487     a generic tlb initialization (Maps the whole memory into virtual) and
18488     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
18489     so, they can be replaced by specific functions.
18490
18491     If a new board needs to redefine any of the previous functions
18492     (specific initialization) it can create a new directory with the
18493     specific initializations needed. (see the example ml507 board).
18494
18495     2) Configuration file
18496     Common configurations are located under configs/xilinx-ppc440.h, this
18497     header file interpretes the xparameters file generated by EDK and
18498     configurates u-boot in correspondence. Example: if there is a Temac,
18499     allows CMD_CONFIG_NET
18500     Specific configuration are located under specific configuration file.
18501     (see the example ml507 board)
18502
18503     3) Makefile
18504     Some work has been done in order to not duplicate work in the Main
18505     Makefile. Please see the attached code.
18506
18507     In order to support new boards they can be implemented in the next way:
18508
18509     a) Simple Generic Board  (90% of the time)
18510     Using EDK generates a new xparameters.h file, replace
18511     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
18512     && make
18513
18514     b) Simple Boards with special u-boot parameters (9 % of the time)
18515     Create a new file under configs for it (use ml507.h as example) and
18516     change your paramaters. Create a new Makefile paragraph and compile
18517
18518     c) Complex boards (1% of the time)
18519     Create a new folder for the board, like the ml507
18520
18521     Finally, it adds support for the Avnet FX30T Evaluation board, following
18522     the new generic structure:
18523
18524     Cheap board by Avnet for evaluating the Virtex5 FX technology.
18525
18526     This patch adds support for:
18527      - UartLite
18528      - 16MB Flash
18529      - 64MB RAM
18530
18531     Prior using U-boot in this board, read carefully the ERRATA by Avnet
18532     to solve some memory initialization issues.
18533
18534     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18535     Signed-off-by: Stefan Roese <sr@denx.de>
18536
18537 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
18538 Author: Nick Spence <nick.spence@freescale.com>
18539 Date:   Tue Sep 2 15:21:16 2008 -0500
18540
18541     mpc83xx: fix mpc8313 in-tree building with NAND
18542
18543     and add mpc8313 NAND build to MAKEALL
18544
18545     Signed-off-by: Nick Spence <nick.spence@freescale.com>
18546     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18547
18548 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
18549 Author: Nick Spence <nick.spence@freescale.com>
18550 Date:   Thu Aug 28 14:09:25 2008 -0700
18551
18552     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
18553
18554     Cleans up some latent issues with the data cache control so that
18555     dcache_enable() and dcache_disable() will work reliably (after
18556     unlock_ram_in_cache() has been called)
18557
18558     Signed-off-by: Nick Spence <nick.spence@freescale.com>
18559     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18560
18561 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
18562 Author: Nick Spence <nick.spence@freescale.com>
18563 Date:   Thu Aug 28 14:09:19 2008 -0700
18564
18565     mpc83xx: Store and display Arbiter Event Register values
18566
18567     Record the Arbiter Event Register values and optionally display them.
18568
18569     The Arbiter Event Register can record the type and effective address of
18570     an arbiter error, even through an HRESET. This patch stores the values in
18571     the global data structure.
18572
18573     Display of the Arbiter Event registers immediately after the RSR value
18574     can be enabled with defines. The Arbiter values will only be displayed
18575     if an arbiter event has occured since the last Power On Reset, and either
18576     of the following defines exist:
18577      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
18578                                         and type register values
18579      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
18580                                         event register values
18581
18582     Address Only transactions are one of the trapped events that can register
18583     as an arbiter event. They occur with some cache manipulation instructions
18584     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
18585     has the MEMORY_COHERENCE WIMG bit set. Setting:
18586      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
18587                                   only events, so that it can still capture
18588                                   other real problems.
18589
18590     Signed-off-by: Nick Spence <nick.spence@freescale.com>
18591     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18592
18593 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
18594 Author: Nick Spence <nick.spence@freescale.com>
18595 Date:   Thu Aug 28 14:09:11 2008 -0700
18596
18597     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
18598
18599     This is needed in unlock_ram_in_cache() because it is called from C and
18600     will corrupt the small data area anchor that is kept in R2.
18601
18602     lock_ram_in_cache() is modified similarly as good coding practice, but
18603     is not called from C.
18604
18605     Signed-off-by: Nick Spence <nick.spence@freescale.com>
18606     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18607
18608 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
18609 Author: Nick Spence <nick.spence@freescale.com>
18610 Date:   Fri Aug 22 23:52:50 2008 -0700
18611
18612     MPC83XX: Fix GPIO configuration - set gpio level before direction
18613
18614     Set DAT value before DIR values to avoid creating glitches on the
18615     GPIO signals.
18616
18617     Set gpio level register before direction register to inhibit
18618     glitches on high level output pins.
18619
18620     Dir and data gets cleared at powerup, so high level output lines see
18621     a short low pulse between setting the direction and level registers.
18622
18623     Issue was seen on a new board with the nReset line of the NOR flash
18624     connected to a GPIO. Setting the direction register puts the NOR flash
18625     in reset so the next instruction to set the level cannot get executed.
18626
18627     Signed-off-by: Nick Spence <nick.spence@freescale.com>
18628     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18629     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18630
18631 commit 7007c5975ee900ad70983b0681d3251e221f8321
18632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18633 Date:   Tue Sep 2 02:58:32 2008 +0200
18634
18635     doc/qemu_mips: add doc howto debug u-boot with gdb
18636
18637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18638
18639 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
18640 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18641 Date:   Wed Sep 3 17:15:45 2008 +0200
18642
18643     ppx4xx: Fix broken DASA_SIM board
18644
18645     This patch adds initdram() to DASA_SIM boards that has been
18646     removed accidentally by a previous commit.
18647
18648     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18649     Signed-off-by: Stefan Roese <sr@denx.de>
18650
18651 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
18652 Author: Stefan Roese <sr@denx.de>
18653 Date:   Mon Sep 1 08:35:37 2008 +0200
18654
18655     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
18656
18657     This patch removes some direct references to common/lists.o from some
18658     esd linker scripts. This is necessary because the lists source was moved
18659     and is not in the "common" directory anymore.
18660
18661     Signed-off-by: Stefan Roese <sr@denx.de>
18662
18663 commit 97b0734d65f8a0b03df0a335a2addc759da56107
18664 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18665 Date:   Tue Sep 2 16:33:05 2008 +0200
18666
18667     ppc4xx: Remove obsolete or unused functions from some esd boards
18668
18669     This patch removes initdram() and testdram() from most esd 405 platforms.
18670     Some boards also have an empty dummy implementation of
18671     misc_init_f(). This is also removed.
18672
18673     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18674     Signed-off-by: Stefan Roese <sr@denx.de>
18675
18676 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
18677 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18678 Date:   Tue Sep 2 15:07:54 2008 +0200
18679
18680     ppc4xx: Update VOM405 board configuration
18681
18682     - remove PCI code
18683     - add command line editing
18684     - minor cleanup
18685
18686     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18687     Signed-off-by: Stefan Roese <sr@denx.de>
18688
18689 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
18690 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18691 Date:   Tue Sep 2 15:07:53 2008 +0200
18692
18693     ppc4xx: Remove obsolete initdram() function from VOM405 board
18694
18695     This patch removed the obsolete initdram() function from
18696     VOM405 platform file.
18697
18698     Some minor cleanup.
18699
18700     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18701     Signed-off-by: Stefan Roese <sr@denx.de>
18702
18703 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
18704 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18705 Date:   Tue Sep 2 15:07:52 2008 +0200
18706
18707     ppc4xx: Cleanup VOM405 linker script
18708
18709     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18710     Signed-off-by: Stefan Roese <sr@denx.de>
18711
18712 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
18713 Author: Matthias Fuchs <mf@esd.eu>
18714 Date:   Tue Sep 2 15:07:51 2008 +0200
18715
18716     ppc4xx: Add fdt support for VOM405 boards
18717
18718     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18719     Signed-off-by: Stefan Roese <sr@denx.de>
18720
18721 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
18722 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18723 Date:   Tue Sep 2 11:36:14 2008 +0200
18724
18725     ppc4xx: Coding style cleanup
18726
18727     Wrap long lines etc.
18728
18729     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18730     Signed-off-by: Stefan Roese <sr@denx.de>
18731
18732 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
18733 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18734 Date:   Tue Sep 2 11:35:56 2008 +0200
18735
18736     ppc4xx: Enable USB on PLU405 boards
18737
18738     This patch enables the PCI-OHCI controller on PLU405 board.
18739
18740     Also the default CPU frequency is updated to 266 MHz and
18741     command line editing is enabled.
18742
18743     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18744     Signed-off-by: Stefan Roese <sr@denx.de>
18745
18746 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
18747 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18748 Date:   Tue Sep 2 11:35:35 2008 +0200
18749
18750     ppc4xx: Cleanup PLU405 platform file
18751
18752     This patch
18753     - wraps some long lines
18754     - removes unused/obsolete functions: misc_init_f() and initdram()
18755
18756     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18757     Signed-off-by: Stefan Roese <sr@denx.de>
18758
18759 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
18760 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18761 Date:   Tue Sep 2 11:35:04 2008 +0200
18762
18763     ppc4xx: Cleanup PLU405 linker script
18764
18765     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18766     Signed-off-by: Stefan Roese <sr@denx.de>
18767
18768 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
18769 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18770 Date:   Tue Sep 2 11:34:36 2008 +0200
18771
18772     ppc4xx: Add fdt support for PLU405 boards
18773
18774     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18775     Signed-off-by: Stefan Roese <sr@denx.de>
18776
18777 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
18778 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18779 Date:   Tue Sep 2 11:34:08 2008 +0200
18780
18781     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
18782
18783     Signed-off-by: Matthias Fuchs <mf@esd.eu>
18784     Signed-off-by: Stefan Roese <sr@denx.de>
18785
18786 commit be1b0d2777e179191a57b138b660547a17e55aad
18787 Author: Jochen Friedrich <jochen@scram.de>
18788 Date:   Tue Sep 2 11:24:59 2008 +0200
18789
18790     Don't tftp to unknown flash
18791
18792     If a board has a variable number of flash banks, there are empty entries
18793     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
18794     "Outside available Flash". This patch skips flash banks with unknown
18795     flash ids.
18796
18797     Signed-off-by: Jochen Friedrich <jochen@scram.de>
18798     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18799
18800 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
18801 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18802 Date:   Thu Aug 28 13:40:44 2008 +0900
18803
18804     net: smc911x: Add pkt_data_pull and pkt_data_push function
18805
18806     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
18807     Byte-swapping is necessary, and so poor performance is inevitable.
18808     This problem cannot evade by the swap function of CHIP, this can
18809     evade by software Byte-swapping.
18810     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
18811     functions necessary to solve this problem.
18812
18813     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18814     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18815
18816 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
18817 Author: Ben Warren <biggerbadderben@gmail.com>
18818 Date:   Sun Aug 31 20:37:00 2008 -0700
18819
18820     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
18821
18822     Affected boards:
18823         db64360
18824         db64460
18825         katmai
18826         taihu
18827         taishan
18828         yucca
18829         cpc45
18830         cpu87
18831         eXalion
18832         elppc
18833         debris
18834         kvme080
18835         mpc8315erdb
18836         integratorap
18837         ixdp425
18838         oxc
18839         pm826
18840         pm828
18841         pm854
18842         pm856
18843         ppmc7xx
18844         sc3
18845         sc520_spunk
18846         sorcery
18847         tqm8272
18848         tqm85xx
18849         utx8245
18850
18851     Removed initialization of the driver from net/eth.c
18852     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
18853
18854     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18855
18856 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
18857 Author: Ben Warren <biggerbadderben@gmail.com>
18858 Date:   Sun Aug 31 10:45:44 2008 -0700
18859
18860     Moved initialization of TULIP Ethernet controller to board_eth_init()
18861
18862     Affected boards:
18863         cu824
18864         bab7xx
18865         adciop
18866         dasa_sim
18867         mousse
18868         mpc8540eval
18869         musenki
18870         mvblue
18871         pcippc2/pcippc6
18872         sbc8240
18873         stxssa
18874
18875     Removed initialization of the driver from net/eth.c
18876
18877     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18878
18879 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
18880 Author: Ben Warren <biggerbadderben@gmail.com>
18881 Date:   Sun Aug 31 10:44:19 2008 -0700
18882
18883     Moved initialization of E1000 Ethernet controller to board_eth_init()
18884
18885     Affected boards:
18886         ap1000
18887         mvbc_p
18888         PM854
18889
18890     Removed initialization of the driver from net/eth.c
18891
18892     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18893
18894 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
18895 Author: Ben Warren <biggerbadderben@gmail.com>
18896 Date:   Sun Aug 31 10:40:51 2008 -0700
18897
18898     Moved initialization of plb2800 Ethernet driver to board_eth_init
18899
18900     Affected boards:
18901         purple
18902
18903     Removed initialization of controller from net/eth.c
18904
18905     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18906
18907 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
18908 Author: Ben Warren <biggerbadderben@gmail.com>
18909 Date:   Sun Aug 31 10:39:12 2008 -0700
18910
18911     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
18912
18913     Modified board_eth_init() functions of boards that have this FEC in addition
18914     to other Ethernet controllers.
18915
18916     Affected boards:
18917         bc3450
18918         icecube
18919         mvbc_p
18920         o2dnt
18921         pm520
18922         total5200
18923         tq5200
18924
18925     Removed initialization of controller from net/eth.c
18926
18927     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18928
18929 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
18930 Author: Ben Warren <biggerbadderben@gmail.com>
18931 Date:   Sun Aug 31 10:36:38 2008 -0700
18932
18933     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
18934
18935     Added a cpu_eth_init() function to MPC512x CPU directory and
18936     removed code from net/eth.c
18937
18938     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18939
18940 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
18941 Author: Ben Warren <biggerbadderben@gmail.com>
18942 Date:   Sun Aug 31 10:16:59 2008 -0700
18943
18944     Moved initialization of IncaIP Ethernet controller to board_eth_init
18945
18946     Affected boards:
18947         IncaIP
18948
18949     Removed initialization of the driver from net/eth.c
18950
18951     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18952
18953 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
18954 Author: Ben Warren <biggerbadderben@gmail.com>
18955 Date:   Sun Aug 31 10:15:26 2008 -0700
18956
18957     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
18958
18959         Affected boards:
18960             AmigaOneG3SE
18961
18962         Removed initialization of the driver from net/eth.c
18963
18964     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18965
18966 commit 6aca145e067efe75398e9fac97822bd3700de0b2
18967 Author: Ben Warren <biggerbadderben@gmail.com>
18968 Date:   Sun Aug 31 10:13:34 2008 -0700
18969
18970     Moved initialization of GT6426x Ethernet controller to board_eth_init()
18971
18972     Affected boards:
18973         EVB64260
18974         P3G4
18975         ZUMA
18976
18977     Removed initialization of the driver from net/eth.c
18978
18979     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18980
18981 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
18982 Author: Ben Warren <biggerbadderben@gmail.com>
18983 Date:   Sun Aug 31 10:08:43 2008 -0700
18984
18985     Moved initialization of PCNET Ethernet controller to board_eth_init()
18986
18987     Affected boards:
18988         PN62
18989         sc520_cdp
18990
18991     Removed initialization of the driver from net/eth.c
18992
18993     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18994
18995 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
18996 Author: Ben Warren <biggerbadderben@gmail.com>
18997 Date:   Sun Aug 31 10:07:16 2008 -0700
18998
18999     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
19000
19001     Affected boards:
19002         a3000
19003
19004     Removed initialization of the driver from net/eth.c
19005
19006     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19007
19008 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
19009 Author: Ben Warren <biggerbadderben@gmail.com>
19010 Date:   Sun Aug 31 10:03:22 2008 -0700
19011
19012     Moved initialization of NS8382X Ethernet controller to board_eth_init()
19013
19014     Affected boards:
19015         bc3450
19016         cpci5200
19017         mecp5200
19018         pf2000
19019         icecube
19020         o2dnt
19021         pm520
19022         sandpoint8245
19023         total5200
19024         tqm5200
19025
19026     Removed initialization of the driver from net/eth.c
19027
19028     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19029
19030 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
19031 Author: Ben Warren <biggerbadderben@gmail.com>
19032 Date:   Sun Aug 31 09:59:33 2008 -0700
19033
19034     Moved initialization of TSI108 Ethernet controller to board_eth_init()
19035
19036     Affected boards:
19037         mpc7448hpc2
19038
19039     Removed initialization of the driver from net/eth.c
19040
19041     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19042
19043 commit 0b252f50ae218ae15bfb63af44227972686ebc56
19044 Author: Ben Warren <biggerbadderben@gmail.com>
19045 Date:   Sun Aug 31 21:41:08 2008 -0700
19046
19047     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
19048
19049     Affected boards:
19050         hidden_dragon
19051         MPC8544DS
19052         MPC8610HPCN
19053         R2DPLUS
19054         TB0229
19055
19056     Removed initialization of the driver from net/eth.c
19057
19058     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19059
19060 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
19061 Author: Ben Warren <biggerbadderben@gmail.com>
19062 Date:   Sun Aug 31 09:49:42 2008 -0700
19063
19064     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
19065
19066     Affected boards:
19067         linkstation
19068         r7780mp
19069
19070     Removed initialization of the driver from net/eth.c
19071
19072     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19073
19074 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
19075 Author: Ben Warren <biggerbadderben@gmail.com>
19076 Date:   Tue Aug 12 22:11:53 2008 -0700
19077
19078     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
19079
19080     Removed at91sam9_eth_initialize() from net/eth.c
19081
19082     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19083
19084 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
19085 Author: Ben Warren <biggerbadderben@gmail.com>
19086 Date:   Sun Aug 31 22:22:04 2008 -0700
19087
19088     Introduce netdev.h header file and remove externs
19089
19090     This addresses all drivers whose initializers have already
19091     been moved to board_eth_init()/cpu_eth_init().
19092
19093     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19094
19095 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
19096 Author: Andy Fleming <afleming@freescale.com>
19097 Date:   Sun Aug 31 16:33:30 2008 -0500
19098
19099     Add pixis_set_sgmii command
19100
19101     The 8544DS and 8572DS platforms support an optional SGMII riser card to
19102     expose ethernet over an SGMII interface.  Once the card is in, it is also
19103     necessary to configure the board such that it uses the card, rather than
19104     the on-board ethernet ports.  This can either be done by flipping dip switches
19105     on the motherboard, or by modifying registers in the pixis.  Either way
19106     requires a reboot.
19107
19108     This adds a command to allow users to choose which ports are routed through
19109     the SGMII card, and which through the onboard ports.  It also allows users
19110     to revert to the current switch settings.
19111
19112     This code does not work on the 8572, as the PIXIS is different.
19113
19114     Signed-off-by: Andy Fleming <afleming@freescale.com>
19115     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19116
19117 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
19118 Author: Andy Fleming <afleming@freescale.com>
19119 Date:   Sun Aug 31 16:33:29 2008 -0500
19120
19121     Add SGMII support for the 8544 DS
19122
19123     The 8544 DS has an optional SGMII Riser card, which uses different PHY
19124     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
19125     setup code if so.
19126
19127     Signed-off-by: Andy Fleming <afleming@freescale.com>
19128     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19129
19130 commit 652f7c2eef76a1340928bd660845441e932d86a2
19131 Author: Andy Fleming <afleming@freescale.com>
19132 Date:   Sun Aug 31 16:33:28 2008 -0500
19133
19134     Add support for Freescale SGMII Riser Card
19135
19136     The 8544DS and 8572DS systems have an optional SGMII riser card which
19137     exposes new ethernet ports which are connected to the eTSECs via an
19138     SGMII interface.  The SGMII PHYs for this board are offset from the standard
19139     PHY addresses, so this code modifies the passed in tsec_info structure to
19140     use the SGMII PHYs on the card, instead.
19141
19142     Signed-off-by: Andy Fleming <afleming@freescale.com>
19143     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19144
19145 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
19146 Author: Andy Fleming <afleming@freescale.com>
19147 Date:   Sun Aug 31 16:33:27 2008 -0500
19148
19149     Add SGMII support to the tsec
19150
19151     Adds support for configuring the TBI to talk properly with the SerDes.
19152
19153     Signed-off-by: Andy Fleming <afleming@freescale.com>
19154     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19155
19156 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
19157 Author: Andy Fleming <afleming@freescale.com>
19158 Date:   Sun Aug 31 16:33:26 2008 -0500
19159
19160     Pass in tsec_info struct through tsec_initialize
19161
19162     The tsec driver contains a hard-coded array of configuration information
19163     for the tsec ethernet controllers.  We create a default function that works
19164     for most tsecs, and allow that to be overridden by board code.  It creates
19165     an array of tsec_info structures, which are then parsed by the corresponding
19166     driver instance to determine configuration.  Also, add regs, miiregs, and
19167     devname fields to the tsec_info structure, so that we don't need the kludgy
19168     "index" parameter.
19169
19170     Signed-off-by: Andy Fleming <afleming@freescale.com>
19171     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19172
19173 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
19174 Author: Andy Fleming <afleming@freescale.com>
19175 Date:   Sun Aug 31 16:33:25 2008 -0500
19176
19177     tsec: Move tsec.h to include/
19178
19179     This is to prepare the way for board code passing in the tsec_info structure
19180
19181     Signed-off-by: Andy Fleming <afleming@freescale.com>
19182     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19183
19184 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
19185 Author: Sergei Poselenov <sposelenov@emcraft.com>
19186 Date:   Fri Jun 6 15:52:44 2008 +0200
19187
19188     PHY: Add support for the M88E1121R Marvell chip.
19189
19190     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19191     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19192     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19193
19194 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
19195 Author: Wolfgang Denk <wd@denx.de>
19196 Date:   Tue Sep 2 21:17:36 2008 +0200
19197
19198     fw_env.c: fix build problems with MTD_VERSION=old
19199
19200     (as needed to support old 2.4 Linux kernel based releases)
19201
19202     Signed-off-by: Wolfgang Denk <wd@denx.de>
19203
19204 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
19205 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19206 Date:   Mon Sep 1 17:11:26 2008 +0200
19207
19208     device: make device_register() clone the device
19209
19210     This is expected by the callers, but this fact was hidden well within
19211     the old list implementation.
19212
19213     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19214
19215 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
19216 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19217 Date:   Mon Sep 1 14:00:07 2008 +0200
19218
19219     avr32: Add support for "GPIO" port mux
19220
19221     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
19222     all later AVR32 chips. This patch adds a driver for it, implementing the
19223     same API as the existing portmux-pio driver but with more functionality.
19224
19225     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19226
19227 commit d92852579546c46bdaac978e0b6767a6645b69e0
19228 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19229 Date:   Fri Aug 15 15:02:29 2008 +0200
19230
19231     atstk1000: Convert to new-style makefile
19232
19233     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19234
19235 commit 25e6854d42c11046a468576179b5494f850311b2
19236 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19237 Date:   Sun Aug 31 18:46:35 2008 +0200
19238
19239     avr32: use board_early_init_r instead of board_init_info
19240
19241     Replace the avr32-specific board_init_info hook by the standard
19242     board_early_init_r hook and make it optional.
19243
19244     board_early_init_r() runs somewhat earlier than board_init_info used to
19245     do, but this isn't a problem for any of the in-tree boards.
19246
19247     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19248
19249 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
19250 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19251 Date:   Sun Aug 31 18:24:24 2008 +0200
19252
19253     avr32: Use board_postclk_init instead of gclk_init
19254
19255     Replace the avr32-specific gclk_init() board hook with the standard
19256     board_postclk_init() hook which is supposed to run at the same point
19257     during initialization.
19258
19259     Provide a dummy weak alias for boards not implementing this hook. The
19260     cost of this is:
19261       - 2 bytes for the dummy function (retal 0)
19262       - 2 bytes for each unnecessary function call (short rcall)
19263
19264     which is a pretty small price to pay for avoiding lots of #ifdef
19265     clutter. In this particular case, all boards probably end up slightly
19266     smaller because we avoid the conditional checking if the gclk_init
19267     symbol is NULL.
19268
19269     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19270
19271 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
19272 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19273 Date:   Sun Aug 31 18:07:35 2008 +0200
19274
19275     hammerhead: Use gclk helper functions
19276
19277     Use the new gclk helper functions to set up the PHY clock instead of
19278     accessing the PM registers directly.
19279
19280     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19281
19282 commit 98090cd75cdb40b2ab94c806c338540a5716748b
19283 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19284 Date:   Sun Aug 31 18:05:32 2008 +0200
19285
19286     avr32: Add gclk helper functions
19287
19288     Add two helper functions for configuring and enabling generic clocks:
19289       - gclk_enable_output: Enables output on a GCLKx pin
19290       - gclk_set_rate: Configures a gclk to run at a specific rate
19291
19292     This should eliminate any reason to go mucking about with PM registers
19293     from board code.
19294
19295     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19296
19297 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
19298 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19299 Date:   Fri Aug 29 21:09:49 2008 +0200
19300
19301     avr32: refactor the portmux/gpio code
19302
19303       - Separate the portmux configuration functionality from the GPIO pin
19304         control API.
19305       - Separate the controller-specific code from the chip-specific code.
19306       - Allow "ganged" port configuration (multiple pins at once).
19307       - Add more flexibility to the "canned" peripheral select functions:
19308           - Allow using more than 23 address bits, more chip selects, as
19309         well as NAND- and CF-specific pins.
19310           - Make the MACB SPEED pin optional, and choose between MII/RMII
19311         using a parameter instead of an #ifdef.
19312           - Make it possible to use other MMC slots than slot 0, and support
19313         different MMC/SDCard data bus widths.
19314       - Use more reasonable pull-up defaults; floating pins may consume a
19315         lot of power.
19316       - Get rid of some custom portmux code from the mimc200 board code. The
19317         old gpio/portmux API couldn't really handle its requirements, but
19318         the new one can.
19319       - Add documentation.
19320
19321     The end result is slightly smaller code for all boards. Which isn't
19322     really the point, but at least it isn't any larger.
19323
19324     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
19325     the board maintainers could help me test this on their boards. In
19326     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
19327     can help me out.
19328
19329     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19330     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
19331     Cc: Mark Jackson <mpfj@mimc.co.uk>
19332     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
19333     Cc: Julien May <julien.may@miromico.ch>
19334
19335     Changes since v1:
19336       * Enable pullup on NWAIT
19337       * Add missing include to portmux-pio.h
19338       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
19339
19340 commit 4c24e8288c601cb773ab02528b48a8577970e867
19341 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19342 Date:   Sat Aug 30 17:28:36 2008 +0200
19343
19344     avr32: data_bits should reflect the actual number of data bits
19345
19346     Make the data_bits enum in struct sdram_config reflect the actual number
19347     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
19348     32 bits is just too confusing.
19349
19350     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19351
19352 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
19353 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19354 Date:   Fri Aug 29 17:48:18 2008 +0200
19355
19356     avr32: Update README
19357
19358     Remove some outdated and/or unnecessary information, and add updated
19359     information about the toolchain and buildroot.
19360
19361     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19362
19363 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
19364 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19365 Date:   Sun Aug 31 23:28:15 2008 +0900
19366
19367     sh: Remove CC line from board's Makefile
19368
19369     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19370
19371 commit 468eae0660de6fdfd9999944c536ecc4797bd944
19372 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19373 Date:   Sun Aug 31 23:25:57 2008 +0900
19374
19375     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
19376
19377     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19378
19379 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
19380 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19381 Date:   Thu Aug 28 14:50:52 2008 +0900
19382
19383     sh: Add support sh2 to MAKEALL
19384
19385     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19386     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19387
19388 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
19389 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19390 Date:   Thu Aug 28 14:52:23 2008 +0900
19391
19392     sh: Fix compile error rsk7203 board
19393
19394     This boards used old type preprocessor.
19395     This patch fix compile error.
19396
19397     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19398     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19399
19400 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
19401 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19402 Date:   Thu Aug 28 14:53:31 2008 +0900
19403
19404     sh: Fix compile error sh7785lcr board
19405
19406     This boards used old type preprocessor.
19407     This patch fix compile error.
19408
19409     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19410     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19411
19412 commit 6f0da4972e48f99d37bc522814940a6022cd3084
19413 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19414 Date:   Fri Aug 22 17:39:09 2008 +0900
19415
19416     sh: Renesas Solutions AP325RXA board support
19417
19418     AP325RXA is SH7723's reference board.
19419     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
19420     In this patch, support SCIF, NOR Flash, and Ethernet.
19421
19422     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19423     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19424
19425 commit ab09f433b50bb83b5e440c335bc3839ee069e534
19426 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19427 Date:   Fri Aug 22 17:48:51 2008 +0900
19428
19429     sh: add support Renesas SH7723
19430
19431     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
19432     This patch supports CPU register's header file and SCIF serial driver.
19433
19434     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19435     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19436
19437 commit c655fad06ba3fb042dbc667724a40e1a9a091248
19438 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19439 Date:   Sun Aug 31 23:02:04 2008 +0900
19440
19441     sh: Renesas RSK+ 7203 board support
19442
19443     This adds initial support for the RTE RSK+ SH7203 board.
19444
19445     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19446     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19447
19448 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
19449 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19450 Date:   Thu Jul 3 23:11:02 2008 +0900
19451
19452     sh: Add support Renesas SH7203 processor
19453
19454     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19455     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19456
19457 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
19458 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19459 Date:   Sun Aug 31 22:48:33 2008 +0900
19460
19461     sh: Add support SH2/SH2A which is CPU of Renesas Technology
19462
19463     Add support SH2/SH2A basic function.
19464
19465     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
19466     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19467
19468 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
19469 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19470 Date:   Sun Aug 31 22:45:08 2008 +0900
19471
19472     sh: Renesas R0P7785LC0011RL board support
19473
19474     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
19475     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
19476
19477     This patch supports the following functions:
19478      - 128MB DDR2-SDRAM (29-bit address mode only)
19479      - NOR Flash
19480      - USB host
19481      - Ethernet
19482
19483     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
19484     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19485
19486 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
19487 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
19488 Date:   Thu Jul 10 19:32:53 2008 +0900
19489
19490     sh: add support for SH7785
19491
19492     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
19493     This patch supports CPU register's header file.
19494
19495     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
19496     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19497
19498 commit d6e04258be8f2408845468d3cf722a4cf0433445
19499 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19500 Date:   Sun Aug 31 04:45:42 2008 +0200
19501
19502     davinci: fix remaining dm644x_eth
19503
19504     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19505
19506 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
19507 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19508 Date:   Sun Aug 31 04:24:56 2008 +0200
19509
19510     fs: Move conditional compilation to Makefile
19511
19512     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19513
19514 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
19515 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19516 Date:   Sun Aug 31 04:24:55 2008 +0200
19517
19518     devices: merge to list_head
19519
19520     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19521
19522 commit ef0255fc75f28655f9681422079287d68a14dbaa
19523 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19524 Date:   Sun Aug 31 04:24:51 2008 +0200
19525
19526     update linux/list
19527
19528     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19529
19530 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
19531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19532 Date:   Sun Aug 31 00:39:48 2008 +0200
19533
19534     smdk6400: add gitignore
19535
19536     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19537
19538 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
19539 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19540 Date:   Sun Aug 31 00:39:48 2008 +0200
19541
19542     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
19543
19544     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19545
19546 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
19547 Author: Guennadi Liakhovetski <lg@denx.de>
19548 Date:   Sun Aug 31 00:39:47 2008 +0200
19549
19550     smdk6400: remove redundant bootargs definition
19551
19552     Double bootargs setting leads to a duplicated environmant entry.
19553
19554     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19555
19556 commit 11edcfe260f20dcea79284a3e95270989d433854
19557 Author: Guennadi Liakhovetski <lg@denx.de>
19558 Date:   Sun Aug 31 00:39:47 2008 +0200
19559
19560     ARM: Add support for S3C6400 based SMDK6400 board
19561
19562     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
19563     driver for it too. The board can also boot from the NOR flash, but due to
19564     hardware limitations it can only address 64KiB on it, which is not enough
19565     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
19566
19567     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19568
19569 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
19570 Author: Guennadi Liakhovetski <lg@denx.de>
19571 Date:   Sun Aug 31 00:39:47 2008 +0200
19572
19573     NAND: add NAND driver for S3C64XX
19574
19575     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
19576
19577     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19578
19579 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
19580 Author: Guennadi Liakhovetski <lg@denx.de>
19581 Date:   Sun Aug 31 00:39:47 2008 +0200
19582
19583     S3C64XX: remove broken HWFLOW support from the serial driver
19584
19585     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
19586     broken and currently unused. Remove it.
19587
19588     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19589
19590 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
19591 Author: Guennadi Liakhovetski <lg@denx.de>
19592 Date:   Sun Aug 31 00:39:47 2008 +0200
19593
19594     serial: add S3C64XX serial driver
19595
19596     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
19597
19598     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19599
19600 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
19601 Author: Guennadi Liakhovetski <lg@denx.de>
19602 Date:   Sun Aug 31 00:39:46 2008 +0200
19603
19604     USB: Add support for OHCI controller on S3C6400
19605
19606     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
19607     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
19608     it should work too and we could still profit from instruction cache.
19609
19610     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19611
19612 commit 9b07773f8883665b002500c190507e9fd99b7181
19613 Author: Guennadi Liakhovetski <lg@denx.de>
19614 Date:   Sun Aug 31 00:39:46 2008 +0200
19615
19616     ARM: Add arm1176 core with S3C6400 SoC
19617
19618     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
19619
19620     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19621
19622 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
19623 Author: Sandeep Paulraj <s-paulraj@ti.com>
19624 Date:   Sun Aug 31 00:39:46 2008 +0200
19625
19626     ARM DaVinci: Changing function names for EMAC driver
19627
19628     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
19629     By replacing all the function names that start with dm644x_* to davinci_*
19630     we make these function more portable. I have tested this change on my EVM.
19631     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
19632     be sending patches that add DaVinci DM6467 support to the list soon.
19633
19634     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
19635
19636 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
19637 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
19638 Date:   Sat Aug 30 23:21:30 2008 +0200
19639
19640     Integrator[AP/CP] - Remove unused file memsetup.S
19641
19642     - memsetup.s is changed/merged to lowlevel_init.S
19643       memsetup.S has a global label memsetup that just returns back to caller
19644     - memsetup global label is changed/merged to lowlevel_init
19645       This label is not called from anywhere.
19646
19647     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
19648
19649 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
19650 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19651 Date:   Wed Aug 27 21:35:52 2008 +0200
19652
19653     ARM DaVinci: Standardize names of directories/files
19654
19655     ARM DaVinci: Standardize names of directories/files.
19656
19657     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19658     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19659
19660 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
19661 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19662 Date:   Fri Jul 11 15:10:13 2008 -0400
19663
19664     ARM DaVinci: Move common functions to board/davinci/common
19665
19666     ARM DaVinci: Move common functions to board/davinci/common.
19667
19668     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19669
19670 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
19671 Author: Stefan Roese <sr@denx.de>
19672 Date:   Fri Aug 29 11:56:49 2008 +0200
19673
19674     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
19675
19676     This function is needed for the new NAND infrastructure. We only need
19677     a dummy implementation though for the NDFC.
19678
19679     Signed-off-by: Stefan Roese <sr@denx.de>
19680
19681 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
19682 Author: Stefan Roese <sr@denx.de>
19683 Date:   Fri Aug 29 12:06:27 2008 +0200
19684
19685     ppc4xx: Increase image size for NAND boot target
19686
19687     This is needed since now with HUSH enabled (amcc-common.h) the image
19688     read from NAND exceeds the previous limit.
19689
19690     Signed-off-by: Stefan Roese <sr@denx.de>
19691
19692 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
19693 Author: Ben Warren <biggerbadderben@gmail.com>
19694 Date:   Thu Aug 28 23:58:30 2008 -0700
19695
19696     Move MPC512x_FEC driver to drivers/net
19697
19698     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19699
19700 commit 80b00af01b3c9154774de2936f05a051e92f6a03
19701 Author: Ben Warren <biggerbadderben@gmail.com>
19702 Date:   Thu Aug 28 23:58:29 2008 -0700
19703
19704     Move MPC5xxx_FEC driver to drivers/net
19705
19706     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19707
19708 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
19709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19710 Date:   Fri Aug 29 21:53:57 2008 +0200
19711
19712     cmd_terminal: remove no need ifdef
19713
19714     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19715
19716 commit 578118bdf122877ae769776be002255be447b4fa
19717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19718 Date:   Fri Aug 29 21:53:57 2008 +0200
19719
19720     common/Makefile: order by functionality
19721
19722     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19723
19724 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
19725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19726 Date:   Fri Aug 29 21:53:56 2008 +0200
19727
19728     miiphyutil: Move conditional compilation to Makefile
19729
19730     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19731
19732 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
19733 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19734 Date:   Fri Aug 29 21:53:37 2008 +0200
19735
19736     autoscript: Move conditional compilation to Makefile
19737
19738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19739
19740 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
19741 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19742 Date:   Fri Aug 29 01:18:11 2008 +0200
19743
19744     crc16: move to lib_generic
19745
19746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19747
19748 commit 55195773eacefb22dd483a3c560ea30a14263ce1
19749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19750 Date:   Fri Aug 29 01:18:01 2008 +0200
19751
19752     miiphybb: move to drivers/net/phy
19753
19754     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19755
19756 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
19757 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19758 Date:   Thu Aug 28 12:31:51 2008 +0200
19759
19760     soft_spi: move to drivers/spi
19761
19762     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19763
19764 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
19765 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19766 Date:   Thu Aug 28 12:31:51 2008 +0200
19767
19768     soft_i2c: move to drivers/i2c
19769
19770     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19771
19772 commit 717a222229fdb77703e9174d0eb08a4b41febf49
19773 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19774 Date:   Thu Aug 28 12:31:48 2008 +0200
19775
19776     gunzip: move to lib_generic
19777
19778     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19779
19780 commit 52aef8f9ba28b747973bf76741c23db658d5773c
19781 Author: Wolfgang Ocker <weo@reccoware.de>
19782 Date:   Tue Aug 26 19:55:23 2008 +0200
19783
19784     ppc4xx: NAND configuration
19785
19786     Made NAND bank configuration setting a config variable.
19787
19788     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
19789     Signed-off-by: Stefan Roese <sr@denx.de>
19790
19791 commit 5bc542a593abc9e974fbd34704af85c37c366c60
19792 Author: Victor Gallardo <vgallardo@amcc.com>
19793 Date:   Thu Aug 28 16:03:28 2008 -0700
19794
19795     ppc4xx: fix UIC external_interrupt hang on UIC0
19796
19797     This patch fixes a UIC external_interrupt hang if critical or non-critical
19798     interrupt is set at the same time as a normal interrupt is set on UIC0.
19799
19800     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
19801     Signed-off-by: Stefan Roese <sr@denx.de>
19802
19803 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
19804 Author: Prodyut  Hazarika <phazarika@amcc.com>
19805 Date:   Wed Aug 27 16:39:00 2008 -0700
19806
19807     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
19808
19809     Removed Magic numbers from Initialization preload registers
19810     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
19811     About 5-7% improvement seen for LMBench memtests
19812
19813     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
19814     Signed-off-by: Stefan Roese <sr@denx.de>
19815
19816 commit 8a490422bed685c9491274ec997f62061d88620b
19817 Author: John Rigby <jrigby@freescale.com>
19818 Date:   Thu Aug 28 13:17:07 2008 -0600
19819
19820     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
19821
19822     MPC5121 rev 2 silicon has a new register for controlling how long
19823     CS is asserted after deassertion of ALE in multiplexed mode.
19824
19825     The default is to assert CS together with ALE.  The alternative
19826     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
19827
19828     The default is wrong for the NOR flash and CPLD on the ADS5121.
19829
19830     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
19831     it does so conditionally based on silicon rev 2.0 or greater.
19832
19833     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
19834     Signed-off-by: John Rigby <jrigby@freescale.com>
19835
19836 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
19837 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19838 Date:   Tue Aug 19 00:56:46 2008 +0600
19839
19840     Add I2C frequency dividers for ColdFire
19841
19842     The existing I2C freqency dividers for FDR does not apply
19843     to ColdFire platforms; thus, a seperate table is added
19844     based on MCF5xxx Reference Manual
19845
19846     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
19847     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19848     Acked-by: Tabi Timur <timur@freescale.com>
19849
19850 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
19851 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19852 Date:   Tue Aug 19 03:01:19 2008 +0600
19853
19854     ColdFire: I2C fix for multiple platforms
19855
19856     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19857
19858 commit d53cf6a9c7423cba668b867978648645f71c3090
19859 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19860 Date:   Tue Aug 19 00:37:13 2008 +0600
19861
19862     ColdFire: Add CONFIG_MII_INIT for M5272C3
19863
19864     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19865
19866 commit f78ced3028d4130b24a318943a70cf5584ab16f4
19867 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19868 Date:   Tue Aug 19 00:26:25 2008 +0600
19869
19870     ColdFire: Multiple fixes for MCF5445x platforms
19871
19872     Add FEC pin set and mii reset in __mii_init(). Change
19873     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
19874     change cfi_offset to 0, and change CFG_FLASH_CFI to
19875     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
19876     M54455EVB env settings in configuration file.
19877
19878     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19879
19880 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
19881 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19882 Date:   Fri Aug 15 18:24:25 2008 +0000
19883
19884     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
19885
19886     The user manuals recommend 7.
19887
19888     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
19889     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19890
19891 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
19892 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19893 Date:   Fri Aug 15 16:50:07 2008 +0000
19894
19895     ColdFire: Raise uart baudrate to 115200 bps
19896
19897     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
19898     uart baudrate increase from 19200 to 115200 bps
19899
19900     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19901
19902 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
19903 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19904 Date:   Wed Aug 13 12:07:03 2008 +0000
19905
19906     ColdFire: Fix board.c warning message
19907
19908     Implicit declaration of nand_init() warning message
19909
19910     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19911
19912 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
19913 Author: Kumar Gala <galak@kernel.crashing.org>
19914 Date:   Wed Aug 27 01:10:34 2008 -0500
19915
19916     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
19917
19918     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19919
19920 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
19921 Author: Heiko Schocher <hs@denx.de>
19922 Date:   Thu Aug 21 20:44:49 2008 +0200
19923
19924     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
19925
19926     Signed-off-by: Heiko Schocher <hs@denx.de>
19927
19928 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
19929 Author: Kumar Gala <galak@kernel.crashing.org>
19930 Date:   Tue Aug 19 14:46:36 2008 -0500
19931
19932     mpc85xx: remove redudant code with lib_ppc/interrupts.c
19933
19934     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
19935     not show how that happened, but there is no good reason for it.
19936
19937     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
19938     they exist.
19939
19940     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19941
19942 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
19943 Author: Kumar Gala <galak@kernel.crashing.org>
19944 Date:   Fri Jul 25 13:31:05 2008 -0500
19945
19946     mpc85xx: Add support for the MPC8536DS reference board
19947
19948     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19949     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
19950     Signed-off-by: Dejan Minic <minic@freescale.com>
19951     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
19952     Signed-off-by: Dave Liu <daveliu@freescale.com>
19953     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19954
19955 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
19956 Author: Kumar Gala <galak@kernel.crashing.org>
19957 Date:   Tue Aug 12 11:14:19 2008 -0500
19958
19959     mpc85xx: Add support for the MPC8536
19960
19961     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
19962     also have SERDES init code for the 8536.
19963
19964     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19965     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
19966     Signed-off-by: Dejan Minic <minic@freescale.com>
19967     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
19968     Signed-off-by: Dave Liu <daveliu@freescale.com>
19969
19970 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
19971 Author: Kumar Gala <galak@kernel.crashing.org>
19972 Date:   Tue Aug 12 11:13:08 2008 -0500
19973
19974     mpc85xx: Add support for the MPC8572DS reference board
19975
19976     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19977
19978 commit 457caecdbca3df21a93abff19eab12dbc61b7897
19979 Author: Kumar Gala <galak@kernel.crashing.org>
19980 Date:   Wed Aug 27 01:05:35 2008 -0500
19981
19982     FSL DDR: Remove old SPD support from cpu/mpc85xx
19983
19984     All 85xx boards have been converted to the new code so we can
19985     remove the old SPD DDR setup code.
19986
19987     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19988
19989 commit 0e7927db138976469e7257e29c1338050a50fcd9
19990 Author: Kumar Gala <galak@kernel.crashing.org>
19991 Date:   Wed Aug 27 01:04:07 2008 -0500
19992
19993     FSL DDR: Convert STXSSA to new DDR code.
19994
19995     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19996
19997 commit c360d9b970fbb9c13744c355879671165bbb9b9e
19998 Author: Kumar Gala <galak@kernel.crashing.org>
19999 Date:   Wed Aug 27 01:03:42 2008 -0500
20000
20001     FSL DDR: Convert STXGP3 to new DDR code.
20002
20003     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20004
20005 commit 8e55313b7ae12352a343f9b9962e662dbd897187
20006 Author: Kumar Gala <galak@kernel.crashing.org>
20007 Date:   Tue Aug 26 23:52:58 2008 -0500
20008
20009     FSL DDR: Convert SBC8560 to new DDR code.
20010
20011     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20012
20013 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
20014 Author: Kumar Gala <galak@kernel.crashing.org>
20015 Date:   Tue Aug 26 23:52:32 2008 -0500
20016
20017     FSL DDR: Convert MPC8540EVAL to new DDR code.
20018
20019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20020
20021 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
20022 Author: Kumar Gala <galak@kernel.crashing.org>
20023 Date:   Tue Aug 26 23:52:07 2008 -0500
20024
20025     FSL DDR: Convert PM856 to new DDR code.
20026
20027     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20028
20029 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
20030 Author: Kumar Gala <galak@kernel.crashing.org>
20031 Date:   Tue Aug 26 23:51:49 2008 -0500
20032
20033     FSL DDR: Convert PM854 to new DDR code.
20034
20035     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20036
20037 commit 33b9079ba20926f14238fff863b68a98e938948e
20038 Author: Kumar Gala <galak@kernel.crashing.org>
20039 Date:   Tue Aug 26 23:15:28 2008 -0500
20040
20041     FSL DDR: Convert sbc8548 to new DDR code.
20042
20043     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20044
20045 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
20046 Author: Kumar Gala <galak@kernel.crashing.org>
20047 Date:   Tue Aug 26 23:14:14 2008 -0500
20048
20049     FSL DDR: Convert atum8548 to new DDR code.
20050
20051     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20052
20053 commit be0bd8234b9777ecd63c4c686f72af070d886517
20054 Author: Kumar Gala <galak@kernel.crashing.org>
20055 Date:   Tue Aug 26 22:56:56 2008 -0500
20056
20057     FSL DDR: Convert socrates to new DDR code.
20058
20059     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20060
20061 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
20062 Author: Kumar Gala <galak@kernel.crashing.org>
20063 Date:   Tue Aug 26 08:02:30 2008 -0500
20064
20065     FSL DDR: Convert MPC8544DS to new DDR code.
20066
20067     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20068
20069 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
20070 Author: Jon Loeliger <jdl@freescale.com>
20071 Date:   Tue Mar 18 13:51:05 2008 -0500
20072
20073     FSL DDR: Convert MPC8568MDS to new DDR code.
20074
20075     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20076     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20077
20078 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
20079 Author: Jon Loeliger <jdl@freescale.com>
20080 Date:   Tue Mar 18 13:51:06 2008 -0500
20081
20082     FSL DDR: Convert MPC8548CDS to new DDR code.
20083
20084     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20085     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20086
20087 commit aa11d85cf318b961e029fe50d68ca47d004bce93
20088 Author: Jon Loeliger <jdl@freescale.com>
20089 Date:   Mon Mar 17 15:48:18 2008 -0500
20090
20091     FSL DDR: Convert MPC8541CDS to new DDR code.
20092
20093     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20094     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20095
20096 commit 2b40edb10d81da7bba724edbccd7f53777112579
20097 Author: Jon Loeliger <jdl@freescale.com>
20098 Date:   Tue Mar 18 11:12:42 2008 -0500
20099
20100     FSL DDR: Convert MPC8555ADS to new DDR code.
20101
20102     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20103     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20104
20105 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
20106 Author: Jon Loeliger <jdl@freescale.com>
20107 Date:   Tue Mar 18 11:12:44 2008 -0500
20108
20109     FSL DDR: Convert MPC8560ADS to new DDR code.
20110
20111     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20112     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20113
20114 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
20115 Author: Kumar Gala <galak@kernel.crashing.org>
20116 Date:   Fri Jun 6 13:12:18 2008 -0500
20117
20118     FSL DDR: Convert MPC8540ADS to new DDR code.
20119
20120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20121
20122 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
20123 Author: Kumar Gala <galak@kernel.crashing.org>
20124 Date:   Tue Aug 26 21:34:55 2008 -0500
20125
20126     FSL DDR: Add 85xx specific register setting
20127
20128     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20129
20130 commit 6fb1b7346849ccd0c20306143e334f5b76143070
20131 Author: Kumar Gala <galak@kernel.crashing.org>
20132 Date:   Mon Jun 9 11:07:46 2008 -0500
20133
20134     FSL DDR: Add e500 TLB helper for DDR code
20135
20136     Provide a helper function that board code can call to map TLBs when
20137     setting up DDR.
20138
20139     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20140
20141 commit d26b739afe5a6760bd345743188759cd9d0f3b47
20142 Author: Andrew Dyer <adyer@righthandtech.com>
20143 Date:   Tue Aug 26 17:03:38 2008 -0500
20144
20145     dm9000 remove dead external phy support, gpio fix
20146
20147     dm9000 has code to detect and initialize external phy parts, but later
20148     on in the code the part is forced to use the internal phy
20149     unconditionally.  Remove the unused/untested code.
20150
20151     change the GPIO initialization so that only the GPIO used as an
20152     internal phy reset (hardwired in the chip) is set as an output.  The
20153     remaining GPIO need to be handled by board specific code to prevent
20154     possible drive conflicts.  Set as inputs for safety.
20155
20156     replace a few magic numbers with defines
20157
20158     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
20159     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20160
20161 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
20162 Author: Peter Tyser <ptyser@xes-inc.com>
20163 Date:   Tue Aug 26 11:17:48 2008 -0500
20164
20165     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
20166
20167     cmd_net.c command descriptions were updated to describe the optional
20168     hostIPaddr argument.  The dhcp command help message was also updated
20169     to more closely reflect the other commands in cmd_net.c
20170
20171     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20172     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20173
20174 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
20175 Author: Remy Bohmer <linux@bohmer.net>
20176 Date:   Wed Aug 20 11:30:28 2008 +0200
20177
20178     Fix bogus error message in the DHCP handler
20179
20180     The DHCP handler has 1 state that is not listed in this case, causing a
20181     failure message when there is actually no failure.
20182
20183     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20184     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20185
20186 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
20187 Author: Remy Bohmer <linux@bohmer.net>
20188 Date:   Wed Aug 20 11:30:27 2008 +0200
20189
20190     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
20191
20192     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
20193     missing extern inside the net/bootp.h header
20194
20195     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20196     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20197
20198 commit 1803f7f91ff35ca402259065df7557107dcf28a2
20199 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20200 Date:   Tue Aug 19 21:26:32 2008 +0000
20201
20202     ColdFire: Add FEC Buffer descriptors in SRAM
20203
20204     Add FEC Buffer descriptors and data buffer in SRAM for
20205     faster execution and access.
20206
20207     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20208     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20209
20210 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
20211 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20212 Date:   Thu Aug 21 23:55:11 2008 +0000
20213
20214     Fix ColdFire FEC warning messages
20215
20216     Types mismatch and implicit declaration of icache_invalid()
20217     warning messages
20218
20219     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
20220     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20221
20222 commit 6a002171098e968bd5b362347d2831224fab6048
20223 Author: Ben Warren <biggerbadderben@gmail.com>
20224 Date:   Sat Jul 12 00:17:50 2008 -0700
20225
20226     Moved initialization of SKGE Ethernet driver to board code.
20227
20228     The only board using this driver is the SL8245 board.
20229     Removed initialization for the driver from net/eth.c
20230
20231     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20232
20233 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
20234 Author: Ben Warren <biggerbadderben@gmail.com>
20235 Date:   Sat Jul 12 00:08:45 2008 -0700
20236
20237     Moved conditional compilation to Makefile for SK98 Ethernet driver
20238
20239     Brute-force removal of #ifdefs.  Didn't touch the code.
20240     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20241
20242 commit 65d3d99c28dc363d15eaee78225ff643df499b97
20243 Author: Ben Warren <biggerbadderben@gmail.com>
20244 Date:   Fri Jul 11 23:42:19 2008 -0700
20245
20246     Moved initialization of ULI526X Ethernet driver to board code.
20247
20248     The only board using this driver is the Freescale MPC8610HPCD board.
20249     Removed initialization for the driver from net/eth.c
20250
20251     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20252
20253 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
20254 Author: Ben Warren <biggerbadderben@gmail.com>
20255 Date:   Fri Jul 11 23:15:28 2008 -0700
20256
20257     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
20258
20259     Added board_eth_init() function to bf537-stamp board.
20260     Removed initialization for the Blackin EMAC driver from net/eth.c
20261
20262     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20263
20264 commit fc363ce35408f348cacced68505f3747a53e3d7c
20265 Author: Ben Warren <biggerbadderben@gmail.com>
20266 Date:   Wed Jul 9 01:04:19 2008 -0700
20267
20268     Moved initialization of GRETH Ethernet driver to CPU directory
20269
20270     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
20271     removed code from net/eth.c
20272
20273     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20274
20275 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
20276 Author: Ben Warren <biggerbadderben@gmail.com>
20277 Date:   Tue Aug 26 22:16:25 2008 -0700
20278
20279     Moved initialization of MCFFEC Ethernet driver to CPU directory
20280
20281     Added a cpu_eth_init() function to coldfire CPU directories and
20282     removed code from net/eth.c
20283
20284     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20285
20286 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
20287 Author: Ben Warren <biggerbadderben@gmail.com>
20288 Date:   Tue Aug 26 22:12:36 2008 -0700
20289
20290     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
20291
20292     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
20293     removed code from net/eth.c
20294
20295     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20296
20297 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
20298 Author: Kumar Gala <galak@kernel.crashing.org>
20299 Date:   Tue Aug 26 15:01:38 2008 -0500
20300
20301     FSL DDR: Remove old SPD support from cpu/mpc86xx
20302
20303     All 86xx boards have been converted to the new code so we can
20304     remove the old SPD DDR setup code.
20305
20306     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20307
20308 commit 9bd4e5911b750837515466bc7449087698b88e0e
20309 Author: Kumar Gala <galak@kernel.crashing.org>
20310 Date:   Tue Aug 26 15:01:37 2008 -0500
20311
20312     FSL DDR: Convert SBC8641D to new DDR code.
20313
20314     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20315
20316 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
20317 Author: Jon Loeliger <jdl@freescale.com>
20318 Date:   Tue Aug 26 15:01:36 2008 -0500
20319
20320     FSL DDR: Convert MPC8610HPCD to new DDR code.
20321
20322     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20323     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20324
20325 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
20326 Author: Kumar Gala <galak@kernel.crashing.org>
20327 Date:   Tue Aug 26 15:01:35 2008 -0500
20328
20329     FSL DDR: Convert MPC8641HPCN to new DDR code.
20330
20331     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20332     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20333
20334 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
20335 Author: Kumar Gala <galak@kernel.crashing.org>
20336 Date:   Tue Aug 26 15:01:34 2008 -0500
20337
20338     FSL DDR: Add 86xx specific register setting
20339
20340     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20341
20342 commit 233fdd502a6c227f476212b3097653ad48d7e254
20343 Author: Kumar Gala <galak@kernel.crashing.org>
20344 Date:   Tue Aug 26 15:01:32 2008 -0500
20345
20346     FSL DDR: Add DDR2 DIMM paramter support
20347
20348     Compute DIMM parameters based upon the SPD information.
20349
20350     Signed-off-by: James Yang <James.Yang@freescale.com>
20351     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20352     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20353
20354 commit 05c05a2363a6ac11e0e405926034546ffad71fad
20355 Author: Kumar Gala <galak@kernel.crashing.org>
20356 Date:   Tue Aug 26 15:01:30 2008 -0500
20357
20358     FSL DDR: Add DDR1 DIMM paramter support
20359
20360     Compute DIMM parameters based upon the SPD information in spd.
20361
20362     Signed-off-by: James Yang <James.Yang@freescale.com>
20363     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20365
20366 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
20367 Author: Kumar Gala <galak@kernel.crashing.org>
20368 Date:   Tue Aug 26 15:01:29 2008 -0500
20369
20370     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
20371
20372     The main purpose of this rewrite it to be able to share the same
20373     initialization code on all FSL PowerPC products that have DDR
20374     controllers.  (83xx, 85xx, 86xx).
20375
20376     The code is broken up into the following steps:
20377         GET_SPD
20378         COMPUTE_DIMM_PARMS
20379         COMPUTE_COMMON_PARMS
20380         GATHER_OPTS
20381         ASSIGN_ADDRESSES
20382         COMPUTE_REGS
20383         PROGRAM_REGS
20384
20385     This allows us to share more code an easily allow for board specific code
20386     overrides.
20387
20388     Additionally this code base adds support for >4G of DDR and provides a
20389     foundation for supporting interleaving on processors with more than one
20390     controller.
20391
20392     Signed-off-by: James Yang <James.Yang@freescale.com>
20393     Signed-off-by: Jon Loeliger <jdl@freescale.com>
20394     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20395     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
20396     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20397
20398 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
20399 Author: Kumar Gala <galak@kernel.crashing.org>
20400 Date:   Tue Aug 26 15:01:28 2008 -0500
20401
20402     FSL DDR: Provide a generic set_ddr_laws()
20403
20404     Provide a helper function that will setup the last available
20405     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
20406
20407     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20408
20409 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
20410 Author: James Yang <James.Yang@freescale.com>
20411 Date:   Tue Aug 26 15:01:27 2008 -0500
20412
20413     Add proper SPD definitions for DDR1/2/3
20414
20415     Also adds helper functions for DDR1/2 to verify the checksum.
20416
20417     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20418
20419 commit 285db74716c724ae8a0ff177878fd09a74428c7b
20420 Author: Wolfgang Denk <wd@denx.de>
20421 Date:   Wed Aug 27 01:02:48 2008 +0200
20422
20423     Update CHANGELOG
20424
20425     Signed-off-by: Wolfgang Denk <wd@denx.de>
20426
20427 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
20428 Author: Heiko Schocher <hs@denx.de>
20429 Date:   Tue Aug 19 10:08:49 2008 +0200
20430
20431     Add support for muas3001 board (MPC8270)
20432
20433     Signed-off-by: Heiko Schocher <hs@denx.de>
20434
20435 commit 322098bff32410d2a00031649b47c4ec90a66d9a
20436 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20437 Date:   Tue Aug 19 08:31:18 2008 +0530
20438
20439     common/cmd_load.c cleanup - remove unused variables
20440
20441     - Remove unused global variable os_data_count.
20442     - Remove unused variable z.
20443
20444     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
20445
20446 commit 306620b762a4f9fa6678568ad2e8772dec145208
20447 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20448 Date:   Mon Aug 18 13:35:27 2008 +0200
20449
20450     remove MVS1 board
20451
20452     MVS1 board has reached end-of-life and can be removed completely.
20453
20454     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20455
20456 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
20457 Author: Kumar Gala <galak@kernel.crashing.org>
20458 Date:   Fri Aug 15 08:24:45 2008 -0500
20459
20460     bootm: refactor do_reset and os boot function args
20461
20462     There is no need for each OS specific function to call do_reset() we
20463     can just do it once in bootm. This means its feasible on an error for
20464     the OS boot function to return.
20465
20466     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
20467     functions.  flag isn't currently used but might be in the future so
20468     we left it alone.
20469
20470     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20471
20472 commit 40afac22a9c602e55c501c800f1c064324711b56
20473 Author: Kumar Gala <galak@kernel.crashing.org>
20474 Date:   Fri Aug 15 08:24:44 2008 -0500
20475
20476     fdt: Added resize command
20477
20478     Resize the fdt to size + padding to 4k boundary
20479
20480     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20481
20482 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
20483 Author: Kumar Gala <galak@kernel.crashing.org>
20484 Date:   Fri Aug 15 08:24:43 2008 -0500
20485
20486     fdt: refactor initrd related code
20487
20488     Created a new fdt_initrd() to deal with setting the initrd properties
20489     in the device tree and fixing up the mem reserve.  We can use this
20490     both in the choosen node handling and lets us remove some duplicated
20491     code when we fixup the initrd info in bootm on PPC.
20492
20493     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20494
20495 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
20496 Author: Kumar Gala <galak@kernel.crashing.org>
20497 Date:   Fri Aug 15 08:24:42 2008 -0500
20498
20499     fdt: refactor fdt resize code
20500
20501     Move the fdt resizing code out of ppc specific boot code and into
20502     common fdt support code.
20503
20504     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20505
20506 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
20507 Author: Kumar Gala <galak@kernel.crashing.org>
20508 Date:   Fri Aug 15 08:24:41 2008 -0500
20509
20510     bootm: refactor image detection and os load steps
20511
20512     Created a bootm_start() that handles the parsing and detection of all
20513     the images that will be used by the bootm command (OS, ramdisk, fdt).
20514     As part of this we now tract all the relevant image offsets in the
20515     bootm_headers_t struct. This will allow us to have all the needed
20516     state for future sub-commands and lets us reduce a bit of arch
20517     specific code on SPARC.
20518
20519     Created a bootm_load_os() that deals with decompression and loading
20520     the OS image.
20521
20522     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20523
20524 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
20525 Author: Kumar Gala <galak@kernel.crashing.org>
20526 Date:   Fri Aug 15 08:24:40 2008 -0500
20527
20528     bootm: move lmb into the bootm_headers_t structure
20529
20530     To allow for persistent state between future bootm subcommands we
20531     need the lmb to exist in a global state.
20532     Moving it into the bootm_headers_t allows us to do that.
20533
20534     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20535
20536 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
20537 Author: Kumar Gala <galak@kernel.crashing.org>
20538 Date:   Fri Aug 15 08:24:39 2008 -0500
20539
20540     bootm: Set working fdt address as part of the bootm flow
20541
20542     Set the fdt working address so "fdt FOO" commands can be used as part
20543     of the bootm flow.  Also set an the environment variable "fdtaddr"
20544     with the value.
20545
20546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20547
20548 commit 06a09918f3903450313e2047a9cc258bf5872f46
20549 Author: Kumar Gala <galak@kernel.crashing.org>
20550 Date:   Fri Aug 15 08:24:38 2008 -0500
20551
20552     bootm: refactor fdt locating and relocation code
20553
20554     Move the code that handles finding a device tree blob and relocating
20555     it (if needed) into common code so all arch's have access to it.
20556
20557     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20558
20559 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
20560 Author: Kumar Gala <galak@kernel.crashing.org>
20561 Date:   Fri Aug 15 08:24:37 2008 -0500
20562
20563     bootm: refactor ramdisk locating code
20564
20565     Move determing if we have a ramdisk and where its located into the
20566     common code. Keep track of the ramdisk start and end in the
20567     bootm_headers_t image struct.
20568
20569     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20570
20571 commit c160a9544743e80e8889edb2275538e7764ce334
20572 Author: Kumar Gala <galak@kernel.crashing.org>
20573 Date:   Fri Aug 15 08:24:36 2008 -0500
20574
20575     bootm: refactor entry point code
20576
20577     Move entry point code out of each arch and into common code.
20578     Keep the entry point in the bootm_headers_t images struct.
20579
20580     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20581
20582 commit 20220d22b9f41446288588cd2e457e0077a18bed
20583 Author: Randy Vinson <rvinson@mvista.com>
20584 Date:   Wed Aug 13 11:44:57 2008 -0700
20585
20586     mpc7448hpc2: Fix PCI I/O space mapping.
20587
20588     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
20589     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
20590     space such that 0xFA000000 in the processor's address space maps to 0
20591     on the PCI I/O bus.
20592
20593     Signed-off-by Randy Vinson <rvinson@mvista.com>
20594     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
20595
20596 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
20597 Author: Guennadi Liakhovetski <lg@denx.de>
20598 Date:   Wed Aug 13 18:10:26 2008 +0200
20599
20600     i.MX31: Specify maintainers for i.MX31-based boards
20601
20602     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20603     Signed-off-by: Wolfgang Denk <wd@denx.de>
20604
20605 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
20606 Author: Wolfgang Denk <wd@denx.de>
20607 Date:   Tue Aug 26 15:01:28 2008 +0200
20608
20609     ADS5121: adjust image addresses in RAM and flash
20610
20611     Use the same mapping in flash as used by Linux
20612
20613     Signed-off-by: Wolfgang Denk <wd@denx.de>
20614
20615 commit 19f101412c16edee9fd55db4039e1d68a833b28b
20616 Author: Wolfgang Denk <wd@denx.de>
20617 Date:   Tue Aug 26 13:14:34 2008 +0200
20618
20619     cmd_mem.c: Fix help message alignment
20620
20621     Bug was introced by "Big white-space cleanup" (53677ef1)
20622
20623     Signed-off-by: Wolfgang Denk <wd@denx.de>
20624
20625 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
20626 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20627 Date:   Wed Aug 20 11:11:52 2008 +0200
20628
20629     change mvBL-M7 default env and move to vendor subdir
20630
20631     fix mvBL-M7 config and move to matrix_vision subdir
20632
20633     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20634     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20635
20636 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
20637 Author: Nick Spence <nick.spence@freescale.com>
20638 Date:   Fri Aug 22 23:52:40 2008 -0700
20639
20640     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
20641
20642     This patch adds elements to the 83xx sysconf structure and #define values that are used
20643     by mpc83xx family devices.
20644
20645     Signed-off-by: Nick Spence <nick.spence@freescale.com>
20646     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20647
20648 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
20649 Author: Ira W. Snyder <iws@ovro.caltech.edu>
20650 Date:   Fri Aug 22 11:00:15 2008 -0700
20651
20652     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
20653
20654     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
20655     PCI card rather than a host computer.
20656
20657     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20658     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20659
20660 commit 4ff9aea9d6b5602683a920951ef896996438af62
20661 Author: Ira W. Snyder <iws@ovro.caltech.edu>
20662 Date:   Fri Aug 22 11:00:14 2008 -0700
20663
20664     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
20665
20666     This adds a helper function to unlock the PCI configuration bit, so that
20667     any extra PCI setup (such as outbound windows, etc.) can be done after
20668     using the 83XX_GENERIC_PCI code to set up the PCI bus.
20669
20670     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20671     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20672
20673 commit 162338e1fcde231ca4d562e5ebd7859456731691
20674 Author: Ira W. Snyder <iws@ovro.caltech.edu>
20675 Date:   Fri Aug 22 11:00:13 2008 -0700
20676
20677     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
20678
20679     Change the MPC8349EMDS board to use the generic PCI initialization code
20680     for the mpc83xx cpu.
20681
20682     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20683     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20684
20685 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
20686 Author: Kim Phillips <kim.phillips@freescale.com>
20687 Date:   Mon Aug 25 14:53:09 2008 -0500
20688
20689     fix out of tree building
20690
20691     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20692
20693 commit a49d10cf027d059ee15c262010a05cdaec0961e1
20694 Author: Wolfgang Denk <wd@denx.de>
20695 Date:   Mon Aug 25 23:45:41 2008 +0200
20696
20697     Minor coding style cleanup, updte CHANGELOG
20698
20699     Signed-off-by: Wolfgang Denk <wd@denx.de>
20700
20701 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
20702 Author: Stefan Roese <sr@denx.de>
20703 Date:   Wed Aug 20 20:29:38 2008 +0200
20704
20705     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
20706
20707     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
20708     to combine both config options into one line. This even allows defining
20709     both options and not generating the target object twice.
20710
20711     Signed-off-by: Stefan Roese <sr@denx.de>
20712
20713 commit 079edb913dbae147b50a488cf02e03f473fc5f28
20714 Author: Jens Gehrlein <sew_s@tqs.de>
20715 Date:   Fri Jul 4 16:50:05 2008 +0200
20716
20717     MX31: fix bit masks in function mx31_decode_pll()
20718
20719     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
20720
20721     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
20722
20723 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
20724 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20725 Date:   Mon Aug 25 11:11:34 2008 +0200
20726
20727     Correct ARM Versatile Timer Initialization
20728
20729      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
20730        -- Timer Value Register @ TIMER Base + 4 is Read-only.
20731        -- Prescale Value (Bits 3-2 of TIMER Control register)
20732         can only be one of 00,01,10. 11 is undefined.
20733        -- CFG_HZ for Versatile board is set to
20734         #define CFG_HZ          (1000000 / 256)
20735         So Prescale bits is set to indicate
20736         - 8 Stages of Prescale, Clock divided by 256
20737      - The Timer Control Register has one Undefined/Shouldn't Use Bit
20738        So we should do read/modify/write Operation
20739
20740     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
20741
20742 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
20743 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20744 Date:   Mon Aug 25 11:30:29 2008 +0200
20745
20746     Add ARM AMBA PL031 RTC Support
20747
20748     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
20749
20750 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
20751 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20752 Date:   Tue Aug 19 16:21:03 2008 -0400
20753
20754     ARM DaVinci: Removed redundant NAND initialization code.
20755
20756     ARM DaVinci: Removed redundant NAND initialization code.
20757
20758     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20759
20760 commit b3fb663b20d995ca41327db877ddb168279b3f62
20761 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20762 Date:   Tue Aug 19 16:21:00 2008 -0400
20763
20764     ARM DaVinci: Fix compilation error with new MTD code.
20765
20766     ARM DaVinci: Fix compilation error with new MTD code.
20767
20768     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20769
20770 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
20771 Author: Gerald Van Baren <vanbaren@cideas.com>
20772 Date:   Fri Aug 22 14:37:05 2008 -0400
20773
20774     Add note on dereferencing /aliases pointers
20775
20776     Replace the "must quote special characters" note with a hint on
20777     how to dereference /aliases pointers by omitting the leading "/".
20778     This feature was introduced by Kumar Gala as a libfdt enhancement
20779     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
20780
20781     Example:
20782
20783     => fdt print /aliases
20784     aliases {
20785             ethernet0 = "/qe@e0100000/ucc@2000";
20786             ethernet1 = "/qe@e0100000/ucc@3000";
20787             serial0 = "/soc8360@e0000000/serial@4500";
20788             serial1 = "/soc8360@e0000000/serial@4600";
20789             pci0 = "/pci@e0008500";
20790     };
20791     => fdt print ethernet0
20792     ucc@2000 {
20793             device_type = "network";
20794             compatible = "ucc_geth";
20795             cell-index = <0x1>;
20796             reg = <0x2000 0x200>;
20797             interrupts = <0x20>;
20798             interrupt-parent = <0x2>;
20799             local-mac-address = [00 00 00 00 00 00];
20800             rx-clock-name = "none";
20801             tx-clock-name = "clk9";
20802             phy-handle = <0x3>;
20803             phy-connection-type = "rgmii-id";
20804             pio-handle = <0x4>;
20805     };
20806
20807     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
20808
20809 commit feeca3f578b7f53c032ba203698751c982f8bf5a
20810 Author: Kumar Gala <galak@kernel.crashing.org>
20811 Date:   Thu Aug 14 08:28:19 2008 -0500
20812
20813     libfdt: Add support for using aliases in fdt_path_offset()
20814
20815     If the path doesn't start with '/' check to see if it matches some alias
20816     under "/aliases" and substitute the matching alias value in the path
20817     and retry the lookup.
20818
20819     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20820     Acked-by: David Gibson <david@gibson.dropbear.id.au>
20821     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
20822
20823 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
20824 Author: David Gibson <david@gibson.dropbear.id.au>
20825 Date:   Wed Aug 6 14:50:49 2008 +1000
20826
20827     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
20828
20829     As well as fdt_subnode_offset(), libfdt includes an
20830     fdt_subnode_offset_namelen() function that takes the subnode name to
20831     look up not as a NUL-terminated string, but as a string with an
20832     explicit length.  This can be useful when the caller has the name as
20833     part of a longer string, such as a full path.
20834
20835     However, we don't have corresponding 'namelen' versions for
20836     fdt_get_property() and fdt_getprop().  There are less obvious use
20837     cases for these variants on property names, but there are
20838     circumstances where they can be useful e.g. looking up property names
20839     which need to be parsed from a longer string buffer such as user input
20840     or a configuration file, or looking up an alias in a path with
20841     IEEE1275 style aliases.
20842
20843     So, since it's very easy to implement such variants, this patch does
20844     so.  The original NUL-terminated variants are, of course, implemented
20845     in terms of the namelen versions.
20846
20847     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20848
20849 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
20850 Author: David Gibson <david@gibson.dropbear.id.au>
20851 Date:   Tue Jul 29 14:51:22 2008 +1000
20852
20853     libfdt: Forgot one function when cleaning the namespace
20854
20855     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
20856     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
20857     chance of collisions with things from whatever package libfdt is
20858     embedded in, pulled into the libfdt build via that environment's
20859     libfdt_env.h.
20860
20861     Except... I missed one.  This patch applies the same treatment to
20862     _stringlist_contains().  While we're at it, also make it static since
20863     it's only used in the same file.
20864
20865     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20866
20867 commit 46390da15411351fc3b498bd8c1615f78fe80df0
20868 Author: Wolfram Sang <w.sang@pengutronix.de>
20869 Date:   Wed Jul 9 11:22:44 2008 +0200
20870
20871     libfdt: Improve documentation in libfdt.h
20872
20873     Fix a few typos and mistakes.
20874
20875     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
20876     Acked-by: David Gibson <david@gibson.dropbear.id.au>
20877
20878 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
20879 Author: David Gibson <david@gibson.dropbear.id.au>
20880 Date:   Wed Jul 9 14:10:24 2008 +1000
20881
20882     libfdt: Increase namespace-pollution paranoia
20883
20884     libfdt is supposed to easy to embed in projects all and sundry.
20885     Often, it won't be practical to separate the embedded libfdt's
20886     namespace from that of the surrounding project.  Which means there can
20887     be namespace conflicts between even libfdt's internal/static functions
20888     and functions or macros coming from the surrounding project's headers
20889     via libfdt_env.h.
20890
20891     This patch, therefore, renames a bunch of libfdt internal functions
20892     and macros and makes a few other chances to reduce the chances of
20893     namespace collisions with embedding projects.  Specifically:
20894         - Internal functions (even static ones) are now named _fdt_*()
20895
20896         - The type and (static) global for the error table in
20897               fdt_strerror() gain an fdt_ prefix
20898
20899         - The unused macro PALIGN is removed
20900
20901         - The memeq and streq macros are removed and open-coded in the
20902               users (they were only used once each)
20903
20904         - Other macros gain an FDT_ prefix
20905
20906         - To save some of the bulk from the previous change, an
20907               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
20908               FDT_ALIGN(x, FDT_TAGSIZE)
20909
20910     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20911
20912 commit c66830263af19831f2b7db307f79d1943febf7f9
20913 Author: David Gibson <david@gibson.dropbear.id.au>
20914 Date:   Mon Jul 7 10:14:15 2008 +1000
20915
20916     dtc: Enable and fix -Wcast-qual warnings
20917
20918     Enabling -Wcast-qual warnings in dtc shows up a number of places where
20919     we are incorrectly discarding a const qualification.  There are also
20920     some places where we are intentionally discarding the 'const', and we
20921     need an ugly cast through uintptr_t to suppress the warning.  However,
20922     most of these are pretty well isolated with the *_w() functions.  So
20923     in the interests of maximum safety with const qualifications, this
20924     patch enables the warnings and fixes the existing complaints.
20925
20926     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20927     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
20928
20929 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
20930 Author: David Gibson <david@gibson.dropbear.id.au>
20931 Date:   Mon Jul 7 10:10:48 2008 +1000
20932
20933     dtc: Enable and fix -Wpointer-arith warnings
20934
20935     This patch turns on the -Wpointer-arith option in the dtc Makefile,
20936     and fixes the resulting warnings due to using (void *) in pointer
20937     arithmetic.  While convenient, pointer arithmetic on void * is not
20938     portable, so it's better that we avoid it, particularly in libfdt.
20939
20940     Also add necessary definition of uintptr_t needed by David Gibson's
20941     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
20942     comes from stdint.h, which u-boot doesn't have). -- gvb
20943
20944     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20945     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
20946
20947 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
20948 Author: Tirumala R Marri <tmarri@amcc.com>
20949 Date:   Thu Aug 21 21:54:53 2008 -0700
20950
20951     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
20952
20953     During recent PCI-E tests it has been found that current
20954     driverl level and de-emphasis values are not set correctly.
20955     After sweeping throgh all de-ephasis values, it was found that
20956     0x130 is a right value. Where 0x13 is driver level and 0 is
20957     de-emphasis.
20958
20959     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
20960     Signed-off-by: Stefan Roese <sr@denx.de>
20961
20962 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
20963 Author: Remy Bohmer <linux@bohmer.net>
20964 Date:   Wed Aug 20 20:46:56 2008 +0200
20965
20966     Make the YAFFS filesystem work
20967
20968     Recently the YAFFS filesystem support has been added to U-boot.
20969     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
20970
20971     ymount will generate an exception (when dereferencing mtd->readoob()), because
20972     the genericDevice is a null pointer. Further, a lot of logging is produced
20973     while using YAFFS fs, so logging should also be disabled.
20974     Both issues are solved by this patch.
20975
20976     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
20977     in U-boot, as well as in Linux.
20978
20979     Tested on a Atmel AT91SAM9261EK board.
20980
20981     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20982     Acked-by: William Juul <william.juul@tandberg.com>
20983     Signed-off-by: Scott Wood <scottwood@freescale.com>
20984
20985 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
20986 Author: Kyungmin Park <kmpark@infradead.org>
20987 Date:   Tue Aug 19 08:42:53 2008 +0900
20988
20989     Fix OneNAND read_oob/write_oob functions compatability
20990
20991     Also sync with kernel OneNAND codes
20992
20993     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20994     Signed-off-by: Scott Wood <scottwood@freescale.com>
20995
20996 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
20997 Author: Scott Wood <scottwood@freescale.com>
20998 Date:   Mon Aug 18 17:11:20 2008 -0500
20999
21000     NAND: Remove delay from nand_boot_fsl_elbc.c.
21001
21002     It was for debugging purposes, and shouldn't have been left in.
21003
21004     Signed-off-by: Scott Wood <scottwood@freescale.com>
21005
21006 commit f556483734126793522fb7a8cf36af90da78f084
21007 Author: Stefan Roese <sr@denx.de>
21008 Date:   Thu Aug 21 11:05:03 2008 +0200
21009
21010     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
21011
21012     This patch fixes some minor issues introduced with the patch:
21013     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
21014
21015     - Rework memory-queue and PLB arbiter optimization code, that the
21016       local variable is not needed anymore. This removes one #ifdef.
21017     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
21018       of XXX+ 0x01). This was not introduced by Prodyut, just a
21019       copy-paste problem.
21020
21021     Signed-off-by: Stefan Roese <sr@denx.de>
21022
21023 commit 079589bcfb24ba11068460276a3cc9549ab5346f
21024 Author: Prodyut  Hazarika <phazarika@amcc.com>
21025 Date:   Wed Aug 20 09:38:51 2008 -0700
21026
21027     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
21028         PPC405EX and PPC460EX/GT/SX
21029
21030     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
21031       processors
21032     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
21033       across processors (405 and 440/460)
21034     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
21035       processors
21036     - Add register bit definitions for Memory Queue Configuration registers
21037
21038     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
21039     Signed-off-by: Stefan Roese <sr@denx.de>
21040
21041 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
21042 Author: Kumar Gala <galak@kernel.crashing.org>
21043 Date:   Tue Aug 19 15:41:18 2008 -0500
21044
21045     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
21046
21047     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
21048     instead of bd->bi_enetaddr, bi_enet1addr, etc.
21049
21050     This makes the code a bit more flexible to the number of ethernet
21051     interfaces.
21052
21053     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21054
21055 commit 4cacf7c64609839f809e2f9c45873f1d65861703
21056 Author: Stefan Roese <sr@denx.de>
21057 Date:   Tue Aug 19 14:57:55 2008 +0200
21058
21059     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
21060
21061     This patch changes the debug_printf() marco for U-Boot in hush.c and
21062     moves the definition of DEBUG_SHELL to a place that is actually compiled
21063     under U-Boot.
21064
21065     Signed-off-by: Stefan Roese <sr@denx.de>
21066
21067 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
21068 Author: Heiko Schocher <hs@denx.de>
21069 Date:   Tue Aug 19 09:57:41 2008 +0200
21070
21071     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
21072
21073     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
21074     missed a few boards:
21075         include/configs/M5253DEMO.h
21076         include/configs/ml507.h
21077         include/configs/redwood.h
21078
21079     This patch fixes this.
21080
21081     Signed-off-by: Heiko Schocher <hs@denx.de>
21082
21083 commit 0768b7a872964085eece8d5e9fec9175e9deb161
21084 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21085 Date:   Mon Aug 18 13:41:27 2008 +0200
21086
21087     Consolidate strmhz() implementation
21088
21089     ARM, i386, m68k and ppc all have identical implementations of strmhz().
21090     Other architectures don't provide this function at all.
21091
21092     This patch moves strmhz() into lib_generic, reducing code duplication
21093     and providing a more unified API across architectures.
21094
21095     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21096
21097 commit a928d0df211f1d829308d335d19be3ca42558dfc
21098 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21099 Date:   Mon Aug 18 12:02:51 2008 +0200
21100
21101     fix mvbc_p board build warnings
21102
21103     fix build warnings @ mvBC-P board by using correct types, i.e. change
21104     out_be32 to out_be16 and out_8 accordingly.
21105
21106     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21107
21108 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
21109 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21110 Date:   Sat Aug 16 18:54:27 2008 +0200
21111
21112     Makefile: fix posix support on find
21113
21114     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21115
21116 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
21117 Author: Axel Beierlein <belatronix@web.de>
21118 Date:   Sat Aug 16 00:30:48 2008 +0200
21119
21120     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
21121
21122     Tested with TQM5200S on STK52XX.200 Board
21123
21124     Signed-off-by: Axel Beierlein <belatronix@web.de>
21125
21126 commit 0800707b6d5041a840a65d556032c15c584b55f8
21127 Author: Peter Tyser <ptyser@xes-inc.com>
21128 Date:   Fri Aug 15 14:36:32 2008 -0500
21129
21130     mod_i2c_mem() bugfix
21131
21132     The last used chip, address, and address length were not being
21133     stored for the imm and imn commands.
21134
21135     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21136
21137 commit 4afbef967275b2f636abae86f91b81becee7ad03
21138 Author: Steven A. Falco <sfalco@harris.com>
21139 Date:   Fri Aug 15 15:37:31 2008 -0400
21140
21141     Fix typo in spelling of ATAPI.
21142
21143     Correct a small spelling mistake.
21144
21145     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21146
21147 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
21148 Author: Steven A. Falco <sfalco@harris.com>
21149 Date:   Fri Aug 15 15:34:10 2008 -0400
21150
21151     Add a hook to allow board-specific PIO mode setting.
21152
21153     This patch adds a hook whereby a board-specific routine can be called to
21154     configure hardware for a PIO mode.  The prototype for the board-specific
21155     routine is:
21156
21157         int inline ide_set_piomode(int pio_mode)
21158
21159     ide_set_piomode should be prepared to configure hardware for a pio_mode
21160     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
21161
21162     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21163
21164 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
21165 Author: Steven A. Falco <sfalco@harris.com>
21166 Date:   Fri Aug 15 15:29:12 2008 -0400
21167
21168     Replace enums in ata.h with an include of libata.h
21169
21170     This patch removes some enums from ata.h and replaces them with an
21171     include of libata.h.  This way, we eliminate duplicated code, and
21172     prevent errors whereby the different versions could be out of sync.
21173
21174     Signed-off-by: Steven A. Falco <sfalco@harris.com>
21175
21176 commit 0de0afbca865ecf482b4d2b635236746def8518f
21177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21178 Date:   Fri Aug 15 18:32:41 2008 +0200
21179
21180     coldfire: fix CFI drivers activation with new macro
21181
21182     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
21183
21184     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21185
21186 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
21187 Author: Kumar Gala <galak@kernel.crashing.org>
21188 Date:   Fri Aug 15 08:24:35 2008 -0500
21189
21190     fdt: fdt addr w/o any args reports back the current working address
21191
21192     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21193
21194 commit f953d99fd528a496b400a706b511eaf8e3ea66af
21195 Author: Kumar Gala <galak@kernel.crashing.org>
21196 Date:   Fri Aug 15 08:24:34 2008 -0500
21197
21198     fdt: added the ability to set initrd start/end via chosen command
21199
21200     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21201
21202 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
21203 Author: Kumar Gala <galak@kernel.crashing.org>
21204 Date:   Fri Aug 15 08:24:33 2008 -0500
21205
21206     Add command to enable/disable interrupts
21207
21208     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21209
21210 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
21211 Author: Nick Spence <nick.spence@freescale.com>
21212 Date:   Tue Aug 19 22:21:16 2008 -0700
21213
21214     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
21215
21216     This patch fixes a missing vendor code in the flash_real_protect() function.
21217
21218     Signed-off-by: Nick Spence <nick.spence@freescale.com>
21219     Signed-off-by: Stefan Roese <sr@denx.de>
21220
21221 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
21222 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21223 Date:   Tue Aug 19 16:53:39 2008 +0000
21224
21225     CFI: Fix AMD Legacy sector protect
21226
21227     New implement sector lock and unlock or softlock commands
21228     do not exist in AMD legacy flash. Thus, causing issue
21229     when erasing AMD legacy flash (such as lv040)
21230
21231     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21232     Signed-off-by: Stefan Roese <sr@denx.de>
21233
21234 commit 492671404140f09d5b21b3d2ce4e362c0692c069
21235 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21236 Date:   Wed Aug 20 09:40:16 2008 +0200
21237
21238     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
21239
21240     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
21241
21242     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21243
21244 commit 33eac2b3d946fc998a09245dfe54d017079b9056
21245 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21246 Date:   Wed Aug 20 09:28:36 2008 +0200
21247
21248     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
21249
21250     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21251
21252 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
21253 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21254 Date:   Wed Aug 20 09:27:37 2008 +0200
21255
21256     favr-32-ezkit: Fix printf format warnings
21257
21258     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21259
21260 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
21261 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21262 Date:   Fri Aug 15 12:04:25 2008 +0200
21263
21264     MAINTAINERS: Sort avr32 section alphabetically
21265
21266     The rest of the MAINTAINERS file appears to be sorted
21267     almost-alphabetically, but entries for the newly added AVR32 boards were
21268     added somewhat randomly. This patch sorts the list alphabetically again.
21269
21270     Also update my e-mail address. The old one still works, but it may not
21271     work forever.
21272
21273     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21274
21275 commit 13b50fe3bc065c48911fa373231421280855a9d6
21276 Author: Mark Jackson <mpfj@mimc.co.uk>
21277 Date:   Wed Jul 30 13:07:27 2008 +0100
21278
21279     avr32: Add MIMC200 board
21280
21281     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
21282     8MByte FLASH and 128KByte FRAM.
21283
21284     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
21285     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
21286
21287 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
21288 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21289 Date:   Wed Jul 9 21:07:34 2008 +0900
21290
21291     rtl8169: add support for RTL8110SCL
21292
21293     This patch fixes a problem that RTL8110SCL started transfer
21294     with an incorrect memory address.
21295
21296     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21297     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21298
21299 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
21300 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21301 Date:   Wed Jun 25 15:48:52 2008 -0500
21302
21303     Fix dm9000 receive status and len little endian issue
21304
21305     The received status and len was in little endian
21306     format and caused the ethernet unable to proceed
21307     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
21308
21309     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21310     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21311
21312 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
21313 Author: Kumar Gala <galak@kernel.crashing.org>
21314 Date:   Fri Aug 15 08:24:32 2008 -0500
21315
21316     Clean up usage of icache_disable/dcache_disable
21317
21318     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
21319     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
21320     call icache_disable() right after.  Make it so icache_disable() calls
21321     invalidate_l1_instruction_cache() for us.
21322
21323     Also, dcache_disable() already calls dcache_flush() so there is no point
21324     in the explicit calls of dcache_flush().
21325
21326     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21327
21328 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
21329 Author: Kumar Gala <galak@kernel.crashing.org>
21330 Date:   Fri Aug 15 08:24:31 2008 -0500
21331
21332     Update linux bootm to support ePAPR client interface
21333
21334     The ePAPR spec has some subtle differences from the current device
21335     tree based boot interface to the powerpc linux kernel. The powerpc
21336     linux kernel currently ignores the differences that ePAPR specifies.
21337
21338     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21339
21340 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
21341 Author: Wolfgang Denk <wd@denx.de>
21342 Date:   Mon Aug 18 23:50:20 2008 +0200
21343
21344     Minor code cleanup: keep lists sorted.
21345
21346     Signed-off-by: Wolfgang Denk <wd@denx.de>
21347
21348 commit d0039d4ed275e6ca09fb417895024ad02be118c4
21349 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
21350 Date:   Wed Jul 23 19:10:14 2008 +0200
21351
21352     Add support for ADT7460 I2C monitor chip
21353
21354     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
21355
21356 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
21357 Author: Michal Simek <monstr@monstr.eu>
21358 Date:   Mon Jul 14 19:45:45 2008 +0200
21359
21360     video: Clean drivers/video/Makefile
21361
21362     Signed-off-by: Michal Simek <monstr@monstr.eu>
21363
21364 commit 871c18dd301752270e1f74328c846c3104be1e2e
21365 Author: Michal Simek <monstr@monstr.eu>
21366 Date:   Mon Jul 14 19:45:37 2008 +0200
21367
21368     rtc: Clean drivers/rtc/Makefile
21369
21370     Signed-off-by: Michal Simek <monstr@monstr.eu>
21371
21372 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
21373 Author: Michal Simek <monstr@monstr.eu>
21374 Date:   Mon Jul 14 19:45:35 2008 +0200
21375
21376     i2c: Clean drivers/i2c/ Makefile
21377
21378     Signed-off-by: Michal Simek <monstr@monstr.eu>
21379
21380 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
21381 Author: Harald Welte <laforge@openmoko.org>
21382 Date:   Wed Jul 9 22:30:30 2008 +0800
21383
21384     Add 'license' command to U-Boot command line
21385
21386     The 'license' command includes the U-Boot license (GPLv2) into the
21387     actual bootloader binary. The license text can be shown interactively
21388     at the U-Boot commandline.
21389
21390     For products where the commandline can actually be accessed by the
21391     end user, this helps to prevent inadvertent GPL violations, since the
21392     GPLv2 license text can no longer be 'forgotten' to be included into
21393     the product.
21394
21395     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
21396
21397     Signed-off-by: Harald Welte <laforge@openmoko.org>
21398
21399 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
21400 Author: Harald Welte <laforge@gnumonks.org>
21401 Date:   Sun Jul 6 15:56:38 2008 +0800
21402
21403     add 'unzip' command to u-boot commandline
21404
21405     [PATCH] add new 'unzip' command to u-boot commandline
21406
21407     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
21408     memory to memory, and option CONFIG_CMD_UNZIP to enable it
21409
21410     Signed-off-by: Werner Almesberger <werner@openmoko.org>
21411     Signed-off-by: Harald Welte <laforge@openmoko.org>
21412
21413 commit 07efc9e321619c3dec213310c32e011aa6f02783
21414 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21415 Date:   Wed Aug 6 19:37:17 2008 -0500
21416
21417     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
21418
21419     The CFG_ENV_SIZE is not suitable used for SPI flash erase
21420     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
21421     Add condition check if CFG_ENV_SIZE is larger than
21422     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
21423     erasing.
21424
21425     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21426
21427 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
21428 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21429 Date:   Mon Aug 11 15:54:25 2008 +0000
21430
21431     ColdFire: Multiple fixes for M5282EVB
21432
21433     Incorrect CFG_HZ value, change 1000000 to 1000.
21434     Rename #waring to #warning. RAMBAR1 uses twice
21435     in start.S, rename the later to FLASHBAR. Insert
21436     nop for DRAM setup. And, env_offset in linker file.
21437
21438     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21439
21440 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
21441 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21442 Date:   Mon Aug 11 15:26:43 2008 +0000
21443
21444     ColdFire: Move m5282evb from board to board/freescale
21445
21446     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21447
21448 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
21449 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21450 Date:   Mon Aug 11 15:25:07 2008 +0000
21451
21452     ColdFire: Move m5272c3 from board to board/freescale
21453
21454     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21455
21456 commit 659e9bad629a480f606b286d5703aef7159edf98
21457 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21458 Date:   Mon Aug 11 15:23:16 2008 +0000
21459
21460     ColdFire: Move m5271evb from board to board/freescale
21461
21462     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21463
21464 commit 05316f8ece8206339a208ec052f039cd0f7ca922
21465 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21466 Date:   Mon Aug 11 13:41:49 2008 +0000
21467
21468     ColdFire: Add M54451EVB platform support for MCF5445x
21469
21470     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21471
21472 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
21473 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21474 Date:   Wed Aug 6 19:14:08 2008 -0500
21475
21476     ColdFire: Add Serial Flash support for M54455EVB
21477
21478     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21479
21480 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
21481 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21482 Date:   Wed Jul 23 20:38:53 2008 -0500
21483
21484     ColdFire: Implement SBF feature for M5445EVB
21485
21486     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21487
21488 commit a7323bba229203aae2604afde131ab47bad4eadc
21489 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21490 Date:   Wed Jul 23 17:53:36 2008 -0500
21491
21492     ColdFire: Add SSPI feature for MCF5445x
21493
21494     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21495
21496 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
21497 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21498 Date:   Wed Jul 23 17:37:10 2008 -0500
21499
21500     ColdFire: Use CFI Flash driver for M54455EVB
21501
21502     Remove non-common flash driver in
21503     board/freescale/m54455evb/flash.c. The non-cfi flash will
21504     use CONFIG_FLASH_CFI_LEGACY to configure the flash
21505     attribute.
21506
21507     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21508
21509 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
21510 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21511 Date:   Wed Jul 23 17:11:47 2008 -0500
21512
21513     ColdFire: Add M5253DEMO platform support for MCF5253
21514
21515     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21516
21517 commit 80ba61fd82569af40e04d4a089257b81881884f2
21518 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21519 Date:   Wed Aug 6 14:17:09 2008 -0500
21520
21521     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
21522
21523     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21524
21525 commit d361307e73ce1f6fc68760123f37d4876f851f3e
21526 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21527 Date:   Wed Aug 6 14:11:36 2008 -0500
21528
21529     ColdFire: Fix M5253EVB dram bring up issue
21530
21531     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21532
21533 commit 4b0708093e15b412296328bf81325cf9b69fe512
21534 Author: Wolfgang Denk <wd@denx.de>
21535 Date:   Thu Aug 14 14:41:06 2008 +0200
21536
21537     Coding Style cleanup, update CHANGELOG
21538
21539     Signed-off-by: Wolfgang Denk <wd@denx.de>
21540
21541 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
21542 Author: Scott Wood <scottwood@freescale.com>
21543 Date:   Wed Aug 13 18:24:05 2008 -0500
21544
21545     socrates: Update NAND driver to new API.
21546
21547     Also, fix some minor formatting issues, and simplify the handling of
21548     "state" for writes.
21549
21550     Signed-off-by: Scott Wood <scottwood@freescale.com>
21551
21552 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
21553 Author: Scott Wood <scottwood@freescale.com>
21554 Date:   Wed Aug 13 18:03:40 2008 -0500
21555
21556     quad100hd: Update NAND driver to new API.
21557
21558     Signed-off-by: Scott Wood <scottwood@freescale.com>
21559
21560 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
21561 Author: Scott Wood <scottwood@freescale.com>
21562 Date:   Wed Aug 13 17:53:48 2008 -0500
21563
21564     m5373evb: Update NAND driver to new API.
21565
21566     Signed-off-by: Scott Wood <scottwood@freescale.com>
21567
21568 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
21569 Author: Scott Wood <scottwood@freescale.com>
21570 Date:   Wed Aug 13 17:04:30 2008 -0500
21571
21572     s3c24x0: Update NAND driver to new API.
21573
21574     Signed-off-by: Scott Wood <scottwood@freescale.com>
21575
21576 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
21577 Author: Scott Wood <scottwood@freescale.com>
21578 Date:   Wed Aug 13 15:56:00 2008 -0500
21579
21580     at91: Update board NAND drivers to current API.
21581
21582     Signed-off-by: Scott Wood <scottwood@freescale.com>
21583
21584 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
21585 Author: Kyungmin Park <kmpark@infradead.org>
21586 Date:   Wed Aug 13 09:11:02 2008 +0900
21587
21588     Fix OneNAND build break
21589
21590     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
21591     - fix bufferram management at erase operation
21592     This patch includes the NAND/OneNAND state filed too.
21593
21594     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21595     Signed-off-by: Scott Wood <scottwood@freescale.com>
21596
21597 commit 9483df6408c25f16060432de3868901e352e23bc
21598 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21599 Date:   Wed Aug 13 01:40:43 2008 +0200
21600
21601     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
21602
21603     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21604
21605 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
21606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21607 Date:   Wed Aug 13 01:40:43 2008 +0200
21608
21609     drivers/mtd/nand: Move conditional compilation to Makefile
21610
21611     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
21612
21613     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21614
21615 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
21616 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21617 Date:   Wed Aug 13 01:40:42 2008 +0200
21618
21619     drivers/mtd/onenand: Move conditional compilation to Makefile
21620
21621     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21622
21623 commit 00b1883a4cac59d97cd297b1a3a398db85982865
21624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21625 Date:   Wed Aug 13 01:40:42 2008 +0200
21626
21627     drivers/mtd: Move conditional compilation to Makefile
21628
21629     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
21630
21631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21632
21633 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
21634 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21635 Date:   Wed Aug 13 01:40:41 2008 +0200
21636
21637     drivers/qe: Move conditional compilation to Makefile
21638
21639     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21640
21641 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
21642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21643 Date:   Wed Aug 13 01:40:40 2008 +0200
21644
21645     drivers/pci: Move conditional compilation to Makefile
21646
21647     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21648
21649 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
21650 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21651 Date:   Wed Aug 13 01:40:40 2008 +0200
21652
21653     drivers/misc: Move conditional compilation to Makefile
21654
21655     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21656
21657 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
21658 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21659 Date:   Wed Aug 13 01:40:40 2008 +0200
21660
21661     drivers/input: Move conditional compilation to Makefile
21662
21663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21664
21665 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
21666 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21667 Date:   Wed Aug 13 01:40:39 2008 +0200
21668
21669     drivers/dma: Move conditional compilation to Makefile
21670
21671     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21672
21673 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
21674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21675 Date:   Wed Aug 13 01:40:39 2008 +0200
21676
21677     drivers/block: Move conditional compilation to Makefile
21678
21679     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21680
21681 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
21682 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21683 Date:   Wed Aug 13 01:40:39 2008 +0200
21684
21685     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
21686
21687     move also conditional compilation to Makefile
21688
21689     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21690
21691 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
21692 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21693 Date:   Wed Aug 13 01:40:38 2008 +0200
21694
21695     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
21696
21697     move also conditional compilation to Makefile
21698
21699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21700
21701 commit d6e9ee92e890f67594ab150689510df361133ead
21702 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21703 Date:   Wed Aug 13 01:40:38 2008 +0200
21704
21705     common: Move conditional compilation to Makefile
21706
21707     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21708
21709 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
21710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21711 Date:   Wed Aug 13 01:40:09 2008 +0200
21712
21713     mx31: move freescale's mx31 boards to vendor board dir
21714
21715     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21716
21717 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
21718 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21719 Date:   Sat Jul 5 23:11:11 2008 +0200
21720
21721     at91: move arch-at91sam9 to arch-at91
21722
21723     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21724
21725 commit 195ccfc5991d48764b2519941e3507f693851d5d
21726 Author: Fathi BOUDRA <fabo@debian.org>
21727 Date:   Wed Aug 6 10:06:20 2008 +0200
21728
21729     OneNAND: Fill in MTD function pointers for OneNAND.
21730
21731     onenand_print_device_info():
21732      - Now returns a string to be placed in mtd->name,
21733        rather than calling printf.
21734      - Remove verbose parameter as it becomes useless.
21735
21736     Signed-off-by: Fathi Boudra <fabo@debian.org>
21737     Signed-off-by: Scott Wood <scottwood@freescale.com>
21738
21739 commit aa646643b6bc250cb3a4966bf728876e0c10d329
21740 Author: Guennadi Liakhovetski <lg@denx.de>
21741 Date:   Wed Aug 6 21:42:07 2008 +0200
21742
21743     nand_spl: Support page-aligned read in nand_load, use chipselect
21744
21745     Supporting page-aligned reads doesn't incure any sinificant overhead, just
21746     a small change in the algorithm. Also replace in_8 with readb, since there
21747     is no in_8 on ARM.
21748
21749     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21750     Signed-off-by: Scott Wood <scottwood@freescale.com>
21751
21752 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
21753 Author: Scott Wood <scottwood@freescale.com>
21754 Date:   Tue Aug 5 11:15:59 2008 -0500
21755
21756     NAND boot: Update large page support for current API.
21757
21758     Also, remove the ctrl variable in favor of passing the constants
21759     directly, and remove redundant (u8) casts.
21760
21761     Signed-off-by: Scott Wood <scottwood@freescale.com>
21762
21763 commit e4c09508545d1c45617ba45391c03c03cbc360b9
21764 Author: Scott Wood <scottwood@freescale.com>
21765 Date:   Mon Jun 30 14:13:28 2008 -0500
21766
21767     NAND boot: MPC8313ERDB support
21768
21769     Note that with older board revisions, NAND boot may only work after a
21770     power-on reset, and not after a warm reset.  I don't have a newer board
21771     to test on; if you have a board with a 33MHz crystal, please let me know
21772     if it works after a warm reset.
21773
21774     Signed-off-by: Scott Wood <scottwood@freescale.com>
21775
21776 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
21777 Author: Scott Wood <scottwood@freescale.com>
21778 Date:   Thu Jun 26 14:06:52 2008 -0500
21779
21780     mpc8313erdb: Enable NAND in config.
21781
21782     Signed-off-by: Scott Wood <scottwood@freescale.com>
21783
21784 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
21785 Author: Guennadi Liakhovetski <lg@denx.de>
21786 Date:   Thu Jul 31 12:38:26 2008 +0200
21787
21788     NAND: Do not write or read a whole block if it is larger than the environment
21789
21790     Environment can be smaller than NAND block size, do not need to read a whole
21791     block and minimum for writing is one page. Also remove an unused variable.
21792
21793     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21794     Signed-off-by: Scott Wood <scottwood@freescale.com>
21795
21796 commit eafcabd15f00c142156235c519fcc55b10993241
21797 Author: Marcel Ziswiler <marcel@ziswiler.com>
21798 Date:   Sun Jun 22 16:30:06 2008 +0200
21799
21800     NAND: chip->state does not always get set.
21801
21802     Fixes an issue with chip->state not always being set causing troubles.
21803
21804     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
21805     Signed-off-by: Scott Wood <scottwood@freescale.com>
21806
21807 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
21808 Author: Ilya Yanok <yanok@emcraft.com>
21809 Date:   Mon Jun 30 15:34:40 2008 +0200
21810
21811     NAND: Scan bad blocks lazily.
21812
21813     Rather than scanning on boot, scan upon the first attempt to check the
21814     badness of a block.  This speeds up boot when not using NAND, and reduces
21815     the likelihood of needing to reflash via JTAG if NAND becomes
21816     nonfunctional.
21817
21818     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
21819     Signed-off-by: Scott Wood <scottwood@freescale.com>
21820
21821 commit dfbf617ff055e4216f78d358b0867c548916d14b
21822 Author: Scott Wood <scottwood@freescale.com>
21823 Date:   Thu Jun 12 13:20:16 2008 -0500
21824
21825     NAND read/write fix
21826
21827     Implement block-skipping read/write, based on a patch from
21828     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
21829
21830     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
21831     Signed-off-by: Scott Wood <scottwood@freescale.com>
21832
21833 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
21834 Author: Scott Wood <scottwood@freescale.com>
21835 Date:   Thu Jun 12 13:13:23 2008 -0500
21836
21837     NAND: Always skip blocks on read/write/boot.
21838
21839     Use of the non-skipping versions was almost always (if not always)
21840     an error, and no valid use case has been identified.
21841
21842     Signed-off-by: Scott Wood <scottwood@freescale.com>
21843
21844 commit e1c3dbada349992875934575c97b328ab2cb33ca
21845 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21846 Date:   Thu Jun 12 11:10:21 2008 -0500
21847
21848     nand: fsl_upm: convert to updated MTD NAND infrastructure
21849
21850     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21851     Signed-off-by: Scott Wood <scottwood@freescale.com>
21852
21853 commit 300253306acc72b1b2e9faf0987f86551151d7cf
21854 Author: Scott Wood <scottwood@freescale.com>
21855 Date:   Thu May 22 15:02:46 2008 -0500
21856
21857     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
21858
21859     The hardware has separate registers for block and page-within-block,
21860     but the division between the two has no apparent relation to the
21861     actual erase block size of the NAND chip.
21862
21863     Signed-off-by: Scott Wood <scottwood@freescale.com>
21864
21865 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
21866 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21867 Date:   Fri Mar 28 22:10:54 2008 +0300
21868
21869     fsl_elbc_nand: workaround for hangs during nand write
21870
21871     Using current driver elbc sometimes hangs during nand write. Reading back
21872     last byte helps though (thanks to Scott Wood for the idea).
21873
21874     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21875     Signed-off-by: Scott Wood <scottwood@freescale.com>
21876
21877 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
21878 Author: Scott Wood <scottwood@freescale.com>
21879 Date:   Fri Mar 21 16:12:51 2008 -0500
21880
21881     Freescale eLBC FCM NAND driver
21882
21883     This is a driver for the Flash Control Machine of the enhanched Local Bus
21884     Controller found on some Freescale chips (such as the mpc8313 and the
21885     mpc8379).
21886
21887     Signed-off-by: Scott Wood <scottwood@freescale.com>
21888
21889 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
21890 Author: Scott Wood <scottwood@freescale.com>
21891 Date:   Tue Mar 18 15:29:14 2008 -0500
21892
21893     Don't panic if a controller driver does ecc its own way.
21894
21895     Some hardware, such as the enhanced local bus controller used on some
21896     mpc83xx chips, does ecc transparently when reading and writing data, rather
21897     than providing a generic calculate/correct mechanism that can be exported to
21898     the nand subsystem.
21899
21900     The subsystem should not BUG() when calculate, correct, or hwctl are
21901     missing, if the methods that call them have been overridden.
21902
21903     Signed-off-by: Scott Wood <scottwood@freescale.com>
21904
21905 commit e52b34d40a8a646e3d11638ea8797e96398dba13
21906 Author: Stefan Roese <sr@denx.de>
21907 Date:   Thu Jan 10 18:47:33 2008 +0100
21908
21909     NAND: Make NAND driver less verbose per default
21910
21911     This patch turns off printing of bad blocks per default upon bootup.
21912     This can always be shown via the "nand bad" command later.
21913
21914     Signed-off-by: Stefan Roese <sr@denx.de>
21915
21916 commit fe56a2772e5c59577df906163d0d4b29b056140e
21917 Author: Sergey Kubushyn <ksi@koi8.net>
21918 Date:   Wed Jan 9 15:36:20 2008 +0100
21919
21920     NAND: Davinci driver updates
21921
21922     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
21923     don't have hardware handy so I can not test it at the moment but changes are
21924     rather trivial so it should work. It would be nice if somebody with a
21925     hardware checked it anyways.
21926
21927     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
21928
21929 commit deac913effd8d80535c9ff4687b6fcdff540c554
21930 Author: Stefan Roese <sr@denx.de>
21931 Date:   Sat Jan 5 16:50:32 2008 +0100
21932
21933     NAND: Fix compilation warning and small coding style issue
21934
21935     Signed-off-by: Stefan Roese <sr@denx.de>
21936
21937 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
21938 Author: Stefan Roese <sr@denx.de>
21939 Date:   Sat Jan 5 16:49:37 2008 +0100
21940
21941     NAND: Update nand_spl driver to match updated nand subsystem
21942
21943     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
21944     the new infrastructure from the updated NAND subsystem. This NAND
21945     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
21946     subsystem.
21947
21948     Signed-off-by: Stefan Roese <sr@denx.de>
21949
21950 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
21951 Author: Stefan Roese <sr@denx.de>
21952 Date:   Sat Jan 5 16:47:58 2008 +0100
21953
21954     NAND: Update 4xx NDFC driver to match updated nand subsystem
21955
21956     This patch changes the 4xx NAND driver ndfc.c to match the new
21957     infrastructure from the updated NAND subsystem. This NAND
21958     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
21959     subsystem.
21960
21961     Tested successfully on AMCC Sequoia and Bamboo.
21962
21963     Signed-off-by: Stefan Roese <sr@denx.de>
21964
21965 commit 12072264528eba33737bc9674e19f0e925ffda23
21966 Author: Stefan Roese <sr@denx.de>
21967 Date:   Sat Jan 5 16:43:25 2008 +0100
21968
21969     NAND: Change nand_wait_ready() to not call nand_wait()
21970
21971     This patch changes nand_wait_ready() to not just call nand_wait(),
21972     since this will send a new command to the NAND chip. We just want to
21973     wait for the chip to become ready here.
21974
21975     Signed-off-by: Stefan Roese <sr@denx.de>
21976
21977 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
21978 Author: William Juul <william.juul@datarespons.no>
21979 Date:   Fri Dec 14 16:33:45 2007 +0100
21980
21981     make nand dump and nand dump.oob work
21982
21983     Signed-off-by: William Juul <william.juul@tandberg.com>
21984     Signed-off-by: Scott Wood <scottwood@freescale.com>
21985
21986 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
21987 Author: William Juul <william.juul@datarespons.no>
21988 Date:   Mon Nov 19 14:46:00 2007 +0100
21989
21990     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
21991
21992     Signed-off-by: William Juul <william.juul@tandberg.com>
21993
21994 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
21995 Author: William Juul <william.juul@tandberg.com>
21996 Date:   Tue Jun 10 16:18:13 2008 -0500
21997
21998     Clean out unneeded files
21999
22000     Signed-off-by: William Juul <william.juul@tandberg.com>
22001
22002 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
22003 Author: William Juul <william.juul@datarespons.no>
22004 Date:   Fri Nov 16 08:44:27 2007 +0100
22005
22006     Create symlinks from yaffs2/direct to yaffs2
22007
22008     Signed-off-by: William Juul <william.juul@tandberg.com>
22009
22010 commit 90ef117b68387d66763291af0117677644166611
22011 Author: William Juul <william.juul@datarespons.no>
22012 Date:   Thu Nov 15 12:23:57 2007 +0100
22013
22014     Incorporate yaffs2 into U-boot
22015
22016     To use YAFFS2 define CONFIG_YAFFS2
22017
22018     Signed-off-by: William Juul <william.juul@tandberg.com>
22019     Signed-off-by: Scott Wood <scottwood@freescale.com>
22020
22021 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
22022 Author: William Juul <william.juul@datarespons.no>
22023 Date:   Thu Nov 15 11:13:05 2007 +0100
22024
22025     YAFFS2 import
22026
22027     Direct import of yaffs as a tarball as of 20071113 from their public
22028     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
22029
22030     The code can also be imported on the command line with:
22031     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
22032     (Hit return when asked for a password)
22033     cvs checkout yaffs2
22034
22035     Signed-off-by: William Juul <william.juul@tandberg.com>
22036     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
22037
22038 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
22039 Author: William Juul <william.juul@datarespons.no>
22040 Date:   Wed Nov 14 14:28:11 2007 +0100
22041
22042     Whitespace cleanup and marking broken code.
22043
22044     Changes requested by maintainer Stefan Roese after
22045     posting patch to U-boot mailing list.
22046
22047     Signed-off-by: William Juul <william.juul@tandberg.com>
22048     Signed-off-by: Scott Wood <scottwood@freescale.com>
22049
22050 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
22051 Author: William Juul <william.juul@datarespons.no>
22052 Date:   Fri Nov 9 13:32:30 2007 +0100
22053
22054     Fixing coding style issues
22055
22056      - Fixing leading white spaces
22057      - Fixing indentation where 4 spaces are used instead of tab
22058      - Removing C++ comments (//), wherever I introduced them
22059
22060     Signed-off-by: William Juul <william.juul@tandberg.com>
22061     Signed-off-by: Scott Wood <scottwood@freescale.com>
22062
22063 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
22064 Author: William Juul <william.juul@datarespons.no>
22065 Date:   Thu Nov 8 10:39:53 2007 +0100
22066
22067     Remove white space at end.
22068
22069     Signed-off-by: William Juul <william.juul@tandberg.com>
22070     Signed-off-by: Scott Wood <scottwood@freescale.com>
22071
22072 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
22073 Author: William Juul <william.juul@datarespons.no>
22074 Date:   Wed Oct 31 13:53:06 2007 +0100
22075
22076     Update MTD to that of Linux 2.6.22.1
22077
22078     A lot changed in the Linux MTD code, since it was last ported from
22079     Linux to U-Boot. This patch takes U-Boot NAND support to the level
22080     of Linux 2.6.22.1 and will enable support for very large NAND devices
22081     (4KB pages) and ease the compatibility between U-Boot and Linux
22082     filesystems.
22083
22084     This patch is tested on two custom boards with PPC and ARM
22085     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
22086     cross compilers.
22087
22088     MAKEALL ppc/arm has some issues:
22089      * DOC/OneNand/nand_spl is not building (I have not tried porting
22090        these parts, and since I do not have any HW and I am not familiar
22091        with this code/HW I think its best left to someone else.)
22092
22093     Except for the issues mentioned above, I have ported all drivers
22094     necessary to run MAKEALL ppc/arm without errors and warnings. Many
22095     drivers were trivial to port, but some were not so trivial. The
22096     following drivers must be examined carefully and maybe rewritten to
22097     some degree:
22098      cpu/ppc4xx/ndfc.c
22099      cpu/arm926ejs/davinci/nand.c
22100      board/delta/nand.c
22101      board/zylonite/nand.c
22102
22103     Signed-off-by: William Juul <william.juul@tandberg.com>
22104     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
22105     Signed-off-by: Scott Wood <scottwood@freescale.com>
22106
22107 commit cd82919e6c8a73b363a26f34b734923844e52d1c
22108 Author: Wolfgang Denk <wd@denx.de>
22109 Date:   Tue Aug 12 16:08:38 2008 +0200
22110
22111     Coding style cleanup, update CHANGELOG, prepare release
22112
22113     Signed-off-by: Wolfgang Denk <wd@denx.de>
22114
22115 commit 17e900b8c0f38d922da47073246219dce2a847f2
22116 Author: Wolfgang Denk <wd@denx.de>
22117 Date:   Tue Aug 12 14:54:04 2008 +0200
22118
22119     MVBC_P: fix compile problem
22120
22121     Signed-off-by: Wolfgang Denk <wd@denx.de>
22122
22123 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
22124 Author: Wolfgang Denk <wd@denx.de>
22125 Date:   Tue Aug 12 12:10:11 2008 +0200
22126
22127     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
22128
22129     Signed-off-by: Wolfgang Denk <wd@denx.de>
22130
22131 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
22132 Author: Wolfgang Denk <wd@denx.de>
22133 Date:   Tue Aug 12 00:36:53 2008 +0200
22134
22135     ads5121: fix compiler warnings (unused variables)
22136
22137     Signed-off-by: Wolfgang Denk <wd@denx.de>
22138
22139 commit 902ca09246039964d59bbcb519b1e1b5aed01308
22140 Author: Kumar Gala <galak@kernel.crashing.org>
22141 Date:   Mon Aug 11 11:29:28 2008 -0500
22142
22143     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
22144
22145     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
22146
22147     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22148     Acked-by: Jon Loeliger <jdl@freescale.com>
22149
22150 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
22151 Author: Kumar Gala <galak@kernel.crashing.org>
22152 Date:   Mon Aug 11 09:20:53 2008 -0500
22153
22154     Fix fallout from autostart revert
22155
22156     The autostart revert caused a bit of duplicated code as well as
22157     code that was using images->autostart that needs to get removed so
22158     we can build again.
22159
22160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22161
22162 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
22163 Author: Kumar Gala <galak@kernel.crashing.org>
22164 Date:   Mon Aug 11 09:16:25 2008 -0500
22165
22166     Fix compile error related to r8a66597-hcd & usb
22167
22168     When building the 8544DS board we get this error:
22169
22170     In file included from r8a66597-hcd.c:22:
22171     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
22172     make[1]: *** [r8a66597-hcd.o] Error 1
22173
22174     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
22175     is set.
22176
22177     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22178
22179 commit 2d0daa03612338a813e3c9d22680e54eabfea378
22180 Author: Becky Bruce <becky.bruce@freescale.com>
22181 Date:   Mon Aug 4 14:02:26 2008 -0500
22182
22183     POWERPC 86xx: Move BAT setup code to C
22184
22185     This is needed because we will be possibly be locating
22186     devices at physical addresses above 32bits, and the asm
22187     preprocessing does not appear to deal with ULL constants
22188     properly. We now call write_bat in lib_ppc/bat_rw.c.
22189
22190     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22191     Acked-by: Jon Loeliger <jdl@freescale.com>
22192
22193 commit 9de67149db576c91b9c2a0a182652331e7e44211
22194 Author: Becky Bruce <becky.bruce@freescale.com>
22195 Date:   Mon Aug 4 14:01:53 2008 -0500
22196
22197     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
22198
22199     Perform sync/isync as required by the architecture.
22200
22201     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22202     Acked-by: Jon Loeliger <jdl@freescale.com>
22203
22204 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
22205 Author: Becky Bruce <becky.bruce@freescale.com>
22206 Date:   Mon Aug 4 14:01:16 2008 -0500
22207
22208     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
22209
22210     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22211     Acked-by: Jon Loeliger <jdl@freescale.com>
22212
22213 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
22214 Author: Magnus Lilja <lilja.magnus@gmail.com>
22215 Date:   Sun Aug 3 21:44:10 2008 +0200
22216
22217     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
22218
22219     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
22220     contacts instead of only the first 256 ones as is the case prior to
22221     this patch.
22222
22223     Add missing MUX_* macros and update board files to use the new macros.
22224
22225     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
22226
22227 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
22228 Author: Magnus Lilja <lilja.magnus@gmail.com>
22229 Date:   Sun Aug 3 21:43:37 2008 +0200
22230
22231     i.MX31: Fix IOMUX related typos
22232
22233     Correct the names of some IOMUX macros.
22234
22235     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
22236
22237 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
22238 Author: Steve Sakoman <steve@sakoman.com>
22239 Date:   Mon Aug 11 20:26:16 2008 +0200
22240
22241     OneNAND: Remove unused parameters to onenand_verify_page
22242
22243     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.
22244
22245     Signed-off-by: Steve Sakoman <steve@sakoman.com>
22246     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22247
22248 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
22249 Author: Anatolij Gustschin <agust@denx.de>
22250 Date:   Fri Aug 8 18:00:40 2008 +0200
22251
22252     video: fix bug in cfb_console code
22253
22254     FILL_15BIT_555RGB macro extension for pixel swapping
22255     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
22256     introduced a bug in cfb_console:
22257
22258     Bitmaps with odd-numbered width won't be rendered
22259     correctly and even U-Boot crashes are observed on
22260     some platforms while repeated rendering of such
22261     bitmaps with "bmp display". Also if a bitmap is
22262     rendered to an odd-numbered x starting position,
22263     the same problem occurs. This patch is an attempt
22264     to fix it.
22265
22266     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22267
22268 commit d9015f6a50d7258125349ef5c2af836458a0029a
22269 Author: Anatolij Gustschin <agust@denx.de>
22270 Date:   Fri Aug 8 18:00:39 2008 +0200
22271
22272     video: fix bug in logo_plot
22273
22274     If logo_plot() should ever be called with x starting
22275     position other than zero and for pixel depths greater
22276     than 8bpp, logo colors distortion will be observed.
22277     This patch fixes the issue.
22278
22279     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22280
22281 commit 406819ae94f79f5b59e01d163380ca7d83709251
22282 Author: Wolfgang Denk <wd@denx.de>
22283 Date:   Mon Aug 11 00:17:52 2008 +0200
22284
22285     MAINTAINERS: sort entries
22286
22287     Signed-off-by: Wolfgang Denk <wd@denx.de>
22288
22289 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
22290 Author: Roy Zang <tie-fei.zang@freescale.com>
22291 Date:   Thu Aug 7 18:19:28 2008 +0800
22292
22293     Add mpc7448hpc2 maintainer information
22294
22295     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
22296
22297 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
22298 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
22299 Date:   Thu Aug 7 13:13:27 2008 +0530
22300
22301     common/cmd_load.c - Minor code & Coding Style cleanup
22302
22303     - os_data_header Variable is a carry over feature
22304        & unused. So removed all instance of this variable
22305      - Minor Code Style Update
22306
22307     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
22308     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22309
22310 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
22311 Author: Magnus Lilja <lilja.magnus@gmail.com>
22312 Date:   Wed Aug 6 19:32:33 2008 +0200
22313
22314     Update the U-Boot wiki URL.
22315
22316     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
22317
22318 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
22319 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
22320 Date:   Sun Aug 10 17:56:36 2008 +0200
22321
22322     OneNAND: Remove base address offset usage
22323
22324     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
22325     using OneNAND and some using NAND, we found some differences in OneNAND and
22326     NAND command address handling.
22327
22328     As this might confuse users (it already confused us), we like to align OneNAND
22329     and NAND address handling.
22330
22331     The issue is that cmd_onenand.c subtracts the onenand base address from the
22332     addresses you type into the u-boot command line so, unlike nand, you can't
22333     use addresses relative to the start of the onenand part e.g. this won't work:
22334
22335     onenand read 82000000 280000 400000
22336
22337     you have to use:
22338
22339     onenand read 82000000 20280000 400000
22340
22341     Looking at recent git, the only board currently using OneNAND is Apollon, and
22342     for this the OneNAND base address is 0 (apollon.h)
22343
22344     #define     CFG_ONENAND_BASE        0x00000000
22345
22346     so patch below won't break any existing boards and will align OneNAND and NAND
22347     handling on boards where OneNAND base address is != 0.
22348
22349     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
22350     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
22351     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22352
22353 commit c11528083ef6e55e76df742228c26e39d151813d
22354 Author: Kumar Gala <galak@kernel.crashing.org>
22355 Date:   Thu Aug 7 09:28:20 2008 -0500
22356
22357     mpc85xx: workaround old binutils bug
22358
22359     The recent change to move the .bss outside of the image gives older
22360     binutils (ld from eldk4.1/binutils-2.16) some headache:
22361
22362     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
22363     ppc_85xx-ld: final link failed: Bad value
22364
22365     We workaround it by being explicit about the program headers and not
22366     assigning the .bss to a program header.
22367
22368     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22369
22370 commit 0bf202ec586d4466c900e987720fa635c594d689
22371 Author: Wolfgang Denk <wd@denx.de>
22372 Date:   Sun Aug 10 01:26:26 2008 +0200
22373
22374     Revert "[new uImage] Add autostart flag to bootm_headers structure"
22375
22376     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
22377
22378     The commit was based on a misunderstanding of the (documented)
22379     meaning of the 'autostart' environment variable. It might cause
22380     boards to hang if 'autostart' was used, with the potential to brick
22381     them. Go back to the documented behaviour.
22382
22383     Conflicts:
22384
22385         common/cmd_bootm.c
22386         common/image.c
22387         include/image.h
22388
22389     Signed-off-by: Wolfgang Denk <wd@denx.de>
22390
22391 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
22392 Author: Wolfgang Denk <wd@denx.de>
22393 Date:   Sat Aug 9 23:17:32 2008 +0200
22394
22395     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
22396
22397     - enable CFI driver where this was forgotten
22398     - enable mtdparts support
22399     - adjust default environment
22400     etc.
22401
22402     Signed-off-by: Wolfgang Denk <wd@denx.de>
22403
22404 commit 41266c9b5a5f873df3ec891bb0907616958b5602
22405 Author: Peter Tyser <ptyser@xes-inc.com>
22406 Date:   Tue Aug 5 10:51:57 2008 -0500
22407
22408     FIT: Fix handling of images without ramdisks
22409
22410     boot_get_ramdisk() should not treat the case when a FIT image does
22411     not contain a ramdisk as an error.
22412
22413     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22414     Acked-by: Michal Simek <monstr@monstr.eu>
22415
22416 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
22417 Author: Sergey Lapin <slapin@ossfans.org>
22418 Date:   Sat Aug 9 01:39:09 2008 +0400
22419
22420     DataFlash: AT45DB021 fix and AT45DB081 support
22421
22422     Fix for page size of AT45DB021. Also adding bigger AT45DB081
22423     which comes with some newer boards.
22424
22425     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
22426
22427 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
22428 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22429 Date:   Fri Aug 8 16:30:23 2008 +0900
22430
22431     sh: Update sh7763rdp config
22432
22433     Add sh_eth support to sh7763rdp.
22434
22435     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22436
22437 commit 21f971ec265f6042ec21636d55d06a6bc0751077
22438 Author: Wolfgang Denk <wd@denx.de>
22439 Date:   Mon Jul 7 01:22:29 2008 +0200
22440
22441     TQM823L: re-enable logo support; update LCD_INFO text
22442
22443     Signed-off-by: Wolfgang Denk <wd@denx.de>
22444
22445 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
22446 Author: Wolfgang Denk <wd@denx.de>
22447 Date:   Fri Aug 8 16:41:56 2008 +0200
22448
22449     TQM8xxL: fix support for second flash bank
22450
22451     When switching the TQM8xxL modules to use the CFI flash driver,
22452     support for the second flash bank was broken because the CFI driver
22453     did not support dynamically sized banks. This gets fixed now.
22454
22455     Signed-off-by: Wolfgang Denk <wd@denx.de>
22456
22457 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
22458 Author: Wolfgang Denk <wd@denx.de>
22459 Date:   Fri Aug 8 16:39:54 2008 +0200
22460
22461     CFI: allow for dynamically determined flash sizes and addresses
22462
22463     The CFI driver allowed only for static initializers in the
22464     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
22465     several flash banks contiguously if the bank sizes were not known in
22466     advance, which kind of violates U-Boot's design philosophy.
22467
22468     (will be used for example by the TQM8xxL boards)
22469
22470     Signed-off-by: Wolfgang Denk <wd@denx.de>
22471
22472 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
22473 Author: Ben Warren <biggerbadderben@gmail.com>
22474 Date:   Thu Aug 7 23:26:35 2008 -0700
22475
22476     QE UEC: Fix compiler warnings
22477
22478     Moved static functions earlier in file so forward declarations are not needed.
22479
22480     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22481
22482 commit d5d28fe4aad5f4535400647a5617c11039506467
22483 Author: David Saada <David.Saada@ecitele.com>
22484 Date:   Mon Mar 31 02:37:38 2008 -0700
22485
22486     QE UEC: Add MII Commands
22487
22488     Add MII commands to the UEC driver. Note that once a UEC device is selected,
22489     any device on its MDIO bus can be addressed.
22490
22491     Signed-off-by: David Saada <david.saada@ecitele.com>
22492     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22493
22494 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
22495 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22496 Date:   Wed Jul 9 21:07:38 2008 +0900
22497
22498     usb: add support for R8A66597 usb controller
22499
22500     add support for Renesas R8A66597 usb controller.
22501     This patch supports USB Host mode.
22502
22503     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22504     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
22505
22506 commit 1d10dcd041aaeae9fd7c821005692898a0303382
22507 Author: Hunter, Jon <jon-hunter@ti.com>
22508 Date:   Sat Jul 26 18:59:16 2008 -0500
22509
22510     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
22511
22512     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
22513
22514     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
22515     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
22516
22517 commit eab1007334b93a6209f1ec33615e26ef5311ede7
22518 Author: Steven A. Falco <sfalco@harris.com>
22519 Date:   Wed Aug 6 15:42:52 2008 -0400
22520
22521     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
22522
22523     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
22524     configuration to match the schematic, and also sets the SDR0_PFC1 register to
22525     select the corresponding mode for the UARTs.
22526
22527     Signed-off-by: Steven A. Falco <sfalco@harris.com>
22528     Signed-off-by: Stefan Roese <sr@denx.de>
22529
22530 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
22531 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
22532 Date:   Wed Aug 6 14:42:13 2008 +0200
22533
22534     avr32: add support for EarthLCD Favr-32 board
22535
22536     This patch adds support for the Favr-32 board made by EarthLCD.
22537
22538     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
22539     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
22540     Ethernet, audio out, USB device, SD-card slot, USART and various other
22541     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
22542
22543     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
22544     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22545
22546 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
22547 Author: Rafael Campos <rafael.campos@hanscan.com>
22548 Date:   Thu Jul 31 10:22:20 2008 +0200
22549
22550     cfi-flash: Added support to flash_real_protect for Atmel flash devices
22551
22552     Some of the flash memories produced by ATMEL start in read-only mode.
22553     We need to unprotect it. This patch allows the AT49BV6416 to work with
22554     cfi_flash memories. Tested in the at91rm9200ek board.
22555
22556     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
22557     Signed-off-by: Stefan Roese <sr@denx.de>
22558
22559 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
22560 Author: Guennadi Liakhovetski <lg@denx.de>
22561 Date:   Tue Aug 5 15:36:39 2008 +0200
22562
22563     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
22564
22565     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22566     Signed-off-by: Stefan Roese <sr@denx.de>
22567
22568 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
22569 Author: Stefan Roese <sr@denx.de>
22570 Date:   Wed Aug 6 14:06:03 2008 +0200
22571
22572     Fix merge problems
22573
22574     Signed-off-by: Stefan Roese <sr@denx.de>
22575
22576 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
22577 Author: Stefan Roese <sr@denx.de>
22578 Date:   Wed Aug 6 14:05:38 2008 +0200
22579
22580     Fix merge problems
22581
22582     Signed-off-by: Stefan Roese <sr@denx.de>
22583
22584 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
22585 Author: Kenneth Johansson <kenneth@southpole.se>
22586 Date:   Tue Jul 15 12:13:38 2008 +0200
22587
22588     mpc5121: Move iopin features from board specific to common files.
22589
22590     And in the process eliminate some duplicate register defines.
22591
22592     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
22593
22594 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
22595 Author: John Rigby <jrigby@freescale.com>
22596 Date:   Tue Aug 5 17:38:57 2008 -0600
22597
22598     mpc5121: squash some fdt fixup errors
22599
22600     On ADS5121 when booting linux the following errors are seen:
22601         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
22602         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
22603         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
22604
22605     This is caused by ft_cpu_setup trying to deal with
22606     both old and new soc node naming.  This patch
22607     fixes this by being smarter about what to
22608     fixup.
22609
22610     Also do soc node fixups by compatible instead of by path.
22611     A new board config called OF_SOC_COMPAT defined
22612     to be "fsl,mpc5121-immr" replaces the old
22613     OF_SOC node path that was defined to be "soc@80000000".
22614
22615     Old device trees still work, but the compatiblity
22616     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
22617     which is on by default in include/configs/ads5121.h.
22618
22619     Signed-off-by: John Rigby <jrigby@freescale.com>
22620
22621 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
22622 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22623 Date:   Sat Aug 2 23:48:30 2008 +0200
22624
22625     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
22626
22627     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22628
22629 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
22630 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22631 Date:   Sat Aug 2 23:48:32 2008 +0200
22632
22633     nios2/sysid: fix printf warning
22634
22635     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22636
22637 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
22638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22639 Date:   Sat Aug 2 23:48:33 2008 +0200
22640
22641     Fix remaining build issues with MPC8xx FADS boards.
22642
22643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22644
22645 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
22646 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22647 Date:   Sat Aug 2 23:48:31 2008 +0200
22648
22649     nios2: fix phys_addr_t and phys_size_t support
22650
22651     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22652
22653 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
22654 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22655 Date:   Sat Aug 2 23:48:34 2008 +0200
22656
22657     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
22658
22659     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22660
22661 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
22662 Author: Mark Jackson <mpfj@mimc.co.uk>
22663 Date:   Fri Aug 1 09:48:29 2008 +0100
22664
22665     Fix bitmap display for atmel lcd controller
22666
22667     The current lcd_display_bitmap() function does not work properly
22668     for the Atmel LCD controller.
22669
22670     2 fixes need to be done:-
22671
22672     (a) when setting the colour map, use the lcd_setcolreg() function
22673         as provided by the Atmel driver
22674     (b) the data is never actually written to the lcd framebuffer !!
22675
22676     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22677
22678 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
22679 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22680 Date:   Fri Aug 1 08:40:34 2008 +0200
22681
22682     qemu_mips: update README to follow qemu update about default machine
22683
22684     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22685
22686 commit ac169d645f5f0e0b9a232563099209e92a355d8e
22687 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22688 Date:   Thu Jul 31 19:53:21 2008 -0500
22689
22690     ColdFire: Fix compilation issue caused by a missing function
22691
22692     Implement usec2ticks() which is used by fsl_i2c.c in
22693     lib_m68k/time.c
22694
22695     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22696
22697 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
22698 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22699 Date:   Thu Jul 31 19:53:06 2008 -0500
22700
22701     Fix compilation error for TASREG
22702
22703     TASREG is ColdFire platform, the include ppc4xx.h in
22704     board/esd/common/flash.c causes conflict.
22705
22706     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22707
22708 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
22709 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22710 Date:   Thu Jul 31 19:52:36 2008 -0500
22711
22712     Fix compilation error for MCF5275
22713
22714     Rename OBJ to COBJ in board/platform/Makefile
22715
22716     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22717
22718 commit 5c40548f01218360a1f1395198c50ff45f3035b5
22719 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22720 Date:   Thu Jul 31 19:52:28 2008 -0500
22721
22722     Fix compile error caused by incorrect function return type
22723
22724     Rename int mii_init(void) to void mii_init(void) for idmr
22725     ColdFire platform
22726
22727     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22728
22729 commit a58c78067c928976c082c758d3987e89ead5b191
22730 Author: Wolfgang Denk <wd@denx.de>
22731 Date:   Fri Aug 1 12:06:22 2008 +0200
22732
22733     Fix build issues with MPC8xx FADS boards.
22734
22735     Signed-off-by: Wolfgang Denk <wd@denx.de>
22736
22737 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
22738 Author: Wolfgang Denk <wd@denx.de>
22739 Date:   Thu Jul 31 17:54:03 2008 +0200
22740
22741     Prepare v1.3.4-rc2: update CHANGELOG
22742
22743     Signed-off-by: Wolfgang Denk <wd@denx.de>
22744
22745 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
22746 Author: Mark Jackson <mpfj@mimc.co.uk>
22747 Date:   Thu Jul 31 16:09:00 2008 +0100
22748
22749     Add gzipped logo support
22750
22751     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
22752
22753       If this option is set, additionally to standard BMP
22754       images, gzipped BMP images can be displayed via the
22755       splashscreen support or the bmp command.
22756
22757     However, the splashscreen function *only* supports standard BMP images.
22758
22759     This patch adds the documented gzip support.
22760
22761     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22762
22763 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
22764 Author: Mark Jackson <mpfj@mimc.co.uk>
22765 Date:   Thu Jul 31 15:56:48 2008 +0100
22766
22767     Fix Atmel LCD controller endianess for AVR32 processors
22768
22769     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
22770     AVR32 (big endian) platforms.
22771
22772     As such, the controller can handle both big and little endian memory.
22773
22774     This patch fixes the driver for the AVR32 platform.
22775
22776     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22777
22778 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
22779 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22780 Date:   Thu Jul 31 15:56:01 2008 +0200
22781
22782     apollon: fix build out of tree
22783
22784     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22785
22786 commit 2e752be39d3e398d4ab89ffa6634c397df298297
22787 Author: Guennadi Liakhovetski <lg@denx.de>
22788 Date:   Thu Jul 31 12:35:04 2008 +0200
22789
22790     Uncompressed images loaded to their start address shall set load_end too
22791
22792     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22793     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
22794
22795 commit c37207d7f51e19c17f859966f314e27cc1231801
22796 Author: Wolfgang Denk <wd@denx.de>
22797 Date:   Wed Jul 16 16:38:59 2008 +0200
22798
22799     Fix printf() format problems with configurable prompts
22800
22801     U-Boot allows for configurable prompt strings using the
22802     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
22803     the assumption was that any such user defined problts would contain
22804     exactly one "%d" format specifier. But some boards did not.
22805
22806     To allow for flexible boot prompts without adding too complex code we
22807     now allow to specify the whole list of printf() arguments in the user
22808     definition. This is powerful, but requires a responsible user who
22809     really understands what he is doing, as he needs to know for exanple
22810     which variables are available in the respective context.
22811
22812     Signed-off-by: Wolfgang Denk <wd@denx.de>
22813
22814 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
22815 Author: Wolfgang Denk <wd@denx.de>
22816 Date:   Thu Jul 31 17:02:14 2008 +0200
22817
22818     TQM85xx: fix typo introduce by commit ffbb5cb9
22819
22820     Signed-off-by: Wolfgang Denk <wd@denx.de>
22821
22822 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
22823 Author: Wolfgang Denk <wd@denx.de>
22824 Date:   Thu Jul 31 15:27:01 2008 +0200
22825
22826     mvbc_p board: fix most build warnings.
22827
22828     Signed-off-by: Wolfgang Denk <wd@denx.de>
22829
22830 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
22831 Author: Wolfgang Denk <wd@denx.de>
22832 Date:   Thu Jul 31 13:57:20 2008 +0200
22833
22834     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
22835
22836     Avoid "integer constant is too large for 'long' type" warnings.
22837     And simplify the code.
22838
22839     Signed-off-by: Wolfgang Denk <wd@denx.de>
22840
22841 commit 9196b44334c330cc13de2464c59181e4db71f549
22842 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
22843 Date:   Wed Jul 30 23:21:19 2008 +0400
22844
22845     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
22846
22847     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
22848
22849 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
22850 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
22851 Date:   Wed Jul 30 23:20:32 2008 +0400
22852
22853     PPC: Add pci_clk in the global_data for CPM2 processors
22854
22855     This patch adds pci_clk field to the global_data structure for the
22856     processors which have CPM2 module in case the CONFIG_PCI is defined.
22857
22858     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
22859
22860 commit f0ff885ca64655bee6540eb8a25eed90b1152686
22861 Author: Kumar Gala <galak@kernel.crashing.org>
22862 Date:   Wed Jul 30 14:13:30 2008 -0500
22863
22864     mpc85xx: Update linker scripts for Freescale boards
22865
22866     * Move to using absolute addressing always.  Makes the scripts a bit more
22867       portable and common
22868     * Moved .bss after the end of the image.  These allows us to have more
22869       room in the resulting binary image for code and data.
22870     * Removed .text object files that aren't really needed
22871     * Make sure _end is 4-byte aligned as the .bss init code expects this.
22872       (Its possible that the end of .bss isn't 4-byte aligned)
22873
22874     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22875
22876 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
22877 Author: Kumar Gala <galak@kernel.crashing.org>
22878 Date:   Wed Jul 30 08:01:15 2008 -0500
22879
22880     Fix compile warnings in dlmalloc
22881
22882     The origional code was using on odd reference to get to the first
22883     real element in av_[].  The first two elements of the array are
22884     not used for actual bins, but for house keeping.  If we are more
22885     explicit about how use the first few elements we can get rid of the
22886     warnings:
22887
22888     dlmalloc.c: In function 'malloc_extend_top':
22889     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
22890     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
22891     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
22892     ...
22893
22894     The logic of how this code came to be is:
22895         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
22896
22897     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
22898         bin_at(0) = &(av_[0])
22899
22900     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
22901
22902     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22903
22904 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
22905 Author: Stefan Roese <sr@denx.de>
22906 Date:   Wed Jul 30 10:21:01 2008 +0200
22907
22908     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
22909
22910     Signed-off-by: Stefan Roese <sr@denx.de>
22911
22912 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
22913 Author: Stefan Roese <sr@denx.de>
22914 Date:   Wed Jul 30 09:59:51 2008 +0200
22915
22916     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
22917
22918     A recent patch used '#if (CONFIG_CMD_USB)' instead of
22919     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
22920     common/bootm.c compile again.
22921
22922     Signed-off-by: Stefan Roese <sr@denx.de>
22923     Acked-by: Markus Klotzbuecher <mk@denx.de>
22924
22925 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
22926 Author: Kyungmin Park <kmpark@infradead.org>
22927 Date:   Tue Jul 22 08:01:43 2008 +0900
22928
22929     Remove unused I2C at apollon board
22930
22931     There are no I2C devices on this board.
22932
22933     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22934
22935 commit 3c95960e526b3b026da20201db64526f46faf14b
22936 Author: Wolfgang Denk <wd@denx.de>
22937 Date:   Thu Jul 31 10:12:09 2008 +0200
22938
22939     at91rm9200dk, csb637: fix NAND related build problems
22940
22941     Tried fixing NAND support for the at91rm9200dk board; untested.
22942     Disabled NAND support in the csb637 board config file.
22943
22944     Signed-off-by: Wolfgang Denk <wd@denx.de>
22945
22946 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
22947 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22948 Date:   Wed Jul 30 12:39:28 2008 +0200
22949
22950     ppc4xx: ML507: Environment in flash and MTD Support
22951
22952     - Relocate the location of U-Boot in the flash
22953     - Save the environment in one sector of the flash memory
22954     - MTD Support
22955
22956     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22957     Signed-off-by: Stefan Roese <sr@denx.de>
22958
22959 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
22960 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22961 Date:   Tue Jul 29 17:16:10 2008 +0200
22962
22963     ppc4xx: ML507: Use of get_ram_size in board ml507
22964
22965     - Change suggested by WD
22966
22967     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22968     Signed-off-by: Stefan Roese <sr@denx.de>
22969
22970 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
22971 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22972 Date:   Mon Jul 21 20:30:07 2008 +0200
22973
22974     ppc4xx: ML507: U-Boot in flash and System ACE
22975
22976     This patch allows booting from FLASH the ML507 board by Xilinx.
22977     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
22978
22979     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
22980     Signed-off-by: Stefan Roese <sr@denx.de>
22981
22982 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
22983 Author: Julien May <mailinglist@miromico.ch>
22984 Date:   Mon Jun 23 13:57:52 2008 +0200
22985
22986     Add support for the hammerhead (AVR32) board
22987
22988     The Hammerhead platform is built around a AVR32 32-bit microcontroller
22989     from Atmel.  It offers versatile peripherals, such as ethernet, usb
22990     device, usb host etc.
22991
22992     The board also incooperates a power supply and is a Power over Ethernet
22993     (PoE) Powered Device (PD).
22994
22995     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
22996     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
22997     DDR2 SDRAM interfaces, which will cover even the most exceptional need
22998     of memory bandwidth. Together with the onboard video decoder the board
22999     is ready for video processing.
23000
23001     For more information see: http:///www.miromico.com/hammerhead
23002
23003     Signed-off-by: Julien May <mailinglist@miromico.ch>
23004     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
23005     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23006
23007 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
23008 Author: Kumar Gala <galak@kernel.crashing.org>
23009 Date:   Tue Jul 29 12:23:49 2008 -0500
23010
23011     fsl_i2c: Use timebase timer functions instead of get_timer()
23012
23013     The current implementation of get_timer() is only really useful after we
23014     have relocated u-boot to memory.  The i2c code is used before that as part
23015     of the SPD DDR setup.
23016
23017     We actually have a bug when using the get_timer() code before relocation
23018     because the .bss hasn't been setup and thus we could be reading/writing
23019     a random location (probably in flash).
23020
23021     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23022
23023 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
23024 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
23025 Date:   Tue Jul 29 14:49:31 2008 +0200
23026
23027     Adder8xx: Fix CFG_MONITOR_LEN
23028
23029     Due to increased space usage, U-Boot can no longer be stored in three sectors.
23030     The current U-Boot use just over three flash sectors (197k), and U-Boot will
23031     become corrupt after saving environment variables. This patch adds another 64k
23032     to CFG_MONITOR_LEN.
23033
23034     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
23035
23036 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
23037 Author: Kyungmin Park <kmpark@infradead.org>
23038 Date:   Tue Jul 29 08:47:57 2008 +0900
23039
23040     Add OneNAND IPL related files to gitignore
23041
23042     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23043
23044 commit 8d87589e8e874df7120a3d9667f051bc33bac250
23045 Author: Rafal Jaworowski <raj@semihalf.com>
23046 Date:   Mon Jul 28 20:38:25 2008 +0200
23047
23048     API: Teach the storage layer about SATA and MMC options.
23049
23050     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23051     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23052
23053 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
23054 Author: Rafal Jaworowski <raj@semihalf.com>
23055 Date:   Mon Jul 28 20:37:48 2008 +0200
23056
23057     API: Dump contents of sector 0 in the demo application.
23058
23059     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23060     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23061
23062 commit 13ca6305f2eba49c175f6370c35286141059c789
23063 Author: Rafal Jaworowski <raj@semihalf.com>
23064 Date:   Mon Jul 28 20:37:10 2008 +0200
23065
23066     API: Correct storage enumeration routine, other minor fixes in API storage area.
23067
23068     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23069     Acked-by: Rafal Jaworowski <raj@semihalf.com>
23070
23071 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
23072 Author: Rafal Jaworowski <raj@semihalf.com>
23073 Date:   Mon Jul 28 20:36:19 2008 +0200
23074
23075     API: Fix compilation warnings in api_examples/demo.c.
23076
23077     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23078
23079 commit c14eefcc48212af2f3314809605698dd8393a90a
23080 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23081 Date:   Sun Jul 27 17:09:43 2008 +0200
23082
23083     Fix more printf() format warnings
23084
23085     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23086
23087 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
23088 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23089 Date:   Fri Jul 25 15:18:16 2008 +0200
23090
23091     Fix remaining CFG_CMD_ define, ifdef and comments
23092
23093     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23094
23095 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
23096 Author: Stefano Babic <sbabic@denx.de>
23097 Date:   Fri Jul 25 08:57:40 2008 +0200
23098
23099     Add include for config.h in command.h.
23100
23101     Because the cmd_tbl_s structure depends on the configuration file, it
23102     must be assured that config.h is included before the structure is
23103     evaluated by the compiler. If this is not certain, it could happen
23104     that the compiler generates structures of different size, depending
23105     on the fact if the source file includes <config.h> before or after
23106     <command.h>.
23107
23108     The effect is that u-boot crashes when tries to relocate the command
23109     table (for ppc) or try to access to the command table for other
23110     architectures.
23111
23112     The problem can happen on board-depending commands. All general
23113     commands under /common are unaffected, because they include already
23114     config.h before command.h.
23115
23116     Signed-off-by: Stefano Babic <sbabic@denx.de>
23117
23118 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
23119 Author: Scott Wood <scottwood@freescale.com>
23120 Date:   Wed Jul 23 13:16:06 2008 -0500
23121
23122     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
23123
23124     This fixes building out-of-tree.
23125
23126     Signed-off-by: Scott Wood <scottwood@freescale.com>
23127
23128 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
23129 Author: Heiko Schocher <hs@denx.de>
23130 Date:   Wed Jul 23 07:30:46 2008 +0200
23131
23132     Fix warnings if compiling with IDE support.
23133
23134     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
23135     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
23136
23137     Signed-off-by: Heiko Schocher <hs@denx.de>
23138
23139 commit 7610db17fd4d59c51d825488526d85ede2f06767
23140 Author: Adrian Filipi <adrian.filipi@eurotech.com>
23141 Date:   Tue Jul 22 14:28:11 2008 -0400
23142
23143     Removed support for the adsvix board.
23144
23145     Support for the adsvix was originally provided by Applied Data
23146     Systems (ADS), inc., now EuroTech, Inc.
23147     The board never shipped aside from some sample boards.
23148
23149     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
23150
23151 commit f96b44cef897bd372beb86dde1b33637c119d84d
23152 Author: Remy Bohmer <linux@bohmer.net>
23153 Date:   Tue Jul 22 16:22:11 2008 +0200
23154
23155     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
23156
23157     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
23158     never set, because relocation to RAM is actually never done by U-boot
23159     itself. However, several pieces of code check if this flag is set at
23160     some time.
23161
23162     So, to make sure this flag is set on boards skipping relocation, this
23163     is added to the initialisation of U-boot at a moment where it is safe
23164     to do so.
23165
23166     Signed-off-by: Remy Bohmer <linux@bohmer.net>
23167
23168 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
23169 Author: Timur Tabi <timur@freescale.com>
23170 Date:   Mon Jul 21 14:26:23 2008 -0500
23171
23172     fsl-i2c: fix writes to data segment before relocation
23173
23174     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
23175     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
23176     I2C bus speed and save the value in i2c_bus_speed[], which is a global
23177     variable.  It is an error to write to the data segment before relocation,
23178     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
23179
23180     Signed-off-by: Timur Tabi <timur@freescale.com>
23181
23182 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
23183 Author: Wolfgang Ocker <weo@reccoware.de>
23184 Date:   Mon Jul 28 16:56:51 2008 +0200
23185
23186     mips: Fix baudrate divisor computation on alchemy cpus
23187
23188     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
23189     on alchemy cpus.
23190
23191     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
23192     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23193
23194 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
23195 Author: Ben Warren <biggerbadderben@gmail.com>
23196 Date:   Sat Jul 5 00:08:48 2008 -0700
23197
23198     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
23199
23200     Renamed initialization functions for atngw100 and atstk1000.
23201     Removed initializations for these boards from net/eth.c
23202
23203     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23204     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23205
23206 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
23207 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23208 Date:   Wed Jul 23 10:55:46 2008 +0200
23209
23210     spi flash: Fix printf() format warnings
23211
23212     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23213
23214 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
23215 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23216 Date:   Wed Jul 23 10:55:31 2008 +0200
23217
23218     atmel_mci: Fix printf() format warnings
23219
23220     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23221
23222 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
23223 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23224 Date:   Wed Jul 23 10:55:15 2008 +0200
23225
23226     avr32: Fix printf() format warnings
23227
23228     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23229
23230 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
23231 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23232 Date:   Wed Jul 23 10:52:19 2008 +0200
23233
23234     avr32: asm/io.h needs asm/types.h
23235
23236     map_physmem() takes a phys_addr_t as parameter. This type is defined in
23237     asm/types.h, so we need to include that file.
23238
23239     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23240
23241 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
23242 Author: Michal Simek <monstr@monstr.eu>
23243 Date:   Thu Jul 17 12:25:46 2008 +0200
23244
23245     microblaze: Fix printf() format issues
23246
23247     Signed-off-by: Michal Simek <monstr@monstr.eu>
23248
23249 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
23250 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
23251 Date:   Thu Jul 17 07:27:51 2008 +0530
23252
23253     Remove unused code from lib_arm/bootm.c
23254
23255     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
23256
23257 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
23258 Author: Detlev Zundel <dzu@denx.de>
23259 Date:   Wed Jul 16 18:56:45 2008 +0200
23260
23261     tqm85xx: Demystify 'DK: !!!' comment
23262
23263     Signed-off-by: Detlev Zundel <dzu@denx.de>
23264
23265 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
23266 Author: Detlev Zundel <dzu@denx.de>
23267 Date:   Wed Jul 16 18:56:44 2008 +0200
23268
23269     83xx/85xx/86xx: Add LTEDR local bus definitions
23270
23271     Signed-off-by: Detlev Zundel <dzu@denx.de>
23272
23273 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
23274 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23275 Date:   Wed Jul 16 16:22:32 2008 +0200
23276
23277     serial_xuartlite.c: fix compiler warnings
23278
23279     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23280     Acked-by: Grant Likely <grant.likely@secretlab.ca>
23281
23282 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
23283 Author: Stefan Roese <sr@denx.de>
23284 Date:   Fri Jul 18 11:03:35 2008 +0200
23285
23286     POST: Add disable interrupts in some of the missing CPU POST tests
23287
23288     Some CPU POST tests did not disable the interrupts while running. This
23289     seems to be necessary to protect this self modifying code.
23290
23291     Signed-off-by: Stefan Roese <sr@denx.de>
23292
23293 commit 97a3bf268d096e0e97e54048448c35114edcf557
23294 Author: Stefan Roese <sr@denx.de>
23295 Date:   Fri Jul 18 10:43:24 2008 +0200
23296
23297     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
23298
23299     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
23300     CFG_64BIT_LBA.
23301
23302     Signed-off-by: Stefan Roese <sr@denx.de>
23303
23304 commit 0043ac55024963295fc79b39af85b6dc3b261e17
23305 Author: Niklaus Giger <niklaus.giger@netstal.com>
23306 Date:   Fri Jul 18 11:22:23 2008 +0200
23307
23308     POST PPC4xx/spr IVPR only if PPC440
23309
23310     The SPR IVPR register is only present (as far as I know) for
23311     processors with a PPC440 core.
23312
23313     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23314     Acked-by: Stefan Roese <sr@denx.de>
23315
23316 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
23317 Author: Stefan Roese <sr@denx.de>
23318 Date:   Fri Jul 18 10:42:29 2008 +0200
23319
23320     ppc4xx: Enable 64bit printf format on 440/460 platforms
23321
23322     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
23323     440/460 platforms. This may be needed since those platforms support
23324     36bit physical address space.
23325
23326     Signed-off-by: Stefan Roese <sr@denx.de>
23327
23328 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
23329 Author: Stefan Roese <sr@denx.de>
23330 Date:   Fri Jul 18 15:57:23 2008 +0200
23331
23332     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
23333
23334     This patch fixes a problem with incorrect MODTx (On Die Termination)
23335     setup for a configuration with multiple DIMM's and multiple ranks.
23336     Without this change Katmai was unable to boot Linux with DDR2 frequency
23337     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
23338     with DDR2 frequency = 640MHz and mem=4GB.
23339
23340     Signed-off-by: Stefan Roese <sr@denx.de>
23341
23342 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
23343 Author: Stefan Roese <sr@denx.de>
23344 Date:   Fri Jul 18 12:24:41 2008 +0200
23345
23346     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
23347
23348     Signed-off-by: Stefan Roese <sr@denx.de>
23349
23350 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
23351 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23352 Date:   Thu Jul 17 12:47:09 2008 +0200
23353
23354     ppc4xx: ML507 Board Support
23355
23356     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
23357         among others:
23358         -Virtex 5 FX FPGA (With a ppc440x5 in it)
23359         -256MB of SDRAM2
23360         -32MB of Flash
23361         -I2C Eeprom
23362         -System ACE chip
23363         -Serial ATA connectors
23364         -RS232 Level Conversors
23365         -Ethernet Transceiver
23366
23367     This patch gives support to a standard design produced by EDK for this
23368     board: ppc440, uartlite, xilinx_int and flash
23369
23370     - Includes Changes propossed by Stefan Roese and Michal Simek
23371
23372     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23373     Acked-by: Stefan Roese <sr@denx.de>
23374
23375 commit d865fd09809a3a18669f35f970781820af40e4de
23376 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23377 Date:   Thu Jul 17 11:44:12 2008 +0200
23378
23379     ppc4xx: CPU PPC440x5 on Virtex5 FX
23380
23381     -This patchs gives support for the embbedded ppc440
23382      on the Virtex5 FPGAs
23383     -interrupts.c divided in uic.c and interrupts.c
23384     -xilinx_irq.c for xilinx interrupt controller
23385     -Include modifications propossed by  Stefan Roese
23386
23387     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23388     Acked-by: Stefan Roese <sr@denx.de>
23389
23390 commit 340ccb260f21516be360745d5c5e3bd0657698df
23391 Author: Sebastian Siewior <bigeasy@linutronix.de>
23392 Date:   Wed Jul 16 20:04:49 2008 +0200
23393
23394     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
23395
23396     This got broken by commits 93c56f212c
23397      [cfi_flash: support of long cmd in U-boot.]
23398
23399     That command needs to be in little endian format on BE machines
23400     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
23401     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
23402     the cmdbuf in case portwidth = chipwidth = 8bit.
23403
23404     Cc: Alexey Korolev <akorolev@infradead.org>
23405     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
23406     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
23407
23408 commit 11188d55bc16dd907451c00282e00a038f73dd62
23409 Author: Stefan Roese <sr@denx.de>
23410 Date:   Thu Jul 17 10:40:51 2008 +0200
23411
23412     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
23413
23414     Signed-off-by: Stefan Roese <sr@denx.de>
23415
23416 commit 021f6df6e96af5b387810cf96d24848da1faa55c
23417 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23418 Date:   Thu Jul 10 17:20:51 2008 +0400
23419
23420     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
23421
23422     The thinko was quite silly indeed, I messed with !ptr. Normally this
23423     would trigger some fault, but in U-Boot NULL pointer is equal to phys
23424     0, so the code was working still, just didn't actually test mpc8315erdb
23425     environment variable value. Heh.
23426
23427     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23428     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23429
23430 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
23431 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23432 Date:   Tue Jul 8 21:00:04 2008 +0400
23433
23434     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
23435
23436     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
23437     support, or without TSEC1 but with USB ULPI PHY support in addition.
23438     With this patch user can specify desired USB PHY.
23439
23440     Also, it seems that we can't distinguish the two boards in software, so
23441     user have to set `mpc8315erdb' environment variable to either 'tsec1'
23442     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
23443     Linux will not probe for TSEC1.
23444
23445     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23446     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23447
23448 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
23449 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23450 Date:   Tue Jul 8 20:59:43 2008 +0400
23451
23452     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
23453
23454     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
23455     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
23456     (connected to the four-ports hub, usb host only).
23457
23458     This patch implements support for passing Dual-Role USB controller's
23459     device tree property phy_type through the usb_phy_type environment
23460     variable.
23461
23462     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23463     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
23464     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23465
23466 commit 699f05125509249072a0b865c8d35520d97cd501
23467 Author: Wolfgang Denk <wd@denx.de>
23468 Date:   Tue Jul 15 22:22:44 2008 +0200
23469
23470     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
23471
23472     Signed-off-by: Wolfgang Denk <wd@denx.de>
23473
23474 commit bcab74baa6b1b1c969038ab6f64a186239180405
23475 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23476 Date:   Tue Jul 15 11:23:02 2008 -0400
23477
23478     Round the serial port clock divisor value returned by calc_divisor()
23479
23480     Round the serial port clock divisor value returned by
23481     calc_divisor()
23482
23483     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23484     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
23485
23486 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
23487 Author: Robin Getz <rgetz@blackfin.uclinux.org>
23488 Date:   Tue Jul 15 21:44:46 2008 +0200
23489
23490     Fix DHCP protocol so U-Boot does not respond too early
23491     on the network with it's offered IP number; it should not reply until
23492     after it has received a DHCP ACK message. Also ensures that U-Boot
23493     does it's DHCPREQUEST as broadcast (per RFC 2131).
23494
23495     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
23496     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23497     Signed-off-by: Wolfgang Denk <wd@denx.de>
23498
23499 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
23500 Author: Sebastian Siewior <bigeasy@linutronix.de>
23501 Date:   Tue Jul 15 13:35:23 2008 +0200
23502
23503     cfi_flash: make the command u32 only
23504
23505     This got changed by commit 93c56f212c
23506     [cfi_flash: support of long cmd in U-boot.]
23507
23508     Long is the wrong type because it will behave differently on 64bit
23509     machines in a way that is probably not expected. u32 should be
23510     enough.
23511
23512     Cc: Alexey Korolev <akorolev@infradead.org>
23513     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
23514     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
23515
23516 commit 31cfe57491b183acae575d486729e158f016c27b
23517 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23518 Date:   Mon Jul 14 23:48:41 2008 +0200
23519
23520     tools/gitignore: update to all generated files
23521
23522     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23523
23524 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
23525 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
23526 Date:   Wed Jul 9 18:30:44 2008 +0200
23527
23528     mpc5xxx: Add MVBC_P board support
23529
23530     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
23531     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
23532
23533     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
23534     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
23535
23536 commit e2d31fb3450653115452144363d5bde4e5e3e693
23537 Author: Timur Tabi <timur@freescale.com>
23538 Date:   Thu Jun 19 17:56:11 2008 -0500
23539
23540     Update Freescale sys_eeprom.c to handle CCID formats
23541
23542     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
23543     NXID format replaces the older CCID format, but it's important to support both
23544     since most boards out there still use the CCID format.  This change is in
23545     preparation for using one file to handle both formats.  This will also unify
23546     EEPROM support for all Freescale 85xx and 86xx boards.
23547
23548     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
23549     instead of ID_EEPROM_ADDR.
23550
23551     Signed-off-by: Timur Tabi <timur@freescale.com>
23552
23553 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
23554 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23555 Date:   Fri Jul 11 17:22:43 2008 +0900
23556
23557     pci: sh: Add pci_skip_dev and pci_print_dev function
23558
23559     Add function of new PCI, pci_skip_dev and pci_print_dev.
23560
23561     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
23562     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23563
23564 commit 1107014e835ec9d46c0333f4211d104f77442db0
23565 Author: Andy Fleming <afleming@freescale.com>
23566 Date:   Mon Jul 14 20:29:07 2008 -0500
23567
23568     Clean up INIT_RAM options
23569
23570     The L2_INIT_RAM option was unused, and recent changes to the TLB code
23571     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
23572     the amount of mapped space attached to nothing, we change things so the TLBs
23573     get cleared.
23574
23575     Signed-off-by: Andy Fleming <afleming@freescale.com>
23576
23577 commit 4524561820a9327e89107854b3a7187800ccf719
23578 Author: Andy Fleming <afleming@freescale.com>
23579 Date:   Mon Jul 14 20:26:57 2008 -0500
23580
23581     Remove fake flash bank from 8544 DS
23582
23583     The fake flash bank was generating errors for anyone who didn't have a
23584     PromJET hooked up to the board.  As that constitutes the vast majority of
23585     users, we remove it.
23586
23587     Signed-off-by: Andy Fleming <afleming@freescale.com>
23588
23589 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
23590 Author: Kumar Gala <galak@kernel.crashing.org>
23591 Date:   Mon Jul 14 14:07:03 2008 -0500
23592
23593     MPC8544DS: Add ATI Video card support
23594
23595     Add support for using a PCIe ATI Video card on PCIe2.
23596
23597     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23598
23599 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
23600 Author: Kumar Gala <galak@kernel.crashing.org>
23601 Date:   Mon Jul 14 14:07:02 2008 -0500
23602
23603     85xx: Add some L1/L2 SPR register definitions
23604
23605     Add new L1/L2 SPRs related to e500mc cache config and control.
23606
23607     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23608
23609 commit e5852787f0c3c442a276262f13d91ca450605ac0
23610 Author: Kumar Gala <galak@kernel.crashing.org>
23611 Date:   Mon Jul 14 14:07:01 2008 -0500
23612
23613     MPC8544DS: Report board id, board version and fpga version.
23614
23615     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23616
23617 commit 73f15a060f67a2462551c334215bd20fac6b81d1
23618 Author: Kumar Gala <galak@kernel.crashing.org>
23619 Date:   Mon Jul 14 14:07:00 2008 -0500
23620
23621     85xx: Cleanup L2 cache size detection
23622
23623     The L2 size detection code was a bit confusing and we kept having to add
23624     code to it to handle new processors.  Change the sense of detection so we
23625     look for the older processors that aren't changing.
23626
23627     Also added support for 1M cache size on 8572.
23628
23629     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23630
23631 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
23632 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23633 Date:   Fri Jul 11 15:33:08 2008 -0400
23634
23635     sbc8560: enable CONFIG_OF_LIBFDT by default
23636
23637     Make the default build for the sbc8560 board be powerpc
23638     capable with libfdt support.
23639
23640     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23641
23642 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
23643 Author: Andy Fleming <afleming@freescale.com>
23644 Date:   Mon Jul 14 20:04:40 2008 -0500
23645
23646     Fix indentation for default boot environment variables
23647
23648     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
23649     similar #defines in sbc8560.h.
23650
23651     Signed-off-by: Andy Fleming <afleming@freescale.com>
23652
23653 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
23654 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23655 Date:   Fri Jul 11 15:33:07 2008 -0400
23656
23657     sbc8560: add default fdt values
23658
23659     Add in the default fdt settings and the typical EXTRA_ENV
23660     settings as borrowed from the mpc8560ads.  Fix a couple
23661     of stale references to the mpc8560ads dating back to the
23662     original clone/fork.
23663
23664     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23665     Signed-off-by: Andy Fleming <afleming@freescale.com>
23666
23667 commit d04e76edf92f7f89696989e8702b97e020455af3
23668 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23669 Date:   Fri Jul 11 15:33:06 2008 -0400
23670
23671     sbc8560: add in ft_board_setup()
23672
23673     Add in for the sbc8560, the ft_board_setup() routine, based on what is
23674     in use for the Freescale MPC8560ADS board.
23675
23676     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23677
23678 commit c158bcaca3b31cbe38c4143812e6170e38a57393
23679 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23680 Date:   Fri Jul 11 15:33:05 2008 -0400
23681
23682     sbc8560: define eth0 and eth1 instead of eth1 and eth2
23683
23684     The existing config doesn't define CONFIG_HAS_ETH0, and so the
23685     fdt support doesn't update the zeros in the dtb local-mac with
23686     real data from the u-boot env.  Since the existing config is
23687     tailored to just two interfaces, get rid of the ETH2 definitions
23688     at the same time.
23689
23690     Also don't include any end user specific data into the environment
23691     by default -- things like MAC address, network parameters etc. need
23692     to come from the end user.
23693
23694     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23695     Signed-off-by: Andy Fleming <afleming@freescale.com>
23696
23697 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
23698 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23699 Date:   Fri Jul 11 15:33:04 2008 -0400
23700
23701     sbc8560: properly set cs0_bnds for 512MB
23702
23703     The sbc8560 board ships with 512MB of memory installed,
23704     but the current cs0_bnds is hard coded for 256MB.  Set the
23705     value based on CFG_SDRAM_SIZE.
23706
23707     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23708
23709 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
23710 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23711 Date:   Fri Jul 11 15:33:03 2008 -0400
23712
23713     sbc8560: proper definitions for TSEC.
23714
23715     The definitions for the TSEC have become out of date.  There is no
23716     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
23717     Update to match those of other boards, like the MPC8560ADS.
23718
23719     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23720     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23721
23722 commit 71074abbe0c76429577aff58aeff0a24ad210b23
23723 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
23724 Date:   Wed Jul 9 13:23:05 2008 -0400
23725
23726     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
23727
23728     Some boards that have external 16550 UARTs don't have a direct
23729     tie between bi_busfreq and the clock used for the UARTs.  Boards
23730     that do have such a tie should set CFG_NS16550_CLK to be
23731     get_bus_freq(0) -- which most of them do already.
23732
23733     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
23734     Acked-by: Kim Phillips <kim.phillips@freescale.com>
23735
23736 commit 24ef76f320fbadf074105229826514db140f939f
23737 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
23738 Date:   Wed Jul 2 07:03:53 2008 -0700
23739
23740     Change the temp map to ROM to align addresses to page size.
23741
23742     With a page size of BOOKE_PAGESZ_16M, both the real and effective
23743     addresses must be multiples of 16MB.  The hardware silently truncates
23744     them so the code happens to work.  This patch clarifies the situation
23745     by establishing addresses that the hardware doesn't need to truncate.
23746
23747     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
23748     Signed-off-by: Andy Fleming <afleming@freescale.com>
23749
23750 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
23751 Author: Kim Phillips <kim.phillips@freescale.com>
23752 Date:   Tue Jun 17 17:45:22 2008 -0500
23753
23754     mpc85xx: use IS_E_PROCESSOR macro
23755
23756     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23757
23758 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
23759 Author: Kim Phillips <kim.phillips@freescale.com>
23760 Date:   Mon Jun 16 15:55:53 2008 -0500
23761
23762     fdt: add crypto node handling for MPC8{3, 5}xxE processors
23763
23764     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
23765     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
23766     if on an 'EA' processor, e.g. MPC8349EA.
23767
23768     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23769
23770 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
23771 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23772 Date:   Fri Jul 11 15:10:11 2008 -0400
23773
23774     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
23775
23776     ARM DaVinci: Remove extern phy_t declaration by moving
23777     code to proper place.
23778
23779     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23780
23781 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
23782 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23783 Date:   Fri Jul 11 15:10:10 2008 -0400
23784
23785     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
23786
23787     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
23788     and prototype of i2c_init().
23789
23790     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
23791
23792 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
23793 Author: Kumar Gala <galak@kernel.crashing.org>
23794 Date:   Mon Jul 14 14:03:02 2008 -0500
23795
23796     Fix some more printf() format problems.
23797
23798     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23799
23800 commit 45b16d22c64674ccd8c4637456a987463609141c
23801 Author: Wolfgang Denk <wd@denx.de>
23802 Date:   Mon Jul 14 22:38:42 2008 +0200
23803
23804     Fix coding style; make code better parsable by external tools
23805
23806     Signed-off-by: Wolfgang Denk <wd@denx.de>
23807
23808 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
23809 Author: Wolfgang Denk <wd@denx.de>
23810 Date:   Mon Jul 14 21:19:08 2008 +0200
23811
23812     cpu/i386/serial.c: Fix syntax errors
23813
23814     Signed-off-by: Wolfgang Denk <wd@denx.de>
23815
23816 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
23817 Author: Wolfgang Denk <wd@denx.de>
23818 Date:   Mon Jul 14 20:41:35 2008 +0200
23819
23820     elppc board: Coding style cleanup.
23821
23822     Signed-off-by: Wolfgang Denk <wd@denx.de>
23823
23824 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
23825 Author: Wolfgang Denk <wd@denx.de>
23826 Date:   Mon Jul 14 20:40:22 2008 +0200
23827
23828     elppc board: fix syntax error.
23829
23830     Signed-off-by: Wolfgang Denk <wd@denx.de>
23831
23832 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
23833 Author: Wolfgang Denk <wd@denx.de>
23834 Date:   Mon Jul 14 20:38:26 2008 +0200
23835
23836     EB+MCF-EV123 board: fix coding style (alingment)
23837
23838     Signed-off-by: Wolfgang Denk <wd@denx.de>
23839
23840 commit 6841785a0bb0f38175456a923edd634fb7dd6947
23841 Author: Wolfgang Denk <wd@denx.de>
23842 Date:   Mon Jul 14 20:36:44 2008 +0200
23843
23844     EB+MCF-EV123 board: fix syntx error
23845
23846     Signed-off-by: Wolfgang Denk <wd@denx.de>
23847
23848 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
23849 Author: Andy Fleming <afleming@freescale.com>
23850 Date:   Mon Jul 7 18:02:08 2008 -0500
23851
23852     Remove LBC_CACHE_BASE from 8544 DS
23853
23854     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
23855     space for some anyway, we were allowing speculative loads into unmapped space,
23856     which would cause an exception (annoying, even if ultimately harmless).
23857     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
23858     problem.
23859
23860     Signed-off-by: Andy Fleming <afleming@freescale.com>
23861
23862 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
23863 Author: Wolfgang Denk <wd@denx.de>
23864 Date:   Mon Jul 14 15:19:07 2008 +0200
23865
23866     Code cleanup: fix old style assignment ambiguities like "=-" etc.
23867
23868     Signed-off-by: Wolfgang Denk <wd@denx.de>
23869
23870 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
23871 Author: Wolfgang Denk <wd@denx.de>
23872 Date:   Mon Jul 14 15:10:53 2008 +0200
23873
23874     AmigaOneG3SE: remove dead and incomplete files
23875
23876     Signed-off-by: Wolfgang Denk <wd@denx.de>
23877
23878 commit b64f190b7a34224df09b559ca111eb1b733f00ad
23879 Author: Wolfgang Denk <wd@denx.de>
23880 Date:   Mon Jul 14 15:06:35 2008 +0200
23881
23882     Fix printf() format issues with sizeof_t types by using %zu
23883
23884     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23885     Signed-off-by: Wolfgang Denk <wd@denx.de>
23886
23887 commit f354b73e16a86f9e9085471a830605f74f84ea5d
23888 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23889 Date:   Mon Jul 14 14:11:45 2008 +0200
23890
23891     vsprintf: add z and t options
23892
23893     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23894
23895 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
23896 Author: Wolfgang Denk <wd@denx.de>
23897 Date:   Sun Jul 13 23:07:35 2008 +0200
23898
23899     Fix some more printf() format issues.
23900
23901     Signed-off-by: Wolfgang Denk <wd@denx.de>
23902
23903 commit d5996dd555edf52721b7691a4c59de016251ed39
23904 Author: Wolfgang Denk <wd@denx.de>
23905 Date:   Sun Jul 13 19:51:00 2008 +0200
23906
23907     Fix some more printf() format problems.
23908
23909     Signed-off-by: Wolfgang Denk <wd@denx.de>
23910
23911 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
23912 Author: Wolfgang Denk <wd@denx.de>
23913 Date:   Sun Jul 13 19:48:26 2008 +0200
23914
23915     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
23916
23917     Signed-off-by: Wolfgang Denk <wd@denx.de>
23918
23919 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
23920 Author: Anatolij Gustschin <agust@denx.de>
23921 Date:   Sat Jul 12 17:31:36 2008 +0200
23922
23923     Fix bug in Lime video driver
23924
23925     We need to wait while drawing engine clears frame
23926     buffer before any further software accesses to frame
23927     buffer will be initiated. Otherwise software drawn
23928     parts could be partially destroyed by the drawing
23929     engine or even GDC chip freeze could occur (as
23930     observed on socrates board).
23931
23932     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23933
23934 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
23935 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23936 Date:   Sat Jul 12 14:36:34 2008 +0200
23937
23938     Fix some more printf() format issues.
23939
23940     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23941
23942 commit 18c8a28aad49803780bd8d52432ded528e37e701
23943 Author: Michal Simek <monstr@monstr.eu>
23944 Date:   Fri Jul 11 15:11:57 2008 +0200
23945
23946     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
23947
23948     Signed-off-by: Michal Simek <monstr@monstr.eu>
23949     Acked-by: Stefan Roese <sr@denx.de>
23950
23951 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
23952 Author: Michal Simek <monstr@monstr.eu>
23953 Date:   Fri Jul 11 11:50:53 2008 +0200
23954
23955     hwmon: Cleaning hwmon devices
23956
23957     Clean Makefile
23958     Move device specific values to driver for better reading
23959
23960     Signed-off-by: Michal Simek <monstr@monstr.eu>
23961     Acked-by: Stefan Roese <sr@denx.de>
23962
23963 commit c78fce699c7ff467ecd841da6a79f065180bf578
23964 Author: Michal Simek <monstr@monstr.eu>
23965 Date:   Fri Jul 11 10:43:13 2008 +0200
23966
23967     FIS: repare incorrect return value with ramdisk handling
23968
23969     Microblaze and PowerPC use boot_get_ramdisk for loading
23970     ramdisk to memory with checking return value.
23971     Return 0 means success. Return 1 means failed.
23972     Here is correspond part of code from bootm.c which check
23973     return code.
23974
23975     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
23976                 &rd_data_start, &rd_data_end);
23977     if (ret)
23978         goto error;
23979
23980     Signed-off-by: Michal Simek <monstr@monstr.eu>
23981
23982 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
23983 Author: Michal Simek <monstr@monstr.eu>
23984 Date:   Fri Jul 11 10:10:32 2008 +0200
23985
23986     microblaze: Remove useless ancient headers
23987
23988     Signed-off-by: Michal Simek <monstr@monstr.eu>
23989
23990 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
23991 Author: Michal Simek <monstr@monstr.eu>
23992 Date:   Fri Jul 11 10:10:31 2008 +0200
23993
23994     microblaze: Clean uartlite driver
23995
23996     Redesign uartlite driver to in_be32 and out_be32 macros
23997     Fix missing header in io.h
23998
23999     Signed-off-by: Michal Simek <monstr@monstr.eu>
24000     Acked-by: Grant Likely <grant.likely@secretlab.ca>
24001
24002 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
24003 Author: Marcel Ziswiler <marcel@ziswiler.com>
24004 Date:   Fri Jul 11 02:39:14 2008 +0200
24005
24006     Enable passing of ATAGs required by latest Linux kernel.
24007
24008 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
24009 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24010 Date:   Fri Jul 11 10:24:15 2008 -0400
24011
24012     Fix integer overflow warning in calc_divisor()
24013
24014     which happened when rounding the serial port clock divisor
24015
24016     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24017
24018 commit 6b760189d77f001684e3160b355c185ca3804961
24019 Author: Marcel Ziswiler <marcel@ziswiler.com>
24020 Date:   Fri Jul 11 01:09:59 2008 +0200
24021
24022     Fix build time warnings in function mmc_decode_csd()
24023
24024     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24025
24026 commit c15947d6ce0d59925c97fdfac692476af6e262d0
24027 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24028 Date:   Thu Jul 10 10:46:33 2008 -0400
24029
24030     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
24031
24032     caused by missing dcache status/enable/disable functions.
24033
24034     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24035
24036 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
24037 Author: Stefan Roese <sr@denx.de>
24038 Date:   Thu Jul 10 13:53:31 2008 +0200
24039
24040     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
24041
24042     This patch removes some ft_board_setup() functions from some 4xx boards.
24043     This can be done since we now have a default weak implementation for this
24044     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
24045     implementation like canyonlands need their own version.
24046
24047     Signed-off-by: Stefan Roese <sr@denx.de>
24048
24049 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
24050 Author: Wolfgang Denk <wd@denx.de>
24051 Date:   Sun Jul 13 14:58:16 2008 +0200
24052
24053     Add last known maintainer for orphaned boards; reformat.
24054
24055     Signed-off-by: Wolfgang Denk <wd@denx.de>
24056
24057 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
24058 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24059 Date:   Thu Jul 10 13:16:04 2008 +0200
24060
24061     Remove kharris@nexus-tech.net from MAINTAINERS
24062
24063     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
24064     anymore. You can't be a maintainer without a valid e-mail address, so
24065     move all boards that used to be maintained by Kyle Harris to the
24066     "orphaned" list.
24067
24068     Currently, only PowerPC has a list of orphaned boards, so this patch
24069     creates one for ARM as well.
24070
24071     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24072
24073 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
24074 Author: Anatolij Gustschin <agust@denx.de>
24075 Date:   Thu Jul 10 01:15:10 2008 +0200
24076
24077     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
24078
24079     On the at91sam9260ep development board there is an EEPROM
24080     connected to the TWI interface (PA23, PA24 Peripheral A
24081     multiplexing), so we cannot use these pins as ETX2, ETX3.
24082     This patch configures PA10, PA11 pins for ETX2, ETX3
24083     instead of PA23, PA24 pins.
24084
24085     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24086     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
24087
24088 commit f889265753ddf4465d9d580827bb9289bfac55d6
24089 Author: Kenneth Johansson <kenneth@southpole.se>
24090 Date:   Sat Jul 12 13:18:34 2008 -0600
24091
24092     fix DIU for small screens
24093
24094     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
24095     so it was not possible to set a slow pixel clock and thus prevented
24096     display on small screens.
24097
24098     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
24099     Acked-by: John Rigby <jrigby@freescale.com>
24100
24101 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
24102 Author: John Rigby <jrigby@freescale.com>
24103 Date:   Fri Jul 11 14:44:09 2008 -0600
24104
24105     ADS5121 cleanup compile warnings
24106
24107     board/ads5121/iopin.c
24108         Replace bit fields in struct iopin_t with a single
24109         field and intialize it via plain old macros.
24110         This fixes the type pun warnings and makes the code
24111         more readable.
24112
24113     board/ads5121/ads5121.c
24114         Add include iopin.h to ads5121.c for the iopin_initialize
24115         prototype.
24116
24117         Add an extern void ads5121_diu_init(void)
24118
24119     Signed-off-by: John Rigby <jrigby@freescale.com>
24120
24121 commit bde63587622c4b830a27d1ddf7265843de9e994f
24122 Author: Wolfgang Denk <wd@denx.de>
24123 Date:   Fri Jul 11 22:56:11 2008 +0200
24124
24125     Fix some more printf() format issues.
24126
24127     Signed-off-by: Wolfgang Denk <wd@denx.de>
24128
24129 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
24130 Author: Wolfgang Denk <wd@denx.de>
24131 Date:   Fri Jul 11 22:55:31 2008 +0200
24132
24133     Fixed some out-of-tree build issues
24134
24135     Signed-off-by: Wolfgang Denk <wd@denx.de>
24136
24137 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
24138 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24139 Date:   Wed Jul 9 16:20:23 2008 -0500
24140
24141     ColdFire: Fix FB CS not setup properly for Mcf5282
24142
24143     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
24144     CFG_CSn_RO is defined as 0, the chipselect will not
24145     be assigned.
24146
24147     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24148
24149 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
24150 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24151 Date:   Wed Jul 9 15:47:27 2008 -0500
24152
24153     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
24154
24155     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
24156     clock module in cpu/<cf arch>/cpu_init.c
24157
24158     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24159
24160 commit f94945b517f10e01927101679c62361e03d4e837
24161 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24162 Date:   Wed Jul 9 15:25:01 2008 -0500
24163
24164     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
24165
24166     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24167
24168 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
24169 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24170 Date:   Wed Jul 9 15:21:44 2008 -0500
24171
24172     Fix compile error caused by missing timer function
24173
24174     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
24175
24176     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24177
24178 commit c37ea031175b807c54e6bad9b270e9bede6c0078
24179 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24180 Date:   Wed Jul 9 15:14:25 2008 -0500
24181
24182     Fix compile error caused by incorrect function return type
24183
24184     Rename int mii_init(void) to void mii_init(void)
24185
24186     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24187
24188 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
24189 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24190 Date:   Wed Jun 18 19:27:23 2008 -0500
24191
24192     ColdFire: Fix power up issue for MCF5235
24193
24194     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24195
24196 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
24197 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24198 Date:   Wed Jun 18 19:19:07 2008 -0500
24199
24200     ColdFire: Fix compiling error for MCF5275
24201
24202     The compiling error was caused by missing a closed parentheses
24203     in speed.c
24204
24205     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24206
24207 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
24208 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24209 Date:   Wed Jun 18 19:14:01 2008 -0500
24210
24211     ColdFire: Fix timer issue for MCF5272
24212
24213     The timer was assigned to wrong timer memory mapped which
24214     caused udelay() and timer() not working properly.
24215
24216     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24217
24218 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
24219 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24220 Date:   Wed Jun 18 19:12:13 2008 -0500
24221
24222     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
24223
24224     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
24225
24226 commit 8371dc2066136be21e10b7b9293e469297d77298
24227 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24228 Date:   Wed Jun 18 19:05:23 2008 -0500
24229
24230     ColdFire: Add -got=single param for new linux v4e toolchains
24231
24232     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
24233
24234 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
24235 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24236 Date:   Wed Jun 18 13:21:19 2008 -0500
24237
24238     ColdFire: Fix code flash configuration for M547x/M548x boards
24239
24240     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
24241
24242 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
24243 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24244 Date:   Tue Jun 24 12:12:16 2008 -0500
24245
24246     ColdFire: Fix warning messages by passing correct data type in board.c
24247
24248     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24249
24250 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
24251 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24252 Date:   Thu May 29 12:21:54 2008 -0500
24253
24254     ColdFire: Fix UART baudrate formula
24255
24256     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
24257     can generate the wrong divisor due to integer division truncation.
24258     Round the calculated divisor value by adding 1/2 the baudrate
24259     before dividing by the baudrate.
24260
24261     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24262     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24263
24264 commit b578fb471444cbd7db1285701ba51343baaf73fb
24265 Author: Stefan Roese <sr@denx.de>
24266 Date:   Thu Jul 10 11:38:26 2008 +0200
24267
24268     ppc4xx: Fix include sequence in 4xx_pcie.c
24269
24270     This patch now moves common.h to the top of the inlcude list. This
24271     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
24272     the phys_size_t/phys_addr_t are defined to the correct size in this
24273     driver.
24274
24275     Signed-off-by: Stefan Roese <sr@denx.de>
24276
24277 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
24278 Author: Stefan Roese <sr@denx.de>
24279 Date:   Fri Jul 11 13:10:56 2008 +0200
24280
24281     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
24282
24283     Signed-off-by: Stefan Roese <sr@denx.de>
24284
24285 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
24286 Author: Stefan Roese <sr@denx.de>
24287 Date:   Fri Jul 11 11:40:13 2008 +0200
24288
24289     ppc4xx: Fix small korat merge problem
24290
24291     Signed-off-by: Stefan Roese <sr@denx.de>
24292
24293 commit 1d0554736a0a1dd59718acda660871ce56b69e18
24294 Author: Stefan Roese <sr@denx.de>
24295 Date:   Fri Jul 11 11:34:52 2008 +0200
24296
24297     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
24298
24299     Signed-off-by: Stefan Roese <sr@denx.de>
24300
24301 commit 3a82113ed5934d498f25080441a8261fc9454b15
24302 Author: Stefan Roese <sr@denx.de>
24303 Date:   Thu Jul 10 16:37:09 2008 +0200
24304
24305     ppc4xx: Add 460SX UIC defines
24306
24307     Only the really needed ones are added (cascading and EMAC/MAL).
24308
24309     Signed-off-by: Stefan Roese <sr@denx.de>
24310
24311 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
24312 Author: Stefan Roese <sr@denx.de>
24313 Date:   Mon Jun 30 14:11:07 2008 +0200
24314
24315     ppc4xx: Continue cleanup of ppc440.h
24316
24317     This patch continues the ppc440.h cleanup by removing some of the unused
24318     defines.
24319
24320     Signed-off-by: Stefan Roese <sr@denx.de>
24321
24322 commit d9056b7913ed6a228d2f33671d916efedee541dd
24323 Author: Stefan Roese <sr@denx.de>
24324 Date:   Mon Jun 30 14:05:05 2008 +0200
24325
24326     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
24327
24328     This patch cleans up the 440SPe PCIe register usage. Now only defines
24329     from the include/asm-ppc/4xx_pcie.h are used.
24330
24331     Signed-off-by: Stefan Roese <sr@denx.de>
24332
24333 commit 5de851403b01489b493fa83137ad990b8ce60d1c
24334 Author: Stefan Roese <sr@denx.de>
24335 Date:   Thu Jun 26 17:36:39 2008 +0200
24336
24337     ppc4xx: Rework 440GX UIC handling
24338
24339     This patch reworks the 440GX interrupt handling so that the common 4xx
24340     code can be used. The 440GX is an exception to all other 4xx variants
24341     by having the cascading interrupt vectors not on UIC0 but on a special
24342     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
24343     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
24344     handling is simpler without any 440GX special cases.
24345
24346     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
24347
24348     Signed-off-by: Stefan Roese <sr@denx.de>
24349
24350 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
24351 Author: Stefan Roese <sr@denx.de>
24352 Date:   Thu Jun 26 13:40:57 2008 +0200
24353
24354     ppc4xx: Consolidate PPC4xx UIC defines
24355
24356     This 2nd patch now removes all UIC mask bit definition. They should be
24357     generated from the vectors by using the UIC_MASK() macro from now on.
24358     This way only the vectors need to get defined for new PPC's.
24359
24360     Also only the really used interrupt vectors are now defined. This makes
24361     definitions for new PPC versions easier and less error prone.
24362
24363     Another part of this patch is that the 4xx emac driver got a little
24364     cleanup, since now the usage of the interrupts is clearer.
24365
24366     Signed-off-by: Stefan Roese <sr@denx.de>
24367
24368 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
24369 Author: Stefan Roese <sr@denx.de>
24370 Date:   Wed Jun 25 10:59:22 2008 +0200
24371
24372     ppc4xx: Consolidate PPC4xx UIC defines
24373
24374     This patch is the first step to consolidate the UIC related defines in the
24375     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
24376     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
24377     steps.
24378
24379     Signed-off-by: Stefan Roese <sr@denx.de>
24380
24381 commit 7ee2619c20ccecd57966d74d844e6329e141261c
24382 Author: Stefan Roese <sr@denx.de>
24383 Date:   Tue Jun 24 17:18:50 2008 +0200
24384
24385     ppc4xx: Consolidate PPC4xx EBC defines
24386
24387     This patch removes all EBC related defines from the PPC4xx headers
24388     ppc405.h and ppc440.h and introduces a new header
24389
24390     include/asm-ppc/ppc4xx-ebc.h
24391
24392     with all those defines.
24393
24394     Signed-off-by: Stefan Roese <sr@denx.de>
24395
24396 commit e321801bed5a6d896d298c00fd20046f039d5d66
24397 Author: Stefan Roese <sr@denx.de>
24398 Date:   Thu Jul 10 13:52:44 2008 +0200
24399
24400     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
24401
24402     This patch removes some ft_board_setup() functions from some 4xx boards.
24403     This can be done since we now have a default weak implementation for this
24404     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
24405     implementation like canyonlands need their own version.
24406
24407     Signed-off-by: Stefan Roese <sr@denx.de>
24408
24409 commit 08250eb2edbd96514d049602d9e134110ac3185f
24410 Author: Stefan Roese <sr@denx.de>
24411 Date:   Thu Jul 10 15:32:32 2008 +0200
24412
24413     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
24414
24415     Signed-off-by: Stefan Roese <sr@denx.de>
24416
24417 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
24418 Author: Grant Erickson <gerickson@nuovations.com>
24419 Date:   Tue Jul 8 08:35:00 2008 -0700
24420
24421     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
24422
24423     This patch adds support for placing the RGMII bridge on the
24424     PPC405EX(r) into MII/GMII mode and allows a board-specific
24425     configuration to specify the bridge mode at compile-time.
24426
24427     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24428     Signed-off-by: Stefan Roese <sr@denx.de>
24429
24430 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
24431 Author: Grant Erickson <gerickson@nuovations.com>
24432 Date:   Wed Jul 9 16:46:35 2008 -0700
24433
24434     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
24435
24436     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
24437     controller registers (MODT and INITPLR) used by the
24438     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
24439     peer values used for the INITPLR MR and EMR registers,
24440     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
24441
24442     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
24443     Kilauea are replaced by equivalent mnemonics to make it easier to
24444     compare and contrast other 405EX(r)-based boards (e.g. during board
24445     bring-up).
24446
24447     Finally, unified the SDRAM controller register dump routine such that
24448     it can be used across all processor variants that utilize the IBM DDR2
24449     SDRAM controller core. It produces output of the form:
24450
24451         PPC4xx IBM DDR2 Register Dump:
24452                 ...
24453                 SDRAM_MB0CF[40] = 0x00006701
24454                 ...
24455
24456     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
24457     since it is not uncommon that the DCR values in header files get mixed
24458     up and it helps to validate, at a glance, they match what is printed
24459     in the user manual.
24460
24461     Tested on:
24462       AMCC Kilauea/Haleakala:
24463       - NFS Linux Boot: PASSED
24464       - NAND Linux Boot: PASSED
24465
24466     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24467     Signed-off-by: Stefan Roese <sr@denx.de>
24468
24469 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
24470 Author: Grant Erickson <gerickson@nuovations.com>
24471 Date:   Wed Jul 9 16:31:59 2008 -0700
24472
24473     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
24474
24475     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
24476     revision ID DCR based on 405EX, and add field mnemonics for bus error
24477     status and ECC error status registers.
24478
24479     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24480     Signed-off-by: Stefan Roese <sr@denx.de>
24481
24482 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
24483 Author: Grant Erickson <gerickson@nuovations.com>
24484 Date:   Wed Jul 9 16:31:36 2008 -0700
24485
24486     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
24487
24488     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
24489
24490     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24491     Signed-off-by: Stefan Roese <sr@denx.de>
24492
24493 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
24494 Author: Grant Erickson <gerickson@nuovations.com>
24495 Date:   Wed Jul 9 11:55:46 2008 -0700
24496
24497     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
24498
24499     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
24500     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
24501     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
24502
24503     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
24504     which causes SDRAM initialization to periodically fail since it can
24505     prematurely indicate SDRAM ready status.
24506
24507     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24508     Signed-off-by: Stefan Roese <sr@denx.de>
24509
24510 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
24511 Author: Feng Kan <fkan@amcc.com>
24512 Date:   Tue Jul 8 22:48:42 2008 -0700
24513
24514     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
24515
24516     Add AMCC Redwood reference board that uses the latest
24517     PPC 464 CPU processor combined with a rich mix of peripheral
24518     controllers. The board will support PCIe, mutiple Gig ethernet
24519     ports, advanced hardware RAID assistance and IEEE 1588.
24520
24521     Signed-off-by: Feng Kan <fkan@amcc.com>
24522     Signed-off-by: Stefan Roese <sr@denx.de>
24523
24524 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
24525 Author: Feng Kan <fkan@amcc.com>
24526 Date:   Tue Jul 8 22:48:07 2008 -0700
24527
24528     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
24529
24530     Signed-off-by: Feng Kan <fkan@amcc.com>
24531     Signed-off-by: Stefan Roese <sr@denx.de>
24532
24533 commit 7d30793685efcada183891c78fc892e6c9ba50c7
24534 Author: Feng Kan <fkan@amcc.com>
24535 Date:   Tue Jul 8 22:47:31 2008 -0700
24536
24537     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
24538
24539     Signed-off-by: Feng Kan <fkan@amcc.com>
24540     Signed-off-by: Stefan Roese <sr@denx.de>
24541
24542 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
24543 Author: Wolfgang Denk <wd@denx.de>
24544 Date:   Fri Jul 11 01:16:00 2008 +0200
24545
24546     Fix some more print() format errors.
24547
24548     Signed-off-by: Wolfgang Denk <wd@denx.de>
24549
24550 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
24551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24552 Date:   Thu Jul 10 20:57:54 2008 +0200
24553
24554     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
24555
24556     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24557
24558 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
24559 Author: Sergey Lapin <slapin@ossfans.org>
24560 Date:   Thu Jun 5 11:06:29 2008 +0400
24561
24562     DataFlash AT45DB021 support
24563
24564     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
24565     bootstrap, u-boot and its environment, using NAND or other external
24566     storage for kernel and rootfs. This patch adds support for
24567     small 1024x263 chip.
24568
24569     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
24570
24571 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
24572 Author: Kim Phillips <kim.phillips@freescale.com>
24573 Date:   Thu Jul 10 14:00:15 2008 -0500
24574
24575     silence misc printf formatting compiler warnings
24576
24577     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24578
24579 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
24580 Author: Markus Klotzbücher <mk@denx.de>
24581 Date:   Thu Jul 10 14:47:09 2008 +0200
24582
24583     USB: shutdown USB before booting
24584
24585     This patch fixes a potentially serious issue related to USB which was
24586     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
24587     ARM920T. Martin wrote:
24588
24589       Turn off USB to prevent the host controller from writing to the
24590       SDRAM while Linux is booting. This could happen, because the HCCA
24591       (Host Controller Communication Area) lies within the SDRAM and the
24592       host controller writes continously to this area (as busmaster!), for
24593       example to increase the HccaFrameNumber variable, which happens
24594       every 1 ms.
24595
24596     This is a slightly modified version of the patch in order to shutdown
24597     USB when booting on all architectures.
24598
24599     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24600
24601 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
24602 Author: Martha Marx <mmarx@silicontkx.com>
24603 Date:   Thu May 29 14:23:25 2008 -0400
24604
24605     Configuration changes for ADS5121 Rev 3
24606
24607     ADS5121 Rev 3 board is now the default config
24608
24609     config targets are now
24610
24611     ads5121_config
24612         Rev 3 board with
24613         PCI
24614         M41T62 on board RTC
24615         512MB DRAM
24616
24617     ads5121_rev2_config
24618         Rev 2 board with
24619         No PCI
24620         256MB DRAM
24621
24622     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24623     Acked-by: Grant Likely <grant.likely@secretlab.ca>
24624     Acked-by: John Rigby <jrigby@freescale.com>
24625
24626 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
24627 Author: Martha Marx <mmarx@silicontkx.com>
24628 Date:   Thu May 29 15:37:21 2008 -0400
24629
24630     Consolidate ADS5121 IO Pin configuration
24631
24632     Consolidate ADS5121 IO Pin configuration to one file
24633     board/ads5121/iopin.c.
24634
24635     Remove pin config from cpu/mpc512x/fec.c
24636
24637     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24638     Acked-by: Grant Likely <grant.likely@secretlab.ca>
24639     Acked-by: John Rigby <jrigby@freescale.com>
24640
24641 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
24642 Author: Christian Eggers <christian@p2400.wgnetz.xx>
24643 Date:   Fri Jun 27 19:46:51 2008 +0200
24644
24645     Fix "usb part" command
24646
24647     Only print partition for selected device if user supplied the <dev>
24648     arg with the "usb part [dev]" command.
24649
24650     Signed-off-by: Christian Eggers <ceggers@gmx.de>
24651     Acked-by: Markus Klotzbuecher <mk@denx.de>
24652
24653 commit cc83b27217f7380041fea386ddb6d6d9b261617d
24654 Author: Harald Welte <laforge@gnumonks.org>
24655 Date:   Mon Jul 7 00:58:05 2008 +0800
24656
24657     fix USB devices with multiple configurations
24658
24659     This patch fixes bugs in usbdcore*.c related to the use of devices
24660     with multiple configurations.
24661
24662     The original code made mistakes about the meaning of configuration value and
24663     configuration index, and the resulting off-by-one errors resulted in:
24664
24665     * SET_CONFIGURATION always selected the first configuration, no matter what
24666       wValue is being passed.
24667     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
24668       configuration (index 0).
24669
24670     Signed-off-by: Harald Welte <laforge@openmoko.org>
24671     Acked-by: Markus Klotzbuecher <mk@denx.de>
24672
24673 commit 06c53beae1a726e707971c555613f09b270a2461
24674 Author: Wolfgang Denk <wd@denx.de>
24675 Date:   Thu Jul 10 13:16:09 2008 +0200
24676
24677     Fix some more print() format errors.
24678
24679     Signed-off-by: Wolfgang Denk <wd@denx.de>
24680
24681 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
24682 Author: Christian Eggers <christian@p2400.wgnetz.xx>
24683 Date:   Fri Jun 27 19:46:51 2008 +0200
24684
24685     Fix "usb part" command
24686
24687     Only print partition for selected device if user supplied the <dev>
24688     arg with the "usb part [dev]" command.
24689
24690     Signed-off-by: Christian Eggers <ceggers@gmx.de>
24691     Acked-by: Markus Klotzbuecher <mk@denx.de>
24692
24693 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
24694 Author: Harald Welte <laforge@gnumonks.org>
24695 Date:   Mon Jul 7 00:58:05 2008 +0800
24696
24697     fix USB devices with multiple configurations
24698
24699     This patch fixes bugs in usbdcore*.c related to the use of devices
24700     with multiple configurations.
24701
24702     The original code made mistakes about the meaning of configuration value and
24703     configuration index, and the resulting off-by-one errors resulted in:
24704
24705     * SET_CONFIGURATION always selected the first configuration, no matter what
24706       wValue is being passed.
24707     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
24708       configuration (index 0).
24709
24710     Signed-off-by: Harald Welte <laforge@openmoko.org>
24711     Acked-by: Markus Klotzbuecher <mk@denx.de>
24712
24713 commit e870690bdca154943ecadd5212d2d59c1b9d391b
24714 Author: Stefan Roese <sr@denx.de>
24715 Date:   Thu Jul 10 10:10:54 2008 +0200
24716
24717     MTD/NAND: Fix printf format warning in nand code
24718
24719     This patch fixes NAND related printf format warning. Those warnings are
24720     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
24721     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
24722     really helpful.
24723
24724     Signed-off-by: Stefan Roese <sr@denx.de>
24725
24726 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
24727 Author: Stefan Roese <sr@denx.de>
24728 Date:   Thu Jul 10 10:00:45 2008 +0200
24729
24730     rtc: Fix printf format warning in m41t60.c
24731
24732     Signed-off-by: Stefan Roese <sr@denx.de>
24733
24734 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
24735 Author: Stefan Roese <sr@denx.de>
24736 Date:   Tue Jul 8 12:01:47 2008 +0200
24737
24738     pci: Move PCI device configuration check into a separate weak function
24739
24740     This patch moves the check, if a device should be skipped in PCI PNP
24741     configuration into the function pci_skip_dev(). This function is defined
24742     as weak so that it can be overwritten by a platform specific one if
24743     needed. The check if the device should get printed in the PCI summary upon
24744     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
24745     pci_print_dev() which is also defined as weak too.
24746
24747     Signed-off-by: Stefan Roese <sr@denx.de>
24748
24749 commit b002144e1dc21374b1ef5281fe6b5d014af96650
24750 Author: Stefan Roese <sr@denx.de>
24751 Date:   Thu Jul 10 09:58:06 2008 +0200
24752
24753     ppc4xx: Fix printf format warnings now visible with the updated format check
24754
24755     This patch fixes ppc4xx related printf format warning. Those warnings are
24756     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
24757     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
24758     really helpful.
24759
24760     Signed-off-by: Stefan Roese <sr@denx.de>
24761
24762 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
24763 Author: Stefan Roese <sr@denx.de>
24764 Date:   Wed Jul 9 17:33:57 2008 +0200
24765
24766     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
24767
24768     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
24769     To support such configurations, we "only" map the first 2GB via the TLB's. We
24770     need some free virtual address space for the remaining peripherals like, SoC
24771     devices, FLASH etc.
24772
24773     Note that ECC is currently not supported on configurations with more than 2GB
24774     SDRAM. This is because we only map the first 2GB on such systems, and therefore
24775     the ECC parity byte of the remaining area can't be written.
24776
24777     Signed-off-by: Stefan Roese <sr@denx.de>
24778
24779 commit cf1c2ed91df26903b956948f37f82de9e1158a89
24780 Author: Larry Johnson <lrj@acm.org>
24781 Date:   Sat Jun 14 17:02:49 2008 -0400
24782
24783     ppc4xx: Remove implementation of testdram() from Korat board support
24784
24785     Signed-off-by: Larry Johnson <lrj@acm.org>
24786     Signed-off-by: Stefan Roese <sr@denx.de>
24787
24788 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
24789 Author: Larry Johnson <lrj@acm.org>
24790 Date:   Sat Jun 14 16:53:02 2008 -0400
24791
24792     ppc4xx: Update and add FDT to Korat board support
24793
24794     Signed-off-by: Larry Johnson <lrj@acm.org>
24795     Signed-off-by: Stefan Roese <sr@denx.de>
24796
24797 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
24798 Author: Wolfgang Denk <wd@denx.de>
24799 Date:   Thu Jul 10 01:13:30 2008 +0200
24800
24801     Minor coding style cleanup; update CHANGELOG
24802
24803     Signed-off-by: Wolfgang Denk <wd@denx.de>
24804
24805 commit 8915f1189c1d29d8be7f4de325702d90a8988219
24806 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
24807 Date:   Wed Jul 9 17:50:45 2008 -0400
24808
24809     e1000: add support for 82545GM 64bit PCI-X copper variant
24810
24811     This PCI-X e1000 variant works by just adding in the correct
24812     PCI IDs in the appropriate places.
24813
24814     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
24815
24816 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
24817 Author: Daniel Hellstrom <daniel@gaisler.com>
24818 Date:   Wed Jul 9 12:34:11 2008 +0000
24819
24820     SPARC: Build error fix
24821
24822     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
24823
24824     This patch makes SPARC targets build again. It is caused by
24825     phys_addr_t and phys_size_t being defined in the wrong header
24826     file. include/lmb.h need those typedefs to build.
24827
24828     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
24829
24830 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
24831 Author: Marcel Ziswiler <marcel@ziswiler.com>
24832 Date:   Wed Jul 9 08:17:15 2008 +0200
24833
24834     Many spelling fixes in README.
24835
24836     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24837
24838 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
24839 Author: Marcel Ziswiler <marcel@ziswiler.com>
24840 Date:   Wed Jul 9 08:17:06 2008 +0200
24841
24842     Minor spelling fix in comment.
24843
24844     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24845
24846 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
24847 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24848 Date:   Tue Jul 8 14:54:58 2008 -0400
24849
24850     Round the serial port clock divisor value returned by calc_divisor()
24851
24852     Round the serial port clock divisor value returned by
24853     calc_divisor().
24854
24855     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24856     Signed-off-by: John Roberts <john.roberts@pwav.com>
24857
24858 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
24859 Author: Scott Wood <scottwood@freescale.com>
24860 Date:   Wed Jul 9 17:47:52 2008 -0500
24861
24862     NAND: ifdef-protect most of nand.h when using legacy NAND.
24863
24864     Some macros such as NAND_CTL_SETALE conflict between current and legacy
24865     NAND, being defined by the subsystem in the former case and the board
24866     config file in the latter.
24867
24868     Signed-off-by: Scott Wood <scottwood@freescale.com>
24869
24870 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
24871 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24872 Date:   Tue Jul 8 11:02:05 2008 -0400
24873
24874     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
24875
24876     ARM: Fix for incorrect version of patch applied when
24877     adding support for the Lyrtech SFF-SDR board.
24878
24879     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
24880     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
24881
24882 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
24883 Author: Kyungmin Park <kmpark@infradead.org>
24884 Date:   Tue Jul 8 09:08:40 2008 +0900
24885
24886     Remove useless print message at apollon
24887
24888     Remove useless print message at apollon
24889
24890     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24891
24892 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
24893 Author: Andy Fleming <afleming@freescale.com>
24894 Date:   Mon Jul 7 14:24:39 2008 -0500
24895
24896     Fix LMB type issues
24897
24898     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
24899     of casting problems in the bootm code that called the LMB functions.
24900
24901     Signed-off-by: Andy Fleming <afleming@freescale.com>
24902
24903 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
24904 Author: Kumar Gala <galak@kernel.crashing.org>
24905 Date:   Mon Jul 7 09:39:06 2008 -0500
24906
24907     Fix compiler warnings
24908
24909     gcc-4.3.x generates the following:
24910
24911     bootm.c: In function 'do_bootm_linux':
24912     bootm.c:208: warning: cast from pointer to integer of different size
24913     bootm.c:215: warning: cast from pointer to integer of different size
24914
24915     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24916
24917 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
24918 Author: Harald Welte <laforge@gnumonks.org>
24919 Date:   Mon Jul 7 15:40:39 2008 +0800
24920
24921     Remove code duplication for setting the default environment
24922
24923     common/env_common.c (default_env): new function that resets the environment to
24924                     the default value
24925     common/env_common.c (env_relocate): use default_env instead of own copy
24926     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
24927     include/environment.h: added default_env prototype
24928
24929     Signed-off-by: Werner Almesberger <werner@openmoko.org>
24930     Signed-off-by: Harald Welte <laforge@openmoko.org>
24931
24932 commit 99c2b434d37863df5dda5207a53760c6506fc2be
24933 Author: Marcel Ziswiler <marcel@ziswiler.com>
24934 Date:   Sun Jun 22 16:13:46 2008 +0200
24935
24936     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
24937
24938     The writeenv() and readenv() calls introduced by the recently added bad block
24939     management for environment variables were missing casts therefore producing
24940     compile time warnings.
24941     While at it fixing some typo in a comment and indentation.
24942
24943     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24944     Signed-off-by: Scott Wood <scottwood@freescale.com>
24945
24946 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
24947 Author: Scott Wood <scottwood@freescale.com>
24948 Date:   Fri Jun 20 12:38:57 2008 -0500
24949
24950     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
24951
24952     This is particularly problematic now that non-NAND-specific code is
24953     including <nand.h>, and thus all debugging code is being compiled
24954     regardless of whether it was requested, as reported by Scott McNutt
24955     <smcnutt@psyent.com>.
24956
24957     Signed-off-by: Scott Wood <scottwood@freescale.com>
24958
24959 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
24960 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24961 Date:   Thu Jun 12 19:27:58 2008 +0200
24962
24963     mmc: Move atmel_mci driver into drivers/mmc
24964
24965     This makes it easier to use the driver on other platforms.
24966
24967     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24968     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24969
24970 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
24971 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24972 Date:   Thu Jun 12 19:27:57 2008 +0200
24973
24974     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
24975
24976     After we move the atmel_mci driver into drivers/mmc, we can't select
24977     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
24978     this driver so that there's no ambiguity.
24979
24980     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24981     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24982
24983 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
24984 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24985 Date:   Thu Jun 12 19:27:56 2008 +0200
24986
24987     Create drivers/mmc subdirectory
24988
24989     In order to consolidate more of the various MMC drivers around the
24990     tree, we must first have a common place to put them.
24991
24992     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24993     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24994
24995 commit b502611b51f02718c2d1117d4981dabceb5af6de
24996 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
24997 Date:   Sun Jul 6 12:30:09 2008 +0200
24998
24999     Change env_get_char from a global function ptr to a function
25000
25001     This avoids an early global data reference.
25002
25003     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25004
25005 commit 27269417ade432189b234d9fbac98b54e37b978c
25006 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
25007 Date:   Sun Jul 6 13:57:58 2008 +0400
25008
25009     Some copy-n-paste fixes in printf usage
25010
25011     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
25012
25013 commit 0e6989b9faf1588e8723535539e88a0df3c71356
25014 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
25015 Date:   Sun Jul 6 13:57:00 2008 +0400
25016
25017     FDT memory and pci node fixes for MPC8260ADS
25018
25019     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
25020
25021 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
25022 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25023 Date:   Mon Jul 7 06:41:14 2008 -0700
25024
25025     Fix printf errors.
25026
25027     The compiler will help find mismatches between printf formats and
25028     arguments if you let it.  This patch adds the necessary attributes to
25029     declarations in include/common.h, then begins to correct the resulting
25030     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
25031     "%d" and incorrect arguments.  Others were just annoying, like
25032     int-long mismatches on a system where both are 32 bits.  It's worth
25033     fixing the annoying errors to catch the real ones.
25034
25035     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
25036
25037 commit 417faf285b2527acb2de24c5cd3e2621d385408c
25038 Author: Becky Bruce <becky.bruce@freescale.com>
25039 Date:   Wed Jul 9 11:09:41 2008 -0500
25040
25041     Allow print_size to print in GB
25042
25043     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25044
25045 commit e7c374529c87525c9aa463e0557c287887ae4e9e
25046 Author: Jason McMullan <mcmullan@netapp.com>
25047 Date:   Sun Jun 8 23:56:00 2008 -0400
25048
25049     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
25050
25051     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
25052     they are set in the U-Boot environment.
25053
25054     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
25055     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25056
25057 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
25058 Author: Stefan Roese <sr@denx.de>
25059 Date:   Tue Jul 8 12:57:14 2008 +0200
25060
25061     jedec_flash: Fix AM29DL800BB device ID
25062
25063     As pointed out by Jerry Hicks, this patch corrects the device ID of
25064     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
25065     datasheet (rev C4 from Dezember 2006).
25066
25067     Signed-off-by: Stefan Roese <sr@denx.de>
25068
25069 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
25070 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25071 Date:   Mon Jul 7 11:22:37 2008 +0900
25072
25073     sh: Fix compile error sh7763rdp board
25074
25075     Disable SH ether driver.
25076
25077     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25078
25079 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
25080 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25081 Date:   Tue Jul 8 12:03:24 2008 +0900
25082
25083     sh: Fix SH-boards compile error
25084
25085     By Cleanup out-or-tree building for some boards (.depend)
25086     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
25087     because filse ware changed, some SH-boards have compile error.
25088     I revised this problem.
25089
25090     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25091
25092 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
25093 Author: Jason Jin <Jason.jin@freescale.com>
25094 Date:   Tue May 13 11:50:36 2008 +0800
25095
25096     Feed the watchdog in u-boot for 8610 board.
25097
25098     The watchdog on 8610 board is enabled by setting sw[6]
25099     to on. Once enabled, the watchdog can not be disabled
25100     by software. So feed the dog in u-boot is necessary for
25101     normal operation.
25102
25103     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
25104
25105 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
25106 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25107 Date:   Wed Jun 18 12:10:33 2008 -0400
25108
25109     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
25110
25111     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
25112
25113     Remove duplicate code in a if/else block in
25114     cpu/arm926ejs/davinci/lxt972.c.
25115     Fixed style issues.
25116
25117     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25118     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25119
25120 commit fec61431a003f5778bafa2624073a571af8bec9f
25121 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25122 Date:   Wed Jun 18 12:10:31 2008 -0400
25123
25124     Remove duplicate definitions in include/lxt971a.h.
25125
25126     Remove duplicate definitions in include/lxt971a.h.
25127
25128     Remove duplicate registers and bits definitions in
25129     include/lxt971a.h for standard MII registers, and
25130     use values in include/miiphy.h instead.
25131
25132     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25133     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25134
25135 commit 9751ee0990f467941da0b095a4e995f863672d7a
25136 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25137 Date:   Wed Jun 11 21:05:00 2008 +0900
25138
25139     net: sh: Renesas SH7763 Ethernet device support
25140
25141     Renesas SH7763 has 2 channel Ethernet device.
25142     This is 10/100/1000 Base support.
25143     But this patch check 10/100 Base only.
25144
25145     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25146     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25147
25148 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
25149 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25150 Date:   Tue Jun 17 16:28:05 2008 +0900
25151
25152     sh: Update Renesas R2DPlus board
25153
25154     New NOR Flash board support and remove old type flash board config.
25155     And Remove network setting from config file.
25156
25157     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25158     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25159
25160 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
25161 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25162 Date:   Tue Jun 17 16:28:01 2008 +0900
25163
25164     sh: Update Renesas R7780MP board
25165
25166     New NOR Flash board support and remove network setting from config file.
25167
25168     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25169     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25170
25171 commit c001cd604e9f133743effbddb1c215b48e761c5a
25172 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25173 Date:   Tue Jun 17 16:27:56 2008 +0900
25174
25175     sh: Update Renesas Migo-R board
25176
25177     Remove network setting from config file.
25178
25179     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25180     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25181
25182 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
25183 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25184 Date:   Tue Jun 17 16:27:52 2008 +0900
25185
25186     sh: Update Hitachi MS7722SE board
25187
25188     Remove network setting from config file.
25189
25190     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25191     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25192
25193 commit 26209e48e8791670c93108029a5c31a30016c6df
25194 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25195 Date:   Tue Jun 17 16:27:48 2008 +0900
25196
25197     sh: Cleanup source code of SH7763RDP
25198
25199     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25200     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25201
25202 commit 5cd5b2c96ef0025762931349d350287aec03ab47
25203 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25204 Date:   Tue Jun 17 16:27:44 2008 +0900
25205
25206     sh: Cleanup source code of R2DPlus
25207
25208     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25209     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25210
25211 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
25212 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25213 Date:   Tue Jun 17 16:27:41 2008 +0900
25214
25215     sh: Cleanup source code of R7780MP
25216
25217     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25218     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25219
25220 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
25221 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25222 Date:   Tue Jun 17 16:27:38 2008 +0900
25223
25224     sh: Cleanup source code of MS7722SE
25225
25226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25227     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25228
25229 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
25230 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25231 Date:   Tue Jun 17 16:27:34 2008 +0900
25232
25233     sh: Cleanup source code of MS7720SE
25234
25235     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25236     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25237
25238 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
25239 Author: Wolfgang Denk <wd@denx.de>
25240 Date:   Mon Jul 7 00:45:03 2008 +0200
25241
25242     SH: fix out of tree building
25243
25244     Signed-off-by: Wolfgang Denk <wd@denx.de>
25245
25246 commit 9047bfa1e737d787be460387dd6f45737eeceb10
25247 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25248 Date:   Thu Jul 3 23:16:06 2008 +0900
25249
25250     net: smc911x: Fix typo
25251
25252     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
25253
25254 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
25255 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
25256 Date:   Wed Jul 2 18:54:08 2008 +0200
25257
25258     update mvBL-M7 board config
25259
25260     update mvBL-M7 config file to use UBOOT_VERSION and define
25261     CONFIG_HIGH_BATS.
25262
25263     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
25264
25265 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
25266 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25267 Date:   Mon Jun 30 17:45:01 2008 +0900
25268
25269     net: fix compile problem in smc911x driver.
25270
25271     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25272     Acked-by: Ben Warren <biggerbadderben@gmail.com>
25273
25274 commit 9fea65a6c469b1b474b27446feb58738baba2d31
25275 Author: Michal Simek <monstr@monstr.eu>
25276 Date:   Tue Jun 24 09:54:09 2008 +0200
25277
25278     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
25279
25280     This change helps with better handling with others
25281     Xilinx based platform.
25282
25283     Signed-off-by: Michal Simek <monstr@monstr.eu>
25284     Acked-by: Stefan Roese <sr@denx.de>
25285
25286 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
25287 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25288 Date:   Tue Jun 17 13:07:11 2008 +0900
25289
25290     net: ne2000: Move dev_addr variable from grobal to local.
25291
25292     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25293     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25294
25295 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
25296 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25297 Date:   Tue Jun 17 13:07:15 2008 +0900
25298
25299     net: ne2000: Fix compile error of NE2000
25300
25301     If enable DEBUG, can not compile ne2000 driver.
25302
25303     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25304     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25305
25306 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
25307 Author: Ben Warren <biggerbadderben@gmail.com>
25308 Date:   Mon Jun 23 22:57:27 2008 -0700
25309
25310     Add mechanisms for CPU and board-specific Ethernet initialization
25311
25312     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
25313     initialization to CPU or board-specific code.  Initial implementation is
25314     only on the Freescale TSEC controller, but others will be added soon.
25315
25316     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25317
25318 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
25319 Author: Wolfgang Denk <wd@denx.de>
25320 Date:   Sun Jul 6 01:21:46 2008 +0200
25321
25322     include/sha256.h: fix file permissions.
25323
25324     Signed-off-by: Wolfgang Denk <wd@denx.de>
25325
25326 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
25327 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
25328 Date:   Tue May 27 11:15:29 2008 +0200
25329
25330     [AT91SAM9] Fix NAND FLASH timings
25331
25332     Fix NAND FLASH timings for at91sam9x evaluation kits.
25333
25334     New timings are based on application note
25335     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
25336     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
25337
25338     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
25339     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25340     Acked-by: Stelian Pop <stelian@popies.net>
25341
25342 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
25343 Author: Stelian Pop <stelian@popies.net>
25344 Date:   Thu May 22 00:15:40 2008 +0200
25345
25346     Fix boot from NOR due to incorrect reset delay.
25347
25348     AT91 RSTC registers are battery-backuped, so their values
25349     are not reset across power cycles. One of those registers,
25350     the AT91_RSTC_MR register, is being modified by U-Boot, in
25351     the ethernet initialisation routine, to generate a 500ms
25352     user reset.
25353
25354     Unfortunately, this value is not being restored afterwards,
25355     causing subsequent resets to also last for 500ms.
25356
25357     This long reset sequence causes problems (at least) in the
25358     boot sequence from NOR: by the time the CPU tries to load
25359     a program from the NOR flash, the latter is still in reset
25360     and not yet available.
25361
25362     Additionaly, this patch fixes a bug in the original code which
25363     caused the reset delay to last for 2s instead of 500ms.
25364
25365     Signed-off-by: Stelian Pop <stelian@popies.net>
25366     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25367
25368 commit f492dd636fbbae529e17533995bc6e5813c007f6
25369 Author: Wolfgang Denk <wd@denx.de>
25370 Date:   Fri Jul 4 20:11:49 2008 +0200
25371
25372     Update CHANGELOG
25373
25374     Signed-off-by: Wolfgang Denk <wd@denx.de>
25375
25376 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
25377 Author: Wolfgang Denk <wd@denx.de>
25378 Date:   Fri Jul 4 20:07:35 2008 +0200
25379
25380     CCM/SCM boards: fix out of tree building
25381
25382     Signed-off-by: Wolfgang Denk <wd@denx.de>
25383
25384 commit ab4c3a490df9a964711556d2a05b0c787db45fde
25385 Author: Wolfgang Denk <wd@denx.de>
25386 Date:   Thu Jul 3 23:22:27 2008 +0200
25387
25388     SCM board: fix build errors.
25389
25390     Signed-off-by: Wolfgang Denk <wd@denx.de>
25391
25392 commit a566466f17ba0e2d2b6c250e77da678fb932470d
25393 Author: Wolfgang Denk <wd@denx.de>
25394 Date:   Thu Jul 3 23:06:36 2008 +0200
25395
25396     IAD210 board: fix ``"ALIGN" redefined'' warning.
25397
25398     Signed-off-by: Wolfgang Denk <wd@denx.de>
25399
25400 commit ad756314797c16fa5dca23e115aab881011f164f
25401 Author: Wolfgang Denk <wd@denx.de>
25402 Date:   Thu Jul 3 23:00:24 2008 +0200
25403
25404     CCM board: fix build errors.
25405
25406     Signed-off-by: Wolfgang Denk <wd@denx.de>
25407
25408 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
25409 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
25410 Date:   Wed Jul 2 18:54:08 2008 +0200
25411
25412     update mvBL-M7 board config
25413
25414     update mvBL-M7 config file to use UBOOT_VERSION.
25415
25416     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
25417     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25418
25419 commit ced209c50e80c25f13c083099b05044048d21f4f
25420 Author: Wolfgang Denk <wd@denx.de>
25421 Date:   Thu Jul 3 22:39:21 2008 +0200
25422
25423     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
25424
25425     Signed-off-by: Wolfgang Denk <wd@denx.de>
25426
25427 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
25428 Author: Wolfgang Denk <wd@denx.de>
25429 Date:   Thu Jul 3 22:34:08 2008 +0200
25430
25431     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
25432
25433     Signed-off-by: Wolfgang Denk <wd@denx.de>
25434
25435 commit 730f298485984b011b6ee8f4acb511cb45a843dd
25436 Author: Wolfgang Denk <wd@denx.de>
25437 Date:   Thu Jul 3 22:04:17 2008 +0200
25438
25439     lmb: fix "implicit declaration of function 'lmb_free'" warning
25440
25441     Signed-off-by: Wolfgang Denk <wd@denx.de>
25442
25443 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
25444 Author: Wolfgang Denk <wd@denx.de>
25445 Date:   Wed Jul 2 23:53:23 2008 +0200
25446
25447     Cleanup: remove redundant deleting on *~ files
25448
25449     Signed-off-by: Wolfgang Denk <wd@denx.de>
25450
25451 commit c8a3b109f07f02342d097b30908965f7261d9f15
25452 Author: Wolfgang Denk <wd@denx.de>
25453 Date:   Wed Jul 2 23:49:18 2008 +0200
25454
25455     Cleanup out-or-tree building for some boards (.depend)
25456
25457     Signed-off-by: Wolfgang Denk <wd@denx.de>
25458
25459 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
25460 Author: Wolfgang Denk <wd@denx.de>
25461 Date:   Wed Jul 2 23:38:50 2008 +0200
25462
25463     Cleanup: fix out-of-tree building for some boards
25464
25465     Signed-off-by: Wolfgang Denk <wd@denx.de>
25466
25467 commit 461fa68d20861811487944d22291db5a13410e20
25468 Author: Wolfgang Denk <wd@denx.de>
25469 Date:   Wed Jul 2 23:00:14 2008 +0200
25470
25471     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
25472
25473     Signed-off-by: Wolfgang Denk <wd@denx.de>
25474
25475 commit 5981ebd32017e062b08aa6747cf591276f2db779
25476 Author: Detlev Zundel <dzu@denx.de>
25477 Date:   Fri Jun 20 22:26:24 2008 +0200
25478
25479     fdt: Fix typo in variable name.
25480
25481     Signed-off-by: Detlev Zundel <dzu@denx.de>
25482
25483 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
25484 Author: Gary Jennejohn <garyj@denx.de>
25485 Date:   Thu Jun 19 11:11:19 2008 +0200
25486
25487     Add logos for RRvision board
25488
25489     Signed-off-by: Gary Jennejohn <garyj@denx.de>
25490
25491 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
25492 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
25493 Date:   Wed Jun 18 11:03:57 2008 +0200
25494
25495     mpc8260: add fdt_fixup_ethernet support
25496
25497     Add support for updating mac-address and local-mac-address in fdt for
25498     all MPC8260 targets.
25499
25500     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
25501
25502 commit f6a69559d64498a04e1e0b087a9b920e5775f866
25503 Author: Steven A. Falco <sfalco@harris.com>
25504 Date:   Thu Jun 12 13:24:42 2008 -0400
25505
25506     cmd_nvedit.c: clean up syntax highlighting
25507
25508     My text-editor (vim) has a bit of trouble syntax-highlighting the
25509     cmd_nvedit.c file, because it apparently does not parse C
25510     ifdef/else/endif. The following patch does not change the behavior of
25511     the code at all, but does allow the editor to properly
25512     syntax-highlight the file.
25513
25514     Signed-off-by: Steve Falco <sfalco@harris.com>
25515
25516 commit 75678c807a6272ecc5541eb32898c93887f08400
25517 Author: Steven A. Falco <sfalco@harris.com>
25518 Date:   Thu Jun 12 13:22:12 2008 -0400
25519
25520     Make setenv() return status
25521
25522     Currently, the setenv function does not return an error code.
25523     This patch allows to test for errors.
25524
25525     Signed-off-by: Steve Falco <sfalco@harris.com>
25526
25527 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
25528 Author: Kumar Gala <galak@kernel.crashing.org>
25529 Date:   Wed Jun 11 10:14:06 2008 -0500
25530
25531     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
25532
25533     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
25534     and fls is used to implement them.
25535
25536     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25537
25538 commit 83002a77cbdf383015ca384eff5fa31722d8e571
25539 Author: Magnus Lilja <lilja.magnus@gmail.com>
25540 Date:   Mon Jun 9 22:58:48 2008 +0200
25541
25542     i.MX31: Cleanup comments in lowlevel_init.S.
25543
25544     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25545
25546 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
25547 Author: Ben Warren <biggerbadderben@gmail.com>
25548 Date:   Sun Jun 8 23:28:33 2008 -0700
25549
25550     Move conditional compilation of MPC8XXX SPI driver to Makefile
25551
25552     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25553
25554 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
25555 Author: Juergen Kilb <J.Kilb@gmx.de>
25556 Date:   Sun Jun 8 17:59:53 2008 +0200
25557
25558     i.MX31: fixed CTRL-C detection
25559
25560     The Register URXD contains status information in bits [15..8].
25561     With status bit 15 set, CTRL-C was reported as 0x8003 instead
25562     of 0x03. Therefore CTRL-C was not detected.
25563     To solve this, bits [15..8] were masked out now.
25564
25565     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
25566     Acked-by: Felix Radensky <felix@embedded-sol.com>
25567
25568 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
25569 Author: Stefan Roese <sr@denx.de>
25570 Date:   Tue Jul 1 17:03:19 2008 +0200
25571
25572     ppc4xx: Fix 460EX/GT PCIe port initialization
25573
25574     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
25575     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
25576     this out.
25577
25578     Signed-off-by: Stefan Roese <sr@denx.de>
25579
25580 commit b571afde0295b007a45055ee49f8822c753a5651
25581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25582 Date:   Sat Jun 7 12:29:52 2008 +0200
25583
25584     add SHA256 support
25585
25586     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25587     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
25588
25589 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
25590 Author: Marian Balakowicz <m8@semihalf.com>
25591 Date:   Fri Jun 6 23:07:40 2008 +0200
25592
25593     Delay FIT format check on sector based devices
25594
25595     Global FIT image operations like format check cannot be performed on
25596     a first sector data, defer them to the point when whole FIT image was
25597     uploaded to a system RAM.
25598
25599     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
25600     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
25601     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
25602
25603 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
25604 Author: Dave Liu <r63238@freescale.com>
25605 Date:   Tue Jun 3 17:38:19 2008 +0800
25606
25607     sata: wait for device updating signature to host
25608
25609     The driver need wait for the device updating signature to host.
25610     If we don't wait for it, the driver can not detect the device(disk)
25611     when the system powers up.
25612
25613     Signed-off-by: Dave Liu <daveliu@freescale.com>
25614
25615 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
25616 Author: Stefan Roese <sr@denx.de>
25617 Date:   Sat Jun 28 14:56:17 2008 +0200
25618
25619     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
25620
25621     This patch implements a fix provided by AMCC so that the lockup upon
25622     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
25623     anymore:
25624
25625     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
25626     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
25627     USB 2.0 host and SATA.
25628
25629     This errata is not officially available yet. I'll update the comment
25630     to add the errata number later.
25631
25632     Signed-off-by: Stefan Roese <sr@denx.de>
25633
25634 commit 8b616edb118e37d05f6401389eaee1c636b22828
25635 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
25636 Date:   Mon Jun 2 16:42:19 2008 -0400
25637
25638     serial_pl010.c: add watchdog support
25639
25640     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
25641
25642 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
25643 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
25644 Date:   Mon Jun 2 16:40:08 2008 -0400
25645
25646     jffs2_1pass.c: add watchdog support
25647
25648     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
25649
25650 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
25651 Author: Sascha Laue <sascha.laue@liebherr.com>
25652 Date:   Fri May 30 09:48:14 2008 +0200
25653
25654     Configure DSP POST; add watchdog reset to diag command
25655
25656     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
25657
25658 commit f13526517859bf6b573e23ff47199e107d1009b5
25659 Author: Tor Krill <tor@excito.com>
25660 Date:   Thu May 29 10:40:17 2008 +0200
25661
25662     Add sata sil3114 support
25663
25664     Signed-off-by: Tor Krill <tor@excito.com>
25665
25666 commit e093a247628228100f405b6d7f6b1bfc16141938
25667 Author: Wolfgang Denk <wd@denx.de>
25668 Date:   Sat Jun 28 23:34:37 2008 +0200
25669
25670     Coding Style Cleanup
25671
25672     Signed-off-by: Wolfgang Denk <wd@denx.de>
25673
25674 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
25675 Author: Wolfgang Denk <wd@denx.de>
25676 Date:   Sat Jun 28 23:16:01 2008 +0200
25677
25678     Update CHANGELOG
25679
25680     Signed-off-by: Wolfgang Denk <wd@denx.de>
25681
25682 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
25683 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25684 Date:   Wed May 21 13:58:41 2008 -0400
25685
25686     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
25687
25688     This patch adds support for the Lyrtech SFF-SDR board,
25689     based on the TI DaVinci architecture (ARM926EJS).
25690
25691     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
25692     Signed-off-by: Philip Balister <philip@balister.org>
25693     Signed-off-by: Wolfgang Denk <wd@denx.de>
25694
25695 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
25696 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25697 Date:   Thu May 22 11:09:59 2008 +0200
25698
25699     MMC: Consolidate MMC/SD command definitions
25700
25701     This moves the MMC and SD Card command definitions from
25702     include/asm/arch/mmc.h into include/mmc.h. These definitions are
25703     given by the MMC and SD Card standards, not by any particular
25704     architecture.
25705
25706     There's a lot more room for consolidation in the MMC drivers which
25707     I'm hoping to get done eventually, but this patch is a start.
25708
25709     Compile-tested for all avr32 boards as well as lpc2292sodimm and
25710     lubbock. This should cover all three mmc drivers in the tree.
25711
25712     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25713
25714 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
25715 Author: Kyungmin Park <kmpark@infradead.org>
25716 Date:   Wed May 21 14:38:08 2008 +0900
25717
25718     Use better Ethernet timings for apollon board
25719
25720     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
25721
25722 commit 41c5eaa7253ed82bbae1eda5667755872c615164
25723 Author: Andy Fleming <afleming@freescale.com>
25724 Date:   Mon Jun 16 13:58:56 2008 -0500
25725
25726     Resize device tree to allow space for board changes and the chosen node
25727
25728     Current code requires that a compiled device tree have space added to the end to
25729     leave room for extra nodes added by board code (and the chosen node).  This
25730     requires that device tree creators anticipate how much space U-Boot will add to
25731     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
25732     tree when it needed more space, but this would require a systemic change to the
25733     fdt code, which is non-trivial.  Instead, we resize the tree inside
25734     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
25735     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
25736
25737     Signed-off-by: Andy Fleming <afleming@freescale.com>
25738
25739 commit 7570a9941fc565922078679a72d246fe208d696d
25740 Author: Andy Fleming <afleming@freescale.com>
25741 Date:   Mon Jun 16 13:58:55 2008 -0500
25742
25743     Fix an underflow bug in __lmb_alloc_base
25744
25745     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
25746     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
25747     merely updates __lmb_alloc_base to resemble the current version in Linux.
25748
25749     Signed-off-by: Andy Fleming <afleming@freescale.com>
25750
25751 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
25752 Author: Andy Fleming <afleming@freescale.com>
25753 Date:   Mon Jun 16 13:58:54 2008 -0500
25754
25755     Add lmb_free
25756
25757     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
25758     lmb_reserve to temporarily reserve some memory.
25759
25760     Signed-off-by: Andy Fleming <afleming@freescale.com>
25761
25762 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
25763 Author: Andy Fleming <afleming@freescale.com>
25764 Date:   Mon Jun 16 13:58:53 2008 -0500
25765
25766     Add ALIGN() macro
25767
25768     ALIGN() returns the smallest aligned value greater than the passed
25769     in address or size.  Taken from Linux.
25770
25771     Signed-off-by: Andy Fleming <afleming@freescale.com>
25772
25773 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
25774 Author: Stefan Roese <sr@denx.de>
25775 Date:   Tue Jun 24 17:15:22 2008 +0200
25776
25777     ppc4xx: Fix compilation problems with phys_size_t
25778
25779     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
25780     board specific files where it has been missing.
25781
25782     Signed-off-by: Stefan Roese <sr@denx.de>
25783
25784 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
25785 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
25786 Date:   Mon May 19 12:26:38 2008 +0200
25787
25788     Conditionally add -fno-stack-protector to CFLAGS
25789
25790     When compile-testing on powerpc, I get errors like this:
25791
25792     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
25793
25794     This seems to be because -fstack-protector is on by default, so
25795     let's explicitly disable it on all architectures that support the
25796     option.
25797
25798     The Ubuntu toolchain is affected by this problem, and according to
25799     Mike Frysinger, Gentoo has been running with SSP enabled for years.
25800     More and more distros are turning SSP on by default, so this problem
25801     is likely to get worse in the future.
25802
25803     Also, powerpc just happens to be one of the arches I do
25804     compile-testing on. There may be other arches affected by this too.
25805
25806     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
25807
25808 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
25809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25810 Date:   Sun May 18 19:09:52 2008 +0200
25811
25812     pcmcia/ti_pci1410a: Move compile condition to the Makefile
25813
25814     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25815
25816 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
25817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25818 Date:   Sun May 18 19:09:51 2008 +0200
25819
25820     pxa_pcmcia: Move compile condition to the Makefile
25821
25822     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25823
25824 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
25825 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25826 Date:   Sun May 18 19:09:50 2008 +0200
25827
25828     marabun_pcmcia: Move compile condition to the Makefile
25829
25830     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25831
25832 commit 6a19c46cae43c16c528eddefae3db97134f1915d
25833 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
25834 Date:   Mon Jun 23 13:25:34 2008 +0200
25835
25836     fix non-working mvBL-M7
25837
25838     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
25839
25840     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
25841     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25842
25843 commit 846f1574ddddeda2bc227655e687308695f41cdc
25844 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
25845 Date:   Mon Jun 23 11:40:56 2008 +0200
25846
25847     fix system config overwrite @ MPC834x and MPC8313
25848
25849     During 83xx setup the "System I/O configuration register high" gets
25850     overwritten with user defined value if CFG_SICRH is defined.
25851
25852     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
25853     must keep their reset value regardless of configuration.
25854
25855     On my board (using RGMII) those bits are set after reset - yet it's
25856     unclear where they come from.
25857
25858     The patch keeps both bits on MPC834x and MPC8313.
25859
25860     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
25861     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25862
25863 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
25864 Author: Kim Phillips <kim.phillips@freescale.com>
25865 Date:   Tue Jun 17 17:45:27 2008 -0500
25866
25867     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
25868
25869     to avoid this:
25870
25871     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
25872     In file included from cpu.c:33:
25873     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
25874
25875     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25876
25877 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
25878 Author: Stefan Roese <sr@denx.de>
25879 Date:   Mon Jun 23 11:15:09 2008 +0200
25880
25881     ppc4xx: Fix problem in gpio_config()
25882
25883     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
25884     left by one. So the additional shift is bogus.
25885
25886     Signed-off-by: Stefan Roese <sr@denx.de>
25887
25888 commit 40777812316fc252c941665c0f60c148fd79d50f
25889 Author: Detlev Zundel <dzu@denx.de>
25890 Date:   Fri Jun 20 22:24:05 2008 +0200
25891
25892     fdt: Fix typo in variable name.
25893
25894     Signed-off-by: Detlev Zundel <dzu@denx.de>
25895
25896 commit 5f723a3b98c630bde33de74351f2121691fdef14
25897 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25898 Date:   Fri Jun 20 10:41:05 2008 +0200
25899
25900     avr32: Enable SPI flash support on ATNGW100
25901
25902     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
25903     the new SPI flash framework.
25904
25905     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25906
25907 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
25908 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25909 Date:   Fri Jun 20 12:44:28 2008 +0200
25910
25911     avr32: Fix SPI portmux initialization
25912
25913     Use the new GPIO manipulation functions to set up the chip select lines,
25914     and make sure both busses use GPIO for chip select control.
25915
25916     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25917
25918 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
25919 Author: Peter Ma <pma@mediamatech.com>
25920 Date:   Sun Jun 1 22:59:24 2008 -0700
25921
25922     avr32: Add GPIO manipulation functions
25923
25924     Adds GPIO manipulation functions for AVR32 AP7 platform.
25925
25926     Signed-off-by: Peter Ma <pma@mediamatech.com>
25927     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
25928     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25929
25930 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
25931 Author: Wolfgang Grandegger <wg@grandegger.com>
25932 Date:   Thu Jun 5 13:02:30 2008 +0200
25933
25934     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
25935
25936     This patch is based on the following patch sent a few minutes ago:
25937     "NAND FSL UPM: driver re-write using the hwcontrol callback"
25938     It is untested, of course. Anton, could you please give it a try.
25939
25940     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
25941     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25942
25943 commit 96026d42fa4e646d28318c0a1438aac4b2017909
25944 Author: Anatolij Gustschin <agust@denx.de>
25945 Date:   Thu Jun 12 12:40:11 2008 +0200
25946
25947     Fix 4xx build issue
25948
25949     Building for 4xx doesn't work since commit 4dbdb768:
25950
25951     In file included from 4xx_pcie.c:28:
25952     include/asm/processor.h:971: error: expected ')' before 'ver'
25953     make[1]: *** [4xx_pcie.o] Error 1
25954
25955     This patch fixes the problem.
25956
25957     Signed-off-by: Anatolij Gustschin <agust@denx.de>
25958     Acked-by: Stefan Roese <sr@denx.de>
25959     Acked-by: Kumar Gala <galak@kernel.crashing.org>
25960
25961 commit a036b0443657fe0f4773786de9092251869f08ac
25962 Author: Kumar Gala <galak@kernel.crashing.org>
25963 Date:   Thu Jun 19 01:45:50 2008 -0500
25964
25965     MPC8610HPCD: Report board id, board version and fpga version.
25966
25967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25968
25969 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
25970 Author: Kumar Gala <galak@kernel.crashing.org>
25971 Date:   Thu Jun 19 01:45:27 2008 -0500
25972
25973     MPC8641HPCN: Report board id, board version and fpga version.
25974
25975     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25976
25977 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
25978 Author: Stefan Roese <sr@denx.de>
25979 Date:   Mon Jun 16 10:40:02 2008 +0200
25980
25981     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
25982
25983     This patch simplifies flash_toggle() (AMD commandset), which is used to
25984     detect if a FLASH device is still busy with erase/program operations. On
25985     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
25986     did not detect the busy state reliably, resulting in non erased sectors
25987     etc. This patch now simplifies this function by "just" comparing the
25988     complete data-word instead of ANDing it with the command-word (0x40)
25989     before the compatison. It is done the same way in the Linux implementation
25990     chip_ready() in cfi_cmdset_0002.c.
25991
25992     Signed-off-by: Stefan Roese <sr@denx.de>
25993
25994 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
25995 Author: Philip Balister <philip@balister.org>
25996 Date:   Mon Jun 16 08:58:07 2008 -0400
25997
25998     NAND: Add missing declaration to non-redundant saveenv().
25999
26000     Signed-off-by: Scott Wood <scottwood@freescale.com>
26001
26002 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
26003 Author: Wolfgang Grandegger <wg@grandegger.com>
26004 Date:   Mon Jun 2 15:09:55 2008 +0200
26005
26006     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
26007
26008     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26009     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26010     Signed-off-by: Scott Wood <scottwood@freescale.com>
26011
26012 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
26013 Author: Stefan Roese <sr@denx.de>
26014 Date:   Tue Jun 10 15:34:11 2008 +0200
26015
26016     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
26017
26018     This patch disables the square wave output of the M41T62 RTC used on
26019     Canyonlands & Glacier. Here the explanation:
26020
26021     The serial real-time clock part used in the design is an
26022     STMicro M41T62. This part has a full-time 32KHz square wave
26023     output that is connected to the TmrClk input to the
26024     processor. The default state for this square wave output is
26025     enabled so the output runs continuously when the board is
26026     powered normally and also from the battery. The TmrClk input
26027     to the processor goes to ground when the power is removed
26028     from the board/processor, and therefore the running square
26029     wave output is driving ground which drains the battery quickly.
26030
26031     Signed-off-by: Stefan Roese <sr@denx.de>
26032
26033 commit a94f22f08f280905926219e568568964cb9eeb9d
26034 Author: Andy Fleming <afleming@freescale.com>
26035 Date:   Wed Jun 11 18:10:20 2008 -0500
26036
26037     Fix build issue with string.h and linux/string.h
26038
26039     This commit:
26040     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
26041     Author: Wolfgang Denk <wd@denx.de>
26042     Date:   Fri Jun 6 14:28:14 2008 +0200
26043
26044         tools/mkimage: fix compiler warnings on some systems.
26045
26046     Broke building on some systems, because the host's string.h was interfering
26047     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
26048     we're building for the host, so now we only include when building inside
26049     u-boot.
26050
26051     Signed-off-by: Andy Fleming <afleming@freescale.com>
26052
26053 commit 9973e3c614721bbf169882ffc3be266a6611cd60
26054 Author: Becky Bruce <becky.bruce@freescale.com>
26055 Date:   Mon Jun 9 16:03:40 2008 -0500
26056
26057     Change initdram() return type to phys_size_t
26058
26059     This patch changes the return type of initdram() from long int to phys_size_t.
26060     This is required for a couple of reasons: long int limits the amount of dram
26061     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
26062     size of physical memory.  phys_size_t is defined as an unsigned long on almost
26063     all current platforms.
26064
26065     This patch *only* changes the return type of the initdram function (in
26066     include/common.h, as well as in each board's implementation of initdram).  It
26067     does not actually modify the code inside the function on any of the platforms;
26068     platforms which wish to support more than 2GB of DRAM will need to modify
26069     their initdram() function code.
26070
26071     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
26072     MPC8641HPCN.
26073
26074     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26075
26076 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
26077 Author: Becky Bruce <becky.bruce@freescale.com>
26078 Date:   Mon Jun 9 20:37:18 2008 -0500
26079
26080     Change lmb to use phys_size_t/phys_addr_t
26081
26082     This updates the lmb code to use phys_size_t
26083     and phys_addr_t instead of unsigned long.  Other code
26084     which interacts with this code, like getenv_bootm_size()
26085     is also updated.
26086
26087     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
26088
26089     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26090
26091 commit 61b09fc2952dc636017df4e7970e3de132276ba1
26092 Author: Becky Bruce <becky.bruce@freescale.com>
26093 Date:   Mon Jun 9 20:37:17 2008 -0500
26094
26095     Change print_size to take phys_size_t
26096
26097     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26098
26099 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
26100 Author: Becky Bruce <becky.bruce@freescale.com>
26101 Date:   Mon Jun 9 20:37:16 2008 -0500
26102
26103     Change bd/gd memsize/ram_size to be phys_size_t.
26104
26105     Currently, both are defined as an unsigned long, but
26106     should be phys_size_t. This should result in no real change,
26107     since phys_size_t is currently an unsigned long for all the
26108     default configs.  Also add print_lnum to cmd_bdinfo to deal
26109     with the potentially wider memsize.
26110
26111     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26112
26113 commit ba04f7010958e88a8910f2a123fee53fdc72e013
26114 Author: Kumar Gala <galak@kernel.crashing.org>
26115 Date:   Tue Jun 10 16:16:02 2008 -0500
26116
26117     FSL LAW: Add new interface to use the last free LAW
26118
26119     LAWs have the concept of priority so its useful to be able to allocate
26120     the lowest (highest number) priority.  We will end up using this with the
26121     new DDR code.
26122
26123     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26124
26125 commit 859a86a25c569d3665ff413d1d923394b8a961f3
26126 Author: Kumar Gala <galak@kernel.crashing.org>
26127 Date:   Wed Jun 11 00:51:45 2008 -0500
26128
26129     85xx/86xx: Move to dynamic mgmt of LAWs
26130
26131     With the new LAW interface (set_next_law) we can move to letting the
26132     system allocate which LAWs are used for what purpose.  This makes life
26133     a bit easier going forward with the new DDR code.
26134
26135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26136     Signed-off-by: Andy Fleming <afleming@freescale.com>
26137     Acked-by: Jon Loeliger <jdl@freescale.com>
26138     Acked-by: Becky Bruce <becky.bruce@freescale.com>
26139
26140 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
26141 Author: Kumar Gala <galak@kernel.crashing.org>
26142 Date:   Wed Jun 11 00:44:10 2008 -0500
26143
26144     FSL LAW: Keep track of LAW allocations
26145
26146     Make it so we keep track of which LAWs have allocated and provide
26147     a function (set_next_law) which can allocate a LAW for us if one is
26148     free.
26149
26150     In the future we will move to doing more "dynamic" LAW allocation
26151     since the majority of users dont really care about what LAW number
26152     they are at.
26153
26154     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
26155
26156     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26157     Signed-off-by: Andy Fleming <afleming@freescale.com>
26158
26159 commit ddde74a159caa6e18b481fec01d40b885aebb566
26160 Author: Kumar Gala <galak@kernel.crashing.org>
26161 Date:   Mon Jun 9 22:31:57 2008 -0500
26162
26163     85xx: remove dummy board_early_init_f
26164
26165     A number of board ports have empty version of board_early_init_f
26166     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
26167
26168     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26169
26170 commit 81e56e9af0d43712db8efb843606a8d62eab454f
26171 Author: Kumar Gala <galak@kernel.crashing.org>
26172 Date:   Mon Jun 9 18:55:38 2008 -0500
26173
26174     MPC8544DS: Update config.h
26175
26176     * Enable flash progress
26177     * remove CLEAR_LAW0 since we dont really use it
26178
26179     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26180
26181 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
26182 Author: Kumar Gala <galak@kernel.crashing.org>
26183 Date:   Mon Jun 9 13:37:24 2008 -0500
26184
26185     85xx: Remove unused and unconfigured memory test code.
26186
26187     Remove unused and unconfigured DDR test code from FSL 85xx boards.
26188     Besides, other common code exists.
26189
26190     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26191
26192 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
26193 Author: Sergei Poselenov <sposelenov@emcraft.com>
26194 Date:   Fri Jun 6 15:42:45 2008 +0200
26195
26196     Socrates: Added FPGA base address update in FDT.
26197
26198     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26199
26200 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
26201 Author: Sergei Poselenov <sposelenov@emcraft.com>
26202 Date:   Fri Jun 6 15:42:44 2008 +0200
26203
26204     Socrates: NAND support added. Changed the U-Boot base address and
26205
26206     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26207
26208 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
26209 Author: Sergei Poselenov <sposelenov@emcraft.com>
26210 Date:   Fri Jun 6 15:42:43 2008 +0200
26211
26212     NAND: Added support for 128-bit OOB, adapted
26213
26214     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26215
26216 commit 31ca0208612f2eb57690110d7c2815953650e47b
26217 Author: Sergei Poselenov <sposelenov@emcraft.com>
26218 Date:   Fri Jun 6 15:42:42 2008 +0200
26219
26220     Socrates: added missed file with UPMA configuration data.
26221
26222     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
26223
26224 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
26225 Author: Sergei Poselenov <sposelenov@emcraft.com>
26226 Date:   Fri Jun 6 15:42:41 2008 +0200
26227
26228     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
26229
26230     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26231
26232 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
26233 Author: Sergei Poselenov <sposelenov@emcraft.com>
26234 Date:   Fri Jun 6 15:42:40 2008 +0200
26235
26236     Added the upmconfig() function for 85xx.
26237
26238     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26239     Signed-off-by: Andy Fleming <afleming@freescale.com>
26240
26241 commit d39e68514ff943930ee692cff3fde03532eb7fec
26242 Author: Sergei Poselenov <sposelenov@emcraft.com>
26243 Date:   Fri Jun 6 15:42:39 2008 +0200
26244
26245     Socrates: config file cleanup.
26246
26247     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
26248
26249 commit e8cc3f04b124f757af4528206e60d8eb715ae083
26250 Author: Wolfgang Grandegger <wg@grandegger.com>
26251 Date:   Thu Jun 5 13:12:10 2008 +0200
26252
26253     TQM85xx: Change memory map to support Flash memory > 128 MiB
26254
26255     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
26256     memory. The current memory map only supports up to 128 MiB Flash.
26257     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
26258     set, up to 1 GiB flash is supported. To achieve this, the memory
26259     map has to be adjusted in great parts (for example the CCSRBAR is
26260     moved from 0xE0000000 to 0xA0000000).
26261
26262     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
26263     memory map also has to be considered in the kernel (changed
26264     CCSRBAR address, changed PCI IO base address, ...). Please use
26265     an appropriate Flat Device Tree blob (tqm8548.dtb).
26266
26267     Signed-off-by: Martin Krause <martin.krause@tqs.de>
26268     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26269
26270 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
26271 Author: Wolfgang Grandegger <wg@grandegger.com>
26272 Date:   Thu Jun 5 13:12:09 2008 +0200
26273
26274     TQM85xx: NAND support via local bus UPMB
26275
26276     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
26277     default and can be enabled for the TQM8548 modules. It is now based on
26278     the re-written FSL NAND UPM driver. A patch has been posted earlier today
26279     with the subject:
26280
26281     "NAND FSL UPM: driver re-write using the hwcontrol callback"
26282
26283     Note that the R/B pin is not supported by that module requiring to use
26284     the specified maximum delay time.
26285
26286     Note: With NAND support enabled the size of the U-Boot image exceeds
26287     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
26288     doubling the image size :-(.
26289
26290     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
26291     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26292
26293 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
26294 Author: Wolfgang Grandegger <wg@grandegger.com>
26295 Date:   Thu Jun 5 13:12:08 2008 +0200
26296
26297     TQM8548: PCI express support
26298
26299     This patch adds support for PCI express cards. The board support
26300     now uses common FSL PCI init code, for both, PCI and PCIe on all
26301     TQM85xx modules.
26302
26303     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
26304     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26305
26306 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
26307 Author: Wolfgang Grandegger <wg@grandegger.com>
26308 Date:   Thu Jun 5 13:12:07 2008 +0200
26309
26310     TQM8548: Basic support for the TQM8548 modules
26311
26312     This patch adds basic support for the TQM8548 module from TQ-Components
26313     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
26314     eTSEC 3 and 4
26315
26316     Furthermore Flash buffer write has been enabled to speed up output to
26317     the Flash by approx. a factor of 10.
26318
26319     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
26320     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26321
26322 commit 25991353204c78b094c3c1fec90182dcd607ab8f
26323 Author: Wolfgang Grandegger <wg@grandegger.com>
26324 Date:   Thu Jun 5 13:12:06 2008 +0200
26325
26326     TQM85xx: Support for Flat Device Tree
26327
26328     This patch adds support for Linux kernels using the Flat Device Tree.
26329     It also re-defines the default environment settings for booting Linux
26330     with the FDT blob.
26331
26332     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26333
26334 commit d9ee843d54c54776e1fdb86336ce554906a87331
26335 Author: Wolfgang Grandegger <wg@grandegger.com>
26336 Date:   Thu Jun 5 13:12:05 2008 +0200
26337
26338     TQM85xx: Support for Intel 82527 compatible CAN controller
26339
26340     This patch adds initialization of the UPMC RAM to support up to two
26341     Intel 82527 compatible CAN controller on the TQM85xx modules.
26342
26343     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
26344     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26345
26346 commit 518d5cfe72916323c746af1647764459914f555f
26347 Author: Wolfgang Grandegger <wg@grandegger.com>
26348 Date:   Thu Jun 5 13:12:04 2008 +0200
26349
26350     TQM85xx: Bugfix in the SDRAM initialisation
26351
26352     The CS0_BNDS register is now set according to the detected
26353     memory size.
26354
26355     Signed-off-by Martin Krause <martin.krause@tqs.de>
26356
26357 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
26358 Author: Wolfgang Grandegger <wg@grandegger.com>
26359 Date:   Thu Jun 5 13:12:03 2008 +0200
26360
26361     TQM85xx: Fix chip select configuration for second FLASH bank
26362
26363     This patch fixes the re-calculation of the automatic chip select
26364     configuration for boards with two populated FLASH banks.
26365
26366     Signed-off-by: Martin Krause <martin.krause@tqs.de>
26367
26368 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
26369 Author: Wolfgang Grandegger <wg@grandegger.com>
26370 Date:   Thu Jun 5 13:12:02 2008 +0200
26371
26372     TQM85xx: Support for Spansion 'N' type flashes added
26373
26374     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
26375     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
26376     needs to be changed -> new start address of the environment. The macro
26377     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
26378     defined for boards with 'N' type flashes.
26379
26380     Signed-off-by: Martin Krause <martin.krause@tqs.de>
26381     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26382
26383 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
26384 Author: Wolfgang Grandegger <wg@grandegger.com>
26385 Date:   Thu Jun 5 13:12:01 2008 +0200
26386
26387     TQM85xx: Fix CPM port pin configuration
26388
26389     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
26390     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
26391     as serial interface anyway. Worse, on some board variants configuring the
26392     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
26393
26394     Signed-off-by: Martin Krause <martin.krause@tqs.de>
26395
26396 commit b99ba1679e8cd51b023e67098c89e606e47137d2
26397 Author: Wolfgang Grandegger <wg@grandegger.com>
26398 Date:   Thu Jun 5 13:12:00 2008 +0200
26399
26400     TQM85xx: Various coding style fixes
26401
26402     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26403
26404 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
26405 Author: Gerald Van Baren <vanbaren@cideas.com>
26406 Date:   Tue Jun 10 22:15:58 2008 -0400
26407
26408     libfdt: Move the working_fdt pointer to cmd_fdt.c
26409
26410     The working_fdt pointer was declared in common/fdt_support.c but was
26411     not used there.  Move it to common/cmd_fdt.c where it is used (it is
26412     also used in lib_ppc/bootm.c).
26413
26414     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26415
26416 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
26417 Author: Kim Phillips <kim.phillips@freescale.com>
26418 Date:   Tue Jun 10 11:06:17 2008 -0500
26419
26420     fdt: unshadow global working fdt variable
26421
26422     differentiate with local variables of the same name by renaming the
26423     global 'fdt' variable 'working_fdt'.
26424
26425     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26426
26427 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
26428 Author: Andy Fleming <afleming@freescale.com>
26429 Date:   Tue Jun 10 18:49:34 2008 -0500
26430
26431     socrates: Fix PCI clk fix patch
26432
26433     The submitted patch seems to have been more up-to-date, but an older patch was
26434     already in the repository.  This patch encompasses the differences
26435
26436     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
26437
26438     Signed-off-by: Andy Fleming <afleming@freescale.com>
26439
26440 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
26441 Author: Wolfgang Grandegger <wg@grandegger.com>
26442 Date:   Thu Jun 5 13:02:29 2008 +0200
26443
26444     NAND FSL UPM: driver re-write using the hwcontrol callback
26445
26446     This is a re-write of the NAND FSL UPM driver using the more universal
26447     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
26448     list of furher modifications:
26449
26450     - For the time being, the UPM setup writing the UPM array has been
26451       removed from the driver and must now be done by the board specific
26452       code.
26453
26454     - The bus width definition in "struct fsl_upm_nand" is now in bits to
26455       comply with the corresponding Linux driver and 8, 16 and 32 bit
26456       accesses are supported.
26457
26458     - chip->dev_read is only set if fun->dev_ready != NULL, which is
26459       required for boards not connecting the R/B pin.
26460
26461     - A few issue have been fixed with MxMR bit manipulation like in the
26462       corresponding Linux driver.
26463
26464     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
26465           as well, because the address is already determined by
26466           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
26467
26468     This patch has been tested on a TQM8548 modules with the NAND chip
26469     Micron MT29F8G08FABWP.
26470
26471     This patch is based on the following patches posted to this list a few
26472     minutes ago:
26473
26474       PPC: add accessor macros to clear and set bits in one shot
26475       83xx/85xx/86xx: add more MxMR local bus definitions
26476
26477     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26478     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26479
26480 commit 6beecfbb542992eede5831240cd58678274683a9
26481 Author: Wolfgang Grandegger <wg@grandegger.com>
26482 Date:   Thu Jun 5 13:11:59 2008 +0200
26483
26484     MPC85xx: Beautify boot output of L2 cache configuration
26485
26486     The boot output is now aligned poperly with other boot output
26487     lines, e.g.:
26488
26489       FLASH: 128 MB
26490       L2:    512 KB enabled
26491
26492     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26493
26494 commit 398415114f0a705163a14543e9fef03f734b1ffa
26495 Author: Wolfgang Grandegger <wg@grandegger.com>
26496 Date:   Wed Jun 4 12:45:22 2008 +0200
26497
26498     PPC: add accessor macros to clear and set bits in one shot
26499
26500     PPC: add accessor macros to clear and set bits in one shot
26501
26502     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
26503     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
26504     They are very handy to manipulate bits it I/O registers.
26505
26506     This patch is required for my forthcoming FSL NAND UPM driver re-write and
26507     the support for the TQM8548 module.
26508
26509     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26510
26511 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
26512 Author: Wolfgang Grandegger <wg@grandegger.com>
26513 Date:   Wed Jun 4 13:52:17 2008 +0200
26514
26515     TQM: move TQM boards to board/tqc
26516
26517     Move all TQM board directories to the vendor specific directory "tqc"
26518     for modules from TQ-Components GmbH (http://www.tqc.de).
26519
26520     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26521
26522 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
26523 Author: Wolfgang Grandegger <wg@grandegger.com>
26524 Date:   Mon Jun 2 12:09:30 2008 +0200
26525
26526     83xx/85xx/86xx: add more MxMR local bus definitions
26527
26528     83xx/85xx/86xx: add more MxMR local bus definitions
26529
26530     This patch adds more macro definitions for the UPM Machine Mode Registers
26531     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
26532     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
26533     required for my forthcoming FSL NAND UPM driver re-write and the support
26534     for the TQM8548 module.
26535
26536     This patch is based on the following two patches from Anton Vorontsov:
26537
26538     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
26539     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
26540
26541     I leave coding style violation fixes, code beautification and name
26542     corrections to somebody else ;-(.
26543
26544     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26545
26546 commit c8c5fc266e4499e283c293ccb972863156aa4134
26547 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26548 Date:   Thu May 29 18:14:56 2008 +0400
26549
26550     83xx/85xx: further localbus cleanups
26551
26552     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
26553     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
26554
26555     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26556
26557 commit 42dbd667c88d496882d53e22656e89b654205492
26558 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26559 Date:   Wed May 28 18:20:15 2008 +0400
26560
26561     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
26562
26563     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
26564     use it on MPC85xx and MPC86xx processors.
26565
26566     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26567
26568 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
26569 Author: Kumar Gala <galak@kernel.crashing.org>
26570 Date:   Thu May 29 11:22:06 2008 -0500
26571
26572     85xx: Add setting of cache props in the device tree.
26573
26574     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26575
26576 commit 4dbdb7681e243431530df0725627192a0c4aefda
26577 Author: Kumar Gala <galak@kernel.crashing.org>
26578 Date:   Tue Jun 10 16:53:46 2008 -0500
26579
26580     85xx: expose cpu identification
26581
26582     The current cpu identification code is used just to return the name
26583     of the processor at boot.  There are some other locations that the name
26584     is useful (device tree setup).  Expose the functionality to other bits
26585     of code.
26586
26587     Also, drop the 'E' suffix and add it on by looking at the SVR version
26588     when we print this out.  This is mainly to allow the most flexible use
26589     of the name.  The device tree code tends to not care about the 'E' suffix.
26590
26591     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26592
26593 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
26594 Author: Kim Phillips <kim.phillips@freescale.com>
26595 Date:   Tue Jun 10 13:25:24 2008 -0500
26596
26597     mpc83xx: MVBLM7: minor build fixups
26598
26599     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26600
26601 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
26602 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26603 Date:   Tue Jun 10 09:14:05 2008 +0200
26604
26605     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
26606
26607     Add MPC8343 based board mvBlueLYNX-M7.
26608     It's a single board stereo camera system.
26609     Please read doc/README.mvblm7 for details.
26610
26611     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26612     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26613
26614 commit c005b93925ba49f07da2aa748527996d927e172f
26615 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
26616 Date:   Tue Jun 10 09:13:16 2008 +0200
26617
26618     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
26619
26620     Add MPC8343 based board mvBlueLYNX-M7.
26621     It's a single board stereo camera system.
26622     Please read doc/README.mvblm7 for details.
26623
26624     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
26625     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26626
26627 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
26628 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26629 Date:   Thu May 29 18:14:56 2008 +0400
26630
26631     83xx/85xx: further localbus cleanups
26632
26633     move the BRx_* and ORx_* left behind in mpc85xx.h
26634
26635     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
26636     the same, just few differences which needs some attention though).
26637
26638     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
26639     of these defines. So this cleanup I'll leave for the "better times".
26640
26641     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26642     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26643
26644 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
26645 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26646 Date:   Wed May 28 18:20:15 2008 +0400
26647
26648     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
26649
26650     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
26651     use it on MPC85xx and MPC86xx processors.
26652
26653     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26654     Acked-by: Andy Fleming <afleming@freescale.com>
26655     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26656
26657 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
26658 Author: Tor Krill <tor@excito.com>
26659 Date:   Mon Jun 2 15:09:30 2008 +0200
26660
26661     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
26662
26663     Signed-off-by: Tor Krill <tor@excito.com>
26664     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26665
26666 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
26667 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26668 Date:   Mon Jun 9 23:37:44 2008 +0900
26669
26670     net: Conditional COBJS inclusion of network drivers
26671
26672     Replace COBJS-y with appropriate driver config names.
26673
26674     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26675     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26676
26677 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
26678 Author: Gerald Van Baren <vanbaren@cideas.com>
26679 Date:   Mon Jun 9 21:02:17 2008 -0400
26680
26681     Use strncmp() for the fdt command
26682
26683     Cleaner than doing multiple conditionals on characters.
26684
26685     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26686
26687 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
26688 Author: Gerald Van Baren <vanbaren@cideas.com>
26689 Date:   Sat Jun 7 12:25:05 2008 -0400
26690
26691     The fdt boardsetup command criteria was not unique
26692
26693     It was checking just for "b", which is not unique with respect to the
26694     "boot" command.  Change to check for "boa"[rdsetup].
26695
26696     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26697
26698 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
26699 Author: David Gibson <david@gibson.dropbear.id.au>
26700 Date:   Tue May 20 17:19:11 2008 +1000
26701
26702     libfdt: Several cleanups to parameter checking
26703
26704     This patch makes a couple of small cleanups to parameter checking of
26705     libfdt functions.
26706
26707         - In several functions which take a node offset, we use an
26708     idiom involving fdt_next_tag() first to check that we have indeed been
26709     given a node offset.  This patch adds a helper function
26710     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
26711
26712         - In fdt_rw.c in several places we have the expanded version
26713     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
26714     replaces those instances with an invocation of the macro; that's what
26715     it's for.
26716
26717         - In fdt_sw.c we rename the check_header_sw() function to
26718     sw_check_header() to match the analgous function in fdt_rw.c, and we
26719     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
26720     functions in fdt_rw.c
26721
26722     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26723
26724 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
26725 Author: Gerald Van Baren <vanbaren@cideas.com>
26726 Date:   Tue Jun 3 20:34:45 2008 -0400
26727
26728     Remove the deprecated CONFIG_OF_FLAT_TREE
26729
26730     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
26731     cleaner, has better functionality, and is better supported.
26732
26733     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26734
26735 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
26736 Author: Gerald Van Baren <vanbaren@cideas.com>
26737 Date:   Tue Jun 3 20:26:29 2008 -0400
26738
26739     Change the stxxst to CONFIG_OF_LIBFDT
26740
26741     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
26742     to CONFIG_OF_LIBFDT.
26743
26744     WARNING: It appears that this board lost its ability to boot via a
26745     flattened device tree prior to this changeset.
26746
26747     WARNING: This conversion was untested because I do not have a board to
26748     test it on.
26749
26750     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26751
26752 commit 589c04271d129729a8b01391453851ab9cc4069c
26753 Author: Gerald Van Baren <vanbaren@cideas.com>
26754 Date:   Tue Jun 3 20:24:58 2008 -0400
26755
26756     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
26757
26758     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
26759     to CONFIG_OF_LIBFDT.
26760
26761     WARNING: This conversion is untested because I do not have a board to
26762     test it on.
26763
26764     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
26765     /aliases/ethernet1 property for the ethernet to work.
26766
26767     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26768
26769 commit ee1e35bede91debc8bff9b02f75574486033b652
26770 Author: Kumar Gala <galak@kernel.crashing.org>
26771 Date:   Thu May 29 01:21:24 2008 -0500
26772
26773     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
26774
26775     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26776
26777 commit 3b9519fc50802436e417c839e69df7b2016cade5
26778 Author: Becky Bruce <becky.bruce@freescale.com>
26779 Date:   Wed May 14 13:10:04 2008 -0500
26780
26781     MPC85xx: Change traps.c to not reference non-addressable memory
26782
26783     Currently, END_OF_RAM is used by the trap code to determine if
26784     we should attempt to access the stack pointer or not. However,
26785     on systems with a lot of RAM, only a subset of the RAM is
26786     guaranteed to be mapped in and accessible.  Change END_OF_RAM
26787     to use get_effective_memsize() instead of using the raw ram
26788     size out of the bd.
26789
26790     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26791
26792 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
26793 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26794 Date:   Mon Jun 9 13:39:57 2008 +0900
26795
26796     sh: Renesas Solutions SH7763RDP board support
26797
26798     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
26799     In this patch, support SCIF, NOR Flash, and Ethernet.
26800
26801     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26802     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26803
26804 commit 60179098a95eaa972007d7ec58e4c1588029720f
26805 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26806 Date:   Fri Jun 6 16:24:13 2008 +0900
26807
26808     sh: Add support Renesas SH7763
26809
26810     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
26811     This patch supprts CPU register's header file.
26812
26813     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26814     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26815
26816 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
26817 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26818 Date:   Fri Jun 6 16:16:08 2008 +0900
26819
26820     sh: SH7763 SCIF support
26821
26822     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
26823     but only SCIF2 is different. This patch work all SCIF channel.
26824
26825     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26826     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26827
26828 commit 79b51ff8205f0354d5300570614c1d2db499679c
26829 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26830 Date:   Sat Jun 7 20:51:59 2008 +0900
26831
26832     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
26833
26834     Also get rid of some #ifdefs in *.c files.
26835
26836     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26837
26838 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
26839 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26840 Date:   Sat Jun 7 20:51:56 2008 +0900
26841
26842     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
26843
26844     CONFIG_SOC_AU1X00
26845
26846       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
26847       need to have this config as a system type specifier.
26848
26849     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
26850     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
26851
26852       Machine type specifiers. Each port should have one of aboves.
26853
26854     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26855
26856 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
26857 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
26858 Date:   Fri May 30 16:05:28 2008 -0400
26859
26860     env_nand.c: Added bad block management for environment variables
26861
26862     Modified to check for bad blocks and to skipping over them when
26863     CFG_ENV_RANGE has been defined.
26864     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
26865     flash block size.
26866
26867     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
26868     Signed-off-by: Scott Wood <scottwood@freescale.com>
26869
26870 commit 279726bd00558e80263d44581c44167625b7fb9a
26871 Author: Becky Bruce <becky.bruce@freescale.com>
26872 Date:   Wed May 14 13:09:58 2008 -0500
26873
26874     MPC86xx: Change traps.c to not reference non-addressable memory
26875
26876     Currently, END_OF_RAM is used by the trap code to determine if
26877     we should attempt to access the stack pointer or not. However,
26878     on systems with a lot of RAM, only a subset of the RAM is
26879     guaranteed to be mapped in and accessible.  Change END_OF_RAM
26880     to use get_effective_memsize() instead of using the raw ram
26881     size out of the bd to prevent us from trying to access
26882     non-mapped memory.
26883
26884     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
26885
26886 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
26887 Author: Wolfgang Denk <wd@denx.de>
26888 Date:   Fri Jun 6 14:28:14 2008 +0200
26889
26890     tools/mkimage: fix compiler warnings on some systems.
26891
26892     Signed-off-by: Wolfgang Denk <wd@denx.de>
26893
26894 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
26895 Author: Stefan Roese <sr@denx.de>
26896 Date:   Fri Jun 6 16:10:41 2008 +0200
26897
26898     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
26899
26900     We use upper case letters for the AMCC processor defines (like
26901     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
26902     not CONFIG_440SPe. This patch fixes the last misspelled config options.
26903
26904     Signed-off-by: Stefan Roese <sr@denx.de>
26905
26906 commit 72675dc6c06a48846d180106161d49dd714383cc
26907 Author: Stefan Roese <sr@denx.de>
26908 Date:   Fri Jun 6 15:55:21 2008 +0200
26909
26910     ppc4xx: Unify AMCC's board config files (part 3/3)
26911
26912     This patch series unifies the AMCC eval board ports by introducing
26913     a common include header for all AMCC eval boards:
26914
26915     include/configs/amcc-common.h
26916
26917     This header now includes all common configuration options/defines which
26918     are removed from the board specific headers.
26919
26920     The reason for this is ease of maintenance and unified look and feel
26921     of all AMCC boards.
26922
26923     Signed-off-by: Stefan Roese <sr@denx.de>
26924
26925 commit 490f204096d6e2c9940f67816f154a8125bab116
26926 Author: Stefan Roese <sr@denx.de>
26927 Date:   Fri Jun 6 15:55:03 2008 +0200
26928
26929     ppc4xx: Unify AMCC's board config files (part 2/3)
26930
26931     This patch series unifies the AMCC eval board ports by introducing
26932     a common include header for all AMCC eval boards:
26933
26934     include/configs/amcc-common.h
26935
26936     This header now includes all common configuration options/defines which
26937     are removed from the board specific headers.
26938
26939     The reason for this is ease of maintenance and unified look and feel
26940     of all AMCC boards.
26941
26942     Signed-off-by: Stefan Roese <sr@denx.de>
26943
26944 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
26945 Author: Stefan Roese <sr@denx.de>
26946 Date:   Fri Jun 6 15:54:31 2008 +0200
26947
26948     ppc4xx: Unify AMCC's board config files (part 1/3)
26949
26950     This patch series unifies the AMCC eval board ports by introducing
26951     a common include header for all AMCC eval boards:
26952
26953     include/configs/amcc-common.h
26954
26955     This header now includes all common configuration options/defines which
26956     are removed from the board specific headers.
26957
26958     The reason for this is ease of maintenance and unified look and feel
26959     of all AMCC boards.
26960
26961     Signed-off-by: Stefan Roese <sr@denx.de>
26962
26963 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
26964 Author: Remy Bohmer <linux@bohmer.net>
26965 Date:   Thu Jun 5 13:03:36 2008 +0200
26966
26967     DM9000 fix status check fail 0x6d error for trizeps board
26968
26969     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
26970     the status byte need to be checked to identify a valid packet in the fifo
26971
26972     But, The several different Application Notes do not all speak the same
26973     language on these bits. They do not disagree, but only 1 Application Note
26974     noted explicitly that only these 2 bits need to be checked.
26975     Even the datasheets do not mention anything about these 2 bits.
26976
26977     Because the old code, and the kernel check the whole byte, I left this piece
26978     untouched.
26979
26980     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
26981     it should work.
26982
26983     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
26984     in the fifo) is much shorter now, compared to the older U-boot driver code,
26985     so that we can maybe run into a hardware condition now that was never seen
26986     before, or maybe was seen very unfrequently.
26987
26988     Additionaly added a cleanup of a stack variable.
26989
26990     Signed-off-by: Remy Bohmer <linux@bohmer.net>
26991     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26992
26993 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
26994 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26995 Date:   Thu Jun 5 22:29:00 2008 +0900
26996
26997     [MIPS] Update <asm/addrspace.h> header
26998
26999     - Fix traditional KSEG names
27000     - Replace PHYSADDR with CPHYSADDR
27001
27002     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27003
27004 commit f0d5a6f060d00358b85c62a921a423ea8df71184
27005 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27006 Date:   Thu Jun 5 22:29:00 2008 +0900
27007
27008     [MIPS] mips_config.mk: Misc fixes
27009
27010     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
27011     - Modify comments
27012
27013     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27014
27015 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
27016 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27017 Date:   Thu Jun 5 22:29:00 2008 +0900
27018
27019     [MIPS] Kill unused <version.h> inclusions
27020
27021     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27022
27023 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
27024 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27025 Date:   Thu Jun 5 22:29:00 2008 +0900
27026
27027     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
27028
27029     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
27030     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
27031     in the U-Boot system.
27032
27033     The other is we don't have a proper time management counter like timestamp
27034     other ARCHs have. We need the 32-bit millisecond clock counter.
27035
27036     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
27037     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
27038     of calculated CP0 counter cycles in a CFG_HZ.
27039
27040     STRATEGY:
27041
27042     * Fix improper CFG_HZ value to have 1000
27043
27044     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
27045
27046     * timer_init: initialize timestamp and set up the first timer expiration.
27047       Note that we don't need to initialize CP0 count/compare registers here
27048       as they have been already zeroed out on the system reset. Leave them as
27049       they are.
27050
27051     * get_timer: calculate how many timestamps have been passed, then return
27052       base-relative timestamp. Make sure we can easily count missed timestamps
27053       regardless of CP0 count/compare value.
27054
27055     * get_ticks: return the current timestamp, that is get_timer(0).
27056
27057     Most parts are from good old Linux v2.6.16 kernel.
27058
27059     v2:
27060     - Remove FIXME comments as they turned out to be trivial.
27061     - Use CP0 compare register as a global variable for expirelo.
27062     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
27063       instead.
27064
27065     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27066
27067 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
27068 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27069 Date:   Thu Jun 5 22:29:00 2008 +0900
27070
27071     [MIPS] lib_mips/time.c: Fix udelay
27072
27073     What we have to do is just to wait for given micro-seconds. No need to
27074     take into account current time, get_timer and CFG_HZ.
27075
27076     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27077
27078 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
27079 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27080 Date:   Thu Jun 5 22:28:59 2008 +0900
27081
27082     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
27083
27084     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
27085     This patch replaces mips_{compare,count}_set and mips_count_get with
27086     existing macros.
27087
27088     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27089
27090 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
27091 Author: Remy Bohmer <linux@bohmer.net>
27092 Date:   Tue Jun 3 15:48:17 2008 +0200
27093
27094     Get rid of annoying/superfluous bad-checksum warning message
27095
27096     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
27097     It is annoying for ordinary users who start to doubt the network connection
27098     in general when they see messages like this.
27099
27100     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
27101     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
27102     now before checking the checksum.
27103
27104     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27105     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27106
27107 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
27108 Author: Remy Bohmer <linux@bohmer.net>
27109 Date:   Wed Jun 4 10:47:25 2008 +0200
27110
27111     Fix order for reading rx-status registers in 32bit mode of DM9000
27112
27113     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
27114     a bug in reading the rx-status registers in 32bit mode only.
27115     This patch repairs this.
27116
27117     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27118     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27119
27120 commit 98291e2e689096420465074cce926b226d2e71b4
27121 Author: Remy Bohmer <linux@bohmer.net>
27122 Date:   Tue Jun 3 15:26:26 2008 +0200
27123
27124     DM9000: Some minor code cleanups
27125
27126     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
27127     need some other minor cleanup.
27128
27129     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27130     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27131
27132 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
27133 Author: Remy Bohmer <linux@bohmer.net>
27134 Date:   Tue Jun 3 15:26:25 2008 +0200
27135
27136     DM9000: Make driver work properly for DM9000A
27137
27138     The DM9000A network controller does not work with the U-boot DM9000x driver.
27139     Analysis showed that many incoming packets are lost.
27140
27141     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
27142     check for a valid rx packet be done on the interrupt status register, not
27143     directly by performing the dummy read and the rx status check as is currently
27144     the case in the u-boot driver.
27145
27146     When the recommended poll is done as suggested the driver starts working
27147     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
27148     can be more than 1 package in the fifo at the same time.
27149
27150     The driver must perform the rx-status check in a loop and read and handle all
27151     packages until there is no more left _after_ the interrupt RX flag is set.
27152
27153     This change has been tested with DM9000A, DM9000E, DM9000EP.
27154
27155     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27156     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27157
27158 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
27159 Author: Remy Bohmer <linux@bohmer.net>
27160 Date:   Tue Jun 3 15:26:24 2008 +0200
27161
27162     DM9000: Improve eth_reset() routine
27163
27164     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
27165     reset procedure must be done twice to properly reset the DM9000 by means of software.
27166     This errata is not needed anymore for the DM9000A, but it does not bother it.
27167
27168     This change has been tested with DM9000A, DM9000E, DM9000EP.
27169
27170     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27171     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27172
27173 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
27174 Author: Remy Bohmer <linux@bohmer.net>
27175 Date:   Tue Jun 3 15:26:23 2008 +0200
27176
27177     DM9000: improve eth_send() routine
27178
27179     The eth_send routine of the U-boot DM9000x driver does not match the
27180     DM9000 or DM9000A application notes/programming guides.
27181
27182     This change improves the stability of the DM9000A network controller.
27183
27184     This change has been tested with DM9000A, DM9000E, DM9000EP.
27185
27186     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27187     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27188
27189 commit 134e266253c02a7832560da59d394989c4f64453
27190 Author: Remy Bohmer <linux@bohmer.net>
27191 Date:   Tue Jun 3 15:26:22 2008 +0200
27192
27193     DM9000: repair debug logging
27194
27195     It seems that the debugging code of the DM9000x driver in U-boot has not been
27196     compiled for a long time, because it cannot compile...
27197
27198     Also rearranged some loglines to get more useful info while debugging.
27199
27200     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27202
27203 commit a101361bfe23c120321e45d114c0603b8e0763e9
27204 Author: Remy Bohmer <linux@bohmer.net>
27205 Date:   Tue Jun 3 15:26:21 2008 +0200
27206
27207     DM9000: Add data bus-width auto detection.
27208
27209     The U-boot DM9000x driver contains a compile time bus-width definition for
27210     the databus connected to the network controller.
27211
27212     This compile check makes the code unclear, inflexible and is unneccessary.
27213     It can be asked to the network controller what its bus-width is by reading bits
27214     6 and 7 of the interrupt status register.
27215
27216     The linux kernel already uses a runtime mechanism to determine this bus-width,
27217     so the implementation below looks somewhat like that implementation.
27218
27219     This change has been tested with DM9000A, DM9000E, DM9000EP.
27220
27221     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27222     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27223
27224 commit 63a0afa0c32e5f4ea98a9439542870072437404d
27225 Author: Stefan Roese <sr@denx.de>
27226 Date:   Wed Jun 4 19:19:20 2008 +0200
27227
27228     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
27229
27230     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
27231     introduced by the commit:
27232
27233     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
27234
27235     With this patch SDRAM will get initialized again and booting from NAND
27236     is working again.
27237
27238     Signed-off-by: Stefan Roese <sr@denx.de>
27239     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
27240
27241 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
27242 Author: Wolfgang Denk <wd@denx.de>
27243 Date:   Tue May 27 14:19:30 2008 +0200
27244
27245     Socrates: Fix PCI bus frequency report
27246
27247     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27248
27249 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
27250 Author: Tor Krill <tor@excito.com>
27251 Date:   Thu May 29 11:10:30 2008 +0200
27252
27253     Fix incorrect switch for IF_TYPE in part.c
27254
27255     Use correct field in block_dev_desc_t when writing interface type in
27256     dev_print. Error introduced in 574b3195.
27257
27258     Also added fix from Martin Krause
27259
27260     Signed-off-by: Tor Krill <tor@excito.com>
27261
27262 commit b64b8a0bd310935b70af69ac970952f2b364ae56
27263 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
27264 Date:   Tue May 27 10:25:39 2008 +0200
27265
27266     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
27267
27268     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
27269
27270 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
27271 Author: Peter Tyser <ptyser@xes-inc.com>
27272 Date:   Thu May 22 18:56:52 2008 -0500
27273
27274     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
27275
27276     Removed unneeded command line history initialization.  Also, the original
27277     code would access the 'initted' variable before relocation to SDRAM
27278     which resulted in erratic behavior since the bss is not initialized when
27279     executing from flash.
27280
27281     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
27282
27283 commit 22f371b63038a4ecab04068877c1089e51a01ba1
27284 Author: Grant Erickson <gerickson@nuovations.com>
27285 Date:   Wed May 21 13:28:30 2008 -0700
27286
27287     PPC4xx: Simplified post_word_{load, store}
27288
27289     This patch simplifies post_word_{load,store} by using the preprocessor
27290     to eliminate redundant, copy-and-pasted code.
27291
27292     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
27293
27294 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
27295 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
27296 Date:   Wed May 7 21:25:33 2008 +0400
27297
27298     cfi_flash: enable M18 flash chips family support.
27299
27300     Added new command set ID. Buffered write command processing is changed
27301     in order to support M18 flash chips family.
27302
27303     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
27304     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
27305
27306 commit 93c56f212ccdadc182018f0769cb284426b88f1d
27307 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
27308 Date:   Wed May 7 21:24:44 2008 +0400
27309
27310     cfi_flash: support of long cmd in U-boot.
27311
27312     Some NOR flash chips needs support of commands with length grether than max
27313     value size of uchar. For example all M18 family chips use 0x1ff command in
27314     buffered write mode as value of program loops count.
27315
27316     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
27317     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
27318
27319 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
27320 Author: Stefan Roese <sr@denx.de>
27321 Date:   Fri May 16 11:06:06 2008 +0200
27322
27323     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
27324
27325     On AD7414 the first value upon bootup is not read correctly.
27326     This is most likely because of the 800ms update time of the
27327     temp register in normal update mode. To get current values
27328     each time we issue the "dtt" command including upon powerup
27329     we switch into one-short mode.
27330
27331     This patch fixes the problem on AD7414 equipped boards (Sequoia,
27332     Canyonlands etc), that temp value printed in the bootup log was
27333     incorrect.
27334
27335     Signed-off-by: Stefan Roese <sr@denx.de>
27336
27337 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
27338 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27339 Date:   Fri May 30 16:55:06 2008 +0200
27340
27341     ppc4xx: Cleanup CPCI405 variant's config file
27342
27343     This patch removes some dead code from CPCI405 board's
27344     config files. JFFS2 support is also removed. It's not used and
27345     CPCI4052 does not build anymore without some size reduction.
27346
27347     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27348
27349 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
27350 Author: Kenneth Johansson <kenneth@southpole.se>
27351 Date:   Thu May 29 16:32:33 2008 +0200
27352
27353     Remove shell variable UNDEF_SYM.
27354
27355     UNDEF_SYM is a shell variable in the main Makefile used to force the
27356     linker to add all u-boot commands to the final image. It has no use here.
27357
27358     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
27359
27360 commit 8c66497e06bf803489c589df58ee591d71033274
27361 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27362 Date:   Fri May 16 11:10:35 2008 +0200
27363
27364     Add support for environment in SPI flash
27365
27366     This is pretty incomplete...it doesn't handle reading the environment
27367     before relocation, it doesn't support redundant environment, and it
27368     doesn't support embedded environment. But apart from that, it does
27369     seem to work.
27370
27371     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27372
27373 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
27374 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27375 Date:   Fri May 16 11:10:34 2008 +0200
27376
27377     SPI Flash: Add "sf" command
27378
27379     This adds a new command, "sf" which can be used to manipulate SPI
27380     flash. Currently, initialization, reading, writing and erasing is
27381     supported.
27382
27383     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27384
27385 commit d25ce7d24cc0f93881559f4009175ea305af65e8
27386 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27387 Date:   Fri May 16 11:10:33 2008 +0200
27388
27389     SPI Flash subsystem
27390
27391     This adds a new SPI flash subsystem.
27392
27393     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
27394     but some preliminary support for other flash types is in place as
27395     well.
27396
27397     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27398
27399 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
27400 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
27401 Date:   Fri May 16 11:10:32 2008 +0200
27402
27403     atmel_spi: Driver for the Atmel SPI controller
27404
27405     This adds a driver for the SPI controller found on most AT91 and AVR32
27406     chips, implementing the new SPI API.
27407
27408     Changed in v4:
27409       - Update to new API
27410       - Handle zero-length transfers appropriately. The user may send a
27411         zero-length SPI transfer with SPI_XFER_END set in order to
27412         deactivate the chip select after a series of transfers with chip
27413         select active. This is useful e.g. when polling the status
27414         register of DataFlash.
27415
27416     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27417
27418 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
27419 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27420 Date:   Fri May 16 11:10:31 2008 +0200
27421
27422     SPI API improvements
27423
27424     This patch gets rid of the spi_chipsel table and adds a handful of new
27425     functions that makes the SPI layer cleaner and more flexible.
27426
27427     Instead of the spi_chipsel table, each board that wants to use SPI
27428     gets to implement three hooks:
27429       * spi_cs_activate(): Activates the chipselect for a given slave
27430       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
27431       * spi_cs_is_valid(): Determines if the given bus/chipselect
27432         combination can be activated.
27433
27434     Not all drivers may need those extra functions however. If that's the
27435     case, the board code may just leave them out (assuming they know what
27436     the driver needs) or rely on the linker to strip them out (assuming
27437     --gc-sections is being used.)
27438
27439     To set up communication parameters for a given slave, the driver needs
27440     to call spi_setup_slave(). This returns a pointer to an opaque
27441     spi_slave struct which must be passed as a parameter to subsequent SPI
27442     calls. This struct can be freed by calling spi_free_slave(), but most
27443     driver probably don't want to do this.
27444
27445     Before starting one or more SPI transfers, the driver must call
27446     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
27447     the hardware. When all transfers are done, the driver must call
27448     spi_release_bus() to make the bus available to others, and possibly
27449     shut down the SPI controller hardware.
27450
27451     spi_xfer() behaves mostly the same as before, but it now takes a
27452     spi_slave parameter instead of a spi_chipsel function pointer. It also
27453     got a new parameter, flags, which is used to specify chip select
27454     behaviour. This may be extended with other flags in the future.
27455
27456     This patch has been build-tested on all powerpc and arm boards
27457     involved. I have not tested NIOS since I don't have a toolchain for it
27458     installed, so I expect some breakage there even though I've tried
27459     fixing up everything I could find by visual inspection.
27460
27461     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
27462     DataFlash drivers posted as a follow-up. I'd like some help testing
27463     other boards that use the existing SPI API.
27464
27465     But most of all, I'd like some comments on the new API. Is this stuff
27466     usable for everyone? If not, why?
27467
27468     Changed in v4:
27469       - Build fixes for various boards, drivers and commands
27470       - Provide common struct spi_slave definition that can be extended by
27471         drivers
27472       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
27473       - Make default bus and mode build-time configurable
27474       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
27475
27476     Changed in v3:
27477       - Add opaque struct spi_slave for controller-specific data associated
27478         with a slave.
27479       - Add spi_claim_bus() and spi_release_bus()
27480       - Add spi_free_slave()
27481       - spi_setup() is now called spi_setup_slave() and returns a
27482         struct spi_slave
27483       - soft_spi now supports four SPI modes (CPOL|CPHA)
27484       - Add bus parameter to spi_setup_slave()
27485       - Convert the new i.MX32 SPI driver
27486       - Convert the new MC13783 RTC driver
27487
27488     Changed in v2:
27489       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
27490         new API.
27491
27492     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27493     Tested-by: Guennadi Liakhovetski <lg@denx.de>
27494
27495 commit 289011207d999b2e4085150d2aa30d547ad9b800
27496 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27497 Date:   Fri May 16 11:10:30 2008 +0200
27498
27499     Move definition of container_of() to common.h
27500
27501     AVR32 and AT91SAM9 both have their own identical definitions of
27502     container_of() taken from the Linux kernel. Move it to common.h so
27503     that all architectures can use it.
27504
27505     container_of() is already used by some drivers, and will be used
27506     extensively by the new and improved SPI API.
27507
27508     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27509
27510 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
27511 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27512 Date:   Fri May 16 11:08:11 2008 +0200
27513
27514     soft_i2c: Pull SDA high before reading
27515
27516     Spotted by Dean Capindale.
27517
27518     Systems that support open-drain GPIO properly are allowed provide an
27519     empty I2C_TRISTATE define. However, this means that we need to be
27520     careful not to drive SDA low when the slave is expected to respond.
27521
27522     This patch adds a missing I2C_SDA(1) to read_byte() required to
27523     tristate the SDA line on systems that support open-drain GPIO.
27524
27525     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
27526
27527 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
27528 Author: Stefan Roese <sr@denx.de>
27529 Date:   Mon May 19 11:34:53 2008 +0200
27530
27531     ppc4xx: Remove implementations of testdram()
27532
27533     This patch removes the used testdram() implementations of the board
27534     that are maintained by myself.
27535
27536     Signed-off-by: Stefan Roese <sr@denx.de>
27537
27538 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
27539 Author: Stefan Roese <sr@denx.de>
27540 Date:   Mon Jun 2 17:37:28 2008 +0200
27541
27542     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
27543
27544     Historically the 405 U-Boot port had a dram_init() call in early init
27545     stage. This function was still called from start.S and most of the time
27546     coded in assembler. This is not needed anymore (since a long time) and
27547     boards should implement the common initdram() function in C instead.
27548
27549     This patch now removed the dram_init() call from start.S and removes the
27550     empty implementations that are scattered through most of the 405 board
27551     ports. Some older board ports really implement this dram_init() though.
27552     These are:
27553
27554     csb272
27555     csb472
27556     ERIC
27557     EXBITGEN
27558     W7OLMC
27559     W7OLMG
27560
27561     I changed those boards to call this assembler dram_init() function now
27562     from their board specific initdram() instead. This *should* work, but please
27563     test again on those platforms. And it is perhaps a good idea that those
27564     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
27565     some time. So further patches welcome here.
27566
27567     Signed-off-by: Stefan Roese <sr@denx.de>
27568
27569 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
27570 Author: Stefan Roese <sr@denx.de>
27571 Date:   Mon Jun 2 17:22:11 2008 +0200
27572
27573     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
27574
27575     Signed-off-by: Stefan Roese <sr@denx.de>
27576
27577 commit 39b32be18cd33b53a84065edcd4e465165cc5564
27578 Author: Stefan Roese <sr@denx.de>
27579 Date:   Mon Jun 2 17:20:03 2008 +0200
27580
27581     ppc4xx: Fix common ECC generation code for 440GP style platforms
27582
27583     This patch makes the common 4xx ECC code really usable on 440GP style
27584     platforms.
27585
27586     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
27587     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
27588     we need to make some processor dependant defines used later on by the
27589     driver.
27590
27591     Signed-off-by: Stefan Roese <sr@denx.de>
27592
27593 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
27594 Author: Stefan Roese <sr@denx.de>
27595 Date:   Mon Jun 2 17:13:55 2008 +0200
27596
27597     ppc4xx: Change Kilauea to use the common DDR2 init function
27598
27599     This patch changes the kilauea and kilauea_nand (for NAND booting)
27600     board port to not use a board specific DDR2 init routine anymore. Now
27601     the common code from cpu/ppc4xx is used.
27602
27603     Thanks to Grant Erickson for all his basic work on this 405EX early
27604     bootup.
27605
27606     Signed-off-by: Stefan Roese <sr@denx.de>
27607
27608 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
27609 Author: Stefan Roese <sr@denx.de>
27610 Date:   Mon Jun 2 14:59:21 2008 +0200
27611
27612     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
27613
27614     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
27615     ppc4xx related SDRAM/DDR/DDR2 controller defines.
27616
27617     Signed-off-by: Stefan Roese <sr@denx.de>
27618
27619 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
27620 Author: Stefan Roese <sr@denx.de>
27621 Date:   Mon Jun 2 14:57:41 2008 +0200
27622
27623     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
27624
27625     This patch removes all SDRAM related defines from the PPC4xx headers
27626     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
27627     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
27628
27629     It also introduces new defines for the equipped SDRAM controller based on
27630     which PPC variant is used. There new defines are:
27631
27632     used on 405GR/CR/EP and some Xilinx Virtex boards.
27633
27634     used on 440GP/GX/EP/GR.
27635
27636     used on 440EPx/GRx.
27637
27638     used on 405EX/r/440SP/SPe/460EX/GT.
27639
27640     Signed-off-by: Stefan Roese <sr@denx.de>
27641
27642 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
27643 Author: Stefan Roese <sr@denx.de>
27644 Date:   Mon Jun 2 14:35:44 2008 +0200
27645
27646     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
27647
27648     This patch consolidates the 405 and 440 parts of the NAND booting code
27649     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
27650     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
27651     Only *after* running from this location, nand_boot() is called.
27652
27653     Please note that the initsdram() call is now moved from nand_boot.c
27654     to start.S. I experienced problems with some boards like Kilauea
27655     (405EX), which don't have internal SRAM (OCM) and relocation needs to
27656     be done to SDRAM before the NAND controller can get accessed. When
27657     initdram() is called later on in nand_boot(), this can lead to problems
27658     with variables in the bss sections like nand_ecc_pos[].
27659
27660     Signed-off-by: Stefan Roese <sr@denx.de>
27661     Acked-by: Scott Wood <scottwood@freescale.com>
27662
27663 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
27664 Author: Grant Erickson <gerickson@nuovations.com>
27665 Date:   Thu May 22 14:44:24 2008 -0700
27666
27667     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
27668
27669     This patch (Part 2 of 2):
27670
27671     * Rolls up a suite of changes to enable correct primordial stack and
27672       global data handling when the data cache is used for such a purpose
27673       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
27674
27675     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
27676       eliminating redundant ECC initialization implementations and moving
27677       redundant SDRAM initialization out of board code into shared 4xx
27678       code.
27679
27680     * Enables MCSR visibility on the 405EX(r).
27681
27682     * Enables the use of the data cache for initial RAM on
27683       both AMCC's Kilauea and Makalu and removes a redundant
27684       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
27685
27686       - Removed, per Stefan Roese's request, defunct memory.c file for
27687         Makalu and rolled sdram_init from it into makalu.c.
27688
27689     With respect to the 4xx DDR initialization and ECC unification, there
27690     is certainly more work that can and should be done (file renaming,
27691     etc.). However, that can be handled at a later date on a second or
27692     third pass. As it stands, this patch moves things forward in an
27693     incremental yet positive way for those platforms that utilize this
27694     code and the features associated with it.
27695
27696     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
27697     Signed-off-by: Stefan Roese <sr@denx.de>
27698
27699 commit c821b5f120bedf73867513466412587c6912a8f8
27700 Author: Grant Erickson <gerickson@nuovations.com>
27701 Date:   Thu May 22 14:44:14 2008 -0700
27702
27703     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
27704
27705     This patch (Part 1 of 2):
27706
27707     * Rolls up a suite of changes to enable correct primordial stack and
27708       global data handling when the data cache is used for such a purpose
27709       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
27710
27711     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
27712       eliminating redundant ECC initialization implementations and moving
27713       redundant SDRAM initialization out of board code into shared 4xx
27714       code.
27715
27716     * Enables MCSR visibility on the 405EX(r).
27717
27718     * Enables the use of the data cache for initial RAM on
27719       both AMCC's Kilauea and Makalu and removes a redundant
27720       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
27721
27722       - Removed, per Stefan Roese's request, defunct memory.c file for
27723         Makalu and rolled sdram_init from it into makalu.c.
27724
27725     With respect to the 4xx DDR initialization and ECC unification, there
27726     is certainly more work that can and should be done (file renaming,
27727     etc.). However, that can be handled at a later date on a second or
27728     third pass. As it stands, this patch moves things forward in an
27729     incremental yet positive way for those platforms that utilize this
27730     code and the features associated with it.
27731
27732     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
27733     Signed-off-by: Stefan Roese <sr@denx.de>
27734
27735 commit a439680019e06171d4a5694b7992accce87f590e
27736 Author: Grant Erickson <gerickson@nuovations.com>
27737 Date:   Wed May 21 13:28:30 2008 -0700
27738
27739     PPC4xx: Simplified post_word_{load, store}
27740
27741     This patch simplifies post_word_{load,store} by using the preprocessor
27742     to eliminate redundant, copy-and-pasted code.
27743
27744     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
27745
27746 commit f979690ee337450b2030aba128f95b7a8d9881c0
27747 Author: Kumar Gala <galak@kernel.crashing.org>
27748 Date:   Thu May 15 15:13:08 2008 -0500
27749
27750     Fix warnings from gcc-4.3.0 build on a ppc host
27751
27752     * The cfi_flash.c memset fix actual allows the board to boot so there is
27753       a bit more going on here than just resolving warnings associated with
27754       uninitialized variables.
27755
27756     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
27757       inline function 'ext2_find_next_zero_bit' which is not static
27758
27759     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27760
27761 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
27762 Author: Becky Bruce <becky.bruce@freescale.com>
27763 Date:   Wed May 14 13:09:51 2008 -0500
27764
27765     MPC512x: Change traps.c to not reference non-addressable memory
27766
27767     Currently, END_OF_RAM is used by the trap code to determine if
27768     we should attempt to access the stack pointer or not. However,
27769     on systems with a lot of RAM, only a subset of the RAM is
27770     guaranteed to be mapped in and accessible.  Change END_OF_RAM
27771     to use get_effective_memsize() instead of using the raw ram
27772     size out of the bd.
27773
27774     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27775
27776 commit 81673e9ae14b771cd13faf19947192599cae3959
27777 Author: Kumar Gala <galak@kernel.crashing.org>
27778 Date:   Tue May 13 19:01:54 2008 -0500
27779
27780     Make sure common.h is the first include.
27781
27782     If common.h isn't first we can get CONFIG_ options defined in the
27783     board config file ignored.  This can cause an issue if any of those
27784     config options impact the size of types of data structures
27785     (eg CONFIG_PHYS_64BIT).
27786
27787     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27788
27789 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
27790 Author: Marian Balakowicz <m8@semihalf.com>
27791 Date:   Tue May 13 15:53:29 2008 +0200
27792
27793     Avoid initrd and logbuffer area overlaps
27794
27795     Add logbuffer to reserved LMB areas to prevent initrd allocation
27796     from overlaping with it.
27797
27798     Make sure to use correct logbuffer base address.
27799
27800     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27801
27802 commit 6956d53d9934862507f83f0e3255dfd4662e7482
27803 Author: Sascha Laue <sascha.laue@liebherr.com>
27804 Date:   Tue May 13 13:29:54 2008 +0200
27805
27806     lwmon5: add memory-pattern-test to FPGA POST.
27807
27808 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
27809 Author: Becky Bruce <becky.bruce@freescale.com>
27810 Date:   Thu May 8 19:02:51 2008 -0500
27811
27812     PPC: 86xx Add bat registers to reginfo command
27813
27814     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27815
27816 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
27817 Author: Becky Bruce <becky.bruce@freescale.com>
27818 Date:   Fri May 9 15:41:35 2008 -0500
27819
27820     PPC: Add print_bats() to lib_ppc/bat_rw.c
27821
27822     This function prints the values of all the BAT register
27823     pairs - I needed this for debug earlier this week; adding it to
27824     lib_ppc so others can use it (and add it to reginfo commands
27825     if so desired).
27826
27827     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27828
27829 commit c148f24c15743a02e855636e6bed013bd121f7f2
27830 Author: Becky Bruce <becky.bruce@freescale.com>
27831 Date:   Thu May 15 21:29:04 2008 -0500
27832
27833     PPC: Change lib_ppc/bat_rw.c to use high bats
27834
27835     Currently, this code only deals with BATs 0-3, which makes
27836     it useless on systems that support BATs 4-7.  Add the
27837     support for these registers.
27838
27839     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
27840
27841 commit 31d826722434931e1152a09d140187dcf72f8aac
27842 Author: Becky Bruce <becky.bruce@freescale.com>
27843 Date:   Thu May 8 19:02:12 2008 -0500
27844
27845     PPC: Create and use CONFIG_HIGH_BATS
27846
27847     Change all code that conditionally operates on high bat
27848     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
27849     instead of the myriad ways this is done now.  Define the option
27850     for every config for which high bats are supported (and
27851     enabled by early boot, on parts where they're not always
27852     enabled)
27853
27854     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
27855
27856 commit aa3b8bf9c30065bb2ea852799d32db5020598495
27857 Author: Wolfgang Grandegger <wg@grandegger.com>
27858 Date:   Wed May 28 19:55:19 2008 +0200
27859
27860     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
27861
27862     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27864
27865 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
27866 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27867 Date:   Wed May 28 13:06:25 2008 -0500
27868
27869     ColdFire: Add 10 base ethernet support for mcf5445x
27870
27871     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27872     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27873
27874 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
27875 Author: Jason McMullan <mcmullan@netapp.com>
27876 Date:   Fri May 30 00:53:38 2008 +0900
27877
27878     mips: Add an 'include/asm/errno.h', like all other architectures
27879
27880     All other u-boot architectures have an include/asm/errno.h, so
27881     this change adds it to the mips include/asm-mips headers also.
27882
27883     Stolen from Linux 2.6.25.
27884
27885     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
27886
27887 commit e2ad8426624bac457acc6925b6ff408e9bf20466
27888 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27889 Date:   Fri May 30 00:53:38 2008 +0900
27890
27891     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
27892
27893     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27894
27895 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
27896 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27897 Date:   Fri May 30 00:53:38 2008 +0900
27898
27899     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
27900
27901     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27902
27903 commit bf462ae450a7f2eeeddc699ed345b391e3263540
27904 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27905 Date:   Fri May 30 00:53:37 2008 +0900
27906
27907     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
27908
27909     No functional changes.
27910
27911     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27912
27913 commit 89a1550ec6b74452274a7a23127936e2c7eec711
27914 Author: Jason McMullan <mcmullan@netapp.com>
27915 Date:   Fri May 30 00:53:37 2008 +0900
27916
27917     mips: If CONFIG_CMD_SPI is defined, call spi_init()
27918
27919     The mips architecture currently does not call 'spi_init()' in the generic
27920     board initialization routine is CONFIG_CMD_SPI is defined.
27921
27922     This patch rectifies that problem.
27923
27924     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
27925     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27926
27927 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
27928 Author: Jason McMullan <mcmullan@netapp.com>
27929 Date:   Fri May 30 00:53:37 2008 +0900
27930
27931     [MIPS] lib_mips/board.c: Add nand_init
27932
27933     This patch adds the standard 'nand_init()' call to the mips generic
27934     'board_init_r()' call, bringing MIPS in line with the other architectures.
27935
27936     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
27937     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27938
27939 commit d6ac2ed893c2168738aee01579d6283af8d37045
27940 Author: Scott Wood <scottwood@freescale.com>
27941 Date:   Thu May 22 10:49:46 2008 -0500
27942
27943     Remove prototypes of nand_init() in favor of including nand.h.
27944
27945     Likewise with onenand_init().
27946
27947     Signed-off-by: Scott Wood <scottwood@freescale.com>
27948
27949 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
27950 Author: Scott Wood <scottwood@freescale.com>
27951 Date:   Thu May 22 10:49:00 2008 -0500
27952
27953     Make onenand_uboot.h self-sufficient.
27954
27955     Don't assume types are provided by previously included headers.
27956
27957     Signed-off-by: Scott Wood <scottwood@freescale.com>
27958
27959 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
27960 Author: Dirk Behme <dirk.behme@gmail.com>
27961 Date:   Wed Jan 16 14:26:59 2008 +0100
27962
27963     nand: Correct NAND erase percentage output
27964
27965     For NAND erase sizes smaller than one NAND erase block, erase
27966     percentage output becomes grater than 100% e.g.
27967
27968     -- cut --
27969       > nand info
27970     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
27971       > nand erase 0x100000 0x2000
27972     NAND erase: device 0 offset 0x100000, size 0x2000
27973     Erasing at 0x100000 -- 200% complete.
27974     OK
27975       >
27976     -- cut --
27977
27978     Correct this and give user a warning that more is erased than specified:
27979
27980     -- cut --
27981       > nand erase 0x100000 0x2000
27982     NAND erase: device 0 offset 0x100000, size 0x2000
27983     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
27984                Erasing 0x00004000 instead
27985     Erasing at 0x100000 -- 100% complete.
27986     OK
27987       >
27988     -- cut --
27989
27990     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
27991
27992 commit 5922db6c0948506be91e0de44e7a6863a18a417f
27993 Author: Stelian Pop <stelian@popies.net>
27994 Date:   Tue May 13 17:31:24 2008 +0200
27995
27996     Cleanup nand_info[] declaration.
27997
27998     The nand_info array is declared as extern in several .c files.
27999     Those days, nand.h contains a reference to the array, so there is
28000     no need to declare it elsewhere.
28001
28002     Signed-off-by: Stelian Pop <stelian@popies.net>
28003     Signed-off-by: Scott Wood <scottwood@freescale.com>
28004
28005 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
28006 Author: Scott Wood <scottwood@freescale.com>
28007 Date:   Mon May 19 09:30:43 2008 -0500
28008
28009     NAND: Provide a sane default for NAND_MAX_CHIPS.
28010
28011     This allows the header to be included regardless of whether a board's
28012     config file provides NAND-related defininitions.
28013
28014     Signed-off-by: Scott Wood <scottwood@freescale.com>
28015
28016 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
28017 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28018 Date:   Mon May 26 12:19:10 2008 +0200
28019
28020     avr32: Fix theoretical race in udelay()
28021
28022     If the specified delay is very short, the cycle counter may go past the
28023     "end" time we are waiting for before we get around to reading it.
28024
28025     Fix it by checking the different between the cycle count "now" and the
28026     cycle count at the beginning. This will work as long as the delay
28027     measured in number of cycles is below 2^31.
28028
28029     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28030
28031 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
28032 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28033 Date:   Wed May 21 13:01:09 2008 +0200
28034
28035     avr32: Compile atmel_mci.o conditionally
28036
28037     Remove #ifdef CONFIG_MMC from the source file and use conditional
28038     compilation in the Makefile instead.
28039
28040     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28041
28042 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
28043 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28044 Date:   Thu May 22 12:28:25 2008 +0200
28045
28046     avr32: Fix wrong error flags in atmel_mci driver
28047
28048     Make sure we check for CRC errors when sending commands that use CRC
28049     checking.
28050
28051     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
28052     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28053
28054 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
28055 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28056 Date:   Wed May 21 11:10:59 2008 +0200
28057
28058     avr32: Fix two warnings in atmel_mci.c
28059
28060     The warnings are harmless but annoying. Let's fix them.
28061
28062     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28063
28064 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
28065 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28066 Date:   Mon May 19 11:36:28 2008 +0200
28067
28068     avr32: Rework SDRAM initialization code
28069
28070     This cleans up the SDRAM initialization and related code a bit, and
28071     allows faster booting.
28072
28073       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
28074       * Remove memory test from sdram_init() and make caller responsible
28075         for verifying the SDRAM and determining its size.
28076       * Remove base_address member from struct sdram_config (was sdram_info)
28077       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
28078       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
28079
28080     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28081
28082 commit 95107b7c028806919630bf02c653aa8f4f867c94
28083 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28084 Date:   Mon May 19 11:27:37 2008 +0200
28085
28086     avr32: Do stricter stack checking in the exception handler
28087
28088     Don't do a stack dump if the stack pointer is outside the memory area
28089     reserved for stack.
28090
28091     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28092
28093 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
28094 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28095 Date:   Fri May 2 15:32:57 2008 +0200
28096
28097     avr32: Use the same entry point for reset and exception handling
28098
28099     Since the reset vector is always aligned to a very large boundary, we
28100     can save a couple of KB worth of alignment padding by placing the
28101     exception vectors at the same address.
28102
28103     Deciding which one it is is easy: If we're handling an exception, the
28104     CPU is in Exception mode. If we're starting up after reset, the CPU is
28105     in Supervisor mode. So this adds a very minimal overhead to the reset
28106     path (only executed once) and the exception handling path (normally
28107     never executed at all.)
28108
28109     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28110
28111 commit 0c16eed2189a190bd5655b33c029f809a9b31128
28112 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28113 Date:   Fri May 2 15:24:22 2008 +0200
28114
28115     avr32: Put memset in its own section
28116
28117     All C code is compiled with -ffunction-sections -fdata-sections.
28118     Assembly functions should get their own sections as well so that
28119     everything looks consistent.
28120
28121     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28122
28123 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
28124 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28125 Date:   Fri May 2 15:21:40 2008 +0200
28126
28127     avr32: Rename pm_init() as clk_init() and make SoC-specific
28128
28129     pm_init() was always more about clock initialization than anything
28130     else. Dealing with PLLs, clock gating and such is also inherently
28131     SoC-specific, so move it into a SoC-specific directory.
28132
28133     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28134
28135 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
28136 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28137 Date:   Wed Apr 30 16:15:57 2008 +0200
28138
28139     avr32: Use new-style Makefile for the at32ap platform
28140
28141     This makes it easier to avoid compiling certain files later.
28142
28143     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28144
28145 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
28146 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28147 Date:   Wed Apr 30 14:36:47 2008 +0200
28148
28149     avr32: Remove unused file cpu/at32ap/pm.c
28150
28151     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28152
28153 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
28154 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28155 Date:   Wed Apr 30 14:19:28 2008 +0200
28156
28157     avr32: Clean up the HMATRIX code
28158
28159     Rework the HMATRIX configuration interface so that it becomes easier
28160     to configure the HMATRIX for boards with special needs, and add new
28161     parts.
28162
28163     The HMATRIX header file has been split into a general,
28164     chip-independent part with register definitions, etc. and a
28165     chip-specific part with SFR bitfield definitions and master/slave
28166     identifiers.
28167
28168     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28169
28170 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
28171 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28172 Date:   Thu Nov 22 12:14:11 2007 +0100
28173
28174     avr32: Add support for the ATSTK1006 board
28175
28176     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
28177     board. It's currently in production and will be available soon.
28178
28179     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28180
28181 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
28182 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28183 Date:   Tue Apr 29 12:53:05 2008 +0200
28184
28185     avr32: Get rid of the .flashprog section
28186
28187     The .flashprog section was only needed back when we were running
28188     directly from flash, and it's even more useless on NGW100 since it
28189     uses the CFI flash driver which never used this workaround in the
28190     first place.
28191
28192     Remove it on STK1000 as well, and get rid of all the associated code and
28193     annotations.
28194
28195     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28196
28197 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
28198 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28199 Date:   Wed Apr 30 13:09:56 2008 +0200
28200
28201     avr32: Use correct condition around macb clock accessors
28202
28203     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
28204     the chip has a MACB controller, not when it has a USART.
28205
28206     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28207
28208 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
28209 Author: David Brownell <david-b@pacbell.net>
28210 Date:   Wed Apr 16 22:57:58 2008 -0700
28211
28212     avr32: Disable the AP7000 internal watchdog on startup
28213
28214     This patch forces the watchdog off in all cases.  That will at least
28215     get rid of the constant reboot cycle, though it won't let the watchdog
28216     actually run in the new kernels:  its probe() comes up with a polite
28217     warning.
28218
28219     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28220
28221 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
28222 Author: David Brownell <david-b@pacbell.net>
28223 Date:   Fri Feb 22 12:54:39 2008 -0800
28224
28225     avr32: stk1002 and ngw100 convergence
28226
28227     Make STK1002 and NGW100 boards act more alike:
28228       - STK boards can use as many arguments as NGW
28229       - STK boards don't need to manage FPGAs either
28230       - NGW commands should match STK ones
28231
28232     Also spell U-Boot right in prompts for STK1002 and NGW100.
28233
28234     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
28235     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
28236     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28237
28238 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
28239 Author: Sergei Poselenov <sposelenov@emcraft.com>
28240 Date:   Tue May 27 13:47:00 2008 +0200
28241
28242     Socrates: Fix PCI bus frequency report
28243
28244     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28245
28246 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
28247 Author: Sergei Poselenov <sposelenov@emcraft.com>
28248 Date:   Tue May 27 11:49:13 2008 +0200
28249
28250     Socrates: Added USB support.
28251
28252     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28253
28254 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
28255 Author: Sergei Poselenov <sposelenov@emcraft.com>
28256 Date:   Tue May 27 11:35:02 2008 +0200
28257
28258     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
28259
28260     In case of several PCI USB controllers on a board this variable
28261     specifys which controller to use.
28262     See doc/README.generic_usb_ohci for details.
28263
28264     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28265
28266 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
28267 Author: Sergei Poselenov <sposelenov@emcraft.com>
28268 Date:   Tue May 27 10:36:07 2008 +0200
28269
28270     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
28271
28272     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28273
28274 commit 83e9d7a2614d4006b92690afa3390c291734267e
28275 Author: Sergei Poselenov <sposelenov@emcraft.com>
28276 Date:   Mon May 26 18:16:04 2008 +0200
28277
28278     Socrates: Config file cleanup.
28279
28280     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28281
28282 commit 602cac1389b755b223272f2328a47e6f8c240848
28283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28284 Date:   Sat May 24 12:47:46 2008 +0200
28285
28286     MAKEALL: add at91 list
28287
28288     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28289
28290 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
28291 Author: Ron Madrid <ron_madrid@sbcglobal.net>
28292 Date:   Fri May 23 15:37:05 2008 -0700
28293
28294     Add Marvell 88E1118 support for TSEC
28295
28296     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
28297     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28298
28299 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
28300 Author: Jens Gehrlein <sew_s@tqs.de>
28301 Date:   Mon May 5 14:06:11 2008 +0200
28302
28303     smc911x: add 16 bit support
28304
28305     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
28306     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28307
28308 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
28309 Author: Christian Eggers <ceggers@gmx.de>
28310 Date:   Wed May 21 21:29:10 2008 +0200
28311
28312     Fix endianess conversion in usb_ohci.c
28313
28314     Sorry, I forgot this line:
28315
28316     Signed-off-by: Christian Eggers <ceggers@gmx.de>
28317
28318     I think this must be swapped (result may be equal).
28319
28320 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
28321 Author: Christian Eggers <ceggers@gmx.de>
28322 Date:   Wed May 21 22:12:00 2008 +0200
28323
28324     USB: replace old swap_ with proper endianess conversion macros
28325
28326     Signed-off-by: Christian Eggers <ceggers@gmx.de>
28327     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28328
28329 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
28330 Author: Christian Eggers <ceggers@gmx.de>
28331 Date:   Wed May 21 21:29:10 2008 +0200
28332
28333     Fix endianess conversion in usb_ohci.c
28334
28335     Signed-off-by: Christian Eggers <ceggers@gmx.de>
28336     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28337
28338 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
28339 Author: Sergei Poselenov <sposelenov@emcraft.com>
28340 Date:   Thu May 22 01:15:53 2008 +0200
28341
28342     USB: add support for multiple PCI OHCI controllers
28343
28344     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
28345     In case of several PCI USB controllers on a board this variable
28346     specifys which controller to use.
28347
28348     Also add USB support for sokrates board.
28349
28350     See doc/README.generic_usb_ohci for details.
28351
28352     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28353     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28354
28355 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
28356 Author: Wolfgang Denk <wd@denx.de>
28357 Date:   Wed May 21 16:56:08 2008 +0200
28358
28359     Fix some whitespace issues
28360
28361     introduced by 53677ef18 "Big white-space cleanup."
28362
28363     Signed-off-by: Wolfgang Denk <wd@denx.de>
28364
28365 commit 4416603aeb06861b468b06a981e52c3ff805db7b
28366 Author: York Sun <yorksun@freescale.com>
28367 Date:   Mon May 12 14:36:39 2008 -0500
28368
28369     Make ads5121 out-of-tree compiling safe
28370
28371     Reuse the existing DIU driver in board/freescale/common.
28372
28373     Signed-off-by: York Sun <yorksun@freescale.com>
28374
28375 commit 0e1bad47cd345c76c91a64caf41011e431b62599
28376 Author: York Sun <yorksun@freescale.com>
28377 Date:   Mon May 5 10:20:01 2008 -0500
28378
28379     Adding DIU support for Freescale 5121ADS
28380
28381     Add DIU and cfb console support to FSL 5121ADS board.
28382
28383     Use #define CONFIG_VIDEO in config file to enable fb console.
28384
28385     Signed-off-by: York Sun <yorksun@freescale.com>
28386
28387 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
28388 Author: York Sun <yorksun@freescale.com>
28389 Date:   Mon May 5 10:20:00 2008 -0500
28390
28391     Replace DPRINTF with debug
28392
28393     Remove DPRINTF macro and replace it with generic debug macro.
28394
28395     Signed-off-by: York Sun <yorksun@freescale.com>
28396
28397 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
28398 Author: York Sun <yorksun@freescale.com>
28399 Date:   Mon May 5 10:19:59 2008 -0500
28400
28401     Move pixel clock setting to board file
28402
28403     The clock divider has different format in 5121 and 8610. This patch moves it to
28404     board specific code.
28405
28406     Signed-off-by: York Sun <yorksun@freescale.com>
28407
28408 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
28409 Author: Wolfgang Denk <wd@denx.de>
28410 Date:   Tue May 20 16:00:29 2008 +0200
28411
28412     Big white-space cleanup.
28413
28414     This commit gets rid of a huge amount of silly white-space issues.
28415     Especially, all sequences of SPACEs followed by TAB characters get
28416     removed (unless they appear in print statements).
28417
28418     Also remove all embedded "vim:" and "vi:" statements which hide
28419     indentation problems.
28420
28421     Signed-off-by: Wolfgang Denk <wd@denx.de>
28422
28423 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
28424 Author: Sergei Poselenov <sposelenov@emcraft.com>
28425 Date:   Thu May 8 17:46:23 2008 +0200
28426
28427     socrates: fix second TSEC configuration (it is actually TSEC3)
28428
28429     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28430
28431 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
28432 Author: Sergei Poselenov <sposelenov@emcraft.com>
28433 Date:   Thu May 8 14:17:08 2008 +0200
28434
28435     Fixed reset for socrates
28436
28437     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28438
28439 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
28440 Author: Sergei Poselenov <sposelenov@emcraft.com>
28441 Date:   Wed May 7 15:10:49 2008 +0200
28442
28443     socrates: changes to support FDT
28444
28445     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28446     Signed-off-by: Wolfgang Denk <wd@denx.de>
28447
28448 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
28449 Author: Sergei Poselenov <sposelenov@emcraft.com>
28450 Date:   Wed Apr 30 11:42:50 2008 +0200
28451
28452     Initial support for "Socrates" board
28453
28454     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28455
28456 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
28457 Author: Yuri Tikhonov <yur@emcraft.com>
28458 Date:   Thu May 8 15:46:42 2008 +0200
28459
28460     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
28461
28462     This way we become able to utilize the full post_log_word for POST
28463     activities (overwise, POST ECC, which has 0x8000 ID, could be
28464     erroneously treated as started in post_output_backlog() even if there
28465     was actually no POST ECC run (because of OCM POST failure, for
28466     example).
28467
28468     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28469
28470 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
28471 Author: Yuri Tikhonov <yur@emcraft.com>
28472 Date:   Thu May 8 15:46:02 2008 +0200
28473
28474     POST: mark OCM test as POST_STOP
28475
28476     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28477
28478 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
28479 Author: Yuri Tikhonov <yur@emcraft.com>
28480 Date:   Thu May 8 15:45:26 2008 +0200
28481
28482     POST: add POST_STOP flag
28483
28484     Don't run futher tests in case of a test fails that is marked as
28485     POST_STOP.
28486
28487     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28488     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28489
28490 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
28491 Author: Yuri Tikhonov <yur@emcraft.com>
28492 Date:   Thu May 8 15:44:16 2008 +0200
28493
28494     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
28495
28496     Switch the OCM testid with the codec one. The reason is that current
28497     implementation requires the POST_ROM testid to fit into lower 16
28498     bits, and the codec test will never run with POST_ROM hopefully.
28499
28500     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28501
28502 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
28503 Author: Yuri Tikhonov <yur@emcraft.com>
28504 Date:   Thu May 8 15:43:28 2008 +0200
28505
28506     lwmon5: enable OCM post test on lwmon5 board
28507
28508     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28509
28510 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
28511 Author: Yuri Tikhonov <yur@emcraft.com>
28512 Date:   Thu May 8 15:42:47 2008 +0200
28513
28514     POST: OCM test added.
28515
28516     Added OCM test to POST layer. This version runs before all other tests
28517     but doesn't yet interrupt post sequence on failure.
28518
28519     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28520     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28521
28522 commit 6891260bdd935a382c95d9fa333922b0dfded68a
28523 Author: Yuri Tikhonov <yur@emcraft.com>
28524 Date:   Thu May 8 15:40:39 2008 +0200
28525
28526     POST: typo fix
28527
28528     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28529
28530 commit 727f63334676e760877d43bfb8f0e9331ac8b101
28531 Author: Hebbar <gururajakr@sanyo.co.in>
28532 Date:   Tue May 20 02:16:36 2008 -0700
28533
28534     common/usb.c: fix incorrect escape sequence
28535
28536     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
28537
28538 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
28539 Author: York Sun <yorksun@freescale.com>
28540 Date:   Thu May 15 15:26:27 2008 -0500
28541
28542     Fix 8313ERDB board configuration
28543
28544     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
28545     Correct TSEC1 vs TSEC2 assignment.
28546     Define ETHADDR and ETH1ADDR always.
28547
28548     Signed-off-by: York Sun <yorksun@freescale.com>
28549     Signed-off-by: Timur Tabi <timur@freescale.com>
28550
28551 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
28552 Author: Jon Loeliger <jdl@freescale.com>
28553 Date:   Mon May 19 09:47:25 2008 -0500
28554
28555     mpc86xx: Removed unused and unconfigured memory test code.
28556
28557     Besides, other common code exists.
28558
28559     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28560
28561 commit 180a90abdae72587c0f679edf8991455e559440d
28562 Author: Wolfgang Denk <wd@denx.de>
28563 Date:   Mon May 19 12:47:11 2008 +0200
28564
28565     Release v1.3.3
28566
28567     Update CHANGELOG for release.
28568
28569     Signed-off-by: Wolfgang Denk <wd@denx.de>
28570
28571 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
28572 Author: Stefan Roese <sr@denx.de>
28573 Date:   Mon May 19 07:14:38 2008 +0200
28574
28575     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
28576
28577     When SATA is selected (via jumper J6) we need to disable the first PCIe
28578     node in the device tree, so that Linux doesn't initialize it. Otherwise
28579     the Linux SATA driver will fail to detect the devices.
28580
28581     The same goes the other way around too. So if PCIe is selected we need
28582     to disable the SATA node in the device tree.
28583
28584     This is because PCIe port 0 and SATA on 460EX share the same pins
28585     (multiplexed) and we have to configure in U-Boot which peripheral is
28586     enabled.
28587
28588     Signed-off-by: Stefan Roese <sr@denx.de>
28589
28590 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
28591 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28592 Date:   Sun May 18 19:09:58 2008 +0200
28593
28594     i386: Fix multiple definitions of __show_boot_progress
28595
28596     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28597
28598 commit 311f3446930c1e64c12026c1cfd00500b05be52d
28599 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28600 Date:   Sun May 18 19:09:57 2008 +0200
28601
28602     sc530_spunk: add missing SOBJS entry
28603
28604     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28605
28606 commit a559317143b4f95927b08cd388707e6f077e95fa
28607 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28608 Date:   Sun May 18 19:09:56 2008 +0200
28609
28610     sc520_spunk: Fix flash
28611
28612     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
28613     flash.c:398: error: label at end of compound statement
28614
28615     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28616
28617 commit 91f221317af64191ee8caf303ea9305943158691
28618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28619 Date:   Sun May 18 19:09:49 2008 +0200
28620
28621     drivers/pcmcia: add missing i82365
28622
28623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28624
28625 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
28626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28627 Date:   Sun May 18 19:09:47 2008 +0200
28628
28629     i386/bootm: remove unused var
28630
28631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28632
28633 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
28634 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28635 Date:   Sun May 18 19:09:45 2008 +0200
28636
28637     example/gitignore: update with all generated examples
28638
28639     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28640
28641 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
28642 Author: Wolfgang Denk <wd@denx.de>
28643 Date:   Thu May 15 00:42:45 2008 +0200
28644
28645     TQM8272: fix out-of-tree building
28646
28647     ...and add to MAKEALL script
28648
28649     Signed-off-by: Wolfgang Denk <wd@denx.de>
28650
28651 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
28652 Author: Wolfgang Denk <wd@denx.de>
28653 Date:   Wed May 14 23:34:53 2008 +0200
28654
28655     environment: fix bug introduced by commit a8409f4f1ac8
28656
28657     env_get_char is not a function, but a pointer to one.
28658
28659     Signed-off-by: Wolfgang Denk <wd@denx.de>
28660
28661 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
28662 Author: Gary Jennejohn <garyj@denx.de>
28663 Date:   Wed May 14 13:39:22 2008 +0200
28664
28665     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
28666
28667     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
28668     use a redundant environment.
28669
28670     Signed-off-by: Gary Jennejohn <garyj@denx.de>
28671
28672 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
28673 Author: Wolfgang Denk <wd@denx.de>
28674 Date:   Wed May 14 13:55:30 2008 +0200
28675
28676     Fix config files for out-of-tree building
28677
28678     Several board/<...>/config.mk files include dynamically built (by
28679     the Makefile) config files but used the wrong file name of
28680         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
28681     instead if the correct
28682         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
28683
28684     The bug is nasty because the build result is correct for the (normal)
28685     in-tree builds, and because 'sinclude' is used no errors get raised
28686     even for out-of-tree build tests. But out-of-tree builds use an
28687     incomplete and thus usually incorrect configuration...
28688
28689     Signed-off-by: Wolfgang Denk <wd@denx.de>
28690
28691 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
28692 Author: Stefan Roese <sr@denx.de>
28693 Date:   Wed May 14 13:40:03 2008 +0200
28694
28695     ppc4xx: Fix bogus Canyonlands config.mk
28696
28697     This patch fixes the canyonlands config.mk file to enable correct
28698     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
28699
28700     Signed-off-by: Stefan Roese <sr@denx.de>
28701
28702 commit fdd1247a66d788a3446244f6fde9955a93c26322
28703 Author: Stefan Roese <sr@denx.de>
28704 Date:   Wed May 14 10:32:32 2008 +0200
28705
28706     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
28707
28708     Canyonlands has a file ddr2_fixed.c which needs special treatment when
28709     building in separate directory. It has to be linked to build directory
28710     otherwise it is not seen.
28711
28712     Signed-off-by: Stefan Roese <sr@denx.de>
28713
28714 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
28715 Author: Wolfgang Denk <wd@denx.de>
28716 Date:   Wed May 14 12:22:49 2008 +0200
28717
28718     environment: cleanup prototype declarations of env functions.
28719
28720     Signed-off-by: Wolfgang Denk <wd@denx.de>
28721
28722 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
28723 Author: Wolfgang Denk <wd@denx.de>
28724 Date:   Wed May 14 12:21:48 2008 +0200
28725
28726     linkstation_HGLAN: Fix out of tree building.
28727
28728     Signed-off-by: Wolfgang Denk <wd@denx.de>
28729
28730 commit 085551c05ca09e6c491ea11a1c6727a36776a545
28731 Author: Stefan Roese <sr@denx.de>
28732 Date:   Wed May 14 10:32:32 2008 +0200
28733
28734     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
28735
28736     Canyonlands has a file ddr2_fixed.c which needs special treatment when
28737     building in separate directory. It has to be linked to build directory
28738     otherwise it is not seen.
28739
28740     Signed-off-by: Stefan Roese <sr@denx.de>
28741
28742 commit 1510b82d50615f344e89d42533e8224cce067dc0
28743 Author: Wolfgang Denk <wd@denx.de>
28744 Date:   Tue May 13 23:15:52 2008 +0200
28745
28746     Makefile: fix "error: version_autogenerated.h: No such file or directory"
28747
28748     Signed-off-by: Wolfgang Denk <wd@denx.de>
28749
28750 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
28751 Author: Stelian Pop <stelian@popies.net>
28752 Date:   Tue May 13 17:31:24 2008 +0200
28753
28754     Cleanup nand_info[] declaration.
28755
28756     The nand_info array is declared as extern in several .c files.
28757     Those days, nand.h contains a reference to the array, so there is
28758     no need to declare it elsewhere.
28759
28760     Signed-off-by: Stelian Pop <stelian@popies.net>
28761     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28762
28763 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
28764 Author: Stefan Roese <sr@denx.de>
28765 Date:   Tue May 13 20:22:01 2008 +0200
28766
28767     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
28768
28769     Signed-off-by: Stefan Roese <sr@denx.de>
28770
28771 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
28772 Author: Wolfgang Denk <wd@denx.de>
28773 Date:   Mon May 12 01:11:21 2008 +0200
28774
28775     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
28776
28777     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
28778     which broke many PowerPC boards.
28779
28780 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
28781 Author: Wolfgang Denk <wd@denx.de>
28782 Date:   Mon May 12 00:56:28 2008 +0200
28783
28784     Revert "Avoid initrd and logbuffer area overlaps"
28785
28786     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
28787     which breaks building on all PPC boards that don't use a log buffer.
28788
28789 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
28790 Author: Nick Spence <nick.spence@freescale.com>
28791 Date:   Sat May 10 14:02:04 2008 -0700
28792
28793     Fix offset calculation for multi-type legacy images.
28794
28795     Calculation of tail was incorrect when size % 4 == 0.
28796
28797     New code removes the conditional and does the same thing but with arithmetic
28798
28799     Signed-off-by: Nick Spence <nick.spence@freescale.com>
28800
28801 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
28802 Author: Wolfgang Denk <wd@denx.de>
28803 Date:   Mon May 12 00:40:58 2008 +0200
28804
28805     Revert "Change env_get_char from a global function ptr to a function."
28806
28807     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
28808     which is known to break booting from dataflash and NAND.
28809
28810 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
28811 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28812 Date:   Sun May 11 23:13:57 2008 +0200
28813
28814     API: remove duplicate syscall check
28815
28816     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28817
28818 commit 67e3beb52c320b0a31cf030716c99392cde2d532
28819 Author: Stelian Pop <stelian@popies.net>
28820 Date:   Fri May 9 21:46:51 2008 +0200
28821
28822     AT91: Cleanup unused config header file definitions.
28823
28824     CONFIG_ENV_OVERWRITE is commented out in the config header files,
28825     so let's cleanup the files by removing the whole definition.
28826
28827     Signed-off-by: Stelian Pop <stelian@popies.net>
28828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28829
28830 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
28831 Author: Stelian Pop <stelian@popies.net>
28832 Date:   Thu May 8 14:52:34 2008 +0200
28833
28834     Support AT91CAP9 revC CPUs
28835
28836     The AT91CAP9 revC CPU has a few differences over the previous,
28837     revB CPU which was distributed in small quantities only (revA was
28838     an internal Atmel product only).
28839
28840     The revC silicon needs a special initialisation sequence to
28841     switch from the internal (imprecise) RC oscillator to the
28842     external 32k clock.
28843
28844     Signed-off-by: Stelian Pop <stelian@popies.net>
28845     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28846
28847 commit 098b7b4b441b12c2a64dd517930f43c793542759
28848 Author: Stelian Pop <stelian@popies.net>
28849 Date:   Thu May 8 14:52:33 2008 +0200
28850
28851     Use custom logo for Atmel boards
28852
28853     This patch adds a custom vendor logo for the Atmel AT91 boards.
28854
28855     Signed-off-by: Stelian Pop <stelian@popies.net>
28856     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28857
28858 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
28859 Author: Stelian Pop <stelian@popies.net>
28860 Date:   Thu May 8 14:52:32 2008 +0200
28861
28862     AT91SAM9RLEK: hook up the ATMEL LCD driver
28863
28864     This patch makes the necessary adaptations (PIO configurations and
28865     defines in config header file) to hook up the Atmel LCD driver to the
28866     AT91SAM9RLEK board.
28867
28868     Signed-off-by: Stelian Pop <stelian@popies.net>
28869     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28870
28871 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
28872 Author: Stelian Pop <stelian@popies.net>
28873 Date:   Thu May 8 14:52:31 2008 +0200
28874
28875     AT91SAM9263EK: hook up the ATMEL LCD driver
28876
28877     This patch makes the necessary adaptations (PIO configurations and
28878     defines in config header file) to hook up the Atmel LCD driver to the
28879     AT91SAM9263EK board.
28880
28881     Signed-off-by: Stelian Pop <stelian@popies.net>
28882     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28883
28884 commit 820f2a958325061a446115f3035e48e4726b3390
28885 Author: Stelian Pop <stelian@popies.net>
28886 Date:   Thu May 8 14:52:30 2008 +0200
28887
28888     AT91SAM9261EK: hook up the ATMEL LCD driver
28889
28890     This patch makes the necessary adaptations (PIO configurations and
28891     defines in config header file) to hook up the Atmel LCD driver to the
28892     AT91SAM9261EK board.
28893
28894     Signed-off-by: Stelian Pop <stelian@popies.net>
28895     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28896
28897 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
28898 Author: Stelian Pop <stelian@popies.net>
28899 Date:   Thu May 8 14:52:29 2008 +0200
28900
28901     AT91CAP9ADK: hook up the ATMEL LCD driver
28902
28903     This patch makes the necessary adaptations (PIO configurations and
28904     defines in config header file) to hook up the Atmel LCD driver to the
28905     AT91CAP9ADK board.
28906
28907     Signed-off-by: Stelian Pop <stelian@popies.net>
28908     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28909
28910 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
28911 Author: Stelian Pop <stelian@popies.net>
28912 Date:   Fri May 9 21:57:18 2008 +0200
28913
28914     Add ATMEL LCD driver
28915
28916     This patch adds support for the ATMEL LCDC driver which is used on some
28917     AT91 and AVR platforms.
28918
28919     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
28920     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
28921
28922     Signed-off-by: Stelian Pop <stelian@popies.net>
28923     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28924
28925 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
28926 Author: Stelian Pop <stelian@popies.net>
28927 Date:   Thu May 8 18:52:25 2008 +0200
28928
28929     AT91SAM9RLEK support
28930
28931     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
28932     board.
28933
28934     Signed-off-by: Stelian Pop <stelian@popies.net>
28935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28936
28937 commit 8e429b3eee23927c1222679f6b6f53667b21595c
28938 Author: Stelian Pop <stelian@popies.net>
28939 Date:   Thu May 8 18:52:23 2008 +0200
28940
28941     AT91SAM9263EK support
28942
28943     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
28944     board.
28945
28946     Signed-off-by: Stelian Pop <stelian@popies.net>
28947     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28948
28949 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
28950 Author: Stelian Pop <stelian@popies.net>
28951 Date:   Thu May 8 20:52:22 2008 +0200
28952
28953     AT91SAM9261EK support
28954
28955     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
28956     board.
28957
28958     Signed-off-by: Stelian Pop <stelian@popies.net>
28959     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28960
28961 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
28962 Author: Stelian Pop <stelian@popies.net>
28963 Date:   Thu May 8 20:52:21 2008 +0200
28964
28965     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
28966
28967     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
28968     in order to cope with the changes in DataFlash partitionning scheme
28969     (cset c3a60cb3).
28970
28971     Signed-off-by: Stelian Pop <stelian@popies.net>
28972     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28973
28974 commit 96996ac25d5222611a8888968db6e53a6d3726da
28975 Author: Stelian Pop <stelian@popies.net>
28976 Date:   Thu May 8 20:52:20 2008 +0200
28977
28978     AT91SAM9260EK: Normalize BOOTARGS
28979
28980     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
28981     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
28982     variable.
28983
28984     Signed-off-by: Stelian Pop <stelian@popies.net>
28985     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28986
28987 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
28988 Author: Stelian Pop <stelian@popies.net>
28989 Date:   Thu May 8 20:52:19 2008 +0200
28990
28991     AT91SAM9260EK: Normalize SPI timings
28992
28993     This patch changes the SPI timings to closely match the ones
28994     used by the Linux kernel and the Atmel's own bootstrap project.
28995
28996     Signed-off-by: Stelian Pop <stelian@popies.net>
28997     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28998
28999 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
29000 Author: Stelian Pop <stelian@popies.net>
29001 Date:   Thu May 8 20:52:18 2008 +0200
29002
29003     AT91SAM9260EK: Handle 8 or 16 bit NAND
29004
29005     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
29006     makes the support configurable in the board config header file
29007     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
29008
29009     Signed-off-by: Stelian Pop <stelian@popies.net>
29010     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29011
29012 commit ab52640fc01624e208424e527af0b7b3a5a65a12
29013 Author: Stelian Pop <stelian@popies.net>
29014 Date:   Thu May 8 20:52:17 2008 +0200
29015
29016     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
29017
29018     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
29019     in order to cope with the changes in DataFlash partitionning scheme
29020     (cset c3a60cb3).
29021
29022     Signed-off-by: Stelian Pop <stelian@popies.net>
29023     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29024
29025 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
29026 Author: Stelian Pop <stelian@popies.net>
29027 Date:   Thu May 8 20:52:16 2008 +0200
29028
29029     AT91CAP9ADK: Normalize BOOTARGS
29030
29031     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
29032     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
29033     variable.
29034
29035     Signed-off-by: Stelian Pop <stelian@popies.net>
29036     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29037
29038 commit 93da48b910511911ce110656e17ed733c8ac4c45
29039 Author: Stelian Pop <stelian@popies.net>
29040 Date:   Thu May 8 20:52:15 2008 +0200
29041
29042     AT91CAP9ADK: Normalize SPI timings
29043
29044     This patch changes the SPI timings to closely match the ones
29045     used by the Linux kernel and the Atmel's own bootstrap project.
29046
29047     Signed-off-by: Stelian Pop <stelian@popies.net>
29048     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29049
29050 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
29051 Author: Stelian Pop <stelian@popies.net>
29052 Date:   Thu May 8 20:52:14 2008 +0200
29053
29054     AT91CAP9ADK: Handle 8 or 16 bit NAND
29055
29056     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
29057     makes the support configurable in the board config header file
29058     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
29059
29060     Signed-off-by: Stelian Pop <stelian@popies.net>
29061     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29062
29063 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
29064 Author: Stelian Pop <stelian@popies.net>
29065 Date:   Thu May 8 20:52:13 2008 +0200
29066
29067     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
29068
29069     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
29070     below avoids the duplication of u-boot.lds by putting the file in the
29071     cpu directory instead of the board one.
29072
29073     Signed-off-by: Stelian Pop <stelian@popies.net>
29074     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29075
29076 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
29077 Author: Stelian Pop <stelian@popies.net>
29078 Date:   Thu May 8 20:52:12 2008 +0200
29079
29080     Add proper copyright notices in Atmel boards Makefiles
29081
29082     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
29083     copyright notice. This patch adds the missing pieces.
29084
29085     Signed-off-by: Stelian Pop <stelian@popies.net>
29086     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29087
29088 commit e817a042cef6164bf26fee86f90326f2ec9e6745
29089 Author: Stelian Pop <stelian@popies.net>
29090 Date:   Thu May 8 20:52:11 2008 +0200
29091
29092     Add copyright information in Atmel boards partition.c
29093
29094     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
29095     the new created files. This patch fixes the problem.
29096
29097     Signed-off-by: Stelian Pop <stelian@popies.net>
29098     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29099
29100 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
29101 Author: Stelian Pop <stelian@popies.net>
29102 Date:   Thu May 8 20:52:10 2008 +0200
29103
29104     Update origin and copyright information in arch-at91sam9 header files
29105
29106     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
29107     copied from the Linux kernel sources. This patch explicitly specifies
29108     this origin for all the copied headers, and for those missing copyright
29109     information, adds it.
29110
29111     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
29112     in the latest kernel sources by 'at91sam9_smc.h'.
29113
29114     The copyright information has been confirmed by the AT91 Linux kernel
29115     maintainer, Andrew Victor <avictor.za@gmail.com>.
29116
29117     Signed-off-by: Stelian Pop <stelian@popies.net>
29118     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29119
29120 commit 79dd1712689d6a5031d7cbff54957049680751c7
29121 Author: Markus Klotzbücher <mk@denx.de>
29122 Date:   Thu May 8 16:00:55 2008 +0200
29123
29124     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
29125
29126     When using dhcp/bootp the "netmask" environment variable is not set
29127     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
29128     desireable, so the following patch adds this this option to the board
29129     config.
29130
29131     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29132     Signed-off-by: Stefan Roese <sr@denx.de>
29133
29134 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
29135 Author: Stefan Roese <sr@denx.de>
29136 Date:   Sat May 10 10:30:36 2008 +0200
29137
29138     ppc4xx: Update Makalu defconfig to use device-tree booting as default
29139
29140     This patch reworks the default environment on Makalu. Now "net_nfs" for
29141     example uses the device-tree style booting formerly know as "net_nfs_fdt".
29142     Also the addresses in RAM were changed because of the new image booting
29143     support, which check for image overwriting. So the addresses needed to
29144     get adjusted.
29145
29146     Signed-off-by: Stefan Roese <sr@denx.de>
29147
29148 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
29149 Author: Becky Bruce <bgill@freescale.com>
29150 Date:   Wed May 7 13:28:16 2008 -0500
29151
29152     PPC: fix map_physmem build warning
29153
29154     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
29155     enabled.  This quiets the warning.
29156
29157     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
29158
29159 commit 36f32675f40292002ee1fed252c180a43022d2d4
29160 Author: Becky Bruce <bgill@freescale.com>
29161 Date:   Wed May 7 13:24:57 2008 -0500
29162
29163     Update pci code to use phys_addr_t
29164
29165     Physical addrs need to be represented by phys_addr_t, not
29166     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
29167     are going to fail mightily.
29168
29169     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29170
29171 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
29172 Author: Nick Spence <nick.spence@freescale.com>
29173 Date:   Thu May 8 22:32:22 2008 -0700
29174
29175     Support legacy multi-type images without FDT section.
29176
29177     This patch enables legacy multi-type images containing only a Linux kernel
29178     and root file system to be loaded, maintaining compatibility with previous
29179     versions of u-boot.
29180
29181     This is required when using old image files such as a Linux 2.4 kernel /
29182     filesystem.
29183
29184     Signed-off-by: Nick Spence <nick.spence@freescale.com>
29185     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
29186
29187 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
29188 Author: Wolfgang Denk <wd@denx.de>
29189 Date:   Sat May 10 00:38:02 2008 +0200
29190
29191     Update CHANGELOG.
29192
29193     Signed-off-by: Wolfgang Denk <wd@denx.de>
29194
29195 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
29196 Author: Wolfgang Denk <wd@denx.de>
29197 Date:   Sat May 10 00:36:09 2008 +0200
29198
29199     post/cpu/ppc4xx/Makefile: line length cleanup
29200
29201     Signed-off-by: Wolfgang Denk <wd@denx.de>
29202
29203 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
29204 Author: Stelian Pop <stelian@popies.net>
29205 Date:   Thu May 8 22:52:09 2008 +0200
29206
29207     Fix @ -> <at> substitution
29208
29209     When applying the AT91CAP9 patches upstream, something transformed
29210     the '@' character into the ' <at> ' sequence.
29211
29212     The patch below restores the original form in all the places where
29213     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
29214     were copied from AT91CAP9, and a couple of other files where the
29215     ' <at> ' sequence was present).
29216
29217     Signed-off-by: Stelian Pop <stelian@popies.net>
29218
29219 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
29220 Author: Stelian Pop <stelian@popies.net>
29221 Date:   Thu May 8 22:52:10 2008 +0200
29222
29223     Update origin and copyright information in arch-at91sam9 header files
29224
29225     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
29226     copied from the Linux kernel sources. This patch explicitly specifies
29227     this origin for all the copied headers, and for those missing copyright
29228     information, adds it.
29229
29230     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
29231     in the latest kernel sources by 'at91sam9_smc.h'.
29232
29233     The copyright information has been confirmed by the AT91 Linux kernel
29234     maintainer, Andrew Victor <avictor.za@gmail.com>.
29235
29236     Signed-off-by: Stelian Pop <stelian@popies.net>
29237
29238 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
29239 Author: Stelian Pop <stelian@popies.net>
29240 Date:   Thu May 8 22:52:11 2008 +0200
29241
29242     Add copyright information in Atmel boards partition.c
29243
29244     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
29245     the new created files. This patch fixes the problem.
29246
29247     Signed-off-by: Stelian Pop <stelian@popies.net>
29248
29249 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
29250 Author: Guennadi Liakhovetski <lg@denx.de>
29251 Date:   Thu May 8 10:09:27 2008 +0200
29252
29253     mx31ads: fix 32kHz clock handling
29254
29255     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
29256     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
29257     Also fix a typo when verifying a jumper configuration. While at it, make
29258     two needlessly global functions static.
29259
29260     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
29261
29262 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
29263 Author: Marian Balakowicz <m8@semihalf.com>
29264 Date:   Wed May 7 13:10:04 2008 +0200
29265
29266     Avoid initrd and logbuffer area overlaps
29267
29268     Add logbuffer to reserved LMB areas to prevent initrd allocation
29269     from overlaping with it.
29270
29271     Make sure to use correct logbuffer base address.
29272
29273     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29274
29275 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
29276 Author: Marian Balakowicz <m8@semihalf.com>
29277 Date:   Wed May 7 13:08:54 2008 +0200
29278
29279     ppc: Cleanup get_effective_memsize() use
29280
29281     Removed duplicated effective memory size calculation code.
29282
29283     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29284
29285 commit 273c37d843d5b581090378016cd12dd9c586907b
29286 Author: Marian Balakowicz <m8@semihalf.com>
29287 Date:   Wed May 7 09:03:53 2008 +0200
29288
29289     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
29290
29291     Recent modifcations to LOGBUFFER handling code were incorrecly
29292     introduced to fit_check_kernel() routine during
29293     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
29294     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
29295
29296     This patch cleans up this merge issue.
29297
29298     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29299
29300 commit bc11756daff89a3de09ca80adac962b88cf06e6e
29301 Author: Grant Erickson <gerickson@nuovations.com>
29302 Date:   Tue May 6 20:16:15 2008 -0700
29303
29304     Propagate Error Status to the Shell on fw_printenv Errors
29305
29306     Changed implementation such that fw_printenv returns failure status
29307     when one or more specified variables do not exist or when incorrect
29308     command syntax is used.
29309
29310     This aids scripting fw_printenv such that the script can key of the
29311     return status rather than relying on standard error "scraping".
29312
29313     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
29314     Signed-off-by: Wolfgang Denk <wd@denx.de>
29315
29316 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
29317 Author: Grant Erickson <gerickson@nuovations.com>
29318 Date:   Tue May 6 16:18:00 2008 -0700
29319
29320     Fix Compilation Errors with 'tools/env/fw_printenv'
29321
29322     In the current top-of-tree, 1.3.3.-rc2, the optional tool
29323     'tools/env/fw_printenv' fails to compile for two reasons:
29324
29325     1) The header watchdog.h cannot be found.
29326     2) The header zlib.h is picked up from the tool chain rather than the
29327        project causing a prototype conflict for crc32.
29328
29329     This patch addresses both of these issues.
29330
29331     Platforms Tested On:
29332     - AMCC "Kilauea"
29333
29334     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
29335
29336 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
29337 Author: James Yang <James.Yang@freescale.com>
29338 Date:   Mon May 5 10:22:53 2008 -0500
29339
29340     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
29341
29342     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
29343     work before relocating to RAM because command history is written into
29344     a global array that is not writable before relocation.  This patch
29345     defers to the no-editing and no-history code in readline_into_buffer()
29346     if it is called before relocation.
29347
29348     Signed-off-by: James Yang <James.Yang@freescale.com>
29349     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29350
29351 commit 726c0f1e5f108dccea052965123b95837d2bd402
29352 Author: Detlev Zundel <dzu@denx.de>
29353 Date:   Mon May 5 16:11:22 2008 +0200
29354
29355     cosmetic: Adjust coding style for switch statements to be consistent
29356
29357     Signed-off-by: Detlev Zundel <dzu@denx.de>
29358
29359 commit 574b319512b13e10800f0045e39b993f4ca25e42
29360 Author: Detlev Zundel <dzu@denx.de>
29361 Date:   Mon May 5 16:11:21 2008 +0200
29362
29363     Fix disk type output in disk/part.c
29364
29365     Signed-off-by: Detlev Zundel <dzu@denx.de>
29366
29367 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
29368 Author: Vlad Lungu <vlad.lungu@windriver.com>
29369 Date:   Mon May 5 14:20:03 2008 +0300
29370
29371     Mail address change, documentation modified
29372
29373     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
29374
29375 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
29376 Author: Michal Simek <monstr@monstr.eu>
29377 Date:   Sun May 4 15:42:41 2008 +0200
29378
29379     microblaze: Repare intc handling
29380
29381     Signed-off-by: Michal Simek <monstr@monstr.eu>
29382
29383 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
29384 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29385 Date:   Sun May 4 15:17:52 2008 +0200
29386
29387     include/gitignore: update to all architectures
29388
29389     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29390
29391 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
29392 Author: Marcel Ziswiler <marcel@ziswiler.com>
29393 Date:   Mon May 5 02:12:06 2008 +0200
29394
29395     ide: Remove spurious second include of io.h
29396
29397     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
29398
29399     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29400
29401 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
29402 Author: Adrian Filipi <adrian.filipi@eurotech.com>
29403 Date:   Tue May 6 16:46:37 2008 -0400
29404
29405     Fix some typos
29406
29407     This patch fixes three typos.
29408     The first is a repetition of CONFIG_CMD_BSP.
29409     The second makes the #endif comment match its #if.
29410     The third is a spelling error.
29411
29412     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
29413
29414 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
29415 Author: Grant Erickson <gerickson@nuovations.com>
29416 Date:   Sun May 4 16:45:01 2008 -0700
29417
29418     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
29419
29420     Add support for the recognition of 'powerpc' as an alias for the PowerPC
29421     architecture type since Linux is already trending in that direction,
29422     preferring 'powerpc' to 'ppc'.
29423
29424     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
29425
29426 commit f5a24259190c388c2527bdc49fee34577d862cc7
29427 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
29428 Date:   Fri May 2 13:35:15 2008 -0700
29429
29430     7450 and 86xx L2 cache invalidate bug corrections
29431
29432     The 7610 and related parts have an L2IP bit in the L2CR that is
29433     monitored to signal when the L2 cache invalidate is complete whereas the
29434     7450 and related parts utilize L2I for this purpose. However, the
29435     current code does not account for this difference. Additionally the 86xx
29436     L2 cache invalidate code used an "andi" instruction where an "andis"
29437     instruction should have been used.
29438
29439     This patch addresses both of these bugs.
29440
29441     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
29442     Acked-By: Jon Loeliger <jdl@freescale.com>
29443
29444 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
29445 Author: Wolfgang Denk <wd@denx.de>
29446 Date:   Fri May 9 10:16:13 2008 +0200
29447
29448     Avoid infinite loop "Generating include/autoconf.mk"
29449
29450     Fix a bogus circular dependency that caused an infinite loop of
29451     "Generating include/autoconf.mk" again and again.
29452
29453     Signed-off-by: Wolfgang Denk <wd@denx.de>
29454
29455 commit 567fb852178dbf59529d7301620a3f3732a4b02d
29456 Author: Stelian Pop <stelian@popies.net>
29457 Date:   Thu May 8 22:52:09 2008 +0200
29458
29459     Fix @ -> <at> substitution
29460
29461     When applying the AT91CAP9 patches upstream, something transformed
29462     the '@' character into the ' <at> ' sequence.
29463
29464     The patch below restores the original form in all the places where
29465     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
29466     were copied from AT91CAP9, and a couple of other files where the
29467     ' <at> ' sequence was present).
29468
29469     Signed-off-by: Stelian Pop <stelian@popies.net>
29470     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29471
29472 commit 73ccb3410a0785593cda7aee455dfc51f790e281
29473 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
29474 Date:   Mon Apr 28 14:04:32 2008 +0200
29475
29476     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
29477
29478     Signed-off-by: Gary Jennejohn <garyj@denx.de>
29479     Signed-off-by: Stefan Roese <sr@denx.de>
29480
29481 commit ef2642625cbfb1c3695e3478d08ae515052a4950
29482 Author: Stefan Roese <sr@denx.de>
29483 Date:   Thu May 8 11:10:46 2008 +0200
29484
29485     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
29486
29487     Signed-off-by: Stefan Roese <sr@denx.de>
29488
29489 commit a00eccfebc954ad9485161efeca7d9aaf626d530
29490 Author: Stefan Roese <sr@denx.de>
29491 Date:   Thu May 8 11:05:15 2008 +0200
29492
29493     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
29494
29495     This patch adds fdt (flattened device tree) support to all remaining AMCC
29496     eval boards. Most newer boards already support device tree. With this patch,
29497     all AMCC boards now enable device tree passing from U-Boot to Linux
29498     arch/powerpc kernels.
29499
29500     Signed-off-by: Stefan Roese <sr@denx.de>
29501
29502 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
29503 Author: Stefan Roese <sr@denx.de>
29504 Date:   Thu May 8 11:01:09 2008 +0200
29505
29506     ppc4xx: Add weak default ft_board_setup() routine
29507
29508     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
29509     This routine is defined as weak and can be overwritten by a board specific
29510     one if needed.
29511
29512     Signed-off-by: Stefan Roese <sr@denx.de>
29513
29514 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
29515 Author: Stefan Roese <sr@denx.de>
29516 Date:   Thu May 8 10:48:58 2008 +0200
29517
29518     ppc4xx: acadia: Add fdt support and fix section overlap problem
29519
29520     This patch adds fdt (flattened device tree) support to the AMCC
29521     Acadia eval board. This increases the image size and it doesn't
29522     fit anymore into 256kByte. Since we didn't want to remove features
29523     from the configuration, we decided to increase the U-Boot image size
29524     (add one flash sector).
29525
29526     Also changed the default environment definition to make it
29527     independent of such changes.
29528
29529     Signed-off-by: Stefan Roese <sr@denx.de>
29530
29531 commit 4adb3023de75bc150f088c8935db340930ad38c8
29532 Author: Ira Snyder <iws@ovro.caltech.edu>
29533 Date:   Tue Apr 29 11:18:54 2008 -0700
29534
29535     ppc4xx: Add device tree support to AMCC Yosemite
29536
29537     Add support for booting with a device tree blob. This is needed to boot
29538     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
29539     via the ethaddr variable.
29540
29541     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
29542     Signed-off-by: Stefan Roese <sr@denx.de>
29543
29544 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
29545 Author: Dave Mitchell <dmitchell@amcc.com>
29546 Date:   Wed May 7 09:00:23 2008 -0700
29547
29548     ppc4xx: Fix typos in 460GT/EX FBDV array
29549
29550     Corrected two typos in the 460GT/EX FBDV array.
29551
29552     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
29553     Signed-off-by: Stefan Roese <sr@denx.de>
29554
29555 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
29556 Author: Andy Fleming <afleming@freescale.com>
29557 Date:   Wed May 7 16:54:31 2008 -0500
29558
29559     85xx: Limit CPU2 workaround to parts that have the errata
29560
29561     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
29562     Signed-off-by: Andy Fleming <afleming@freescale.com>
29563
29564 commit a5fe514e8ace564300d2c1d73846ddff49654243
29565 Author: Lee Nipper <lee.nipper@freescale.com>
29566 Date:   Fri Apr 25 15:44:45 2008 -0500
29567
29568     mpc83xx: system performance settings for MPC8349EMDS.
29569
29570     These same settings are used on MPC8349ITX, and
29571     improve performance on MPC8349EMDS.
29572
29573     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
29574     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29575
29576 commit 49387dba910e485640b575e920ee463b7e611dc3
29577 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29578 Date:   Tue May 6 13:22:52 2008 +0900
29579
29580     [MIPS] cpu/mips/cache.S: Fix build warning
29581
29582     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
29583     warns illegal global symbol references by bal (and jal also) instruction.
29584     This does not happen with the latest binutils v2.18.
29585
29586     Here's an example on gth2_config:
29587
29588     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
29589     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
29590     c -EB -c -o cache.o cache.S
29591     cache.S: Assembler messages:
29592     cache.S:243: Warning: Pretending global symbol used as branch target is local.
29593     cache.S:250: Warning: Pretending global symbol used as branch target is local.
29594
29595     In principle, gas might be sensitive to global symbol references in PIC
29596     code because they should be processed through GOT (global offset table).
29597     But if `bal' instruction is used, it results in PC-based offset jump.
29598     This is the cause of this warning.
29599
29600     In practice, we know it doesn't matter whether PC-based reference or GOT-
29601     based. As for this case, both will work before/after relocation. But let's
29602     fix the code.
29603
29604     This patch explicitly sets up a target address, then jump there.
29605     Here's an example of disassembled code with/without this patch.
29606
29607      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
29608      9000066c:       ac80fffc        sw      zero,-4(a0)
29609      90000670:       01402821        move    a1,t2
29610     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
29611     -90000678:       01803021        move    a2,t4
29612     -9000067c:       01602821        move    a1,t3
29613     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
29614     -90000684:       01a03021        move    a2,t5
29615     -90000688:       03000008        jr      t8
29616     -9000068c:       00000000        nop
29617     +90000674:       01803021        move    a2,t4
29618     +90000678:       8f8f83ec        lw      t7,-31764(gp)
29619     +9000067c:       01e0f809        jalr    t7
29620     +90000680:       00000000        nop
29621     +90000684:       01602821        move    a1,t3
29622     +90000688:       01a03021        move    a2,t5
29623     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
29624     +90000690:       01e0f809        jalr    t7
29625     +90000694:       00000000        nop
29626     +90000698:       03000008        jr      t8
29627     +9000069c:       00000000        nop
29628
29629     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29630
29631 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
29632 Author: Vlad Lungu <vlad.lungu@windriver.com>
29633 Date:   Mon May 5 14:04:00 2008 +0300
29634
29635     Allow building mips versions with ELDK 3.1.1
29636
29637     .gpword works only with local symbols on certain binutils versions
29638
29639     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
29640
29641 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
29642 Author: Wolfgang Denk <wd@denx.de>
29643 Date:   Mon May 5 12:52:36 2008 +0200
29644
29645     MAKEALL: add inka4x0 board
29646
29647     Signed-off-by: Wolfgang Denk <wd@denx.de>
29648
29649 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
29650 Author: Wolfgang Denk <wd@denx.de>
29651 Date:   Sun May 4 21:34:23 2008 +0200
29652
29653     kb9202 board: fix build problem.
29654
29655     Signed-off-by: Wolfgang Denk <wd@denx.de>
29656
29657 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
29658 Author: Wolfgang Denk <wd@denx.de>
29659 Date:   Sun May 4 12:10:33 2008 +0200
29660
29661     Prepare for v1.3.3-rc3
29662
29663     Update ChNAGELOG, minor white space cleanup.
29664
29665     Signed-off-by: Wolfgang Denk <wd@denx.de>
29666
29667 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
29668 Author: Wolfgang Denk <wd@denx.de>
29669 Date:   Sun May 4 00:35:15 2008 +0200
29670
29671     drivers/net/tsec.c: Fix typo.
29672
29673     Signed-off-by: Wolfgang Denk <wd@denx.de>
29674
29675 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
29676 Author: Mike Frysinger <vapier@gentoo.org>
29677 Date:   Fri May 2 21:45:12 2008 -0400
29678
29679     version_autogenerated.h: use printf rather than echo -n
29680
29681     Some systems are dumb and do not implement the -n flag to echo (like OS X).
29682     Convert the Makefile to use printf as this should work everywhere.
29683
29684     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29685     Signed-off-by: Wolfgang Denk <wd@denx.de>
29686
29687 commit 4acc2a108ad0a669165924704a6cb083f9138242
29688 Author: Mike Frysinger <vapier@gentoo.org>
29689 Date:   Fri May 2 18:17:50 2008 -0400
29690
29691     fix building when saveenv is disabled in some setups
29692
29693     If you enable environment in the flash, but disable the embedded
29694     option, and you disable the saveenv command, then the #if nested
29695     logic will trigger a compile failure:
29696     env_flash.c: In function 'env_relocate_spec':
29697     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
29698     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
29699
29700     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29701
29702 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
29703 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
29704 Date:   Fri May 2 16:10:04 2008 -0400
29705
29706     SBC8548: fix address mask to allow 64M flash
29707
29708     Fix incorrect mask to enable all 64MB of onboard flash.
29709     Previously U-Boot incorrectly mapped only 8MB of flash, this
29710     patch correctly maps all the available flash.
29711
29712     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
29713
29714 commit 3648085c464c8c22ef76fab006ca4344d3796124
29715 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29716 Date:   Fri May 2 19:48:56 2008 +0200
29717
29718     qemu_mips: add README
29719
29720     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29721
29722 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
29723 Author: Marcel Ziswiler <marcel@ziswiler.com>
29724 Date:   Fri May 2 02:35:59 2008 +0200
29725
29726     Fix misspelled comment
29727
29728     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29729
29730 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
29731 Author: Mike Frysinger <vapier@gentoo.org>
29732 Date:   Thu May 1 04:13:05 2008 -0400
29733
29734     mkimage: make mmap() checks consistent
29735
29736     The mmap() related code is full of inconsistent casts/constants when
29737     it comes to error checking, and may break when building on some
29738     systems (like ones that do not implicitly define the caddr_t type).
29739     Let's just avoid the whole mess by writing the code nice and clean in
29740     the first place.
29741
29742     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29743
29744 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
29745 Author: Marcel Ziswiler <marcel@ziswiler.com>
29746 Date:   Thu May 1 09:05:34 2008 +0200
29747
29748     Fix defined but not used build warning
29749
29750     - warning: 'srom' defined but not used
29751
29752     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29753
29754 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
29755 Author: Marcel Ziswiler <marcel@ziswiler.com>
29756 Date:   Thu May 1 09:05:26 2008 +0200
29757
29758     Fix implicit declaration build warnings
29759
29760     - warning: implicit declaration of function â€˜serial_initialize’
29761
29762     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29763
29764 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
29765 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
29766 Date:   Tue Apr 29 19:18:32 2008 +0200
29767
29768     TSEC: add config options for VSC8601 RGMII PHY
29769
29770     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
29771     and Tx clock lines. They are configured using 2 bits in extended
29772     register 0x17.
29773     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
29774     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
29775
29776     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
29777     Acked-by: Andy Fleming <afleming@freescale.com>
29778     Acked-by: Ben Warren <biggerbadderben@gmail.com>
29779     --
29780
29781      drivers/net/tsec.c |    6 ++++++
29782      drivers/net/tsec.h |    3 +++
29783      2 files changed, 9 insertions(+), 0 deletions(-)
29784
29785 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
29786 Author: Wolfgang Denk <wd@denx.de>
29787 Date:   Sat May 3 23:07:15 2008 +0200
29788
29789     Revert "ColdFire: Get information from the correct GCC"
29790
29791     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
29792     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
29793
29794 commit c4e5f52a58d278eebb87f476e353972c5dacea40
29795 Author: Wolfgang Denk <wd@denx.de>
29796 Date:   Sat May 3 22:25:00 2008 +0200
29797
29798     config.mk: use correct (cross) compiler
29799
29800     Some config.mk files reference $(CC) to test for specific tool chain
29801     features, so make sure $(CC) gets set before including any such
29802     config files.
29803
29804     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
29805     the correct GCC").
29806
29807     Signed-off-by: Wolfgang Denk <wd@denx.de>
29808
29809 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
29810 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29811 Date:   Thu May 1 02:13:44 2008 +0200
29812
29813     pxa: fix previous definition on cpu init
29814
29815     start.S:183:1: warning: "ICMR" redefined
29816     In file included from start.S:33:
29817     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
29818     start.S:187:1: warning: "RCSR" redefined
29819     ...
29820
29821     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29822
29823 commit 6d12e697de794d700767f22f950e3026ccf4daf6
29824 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29825 Date:   Thu May 1 02:13:43 2008 +0200
29826
29827     pxa: fix pcmcia operation on 'i' may be undefined
29828
29829     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29830     Signed-off-by: Wolfgang Denk <wd@denx.de>
29831
29832 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
29833 Author: Kumar Gala <galak@kernel.crashing.org>
29834 Date:   Wed Apr 30 16:24:35 2008 -0500
29835
29836     MPC8610HPCD: Drop -O2 from the build flags
29837
29838     Make the flags use -Os like all other boards
29839
29840     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29841
29842 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
29843 Author: Stefan Roese <sr@denx.de>
29844 Date:   Wed Apr 30 15:50:39 2008 +0200
29845
29846     RTC: Fix month offset by one problem in M41T62 RTC driver
29847
29848     This patch fixes a problem with the month being read and written
29849     incorrectly (offset by one). This only gets visible by also using
29850     the Linux driver (rtc-m41t80).
29851
29852     Tested on AMCC Canyonlands.
29853
29854     Signed-off-by: Stefan Roese <sr@denx.de>
29855
29856 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
29857 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29858 Date:   Sat May 3 13:51:44 2008 +0900
29859
29860     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
29861
29862     Current trick to pick up GNU assembler minor version uses a dot(.) as a
29863     delimiter, and take the second field to obtain minor version number. But
29864     as can be expected, this doesn't work with a version string which has
29865     dots more than needs.
29866
29867     Here's an example:
29868
29869     $ mips-linux-gnu-as --version | grep 'GNU assembler'
29870     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
29871     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
29872     2-129) 2
29873     $
29874
29875     This patch restricts the version format to 2.XX.XX... This will work
29876     in most cases.
29877
29878     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
29879     2.18.50.20080215
29880     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
29881     18
29882     $
29883
29884     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29885
29886 commit ea638951acead7f1086c908c0b9f086beab82a22
29887 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29888 Date:   Sat May 3 13:51:28 2008 +0900
29889
29890     [MIPS] cpu/mips/cache.S: Add dcache_enable
29891
29892     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
29893     "allow ports to override bootelf behavior") requires ports to have this
29894     function.
29895
29896     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29897     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29898
29899 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
29900 Author: Wolfgang Denk <wd@denx.de>
29901 Date:   Thu May 1 21:30:16 2008 +0200
29902
29903     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
29904
29905     Onenand needs a version of memcpy() which performs 16 bit accesses
29906     only; make sure the name does not conflict with the standard
29907     function.
29908
29909     Signed-off-by: Wolfgang Denk <wd@denx.de>
29910
29911 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
29912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29913 Date:   Wed Apr 30 22:38:17 2008 +0200
29914
29915     cmd_nand: fix warning: str2long ncompatible pointer type
29916
29917     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29918
29919 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
29920 Author: Timur Tabi <timur@freescale.com>
29921 Date:   Fri Apr 4 11:16:11 2008 -0500
29922
29923     Fix calculation of I2C clock for some 86xx chips
29924
29925     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
29926     There is no pattern that can be used to determine which chips use which
29927     frequency, so the only way to determine is to look up the actual SOC
29928     designation and use the right value for that SOC.
29929
29930     Signed-off-by: Timur Tabi <timur@freescale.com>
29931
29932 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
29933 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29934 Date:   Wed Apr 30 12:11:19 2008 -0500
29935
29936     ColdFire: Fix ethernet hang issue for mcf547x_8x
29937
29938     The ethernet hang is caused by receiving buffer in DRAM is not
29939     yet ready due to access cycles require longer time in DRAM.
29940     Relocate DMA buffer descriptors from DRAM to internal SRAM.
29941
29942     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29943
29944 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
29945 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29946 Date:   Wed Apr 30 12:10:47 2008 -0500
29947
29948     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
29949
29950     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
29951     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29952
29953 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
29954 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29955 Date:   Wed Apr 30 12:10:23 2008 -0500
29956
29957     ColdFire: Get information from the correct GCC
29958
29959     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
29960     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
29961
29962 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
29963 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
29964 Date:   Wed Apr 30 18:02:59 2008 +0200
29965
29966     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
29967
29968     Fix warnings
29969
29970     nv_nand.c: In function 'saveenv':
29971     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
29972     env_nand.c: In function 'env_relocate_spec':
29973     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
29974
29975     if compiled for davinci_schmoogie_config.
29976
29977     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
29978     Ack by: Sergey Kubushyn <ksi@koi8.net>
29979
29980 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
29981 Author: Anatolij Gustschin <agust@denx.de>
29982 Date:   Wed Apr 30 13:34:40 2008 +0200
29983
29984     Fix warnings while compiling net/net.c for MPC8610HPCD board
29985
29986     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
29987     causing overriding default -Os option. New gcc (ver. 4.2.2)
29988     produces warnings while compiling net/net.c file with -O2
29989     option. The patch is an attempt to fix this.
29990
29991     Signed-off-by: Anatolij Gustschin <agust@denx.de>
29992
29993 commit 58b575e575c25fdf8c88141e145db201f3092149
29994 Author: Sascha Laue <Sascha.Laue@gmx.biz>
29995 Date:   Wed Apr 30 15:23:38 2008 +0200
29996
29997     lwmon5: fix offset error in sysmon0 POST
29998
29999     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
30000     Signed-off-by: Wolfgang Denk <wd@denx.de>
30001
30002 commit e7419b243a373de4ee042f7d4f45f66de787240d
30003 Author: Sascha Laue <Sascha.Laue@gmx.biz>
30004 Date:   Wed Apr 30 15:16:35 2008 +0200
30005
30006     lwmon5: fix manual merge error in POST
30007
30008     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
30009
30010 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
30011 Author: Wolfgang Denk <wd@denx.de>
30012 Date:   Wed Apr 30 17:46:26 2008 +0200
30013
30014     cmd_nand.c: fix another 'incompatible pointer type' warning.
30015
30016     Signed-off-by: Wolfgang Denk <wd@denx.de>
30017
30018 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
30019 Author: Wolfgang Denk <wd@denx.de>
30020 Date:   Wed Apr 30 17:25:07 2008 +0200
30021
30022     Makefile: fix parallel builds
30023
30024     This problem shows up with parallel builds only; it results in
30025     somewhat cryptic error messages like
30026
30027         $ JOBS=-j6 MAKEALL netstar
30028         Configuring for netstar board...
30029         arm-linux-ld: cannot find -lgeneric
30030         make[1]: *** [eeprom.srec] Error 1
30031
30032     A few boards (like netstar and voiceblue) need some libraries for
30033     building; however, the board Makefile does not contain any such
30034     dependencies which may cause problems with parallel builds. Adding
30035     such dependencies is difficult as we would also have to provide build
30036     rules, which already exist in the respective library Makefiles.
30037
30038     To solve this, we make sure that all libraries get built before the
30039     board code.
30040
30041     Signed-off-by: Wolfgang Denk <wd@denx.de>
30042
30043 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
30044 Author: Stefan Roese <sr@denx.de>
30045 Date:   Wed Apr 30 14:51:36 2008 +0200
30046
30047     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
30048
30049     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
30050     used for NAND booting to match the values needed for the new 512MB
30051     DIMM modules shipped with the productions boards:
30052
30053     Crucial: CT6464AC667.8FB
30054
30055     Signed-off-by: Stefan Roese <sr@denx.de>
30056
30057 commit ea9202a659dc75996facf1475f1866a19a9d3129
30058 Author: Stefan Roese <sr@denx.de>
30059 Date:   Wed Apr 30 10:49:43 2008 +0200
30060
30061     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
30062
30063     This patch fixes a problem with DIMMs that have 8 banks. Now the
30064     MCIF0_MBxCF register will be setup correctly for this setup too.
30065
30066     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
30067
30068     Signed-off-by: Stefan Roese <sr@denx.de>
30069
30070 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
30071 Author: Wolfgang Denk <wd@denx.de>
30072 Date:   Tue Apr 29 23:41:06 2008 +0200
30073
30074     Prepare v1.3.3-rc2, again.
30075
30076     Signed-off-by: Wolfgang Denk <wd@denx.de>
30077
30078 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
30079 Author: Wolfgang Denk <wd@denx.de>
30080 Date:   Tue Apr 29 23:35:24 2008 +0200
30081
30082     Prepare v1.3.3-rc2
30083
30084     Signed-off-by: Wolfgang Denk <wd@denx.de>
30085
30086 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
30087 Author: Wolfgang Denk <wd@denx.de>
30088 Date:   Tue Apr 29 23:32:20 2008 +0200
30089
30090     common/env_nand.c: fix one more incompatible pointer type issue
30091
30092     Signed-off-by: Wolfgang Denk <wd@denx.de>
30093
30094 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
30095 Author: Wolfgang Denk <wd@denx.de>
30096 Date:   Tue Apr 29 21:33:08 2008 +0200
30097
30098     post/board/lwmon5/sysmon.c: fix manual merge error.
30099
30100     Signed-off-by: Wolfgang Denk <wd@denx.de>
30101
30102 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
30103 Author: Kumar Gala <galak@kernel.crashing.org>
30104 Date:   Tue Apr 29 12:54:59 2008 -0500
30105
30106     85xx: Add -mno-spe to e500/85xx builds
30107
30108     Newer gcc's might be configured to enable autovectorization by default.
30109     If we happen to build with one of those compilers we will get SPE
30110     instructions in random code.
30111
30112     -mno-spe disables the compiler for automatically generating SPE
30113     instructions without our knowledge.
30114
30115     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30116
30117 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
30118 Author: Kumar Gala <galak@kernel.crashing.org>
30119 Date:   Tue Apr 29 10:18:34 2008 -0500
30120
30121     Update .gitignore for zlib.h
30122
30123     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30124
30125 commit 45239cf4152109caa925145ccd433529902df887
30126 Author: Kumar Gala <galak@kernel.crashing.org>
30127 Date:   Tue Apr 29 10:27:08 2008 -0500
30128
30129     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
30130
30131     All the 85xx and 86xx UM describe the register as timing_cfg_3
30132     not as ext_refrec.
30133
30134     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30135
30136 commit ef7d30b14394e4c4a153118f5845760cadada02a
30137 Author: Kumar Gala <galak@kernel.crashing.org>
30138 Date:   Tue Apr 29 10:28:34 2008 -0500
30139
30140     85xx/86xx: Rename DDR init address and init extended address register
30141
30142     Rename init_addr and init_ext_addr to match the docs between
30143     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
30144
30145     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30146
30147 commit cf6cc014270549684873a5972d2595052c468cb6
30148 Author: Kumar Gala <galak@kernel.crashing.org>
30149 Date:   Mon Apr 28 02:24:04 2008 -0500
30150
30151     85xx: Additional fixes and cleanup of MP code
30152
30153     * adjust __spin_table alignment to match ePAPR v0.94 spec
30154     * loop over all cpus when determing who is up.  This fixes an issue if
30155       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
30156       cpu_up_mask so there is no harm
30157     * Added some protection in the code to ensure proper behavior.  These
30158       changes are explicitly needed but don't hurt:
30159       - Added eieio to ensure the "hot word" of the table is written after
30160         all other table updates have occurred.
30161       - Added isync to ensure we don't prefetch loading of table entries
30162         until we a released
30163
30164     These issues we raised by Dave Liu.
30165
30166     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30167
30168 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
30169 Author: Yuri Tikhonov <yur@emcraft.com>
30170 Date:   Tue Apr 29 15:06:41 2008 +0200
30171
30172     lwmon5: minor clean-up to include/configs/lwmon5.h
30173
30174     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
30175     the CFG_DSPIC_TEST_ADDR definition more readable.
30176
30177     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30178
30179 commit f4c4d21a885ccc222fd0acdf653b683249e85117
30180 Author: Stefan Roese <sr@denx.de>
30181 Date:   Tue Apr 29 16:08:05 2008 +0200
30182
30183     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
30184
30185     Signed-off-by: Stefan Roese <sr@denx.de>
30186
30187 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
30188 Author: Yuri Tikhonov <yur@emcraft.com>
30189 Date:   Tue Apr 29 13:32:45 2008 +0200
30190
30191     ppc flush_cache: add watch-dog triggering into the loops.
30192
30193     Some boards (e.g. lwmon5) need rather a frequent watch-dog
30194     kicking. Since the time it takes for the flush_cache() function
30195     to complete its job depends on the size of data being flushed, one
30196     may encounter watch-dog resets on such boards when, for example,
30197     download big files over ethernet.
30198
30199     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30200
30201 commit cab99d6f3281ab6784feccf98b9b425daa58418a
30202 Author: Stefan Roese <sr@denx.de>
30203 Date:   Tue Apr 29 14:44:54 2008 +0200
30204
30205     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
30206
30207     Signed-off-by: Stefan Roese <sr@denx.de>
30208
30209 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
30210 Author: Stefan Roese <sr@denx.de>
30211 Date:   Tue Apr 29 14:12:07 2008 +0200
30212
30213     ppc4xx: Fix Katmai CFG_MONITOR_LEN
30214
30215     Signed-off-by: Stefan Roese <sr@denx.de>
30216
30217 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
30218 Author: Stefan Roese <sr@denx.de>
30219 Date:   Tue Apr 29 13:57:07 2008 +0200
30220
30221     ppc4xx: Complete remove bogus dflush()
30222
30223     Since the current dflush() implementation is know to have some problems
30224     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
30225     it by using clean_dcache_range().
30226
30227     Tested on Katmai with ECC DIMM.
30228
30229     Signed-off-by: Stefan Roese <sr@denx.de>
30230
30231 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
30232 Author: Stefan Roese <sr@denx.de>
30233 Date:   Tue Apr 29 13:36:51 2008 +0200
30234
30235     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
30236
30237     As it seems the "old" ECC initialization routine by using dflush() didn't
30238     write all lines in the dcache back to memory on lwmon5. This could lead
30239     to ECC error upon Linux booting. This patch changes the program_ecc()
30240     routine to now use clean_dcache_range() instead of dflush().
30241     clean_dcache_range() uses dcbst which is exactly what we want in this
30242     case.
30243
30244     Since dflush() is known is cause problems, this routine will be
30245     removed completely and replaced by clean_dcache_range() with an
30246     additional patch.
30247
30248     Signed-off-by: Stefan Roese <sr@denx.de>
30249
30250 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
30251 Author: Yuri Tikhonov <yur@emcraft.com>
30252 Date:   Mon Apr 28 18:19:34 2008 +0200
30253
30254     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
30255
30256     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30257
30258 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
30259 Author: Markus Brunner <super.firetwister@googlemail.com>
30260 Date:   Mon Apr 28 08:47:47 2008 +0200
30261
30262     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
30263
30264     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
30265     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
30266     doesn't exist.
30267
30268     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
30269
30270 commit 2ef7503a593c77a80c2a054011970227c4b62774
30271 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30272 Date:   Thu Apr 24 07:57:17 2008 +0200
30273
30274     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
30275
30276     Move non-inlied functions into specific drivers file
30277     Set get_prom as weak
30278
30279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30280     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30281     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30282
30283 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
30284 Author: Guennadi Liakhovetski <lg@denx.de>
30285 Date:   Thu Apr 3 17:04:19 2008 +0200
30286
30287     net: make ARP timeout configurable
30288
30289     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
30290     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
30291     to the boards get lost, which typically are ARP replies. By configuring
30292     the timeout to a lower value we significantly improve the first network
30293     transfer time on this board. The timeout is specified in milliseconds,
30294     later internally it is converted to deciseconds, because it has to be
30295     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
30296     different boards.
30297
30298     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30299     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30300
30301 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
30302 Author: Guennadi Liakhovetski <lg@denx.de>
30303 Date:   Thu Apr 3 13:36:18 2008 +0200
30304
30305     minor cs8900 driver clean up
30306
30307     Remove a redundant register definition, clean up some coding style
30308     violations.
30309
30310     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30311     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30312
30313 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
30314 Author: Wolfgang Denk <wd@denx.de>
30315 Date:   Mon Apr 28 22:01:04 2008 +0200
30316
30317     jffs2_1pass.c: fix incompatible pointer type warning
30318
30319     Signed-off-by: Wolfgang Denk <wd@denx.de>
30320
30321 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
30322 Author: Sascha Laue <Sascha.Laue@gmx.biz>
30323 Date:   Tue Apr 1 10:10:18 2008 +0200
30324
30325     lwmon5: update dsPIC POST spezification
30326
30327     The specification for the lwmon5 board dsPIC POST got changed.
30328     Also add defines for the temperatures  and voltages.
30329
30330     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
30331
30332 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
30333 Author: Sascha Laue <Sascha.Laue@gmx.biz>
30334 Date:   Tue Apr 1 15:13:03 2008 +0200
30335
30336     Fix watchdog POST for lwmon5
30337
30338     If the hardware watchdog detects a voltage error, the watchdog sets
30339     GPIO62 to low. The watchdog POST has to detect this low level.
30340
30341     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
30342     Signed-off-by: Wolfgang Denk <wd@denx.de>
30343
30344 commit dd5748bcd669f46aeb6686c1b341323843738ccc
30345 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30346 Date:   Mon Apr 28 14:37:14 2008 +0200
30347
30348     rtl8169: fix compiler warnings
30349
30350     Fix multiple compiler warnings related to argument type mismatch.
30351
30352     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30353
30354 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
30355 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30356 Date:   Mon Apr 28 14:36:06 2008 +0200
30357
30358     IDE: fix compiler warnings
30359
30360     The IDE driver can use 32-bit addresses in LBA mode, in which case it
30361     spits multiple warnings during compilation. Fix them.
30362
30363     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30364
30365 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
30366 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30367 Date:   Mon Apr 28 14:35:57 2008 +0200
30368
30369     LinkStation: fix compiler warning, add a maintainer
30370
30371     out_8 wants a pointer to an unsigned as the first argument. Add a
30372     maintainer for Linkstation boards.
30373
30374     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
30375
30376 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
30377 Author: Wolfgang Denk <wd@denx.de>
30378 Date:   Mon Apr 28 14:55:12 2008 +0200
30379
30380     cmd_nand.c: fix "differ in signedness" problem
30381
30382     Signed-off-by: Wolfgang Denk <wd@denx.de>
30383
30384 commit f2c288a35341ad02ac03b1563d786763c9c8f159
30385 Author: Wolfgang Denk <wd@denx.de>
30386 Date:   Mon Apr 28 12:48:47 2008 +0200
30387
30388     pcnet.c: fix a merge issue
30389
30390     Signed-off-by: Wolfgang Denk <wd@denx.de>
30391
30392 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
30393 Author: Wolfgang Denk <wd@denx.de>
30394 Date:   Mon Apr 28 12:08:18 2008 +0200
30395
30396     NAND: fix some strict-aliasing compiler warnings
30397
30398     Signed-off-by: Wolfgang Denk <wd@denx.de>
30399
30400 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
30401 Author: Stefan Roese <sr@denx.de>
30402 Date:   Mon Apr 28 11:37:14 2008 +0200
30403
30404     ppc4xx: Fix compile warning of hcu4 board
30405
30406     Signed-off-by: Stefan Roese <sr@denx.de>
30407
30408 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
30409 Author: Wolfgang Denk <wd@denx.de>
30410 Date:   Mon Apr 28 11:31:23 2008 +0200
30411
30412     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
30413
30414     Signed-off-by: Wolfgang Denk <wd@denx.de>
30415
30416 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
30417 Author: Guennadi Liakhovetski <lg@denx.de>
30418 Date:   Mon Apr 28 00:25:32 2008 +0200
30419
30420     mx31ads: fix loadaddr environment variable define
30421
30422     Arithmetic expressions do not get evaluated under stringification. Remove
30423     default network configuration, add DHCP command support. Thanks to Felix
30424     Radensky for reporting.
30425
30426     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30427
30428 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
30429 Author: Wolfgang Denk <wd@denx.de>
30430 Date:   Mon Apr 28 10:55:24 2008 +0200
30431
30432     katmai: fix section overlap problem
30433
30434     Since we didn't want to remove features from the configuration, we
30435     decided to increase the U-Boot image size (add one flash sector).
30436
30437     Also changed the default environment definition to make it
30438     independent of such changes.
30439
30440     Signed-off-by: Wolfgang Denk <wd@denx.de>
30441     Acked-by: Stefan Roese <sr@denx.de>
30442
30443 commit 941d696d25624e3cc65ebf924199541acf52d74e
30444 Author: Wolfgang Denk <wd@denx.de>
30445 Date:   Mon Apr 28 10:55:24 2008 +0200
30446
30447     katmai: fix section overlap problem
30448
30449     Since we didn't want to remove features from the configuration, we
30450     decided to increase the U-Boot image size (add one flash sector).
30451
30452     Also changed the default environment definition to make it
30453     independent of such changes.
30454
30455     Signed-off-by: Wolfgang Denk <wd@denx.de>
30456     Acked-by: Stefan Roese <sr@denx.de>
30457
30458 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
30459 Author: Kumar Gala <galak@kernel.crashing.org>
30460 Date:   Sat Apr 26 11:44:44 2008 -0500
30461
30462     post: Fix building with O=
30463
30464     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30465
30466 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
30467 Author: Wolfgang Denk <wd@denx.de>
30468 Date:   Sat Apr 26 01:55:00 2008 +0200
30469
30470     Prepare v1.3.3-rc1
30471
30472     Signed-off-by: Wolfgang Denk <wd@denx.de>
30473
30474 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
30475 Author: Wolfgang Denk <wd@denx.de>
30476 Date:   Sat Apr 26 01:25:39 2008 +0200
30477
30478     post/Makefile: make sure to use the correct flags
30479
30480     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
30481     messages to be printed.
30482
30483     Signed-off-by: Wolfgang Denk <wd@denx.de>
30484
30485 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
30486 Author: Wolfgang Denk <wd@denx.de>
30487 Date:   Sat Apr 26 00:34:42 2008 +0200
30488
30489     Coding Style cleanup, update CHANGELOG
30490
30491     Signed-off-by: Wolfgang Denk <wd@denx.de>
30492
30493 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
30494 Author: Magnus Lilja <lilja.magnus@gmail.com>
30495 Date:   Sun Apr 20 10:38:12 2008 +0200
30496
30497     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
30498
30499     This patch enables SPI and MC13783/RTC support for the Litekit board.
30500
30501     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30502
30503 commit f97abbfb47d9e407354e157cae3f6369e460cd37
30504 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
30505 Date:   Fri Apr 25 01:08:32 2008 -0500
30506
30507     MPC8544DS: decode pcie3 end-point configuration correctly.
30508
30509     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30510     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30511
30512 commit 292188e15523c165c4269403fdcd33c26d89176e
30513 Author: Roy Zang <tie-fei.zang@freescale.com>
30514 Date:   Fri Apr 25 00:55:09 2008 -0500
30515
30516     MPC8544DS: Removes the unknown flash message information
30517
30518     This patch removes the unknown flash message information:
30519     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
30520     This unknown flash message is caused by PromJet.
30521     Some of the board user is unhappy with this information.
30522
30523     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
30524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30525
30526 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
30527 Author: Kim Phillips <kim.phillips@freescale.com>
30528 Date:   Thu Apr 24 14:07:38 2008 -0500
30529
30530     mpc83xx: bump loadaddr over fdtaddr to 0x500000
30531
30532     this seems as a good compromise between human memory, typing,
30533     and last but not least, to accommodate for current and future kernel bloat.
30534
30535     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30536     Acked-by: Dave Liu <daveliu@freescale.com>
30537
30538 commit be5a7190265a34d968578ff266549c60f6f57654
30539 Author: Dave Liu <r63238@freescale.com>
30540 Date:   Tue Apr 15 13:12:23 2008 +0800
30541
30542     mpc83xx: clean up the readme for 83xx boards
30543
30544     1. correct the typo
30545     2. correct the memory map for 837xerdb board
30546
30547     Signed-off-by: Dave Liu <daveliu@freescale.com>
30548
30549 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
30550 Author: Dave Liu <r63238@freescale.com>
30551 Date:   Tue Apr 15 13:11:11 2008 +0800
30552
30553     mpc83xx: remove the unused CPM's stuff
30554
30555     The MPC83xx family never have CPM block, so remove it from 83xx.
30556
30557     Signed-off-by: Dave Liu <daveliu@freescale.com>
30558
30559 commit c63ad6325a8ac0097a54b418a3288926b0484b18
30560 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30561 Date:   Fri Apr 18 16:29:40 2008 +0200
30562
30563     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
30564
30565     This patch adds a configurable flash auto protection list that can be used
30566     to make U-Boot protect flash regions in flash_init().
30567
30568     The idea has been discussed on the u-boot mailing list starting
30569     on Nov 18th, 2007.
30570
30571     Even this patch brings a new feature it is used as a bugfix for 4xx
30572     platforms where flash_init() does not completely protect the
30573     monitor's flash range in all situations.
30574
30575     U-Boot protects the flash range from CFG_MONITOR_BASE to
30576     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
30577     include the reset vector at 0xfffffffc.
30578
30579     Example:
30580     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
30581
30582     This config option will auto protect the last 512k of flash that
30583     contains the bootloader on board like APC405 and PMC405.
30584
30585     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30586
30587 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
30588 Author: Stefan Roese <sr@denx.de>
30589 Date:   Fri Apr 25 13:59:03 2008 +0200
30590
30591     ppc4xx: Remove double defines in lwmon5.h
30592
30593     introduced with latest lwmon5/POST merge
30594
30595     Signed-off-by: Stefan Roese <sr@denx.de>
30596
30597 commit 7590378fb9c686709492ceb142825cd058255956
30598 Author: Bartlomiej Sieka <tur@semihalf.com>
30599 Date:   Fri Apr 25 13:54:02 2008 +0200
30600
30601     Use watchdog-aware functions when calculating hashes of images - take two
30602
30603     Some files didn't get updated properly with the "Use watchdog-aware
30604     functions when calculating hashes of images" commit, this commit
30605     fixes this.
30606
30607     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30608     Signed-off-by: Wolfgang Denk <wd@denx.de>
30609
30610 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
30611 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30612 Date:   Fri Apr 25 12:01:39 2008 +0200
30613
30614     ppc4xx: Add bootcount limit handling for APC405 boards
30615
30616     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30617
30618 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
30619 Author: Bartlomiej Sieka <tur@semihalf.com>
30620 Date:   Fri Apr 25 12:10:09 2008 +0200
30621
30622     Use watchdog-aware functions when calculating hashes of images
30623
30624     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30625
30626 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
30627 Author: Wolfgang Denk <wd@denx.de>
30628 Date:   Fri Apr 25 12:44:08 2008 +0200
30629
30630     USB: fix more GCC 4.2.x aliasing warnings
30631
30632     Signed-off-by: Wolfgang Denk <wd@denx.de>
30633     Acked-by: Markus Klotzbuecher <mk@denx.de>
30634
30635 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
30636 Author: Wolfgang Denk <wd@denx.de>
30637 Date:   Fri Apr 25 12:41:53 2008 +0200
30638
30639     lib_generic/crc32.c: add missing #include <watchdog.h>
30640
30641     Signed-off-by: Wolfgang Denk <wd@denx.de>
30642
30643 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
30644 Author: Wolfgang Denk <wd@denx.de>
30645 Date:   Fri Apr 25 11:52:21 2008 +0200
30646
30647     lib_generic/crc32.c: fix compile problem
30648
30649     Signed-off-by: Wolfgang Denk <wd@denx.de>
30650
30651 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
30652 Author: Stefan Roese <sr@denx.de>
30653 Date:   Tue Apr 22 12:20:32 2008 +0200
30654
30655     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
30656
30657     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
30658     environment variable will now get passed to the Linux kernel by setting
30659     the device_type property of the PCIe device tree node. For normal root-
30660     complex configuration it will keep its defaults value of "pci" and for
30661     endpoint configuration it will get changed to "pci-endpoint".
30662
30663     Signed-off-by: Stefan Roese <sr@denx.de>
30664
30665 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
30666 Author: Yuri Tikhonov <yur@emcraft.com>
30667 Date:   Thu Apr 24 10:30:53 2008 +0200
30668
30669     lwmon5: watchdog POST fix
30670
30671     Use the GPT0_MASKx registers as the temporary storage for watch-dog
30672     timer POST test instead of GPT0_COMPx. The latter
30673     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
30674
30675     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
30676     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30677
30678 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
30679 Author: Kim Phillips <kim.phillips@freescale.com>
30680 Date:   Mon Apr 21 18:10:14 2008 -0500
30681
30682     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
30683
30684     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
30685     proven problematic getting right from the start at least on 83xx and
30686     4xx.
30687
30688     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30689
30690 commit a99715b8ebfc500f3f40e01b36b64d473938443d
30691 Author: Detlev Zundel <dzu@denx.de>
30692 Date:   Fri Apr 18 14:50:01 2008 +0200
30693
30694     Realining some header definitions.
30695
30696     Signed-off-by: Detlev Zundel <dzu@denx.de>
30697
30698 commit 4acbc6c7f993cae409c424615415a3e76820f13d
30699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30700 Date:   Thu Apr 24 07:57:16 2008 +0200
30701
30702     NE2000: coding style cleanup
30703
30704     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30705
30706 commit b4aff1ffaf7120032c653357c007faa14f74d29d
30707 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30708 Date:   Wed Apr 23 00:11:47 2008 +0900
30709
30710     qemu-mips.h: Add CFI support
30711
30712     CONFIG_ENV_OVERWRITE is also added.
30713
30714     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
30715
30716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30717     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30718
30719 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
30720 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30721 Date:   Tue Apr 22 22:47:27 2008 +0900
30722
30723     doc/README.mips: Add MIPS notes
30724
30725     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30726
30727 commit 215b01bba8bc662d35f72b084700b192d367dfb4
30728 Author: Bartlomiej Sieka <tur@semihalf.com>
30729 Date:   Tue Apr 22 12:27:56 2008 +0200
30730
30731     Add support for calculating hashes with watchdog triggering
30732
30733     Implement watchodg-aware variants of hash calculation functions:
30734     - crc32_wd()
30735     - md5_wd()
30736     - sha1_csum_wd()
30737     The above functions calculate the hash of the input buffer in chunks,
30738     triggering the watchdog after processing each chunk. The chunk size
30739     is given as a function call parameter.
30740
30741     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30742
30743 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
30744 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30745 Date:   Wed Apr 23 11:02:12 2008 +0900
30746
30747     qemu-mips: Cleanup whitespace, indentation, etc.
30748
30749     No functional change.
30750
30751     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
30752     Then I re-created from scratch, and changed more lines than the original.
30753
30754     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30755     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30756
30757 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
30758 Author: Vlad Lungu <vlad@comsys.ro>
30759 Date:   Wed Oct 10 23:02:09 2007 +0300
30760
30761     Fixed pcnet io_base
30762
30763     Bus and phys address are not always the same
30764
30765     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30766
30767 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
30768 Author: Wolfgang Denk <wd@denx.de>
30769 Date:   Thu Apr 24 23:44:26 2008 +0200
30770
30771     drivers/net/pcnet.c: Coding Style cleanup.
30772
30773     Signed-off-by: Wolfgang Denk <wd@denx.de>
30774
30775 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
30776 Author: Vlad Lungu <vlad@comsys.ro>
30777 Date:   Wed Oct 10 23:04:23 2007 +0300
30778
30779     Added Am79C970A chip id to pcnet
30780
30781     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30782
30783 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
30784 Author: Magnus Lilja <lilja.magnus@gmail.com>
30785 Date:   Sun Apr 20 10:35:03 2008 +0200
30786
30787     i.MX31: Fix architecture numbers for ADS and Litekit boards
30788
30789     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
30790
30791     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30792
30793 commit e7ae84d6c7288790e88639f57cb60daf89c11369
30794 Author: Magnus Lilja <lilja.magnus@gmail.com>
30795 Date:   Sun Apr 20 10:36:36 2008 +0200
30796
30797     i.MX31: Use symbolic names for Litekit membases.
30798
30799     Use symbolic names instead of hard coded addresses for Litekit membases.
30800
30801     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
30802
30803 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
30804 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30805 Date:   Sat Apr 19 17:59:20 2008 +0200
30806
30807     Fix show_boot_progress prototype
30808
30809     in commit fad634071 "make show_boot_progress () weak."
30810     show_boot_progress is supposed to be declared as weak but declared as
30811     inline instead.
30812
30813     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30814
30815 commit edbed247a14d70b94958010f736621212285de91
30816 Author: Bartlomiej Sieka <tur@semihalf.com>
30817 Date:   Fri Apr 18 12:39:23 2008 +0200
30818
30819     Memory footprint optimizations
30820
30821     As suggested by Wolfgang Denk:
30822     - image printing functions:
30823       - remove wrappers
30824       - remove indentation prefix from functions' signatures
30825     - merge getenv_verify and getenv_autostart into one parametrized function
30826
30827     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30828
30829 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
30830 Author: Guennadi Liakhovetski <lg@denx.de>
30831 Date:   Tue Apr 15 13:33:11 2008 +0200
30832
30833     MX31ADS environment variable update, spi and rtc support
30834
30835     Update MX31ADS default environment to better match the flash layout and
30836     the memory map, support SPI and RTC.
30837
30838     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30839
30840 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
30841 Author: Kumar Gala <galak@kernel.crashing.org>
30842 Date:   Mon Apr 21 09:28:36 2008 -0500
30843
30844     85xx: Round up frequency calculations to get reasonable output
30845
30846     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
30847
30848     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
30849
30850     Signed-off-by: Dejan Minic <minic@freescale.com>
30851     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
30852     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30853     Acked-by: Andy Fleming <afleming@freescale.com>
30854
30855 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
30856 Author: Kumar Gala <galak@kernel.crashing.org>
30857 Date:   Wed Apr 23 16:58:04 2008 -0500
30858
30859     fsl_pci: Only modify registers if we have them
30860
30861     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
30862
30863     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30864
30865 commit 83fe32334337def160b302aa9d152d808bfcc68e
30866 Author: Markus Klotzbücher <mk@denx.de>
30867 Date:   Wed Apr 23 10:57:33 2008 +0200
30868
30869     USB: remove a cpu bug workaround for an unsupported architecture.
30870
30871     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30872
30873 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
30874 Author: Markus Klotzbücher <mk@denx.de>
30875 Date:   Wed Apr 23 10:53:23 2008 +0200
30876
30877     USB: fix those pesky aliasing warnings issued by gcc-4.2
30878
30879     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30880     Signed-off-by: Detlev Zundel <dzu@denx.de>
30881
30882 commit 89cdab788f3716b335fefb60b836ebcf975aceab
30883 Author: Mike Frysinger <vapier@gentoo.org>
30884 Date:   Mon Mar 31 11:02:01 2008 -0400
30885
30886     crc32: use uint32_t rather than unsigned long
30887
30888     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
30889     this is done with the build toolchain instead of the target tool
30890     chain, so if the build is a 64bit system but the target is 32bits,
30891     the size will obviously be wrong. This converts all unsigned long
30892     stuff related to crc32 to uint32_t types. Compile tested only: output
30893     of ./tools/envcrc when run on a 32bit build system matches that of a
30894     64bit build system.
30895
30896     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30897     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30898
30899 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
30900 Author: Dirk Behme <dirk.behme@googlemail.com>
30901 Date:   Wed Mar 26 09:53:29 2008 +0100
30902
30903     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
30904
30905     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
30906
30907     Changes:
30908
30909     - Remove *_masked() functions as noted by Wolfgang
30910
30911     - Adapt register naming to recent TI spec (sprue26, March 2007)
30912
30913     - Fix reset_timer() handling
30914
30915     - 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.
30916
30917     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
30918
30919     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
30920
30921     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
30922
30923     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
30924
30925     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30926     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
30927
30928 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
30929 Author: Sergei Poselenov <sposelenov@emcraft.com>
30930 Date:   Wed Apr 9 16:09:41 2008 +0200
30931
30932     Added watchdog triggering calls in the "mtest" test function.
30933
30934     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
30935
30936 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
30937 Author: Yuri Tikhonov <yur@emcraft.com>
30938 Date:   Sun Apr 6 19:19:14 2008 +0200
30939
30940     lwmon5 watchdog: limit trigger rate
30941
30942     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
30943     the CONFIG_WD_MAX_RATE value.
30944
30945     Note that an earlier version of this patch which used microseconds
30946     instead of ticks dis not work. The problem was that we used
30947     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
30948     get_tbclk(), which in turn calls get_sys_info(). It turns out that
30949     this function does a lot of prolonged operations (like divisions)
30950     which take too much time so we do not trigger the watchdog in time,
30951     and it resets the system.
30952
30953     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30954
30955 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
30956 Author: Yuri Tikhonov <yur@emcraft.com>
30957 Date:   Mon Mar 31 10:51:37 2008 +0200
30958
30959     POST: move CONFIG_POST to Makefiles
30960
30961     Introduce the new logical option CONFIG_HAS_POST which is set when the
30962     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
30963     to determine should the POST libs be compiled for the selected target
30964     platform, or not.
30965
30966     To avoid breaking u-boot linking process, the empty post/libpost.a file is
30967     created for platforms which do not have POSTs.
30968
30969     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30970     Signed-off-by: Wolfgang Denk <wd@denx.de>
30971
30972 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
30973 Author: Yuri Tikhonov <yur@emcraft.com>
30974 Date:   Mon Mar 31 10:49:34 2008 +0200
30975
30976     POST: preparations for moving CONFIG_POST to Makefiles
30977
30978     Remove CONFIG_POST ifdefs from the post/ source files.
30979
30980     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30981     Signed-off-by: Wolfgang Denk <wd@denx.de>
30982
30983 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
30984 Author: Stefan Roese <sr@denx.de>
30985 Date:   Tue Apr 22 14:14:20 2008 +0200
30986
30987     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
30988
30989     This patch fixes the Canyonlands and Glacier default environment to better
30990     fit to the arch/powerpc device-tree kernels. The variables dealing with
30991     arch/ppc booting are removed, since these boards are supported only in
30992     arch/powerpc. Glacier uses the same config file as Canyonlands.
30993
30994     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
30995
30996     Signed-off-by: Stefan Roese <sr@denx.de>
30997
30998 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
30999 Author: Stefan Roese <sr@denx.de>
31000 Date:   Tue Apr 22 14:06:42 2008 +0200
31001
31002     ppc4xx: Small coding style cleanup for the latest esd patches
31003
31004     Signed-off-by: Stefan Roese <sr@denx.de>
31005
31006 commit 79941d63bc03aed8c48d7602f18217cc200ee931
31007 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31008 Date:   Mon Apr 21 18:01:07 2008 +0200
31009
31010     ppc4xx: Update CPU strapping for PMC440 boards
31011
31012     This patch removes the temporary 'test' strapping option
31013     of the sbe command. The '667' strapping option now uses
31014     a PLB/PCI divider of 3.
31015
31016     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31017
31018 commit f00cf3193a6635355b121e90debb2f54e777e7da
31019 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31020 Date:   Mon Apr 21 14:42:21 2008 +0200
31021
31022     ppc4xx: Remove unused APC405 strataflash driver
31023
31024     The APC405 board support has been migrated to use the common
31025     CFI flash driver.
31026
31027     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31028
31029 commit 1c686676a86473bbd92151f0544e109413f6ed06
31030 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31031 Date:   Mon Apr 21 14:42:17 2008 +0200
31032
31033     ppc4xx: Update APC405 configuration
31034
31035     - enable esd's auto_update mechanism
31036     - support alternative flash layout on rev. 1.8 boards
31037     - update default environment
31038     - use common CFI flash driver
31039     - coding style cleanup
31040
31041     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31042
31043 commit 0b9872515a521bf7866dc24b85ddce708e60d702
31044 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31045 Date:   Mon Apr 21 14:42:11 2008 +0200
31046
31047     ppc4xx: Update APC405 board support
31048
31049     - enable esd's auto_update mechanism
31050     - fix LCD support on latest hardware revision (uses other LCD controller)
31051     - support alternative flash layout on rev. 1.8 boards
31052     - coding style cleanup
31053
31054     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31055
31056 commit 83975d02e225e231960784972e7820a8b303756b
31057 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31058 Date:   Mon Apr 21 14:42:06 2008 +0200
31059
31060     ppc4xx: update esd's common auto_update code for 405 boards
31061
31062     - Coding style cleanup (long lines)
31063     - improve handling of protected flash regions
31064     - remove dead code
31065
31066     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31067
31068 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
31069 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31070 Date:   Mon Apr 21 14:41:59 2008 +0200
31071
31072     ppc4xx: Update esd's common LCD code for 405 boards
31073
31074     - Coding style cleanup (long lines)
31075     - Add s1d13505 support
31076     - Make some functions return a result code instead of void
31077
31078     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31079
31080 commit dea68189424c3f1242427a8146a3861bf093173c
31081 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31082 Date:   Mon Apr 21 11:36:55 2008 +0200
31083
31084     ppc4xx: Update FPGA image for APC405 boards
31085
31086     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31087
31088 commit 2a05b152924acfcec3b037693329e517e6d3578f
31089 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31090 Date:   Mon Apr 21 11:36:08 2008 +0200
31091
31092     ppc4xx: Update bootlogo for APC405 boards
31093
31094     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31095
31096 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
31097 Author: Stefan Roese <sr@denx.de>
31098 Date:   Fri Apr 18 16:41:31 2008 +0200
31099
31100     ppc4xx: Add dcache_enable() for 440
31101
31102     dcache_enable() was missing for 440 and the patch
31103     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
31104     "] behavior uses this function.
31105
31106     Note: Currently the cache handling functions like
31107     d/icache_disable/enable() are NOP's on 440. This may be changed in the
31108     future.
31109
31110     Signed-off-by: Stefan Roese <sr@denx.de>
31111
31112 commit a49e0d177a0749614b316ec847fb623f09c82c07
31113 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31114 Date:   Mon Apr 21 11:19:04 2008 +0200
31115
31116     video: Add missing free for logo memory
31117
31118     This patch adds two missing free()s.
31119
31120     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31121
31122 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
31123 Author: Troy Kisky <troy.kisky@boundarydevices.com>
31124 Date:   Mon Sep 24 16:41:43 2007 -0700
31125
31126     PATCH - Fix oob data copied into supplied buffer
31127
31128     This patch correctly sets the oobavail variable
31129     and fixes a bug where the oob data was not valid when
31130     there where multiple groups in oobfree.
31131
31132     First segment fixes a typo
31133     Second segment fixes a bug where oob data may be copied incorrectly.
31134     Third segment adds an error message when exiting due to write protect.
31135     Forth segment fixes a bug where oobavail may be set incorrectly.
31136
31137     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
31138
31139 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
31140 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31141 Date:   Fri Apr 18 17:24:32 2008 +0200
31142
31143     ppc4xx: Fix sys_get_info() for 405GP(r)
31144
31145     This patch assigns the correct EBC clock for 405GP(r) CPUs
31146     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
31147     uses an uninitialized EBC clock in its startup message.
31148
31149     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31150
31151 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
31152 Author: Wolfgang Denk <wd@denx.de>
31153 Date:   Sun Apr 20 15:39:38 2008 -0700
31154
31155     Makefile: remove nand_spl/System.map when cleaning up.
31156
31157 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
31158 Author: Wolfgang Denk <wd@denx.de>
31159 Date:   Sun Apr 20 15:35:52 2008 -0700
31160
31161     MAKEALL: sort entries / lists.
31162
31163     Signed-off-by: Wolfgang Denk <wd@denx.de>
31164
31165 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
31166 Author: Kumar Gala <galak@kernel.crashing.org>
31167 Date:   Fri Apr 18 11:29:01 2008 -0500
31168
31169     85xx: Fix size of cpu-release-addr property
31170
31171     The cpu-release-addr is defined as always being a 64-bit quanity regardless
31172     if we are running on a 32-bit or 64-bit machine.
31173
31174 commit 88353a985109562a639b2f8a0c90d77011bfe374
31175 Author: Timur Tabi <timur@freescale.com>
31176 Date:   Fri Apr 4 11:15:58 2008 -0500
31177
31178     Fix calculation of I2C clock for some 85xx chips
31179
31180     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
31181     some use CCB/3.  There is no pattern that can be used to determine which
31182     chips use which frequency, so the only way to determine is to look up the
31183     actual SOC designation and use the right value for that SOC.
31184
31185     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
31186
31187     Signed-off-by: Timur Tabi <timur@freescale.com>
31188
31189 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
31190 Author: Wolfgang Denk <wd@denx.de>
31191 Date:   Fri Apr 18 11:44:27 2008 -0700
31192
31193     Fix build breakage casued by commit c0559be371b2
31194
31195         Change env_get_char from a global function ptr to a function.
31196
31197     Signed-off-by: Wolfgang Denk <wd@denx.de>
31198
31199 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
31200 Author: Wolfgang Denk <wd@denx.de>
31201 Date:   Fri Apr 18 10:53:41 2008 -0700
31202
31203     Coding Style cleanup, update CHANGELOG.
31204
31205     Signed-off-by: Wolfgang Denk <wd@denx.de>
31206
31207 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
31208 Author: Mike Frysinger <vapier@gentoo.org>
31209 Date:   Tue Apr 8 14:00:57 2008 -0400
31210
31211     Add support for u-boot in svn and localversion-* files
31212
31213     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31214
31215 commit d23ff6827decf121461fbc5622612fd7effe207e
31216 Author: Guennadi Liakhovetski <lg@denx.de>
31217 Date:   Thu Apr 3 17:04:22 2008 +0200
31218
31219     MX31ADS network and flash updates
31220
31221     This patch allows U-Boot to use buffered writes to the Spansion NOR
31222     flash installed on this board, and eliminates long delays in network
31223     transfers after the board startup.
31224
31225     Also modify flash layout to embed main and redundant environment
31226     blocks in the U-Boot image.
31227
31228     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31229
31230 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
31231 Author: Guennadi Liakhovetski <lg@denx.de>
31232 Date:   Mon Apr 14 10:53:12 2008 +0200
31233
31234     Support for the MX31ADS evaluation board from Freescale
31235
31236     This patch adds support for the MX31ADS evaluation board from Freescale,
31237     initialization code is copied from RedBoot sources, also provided by
31238     Freescale.
31239
31240     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31241
31242 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
31243 Author: Stefan Roese <sr@denx.de>
31244 Date:   Tue Apr 8 10:33:29 2008 +0200
31245
31246     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
31247
31248     Signed-off-by: Stefan Roese <sr@denx.de>
31249
31250 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
31251 Author: Stefan Roese <sr@denx.de>
31252 Date:   Tue Apr 8 10:33:28 2008 +0200
31253
31254     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
31255
31256     Signed-off-by: Stefan Roese <sr@denx.de>
31257
31258 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
31259 Author: Stefan Roese <sr@denx.de>
31260 Date:   Tue Apr 8 10:33:27 2008 +0200
31261
31262     ppc4xx: Add Glacier NAND booting target
31263
31264     Signed-off-by: Stefan Roese <sr@denx.de>
31265
31266 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
31267 Author: Stefan Roese <sr@denx.de>
31268 Date:   Tue Apr 8 10:31:00 2008 +0200
31269
31270     nand_spl: Update nand_spl to support 2k page size NAND devices
31271
31272     This patch adds support for booting from 2k page sized NAND device
31273     (e.g. Micron 29F2G08AAC).
31274
31275     Tested on AMCC Canyonlands.
31276
31277     Signed-off-by: Stefan Roese <sr@denx.de>
31278
31279 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
31280 Author: Anatolij Gustschin <agust@denx.de>
31281 Date:   Thu Apr 17 18:18:00 2008 +0200
31282
31283     Fix crash on sequoia in ppc_4xx_eth_init
31284
31285     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
31286     with cache enabled (TLB Parity exeption). This patch
31287     fixes the problem.
31288
31289     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31290
31291 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
31292 Author: Anatolij Gustschin <agust@denx.de>
31293 Date:   Thu Apr 17 18:15:27 2008 +0200
31294
31295     ppc4xx: Fix crash on sequoia with cache enabled
31296
31297     Currently U-Boot crashes on sequoia board in CPU POST if
31298     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
31299     won't be disabled by change_tlb before CPU POST because
31300     there is an insufficient adress range check since
31301     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
31302     this problem.
31303
31304     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31305
31306 commit 43c509254fab375c49936498da944658117ed07c
31307 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31308 Date:   Thu Apr 17 23:35:13 2008 +0900
31309
31310     Use jr as register jump instruction
31311
31312     Current assembler codes are inconsistent in the way of register jump
31313     instruction usage; some use jr, some use j. Of course GNU as allows both
31314     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
31315     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
31316     at all.
31317
31318     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31319
31320 commit 7ce63709828d37b08866e537339a169bd0db2bd3
31321 Author: Guennadi Liakhovetski <lg@denx.de>
31322 Date:   Tue Apr 15 14:15:30 2008 +0200
31323
31324     RTC driver for MC13783
31325
31326     MC13783 is a multifunction IS with an SPI interface to the host. This
31327     driver handles the RTC controller in this chip.
31328
31329     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31330
31331 commit 38254f45b0b412332726c90d3184ad47479fcffb
31332 Author: Guennadi Liakhovetski <lg@denx.de>
31333 Date:   Tue Apr 15 14:14:25 2008 +0200
31334
31335     New i.MX31 SPI driver
31336
31337     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
31338     only implemented and tested on i.MX31, can with a modified register layout
31339     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
31340     controllers too.
31341
31342     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31343
31344 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
31345 Author: Magnus Lilja <lilja.magnus@gmail.com>
31346 Date:   Tue Apr 15 19:09:10 2008 +0200
31347
31348     Fix name of i.MX31 boards in config file header
31349
31350     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
31351
31352     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
31353
31354 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
31355 Author: Mike Frysinger <vapier@gentoo.org>
31356 Date:   Sun Apr 13 19:42:19 2008 -0400
31357
31358     allow ports to override go behavior
31359
31360     Split the arch-specific logic out of the common go code and into a dedicated
31361     weak function called do_go_exec() that lives in cpu directories.  This will
31362     need review from i386/nios people to make sure I didn't break them.
31363
31364 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
31365 Author: Mike Frysinger <vapier@gentoo.org>
31366 Date:   Sun Apr 13 19:42:18 2008 -0400
31367
31368     allow ports to override bootelf behavior
31369
31370     Change the bootelf setup function into a dedicated weak function called
31371     do_bootelf_exec.  This way ports can control the behavior however they
31372     like before/after calling the ELF entry point.
31373
31374 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
31375 Author: Ulf Samuelsson <ulf@atmel.com>
31376 Date:   Sat Apr 12 20:56:03 2008 +0200
31377
31378     Reorder ARM boards in Makefile
31379
31380     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
31381     are no longer under ARM92xT header.
31382
31383     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
31384     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31385
31386 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
31387 Author: Ulf Samuelsson <ulf@atmel.com>
31388 Date:   Sat Apr 12 20:29:44 2008 +0200
31389
31390     Clean up dataflash partitioning
31391
31392     This patch removes the board dependent parts from
31393     "drivers/mtd/dataflash.c".
31394     Each board relying on this, will have the appropriate
31395     code in a new file, "partition.c" in the board directory.
31396     board Makefiles updated to use the file.
31397
31398     The dataflash partitions are aligned on sector/page boundaries.
31399
31400     The CONFIG_NEW_DF_PARTITION was used to create named partitions
31401     This is now the default operation, and the CONFIG variable is removed.
31402
31403     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
31404
31405 commit 51ecde946fec511a16346e498204ca10ad71080d
31406 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31407 Date:   Sat Apr 12 14:08:45 2008 +0200
31408
31409     gitignore: udpate stgit generated and .patch file
31410
31411     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31412
31413 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
31414 Author: Wolfgang Denk <wd@denx.de>
31415 Date:   Fri Apr 18 00:15:36 2008 -0700
31416
31417     Get rid of redundant copy of renamed header file.
31418
31419     Signed-off-by: Wolfgang Denk <wd@denx.de>
31420
31421 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
31422 Author: Vlad Lungu <vlad@comsys.ro>
31423 Date:   Fri Apr 11 21:20:14 2008 +0300
31424
31425     Fix dependency generation for older gcc versions
31426
31427      With gcc 3.3.3 at least, compilation fails with
31428
31429     Generating include/autoconf.mk
31430     gcc: compilation of header file requested
31431     make: *** [include/autoconf.mk] Error 1
31432
31433     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
31434
31435     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
31436
31437 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
31438 Author: Marian Balakowicz <m8@semihalf.com>
31439 Date:   Fri Apr 11 11:07:49 2008 +0200
31440
31441     Restore the ability to continue booting after legacy image overwrite
31442
31443     Before new uImage code was merged, bootm code allowed for the kernel image to
31444     get overwritten during decompresion. new uImage introduced a check for image
31445     overwrites and refused to boot the image that got overwritten. This patch
31446     restores the old behavior. It also adds a warning when the image overwriten is
31447     a multi-image file, because in such case accessing componentes other than the
31448     first one will fail.
31449
31450     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31451
31452 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
31453 Author: Marian Balakowicz <m8@semihalf.com>
31454 Date:   Fri Apr 11 11:07:43 2008 +0200
31455
31456     ppc: Fix ftd_blob variable init when processing raw blob
31457
31458     Set fdt_blob variable before its value is printed out.
31459
31460     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31461
31462 commit 3d36be030043cd841a2551d00a395135e363a64b
31463 Author: Jason Wessel <jason.wessel@windriver.com>
31464 Date:   Thu Apr 10 14:30:16 2008 -0500
31465
31466     Remove all the search paths from the .lds files.
31467
31468     The cross compiler is responsible for providing the correct libraries
31469     and the logic to find the linking libraries.
31470
31471     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
31472
31473 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
31474 Author: Bartlomiej Sieka <tur@semihalf.com>
31475 Date:   Mon Apr 14 15:44:16 2008 +0200
31476
31477     Boot-related documentation update
31478
31479     - document 'bootm_low' and 'bootm_size' environment variables
31480     - update inaccurate CFG_BOOTMAPSZ entry
31481
31482     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31483
31484 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
31485 Author: Guennadi Liakhovetski <lg@denx.de>
31486 Date:   Wed Apr 9 17:34:08 2008 +0200
31487
31488     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
31489
31490     Restore logic reverted by commit
31491
31492     commit 80767a6cead9990d9e77e62be947843c2c72f469
31493     Author: Peter Pearse <peter.pearse@arm.com>
31494     Date:   Wed Sep 5 16:04:41 2007 +0100
31495
31496         Changed API name to coloured_led.h
31497         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
31498         Tidied other cpu/arm920t/start.S code
31499
31500     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31501
31502 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
31503 Author: Mike Frysinger <vapier@gentoo.org>
31504 Date:   Tue Apr 8 10:24:24 2008 -0400
31505
31506     Remove conflicting NAND ID
31507
31508     There are two NAND entries with ID 0xDC and this obviously causes problems.
31509     In the kernel, they punted the first entry, so we should do the same.
31510
31511     See this upstream e-mail for more info:
31512     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
31513
31514     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
31515     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31516
31517 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
31518 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31519 Date:   Tue Apr 8 16:20:35 2008 +0900
31520
31521     cpu/mips/cpu.c: Fix flush_cache bug
31522
31523     Cache operations have to take line address (addr), not start_addr.
31524     I noticed this bug when debugging ping failure.
31525
31526     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31527
31528 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
31529 Author: Martin Krause <martin.krause@tqs.de>
31530 Date:   Thu Apr 3 14:29:01 2008 +0200
31531
31532     TQM5200: fix default IDE reset level
31533
31534     Before the first call of ide_reset(), the level of the IDE reset
31535     signal on the TQM5200 is low (reset asserted). This patch sets the
31536     default value to high (reset not asserted).
31537
31538     Currently this patch fixes no real problem, but it is cleaner to
31539     assert the reset signal only on demand, and not permanently.
31540
31541     Signed-off-by: Martin Krause <martin.krause@tqs.de>
31542
31543 commit c61e033d6e8abb7b4060ee36060961e1399f6079
31544 Author: Detlev Zundel <dzu@denx.de>
31545 Date:   Thu Apr 3 14:18:48 2008 +0200
31546
31547     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
31548
31549     Signed-off-by: Detlev Zundel <dzu@denx.de>
31550
31551 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
31552 Author: Detlev Zundel <dzu@denx.de>
31553 Date:   Thu Apr 3 14:18:47 2008 +0200
31554
31555     mgcoge, mgsuv: rename 'addcon' to 'addcons'
31556
31557     The latter name with 13 users is already established, so we will use
31558     that.
31559
31560     Signed-off-by: Detlev Zundel <dzu@denx.de>
31561
31562 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
31563 Author: Martin Krause <martin.krause@tqs.de>
31564 Date:   Thu Apr 3 13:37:56 2008 +0200
31565
31566     IDE: fix bug in reset sequence
31567
31568     According to the ata (ata5) specification the RESET- signal
31569     shall be asserted for at least 25 us. Without this patch,
31570     the RESET- signal is asserted on some boards for only < 1 us
31571     (e. g. on the TQM5200). This patch adds a general delay of
31572     25 us to the RESET- signal.
31573
31574     Without this patch a Platinum 4 GiB CF card is not recognised
31575     properly on boards with a TQM5200 (STK52xx, TB5200).
31576
31577     Signed-off-by: Martin Krause <martin.krause@tqs.de>
31578
31579 commit 813bea96a960916c72b4a3a7df840151529c26ce
31580 Author: Sascha Laue <Sascha.Laue@gmx.biz>
31581 Date:   Thu Apr 3 14:43:11 2008 +0200
31582
31583     lwmon5: disable CONFIG_ZERO_BOOTDELAY
31584
31585     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
31586
31587 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
31588 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31589 Date:   Wed Apr 2 08:03:58 2008 +0200
31590
31591     ds174x: Fix warning on return in rtc_get and rtc_set functions
31592
31593     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31594
31595 commit a253b38bf50c85227c33ca0febc870ee49d1588e
31596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31597 Date:   Wed Apr 2 08:03:57 2008 +0200
31598
31599     cmd_log.c: Fix assignment differ in signedness
31600
31601     In function 'logbuff_init_ptrs':
31602     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
31603
31604     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31605
31606 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
31607 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
31608 Date:   Wed Apr 2 11:04:43 2008 +0530
31609
31610     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
31611
31612     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
31613
31614 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
31615 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31616 Date:   Tue Apr 1 14:07:10 2008 +0200
31617
31618     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
31619
31620     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31621
31622 commit c08fb3ea36d19b1640b7906264581e9105534399
31623 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31624 Date:   Tue Apr 15 10:24:14 2008 +0200
31625
31626     Additional PCI IDs for IDE and network controllers
31627
31628     These PCI IDs are required by the Linkstation platforms.
31629
31630     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31631
31632 commit c0559be371b2a64b1a817088c3308688e2182f93
31633 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
31634 Date:   Mon Apr 14 23:01:50 2008 +0200
31635
31636     Change env_get_char from a global function ptr to a function.
31637
31638     This avoids an early global data reference.
31639
31640     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
31641
31642 commit 3e0f331c05d72f140715c1e9fca991927e44d422
31643 Author: Guennadi Liakhovetski <lg@denx.de>
31644 Date:   Tue Apr 29 12:35:08 2008 +0000
31645
31646     Clean up smsc911x driver
31647
31648     Replace direct register address derefencing with accessor functions.
31649     Restrict explicitly 32-bit bus-width, extend affected configurations
31650     respectively.
31651
31652     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31653     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31654
31655 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
31656 Author: Sascha Hauer <s.hauer@pengutronix.de>
31657 Date:   Tue Apr 15 00:08:20 2008 -0400
31658
31659     This patch adds a driver for the following smsc network controllers:
31660     LAN9115
31661     LAN9116
31662     LAN9117
31663     LAN9215
31664     LAN9216
31665     LAN9217
31666
31667     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31668     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
31669     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31670
31671 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
31672 Author: Sascha Laue <Sascha.Laue@gmx.biz>
31673 Date:   Tue Apr 1 15:13:03 2008 +0200
31674
31675     Fix watchdog POST for lwmon5
31676
31677     If the hardware watchdog detects a voltage error, the watchdog sets
31678     GPIO62 to low. The watchdog POST has to detect this low level.
31679
31680     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
31681
31682 commit 24b448448a917e52806f82660a5c9d47608894fb
31683 Author: Dave Liu <r63238@freescale.com>
31684 Date:   Tue Apr 1 15:22:11 2008 +0800
31685
31686     ata: update the libata.h from ata.h of linux kernel
31687
31688     Current libata.h of u-boot is out of sync from linux kernel,
31689     this patch make it be consistent with linux kernel.
31690
31691     Signed-off-by: Dave Liu <daveliu@freescale.com>
31692     Signed-off-by: Tor Krill <tor@excito.com>
31693
31694 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
31695 Author: Kumar Gala <galak@kernel.crashing.org>
31696 Date:   Mon Mar 31 11:59:27 2008 -0500
31697
31698     Allow use of ARCH=powerpc when building
31699
31700     The linux kernel is now mostly ARCH=powerpc, so to make life easier
31701     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
31702
31703     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31704
31705 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
31706 Author: Kyungmin Park <kmpark@infradead.org>
31707 Date:   Mon Mar 31 10:40:54 2008 +0900
31708
31709     Add apollon board MAINTAINERS entry
31710
31711     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31712
31713 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
31714 Author: Kyungmin Park <kmpark@infradead.org>
31715 Date:   Mon Mar 31 10:40:36 2008 +0900
31716
31717     Fix OneNAND read
31718
31719     It should access with 16-bit instead of 8-bit
31720
31721     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
31722
31723     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31724
31725 commit a9da2b41079d230db3a5641625311983f85ce1fb
31726 Author: Kyungmin Park <kmpark@infradead.org>
31727 Date:   Mon Mar 31 10:40:19 2008 +0900
31728
31729     Fix OneNAND erase command
31730
31731     It mis-calculates the block address.
31732     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
31733
31734     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31735
31736 commit 61525f2ffa156665a66908fda47dbf29d65ea579
31737 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
31738 Date:   Mon Mar 31 01:32:15 2008 +0200
31739
31740     Support for LinkStation / KuroBox HD and HG PPC models
31741
31742     This patch is based on the port by Mihai Georgian (see linkstation.c for
31743     Copyright information) and implements support for LinkStation / KuroBox HD
31744     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
31745     the moment, pending network driver fixing.
31746
31747     Notice to users: this is pretty much a barebone port. Support for network
31748     on HG models is already in the U-Boot mainline, but you might also want
31749     patches to switch fan / phy modes depending on the negotiated ethernet
31750     parameters. This patch also doesn't support console switching, booting EM
31751     mode, Buffalo specific ext2 magic number. So, if you want to use any of
31752     those, you need additional patches. Otherwise this patche provides a fully
31753     functional u-boot with a network console on your system.
31754
31755     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31756
31757 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
31758 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31759 Date:   Sun Mar 30 01:22:13 2008 -0500
31760
31761     Add CONFIG_MII_INIT support to related boards
31762
31763     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
31764     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
31765     that use mii_init() in cmd_init.c.
31766
31767     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31768     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31769
31770 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
31771 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31772 Date:   Sun Mar 30 01:19:06 2008 -0500
31773
31774     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
31775
31776     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
31777     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
31778
31779     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31780
31781 commit e99ccb488181d012248c6be30b2093e950319fc5
31782 Author: Kumar Gala <galak@kernel.crashing.org>
31783 Date:   Thu Mar 27 11:46:38 2008 -0500
31784
31785     Introduce phys_size_t and move phys_addr_t into asm/types.h
31786
31787     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
31788     that have larger physical addresses like 44x, 85xx, and 86xx.
31789
31790     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31791
31792 commit 20a14a42a25f72e379f38460b8a8484667536795
31793 Author: Andy Fleming <afleming@freescale.com>
31794 Date:   Wed Apr 2 16:19:07 2008 -0500
31795
31796     Rename include/md5.h to include/u-boot/md5.h
31797
31798     Some systems have md5.h installed in /usr/include/. This isn't the
31799     desired file (we want the one in include/md5.h). This will avoid the
31800     conflict. This fixes the host tools building problem by creating a new
31801     directory for U-Boot specific header files.
31802
31803     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
31804     Denk]
31805
31806     Signed-off-by: Wolfgang Denk <wd@denx.de>
31807     Signed-off-by: Andy Fleming <afleming@freescale.com>
31808     Acked-by: Timur Tabi <timur@freescale.com>
31809
31810 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
31811 Author: Dave Liu <r63238@freescale.com>
31812 Date:   Thu Mar 27 18:51:17 2008 +0800
31813
31814     drivers: code clean up
31815
31816     Signed-off-by: Dave Liu <daveliu@freescale.com>
31817
31818 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
31819 Author: Dave Liu <r63238@freescale.com>
31820 Date:   Thu Mar 27 18:50:41 2008 +0800
31821
31822     drivers: clean up the ata_piix.h
31823
31824     Signed-off-by: Dave Liu <daveliu@freescale.com>
31825
31826 commit e8f7ba404f1409606962815ecc955a06984b08b3
31827 Author: Dave Liu <r63238@freescale.com>
31828 Date:   Thu Mar 27 18:49:56 2008 +0800
31829
31830     doc: english polishing for README.sata
31831
31832     according to gvb's suggestion, polishing for the doc.
31833
31834     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
31835     Signed-off-by: Dave Liu <daveliu@freescale.com>
31836
31837 commit 3e3f766a5274d204780460e1879723b565296d34
31838 Author: Kumar Gala <galak@kernel.crashing.org>
31839 Date:   Wed Mar 26 18:53:28 2008 -0500
31840
31841     Fix warnings introduced by I2C bus speed setting patch
31842
31843     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31844
31845 commit 3c735e7437150e8615f26930c7819db85634276d
31846 Author: eran liberty <eran.liberty@gmail.com>
31847 Date:   Thu Mar 27 00:50:49 2008 +0100
31848
31849     Altera Stratix II support
31850
31851     Adds Support for Altera's Stratix II.
31852
31853     Within your board specific init file you will have to call
31854
31855     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
31856     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
31857
31858     Altera_desc* contines (for example):
31859         {
31860          Altera_StratixII,      /* part type */
31861          passive_serial,        /* interface type */
31862          1,                     /* bytes of data part can accept */
31863          (void *)(&funcs),      /* interface function table */
31864          0L,                    /* base interface address */
31865          0                      /* implementation specific cookie */
31866          }
31867
31868     funcs is the interface. It is of type altera_board_specific_func.
31869     It looks like this:
31870     altera_board_specific_func func = {
31871         pre_fn,
31872         config_fn,
31873         status_fn,
31874         done_fn,
31875         clk_fn,
31876         data_fn,
31877         abort_fn,
31878         post_fn,
31879     };
31880
31881     you will have to implement these functions, which is usually bit
31882     banging some gpio.
31883
31884     Signed-off-by: Eran Liberty <liberty@extricom.com>
31885
31886 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
31887 Author: Wolfgang Denk <wd@denx.de>
31888 Date:   Sun Apr 13 14:32:54 2008 -0700
31889
31890     Update CHANGELOG
31891
31892     Signed-off-by: Wolfgang Denk <wd@denx.de>
31893
31894 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
31895 Author: Sascha Hauer <s.hauer@pengutronix.de>
31896 Date:   Wed Mar 26 20:41:17 2008 +0100
31897
31898     Phytec Phycore-i.MX31 support
31899
31900     This patch adds support for the Phytec Phycore-i.MX31 board
31901
31902     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31903     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31904
31905 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
31906 Author: Sascha Hauer <s.hauer@pengutronix.de>
31907 Date:   Wed Mar 26 20:41:09 2008 +0100
31908
31909     mx31 litekit support
31910
31911     This patch adds support for the mx31 litekit board
31912
31913     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31914     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31915
31916 commit cdace0661208754a53019ea0dc7b803a040e0939
31917 Author: Sascha Hauer <s.hauer@pengutronix.de>
31918 Date:   Wed Mar 26 20:40:49 2008 +0100
31919
31920     add an i2c driver for mx31
31921
31922     This patch adds an i2c driver for Freescale i.MX processors
31923
31924     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31925     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31926
31927 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
31928 Author: Sascha Hauer <s.hauer@pengutronix.de>
31929 Date:   Wed Mar 26 20:40:42 2008 +0100
31930
31931     core support for Freescale mx31
31932
31933     This patch adds the core support for Freescale mx31
31934
31935     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31936     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31937
31938 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
31939 Author: Wolfgang Denk <wd@denx.de>
31940 Date:   Sun Apr 13 14:19:23 2008 -0700
31941
31942     Fix compile error
31943
31944     ...as suggested by Peter Pearse
31945
31946     Signed-off-by: Wolfgang Denk <wd@denx.de>
31947
31948 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
31949 Author: Sascha Hauer <s.hauer@pengutronix.de>
31950 Date:   Wed Mar 26 20:40:36 2008 +0100
31951
31952     Separate omap24xx specific code from arm1136
31953
31954     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
31955     to cpu/arm1136/omap24xx.
31956
31957     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
31958     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31959
31960 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
31961 Author: Mike Frysinger <vapier@gentoo.org>
31962 Date:   Tue Jan 29 18:21:05 2008 -0500
31963
31964     disable caches before booting an app for Blackfin apps
31965
31966     It isn't generally save to execute applications outside of U-Boot with caches
31967     enabled due to the way the Blackfin processor handles caches (requires
31968     software assistance).  This patch disables caches before booting an ELF or
31969     just booting raw code.  The previous discussion on the patch was that we
31970     wanted to use weaks instead, but that proved to not be feasible when multiple
31971     symbols are involved, which puts us back at the ifdef solution.  I've
31972     minimized the ugliness by moving the setup step outside of the main function.
31973
31974     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31975
31976 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
31977 Author: Wolfgang Denk <wd@denx.de>
31978 Date:   Sun Apr 13 10:03:54 2008 -0700
31979
31980     ppc: Get rid of unused machine type definitions
31981
31982     Signed-off-by: Wolfgang Denk <wd@denx.de>
31983
31984 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
31985 Author: Wolfgang Denk <wd@denx.de>
31986 Date:   Sun Apr 13 09:59:26 2008 -0700
31987
31988     Coding Style cleanup; update CHANGELOG
31989
31990     Signed-off-by: Wolfgang Denk <wd@denx.de>
31991
31992 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
31993 Author: Larry Johnson <lrj@acm.org>
31994 Date:   Thu Feb 21 13:58:11 2008 -0500
31995
31996     LM73 bug fix for negative temperatures and cleanup
31997
31998     When the LM73 temperature sensor measures a temperature below 0 C, the
31999     current driver does not perform sign extension, so the result returned is
32000     512 C too high.  This patch fixes the problem, and does general cleanup
32001     of the code.
32002
32003     Signed-off-by: Larry Johnson <lrj@acm.org>
32004
32005 commit 96ef831f713289afba19da0c8f905e99da2b23e0
32006 Author: Guennadi Liakhovetski <lg@denx.de>
32007 Date:   Thu Apr 3 13:36:02 2008 +0200
32008
32009     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
32010
32011     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
32012     series require different addresses for buffered write commands. Define a
32013     configuration option to support buffered writes on those chips. A more
32014     elegant solution would be to automatically detect those chips by parsing
32015     their CFI records, but that would require introduction of a fixup table
32016     into the cfi_flash driver.
32017
32018     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32019
32020 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
32021 Author: Lee Nipper <lee.nipper@freescale.com>
32022 Date:   Thu Apr 10 09:35:06 2008 -0500
32023
32024     mpc83xx: Update DIMM data bus width test to support 40-bit width
32025
32026     32-bit wide ECC memory modules report 40-bit width.
32027     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
32028
32029     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
32030     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32031
32032 commit 5fb5a689d822ca61e814bd523fc930af335242fa
32033 Author: Dave Liu <r63238@freescale.com>
32034 Date:   Mon Mar 31 17:05:12 2008 +0800
32035
32036     mpc83xx: Fix the bug of serdes initialization
32037
32038     Currently the serdes will not be initializated due to the
32039     partid's error.
32040
32041     Signed-off-by: Dave Liu <daveliu@freescale.com>
32042     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32043
32044 commit 2000784818f043db7ca60e2846a72d097766b894
32045 Author: Dave Liu <r63238@freescale.com>
32046 Date:   Thu Apr 3 16:28:29 2008 +0800
32047
32048     mpc83xx: Fix the SATA clock setting of 837x targets
32049
32050     Currently the SATA controller clock is configured as CSB clock,
32051     usually the CSB clock is 400/333/266MHz.
32052
32053     However, The SATA IP block is only guaranteed to operate up to
32054     200 MHz as stated in the HW spec.
32055
32056     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
32057
32058     This patch makes the SATA clock as half of CSB clock.
32059
32060     Signed-off-by: Dave Liu <daveliu@freescale.com>
32061     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32062
32063 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
32064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32065 Date:   Wed Apr 2 13:41:21 2008 +0200
32066
32067     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
32068
32069     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32070     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32071
32072 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
32073 Author: Kumar Gala <galak@kernel.crashing.org>
32074 Date:   Wed Apr 9 04:20:57 2008 -0500
32075
32076     85xx: Fix detection of MP cpu spin up
32077
32078     We were looking at the wrong memory offset to determine of a secondary
32079     cpu had been spun up or not.  Also added a warning message if the
32080     all the secondary cpus we expect don't spin up.
32081
32082     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32083
32084 commit f3e04bdc3f360c66801a9048956e61e41a16edba
32085 Author: Kumar Gala <galak@kernel.crashing.org>
32086 Date:   Tue Apr 8 10:45:50 2008 -0500
32087
32088     85xx: Use SVR_SOC_VER instead of SVR_VER
32089
32090     The recent change introduced by 'Update SVR numbers to expand support'
32091     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
32092     to compare against a particular processor id.
32093
32094     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32095
32096 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
32097 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
32098 Date:   Fri Apr 11 10:00:35 2008 -0400
32099
32100     ppc4xx: Fix power mgt definitions for PPC440
32101
32102     Corrected DCR addresses of PPC440EP power management registers.
32103
32104     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
32105
32106 commit 950a392464e616b4590bc4501be46e2d7d162dea
32107 Author: Wolfgang Denk <wd@denx.de>
32108 Date:   Fri Apr 11 15:11:26 2008 +0200
32109
32110     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
32111
32112     Reverting became necessary after it turned out that the patches in
32113     the u-boot-arm repo were modified, and in some cases corrupted.
32114
32115     This reverts the following commits:
32116
32117         066bebd6353e33af3adefc3404560871699e9961
32118         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
32119         c88ae20580b2b01487b4cdcc8b2a113f551aee36
32120         a147e56f03871bba4f05058d5e04ce7deb010b04
32121         d6674e0e2a6a1f033945f78838566210d3f28c95
32122         8c8463cce44d849e37744749b32d38e1dfb12e50
32123         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
32124         8bf69d81782619187933a605f1a95ee1d069478d
32125         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
32126         a574a73852a527779234e73e17e7597fd8128882
32127         1377b5583a48021d983e1fd565f7d40c89e84d63
32128         1704dc20917b4f71e373e2c888497ee666d40380
32129
32130     Signed-off-by: Wolfgang Denk <wd@denx.de>
32131
32132 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
32133 Author: Stefan Roese <sr@denx.de>
32134 Date:   Fri Apr 11 07:02:29 2008 +0200
32135
32136     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
32137
32138     This patch reworks the default environment on Kilauea/Haleakala. Now
32139     "net_nfs" for exmaple uses the device-tree style booting formerly know
32140     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
32141     new image booting support, which check for image overwriting. So the
32142     addresses needed togeet adjusted.
32143
32144     Signed-off-by: Stefan Roese <sr@denx.de>
32145
32146 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
32147 Author: Stefan Roese <sr@denx.de>
32148 Date:   Wed Apr 9 11:58:02 2008 +0200
32149
32150     ppc4xx: Fix Canyonlands default environment to work with new image support
32151
32152     Since the new image support checks for image overwriting, the default
32153     environment needs to get adjusted to use correct addresses.
32154
32155     Signed-off-by: Stefan Roese <sr@denx.de>
32156
32157 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
32158 Author: Stefan Roese <sr@denx.de>
32159 Date:   Wed Apr 9 11:54:11 2008 +0200
32160
32161     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
32162
32163     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
32164     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
32165     on 4xx systems _start currently cannot be used for this calculation.
32166     So revert back to the original version for now.
32167
32168     Signed-off-by: Stefan Roese <sr@denx.de>
32169
32170 commit f91374f65eae8b42cac329e06ba1c54728278efb
32171 Author: Michal Simek <monstr@monstr.eu>
32172 Date:   Fri Mar 28 12:49:52 2008 +0100
32173
32174     microblaze: Sort microblaze boards in MAKEALL script
32175
32176 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
32177 Author: Michal Simek <monstr@monstr.eu>
32178 Date:   Fri Mar 28 11:58:45 2008 +0100
32179
32180     microblaze: clean microblaze_config.mk
32181
32182     FLAGS are generated by U-BOOT generator.
32183     Board specific FLAGS are in board directory
32184
32185     Signed-off-by: Michal Simek <monstr@monstr.eu>
32186
32187 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
32188 Author: Michal Simek <monstr@monstr.eu>
32189 Date:   Fri Mar 28 12:47:19 2008 +0100
32190
32191     microblaze: xupv2p fix config file for supporting FDT
32192
32193 commit 188dc16b189143573b1ed90e584bf866d75cdd12
32194 Author: Michal Simek <monstr@monstr.eu>
32195 Date:   Fri Mar 28 11:53:02 2008 +0100
32196
32197     microblaze: ml401 fix config file for supporting FDT
32198
32199     Signed-off-by: Michal Simek <monstr@monstr.eu>
32200
32201 commit 4c6a6f02e239236261333759997eeaf86b30b54c
32202 Author: Michal Simek <monstr@monstr.eu>
32203 Date:   Fri Mar 28 11:22:48 2008 +0100
32204
32205     microblaze: ml401 - add ifdef for GPIO
32206
32207     Signed-off-by: Michal Simek <monstr@monstr.eu>
32208
32209 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
32210 Author: Michal Simek <monstr@monstr.eu>
32211 Date:   Fri Mar 28 12:13:03 2008 +0100
32212
32213     microblaze: clean uart16550 and uartlite handling
32214
32215     Signed-off-by: Michal Simek <monstr@monstr.eu>
32216
32217 commit 0b20f250877441460fb79d72192954abe8498834
32218 Author: Michal Simek <monstr@monstr.eu>
32219 Date:   Fri Mar 28 11:08:31 2008 +0100
32220
32221     microblaze: Add Emaclite driver to Makefile
32222
32223     Signed-off-by: Michal Simek <monstr@monstr.eu>
32224
32225 commit 868cde5310f88234b774878e4f06e79df10a88b3
32226 Author: Michal Simek <monstr@monstr.eu>
32227 Date:   Fri Mar 28 11:08:01 2008 +0100
32228
32229     microblaze: Add Emac driver to Makefile
32230
32231     Signed-off-by: Michal Simek <monstr@monstr.eu>
32232
32233 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
32234 Author: Michal Simek <monstr@monstr.eu>
32235 Date:   Fri Mar 28 12:42:29 2008 +0100
32236
32237     microblaze: add Emac ethernet driver
32238
32239 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
32240 Author: Michal Simek <monstr@monstr.eu>
32241 Date:   Fri Mar 28 12:41:56 2008 +0100
32242
32243     microblaze: add Emaclite ethernet driver
32244
32245 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
32246 Author: Michal Simek <monstr@monstr.eu>
32247 Date:   Fri Mar 28 11:04:01 2008 +0100
32248
32249     microblaze: ML401 and XUPV2P remove emac and emaclite reference
32250
32251     Signed-off-by: Michal Simek <monstr@monstr.eu>
32252
32253 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
32254 Author: Michal Simek <monstr@monstr.eu>
32255 Date:   Fri Mar 28 10:59:32 2008 +0100
32256
32257     microblaze: remove old setting for emac driver
32258
32259     Signed-off-by: Michal Simek <monstr@monstr.eu>
32260
32261 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
32262 Author: Michal Simek <monstr@monstr.eu>
32263 Date:   Fri Mar 28 10:58:15 2008 +0100
32264
32265     microblaze: Clean Makefile from ancient emac driver
32266
32267     Signed-off-by: Michal Simek <monstr@monstr.eu>
32268
32269 commit ab68f921d9c741830f721c3d879c13a0c5597183
32270 Author: Daniel Hellstrom <daniel@gaisler.com>
32271 Date:   Fri Mar 28 10:20:43 2008 +0100
32272
32273     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
32274
32275     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32276
32277 commit 6ed8a43a19bb0275501bc286007daafa923552cf
32278 Author: Daniel Hellstrom <daniel@gaisler.com>
32279 Date:   Wed Mar 26 23:38:48 2008 +0100
32280
32281     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.
32282
32283     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32284
32285 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
32286 Author: Daniel Hellstrom <daniel@gaisler.com>
32287 Date:   Wed Mar 26 23:34:47 2008 +0100
32288
32289     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
32290
32291     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32292
32293 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
32294 Author: Daniel Hellstrom <daniel@gaisler.com>
32295 Date:   Fri Mar 28 10:06:52 2008 +0100
32296
32297     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
32298
32299     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32300
32301 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
32302 Author: Daniel Hellstrom <daniel@gaisler.com>
32303 Date:   Wed Mar 26 23:26:48 2008 +0100
32304
32305     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
32306
32307     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32308
32309 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
32310 Author: Daniel Hellstrom <daniel@gaisler.com>
32311 Date:   Fri Mar 28 10:00:33 2008 +0100
32312
32313     SPARC: Added support for SPARC LEON2 SOC Processor.
32314
32315     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32316
32317 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
32318 Author: Daniel Hellstrom <daniel@gaisler.com>
32319 Date:   Wed Mar 26 23:00:38 2008 +0100
32320
32321     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.
32322
32323     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32324
32325 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
32326 Author: Daniel Hellstrom <daniel@gaisler.com>
32327 Date:   Wed Mar 26 22:51:29 2008 +0100
32328
32329     SPARC: Added support for SPARC LEON3 SOC processor.
32330
32331     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32332
32333 commit bf3d8b31169546fcddb4737391e1893fb12d033a
32334 Author: Daniel Hellstrom <daniel@gaisler.com>
32335 Date:   Fri Mar 28 08:29:26 2008 +0100
32336
32337     SPARC: added SPARC support for new uimage in common code.
32338
32339     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32340
32341 commit 00ab32c85405a4fe65fd4128243086210fc90a21
32342 Author: Daniel Hellstrom <daniel@gaisler.com>
32343 Date:   Wed Mar 26 22:36:03 2008 +0100
32344
32345     SPARC: added SPARC board information to the command bdinfo.
32346
32347     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32348
32349 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
32350 Author: Daniel Hellstrom <daniel@gaisler.com>
32351 Date:   Fri Mar 28 09:47:00 2008 +0100
32352
32353     SPARC: Added generic support for SPARC architecture.
32354
32355     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32356
32357 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
32358 Author: Stefan Roese <sr@denx.de>
32359 Date:   Thu Apr 3 14:50:34 2008 +0200
32360
32361     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
32362
32363     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
32364     has 2 RGMII instances and we need to configure the 2nd RGMII instance
32365     for the EMAC2+3 channels.
32366
32367     Signed-off-by: Stefan Roese <sr@denx.de>
32368
32369 commit c2a545ce33b26d80337f80b533828839249fb1c9
32370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32371 Date:   Wed Apr 2 08:03:56 2008 +0200
32372
32373     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
32374
32375     fdt.c: In function 'ft_cpu_setup':
32376     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
32377     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
32378     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
32379     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
32380
32381     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32382
32383 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
32384 Author: Andy Fleming <afleming@freescale.com>
32385 Date:   Mon Mar 31 20:45:56 2008 -0500
32386
32387     Fix fdt set command to conform to dts spec
32388
32389     The fdt set command was treating properties specified as <00> and <0011>
32390     as byte streams, rather than as an array of cells.  As we already have
32391     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
32392     we should use the <> syntax to describe arrays of cells, which are always
32393     32-bits per element.  If we imagine this likely (IMHO) scenario:
32394
32395     > fdt set /ethernet-phy@1 reg <1>
32396
32397     With the old code, this would create a bad fdt, since the reg cell would be
32398     made to be one byte in length.  But the cell must be 4 bytes, so this would
32399     break mysteriously.
32400
32401     Also, the dts spec calls for constants inside the angle brackets (<>)
32402     to conform to C constant standards as they pertain to base.
32403     Take this scenario:
32404
32405     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
32406
32407     The old fdt command would complain that it couldn't parse that.  Or, if you
32408     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
32409     do this:
32410
32411     > fdt set /mydev clock <1f78a40>
32412
32413     Whereas the new code will accept decimal numbers.
32414
32415     While I was in there, I extended the fdt command parser to handle property
32416     strings which are split across multiple arguments:
32417
32418     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
32419     > fdt p /ethernet@f00
32420     ethernet@f00 {
32421         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
32422     };
32423
32424     Lastly, the fdt print code was rearranged slightly to print arrays of cells
32425     if the length of the property is a multiple of 4 bytes, and to not print
32426     leading zeros.
32427
32428     Signed-off-by: Andy Fleming <afleming@freescale.com>
32429
32430 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
32431 Author: Stefan Roese <sr@denx.de>
32432 Date:   Wed Apr 2 08:39:33 2008 +0200
32433
32434     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
32435
32436     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
32437     interface. This usage can be configured with the jumper J6. This patch
32438     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
32439     is installed.
32440
32441     Signed-off-by: Stefan Roese <sr@denx.de>
32442
32443 commit 6fe2946f198481254a6ee9600d7456b8316a4083
32444 Author: Kim Phillips <kim.phillips@freescale.com>
32445 Date:   Fri Mar 28 17:37:49 2008 -0500
32446
32447     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
32448
32449     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
32450     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
32451     started.
32452
32453     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32454
32455 commit b5873f1732b92a25690e1513b90dfb0d644f6697
32456 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32457 Date:   Tue Apr 1 07:30:51 2008 +0200
32458
32459     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
32460
32461     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32462
32463 commit 2d934ea51f276522b532f870a820e844ff480b5b
32464 Author: Tor Krill <tor@excito.com>
32465 Date:   Fri Mar 28 15:29:45 2008 +0100
32466
32467     Add Vitesse 8601 support to TSEC driver
32468
32469     Add phy_info for Vitesse VSC8601.
32470     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
32471
32472     Signed-off-by: Tor Krill <tor@excito.com>
32473     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
32474     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32475
32476 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
32477 Author: Daniel Hellstrom <daniel@gaisler.com>
32478 Date:   Mon Mar 31 14:25:00 2008 +0000
32479
32480     SPARC: added SMC91111 driver in and out macros for LEON processors.
32481
32482     This patch makes SPARC/LEON processors able to read and write
32483     to the SMC91111 chip using the chip external I/O bus of the memory
32484     controller. This patchs defines the standard in and out macros
32485     expected by the SMC9111 driver.
32486
32487     To access that I/O bus one must set up the memory controller
32488     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
32489     up this correctly when the other MCTRL parameters are set up. It
32490     can be set up from the board configuration header file.
32491
32492     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
32493     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32494
32495 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
32496 Author: Stelian Pop <stelian@popies.net>
32497 Date:   Wed Mar 26 18:52:34 2008 +0100
32498
32499     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
32500
32501     Signed-off-by: Stelian Pop <stelian@popies.net>
32502
32503 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
32504 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32505 Date:   Mon Mar 31 21:31:04 2008 +0200
32506
32507     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
32508
32509     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32510
32511 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
32512 Author: Stelian Pop <stelian@popies.net>
32513 Date:   Wed Mar 26 18:52:33 2008 +0100
32514
32515     Add support for AT91SAM9260EK
32516
32517     Support for booting from internal DataFlash, external DataFlash card
32518     or NAND flash is available.
32519
32520     Signed-off-by: Stelian Pop <stelian@popies.net>
32521
32522 commit 1762f13b4aab88b685b1722f17dada247945624b
32523 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32524 Date:   Mon Mar 31 21:20:49 2008 +0200
32525
32526     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
32527
32528     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32529
32530 commit 761712188b353494defb2b644491ff73d0daaa6f
32531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32532 Date:   Mon Mar 31 21:12:17 2008 +0200
32533
32534     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
32535
32536     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32537
32538 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
32539 Author: Stelian Pop <stelian@popies.net>
32540 Date:   Wed Mar 26 20:52:32 2008 +0100
32541
32542     Port AT91CAP9 to the new headers
32543
32544     Adapt the existing AT91CAP9 code to the new headers and APIs.
32545
32546     Signed-off-by: Stelian Pop <stelian@popies.net>
32547
32548 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
32549 Author: Stelian Pop <stelian@popies.net>
32550 Date:   Wed Mar 26 19:52:31 2008 +0100
32551
32552     Finish header files reworking
32553
32554     Replace AT91CAP9.h file with several splitted header files coming
32555     from the Linux kernel.
32556
32557     This is part 2 of the replacement: more header imports and edits.
32558
32559     Signed-off-by: Stelian Pop <stelian@popies.net>
32560
32561 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
32562 Author: Stelian Pop <stelian@popies.net>
32563 Date:   Wed Mar 26 19:52:30 2008 +0100
32564
32565     Import several header files from Linux
32566
32567     Replace AT91CAP9.h file with several splitted header files coming
32568     from the Linux kernel.
32569
32570     This is part 1 of the replacement: pristine header files import.
32571
32572     Signed-off-by: Stelian Pop <stelian@popies.net>
32573
32574 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
32575 Author: Stelian Pop <stelian@popies.net>
32576 Date:   Wed Mar 26 20:52:28 2008 +0100
32577
32578     Move at91cap9 specific files to at91sam9 directory
32579
32580     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
32581     common infrastructure can be used. Let this infrastructure be
32582     named after the AT91SAM9 family, and move the existing AT91CAP9
32583     files to the new place.
32584
32585     Signed-off-by: Stelian Pop <stelian@popies.net>
32586
32587 commit 61106a565870ff503f92b251b94bd7afef889a04
32588 Author: Stelian Pop <stelian@popies.net>
32589 Date:   Wed Mar 26 21:52:27 2008 +0100
32590
32591     Use timer_init() instead of board supplied interrupt_init()
32592
32593     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
32594     the board, so use timer_init() instead of interrupt_init().
32595
32596     Signed-off-by: Stelian Pop <stelian@popies.net>
32597
32598 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
32599 Author: Stelian Pop <stelian@popies.net>
32600 Date:   Wed Mar 26 21:52:36 2008 +0100
32601
32602     Cleanup DataFlash partition handling
32603
32604     DataFlash partition information has become a mess. This patch
32605     defines a single partition scheme for Atmel DataFlashes. This partition
32606     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
32607
32608     Signed-off-by: Stelian Pop <stelian@popies.net>
32609
32610 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
32611 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32612 Date:   Fri Mar 28 08:47:45 2008 -0500
32613
32614     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
32615
32616     When the version_string function in start.S is not 4-byte align,
32617     it will cause the compiler generates "unaligned opcodes detected
32618     in executable segment". This issue affects all ColdFire CPUs.
32619     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
32620     it is not aligned.
32621
32622     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32623     Acked-by: John Rigby <jrigby@freescale.com>
32624
32625 commit bae61eefe15b4d454060a7140e49ae58322be803
32626 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32627 Date:   Tue Mar 25 15:41:15 2008 -0500
32628
32629     ColdFire: Add dspi and serial flash support for MCF5445x
32630
32631     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32632     Acked-by: John Rigby <jrigby@freescale.com>
32633
32634 commit 48ead7a7a922fceaf494e352abfab8216a41b417
32635 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32636 Date:   Tue Mar 18 17:37:01 2008 -0500
32637
32638     ColdFire: Remove R5200 board
32639
32640     This board never went into production
32641
32642     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
32643     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32644     Acked-by: John Rigby <jrigby@freescale.com>
32645
32646 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
32647 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
32648 Date:   Thu Jan 24 14:02:32 2008 -0600
32649
32650     ColdFire: Added M5275EVB support.
32651
32652     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
32653     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32654     Acked-by: John Rigby <jrigby@freescale.com>
32655
32656 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
32657 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
32658 Date:   Mon Feb 4 15:38:20 2008 -0600
32659
32660     ColdFire: Added MCF5275 cpu support.
32661
32662     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
32663     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32664     Acked-by: John Rigby <jrigby@freescale.com>
32665
32666 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
32667 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32668 Date:   Mon Mar 17 12:14:11 2008 -0500
32669
32670     ColdFire: Define bootdelay in configuration file for M52277EVB
32671
32672     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
32673     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32674     Acked-by: John Rigby <jrigby@freescale.com>
32675
32676 commit 77878f16cedee17161ff2336990970fffc6cea35
32677 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32678 Date:   Mon Mar 17 12:09:07 2008 -0500
32679
32680     ColdFire: Fix second memory Chipselect for M5475EVB
32681
32682     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32683     Acked-by: John Rigby <jrigby@freescale.com>
32684
32685 commit 43d60642395a550956cb21d287c8cfa563913d28
32686 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32687 Date:   Thu Mar 13 14:26:32 2008 -0500
32688
32689     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
32690
32691     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32692     Acked-by: John Rigby <jrigby@freescale.com>
32693
32694 commit eb14ebe813a0cb5d47905228da446a5ad692473b
32695 Author: Larry Johnson <lrj@acm.org>
32696 Date:   Sun Mar 30 20:33:04 2008 -0500
32697
32698     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
32699
32700     Signed-off-by: Larry Johnson <lrj@acm.org>
32701
32702 commit 02e3892021112f21067d9ed1d04ae4182725ba52
32703 Author: Stefan Roese <sr@denx.de>
32704 Date:   Mon Mar 31 12:20:48 2008 +0200
32705
32706     ppc4xx: Small whitespace fix of esd patches
32707
32708     Signed-off-by: Stefan Roese <sr@denx.de>
32709
32710 commit 034394abb524785047c815f00dde8cdbdc1593c5
32711 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32712 Date:   Sun Mar 30 18:52:44 2008 +0200
32713
32714     ppc4xx: Cleanup PMC440 board support
32715
32716     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32717
32718 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
32719 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32720 Date:   Sun Mar 30 18:52:06 2008 +0200
32721
32722     ppc4xx: Add ptm configuration variables for PMC440
32723
32724     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
32725     environment variables.
32726
32727     Cleanup pci_target_init.
32728
32729     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32730
32731 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
32732 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32733 Date:   Sun Mar 30 18:01:15 2008 +0200
32734
32735     ppc4xx: Minor updates for DU440 boards
32736
32737     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32738
32739 commit d5bffeb868d6b4d462f558dac43011027b6644b7
32740 Author: Mike Frysinger <vapier@gentoo.org>
32741 Date:   Tue Feb 19 00:54:20 2008 -0500
32742
32743     Blackfin: cleanup and overhaul common board init functions
32744
32745     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32746
32747 commit b86b3416f874358acaf07519e7620cdb2145f75b
32748 Author: Mike Frysinger <vapier@gentoo.org>
32749 Date:   Tue Feb 19 00:50:58 2008 -0500
32750
32751     Blackfin: cleanup lib_blackfin/cache.c
32752
32753     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32754
32755 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
32756 Author: Mike Frysinger <vapier@gentoo.org>
32757 Date:   Sun Mar 30 15:46:13 2008 -0400
32758
32759     Blackfin: unify cpu and boot modes
32760
32761     All of the duplicated code for Blackfin processors and boot modes have been
32762     unified.  After all, the core is the same for all processors, just the
32763     peripheral set differs (which gets handled in the drivers).
32764
32765     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32766
32767 commit 880cc4381ea8360248cddcdf87a64566745a5724
32768 Author: Stelian Pop <stelian@popies.net>
32769 Date:   Wed Mar 26 22:52:35 2008 +0100
32770
32771     Fix CFG_NO_FLASH compilation.
32772
32773     Many Atmel boards have no "real" (NOR) flash on board, and rely only
32774     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
32775     be present in a board configuration file, while still enabling flash
32776     commands like 'flinfo', 'protect', etc.
32777
32778     Signed-off-by: Stelian Pop <stelian@popies.net>
32779
32780 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
32781 Author: Mike Frysinger <vapier@gentoo.org>
32782 Date:   Tue Feb 19 00:58:13 2008 -0500
32783
32784     Blackfin: BF537-stamp: cleanup spi flash driver
32785
32786     This punts the old spi flash driver for a new/generalized one until the
32787     common one can be integrated.
32788
32789     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32790
32791 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
32792 Author: Ben Warren <biggerbadderben@gmail.com>
32793 Date:   Sun Mar 30 11:34:34 2008 -0400
32794
32795     Fix macro typo in common/cmd_mii.c
32796
32797     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
32798     actually applied the wrong patch.
32799
32800     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32801
32802 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
32803 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32804 Date:   Sun Mar 30 16:39:53 2008 +0200
32805
32806     use correct at91rm9200 register name in m501sk board
32807
32808     This fixes a naming bug for at91rm9200 lowlevel init code:
32809     NOR boot flash is on chipselect 0, not chipselect 2.  This
32810     makes code use the register name from chip datasheets.
32811
32812     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32813
32814 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
32815 Author: David Brownell <david-b@pacbell.net>
32816 Date:   Fri Jan 18 12:55:00 2008 -0800
32817
32818     use correct at91rm9200 register name
32819
32820     This fixes a naming bug for at91rm9200 lowlevel init code:
32821     NOR boot flash is on chipselect 0, not chipselect 2.  This
32822     makes code use the register name from chip datasheets.
32823
32824     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
32825
32826 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
32827 Author: David Brownell <david-b@pacbell.net>
32828 Date:   Fri Jan 18 12:45:45 2008 -0800
32829
32830     add missing ARM boards to MAKEALL
32831
32832     Add some missing ARM boards to MAKEALL.  These build correctly,
32833     unlike several of the boards already listed.
32834
32835     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
32836
32837 commit 066bebd6353e33af3adefc3404560871699e9961
32838 Author: Peter Pearse <peter.pearse@arm.com>
32839 Date:   Sun Mar 30 11:34:09 2008 +0100
32840
32841     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
32842     to prevent compilation error.
32843
32844     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
32845
32846 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
32847 Author: Guennadi Liakhovetski <[lg@denx.de]>
32848 Date:   Sun Mar 30 11:32:30 2008 +0100
32849
32850     Support for the MX31ADS evaluation board from Freescale
32851
32852     This patch adds support for the MX31ADS evaluation board from Freescale,
32853     initialization code is copied from RedBoot sources, also provided by Freescale.
32854
32855     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32856
32857 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
32858 Author: Sascha Hauer <s.hauer@pengutronix.de>
32859 Date:   Sun Mar 30 11:32:27 2008 +0100
32860
32861     Phytec Phycore-i.MX31 support
32862
32863     This patch adds support for the Phytec Phycore-i.MX31 board
32864
32865     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32866     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32867
32868 commit a147e56f03871bba4f05058d5e04ce7deb010b04
32869 Author: Sascha Hauer <s.hauer@pengutronix.de>
32870 Date:   Sun Mar 30 11:32:24 2008 +0100
32871
32872     mx31 litekit support
32873
32874     This patch adds support for the mx31 litekit board
32875
32876     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32877     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32878
32879 commit d6674e0e2a6a1f033945f78838566210d3f28c95
32880 Author: Sascha Hauer <s.hauer@pengutronix.de>
32881 Date:   Sun Mar 30 11:32:21 2008 +0100
32882
32883     add SMSC LAN9x1x Network driver
32884
32885     This patch adds a driver for the following smsc network controllers:
32886     LAN9115
32887     LAN9116
32888     LAN9117
32889     LAN9215
32890     LAN9216
32891     LAN9217
32892
32893     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32894     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32895
32896 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
32897 Author: Sascha Hauer <s.hauer@pengutronix.de>
32898 Date:   Sun Mar 30 11:32:16 2008 +0100
32899
32900     add an i2c driver for mx31
32901
32902     This patch adds an i2c driver for Freescale i.MX processors
32903
32904     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32905     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32906
32907 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
32908 Author: Sascha Hauer <s.hauer@pengutronix.de>
32909 Date:   Sun Mar 30 11:30:43 2008 +0100
32910
32911     core support for Freescale mx31
32912
32913     This patch adds the core support for Freescale mx31
32914
32915     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32916     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32917
32918 commit 8bf69d81782619187933a605f1a95ee1d069478d
32919 Author: Sascha Hauer <s.hauer@pengutronix.de>
32920 Date:   Sun Mar 30 11:28:46 2008 +0100
32921
32922     Separate omap24xx specific code from arm1136
32923
32924     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
32925
32926     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32927     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32928
32929 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
32930 Author: Peter Pearse <peter.pearse@arm.com>
32931 Date:   Sun Mar 30 11:23:05 2008 +0100
32932
32933     Add pmdra into MAKEALL
32934
32935     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
32936
32937 commit a574a73852a527779234e73e17e7597fd8128882
32938 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
32939 Date:   Sun Mar 30 11:21:58 2008 +0100
32940
32941     Adds support for the Prodrive PMDRA board, based on a DM6441
32942
32943     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
32944
32945 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
32946 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
32947 Date:   Sun Mar 30 11:11:34 2008 +0100
32948
32949     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
32950
32951     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
32952
32953 commit 1704dc20917b4f71e373e2c888497ee666d40380
32954 Author: Dirk Behme <dirk.behme@gmail.com>
32955 Date:   Sun Mar 30 11:09:01 2008 +0100
32956
32957     - Remove *_masked() functions as noted by Wolfgang
32958     - Adapt register naming to recent TI spec (sprue26, March 2007)
32959     - Fix reset_timer() handling
32960     - As reported by Pieter [1] the overflow fix introduced a
32961     delay of factor 16 (e.g 2 seconds became 32). While the
32962     overflow fix is basically okay, it missed to divide udelay by
32963     16, too. Fix this.
32964     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
32965     - Remove software division of timer count value (DIV(x)
32966     macro) and do it in hardware (TIM_CLK_DIV).
32967     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
32968     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
32969     the hints & testing!
32970
32971     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
32972
32973     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
32974
32975 commit ac3315c26e143c31680750c9c13f027efbcc887e
32976 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
32977 Date:   Thu Mar 6 16:45:44 2008 +0100
32978
32979     new PHY @ e1000 - 2nd try
32980
32981     Add 82541ER device with latest integrated IGP2 PHY.
32982     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
32983
32984     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
32985     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32986
32987 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
32988 Author: Daniel Hellstrom <daniel@gaisler.com>
32989 Date:   Fri Mar 28 20:22:53 2008 +0100
32990
32991     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
32992
32993     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
32994     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
32995     available at www.gaisler.com.
32996
32997     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
32998     offloading etc.) can be determined by a bit in the control register.
32999     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
33000
33001     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33002     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33003
33004 commit 233a8bcd94997f3f345833a3b82e836222f2a206
33005 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
33006 Date:   Mon Mar 17 17:08:22 2008 -0500
33007
33008     Add CONFIG_MII_INIT in cmd_mii.c
33009
33010     Provide common configuration in do_mii() to execute mii_init()
33011     for all cpu architectures
33012
33013     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33014     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33015
33016 commit f605479de2deb11e834f31dfdb0af107c86aced6
33017 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
33018 Date:   Mon Mar 17 17:08:16 2008 -0500
33019
33020     ColdFire: Fix FEC transmit issue for MCF5275
33021
33022     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
33023     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33024
33025 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
33026 Author: Aras Vaichas <arasv@magtech.com.au>
33027 Date:   Wed Mar 26 09:43:57 2008 +1100
33028
33029     DHCP request fix for Windows Server 2003
33030
33031     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
33032     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
33033     interoperability problems with Windows Server 200x DHCP server when U-Boot
33034     client responds too fast for server to handle.
33035
33036     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
33037     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33038
33039 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
33040 Author: Daniel Hellstrom <daniel@gaisler.com>
33041 Date:   Fri Mar 28 20:40:19 2008 +0100
33042
33043     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
33044
33045     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
33046     SPARC CPUs implement flash_read64 which calls __raw_readq.
33047
33048     For current SPARC architectures (LEON2 and LEON3) each read from the
33049     FLASH must lead to a cache miss. This is because FLASH can not be set
33050     non-cacheable since program code resides there, and alternatively disabling
33051     cache is poor from performance view, or doing a cache flush between each
33052     read is even poorer.
33053
33054     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
33055     load alternative space, the alternative space number (ASI) is processor
33056     implementation spcific and can be found by including <asm/processor.h>.
33057
33058     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
33059
33060 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
33061 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33062 Date:   Fri Mar 28 15:41:25 2008 +0100
33063
33064     Make MPC83xx one step closer to full relocation.
33065
33066     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
33067     and use GOT relative reference.
33068
33069     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33070     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33071
33072 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
33073 Author: Michael Barkowski <michael.barkowski@freescale.com>
33074 Date:   Thu Mar 27 14:34:43 2008 -0400
33075
33076     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
33077
33078     This patch fixes eeprom page size so that you can now write more than
33079     64 bytes at a time.
33080
33081     It also makes the board take MAC addresses, if found, from EEPROM.
33082
33083     User should place up to 4 addresses at offset 0x7f00, for
33084     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
33085     four six-byte values should have it's CRC at the end.  crc32 and
33086     eeprom commands can be used to accomplish this.
33087
33088     If CRC fails, MAC addresses come from the environment.  If CRC
33089     succeeds, the environment is overwritten at startup.
33090
33091     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33092     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33093
33094 commit 8f325cff31f6e745e6540014b131b9a97f61944c
33095 Author: Michael Barkowski <michael.barkowski@freescale.com>
33096 Date:   Fri Mar 28 15:15:38 2008 -0400
33097
33098     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
33099
33100     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
33101     controller on the PCI bus in Linux on the MPC8323ERDB.
33102
33103     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
33104     config file.
33105
33106     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33107     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33108
33109 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
33110 Author: Kim Phillips <kim.phillips@freescale.com>
33111 Date:   Fri Mar 28 10:19:07 2008 -0500
33112
33113     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
33114
33115     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
33116     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
33117     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
33118     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
33119     convenience macros.
33120
33121     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33122
33123 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
33124 Author: Kim Phillips <kim.phillips@freescale.com>
33125 Date:   Fri Mar 28 10:18:53 2008 -0500
33126
33127     mpc83xx: display ddr frequency in board_add_ram_info banner
33128
33129     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33130
33131 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
33132 Author: Kim Phillips <kim.phillips@freescale.com>
33133 Date:   Fri Mar 28 10:18:40 2008 -0500
33134
33135     mpc83xx: unreinvent mem_clk
33136
33137     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
33138     mem_*_clk for consistency's sake.
33139
33140     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33141
33142 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
33143 Author: Kim Phillips <kim.phillips@freescale.com>
33144 Date:   Fri Mar 28 14:31:23 2008 -0500
33145
33146     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
33147
33148     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33149
33150 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
33151 Author: Dave Liu <r63238@freescale.com>
33152 Date:   Wed Mar 26 22:57:19 2008 +0800
33153
33154     mpc83xx: enable the SATA interface on mpc837xemds board
33155
33156     Enable the first two SATA interfaces on MPC837xEMDS board,
33157     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
33158
33159     Signed-off-by: Dave Liu <daveliu@freescale.com>
33160     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33161
33162 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
33163 Author: Dave Liu <r63238@freescale.com>
33164 Date:   Wed Mar 26 22:56:36 2008 +0800
33165
33166     mpc83xx: initialize serdes for MPC837xEMDS boards
33167
33168     This patch is stolen from Anton Vorontsov's patch
33169     for mpc837xerdb boards.
33170
33171     The reference clk and xcorevdd voltage of serdes1/2
33172     is same between mpc837xemds and mpc837xerdb.
33173
33174     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
33175     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
33176     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
33177
33178     Signed-off-by: Dave Liu <daveliu@freescale.com>
33179     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33180
33181 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
33182 Author: Stefan Roese <sr@denx.de>
33183 Date:   Fri Mar 28 14:09:04 2008 +0100
33184
33185     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
33186
33187     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
33188     interface. This usage can be configured with the jumper J6. This patch
33189     displays the current configuration upon bootup and changes the PCIe
33190     init loop, to only initialize the availabel PCIe slots.
33191
33192     Signed-off-by: Stefan Roese <sr@denx.de>
33193
33194 commit 90447ecbbac8572457b6d8903073ac3f120995ba
33195 Author: Tor Krill <tor@excito.com>
33196 Date:   Fri Mar 28 11:29:10 2008 +0100
33197
33198     MTD/CFI: Add support for 16bit legacy AMD flash
33199
33200     Add entry for 512Kx16 AMD flash to jedec_table.
33201     Read out 16bit device id if chipwidth is 16bit.
33202     Fixed coding style after Stefans feedback
33203
33204     Signed-off-by: Tor Krill <tor@excito.com>
33205
33206 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
33207 Author: Stefan Roese <sr@denx.de>
33208 Date:   Fri Mar 28 11:02:53 2008 +0100
33209
33210     ppc: Small change to CFG_MEM_TOP_HIDE description
33211
33212     Signed-off-by: Stefan Roese <sr@denx.de>
33213
33214 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
33215 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33216 Date:   Thu Mar 27 15:44:12 2008 +0900
33217
33218     sh: Add support stat structure and stat.h
33219
33220     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33221
33222 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
33223 Author: Mark Jonas <toertel@gmail.com>
33224 Date:   Sat Mar 22 19:27:52 2008 +0100
33225
33226     sh: Removed warning when compiling drivers/serial/serial_sh.c.
33227
33228     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
33229     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33230
33231 commit f309fa38929ffba71230c02330ffa42f4bba6333
33232 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33233 Date:   Wed Mar 12 18:02:57 2008 +0900
33234
33235     sh: Remove disable_ctrlc function from R7780MP
33236
33237     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33238
33239 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
33240 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33241 Date:   Wed Mar 12 17:55:15 2008 +0900
33242
33243     sh: Add maintainer of R7780MP to MAINTAINER file
33244
33245     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
33246
33247     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33248
33249 commit f5e2466f7baa887a7df0c536333eea8231333497
33250 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33251 Date:   Tue Mar 25 17:11:24 2008 +0900
33252
33253     sh: Add support Renesas Solutions R2D plus board
33254
33255     R2D plus is SH reference board used with SH7751R.
33256     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
33257     one PCI bus, VGA, and two Ethernet controller.
33258
33259     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33260
33261 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
33262 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33263 Date:   Wed Mar 12 12:15:29 2008 +0900
33264
33265     sh: Add support SH4 cache control
33266
33267     Add support SH4 cache control and flash_cache function
33268
33269     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33270
33271 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
33272 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33273 Date:   Mon Mar 24 01:53:01 2008 +0900
33274
33275     sh: Add support PCI host driver for SH7751/SH7751R
33276
33277     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33278
33279 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
33280 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33281 Date:   Mon Mar 24 02:11:26 2008 +0900
33282
33283     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
33284
33285     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33286
33287 commit 566933278101c144d75361ea682678a326c1290d
33288 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33289 Date:   Wed Mar 12 12:10:28 2008 +0900
33290
33291     sh: Add support SuperH SH7751/SH7751R
33292
33293     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33294
33295 commit 3313e0e26224fc9a0c445124f3455058c696df84
33296 Author: Mark Jonas <toertel@gmail.com>
33297 Date:   Mon Mar 10 11:37:10 2008 +0100
33298
33299     sh: Added support for SH7720 based board MPR2.
33300
33301     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
33302     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33303
33304 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
33305 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33306 Date:   Thu Mar 6 14:05:53 2008 +0900
33307
33308     sh: Fix receive FIFO level register of SH4A
33309
33310     Receive FIFO level register is different in SH4A.
33311     Because register is different, cannot occasionally receive data.
33312
33313     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33314
33315 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
33316 Author: Yusuke Goda <goda.yusuke@renesas.com>
33317 Date:   Tue Mar 11 12:55:12 2008 +0900
33318
33319     sh: Add support Renesas Solutions R7780MP
33320
33321     Renesas Solutions R7780MP is a reference board on SH7780.
33322     This board has serial, 10/100 base Ethernet deivice, CF slot
33323     and VGA devices. This board can set extension board.
33324     Extension board has 10/100/1000 base Ethernet device, PCI slot,
33325     S-ATA, iDVR slot.
33326
33327     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
33328     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33329
33330 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
33331 Author: Yusuke Goda <goda.yusuke@renesas.com>
33332 Date:   Wed Mar 5 14:30:02 2008 +0900
33333
33334     sh: Add support PCI of SuperH and SH7780
33335
33336     This patch add support PCI of SuperH base code and SH7780 specific code.
33337
33338     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
33339     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33340
33341 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
33342 Author: Yusuke Goda <goda.yusuke@renesas.com>
33343 Date:   Wed Mar 5 14:23:26 2008 +0900
33344
33345     sh: Add support SH7780
33346
33347     SH7780 is CPU of Renesas Technology.
33348     This CPU has
33349      - CPU clock 400MHz
33350      - PCI support
33351      - DDR-SDRAM controller
33352      - etc ...
33353
33354     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
33355     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33356
33357 commit c2042f5952a686c414031309b8f244513bf578f0
33358 Author: goda.yusuke <goda.yusuke@renesas.com>
33359 Date:   Fri Jan 25 20:46:36 2008 +0900
33360
33361     sh: Add support Renesas Solutions Migo-R board
33362
33363     Migo-R is a board based on SH7722 and has may devices.
33364     In this patch, supported SCIF, NOR flash and Ethernet.
33365
33366     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
33367     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33368
33369 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
33370 Author: Bartlomiej Sieka <tur@semihalf.com>
33371 Date:   Thu Mar 27 15:06:40 2008 +0100
33372
33373     Fix host tool build breakage, take two
33374
33375     Revert commit 87c8431f and fix build breakage so that the build continues
33376     to work on FC systems.
33377
33378     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33379
33380 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
33381 Author: Stefan Roese <sr@denx.de>
33382 Date:   Wed Mar 19 09:36:47 2008 +0100
33383
33384     ppc4xx: Enable ECC on LWMON5
33385
33386     Since all ECC related problems seem to be resolved on LWMON5, this patch
33387     now enables ECC support.
33388
33389     We have to write the ECC bytes by zeroing and flushing in smaller
33390     steps, since the whole 256MByte takes too long for the external
33391     watchdog.
33392
33393     Signed-off-by: Stefan Roese <sr@denx.de>
33394
33395 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
33396 Author: Larry Johnson <lrj@acm.org>
33397 Date:   Mon Mar 17 11:10:35 2008 -0500
33398
33399     ppc4xx: Updates to Korat-specific code
33400
33401     This patch contains updates for changes for the Korat PPC440EPx board.
33402     These changes include:
33403
33404     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
33405     described in the new "doc/README.korat" file;
33406
33407     (2) a new memory map for the registers in the board's CPLD;
33408
33409     (3) a revised format for manufacturer's data in serial EEPROM; and
33410
33411     (4) changes to track updates to U-Boot for the Sequoia board.
33412
33413     Signed-off-by: Larry Johnson <lrj@acm.org>
33414
33415 commit f766cdf89b3a2a7634b8c5869f606150e332036c
33416 Author: Markus Brunner <super.firetwister@gmail.com>
33417 Date:   Thu Mar 27 10:46:25 2008 +0100
33418
33419     ppc4xx: PPC405EP Set EMAC noise filter bits
33420
33421     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
33422     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
33423     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
33424
33425     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
33426     Signed-off-by: Stefan Roese <sr@denx.de>
33427
33428 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
33429 Author: Mike Nuss <mike@terascala.com>
33430 Date:   Wed Feb 20 11:54:20 2008 -0500
33431
33432     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
33433
33434     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
33435     after startup to change the speed of the clocks. This patch adds the
33436     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
33437     initialization code will reconfigure the PLL to run the system with a CPU
33438     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
33439     external EEPROM.
33440
33441     Signed-off-by: Mike Nuss <mike@terascala.com>
33442     Acked-by: Stefan Roese <sr@denx.de>
33443
33444 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
33445 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33446 Date:   Thu Mar 27 09:12:40 2008 +0100
33447
33448     new-image: Fix host tool build breakage
33449
33450     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33451
33452 commit 6fb4b640562a10daff0dbe537638d511b5b48650
33453 Author: Stefan Roese <sr@denx.de>
33454 Date:   Thu Mar 27 10:24:03 2008 +0100
33455
33456     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
33457
33458     Signed-off-by: Stefan Roese <sr@denx.de>
33459
33460 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
33461 Author: Stefan Roese <sr@denx.de>
33462 Date:   Wed Mar 19 10:23:43 2008 +0100
33463
33464     ppc4xx: Add fdt support to Prodrive alpr
33465
33466     Since this board will probably be ported to arch/powerpc in the
33467     near future, we add device tree support now. This way we are
33468     "ready" for arch/powerpc from now on.
33469
33470     Signed-off-by: Stefan Roese <sr@denx.de>
33471
33472 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
33473 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
33474 Date:   Mon Mar 17 09:27:56 2008 +0100
33475
33476     ppc4xx: Enable cache support on the ALPR board
33477
33478     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
33479
33480 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
33481 Author: Stefan Roese <sr@denx.de>
33482 Date:   Wed Mar 26 10:14:11 2008 +0100
33483
33484     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
33485
33486     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
33487     memory area will get subtracted from the top (end) of ram and won't get
33488     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
33489     should gets passed the now "corrected" memory size and won't touch it
33490     either. This should work for arch/ppc and arch/powerpc. Only Linux board
33491     ports in arch/powerpc with bootwrapper support, which recalculate the
33492     memory size from the SDRAM controller setup, will have to get fixed
33493     in Linux additionally.
33494
33495     This patch enables this config option on some PPC440EPx boards as a workaround
33496     for the CHIP 11 errata. Here the description from the AMCC documentation:
33497
33498     CHIP_11: End of memory range area restricted access.
33499     Category: 3
33500
33501     Overview:
33502     The 440EPx DDR controller does not acknowledge any
33503     transaction which is determined to be crossing over the
33504     end-of-memory-range boundary, even if the starting address is
33505     within valid memory space. Any such transaction from any PLB4
33506     master will result in a PLB time-out on PLB4 bus.
33507
33508     Impact:
33509     In case of such misaligned bursts, PLB4 masters will not
33510     retrieve any data at all, just the available data up to the
33511     end of memory, especially the 440 CPU. For example, if a CPU
33512     instruction required an operand located in memory within the
33513     last 7 words of memory, the DCU master would burst read 8
33514     words to update the data cache and cross over the
33515     end-of-memory-range boundary. Such a DCU read would not be
33516     answered by the DDR controller, resulting in a PLB4 time-out
33517     and ultimately in a Machine Check interrupt. The data would
33518     be inaccessible to the CPU.
33519
33520     Workaround:
33521     Forbid any application to access the last 256 bytes of DDR
33522     memory. For example, make your operating system believe that
33523     the last 256 bytes of DDR memory are absent. AMCC has a patch
33524     that does this, available for Linux.
33525
33526     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
33527     lwmon5, korat, sequoia
33528
33529     The other remaining 440EPx board were intentionally not included
33530     since it is not clear to me, if they use the end of ram for some
33531     other purpose. This is unclear, since these boards have CONFIG_PRAM
33532     defined and even comments like this:
33533
33534     PMC440.h:
33535     /* esd expects pram at end of physical memory.
33536      * So no logbuffer at the moment.
33537      */
33538
33539     It is strongly recommended to not use the last 256 bytes on those
33540     boards too. Patches from the board maintainers are welcome.
33541
33542     Signed-off-by: Stefan Roese <sr@denx.de>
33543
33544 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
33545 Author: Stefan Roese <sr@denx.de>
33546 Date:   Thu Mar 27 10:09:05 2008 +0100
33547
33548     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
33549
33550     Signed-off-by: Stefan Roese <sr@denx.de>
33551
33552 commit d56a3ce179688cde61073a3690e21703d68fafd7
33553 Author: Stefan Roese <sr@denx.de>
33554 Date:   Tue Mar 25 17:51:13 2008 +0100
33555
33556     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
33557
33558     The routine ft_board_setup() configures the EBC NOR mappings for the
33559     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
33560     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
33561     problem, we need to pass the corrected address here too.
33562
33563     Signed-off-by: Stefan Roese <sr@denx.de>
33564
33565 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
33566 Author: Stefan Roese <sr@denx.de>
33567 Date:   Wed Mar 19 16:35:12 2008 +0100
33568
33569     ppc4xx: Fix compilation warning in 4xx_enet.c
33570
33571     Signed-off-by: Stefan Roese <sr@denx.de>
33572
33573 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
33574 Author: Stefan Roese <sr@denx.de>
33575 Date:   Wed Mar 19 16:20:49 2008 +0100
33576
33577     ppc4xx: Add AMCC Glacier 406GT eval board support
33578
33579     This patch adds support for the AMCC Glacier 460GT eval board.
33580     The main difference to the Canyonlands board are listed here:
33581
33582     - 4 ethernet ports instead of 2
33583     - no SATA port
33584     - no USB port
33585
33586     Currently EMAC2+3 are not working. This will be fixed in a later
33587     release.
33588
33589     Signed-off-by: Stefan Roese <sr@denx.de>
33590
33591 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
33592 Author: Stefan Roese <sr@denx.de>
33593 Date:   Thu Mar 27 08:47:26 2008 +0100
33594
33595     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
33596
33597     Signed-off-by: Stefan Roese <sr@denx.de>
33598
33599 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
33600 Author: Anatolij Gustschin <agust@denx.de>
33601 Date:   Wed Mar 26 21:05:43 2008 +0100
33602
33603     Fix out of tree building issue
33604
33605     Currently U-Boot building in some external directory
33606     doesn't work. This patch tries to fix the problem.
33607
33608     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33609
33610 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
33611 Author: Anatolij Gustschin <agust@denx.de>
33612 Date:   Wed Mar 26 18:13:33 2008 +0100
33613
33614     README: update documentation (availability, links, etc.)
33615
33616     Fix typo in README
33617
33618     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33619
33620 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
33621 Author: Anatolij Gustschin <agust@denx.de>
33622 Date:   Wed Mar 26 17:47:44 2008 +0100
33623
33624     Fix compilation error in cmd_usb.c
33625
33626     This patch fixes compilation error
33627     cmd_usb.c: In function 'do_usb':
33628     cmd_usb.c:552: error: void value not ignored as it ought to be
33629
33630     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33631
33632 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
33633 Author: Timur Tabi <timur@freescale.com>
33634 Date:   Fri Mar 14 17:45:29 2008 -0500
33635
33636     Add support for setting the I2C bus speed in fsl_i2c.c
33637
33638     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
33639     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
33640     but fsl_i2c.c ignores it and uses conservative value when programming the
33641     I2C bus speed.
33642
33643     Signed-off-by: Timur Tabi <timur@freescale.com>
33644     Acked-by: Andy Fleming <afleming@freescale.com>
33645
33646 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
33647 Author: Wolfgang Denk <wd@denx.de>
33648 Date:   Thu Mar 27 00:03:57 2008 +0100
33649
33650     Coding style cleanup, update CHANGELOG
33651
33652     Signed-off-by: Wolfgang Denk <wd@denx.de>
33653
33654 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
33655 Author: Dave Liu <r63238@freescale.com>
33656 Date:   Wed Mar 26 22:55:32 2008 +0800
33657
33658     drivers: add the support for Freescale SATA controller
33659
33660     Add the Freescale on-chip SATA controller driver to u-boot,
33661     The SATA controller is used on the 837x and 8315 targets,
33662     The driver can be used to load kernel, fs and dtb.
33663
33664     The features list:
33665     - 1.5/3 Gbps link speed
33666     - LBA48, LBA28 support
33667     - DMA and FPDMA support
33668     - Two ports support
33669
33670     Signed-off-by: Dave Liu <daveliu@freescale.com>
33671
33672 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
33673 Author: Dave Liu <r63238@freescale.com>
33674 Date:   Wed Mar 26 22:54:44 2008 +0800
33675
33676     ata: add the readme for SATA command line
33677
33678     Signed-off-by: Dave Liu <daveliu@freescale.com>
33679
33680 commit cd54081cd479e542fc399b8a40651ff11a1ad849
33681 Author: Dave Liu <r63238@freescale.com>
33682 Date:   Wed Mar 26 22:53:24 2008 +0800
33683
33684     ata: enable the sata initialize on boot up
33685
33686     Signed-off-by: Dave Liu <daveliu@freescale.com>
33687
33688 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
33689 Author: Dave Liu <r63238@freescale.com>
33690 Date:   Wed Mar 26 22:52:36 2008 +0800
33691
33692     ata: add the fis struct for SATA
33693
33694     Signed-off-by: Dave Liu <daveliu@freescale.com>
33695
33696 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
33697 Author: Dave Liu <r63238@freescale.com>
33698 Date:   Wed Mar 26 22:51:44 2008 +0800
33699
33700     ata: add the libata support
33701
33702     add simple libata support in u-boot
33703
33704     Signed-off-by: Dave Liu <daveliu@freescale.com>
33705
33706 commit 8e9bb43429e50df55fa41932cbe65841ff579220
33707 Author: Dave Liu <r63238@freescale.com>
33708 Date:   Wed Mar 26 22:50:45 2008 +0800
33709
33710     ata: make the ata_piix driver using new SATA framework
33711
33712     original ata_piix driver is using IDE framework, not real
33713     SATA framework. For now, the ata_piix driver is only used
33714     by x86 sc520_cdp board. This patch makes the ata_piix driver
33715     use the new SATA framework, so
33716
33717     - remove the duplicated command stuff
33718     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
33719     - add the CONFIG_CMD_SATA define to sc520_cdp.h
33720
33721     Signed-off-by: Dave Liu <daveliu@freescale.com>
33722
33723 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
33724 Author: Dave Liu <r63238@freescale.com>
33725 Date:   Wed Mar 26 22:49:44 2008 +0800
33726
33727     ata: add the support for SATA framework
33728
33729     - add the SATA framework
33730     - add the SATA command line
33731
33732     Signed-off-by: Dave Liu <daveliu@freescale.com>
33733
33734 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
33735 Author: Dave Liu <r63238@freescale.com>
33736 Date:   Wed Mar 26 22:48:18 2008 +0800
33737
33738     ata: merge the header of ata_piix driver
33739
33740     move the sata.h from include/ to drivers/block/ata_piix.h
33741
33742     Signed-off-by: Dave Liu <daveliu@freescale.com>
33743
33744 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
33745 Author: Dave Liu <r63238@freescale.com>
33746 Date:   Wed Mar 26 22:47:06 2008 +0800
33747
33748     ata: merge the ata_piix driver
33749
33750     move the cmd_sata.c from common/ to drivers/ata_piix.c,
33751     the cmd_sata.c have some part of ata_piix controller drivers.
33752     consolidate the driver to have better framework.
33753
33754     Signed-off-by: Dave Liu <daveliu@freescale.com>
33755
33756 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
33757 Author: Markus Klotzbuecher <mk@denx.de>
33758 Date:   Wed Mar 26 18:26:43 2008 +0100
33759
33760     USB, Storage: fix a bug introduced in commit
33761     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
33762     to only print only information on one storage device, but not for
33763     multiple.
33764
33765     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33766
33767 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
33768 Author: Anatolij Gustschin <agust@denx.de>
33769 Date:   Wed Mar 26 17:47:44 2008 +0100
33770
33771     Fix compilation error in cmd_usb.c
33772
33773     This patch fixes compilation error
33774     cmd_usb.c: In function 'do_usb':
33775     cmd_usb.c:552: error: void value not ignored as it ought to be
33776
33777     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33778     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33779
33780 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
33781 Author: Kumar Gala <galak@kernel.crashing.org>
33782 Date:   Wed Mar 26 08:53:53 2008 -0500
33783
33784     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
33785
33786     Provide a board_lmb_reserve helper function to ensure we reserve
33787     the page of memory we are using for the boot page translation code.
33788
33789     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33790
33791 commit 79679d80021ab095e639e250ca472fe526da02e2
33792 Author: Kumar Gala <galak@kernel.crashing.org>
33793 Date:   Wed Mar 26 08:34:25 2008 -0500
33794
33795     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
33796
33797     The following changes are needed to be inline with ePAPR v0.81:
33798
33799     * r4, r5 and now always set to 0 on boot release
33800     * r7 is used to pass the size of the initial map area (IMA)
33801     * EPAPR_MAGIC value changed for book-e processors
33802     * changes in the spin table layout
33803     * spin table supports a 64-bit physical release address
33804
33805     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33806
33807 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
33808 Author: Jon Loeliger <jdl@freescale.com>
33809 Date:   Wed Mar 19 15:02:07 2008 -0500
33810
33811     FSL: Clean up board/freescale/common/Makefile
33812
33813     Each file that can be built here now follows some
33814     CONFIG_ option so that they are appropriately built
33815     or not, as needed.  And CONFIG_ defines were added
33816     to various board config files to make sure that happens.
33817
33818     The other board/freescale/*/Makefiles no longer need
33819     to reach up and over into ../common to build their
33820     individually needed files any more.
33821
33822     Boards that are CDS specific were renamed with cds_ prefix.
33823
33824     Signed-off-by: Jon Loeliger <jdl@freescale.com>
33825
33826 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
33827 Author: Kumar Gala <galak@kernel.crashing.org>
33828 Date:   Wed Feb 27 22:00:27 2008 -0600
33829
33830     85xx: Fix merge duplication
33831
33832     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
33833
33834     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33835
33836 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
33837 Author: James Yang <James.Yang@freescale.com>
33838 Date:   Tue Feb 12 16:35:07 2008 -0600
33839
33840     85xx: Expand CCSR space with more DDR controller registers.
33841
33842     Signed-off-by: James Yang <James.Yang@freescale.com>
33843     Signed-off-by: Jon Loeliger <jdl@freescale.com>
33844     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33845
33846 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
33847 Author: James Yang <James.Yang@freescale.com>
33848 Date:   Fri Feb 8 18:05:08 2008 -0600
33849
33850     85xx: Speed up get_ddr_freq() and get_bus_freq()
33851
33852     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
33853     called.  However, get_sys_info() recalculates extraneous information when
33854     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
33855     values from global_data instead.
33856
33857     Signed-off-by: James Yang <James.Yang@freescale.com>
33858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33859
33860 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
33861 Author: James Yang <James.Yang@freescale.com>
33862 Date:   Fri Feb 8 16:46:27 2008 -0600
33863
33864     85xx: Show DDR memory data rate in addition to the memory clock frequency.
33865
33866     Show the DDR memory data rate in addition to the memory clock
33867     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
33868     memory clock.
33869
33870     Signed-off-by: James Yang <James.Yang@freescale.com>
33871     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33872
33873 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
33874 Author: James Yang <James.Yang@freescale.com>
33875 Date:   Fri Feb 8 16:44:53 2008 -0600
33876
33877     85xx: get_tbclk() speed up and rounding fix
33878
33879     Speed up get_tbclk() by referencing pre-computed bus clock
33880     frequency value from global data instead of sys_info_t.  Fix
33881     rounding of result to nearest; previously it was rounding
33882     upwards.
33883
33884     Signed-off-by: James Yang <James.Yang@freescale.com>
33885     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33886
33887 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
33888 Author: Andy Fleming <afleming@freescale.com>
33889 Date:   Wed Feb 6 01:19:40 2008 -0600
33890
33891     Update SVR numbers to expand support
33892
33893     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
33894     is used to distinguish certain variants within an SOC family.  To
33895     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
33896     constants to reflect the larger value.  We also add SVR numbers for all
33897     of the current variants.  Finally, to make things neater, rather than
33898     use an enormous switch statement to print out the CPU type, we create
33899     and array of SVR/name pairs (using a macro), and print out the CPU name
33900     that matches the SVR SOC version.
33901
33902     Signed-off-by: Andy Fleming <afleming@freescale.com>
33903
33904 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
33905 Author: Andy Fleming <afleming@freescale.com>
33906 Date:   Wed Feb 6 01:12:57 2008 -0600
33907
33908     Add the Freescale PCI device IDs
33909
33910     Signed-off-by: Andy Fleming <afleming@freescale.com>
33911
33912 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
33913 Author: Kumar Gala <galak@kernel.crashing.org>
33914 Date:   Thu Feb 14 11:04:23 2008 -0600
33915
33916     85xx: Added support for multicore boot mechanism
33917
33918     Added the cpu command that provides a generic mechanism to get status,
33919     reset, and release secondary cores in multicore processors.
33920
33921     Added support for using the ePAPR defined spin-table mechanism on 85xx.
33922
33923     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33924     Signed-off-by: Andy Fleming <afleming@freescale.com>
33925
33926 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
33927 Author: Kumar Gala <galak@kernel.crashing.org>
33928 Date:   Thu Jan 17 16:48:33 2008 -0600
33929
33930     85xx: Added support for multicore boot mechanism
33931
33932     Added the cpu command that provides a generic mechanism to get status,
33933     reset, and release secondary cores in multicore processors.
33934
33935     Added support for using the ePAPR defined spin-table mechanism on 85xx.
33936
33937     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33938
33939 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
33940 Author: Kumar Gala <galak@kernel.crashing.org>
33941 Date:   Wed Jan 30 14:55:14 2008 -0600
33942
33943     85xx: Add the concept of CFG_CCSRBAR_PHYS
33944
33945     When we go to 36-bit physical addresses we need to keep the concept of
33946     the physical CCSRBAR address seperate from the virtual one.
33947
33948     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
33949
33950     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33951
33952 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
33953 Author: Wolfgang Denk <wd@denx.de>
33954 Date:   Wed Mar 26 15:38:47 2008 +0100
33955
33956     Coding style cleanup.
33957
33958     Signed-off-by: Wolfgang Denk <wd@denx.de>
33959
33960 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
33961 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33962 Date:   Wed Mar 26 13:02:13 2008 +0100
33963
33964     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
33965
33966     The default settings for RTC DS1337 keeps the OSC
33967     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
33968     turn it off.
33969
33970     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33971
33972 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
33973 Author: Wolfgang Denk <wd@denx.de>
33974 Date:   Wed Mar 26 11:48:46 2008 +0100
33975
33976     Cleanup coding style, update CHANGELOG
33977
33978     Signed-off-by: Wolfgang Denk <wd@denx.de>
33979
33980 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
33981 Author: Wolfgang Denk <wd@denx.de>
33982 Date:   Wed Mar 26 10:40:12 2008 +0100
33983
33984     README: update documentation (availability, links, etc.)
33985
33986     Signed-off-by: Wolfgang Denk <wd@denx.de>
33987
33988 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
33989 Author: Aras Vaichas <arasv@magtech.com.au>
33990 Date:   Tue Mar 25 12:09:07 2008 +1100
33991
33992     USB Storage, add meaningful return value
33993
33994     This patch changes the "usb storage" command to return success if it
33995     finds a USB storage device, otherwise it returns error.
33996
33997     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33998
33999 commit 18e69a35efbb078403db0c0063986470dad7d082
34000 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34001 Date:   Fri Mar 14 23:20:18 2008 +0300
34002
34003     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
34004
34005     Linux understands "host" (default), "peripheral" and "otg" (broken).
34006     Though, U-Boot doesn't restrict dr_mode variable to these values (think
34007     of renames in future).
34008
34009     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34010     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34011
34012 commit c7604783b236e368f225efb7b3efb418fe20b404
34013 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34014 Date:   Fri Mar 14 23:20:30 2008 +0300
34015
34016     tsec: fix link detection for the RTL8211B PHY
34017
34018     RTL8211B sets link state register after autonegotiation complete,
34019     so with bootdelay=0 RTL8211B will report lack of the link.
34020
34021     To fix this, we should wait for aneg to complete, even if the
34022     link is currently down.
34023
34024     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34025     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34026
34027 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
34028 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34029 Date:   Mon Mar 24 20:47:09 2008 +0300
34030
34031     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
34032
34033     device_type = "soc" is being deprecated, newer device trees will use
34034     "fsl,soc" and/or "fsl,immr" for the soc nodes.
34035
34036     This patch also adds clock-frequency property for soc nodes (the same
34037     value as bus-frequency).
34038
34039     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34040
34041 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
34042 Author: Joe D'Abbraccio <ljd015@freescale.com>
34043 Date:   Mon Mar 24 13:00:59 2008 -0400
34044
34045     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
34046
34047     With the original value of 1/2 clock cycle delay, the system ran relatively
34048     stable except when we run benchmarks that are intensive users of memory.
34049     When I run samba connected disk with a HDBENCH test, the system locks-up
34050     or reboots sporadically.
34051
34052     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
34053
34054 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
34055 Author: Scott Wood <scottwood@freescale.com>
34056 Date:   Mon Mar 24 12:44:13 2008 -0500
34057
34058     mpc83xx: Set PCI I/O bus-address base to zero.
34059
34060     The device trees for these boards describe PCI I/O as starting from
34061     address zero from the device's perspective.
34062
34063     Placing I/O elsewhere may cause problems with certain PCI boards, and may
34064     cause problems with Linux.
34065
34066     Signed-off-by: Scott Wood <scottwood@freescale.com>
34067
34068 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
34069 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34070 Date:   Mon Mar 24 20:47:05 2008 +0300
34071
34072     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
34073
34074     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
34075     This patch fixes "system time drifting" problem.
34076
34077     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34078
34079 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
34080 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34081 Date:   Mon Mar 24 20:47:02 2008 +0300
34082
34083     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
34084
34085     This is needed to update /choosen/linux,stdout-path properly.
34086
34087     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34088
34089 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
34090 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34091 Date:   Mon Mar 24 20:47:00 2008 +0300
34092
34093     mpc83xx: MPC8360E-RDK: add dhcp command
34094
34095     Plus modify environment to use it and remove bootfile env variable,
34096     it is internal and CONFIG_BOOTFILE is used for these purposes.
34097
34098     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34099
34100 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
34101 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34102 Date:   Mon Mar 24 20:46:57 2008 +0300
34103
34104     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
34105
34106     Current DDR setup easily causes memory corruption, this patch fixes it.
34107
34108     Also fix TIMING_CFG0_MRS_CYC definition.
34109
34110     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34111
34112 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
34113 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34114 Date:   Mon Mar 24 20:46:53 2008 +0300
34115
34116     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
34117
34118     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
34119     controller and FHCI (QE USB).
34120
34121     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34122
34123 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
34124 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34125 Date:   Mon Mar 24 20:46:51 2008 +0300
34126
34127     mpc83xx: MPC8360E-RDK: add support for NAND
34128
34129     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34130
34131 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
34132 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34133 Date:   Mon Mar 24 20:46:46 2008 +0300
34134
34135     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
34136
34137     This is needed for BCM PHYs to work on this board.
34138
34139     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34140
34141 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
34142 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34143 Date:   Mon Mar 24 20:46:34 2008 +0300
34144
34145     uec: add support for Broadcom BCM5481 Gigabit PHY
34146
34147     This patch adds basic support for Broadcom BCM5481 PHY.
34148
34149     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
34150     Peter Barada <peterb@logicpd.com>.
34151
34152     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34153
34154 commit 6a600c3a1876bc203445df4f0fd6b12648259666
34155 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34156 Date:   Mon Mar 24 20:46:28 2008 +0300
34157
34158     uec: add support for RGMII_RXID interface mode
34159
34160     PHY drivers will use it to setup software delay between RXD and RXC
34161     signals.
34162
34163     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34164
34165 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
34166 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34167 Date:   Mon Mar 24 20:46:24 2008 +0300
34168
34169     uec: add support for gbit mii status readings
34170
34171     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34172
34173 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
34174 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34175 Date:   Mon Mar 24 17:40:47 2008 +0300
34176
34177     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
34178
34179     This is primarily for the early console support.
34180
34181     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34182
34183 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
34184 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34185 Date:   Mon Mar 24 17:40:43 2008 +0300
34186
34187     83xx: initialize serdes for MPC837XRDB boards
34188
34189     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
34190     On the MPC8378ERDB: 2 PCI-E
34191     On the MPC8379ERDB: 4 SATA
34192
34193     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34194
34195 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
34196 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34197 Date:   Mon Mar 24 17:40:32 2008 +0300
34198
34199     83xx: serdes setup routines
34200
34201     This patch adds few routines to configure serdes on 837x targets.
34202
34203     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34204
34205 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
34206 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34207 Date:   Mon Mar 24 17:40:27 2008 +0300
34208
34209     83xx: split COBJS onto separate lines
34210
34211     ..plus get rid of some #ifdefs in the .c files.
34212
34213     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34214
34215 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
34216 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34217 Date:   Mon Mar 24 17:40:23 2008 +0300
34218
34219     83xx: nand support for MPC837XRDB boards
34220
34221     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34222
34223 commit 82e45a204190593e8613145a928f998fb8c909c4
34224 Author: Jerry Van Baren <gvb.uboot@gmail.com>
34225 Date:   Tue Mar 18 21:44:41 2008 -0400
34226
34227     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
34228
34229     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34230     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34231
34232 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
34233 Author: Michael Barkowski <michael.barkowski@freescale.com>
34234 Date:   Thu Mar 20 13:15:39 2008 -0400
34235
34236     mpc8323erdb: remove RTC and add EEPROM
34237
34238     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
34239
34240     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
34241     Acked-by: Kim Phillips <kim.phillips@freescale.com>
34242
34243 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
34244 Author: Michael Barkowski <michael.barkowski@freescale.com>
34245 Date:   Thu Mar 20 13:15:34 2008 -0400
34246
34247     mpc8323erdb: Improve the system performance
34248
34249     The following changes are based on kernel UCC ethernet performance:
34250
34251     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
34252     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
34253         switch to enable this setting.
34254
34255     The following changes are based on the App Note AN3369 and
34256     verified to improve memory latency using LMbench:
34257
34258     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
34259     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
34260         previously.
34261     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
34262         Twr=15ns, and this was already the setting in DDR_MODE)
34263     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
34264         Trp=15ns)
34265     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
34266         Tras=40ns)
34267     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
34268         Trcd=15ns)
34269     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
34270         Trfc=75ns)
34271     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
34272         on Tfaw=50ns)
34273     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
34274         on CL=3 and WL=2).
34275
34276     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
34277     Acked-by: Kim Phillips <kim.phillips@freescale.com>
34278
34279 commit fc549c871f43933396a5b3e21d897023d4b31b8d
34280 Author: Michael Barkowski <michael.barkowski@freescale.com>
34281 Date:   Thu Mar 20 13:15:28 2008 -0400
34282
34283     mpc8323erdb: use readable DDR config macros
34284
34285     Use available shift/mask macros to define DDR configuration.
34286
34287     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
34288     Acked-by: Kim Phillips <kim.phillips@freescale.com>
34289
34290 commit 89c7784ed90ba50301eec521144f95111e472906
34291 Author: Timur Tabi <timur@freescale.com>
34292 Date:   Fri Feb 8 13:15:55 2008 -0600
34293
34294     83xx: Add Vitesse VSC7385 firmware uploading
34295
34296     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
34297     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
34298     Cleaned up the board header files to make selecting the VSC7385 easier to
34299     control.
34300
34301     Signed-off-by: Timur Tabi <timur@freescale.com>
34302     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34303
34304 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
34305 Author: Timur Tabi <timur@freescale.com>
34306 Date:   Fri Feb 8 13:15:54 2008 -0600
34307
34308     NET: Add Vitesse VSC7385 firmware uploading
34309
34310     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
34311     and other boards.  A small firwmare must be uploaded to its on-board memory
34312     before it can be enabled.  This patch adds the code which uploads firmware
34313     (but not the firmware itself).
34314
34315     Previously, this feature was provided by a U-Boot application that was
34316     made available only on Freescale BSPs.  The VSC7385 firmware must still
34317     be obtained separately, but at least there is no longer a need for a separate
34318     application.
34319
34320     Signed-off-by: Timur Tabi <timur@freescale.com>
34321     Acked-by: Ben Warren <biggerbadderben@gmail.com>
34322
34323 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
34324 Author: Wolfgang Denk <wd@denx.de>
34325 Date:   Wed Mar 26 00:52:10 2008 +0100
34326
34327     Coding Style cleanyp; update CHANGELOG
34328
34329     Signed-off-by: Wolfgang Denk <wd@denx.de>
34330
34331 commit 43ddd9c820fec44816188f53346b464e20b3142d
34332 Author: Jerry Van Baren <gvb.uboot@gmail.com>
34333 Date:   Sat Mar 22 14:23:49 2008 -0400
34334
34335     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
34336
34337     These defines embedded the u-boot env variables and/or the bd_t structure
34338     in the fdt blob.  The conclusion of discussion on the u-boot email list
34339     was that embedding these in the fdt blob is not useful: there are better
34340     ways of passing the data (in fact, the fdt blob itself replaces the
34341     bd_t struct).
34342
34343     The only board that enables these is the stxxtc and they don't appear
34344     to be used by linux.
34345
34346     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34347     Acked-by: Kim Phillips <kim.phillips@freescale.com>
34348
34349 commit 22ed2285743359fd1fe73e411dff914b2256e68f
34350 Author: Stefan Roese <sr@denx.de>
34351 Date:   Mon Mar 17 10:49:25 2008 +0100
34352
34353     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
34354
34355     Signed-off-by: Stefan Roese <sr@denx.de>
34356
34357 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
34358 Author: Kyungmin Park <kmpark@infradead.org>
34359 Date:   Mon Mar 17 08:54:06 2008 +0900
34360
34361     Add Flex-OneNAND booting support
34362
34363     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
34364     using a NOR Flash interface. This on-chip integration enables system designers
34365     to reduce external system logic and use high-density NAND Flash
34366     in applications that would otherwise have to use more NOR components.
34367
34368     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
34369     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
34370     that require low reliability and high density, SLC area of Flex-OneNAND
34371     to store data that need high reliability and high performance. Flex-OneNAND
34372     can let users take advantage of storing these two different types of data
34373     into one chip, which is making Flex-OneNAND more cost- and space-effective.
34374
34375     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
34376
34377 commit c512389cc4a10253249271ff6c887c6dab1f0db2
34378 Author: André Schwarz <andre.schwarz@matrix-vision.de>
34379 Date:   Thu Mar 13 13:50:52 2008 +0100
34380
34381     MPC5200: support setup without FEC
34382
34383     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
34384     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
34385
34386     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34387     Acked-by: Grant Likely <grant.likely@secretlab.ca>
34388
34389 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
34390 Author: Jon Loeliger <jdl@freescale.com>
34391 Date:   Wed Mar 5 18:05:46 2008 -0600
34392
34393     FSL: Move board/mpc8266ads under board/freescale
34394
34395     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34396
34397 commit 7f1d846e5c5754449c286587d099d85246062772
34398 Author: Jon Loeliger <jdl@freescale.com>
34399 Date:   Wed Mar 5 18:05:47 2008 -0600
34400
34401     FSL: Move board/mpc7448hpc2 under board/freescale
34402
34403     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34404
34405 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
34406 Author: Jon Loeliger <jdl@freescale.com>
34407 Date:   Wed Mar 5 18:05:45 2008 -0600
34408
34409     FSL: Move board/mpc8260ads under board/freescale
34410
34411     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34412
34413 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
34414 Author: goda.yusuke <goda.yusuke@renesas.com>
34415 Date:   Wed Mar 5 17:08:33 2008 +0900
34416
34417     net: Add support AX88796L ethernet device
34418
34419     AX88796L is device of NE2000 compatible.
34420     This patch support AX88796L ethernet device.
34421
34422     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34423     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34424
34425 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
34426 Author: Wolfgang Denk <wd@denx.de>
34427 Date:   Tue Mar 25 22:50:41 2008 +0100
34428
34429     ne2000 driver: change #ifdef to Makefile conditional compilation
34430
34431     Signed-off-by: Wolfgang Denk <wd@denx.de>
34432
34433 commit e710185aae90c64d39c2d453e40e58ceefe4f250
34434 Author: goda.yusuke <goda.yusuke@renesas.com>
34435 Date:   Wed Mar 5 17:08:20 2008 +0900
34436
34437     net: Divided code of NE2000 ethernet driver
34438
34439     There are more devices of the NE2000 base.
34440     A present code is difficult for us to support more devices.
34441     To support more NE2000 clone devices, separated the function.
34442
34443     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
34444     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34445
34446 commit 395bce4f59a507a60a475f7ee46bed47de9482df
34447 Author: Mike Frysinger <vapier@gentoo.org>
34448 Date:   Sun Feb 24 23:58:13 2008 -0500
34449
34450     net/Blackfin: move on-chip MAC driver into drivers/net/
34451
34452     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
34453     directory, but it is not board specific, so relocate it to the drivers dir
34454     so that other Blackfin ports can utilize it.
34455
34456     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34457
34458 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
34459 Author: Mike Frysinger <vapier@gentoo.org>
34460 Date:   Sun Feb 24 23:52:35 2008 -0500
34461
34462     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
34463
34464     Since the "ssync" instruction may have hardware anomalies associated with
34465     it, have the smc91111 driver use the SSYNC macro rather than invoking it
34466     directly.  We workaround all the anomalies via this macro.
34467
34468     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34469
34470 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
34471 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
34472 Date:   Sun Feb 17 22:57:47 2008 +0000
34473
34474     8xx: Update OF support on 8xx
34475
34476     This patch does some shifting around of OF support on 8xx.
34477
34478     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
34479
34480 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
34481 Author: Kumar Gala <galak@kernel.crashing.org>
34482 Date:   Fri Feb 15 15:16:18 2008 -0600
34483
34484     ppc: Allow boards to specify how much memory they can map
34485
34486     For historical reasons we limited the stack to 256M because some boards
34487     could only map that much via BATS.  However newer boards are capable of
34488     mapping more memory (for example 85xx is capble of doing up to 2G).
34489
34490     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34491
34492 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
34493 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
34494 Date:   Fri Feb 15 01:05:58 2008 +0000
34495
34496     8xx : Add OF support to Adder875 board port - resubmit
34497
34498     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
34499
34500 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
34501 Author: Kumar Gala <galak@kernel.crashing.org>
34502 Date:   Thu Feb 14 20:44:42 2008 -0600
34503
34504     Add setexpr command
34505
34506     Add a simple expr style command that will set an env variable as the result
34507     of the command.  This allows us to do simple math in shell.  The following
34508     operations are supported: &, |, ^, +, -, *, /.
34509
34510     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34511
34512 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
34513 Author: Jon Loeliger <jdl@freescale.com>
34514 Date:   Wed Mar 5 17:27:48 2008 -0600
34515
34516     FSL: Move board/mpc7448hpc2 under board/freescale
34517
34518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34519
34520 commit 449c703374a8868453425e15da7e2f76221b72e4
34521 Author: Jon Loeliger <jdl@freescale.com>
34522 Date:   Wed Mar 5 17:21:43 2008 -0600
34523
34524     FSL: Move board/mpc8266ads under board/freescale
34525
34526     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34527
34528 commit 5863577989ad689427bb750107e9a75f1c1645d2
34529 Author: Jon Loeliger <jdl@freescale.com>
34530 Date:   Wed Mar 5 16:41:41 2008 -0600
34531
34532     FSL: Move board/mpc8260ads under board/freescale
34533
34534     Signed-off-by: Jon Loeliger <jdl@freescale.com>
34535
34536 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
34537 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34538 Date:   Tue Mar 25 21:30:08 2008 +0900
34539
34540     [MIPS] Move gth2_config from ARM section to MIPS
34541
34542     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34543
34544 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
34545 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34546 Date:   Tue Mar 25 21:30:07 2008 +0900
34547
34548     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
34549
34550     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34551
34552 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
34553 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34554 Date:   Tue Mar 25 21:30:07 2008 +0900
34555
34556     [MIPS] Fix dcache_status()
34557
34558     You can't judge UNCACHED by Config.K0 LSB.
34559
34560     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34561
34562 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
34563 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34564 Date:   Tue Mar 25 21:30:07 2008 +0900
34565
34566     [MIPS] Introduce _machine_restart
34567
34568     Handles machine specific functions by using weak functions.
34569
34570     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34571
34572 commit decaba6f5cf386d569ac3997bebb871b966c6b18
34573 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34574 Date:   Tue Mar 25 21:30:07 2008 +0900
34575
34576     [MIPS] Cleanup CP0 Status initialization
34577
34578     Add setup_c0_status from Linux. For the moment we disable interrupts, set
34579     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
34580     reset-time configuration and will work well across most processors.
34581
34582     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34583
34584 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
34585 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34586 Date:   Tue Mar 25 21:30:07 2008 +0900
34587
34588     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
34589
34590     Without this change, we'll be suffering from deffered WATCH exception
34591     once Status.EXL is cleared. Make sure Cause.WP is cleared.
34592
34593     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34594
34595 commit 26138623230ca2bad3c78e05a65527ea70c8b688
34596 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34597 Date:   Tue Mar 25 21:30:07 2008 +0900
34598
34599     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
34600
34601     Move things to appropriate place.
34602
34603     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34604
34605 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
34606 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34607 Date:   Tue Mar 25 21:30:06 2008 +0900
34608
34609     [MIPS] Implement flush_cache()
34610
34611     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
34612     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
34613     function is used not only in U-Boot specfic programs but also at loading
34614     target binaries.
34615
34616     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34617
34618 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
34619 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34620 Date:   Tue Mar 25 21:30:06 2008 +0900
34621
34622     [MIPS] Fix I-/D-cache initialization loops
34623
34624     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
34625     again per a loop for I-cache initialization. But according to 'See MIPS
34626     Run', we're encouraged to use three separate loops rather than combining
34627     them *for both I- and D-cache*. This patch tries to fix this.
34628
34629     In accordance with fixing above, mips_init_[id]cache are separated from
34630     mips_cache_reset(), and rewrite cache loops are completely rewritten with
34631     useful macros.
34632
34633     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34634
34635 commit 1898840797c7f50799377bd5b285a8a93a82c419
34636 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34637 Date:   Tue Mar 25 21:30:06 2008 +0900
34638
34639     [MIPS] Replace memory clearance code with f_fill64
34640
34641     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
34642
34643     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34644
34645 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
34646 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34647 Date:   Tue Mar 25 21:30:06 2008 +0900
34648
34649     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
34650
34651     This patch replaces the current function definitions with NESTED, LEAF
34652     and END macro. They specify some more additional information about the
34653     function; an alignment of symbol, type of symbol, stack frame usage, etc.
34654     These information explicitly tells the assembler and the debugger about
34655     the types of code we want to generate.
34656
34657     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34658
34659 commit 282223a607c611425fa33f5428f8eae6636972bb
34660 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34661 Date:   Tue Mar 25 11:43:17 2008 +0900
34662
34663     [MIPS] asm headers' updates
34664
34665     Make some asm headers adjusted to the latest Linux kernel.
34666
34667     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34668
34669 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
34670 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34671 Date:   Tue Mar 25 11:39:29 2008 +0900
34672
34673     [MIPS] Request for the 'mips_cache_lock()' removal
34674
34675     The initial intension of having mips_cache_lock() was to use the cache
34676     as memory for temporary stack use so that a C environment can be set up
34677     as early as possible.
34678
34679     But now mips_cache_lock() follow lowlevel_init(). We've already have the
34680     real memory initilaized at this point, therefore we could/should use it.
34681     No reason to lock at all.
34682
34683     Other problems:
34684
34685     Cache locking is not consistent across MIPS implementaions. Some imple-
34686     mentations don't support locking at all. The style of locking varies -
34687     some support per line locking, others per way, etc. Some parts use bits
34688     in status registers instead of cache ops. Current mips_cache_lock() is
34689     not necessarily general-purpose.
34690
34691     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
34692     they are never get unlocked, so the code relies on whatever gets loaded
34693     after U-Boot to re-initialize the cache and clear the locks. We're sup-
34694     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
34695     but leave the situation as it is for a long time.
34696
34697     For these reasons, I proposed the removal of mips_cache_lock() from the
34698     global start-up code.
34699
34700     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
34701     *things have changed*. If he wants the same behavior as before, he needs
34702     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
34703
34704     If we don't have any regression report through several releases, then
34705     we'll remove codes entirely.
34706
34707     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34708     Acked-by: Andrew Dyer <amdyer@gmail.com>
34709
34710 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
34711 Author: Yuri Tikhonov <yur@emcraft.com>
34712 Date:   Mon Mar 24 11:30:54 2008 +0100
34713
34714     lwmon5 SYSMON POST: fix backlight control
34715
34716     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
34717     run on the board, then the SYSMON POST controls the display backlight
34718     (doesn't switch backlight ON if POST FAILED, and does switch the
34719     backlight ON if PASSED).
34720
34721     If not, then the video driver controls the display backlight (just
34722     switch ON the backlight upon initialization).
34723
34724     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34725
34726 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
34727 Author: Yuri Tikhonov <yur@emcraft.com>
34728 Date:   Mon Mar 24 11:29:14 2008 +0100
34729
34730     lwmon5 SYSMON POST: fix handling of negative temperatures
34731
34732     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
34733
34734     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34735
34736 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
34737 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34738 Date:   Fri Mar 7 16:04:25 2008 +0900
34739
34740     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
34741
34742     In current source code, when the device number of PCI is 0, process PCI
34743     bridge without fail. However, when the device number is 0, it is not PCI
34744     always bridge. There are times when device of PCI allocates.
34745
34746     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
34747     use this patch.
34748
34749     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34750     Acked-by: Stefan Roese <sr@denx.de>
34751
34752 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
34753 Author: Yuri Tikhonov <yur@emcraft.com>
34754 Date:   Fri Mar 21 09:18:40 2008 +0100
34755
34756     LWMON5: fix dsPIC POST
34757
34758     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
34759
34760     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
34761
34762 commit 388b82fddc7c05596f3f615f190da0448227dc82
34763 Author: Bartlomiej Sieka <tur@semihalf.com>
34764 Date:   Thu Mar 20 23:23:13 2008 +0100
34765
34766     [new uImage] Enable new uImage support for the pcs440ep board.
34767
34768     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34769
34770 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
34771 Author: Bartlomiej Sieka <tur@semihalf.com>
34772 Date:   Thu Mar 20 23:23:13 2008 +0100
34773
34774     [new uImage] Do not compile new uImage format support by default
34775
34776     Disable default building of new uImage format support in preparation
34777     for merge with the master. Support for new format can be enabled on
34778     a per-board basis, by defining the following in the board's config file:
34779
34780     #define CONFIG_FIT             1
34781     #define CONFIG_OF_LIBFDT       1
34782
34783     This can be optionally defined to give more verbose output:
34784
34785     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
34786
34787     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34788
34789 commit dafaede8a46c7159310239e036c93e31c6374487
34790 Author: Bartlomiej Sieka <tur@semihalf.com>
34791 Date:   Thu Mar 20 23:20:31 2008 +0100
34792
34793     [new uImage] Disable debuging output in preparation for merge with master
34794
34795     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34796
34797 commit fbe7a155027beacebaee9b32e1ada781fe924bca
34798 Author: Bartlomiej Sieka <tur@semihalf.com>
34799 Date:   Thu Mar 20 19:38:45 2008 +0100
34800
34801     [new uImage] Compilation and new uImage handling fixes for imxtract
34802
34803     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
34804     include/config_cmd_default.h. Fix few warnings and handling of new format
34805     images.
34806
34807     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34808
34809 commit 36cc8cbb3379d5166f882641123521735c469f92
34810 Author: Bartlomiej Sieka <tur@semihalf.com>
34811 Date:   Thu Mar 20 23:10:19 2008 +0100
34812
34813     [new uImage] Fix autoscr command used with new uImage format
34814
34815     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34816
34817 commit 43142e817f0597be412e7cbe19413f5532eafa5d
34818 Author: Bartlomiej Sieka <tur@semihalf.com>
34819 Date:   Thu Mar 20 23:10:19 2008 +0100
34820
34821     [new uImage] Fix *.its files location in documentation
34822
34823     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34824
34825 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
34826 Author: Wolfgang Denk <wd@denx.de>
34827 Date:   Thu Mar 20 22:01:38 2008 +0100
34828
34829     lwmon5 POST: remove unreachable code
34830
34831     plus some coding style cleanup
34832
34833     Signed-off-by: Wolfgang Denk <wd@denx.de>
34834
34835 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
34836 Author: Yuri Tikhonov <yur@emcraft.com>
34837 Date:   Thu Mar 20 17:56:04 2008 +0300
34838
34839     LWMON5: POST RTC fix
34840
34841     Modify the RTC API to provide one a status for the time reported by
34842     the rtc_get() function:
34843       0 - a reliable time is guaranteed,
34844     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
34845           and so on).
34846
34847     The RTC chip drivers are responsible for providing this info if the
34848     corresponding chip supports such functionality. If not - always
34849     report that the time is reliable.
34850
34851     The POST RTC test was modified to detect the RTC faults utilizing
34852     this new rtc_get() feature.
34853
34854     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34855
34856 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
34857 Author: Martin Krause <martin.krause@tqs.de>
34858 Date:   Wed Mar 19 14:25:14 2008 +0100
34859
34860     TQM5200B: update MTD partition layout
34861
34862     - insert partition for dtb blob to TQM5200B MTD layout
34863     - set env variables dependent on the configured board
34864       (TQM5200 or TQM5200B)
34865
34866     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34867
34868 commit f0105727d132f56a21fa3ed8b162309cca6cac44
34869 Author: Stefan Roese <sr@denx.de>
34870 Date:   Wed Mar 19 07:09:26 2008 +0100
34871
34872     CFI: Small cleanup for FLASH_SHOW_PROGRESS
34873
34874     With this patch we don't need that many #ifdef's in the code. It moves
34875     the subtraction into the macro and defines a NOP-macro when
34876     CONFIG_FLASH_SHOW_PROGRESS is not defined.
34877
34878     Signed-off-by: Stefan Roese <sr@denx.de>
34879     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
34880
34881 commit 9a042e9ca512beaaa2cb450274313fc477141241
34882 Author: Jerry Van Baren <gvb.uboot@gmail.com>
34883 Date:   Sat Mar 8 13:48:01 2008 -0500
34884
34885     Flash programming progress countdown.
34886
34887     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34888
34889 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
34890 Author: Bartlomiej Sieka <tur@semihalf.com>
34891 Date:   Wed Mar 19 10:00:06 2008 +0100
34892
34893     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
34894
34895     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34896
34897 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
34898 Author: David Gibson <david@gibson.dropbear.id.au>
34899 Date:   Mon Feb 18 18:09:04 2008 +1100
34900
34901     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
34902
34903     Since fdt_node_offset_by_compatible() was converted to the new
34904     fdt_next_node() iterator, a chunk of initialization code became
34905     redundant, but was not removed by oversight.  This patch cleans it up.
34906
34907     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34908
34909 commit d0ccb9b140b472039732de102fc14597eedb14df
34910 Author: David Gibson <david@gibson.dropbear.id.au>
34911 Date:   Mon Feb 18 18:06:31 2008 +1100
34912
34913     libfdt: Trivial cleanup for CHECK_HEADER)
34914
34915     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
34916     However, there are a handful of functions (fdt_move, rw_check_header,
34917     fdt_open_into) from other files which could also use it (currently
34918     they open-code something more-or-less identical).  Therefore, this
34919     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
34920     places.
34921
34922     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34923
34924 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
34925 Author: Kumar Gala <galak@kernel.crashing.org>
34926 Date:   Wed Feb 20 14:32:36 2008 -0600
34927
34928     Fix fdt boardsetup command parsing
34929
34930     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
34931
34932     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34933
34934 commit 804887e6001e2f00bea11431bf34d6d472512cda
34935 Author: Kumar Gala <galak@kernel.crashing.org>
34936 Date:   Fri Feb 15 03:34:36 2008 -0600
34937
34938     Add sub-commands to fdt
34939
34940     fdt header                          - Display header info
34941     fdt bootcpu <id>                    - Set boot cpuid
34942     fdt memory <addr> <size>            - Add/Update memory node
34943     fdt rsvmem print                    - Show current mem reserves
34944     fdt rsvmem add <addr> <size>        - Add a mem reserve
34945     fdt rsvmem delete <index>           - Delete a mem reserves
34946
34947     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34948
34949 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
34950 Author: David Gibson <david@gibson.dropbear.id.au>
34951 Date:   Thu Feb 14 16:50:34 2008 +1100
34952
34953     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
34954
34955     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
34956     node which has NOP tags interspersed with its properties.  In this
34957     case fdt_add_subnode_namelen() will put the new subnode before the
34958     first NOP tag, even if there are properties after it, which will
34959     result in an invalid blob.
34960
34961     This patch fixes the bug, and adds a testcase for it.
34962
34963     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34964
34965 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
34966 Author: David Gibson <david@gibson.dropbear.id.au>
34967 Date:   Tue Feb 12 11:58:31 2008 +1100
34968
34969     libfdt: Add and use a node iteration helper function.
34970
34971     This patch adds an fdt_next_node() function which can be used to
34972     iterate through nodes of the tree while keeping track of depth.  This
34973     function is used to simplify the iteration code in a lot of other
34974     functions, and is also exported for use by library users.
34975
34976     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34977
34978 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
34979 Author: David Gibson <david@gibson.dropbear.id.au>
34980 Date:   Fri Jan 11 14:55:05 2008 +1100
34981
34982     libfdt: Add fdt_set_name() function
34983
34984     This patch adds an fdt_set_name() function to libfdt, mirroring
34985     fdt_get_name().  This is a r/w function which alters the name of a
34986     given device tree node.
34987
34988     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34989
34990 commit 23e20aa6488e6c0622496549861bfdc74108debe
34991 Author: Yuri Tikhonov <yur@pollux.denx.de>
34992 Date:   Tue Mar 18 13:33:30 2008 +0100
34993
34994     lwmon5: Fix register test logic to match the specific GDC h/w.
34995
34996     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
34997     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34998
34999 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
35000 Author: Yuri Tikhonov <yur@pollux.denx.de>
35001 Date:   Tue Mar 18 13:27:57 2008 +0100
35002
35003     Fix backlight in the lwmon5 POST.
35004
35005     Backlight was switched on even when temperature was too low.
35006
35007     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35008     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35009
35010 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
35011 Author: Yuri Tikhonov <yur@pollux.denx.de>
35012 Date:   Wed Feb 6 18:48:36 2008 +0100
35013
35014     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).
35015
35016      To enable this, alternative, configuration the U-Boot board configuration
35017     file for lwmon5 includes the definitions of alternative addresses for header
35018     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
35019
35020      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
35021     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
35022     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
35023
35024     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35025
35026 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
35027 Author: Yuri Tikhonov <yur@pollux.denx.de>
35028 Date:   Mon Feb 4 17:11:53 2008 +0100
35029
35030     Add support for the lwmon5 board reset via GPIO58.
35031
35032     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35033     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35034
35035 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
35036 Author: Yuri Tikhonov <yur@pollux.denx.de>
35037 Date:   Mon Feb 4 17:09:55 2008 +0100
35038
35039     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
35040
35041     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35042     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35043
35044 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
35045 Author: Yuri Tikhonov <yur@pollux.denx.de>
35046 Date:   Mon Feb 4 14:11:03 2008 +0100
35047
35048     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.
35049
35050     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35051     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35052
35053 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
35054 Author: Yuri Tikhonov <yur@pollux.denx.de>
35055 Date:   Mon Feb 4 14:10:42 2008 +0100
35056
35057     The patch adds new POST tests for the Lwmon5 board. These are:
35058
35059     * External Watchdog test;
35060     * dsPIC tests;
35061     * FPGA test;
35062     * GDC test;
35063     * Sysmon tests.
35064
35065     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35066     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35067
35068 commit c2ed33efbfff5767bca236828e021c55fd547b6c
35069 Author: Yuri Tikhonov <yur@pollux.denx.de>
35070 Date:   Mon Feb 4 14:10:01 2008 +0100
35071
35072     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
35073
35074     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35075
35076 commit 3a5d1e7f1309998791702b2a559e3126781746b9
35077 Author: Yuri Tikhonov <yur@pollux.denx.de>
35078 Date:   Tue Mar 18 13:33:30 2008 +0100
35079
35080     lwmon5: Fix register test logic to match the specific GDC h/w.
35081
35082     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35083     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35084
35085 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
35086 Author: Yuri Tikhonov <yur@pollux.denx.de>
35087 Date:   Tue Mar 18 13:27:57 2008 +0100
35088
35089     Fix backlight in the lwmon5 POST.
35090
35091     Backlight was switcehd on even when temperature was too low.
35092
35093     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35094     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35095
35096 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
35097 Author: Yuri Tikhonov <yur@pollux.denx.de>
35098 Date:   Wed Feb 6 18:48:36 2008 +0100
35099
35100      The patch introduces the alternative configuration of the log buffer for
35101     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
35102     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
35103     PPC440EPX_GPT0_COMP5).
35104
35105      To enable this, alternative, configuration the U-Boot board configuration
35106     file for lwmon5 includes the definitions of alternative addresses for header
35107     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
35108
35109      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
35110     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
35111     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
35112
35113     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35114
35115 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
35116 Author: Yuri Tikhonov <yur@pollux.denx.de>
35117 Date:   Mon Feb 4 17:11:53 2008 +0100
35118
35119     Add support for the lwmon5 board reset via GPIO58.
35120
35121     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35122     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35123
35124 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
35125 Author: Yuri Tikhonov <yur@pollux.denx.de>
35126 Date:   Mon Feb 4 17:09:55 2008 +0100
35127
35128     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
35129     Disable external watch-dog for now.
35130
35131     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35132     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35133
35134 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
35135 Author: Yuri Tikhonov <yur@pollux.denx.de>
35136 Date:   Mon Feb 4 14:11:03 2008 +0100
35137
35138     The patch introduces the CRITICAL feature of POST tests. If the test
35139     marked as POST_CRITICAL fails then the alternative, post_critical,
35140     boot-command is used. If this command is not defined then U-Boot
35141     enters into interactive mode.
35142
35143     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35144     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35145
35146 commit 65b20dcefc89618193fa51947968dada91e4c778
35147 Author: Yuri Tikhonov <yur@pollux.denx.de>
35148 Date:   Mon Feb 4 14:10:42 2008 +0100
35149
35150     The patch adds new POST tests for the Lwmon5 board.
35151     These are:
35152
35153     * External Watchdog test;
35154     * dsPIC tests;
35155     * FPGA test;
35156     * GDC test;
35157     * Sysmon tests.
35158
35159     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35160     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
35161
35162 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
35163 Author: Yuri Tikhonov <yur@pollux.denx.de>
35164 Date:   Mon Feb 4 14:10:01 2008 +0100
35165
35166     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
35167
35168     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
35169
35170 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
35171 Author: Wolfgang Denk <wd@denx.de>
35172 Date:   Tue Mar 18 17:35:51 2008 +0100
35173
35174     HMI1001: fix compile problem.
35175
35176     Signed-off-by: Wolfgang Denk <wd@denx.de>
35177
35178 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
35179 Author: Mike Frysinger <vapier@gentoo.org>
35180 Date:   Mon Feb 18 05:32:30 2008 -0500
35181
35182     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
35183
35184     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
35185     for the board specific driver at all.  Just use the common CFI driver.
35186
35187     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35188
35189 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
35190 Author: Mike Frysinger <vapier@gentoo.org>
35191 Date:   Tue Feb 19 00:36:14 2008 -0500
35192
35193     Blackfin: add proper ELF markings to some assembly functions
35194
35195     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35196
35197 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
35198 Author: Mike Frysinger <vapier@gentoo.org>
35199 Date:   Tue Feb 19 00:35:17 2008 -0500
35200
35201     Blackfin: new cplbinfo command for viewing cplb tables
35202
35203     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35204
35205 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
35206 Author: Mike Frysinger <vapier@gentoo.org>
35207 Date:   Mon Feb 18 05:37:51 2008 -0500
35208
35209     Blackfin: update MAINTAINERS list
35210
35211     Add maintainer information for the Blackfin boards.
35212
35213     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35214
35215 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
35216 Author: Mike Frysinger <vapier@gentoo.org>
35217 Date:   Mon Feb 18 05:26:48 2008 -0500
35218
35219     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
35220
35221     Stop tying things to the processor that should be tied to other defines and
35222     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
35223     system to select the -mcpu option.
35224
35225     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35226
35227 commit 86a20fb920bd198105acf7b1191117f566d637ed
35228 Author: Mike Frysinger <vapier@gentoo.org>
35229 Date:   Sat Feb 16 07:40:36 2008 -0500
35230
35231     Blackfin: move bootldr command to common code
35232
35233     This moves the Blackfin-common bootldr command out of the BF537-STAMP
35234     specific board directory and into the common directory so that all Blackfin
35235     boards may utilize it.
35236
35237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35238
35239 commit decbe029b2a9d3333d02c433389b1c821eea96d7
35240 Author: Heiko Schocher <hs@denx.de>
35241 Date:   Fri Mar 14 11:05:20 2008 +0100
35242
35243     mgcoge: update configuration
35244
35245     Fix configuration for mgcoge board
35246
35247     Signed-off-by: Heiko Schocher <hs@denx.de>
35248
35249 commit c136724cda0219c49f1d4b346f00da29b14fdf14
35250 Author: Wolfgang Denk <wd@denx.de>
35251 Date:   Sun Mar 16 01:22:59 2008 +0100
35252
35253     drivers/rtc/Makefile: keep list sorted
35254
35255     Signed-off-by: Wolfgang Denk <wd@denx.de>
35256
35257 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
35258 Author: Tor Krill <tor@excito.com>
35259 Date:   Sat Mar 15 15:40:26 2008 +0100
35260
35261     Add support for Intersil isl1208 RTC
35262
35263     Signed-off-by: Tor Krill <tor@excito.com>
35264
35265 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
35266 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35267 Date:   Sat Mar 15 17:36:41 2008 +0100
35268
35269     cramfs: Fix ifdef
35270
35271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35272
35273 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
35274 Author: Wolfgang Denk <wd@denx.de>
35275 Date:   Sun Mar 16 01:12:58 2008 +0100
35276
35277     Conding style cleanup
35278
35279     Signed-off-by: Wolfgang Denk <wd@denx.de>
35280
35281 commit 41712b4e8c95dff23354bcd620e1f9477160c190
35282 Author: Stefan Roese <sr@denx.de>
35283 Date:   Wed Mar 5 12:31:53 2008 +0100
35284
35285     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
35286
35287     This patch adds USB OHCI support to the Canyonlands board port. It also
35288     enables EXT2 support.
35289
35290     Signed-off-by: Stefan Roese <sr@denx.de>
35291
35292 commit 2596f5b9d353ff3e4387a3325d05740f16958038
35293 Author: Stefan Roese <sr@denx.de>
35294 Date:   Wed Mar 5 12:29:32 2008 +0100
35295
35296     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
35297
35298     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
35299     way a board just needs to define this new option to enable the "force
35300     NoPowerSwitching mode" instead of adding new CPU/architecture defines
35301     to the USB source itself.
35302
35303     This new option will be used first with the new AMCC 460EX Canyonlands
35304     board port, which will be posted in a few days.
35305
35306     This patch also fixes a small compilation problem when DEBUG is enabled.
35307
35308     Signed-off-by: Stefan Roese <sr@denx.de>
35309
35310 commit 71665ebf88408ff2acb762af47989fd4365b321a
35311 Author: Stefan Roese <sr@denx.de>
35312 Date:   Mon Mar 3 17:27:02 2008 +0100
35313
35314     ppc4xx: Add Canyonlands NAND booting support
35315
35316     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
35317     NAND devices. The only bootstrap option for NAND booting is option F for
35318     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
35319     EEPROM needs to be programmed accordingly.
35320
35321     This patch adds basic NAND booting support for the AMCC Canyonlands aval
35322     board and also adds support to the "bootstrap" command, to enable NAND
35323     booting I2C setting.
35324
35325     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
35326
35327     Signed-off-by: Stefan Roese <sr@denx.de>
35328
35329 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
35330 Author: Stefan Roese <sr@denx.de>
35331 Date:   Tue Mar 11 16:53:00 2008 +0100
35332
35333     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
35334
35335     This patch adds support for the AMCC Canyonlands 460EX evaluation
35336     board.
35337
35338     Signed-off-by: Stefan Roese <sr@denx.de>
35339
35340 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
35341 Author: Stefan Roese <sr@denx.de>
35342 Date:   Tue Mar 11 16:52:24 2008 +0100
35343
35344     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
35345
35346     This patch adds support for the AMCC Canyonlands 460EX evaluation
35347     board.
35348
35349     Signed-off-by: Stefan Roese <sr@denx.de>
35350
35351 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
35352 Author: Stefan Roese <sr@denx.de>
35353 Date:   Tue Mar 11 16:51:17 2008 +0100
35354
35355     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
35356
35357     This patch adds support for the AMCC Canyonlands 460EX evaluation
35358     board.
35359
35360     Signed-off-by: Stefan Roese <sr@denx.de>
35361
35362 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
35363 Author: Stefan Roese <sr@denx.de>
35364 Date:   Tue Mar 11 15:11:43 2008 +0100
35365
35366     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
35367
35368     This patch adds basic support for the AMCC 460EX/460GT PPC's.
35369
35370     Signed-off-by: Stefan Roese <sr@denx.de>
35371
35372 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
35373 Author: Stefan Roese <sr@denx.de>
35374 Date:   Tue Mar 11 15:11:18 2008 +0100
35375
35376     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
35377
35378     This patch adds basic support for the AMCC 460EX/460GT PPC's.
35379
35380     Signed-off-by: Stefan Roese <sr@denx.de>
35381
35382 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
35383 Author: Stefan Roese <sr@denx.de>
35384 Date:   Tue Mar 11 15:07:10 2008 +0100
35385
35386     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
35387
35388     This patch adds basic support for the AMCC 460EX/460GT PPC's.
35389
35390     Signed-off-by: Stefan Roese <sr@denx.de>
35391
35392 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
35393 Author: Stefan Roese <sr@denx.de>
35394 Date:   Tue Mar 11 15:05:50 2008 +0100
35395
35396     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
35397
35398     This patch adds basic support for the AMCC 460EX/460GT PPC's.
35399
35400     Signed-off-by: Stefan Roese <sr@denx.de>
35401
35402 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
35403 Author: Stefan Roese <sr@denx.de>
35404 Date:   Tue Mar 11 15:05:26 2008 +0100
35405
35406     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
35407
35408     This patch adds basic support for the AMCC 460EX/460GT PPC's.
35409
35410     Signed-off-by: Stefan Roese <sr@denx.de>
35411
35412 commit 56e410178375d9f20be25fb24e180974f0ae120b
35413 Author: Stefan Roese <sr@denx.de>
35414 Date:   Tue Feb 19 22:07:57 2008 +0100
35415
35416     ppc4xx: interrupt.c reworked
35417
35418     This patch is a rework of the 4xx interrupt handling done while
35419     adding the 460EX/GT support. Interrupts are needed on 4xx for the
35420     EMAC driver.
35421
35422     Signed-off-by: Stefan Roese <sr@denx.de>
35423
35424 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
35425 Author: Stefan Roese <sr@denx.de>
35426 Date:   Tue Feb 19 22:01:57 2008 +0100
35427
35428     ppc4xx: program_tlb now uses 64bit physical addess
35429
35430     This patch changes the physical addess parameter from 32bit to 64bit.
35431     This is needed for 36bit 4xx platforms to access areas located
35432     beyond the 4GB border, like SoC peripherals (EBC etc.).
35433
35434     Signed-off-by: Stefan Roese <sr@denx.de>
35435
35436 commit c3307fa186af85771924c434997089b8104c0a46
35437 Author: Stefan Roese <sr@denx.de>
35438 Date:   Tue Feb 19 21:58:25 2008 +0100
35439
35440     ppc4xx: miiphy.c reworked
35441
35442     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
35443     badly neede some cleanup.
35444
35445     Signed-off-by: Stefan Roese <sr@denx.de>
35446
35447 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
35448 Author: Stefan Roese <sr@denx.de>
35449 Date:   Tue Feb 19 16:21:49 2008 +0100
35450
35451     rtc: Add M41T62 support
35452
35453     This patch add support for the STM M41T62 RTC. It is used and tested
35454     on the AMCC Canyonlands 406EX platform.
35455
35456     Signed-off-by: Stefan Roese <sr@denx.de>
35457
35458 commit 217d383e201adc7f2271145ae345ea5eae2b7170
35459 Author: Niklaus Giger <niklaus.giger@netstal.com>
35460 Date:   Mon Feb 25 18:46:43 2008 +0100
35461
35462     ppc4xx: Add 405GPr based MCU25 board specific files
35463
35464     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35465
35466 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
35467 Author: Niklaus Giger <niklaus.giger@netstal.com>
35468 Date:   Mon Feb 25 18:46:42 2008 +0100
35469
35470     ppc4xx: Add 405GPr based MCU25 board config file
35471
35472     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35473
35474 commit b05f35436b733a240559e77e46bed8439665ecc5
35475 Author: Niklaus Giger <niklaus.giger@netstal.com>
35476 Date:   Mon Feb 25 18:46:41 2008 +0100
35477
35478     ppc4xx: Add 405GPr based MCU25 board. Global files
35479
35480     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35481
35482 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
35483 Author: Niklaus Giger <niklaus.giger@netstal.com>
35484 Date:   Mon Feb 25 18:37:02 2008 +0100
35485
35486     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
35487
35488     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35489
35490 commit a079494853cc2bfeddb26673219db0b4b2b31566
35491 Author: Niklaus Giger <niklaus.giger@netstal.com>
35492 Date:   Mon Feb 25 18:37:01 2008 +0100
35493
35494     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
35495
35496     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
35497     the FLASH_CFI_LEGACY et al. config options.
35498
35499     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35500
35501 commit e4170e5a50c8110f792bc37472833ae669d69951
35502 Author: Stefan Roese <sr@denx.de>
35503 Date:   Tue Mar 11 13:52:25 2008 +0100
35504
35505     ppc4xx: Fix comment in 405EX DDR2 init code
35506
35507     Signed-off-by: Stefan Roese <sr@denx.de>
35508
35509 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
35510 Author: Bartlomiej Sieka <tur@semihalf.com>
35511 Date:   Fri Mar 14 16:22:34 2008 +0100
35512
35513     Add MD5 support to the new uImage format
35514
35515     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35516
35517 commit 0ede0c383530a418cf98be9122371a86573cd0db
35518 Author: Bartlomiej Sieka <tur@semihalf.com>
35519 Date:   Fri Mar 14 16:22:34 2008 +0100
35520
35521     Add the MD5 algorithm
35522
35523     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
35524     calculated using the md5() function -- see include/md5.h for details.
35525
35526     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35527
35528 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
35529 Author: Wolfgang Denk <wd@denx.de>
35530 Date:   Fri Mar 14 16:04:54 2008 +0100
35531
35532     tools/setlocalversion: use a git-describe-ish format
35533
35534     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
35535     where 'nnnnn' is the number of commits since the last tag (i.e.,
35536     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
35537     and to see how much has been changed since the referenced tag.
35538
35539     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
35540
35541     Signed-off-by: Wolfgang Denk <wd@denx.de>
35542
35543 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
35544 Author: Wolfgang Denk <wd@denx.de>
35545 Date:   Thu Mar 13 14:32:03 2008 +0100
35546
35547     HMI1001: add support for MPC5200 Rev. B processors.
35548
35549     Signed-off-by: Wolfgang Denk <wd@denx.de>
35550
35551 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
35552 Author: Wolfgang Denk <wd@denx.de>
35553 Date:   Thu Mar 13 14:29:49 2008 +0100
35554
35555     TQM5200: remove dead code
35556
35557     This board never used a MGT5100 processor.
35558
35559     Signed-off-by: Wolfgang Denk <wd@denx.de>
35560
35561 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
35562 Author: Marian Balakowicz <m8@semihalf.com>
35563 Date:   Wed Mar 12 12:14:15 2008 +0100
35564
35565     [new uImage] Fix build issue on ARM
35566
35567     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
35568
35569     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35570
35571 commit 3310c549a73a949430bfda90876df7552a1dab0c
35572 Author: Marian Balakowicz <m8@semihalf.com>
35573 Date:   Wed Mar 12 12:13:13 2008 +0100
35574
35575     [new uImage] Add new uImage format documentation and examples
35576
35577     Create doc/uImage.FIT documentation directory with the following files:
35578     - command_syntax_extensions.txt : extended command syntax description
35579     - howto.txt                     : short usage howto
35580     - source_file_format.txt        : internal new uImage format description
35581
35582     Add example image source files:
35583     - kernel.its
35584     - kernel_fdt.its
35585     - multi.its
35586
35587     Update README appropriately.
35588
35589     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35590     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35591
35592 commit 1ec73761d2e247078f4520a265d463e8b73391a2
35593 Author: Marian Balakowicz <m8@semihalf.com>
35594 Date:   Wed Mar 12 10:35:52 2008 +0100
35595
35596     [new uImage] Fix definition of common bootm_headers_t fields
35597
35598     verify, autostart and lmb fields are used regardless of CONFIG_FIT
35599     setting, move their definitions to common section.
35600
35601     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35602
35603 commit 1d1cb4270edc6a99276834064069717f9782c491
35604 Author: Marian Balakowicz <m8@semihalf.com>
35605 Date:   Wed Mar 12 10:35:51 2008 +0100
35606
35607     [new uImage] Fix build problems on trab board
35608
35609     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35610
35611 commit f773bea8e11f4a11c388dcee956b2444203e6b65
35612 Author: Marian Balakowicz <m8@semihalf.com>
35613 Date:   Wed Mar 12 10:35:46 2008 +0100
35614
35615     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
35616
35617     Save FIT configuration provied in the first bootm argument and use it
35618     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
35619     arguments are not specified.
35620
35621     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35622
35623 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
35624 Author: Marian Balakowicz <m8@semihalf.com>
35625 Date:   Wed Mar 12 10:33:01 2008 +0100
35626
35627     [new uImage] More verbose kernel image uncompress error message
35628
35629     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35630
35631 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
35632 Author: Marian Balakowicz <m8@semihalf.com>
35633 Date:   Wed Mar 12 10:33:01 2008 +0100
35634
35635     [new uImage] Use show_boot_progress() for new uImage format
35636
35637     This patch allocates a set of show_boot_progress() IDs for new uImage format
35638     and adds show_boot_progress() calls in new uImage format handling code.
35639
35640     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35641
35642 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
35643 Author: Marian Balakowicz <m8@semihalf.com>
35644 Date:   Wed Mar 12 10:33:01 2008 +0100
35645
35646     [new uImage] Add new uImage fromat support to fpga command
35647
35648     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35649
35650 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
35651 Author: Marian Balakowicz <m8@semihalf.com>
35652 Date:   Wed Mar 12 10:33:01 2008 +0100
35653
35654     [new uImage] Add new uImage format handling to other bootm related commands
35655
35656     Updated commands:
35657
35658     docboot  - cmd_doc.c
35659     fdcboot  - cmd_fdc.c
35660     diskboot - cmd_ide.c
35661     nboot    - cmd_nand.c
35662     scsiboot - cmd_scsi.c
35663     usbboot  - cmd_usb.c
35664
35665     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35666
35667 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
35668 Author: Marian Balakowicz <m8@semihalf.com>
35669 Date:   Wed Mar 12 10:33:00 2008 +0100
35670
35671     [new uImage] Add new uImage format support to imgextract command
35672
35673     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35674
35675 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
35676 Author: Marian Balakowicz <m8@semihalf.com>
35677 Date:   Wed Mar 12 10:33:00 2008 +0100
35678
35679     [new uImage] Add new uImage format support to autoscript routine
35680
35681     autoscript() routine is updated to accept second argument, which
35682     is only used for FIT images and provides a FIT subimage unit name.
35683
35684     autoscript() routine callers must now pass two arguments. For
35685     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
35686     variable 'autoscript_uname' is introduced and used as a FIT
35687     subimage unit name source.
35688
35689     autoscript command accepts extended syntax of the addr argument:
35690     addr:<subimg_uname>
35691
35692     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35693
35694 commit cd7c596e9f561dbbc17b717277438aee78cde14f
35695 Author: Marian Balakowicz <m8@semihalf.com>
35696 Date:   Wed Mar 12 10:33:00 2008 +0100
35697
35698     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
35699
35700     This patch updates architecture specific implementations of
35701     do_bootm_linux() adding new uImage format handling for
35702     operations like get kernel entry point address, get kernel
35703     image data start address.
35704
35705     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35706
35707 commit 3dfe110149311425919e6d6a14b561b4207498f1
35708 Author: Marian Balakowicz <m8@semihalf.com>
35709 Date:   Wed Mar 12 10:32:59 2008 +0100
35710
35711     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
35712
35713     This patch adds new node offset fields to struct bootm_headers
35714     and updates bootm_headers processing code to make use of them.
35715     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
35716
35717     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35718
35719 commit bc8ed486b125452ba3bd8344f052f437329150c5
35720 Author: Marian Balakowicz <m8@semihalf.com>
35721 Date:   Wed Mar 12 10:32:53 2008 +0100
35722
35723     [new uImage] ppc: Add new uImage format support to FDT handling routines
35724
35725     Support for new (FIT) format uImages is added to powerpc specific
35726     boot_get_fdt() routine which now recognizes, sanity checks FIT image
35727     and is able to access data sections of the requested component image.
35728
35729     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35730
35731 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
35732 Author: Marian Balakowicz <m8@semihalf.com>
35733 Date:   Wed Mar 12 10:14:57 2008 +0100
35734
35735     [new uImage] Re-enable interrupts for non automatic booting
35736
35737     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
35738     environment variable is not set to 'yes'.
35739
35740     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35741
35742 commit d985c8498c4e47095820da97aa722381d39172c5
35743 Author: Marian Balakowicz <m8@semihalf.com>
35744 Date:   Wed Mar 12 10:14:38 2008 +0100
35745
35746     [new uImage] Remove unnecessary arguments passed to ramdisk routines
35747
35748     boot_get_ramdisk() and image_get_ramdisk() do not need all
35749     cmdtp, flag, argc and argv arguments. Simplify routines definition.
35750
35751     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35752
35753 commit c87796483bc7c2900470dc747c367f602577608d
35754 Author: Marian Balakowicz <m8@semihalf.com>
35755 Date:   Wed Mar 12 10:12:37 2008 +0100
35756
35757     [new uImage] Add new uImage format support for ramdisk handling
35758
35759     This patch updates boot_get_ramdisk() routine adding format
35760     verification and handling for new (FIT) uImages.
35761
35762     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35763
35764 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
35765 Author: Marian Balakowicz <m8@semihalf.com>
35766 Date:   Wed Mar 12 10:01:05 2008 +0100
35767
35768     [new uImage] Add new uImage format support for kernel booting
35769
35770     New format uImages are recognized by the bootm command,
35771     validity of specified kernel component image is checked and
35772     its data section located and used for further processing
35773     (uncompress, load, etc.)
35774
35775     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35776
35777 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
35778 Author: Marian Balakowicz <m8@semihalf.com>
35779 Date:   Tue Mar 11 12:35:20 2008 +0100
35780
35781     [new uImage] Add new uImage format support for imls and iminfo commands
35782
35783     imls and iminfo can now recognize nad print out contents of the new (FIT)
35784     format uImages.
35785
35786     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35787
35788 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
35789 Author: Bartlomiej Sieka <tur@semihalf.com>
35790 Date:   Tue Mar 11 12:34:47 2008 +0100
35791
35792     [new uImage] Add support for new uImage format to mkimage tool
35793
35794     Support for the new uImage format (FIT) is added to mkimage tool.
35795     Commandline syntax is appropriately extended:
35796
35797     mkimage [-D dtc_options] -f fit-image.its fit-image
35798
35799     mkimage (together with dtc) takes fit-image.its and referenced therein
35800     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
35801     final image that can be transferred to the target (e.g., via tftp) and then
35802     booted using the bootm command in U-Boot.
35803
35804     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35805
35806 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
35807 Author: Marian Balakowicz <m8@semihalf.com>
35808 Date:   Mon Mar 10 17:53:49 2008 +0100
35809
35810     [new uImage] Make node unit names const in struct bootm_headers
35811
35812     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35813
35814 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
35815 Author: Marian Balakowicz <m8@semihalf.com>
35816 Date:   Fri Feb 29 21:24:06 2008 +0100
35817
35818     [new uImage] New uImage low-level API
35819
35820     Add FDT-based functions for handling new format component images,
35821     configurations, node operations, property get/set, etc.
35822
35823     fit_        - routines handling global new format uImage operations
35824                   like get/set top level property, process all nodes, etc.
35825     fit_image_  - routines handling component images subnodes
35826     fit_conf_   - routines handling configurations node
35827
35828     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35829     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35830
35831 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
35832 Author: Wolfgang Denk <wd@denx.de>
35833 Date:   Sun Mar 9 16:20:02 2008 +0100
35834
35835     Release v1.3.2
35836
35837     Update CHANGELOG for release.
35838
35839     Signed-off-by: Wolfgang Denk <wd@denx.de>
35840
35841 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
35842 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35843 Date:   Sun Mar 9 14:52:11 2008 +0100
35844
35845     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
35846
35847     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35848     Signed-off-by: Wolfgang Denk <wd@denx.de>
35849
35850 commit db695b78515ddb88a2d4f3357c120345efbf59ec
35851 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35852 Date:   Sun Mar 9 10:44:01 2008 +0100
35853
35854     scb9328: Fix flash warning: type qualifiers ignored on function return type
35855
35856     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35857
35858 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
35859 Author: Wolfgang Denk <wd@denx.de>
35860 Date:   Sun Mar 9 10:50:41 2008 +0100
35861
35862     esd/common/fpga.c: fix indentation.
35863
35864     Signed-off-by: Wolfgang Denk <wd@denx.de>
35865
35866 commit cc3843e36453e2b8db65d7e56de938ba045016a0
35867 Author: Wolfgang Denk <wd@denx.de>
35868 Date:   Sun Mar 9 10:33:31 2008 +0100
35869
35870     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
35871
35872     and get rid of a couple of unneeded casts.
35873
35874     Signed-off-by: Wolfgang Denk <wd@denx.de>
35875
35876 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
35877 Author: Wolfgang Denk <wd@denx.de>
35878 Date:   Sun Mar 9 10:09:53 2008 +0100
35879
35880     esd/common/fpga.c: fix 'assignment of read-only location' error
35881
35882     Signed-off-by: Wolfgang Denk <wd@denx.de>
35883
35884 commit c6fe4dabac066e8758345d249032768496983a3e
35885 Author: Wolfgang Denk <wd@denx.de>
35886 Date:   Sun Mar 9 02:13:19 2008 +0100
35887
35888     Makefile: make build silently again.
35889
35890     Signed-off-by: Wolfgang Denk <wd@denx.de>
35891
35892 commit 76babc86576f092573599334c85ec543fdbc6015
35893 Author: Wolfgang Denk <wd@denx.de>
35894 Date:   Sun Mar 9 02:07:49 2008 +0100
35895
35896     m501sk: Fix out of tree building
35897
35898     Signed-off-by: Wolfgang Denk <wd@denx.de>
35899
35900 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
35901 Author: Wolfgang Denk <wd@denx.de>
35902 Date:   Sun Mar 9 00:06:09 2008 +0100
35903
35904     ADS5121: fix out of tree build
35905
35906     and simplify Makefile a bit.
35907
35908     Signed-off-by: Wolfgang Denk <wd@denx.de>
35909
35910 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
35911 Author: Wolfgang Denk <wd@denx.de>
35912 Date:   Sat Mar 8 22:35:31 2008 +0100
35913
35914     Release v1.3.2
35915
35916     Signed-off-by: Wolfgang Denk <wd@denx.de>
35917
35918 commit 78a90f827df74520e939c794fc7413dace21c4db
35919 Author: Wolfgang Denk <wd@denx.de>
35920 Date:   Sat Mar 8 22:35:04 2008 +0100
35921
35922     Update CHANGELOG
35923
35924     Signed-off-by: Wolfgang Denk <wd@denx.de>
35925
35926 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
35927 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35928 Date:   Sat Mar 8 21:30:04 2008 +0100
35929
35930     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
35931
35932     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35933
35934 commit d75469d48c05795144f4b8ba76addbb4920a7bba
35935 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35936 Date:   Sat Mar 8 09:25:49 2008 +0900
35937
35938     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
35939
35940     When rtl_recv() of rtl8169 is called, OWNbit of status register
35941     is not enable occasionally.
35942     rtl_recv() doesn't work normally when the driver doesn't do
35943     appropriate processing.
35944     This patch fix this problem.
35945
35946     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35947
35948 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
35949 Author: Heiko Schocher <hs@denx.de>
35950 Date:   Fri Mar 7 08:15:28 2008 +0100
35951
35952     mgsuvd: update board configuration
35953
35954     initialize the UPIOx controller.
35955
35956     Signed-off-by: Heiko Schocher <hs@denx.de>
35957
35958 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
35959 Author: Heiko Schocher <hs@denx.de>
35960 Date:   Fri Mar 7 08:13:41 2008 +0100
35961
35962     mgcoge: update board configuration
35963
35964     add support for the config Flash.
35965     initialize the UPIOx controller.
35966
35967     Signed-off-by: Heiko Schocher <hs@denx.de>
35968
35969 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
35970 Author: Kim Phillips <kim.phillips@freescale.com>
35971 Date:   Fri Mar 7 12:27:31 2008 -0600
35972
35973     mpc83xx: make dtb basename file references equal those of linux
35974
35975     the dts file basenames were updated in linux - this helps avoid
35976     inadvertently loading any old dtbs laying around.
35977
35978     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35979
35980 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
35981 Author: Kim Phillips <kim.phillips@freescale.com>
35982 Date:   Wed Feb 27 16:08:22 2008 -0600
35983
35984     net: uec_phy: actually increment the timeout counter
35985
35986     allow u-boot to recover (and, e.g., switch to another interface) in the
35987     case where a PHY does not report autonegotiation is complete within its
35988     two second timeout value.
35989
35990     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35991
35992 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
35993 Author: Markus Brunner <super.firetwister@googlemail.com>
35994 Date:   Wed Mar 5 21:38:12 2008 +0100
35995
35996     fix taihu soft spi_read
35997
35998     The taihu board used gpio_read_out_bit which reads the output register and not
35999     the pin state.
36000
36001     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
36002
36003 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
36004 Author: Stefan Roese <sr@denx.de>
36005 Date:   Fri Mar 7 08:01:43 2008 +0100
36006
36007     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
36008
36009     Signed-off-by: Stefan Roese <sr@denx.de>
36010
36011 commit bd4458cb47abecabd406b1210457be96c69fc49d
36012 Author: Dave Liu <r63238@freescale.com>
36013 Date:   Tue Mar 4 16:59:22 2008 +0800
36014
36015     837xEMDS: Improve the system performance
36016
36017     1. Make the CSB bus pipeline depth as 4, and enable
36018        the repeat mode;
36019     2. Raise the eTSEC emergency priority;
36020     3. Use the highest IP blocks clock.
36021
36022     Signed-off-by: Dave Liu <daveliu@freescale.com>
36023
36024 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
36025 Author: Detlev Zundel <dzu@denx.de>
36026 Date:   Thu Mar 6 16:45:53 2008 +0100
36027
36028     Replace "run load; run update" with conditionalized "run load update".
36029
36030     The latter version stops when "run load" fails for whatever reasons
36031     rendering the combination *a lot* more secure.
36032
36033     Signed-off-by: Detlev Zundel <dzu@denx.de>
36034
36035 commit 6bc113886d7d316df1a4e459bec8baf027518551
36036 Author: Stefan Roese <sr@denx.de>
36037 Date:   Tue Mar 4 17:40:41 2008 +0100
36038
36039     net: Print error message upon net usage when no ethernet-interface is found
36040
36041     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
36042     defined. Then no ethernet interface is available but a simple "tftp"
36043     command will return without any error message which is quite confusing.
36044
36045     Signed-off-by: Stefan Roese <sr@denx.de>
36046
36047 commit a30a549a3553032d809e0356306b62de0b125901
36048 Author: Jon Loeliger <jdl@freescale.com>
36049 Date:   Tue Mar 4 10:03:03 2008 -0600
36050
36051     Remove erroneous or extra spd.h #includers.
36052
36053     Many of the spd.h #includers don't need it,
36054     and wanted to have spd_sdram() declared instead.
36055     Since they didn't get that, some also had open
36056     coded extern declarations of it instead or as well.
36057     Fix it all up by using spd_sdram.h where needed.
36058
36059     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36060
36061 commit a4475386cef14af3fd88f0518b688e755669486d
36062 Author: Wolfgang Denk <wd@denx.de>
36063 Date:   Tue Mar 4 17:41:28 2008 +0100
36064
36065     PCS440EP: fix build problems (redundant #define)
36066
36067     Signed-off-by: Wolfgang Denk <wd@denx.de>
36068
36069 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
36070 Author: Stefan Roese <sr@denx.de>
36071 Date:   Tue Mar 4 17:39:25 2008 +0100
36072
36073     net: Print error message upon net usage when no ethernet-interface is found
36074
36075     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
36076     defined. Then no ethernet interface is available but a simple "tftp"
36077     command will return without any error message which is quite confusing.
36078
36079     Signed-off-by: Stefan Roese <sr@denx.de>
36080
36081 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
36082 Author: Wolfgang Denk <wd@denx.de>
36083 Date:   Tue Mar 4 17:38:50 2008 +0100
36084
36085     W7OLMC/W7OLMG: fix build problems (redundant #define)
36086
36087     Signed-off-by: Wolfgang Denk <wd@denx.de>
36088
36089 commit f9301e1cda296245ba052d7b08321199c3d0af9d
36090 Author: Wolfgang Denk <wd@denx.de>
36091 Date:   Tue Mar 4 14:58:31 2008 +0100
36092
36093     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
36094
36095     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
36096     problem for out-of-tree builds which caused "make clean" to fail.
36097
36098     Signed-off-by: Wolfgang Denk <wd@denx.de>
36099
36100 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
36101 Author: Wolfgang Denk <wd@denx.de>
36102 Date:   Tue Mar 4 11:58:26 2008 +0100
36103
36104     examples/Makefile: build "hello_world" on 8xx, too.
36105
36106     Signed-off-by: Wolfgang Denk <wd@denx.de>
36107
36108 commit 74eb0222594fd23aafdf168e60e872814eea8b62
36109 Author: Mike Nuss <mike@terascala.com>
36110 Date:   Mon Mar 3 15:27:05 2008 -0500
36111
36112     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
36113
36114     Every now and then a Sequoia board (or equivalent hardware) had
36115     problems connecting to a Gigabit capable network interface.
36116
36117     There were differences in the PHY setup between Linux and U-Boot.
36118
36119     This patch fixes the problem. Apparently "remote fault" is being set,
36120     which signals to some devices (on the other end of the cable) that a
36121     fault has occurred, while other devices ignore it. I believe the RF bit
36122     was causing the issue, but I removed T4 also, to match up with Linux.
36123
36124     Signed-off-by: Mike Nuss <mike@terascala.com>
36125
36126 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
36127 Author: Timur Tabi <timur@freescale.com>
36128 Date:   Mon Mar 3 09:58:52 2008 -0600
36129
36130     fix QE firmware uploading limit
36131
36132     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
36133     systems with more than one RISC core.
36134
36135     Signed-off-by: Timur Tabi <timur@freescale.com>
36136
36137 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
36138 Author: Bernhard Nemec <bnemec@ganssloser.com>
36139 Date:   Mon Mar 3 11:57:23 2008 +0000
36140
36141     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
36142
36143     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
36144     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
36145
36146     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
36147
36148 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
36149 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
36150 Date:   Mon Mar 3 10:39:13 2008 +0200
36151
36152     fix copy from ram to dataflash
36153
36154     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
36155     routines instead of dataflash. This is because it checks "if source
36156     address is not dataflash" instead of target address.
36157
36158     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
36159
36160 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
36161 Author: Wolfgang Denk <wd@denx.de>
36162 Date:   Mon Mar 3 12:16:44 2008 +0100
36163
36164     Fix quoting problem (preboot setting) in many board config files.
36165
36166     Signed-off-by: Wolfgang Denk <wd@denx.de>
36167
36168 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
36169 Author: Wolfgang Denk <wd@denx.de>
36170 Date:   Mon Mar 3 12:36:49 2008 +0100
36171
36172     ADS5121: Fix default environment.
36173
36174     Signed-off-by: Wolfgang Denk <wd@denx.de>
36175
36176 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
36177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36178 Date:   Sun Mar 2 16:12:31 2008 +0100
36179
36180     Makefile: Fix missing unconfig and mkconfig use
36181
36182     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36183
36184 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
36185 Author: michael <trimarchi@gandalf.sssup.it>
36186 Date:   Sun Mar 2 23:33:46 2008 +0100
36187
36188     Fix checking fat32 cluster size.
36189
36190     This fixes the cluster size tests in the FAT32 file system.
36191     The current implementation of VFAT support doesn't work if the
36192     referred cluster has an offset > 16bit representation, causing
36193     "fatload" and "fatls" commands etc. to fail.
36194
36195     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
36196
36197 commit 661bad63a076a96c39c64f136915f146725af92b
36198 Author: Wolfgang Denk <wd@denx.de>
36199 Date:   Sun Mar 2 22:57:23 2008 +0100
36200
36201     Prepare v1.3.2-rc2 release candidate
36202
36203     Signed-off-by: Wolfgang Denk <wd@denx.de>
36204
36205 commit 76957cb3d621bf664311908e5962e151c633c285
36206 Author: Stefan Roese <sr@denx.de>
36207 Date:   Sat Mar 1 12:11:40 2008 +0100
36208
36209     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
36210
36211     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
36212     currently 4k/2k is configured. This patch fixes this issue.
36213
36214     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
36215
36216     Signed-off-by: Stefan Roese <sr@denx.de>
36217
36218 commit 118978c8eb43803e2794233922df4249fa278b83
36219 Author: Woodruff, Richard <r-woodruff2@ti.com>
36220 Date:   Fri Feb 29 17:34:35 2008 -0600
36221
36222     Fix alignment error on ARM for modules
36223
36224     Fix alignment fault on ARM when running modules.  With out an explicit
36225     linker file gcc4.2.1 will half word align __bss_start's value.  The word
36226     dereference will crash hello_world.
36227
36228     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
36229
36230 commit ce1120dd703e6f12c59e4eba9962356a0300b832
36231 Author: Dave Liu <r63238@freescale.com>
36232 Date:   Fri Feb 29 17:45:31 2008 +0800
36233
36234     fs: Fix ext2 read issue
36235
36236     The ext2 aligned process will corrupt the key
36237     data struct, the patch fix this.
36238
36239     Signed-off-by: Dave Liu <daveliu@freescale.com>
36240
36241 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
36242 Author: Wolfgang Denk <wd@denx.de>
36243 Date:   Sun Mar 2 22:45:33 2008 +0100
36244
36245     Makefile: cleanup "clean" target
36246
36247     Make sure CDPATH settings cannot interfere.
36248     Update CHANGELOG.
36249
36250     Signed-off-by: Wolfgang Denk <wd@denx.de>
36251
36252 commit ffda586fc1373243c9794babde69500f6293a8d8
36253 Author: Li Yang <leoli@freescale.com>
36254 Date:   Fri Feb 29 11:46:05 2008 +0800
36255
36256     add cscope build target
36257
36258     Add cscope build target to generate cscope database for code browsing.
36259
36260     Signed-off-by: Li Yang <leoli@freescale.com>
36261
36262 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
36263 Author: Kim Phillips <kim.phillips@freescale.com>
36264 Date:   Wed Feb 27 15:06:39 2008 -0600
36265
36266     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
36267
36268     erratum 5.6 states the autoneg completion bit is functional only if the
36269     autoneg bit is asserted.
36270
36271     This fixes any secondarily-issued networking commands on non-gigabit
36272     links on the mpc8360 mds board.
36273
36274     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36275
36276 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
36277 Author: John Rigby <jrigby@freescale.com>
36278 Date:   Tue Feb 26 09:38:14 2008 -0700
36279
36280     MPC5121e ADS PCI support take 3
36281
36282     Adds PCI support for MPC5121
36283
36284     Tested with drivers/net/rtl8139.c
36285
36286     Support is conditional since PCI on old silicon does not work.
36287
36288     ads5121_PCI_config turns on PCI
36289
36290     In this version, condition compilation of PCI code has been moved
36291     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
36292     suggested by Jean-Christophe PLAGNIOL-VILLARD
36293
36294     Signed-off-by: John Rigby <jrigby@freescale.com>
36295
36296 commit 44b4dbed4133f657705b7c5193209da9978243a7
36297 Author: Anatolij Gustschin <agust@denx.de>
36298 Date:   Mon Feb 25 23:53:07 2008 +0100
36299
36300     Fix warnings while compilation of post/drivers/memory.c
36301
36302     Fix warnings while compilation with new gcc in eldk-4.2
36303
36304     Signed-off-by: Anatolij Gustschin <agust@denx.de>
36305
36306 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
36307 Author: Anatolij Gustschin <agust@denx.de>
36308 Date:   Mon Feb 25 20:54:04 2008 +0100
36309
36310     ppc4xx: Fix problem in 4xx_enet.c driver
36311
36312     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
36313     enabled. To reproduce the problem ensure that 'ethrotate'
36314     environment variable isn't set to "no" and then run
36315     "tftp 200000 not_existent_file".
36316     This patch tries to fix the issue.
36317
36318     Signed-off-by: Anatolij Gustschin <agust@denx.de>
36319
36320 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
36321 Author: Anatolij Gustschin <agust@denx.de>
36322 Date:   Mon Feb 25 20:04:20 2008 +0100
36323
36324     POST: Disable cache while SPR POST
36325
36326     Currently (since commit b2e2142c) u-boot crashes on
36327     sequoia board while SPR test if CONFIG_4xx_DCACHE is
36328     enabled. This patch disables the cache while SPR test.
36329
36330     Signed-off-by: Anatolij Gustschin <agust@denx.de>
36331
36332 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
36333 Author: Martin Krause <martin.krause@tqs.de>
36334 Date:   Mon Feb 25 17:52:40 2008 +0100
36335
36336     TQM5200: use automatic fdt memory fixup (part 2)
36337
36338     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
36339     TB5200 and TB5200_B to fixup the /memory node with the memory values
36340     detected by U-Boot.
36341
36342     Signed-off-by: Martin Krause <martin.krause@tqs.de>
36343
36344 commit 44ceec253ea941b301abf4b079d52324def69d92
36345 Author: Martin Krause <martin.krause@tqs.de>
36346 Date:   Mon Feb 25 15:17:05 2008 +0100
36347
36348     TQM5200: use automatic fdt memory fixup
36349
36350     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
36351     TB5200 and TB5200_B to fixup the /memory node with the memory values
36352     detected by U-Boot.
36353
36354     Signed-off-by: Martin Krause <martin.krause@tqs.de>
36355
36356 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
36357 Author: Martin Krause <martin.krause@tqs.de>
36358 Date:   Mon Feb 25 13:27:52 2008 +0100
36359
36360     TQM5200: fix bug in SDRAM initialization code
36361
36362     This patch fixes a bug in the SDRAM initialization code for the
36363     TQM5200. The hi_addr bit is now set correctly. Without this patch
36364     the hi_addr bit is always set to 1, if the second SDRAM bank is
36365     not populated.
36366
36367     For other MPC5200 boards a correspondig patch has already been applied
36368     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
36369
36370     Signed-off-by: Martin Krause <martin.krause@tqs.de>
36371     --
36372     Forget the first patch please. I confused flash with SDRAM in
36373     the comment ...
36374
36375 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
36376 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36377 Date:   Mon Feb 25 00:03:12 2008 +0100
36378
36379     mx1fs2/flash: Fix multiple compiler warnings
36380
36381     "pointer targets in assignment differ in signedness"
36382
36383     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36384
36385 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
36386 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36387 Date:   Mon Feb 25 00:03:11 2008 +0100
36388
36389     arm-imx: Fix register definitions
36390
36391     Sync register definitions with linux
36392
36393     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36394
36395 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
36396 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36397 Date:   Mon Feb 25 00:03:10 2008 +0100
36398
36399     actua1/actua2/actua3: Fix multiple unused variable warnings
36400
36401     - actua1:
36402         actux1.c: In function 'checkboard':
36403         actux1.c:92: warning: unused variable 'revision'
36404
36405     - actua2:
36406         actux2.c: In function 'checkboard':
36407         actux2.c:100: warning: unused variable 's'
36408         actux2.c:99: warning: unused variable 'revision'
36409         actux2.c: In function 'reset_phy':
36410         actux2.c:130: warning: unused variable 'i'
36411
36412     - actua3:
36413         actux3.c: In function 'checkboard':
36414         actux3.c:114: warning: unused variable 'revision'
36415
36416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36417
36418 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
36419 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36420 Date:   Sun Feb 24 11:44:29 2008 +0900
36421
36422     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
36423
36424     The previous patch was lacking of i386, microblaze, nios and nios2. This
36425     patch tries to fix them.
36426
36427     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36428
36429 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
36430 Author: Marian Balakowicz <m8@semihalf.com>
36431 Date:   Fri Feb 29 22:22:46 2008 +0100
36432
36433     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
36434
36435     Do not use global fdt blob pointer, calculate blob size from routine
36436     argument blob pointer.
36437
36438     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36439
36440 commit d1cc52879c8966507dad9fb575481e6d3985e64e
36441 Author: David Gibson <david@gibson.dropbear.id.au>
36442 Date:   Tue Feb 12 00:58:31 2008 +1100
36443
36444     libfdt: Add and use a node iteration helper function.
36445
36446     This patch adds an fdt_next_node() function which can be used to
36447     iterate through nodes of the tree while keeping track of depth.  This
36448     function is used to simplify the iteration code in a lot of other
36449     functions, and is also exported for use by library users.
36450
36451     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
36452
36453 commit 8cf30809a82902a471866d2f07725ce3b8a22291
36454 Author: Bartlomiej Sieka <tur@semihalf.com>
36455 Date:   Fri Feb 29 16:00:24 2008 +0100
36456
36457     [new uImage] Add libfdt support to mkimage
36458
36459     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36460
36461 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
36462 Author: Bartlomiej Sieka <tur@semihalf.com>
36463 Date:   Fri Feb 29 16:00:23 2008 +0100
36464
36465     [new uImage] Add sha1.o object to mkimage binary build
36466
36467     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36468
36469 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
36470 Author: Marian Balakowicz <m8@semihalf.com>
36471 Date:   Fri Feb 29 16:00:06 2008 +0100
36472
36473     [new uImage] Fix component handling for legacy multi component images
36474
36475     Use uint32_t when accessing size table in image_multi_count() and
36476     image_multi_getimg() for multi component images.
36477
36478     Add missing uimage_to_cpu() endianness conversion.
36479
36480     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36481
36482 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
36483 Author: Marian Balakowicz <m8@semihalf.com>
36484 Date:   Fri Feb 29 15:59:59 2008 +0100
36485
36486     [new uImage] Share common uImage code between mkimage and U-boot
36487
36488     This patch adds the following common routines:
36489
36490     1) Dedicated mkimage print_header() is replaced with common
36491     image_print_contents()
36492     image_print_contents_noindent()
36493
36494     2) Common os/arch/type/comp fields name <--> id translation routines
36495     genimg_get_os_name()
36496     genimg_get_arch_name()
36497     genimg_get_type_name()
36498     genimg_get_comp_name()
36499     genimg_get_os_id()
36500     genimg_get_arch_id()
36501     genimg_get_type_id()
36502     genimg_get_comp_id()
36503
36504     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36505
36506 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
36507 Author: Marian Balakowicz <m8@semihalf.com>
36508 Date:   Fri Feb 29 14:58:34 2008 +0100
36509
36510     [new uImage] Update naming convention for bootm/uImage related code
36511
36512     This patch introduces the following prefix convention for the
36513     image format handling and bootm related code:
36514
36515     genimg_             - dual format shared code
36516     image_              - legacy uImage format specific code
36517     fit_                - new uImage format specific code
36518     boot_               - booting process related code
36519
36520     Related routines are renamed and a few pieces of code are moved around and
36521     re-grouped.
36522
36523     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36524
36525 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
36526 Author: Kumar Gala <galak@kernel.crashing.org>
36527 Date:   Wed Feb 27 21:51:51 2008 -0600
36528
36529     [new uImage] Respect autostart setting in linux bootm
36530
36531     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36532     Acked-by: Marian Balakowicz <m8@semihalf.com>
36533
36534 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
36535 Author: Kumar Gala <galak@kernel.crashing.org>
36536 Date:   Wed Feb 27 21:51:50 2008 -0600
36537
36538     [new uImage] Provide ability to restrict region used for boot images
36539
36540     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
36541     to restrict what memory range is used for bootm.
36542
36543     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36544     Acked-by: Marian Balakowicz <m8@semihalf.com>
36545
36546 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
36547 Author: Kumar Gala <galak@kernel.crashing.org>
36548 Date:   Wed Feb 27 21:51:49 2008 -0600
36549
36550     [new uImage] Use lmb for bootm allocations
36551
36552     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
36553     functions over to using lmb for allocation of the ramdisk, command line
36554     and kernel bd info.
36555
36556     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
36557     tree.
36558
36559     Provided a weak function that board code can call to do additional
36560     lmb reserves if needed.
36561
36562     Also introduce the concept of bootmap_base to specify the offset in
36563     physical memory that the bootmap is located at.  This is used for
36564     allocations of the cmdline, kernel bd, and device tree as they should
36565     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
36566
36567     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36568
36569 commit f5614e7926863bf0225ec860d9b319741a9c4004
36570 Author: Kumar Gala <galak@kernel.crashing.org>
36571 Date:   Wed Feb 27 21:51:48 2008 -0600
36572
36573     [new uImage] Add autostart flag to bootm_headers structure
36574
36575     The autostart env variable was dropped as part of the initial new uImage
36576     cleanup.  Add it back here so the arch specific code can decide if it
36577     wants to really boot or not.
36578
36579     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36580     Acked-by: Marian Balakowicz <m8@semihalf.com>
36581
36582 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
36583 Author: Kumar Gala <galak@kernel.crashing.org>
36584 Date:   Wed Feb 27 21:51:47 2008 -0600
36585
36586     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
36587
36588     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
36589     the memory spaces used by various boot images and structures.  This code
36590     will allow us to simplify the code in bootm and its support functions.
36591
36592     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36593
36594 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
36595 Author: Kumar Gala <galak@kernel.crashing.org>
36596 Date:   Tue Feb 19 22:03:47 2008 -0600
36597
36598     [new uImage] ppc: Allow boards to specify effective amount of memory
36599
36600     For historical reasons we limited the stack to 256M because some boards
36601     could only map that much via BATS.  However newer boards are capable of
36602     mapping more memory (for example 85xx is capable of doing up to 2G).
36603
36604     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36605     Acked-by: Marian Balakowicz <m8@semihalf.com>
36606
36607 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
36608 Author: Kumar Gala <galak@kernel.crashing.org>
36609 Date:   Wed Feb 27 21:51:46 2008 -0600
36610
36611     [new uImage] rework error handling so common functions don't reset
36612
36613     Changed image_get_ramdisk() to just return NULL on error and have
36614     get_ramdisk() propogate that error to the caller.  It's left to the
36615     caller to call do_reset() if it wants to.
36616
36617     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
36618     to a common location.  In the future we will change get_fdt() and
36619     fdt_relocate() to return success/failure and not call do_reset() at all.
36620
36621     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36622     Acked-by: Marian Balakowicz <m8@semihalf.com>
36623
36624 commit d2bc095a639672def11d5d043b5688d0dbd692ec
36625 Author: Kumar Gala <galak@kernel.crashing.org>
36626 Date:   Wed Feb 27 21:51:45 2008 -0600
36627
36628     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
36629
36630     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
36631     however it does mean we have to go in and fixup the initrd info since
36632     we don't know where it will be.
36633
36634     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36635
36636 commit 27953493ef025fb698d68c5dee39b36f01f4d530
36637 Author: Kumar Gala <galak@kernel.crashing.org>
36638 Date:   Wed Feb 27 21:51:44 2008 -0600
36639
36640     [new uImage] ppc: Determine if we are booting an OF style
36641
36642     If we are bootin OF style than we can skip setting up some things
36643     that are used for the old boot method.
36644
36645     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36646     Acked-by: Marian Balakowicz <m8@semihalf.com>
36647
36648 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
36649 Author: Kumar Gala <galak@kernel.crashing.org>
36650 Date:   Wed Feb 27 21:51:43 2008 -0600
36651
36652     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
36653
36654     We don't actually need the kdb param as we are just using it to get
36655     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
36656     boot via OF we might not actually fill out a kdb.
36657
36658     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36659     Acked-by: Marian Balakowicz <m8@semihalf.com>
36660
36661 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
36662 Author: Kumar Gala <galak@kernel.crashing.org>
36663 Date:   Wed Feb 27 16:30:47 2008 -0600
36664
36665     85xx: Don't icbi when unlocking the cache
36666
36667     There is no reason to icbi when invalidating the temporary stack in
36668     the d-cache.  Its impossible on e500 to have the i-cache contain
36669     any addresses in the temp stack and it can be problematic in generating
36670     transactions on the bus to non-valid addresses.
36671
36672     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36673
36674 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
36675 Author: Andy Fleming <afleming@freescale.com>
36676 Date:   Wed Feb 27 15:50:50 2008 -0600
36677
36678     Fix source for ECM error IVPR
36679
36680     The source vector for the ECM was being set to 2,
36681     but that's what the source vector for DDR was being
36682     set to.  Change it to 1.
36683
36684     Signed-off-by: Andy Fleming <afleming@freescale.com>
36685
36686 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
36687 Author: Andy Fleming <afleming@freescale.com>
36688 Date:   Wed Feb 27 14:29:58 2008 -0600
36689
36690     Invalidate INIT_RAM TLB mappings
36691
36692     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
36693     mappings to be unguarded.  This collided with an existing "bug"
36694     where the mappings for the INIT_RAM were being kept around.
36695     This meant that speculative loads to those addresses were
36696     succeeding in the TLB, and going out to the bus, where they
36697     were causing an exception (there's nothing at that address). The
36698     Flash code was coincidentally causing such a speculative load.
36699     Rather than go back to mapping the INIT RAM as guarded, we fix
36700     it so that the entries for the INIT_RAM are invalidated.  Thus
36701     the speculative loads will fail in the TLB, and have no effect.
36702
36703     Signed-off-by: Andy Fleming <afleming@freescale.com>
36704
36705 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
36706 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36707 Date:   Sun Feb 17 22:56:17 2008 +0100
36708
36709     sbc8548: Fix Revision reading and unused variable 'path'
36710
36711     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36712
36713 commit 495d162374c472f46454453553382ad0735dc725
36714 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36715 Date:   Sun Feb 17 22:56:16 2008 +0100
36716
36717     sbc8548: Fix cfi flash bank declaration
36718
36719     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36720
36721 commit 4efbe9dbb129f857f27856936112c8c02f016be6
36722 Author: Marian Balakowicz <m8@semihalf.com>
36723 Date:   Wed Feb 27 11:02:26 2008 +0100
36724
36725     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
36726
36727     Dual format image code must properly handle all three FDT passing methods:
36728     - raw FDT blob passed
36729     - FDT blob embedded in the legacy uImage
36730     - FDT blob embedded in the new uImage
36731
36732     This patch enables proper raw FDT handling when no FIT imaeg support
36733     is compiled in. This is a bit tricky as we must dected FIT format even
36734     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
36735     blobs use tha same low level format (libfdt).
36736
36737     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36738
36739 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
36740 Author: Marian Balakowicz <m8@semihalf.com>
36741 Date:   Wed Feb 27 11:02:26 2008 +0100
36742
36743     [new uImage] POWERPC: Add image_get_fdt() routine
36744
36745     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
36746     (3) or embedded in the new uImage. For the (2) case embedding image must be
36747     verified before we get FDT from it. This patch factors out legacy image
36748     specific verification routine to the separate helper routine.
36749
36750     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36751     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36752
36753 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
36754 Author: Marian Balakowicz <m8@semihalf.com>
36755 Date:   Wed Feb 27 11:02:07 2008 +0100
36756
36757     [new uImage] Add image_get_kernel() routine
36758
36759     Legacy image specific verification is factored out to a separate helper
36760     routine to keep get_kernel() generic and simple.
36761
36762     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36763     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36764
36765 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
36766 Author: Marian Balakowicz <m8@semihalf.com>
36767 Date:   Wed Feb 27 11:01:04 2008 +0100
36768
36769     [new uImage] Move image verify flag to bootm_headers structure
36770
36771     Do not pass image verification flag directly to related routines.
36772     Simplify argument passing and move it to the bootm_header structure which
36773     contains curently processed image specific data and is already being passed
36774     on the argument list.
36775
36776     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36777     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36778
36779 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
36780 Author: Marian Balakowicz <m8@semihalf.com>
36781 Date:   Wed Feb 27 11:00:47 2008 +0100
36782
36783     [Makefile] Sort COBJS in lib_<arch> Makefiles
36784
36785     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36786
36787 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
36788 Author: Marian Balakowicz <m8@semihalf.com>
36789 Date:   Wed Feb 27 11:00:47 2008 +0100
36790
36791     [new uImage] Optimize gen_get_image() flow control
36792
36793     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
36794     to do, update its control flow to better reflect that simple case.
36795
36796     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36797     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36798
36799 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
36800 Author: Marian Balakowicz <m8@semihalf.com>
36801 Date:   Mon Feb 4 08:28:17 2008 +0100
36802
36803     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
36804
36805     PPC specific FDT blob handling code is divided into two separate routines:
36806
36807     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
36808     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
36809
36810     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36811     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36812
36813 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
36814 Author: Jon Loeliger <jdl@freescale.com>
36815 Date:   Mon Feb 25 13:13:37 2008 -0600
36816
36817     86xx: Fix renamed GUR symbols in sbc8641d board.
36818
36819     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
36820     (86xx: Fix GUR PCI config registers properly), we should have
36821     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
36822     symbols in the sbc8641d board as well.  Fix this oversight.
36823
36824     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36825
36826 commit 64cd594e623c39f73964d18787763e4533f791f7
36827 Author: Stefan Roese <sr@denx.de>
36828 Date:   Mon Feb 25 16:50:48 2008 +0100
36829
36830     ppc4xx: Fix acadia_nand build problem
36831
36832     Don't include testdram() on NAND-booting target acadia_nand. This saves
36833     a few bytes and makes the target build clean again.
36834
36835     Signed-off-by: Stefan Roese <sr@denx.de>
36836
36837 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
36838 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36839 Date:   Sun Feb 24 23:03:12 2008 +0000
36840
36841     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
36842
36843     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36844
36845 commit 724902c8464e610642b3a170278b99710325888e
36846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36847 Date:   Sun Feb 24 23:03:11 2008 +0000
36848
36849     arm-imx: Fix registers definition
36850
36851     Sync registers definition with linux
36852
36853     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36854
36855 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
36856 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36857 Date:   Sun Feb 24 23:03:10 2008 +0000
36858
36859     actua1/actua2/actua3: Fix multipleunused variable
36860
36861     - actua1:
36862         actux1.c: In function 'checkboard':
36863         actux1.c:92: warning: unused variable 'revision'
36864
36865     - actua2:
36866         actux2.c: In function 'checkboard':
36867         actux2.c:100: warning: unused variable 's'
36868         actux2.c:99: warning: unused variable 'revision'
36869         actux2.c: In function 'reset_phy':
36870         actux2.c:130: warning: unused variable 'i'
36871
36872     - actua3:
36873         actux3.c: In function 'checkboard':
36874         actux3.c:114: warning: unused variable 'revision'
36875
36876     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36877
36878 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
36879 Author: Marian Balakowicz <m8@semihalf.com>
36880 Date:   Mon Feb 4 08:28:09 2008 +0100
36881
36882     [new uImage] Add dual format uImage support framework
36883
36884     This patch adds framework for dual format images. Format detection is added
36885     and the bootm controll flow is updated to include cases for new FIT format
36886     uImages.
36887
36888     When the legacy (image_header based) format is detected appropriate
36889     legacy specific handling is invoked. For the new (FIT based) format uImages
36890     dual boot framework has a minial support, that will only print out a
36891     corresponding debug messages. Implementation of the FIT specific handling will
36892     be added in following patches.
36893
36894     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36895
36896 commit b29661fc1151077776454288051bc9a488351ce8
36897 Author: Wolfgang Denk <wd@denx.de>
36898 Date:   Sun Feb 24 15:21:36 2008 +0100
36899
36900     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
36901
36902     Signed-off-by: Wolfgang Denk <wd@denx.de>
36903
36904 commit 00b48a48424894daa589d166d73277830b1c6ac4
36905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36906 Date:   Sat Feb 23 12:15:56 2008 +0100
36907
36908     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
36909
36910     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36911
36912 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
36913 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36914 Date:   Sat Feb 23 17:24:16 2008 +0900
36915
36916     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
36917
36918     ----------------------------------------------------------------
36919     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
36920
36921     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
36922     32bit targets.
36923
36924     GCC can be made to warn about usage of long long types with ISO C90
36925     (-ansi), but only with -pedantic.  You can write this in a way that even
36926     then it doesn't cause warnings, namely by:
36927
36928     #ifdef __GNUC__
36929     __extension__ typedef __signed__ long long __s64;
36930     __extension__ typedef unsigned long long __u64;
36931     #endif
36932
36933     The __extension__ keyword in front of this switches off any pedantic
36934     warnings for this expression.
36935
36936     Signed-off-by: Olaf Hering <olh@suse.de>
36937     Cc: <linux-arch@vger.kernel.org>
36938     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
36939     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
36940     ----------------------------------------------------------------
36941
36942     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36943
36944 commit 208acd112e6517b21fc30c420396902b103563ac
36945 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36946 Date:   Sat Feb 23 17:07:57 2008 +0900
36947
36948     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
36949
36950     This will reduce the build time.
36951
36952     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36953
36954 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
36955 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36956 Date:   Sat Feb 23 17:05:00 2008 +0900
36957
36958     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
36959
36960     This will reduce the build time.
36961
36962     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36963
36964 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
36965 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36966 Date:   Sat Feb 23 16:58:41 2008 +0900
36967
36968     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
36969
36970     This reduces the build time by ~10%. Here's the gth2_config example.
36971
36972             BEFORE       AFTER
36973     real    0m31.441s    0m27.833s
36974     user    0m24.766s    0m23.045s
36975     sys     0m10.425s    0m7.468s
36976
36977     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36978
36979 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
36980 Author: Marcel Moolenaar <marcelm@juniper.net>
36981 Date:   Fri Feb 22 10:48:07 2008 -0800
36982
36983     make define2mk.sed work on FreeBSD
36984
36985     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
36986     the define2mk.sed script was identified as the source of the link
36987     failure on FreeBSD. The problem is that sed(1) does not always support
36988     the '+' operator. It isn't on FreeBSD. The attach patch implements the
36989     equivalent, using the '*' operator instead and should work everywhere.
36990
36991     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
36992
36993 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
36994 Author: Detlev Zundel <dzu@denx.de>
36995 Date:   Fri Feb 22 17:21:32 2008 +0100
36996
36997     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
36998
36999     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
37000     final traces of long-deprecated "ramdisk" kernel parm") makes these
37001     changes neccessary.
37002
37003     Signed-off-by: Detlev Zundel <dzu@denx.de>
37004
37005 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
37006 Author: Larry Johnson <lrj@acm.org>
37007 Date:   Thu Feb 21 13:58:16 2008 -0500
37008
37009     LM75 bug fix for negative temperatures
37010
37011     When the LM75 temperature sensor measures a temperature below 0 C, the
37012     current driver does not perform sign extension, so the result returned is
37013     256 C too high.  This patch fixes the problem.
37014
37015     Signed-off-by: Larry Johnson <lrj@acm.org>
37016
37017 commit 5a910c224b13e413bda41922379add6d75c32da3
37018 Author: Heiko Schocher <hs@denx.de>
37019 Date:   Thu Feb 21 18:33:45 2008 +0100
37020
37021     IDS8247: update MAINTAINER entry.
37022
37023     Signed-off-by: Heiko Schocher <hs@denx.de>
37024
37025 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
37026 Author: Heiko Schocher <hs@denx.de>
37027 Date:   Thu Feb 21 18:31:15 2008 +0100
37028
37029     Fix device tree for mgsuvd board.
37030
37031     Rename the "scc" node in "ethernet" for the mgsuvd board.
37032
37033     Signed-off-by: Heiko Schocher <hs@denx.de>
37034
37035 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
37036 Author: Yuri Tikhonov <yur@emcraft.com>
37037 Date:   Thu Feb 21 14:23:42 2008 +0100
37038
37039     lwmon5: enable hardware watchdog
37040
37041     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
37042     causing it to reboot the board if U-Boot does a long busy-wait with
37043     udelay(). Thus, for these boards we have to restart WD more
37044     frequently.
37045
37046     This patch splits the busy-wait udelay() into smaller, predefined,
37047     intervals, so that the watchdog timer may be resetted with the
37048     configurable (CONFIG_WD_PERIOD) interval.
37049
37050     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37051
37052 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
37053 Author: Anatolij Gustschin <agust@denx.de>
37054 Date:   Thu Feb 21 12:52:29 2008 +0100
37055
37056     ppc4xx: Support for ATI Radeon 9200 card on sequoia
37057
37058     Adds configuration option for ATI Radeon 9200 card
37059     support to sequoia config file. If CONFIG_VIDEO
37060     is enabled, TEXT_BASE should be changed to 0xFFF80000.
37061
37062     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37063
37064 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
37065 Author: Kumar Gala <galak@kernel.crashing.org>
37066 Date:   Mon Feb 18 08:18:07 2008 -0600
37067
37068     Remove duplicate defines for ARRAY_SIZE
37069
37070     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
37071     the define in common.h.
37072
37073     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37074
37075 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
37076 Author: Kumar Gala <galak@kernel.crashing.org>
37077 Date:   Mon Feb 18 08:09:37 2008 -0600
37078
37079     ppc: Allow boards to specify effective amount of memory
37080
37081     For historical reasons we limited the stack to 256M because some boards
37082     could only map that much via BATS.  However newer boards are capable of
37083     mapping more memory (for example 85xx is capable of doing up to 2G).
37084
37085     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37086
37087 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
37088 Author: Mike Frysinger <vapier@gentoo.org>
37089 Date:   Mon Feb 18 05:24:13 2008 -0500
37090
37091     include autoconf.mk before any other .mk files
37092
37093     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
37094     those .mk files can have make if statements based on the current config.
37095
37096     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37097
37098 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
37099 Author: Mike Frysinger <vapier@gentoo.org>
37100 Date:   Mon Feb 18 05:10:07 2008 -0500
37101
37102     error check autoconf.mk generation
37103
37104     If any of the steps for generating autoconf.mk fail currently, they go
37105     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
37106     This is simpler and more robust than placing '|| exit $$?' after every line.
37107
37108     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37109
37110 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
37111 Author: Stefano Babic <sbabic@denx.de>
37112 Date:   Mon Feb 18 08:03:51 2008 +0100
37113
37114     Fix bug in dependency checking
37115
37116     By adding VERSION_FILE to the PHONY targets the script
37117     /tools/setlocalversion is always called and version_autogenerated.h
37118     is replaced only if the script find a modified source file.
37119
37120     Signed-off-by: Stefano Babic <sbabic@denx.de>
37121
37122 commit 98ba144ccc912eee90dd42699f023c497ce774c6
37123 Author: Kyungmin Park <kmpark@infradead.org>
37124 Date:   Mon Feb 18 14:35:43 2008 +0900
37125
37126     Fix GPMC CS2 memory setup at apollon
37127
37128     It disables the current map first
37129
37130     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
37131
37132 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
37133 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37134 Date:   Sun Feb 17 23:52:46 2008 +0100
37135
37136     uli526x: Fix multiple differ in signedness and parentheses around comparison
37137
37138     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37139
37140 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
37141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37142 Date:   Sun Feb 17 16:58:04 2008 +0100
37143
37144     MIPS: Fix CFG_NO_FLASH support
37145
37146     - Fix flash_init call when CFG_NO_FLASH is used
37147     - Remove no more needed flash.c for qemu-mips
37148
37149     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37150
37151 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
37152 Author: Mike Frysinger <vapier@gentoo.org>
37153 Date:   Sat Feb 16 02:40:18 2008 -0500
37154
37155     easylogo: clean up some more and add -r (rgb) support
37156
37157     Michael Hennerich added support for outputting an image in RGB format rather
37158     than forcing YUYV all the time.  This makes obvious sense if the display you
37159     have takes RGB input rather than YUYV.
37160
37161     Rather than hack in support for options, I've converted it to use getopt and
37162     cleaned up the argument parsing in the process.
37163
37164     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
37165     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37166
37167 commit f65c98129ccada3f7caf97d80395a95b84e911de
37168 Author: Mike Frysinger <vapier@gentoo.org>
37169 Date:   Sat Feb 16 02:12:37 2008 -0500
37170
37171     Makefile: add target for $(LDSCRIPT)
37172
37173     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
37174     then change into the board directory and try and create it.  This allows you
37175     to generate the linker script on the fly based upon board defines (like the
37176     Blackfin boards do).
37177
37178     There should be no regressions due to this change as the normal case is to
37179     already have a u-boot.lds file.  If that's the case, then there's nothing to
37180     generate, and so make will always exit.  The fix here is that if the linker
37181     script does not exist, the implicit rules take over and attempt to guess how
37182     to generate the file.
37183
37184     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37185
37186 commit 5583cbf736474ef754e128a54fb78632f57b48fd
37187 Author: Marian Balakowicz <m8@semihalf.com>
37188 Date:   Thu Feb 21 17:27:49 2008 +0100
37189
37190     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
37191
37192     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37193
37194 commit 2242f5369822bc7780db95c47985bb408ea9157b
37195 Author: Marian Balakowicz <m8@semihalf.com>
37196 Date:   Thu Feb 21 17:27:41 2008 +0100
37197
37198     [new uImage] Rename and move print_image_hdr() routine
37199
37200     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37201
37202 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
37203 Author: Marian Balakowicz <m8@semihalf.com>
37204 Date:   Thu Feb 21 17:20:20 2008 +0100
37205
37206     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
37207
37208     Introducing routines for parsing new uImage format bootm arguments:
37209     [<addr>]#<conf>             - configuration specification
37210     [<addr>]:<subimg>   - subimage specification
37211
37212     New format images can contain multiple subimages of the same type. For example
37213     a single new format image file can contain three kernels, two ramdisks and a
37214     couple of FDT blobs. Subimage and configuration specifications are extensions
37215     to bootm (and other image-related commands) arguments' syntax that allow to
37216     specify which particular subimage should be operated on.
37217
37218     Subimage specification is used to denote a particular subimage. Configurations
37219     are a bit more complex -- they are used to define a particualr booting setup,
37220     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
37221     etc.
37222
37223     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37224
37225 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
37226 Author: Marian Balakowicz <m8@semihalf.com>
37227 Date:   Thu Feb 21 17:20:19 2008 +0100
37228
37229     [new uImage] Add gen_get_image() routine
37230
37231     This routine assures that image (whether legacy or FIT) is not
37232     in a special dataflash storage.
37233
37234     If image address is a dataflash address image is moved to system RAM.
37235
37236     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37237
37238 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
37239 Author: Marian Balakowicz <m8@semihalf.com>
37240 Date:   Thu Feb 21 17:20:18 2008 +0100
37241
37242     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
37243
37244     New uImage format (Flattened Image Tree) requires libfdt
37245     functionality, print out error message if CONFIG_OF_LIBFDT
37246     is not defined.
37247
37248     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
37249     This commit turns it on by default.
37250
37251     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37252
37253 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
37254 Author: Michael Schwingen <michael@schwingen.org>
37255 Date:   Mon Feb 18 23:16:35 2008 +0100
37256
37257     CFI: Do not use uninitialized cmd_reset
37258
37259     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
37260     commands instead
37261
37262     From a short test, it looks like AMD-style flash roms treat *any* unknown
37263     command write as a reset, at least when in CFI Query mode, so issuing the
37264     Intel reset command to AMD-style flashs seems safe (from the small sample I
37265     have), plus the 3-cycle magic sequence should kick the state machine into
37266     the right state even without a reset command. Since the AMD-style flashs
37267     require the unlock sequence for real operation, I chose to try the AMD reset
37268     command first, so that Intel flashs do no see an invalid command prior to
37269     the CFI query.
37270
37271     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
37272     plus Intel StrataFlash.
37273
37274     Signed-off-by: Michael Schwingen <michael@schwingen.org>
37275     Signed-off-by: Stefan Roese <sr@denx.de>
37276
37277 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
37278 Author: Rafal Jaworowski <raj@semihalf.com>
37279 Date:   Thu Feb 21 11:56:44 2008 +0100
37280
37281     API: Add (c) and licensing notice to the public API header.
37282
37283     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
37284
37285 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
37286 Author: Yuri Tikhonov <yur@emcraft.com>
37287 Date:   Thu Feb 21 11:06:07 2008 +0100
37288
37289     Fix CPU POST test failure
37290
37291     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
37292     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
37293     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
37294     This patch just saves the CR value before running the test code, so allowing
37295     it to do anything it wants with CR.
37296
37297     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
37298     Acked-by: Yuri Tikhonov <yur@emcraft.com>
37299     --
37300
37301 commit d5908b093955415f3d340706378b991f911af671
37302 Author: Jon Loeliger <jdl@freescale.com>
37303 Date:   Wed Feb 20 15:26:51 2008 -0600
37304
37305     8610HPCD: Document the flashbank selection switches.
37306
37307     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37308
37309 commit a551cee99ad1d1da20fd23ad265de47448852f56
37310 Author: Jon Loeliger <jdl@freescale.com>
37311 Date:   Wed Feb 20 14:22:26 2008 -0600
37312
37313     86xx: Fix GUR PCI config registers properly.
37314
37315     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
37316     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
37317     botched it due to not realizing that 8610 and 8641 had different
37318     Global Utility Register defintions, one of which was like 85xx,
37319     and the other wasn't.  Correct this problem by introducing two
37320     symbols, one for each 86xx SoC, but neither of which is named
37321     anything like 85xx.
37322
37323     My bad.  Lovely Wednesday with git bisect.  You know.
37324
37325     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37326
37327 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
37328 Author: Jon Loeliger <jdl@freescale.com>
37329 Date:   Wed Feb 20 12:24:11 2008 -0600
37330
37331     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
37332
37333     Without an actual supported video card hooked up, enabling
37334     the CONFIG_VIDEO by default just makes it look broken by
37335     routing all console output to the video card.   Don't.
37336
37337     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37338
37339 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
37340 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37341 Date:   Wed Jan 30 15:08:15 2008 -0600
37342
37343     ColdFire: Fix missing code flash size for M5485EVB
37344
37345     Signed-off-by: James Mahan <kmahan@freescale.com>
37346     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37347
37348 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
37349 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37350 Date:   Wed Jan 30 15:04:42 2008 -0600
37351
37352     ColdFire: Fix 5282 and 5271 interrupt mask bit
37353
37354     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37355
37356 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
37357 Author: Jon Loeliger <jdl@freescale.com>
37358 Date:   Tue Feb 19 12:31:08 2008 -0600
37359
37360     8610HPCD: Fix typos in two PCI setup registers.
37361
37362     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
37363     were erroneously present as 85xx names and values, leftover from
37364     the clone wars.  Fix this by removing the 85xx cruft from the
37365     86xx codebase.
37366
37367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37368
37369 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
37370 Author: Jon Loeliger <jdl@freescale.com>
37371 Date:   Mon Feb 18 14:01:56 2008 -0600
37372
37373     86xx: Convert sbc8641d to use libfdt.
37374
37375     This is the proper fix for a missing closing brace in the function
37376     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
37377     The ft_cpu_setup() function in mpc8641hpcn.c should have been
37378     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
37379     but was missed.  Only, the sbc8641d was nominally still using it.
37380     It all got ripped out, and the funcality that was in ft_board_setup()
37381     was refactored to remove the CPU portions into the new file
37382     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
37383
37384     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
37385
37386     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37387
37388 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
37389 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37390 Date:   Sun Feb 17 23:35:31 2008 +0100
37391
37392     mpc86xx: Fix unused variable 'config' and 'immap'
37393
37394     and remove useless CONFIG_DDR_INTERLEAVE
37395
37396     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37397
37398 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
37399 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37400 Date:   Sun Feb 17 23:03:36 2008 +0100
37401
37402     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
37403
37404     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37405
37406 commit b6f29c84c208a091f95a10cbc9852d729659ba20
37407 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37408 Date:   Sun Feb 17 14:15:31 2008 +0100
37409
37410     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
37411
37412     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37413
37414 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
37415 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37416 Date:   Sun Feb 17 14:15:32 2008 +0100
37417
37418     pxa: fix assignment from incompatible pointer type
37419
37420     fix mmc_bread function prototype
37421
37422     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37423
37424 commit 64d792063fff90b8118179b092feee09fe5cae13
37425 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37426 Date:   Sun Feb 17 14:15:30 2008 +0100
37427
37428     at91cap9adk: fix implicit declaration of function 'eth_init'
37429
37430     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37431
37432 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
37433 Author: Wolfgang Denk <wd@denx.de>
37434 Date:   Sun Feb 17 15:43:44 2008 +0100
37435
37436     Remove files added by mistake, update CHANGELOG.
37437
37438     Signed-off-by: Wolfgang Denk <wd@denx.de>
37439
37440 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
37441 Author: Mike Nuss <mike@terascala.com>
37442 Date:   Wed Feb 6 11:10:11 2008 -0500
37443
37444     PPC440EPx: Optionally enable second I2C bus
37445
37446     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
37447     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
37448     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
37449
37450     Signed-off-by: Mike Nuss <mike@terascala.com>
37451     Cc: Stefan Roese <sr@denx.de>
37452
37453 commit ef5b4f221c22d05770878513951745f236b5b43f
37454 Author: Niklaus Giger <niklaus.giger@netstal.com>
37455 Date:   Tue Feb 5 10:26:44 2008 +0100
37456
37457     ppc4xx: HCU4/5. Cleanup configs
37458
37459     - hcu4.h: Removed define of CONFIG_PPC405GPr
37460     - Corrected phy addresses
37461     - Fix boot variables
37462     - Respect line length of 80 chars
37463
37464     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37465
37466 commit 74973126d1be63ac75bdc192f46234dca3a7c421
37467 Author: Niklaus Giger <niklaus.giger@netstal.com>
37468 Date:   Tue Feb 5 11:31:28 2008 +0100
37469
37470     ppc4xx: HCU4/5. Cleanups
37471
37472     - Fix some coding style violations.
37473     - Use in/out_u16/32 where appropriate.
37474     - Use register names from ppc405.h.
37475     - Fix trace useage for Lauterbach.
37476     - Remove obsolete generation HCU2.
37477     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
37478
37479     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37480
37481 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
37482 Author: Niklaus Giger <niklaus.giger@netstal.com>
37483 Date:   Tue Feb 5 10:26:41 2008 +0100
37484
37485     ppc4xx: PPC405GPr fix missing register definitions
37486
37487     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37488
37489 commit 214398d9cb22268d9d4f7563359edca0f78297a2
37490 Author: Larry Johnson <lrj@acm.org>
37491 Date:   Fri Jan 18 21:49:05 2008 -0500
37492
37493     ppc4xx: Beautify configuration files for Sequoia and Korat boards
37494
37495     Signed-off-by: Larry Johnson <lrj@acm.org>
37496
37497 commit 30c6a241e88499f536e86d325759e29ba00ff67f
37498 Author: Anatolij Gustschin <agust@denx.de>
37499 Date:   Fri Feb 15 20:09:01 2008 +0100
37500
37501     Wipe out assembler warnings while compiling x86 biosemu
37502
37503     This patch tries to get rid of some assembler warnings about
37504     changed .got2 section type while compiling x86 bios emulator
37505     code.
37506
37507     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37508
37509 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
37510 Author: Wolfgang Denk <wd@denx.de>
37511 Date:   Fri Feb 15 00:57:09 2008 +0100
37512
37513     Prepare v1.3.2-rc1 release candidate
37514
37515 commit f33e9653c9c09868995d788511d573771c209fe5
37516 Author: Anatolij Gustschin <agust@denx.de>
37517 Date:   Fri Feb 15 00:13:20 2008 +0100
37518
37519     Fix compile warning on lib_ppc/board.c
37520
37521     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37522
37523 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
37524 Author: Anatolij Gustschin <agust@denx.de>
37525 Date:   Thu Feb 14 18:22:04 2008 +0100
37526
37527     Add Radeon Mobility 9200 pci device id to the radeon driver
37528
37529     This patch extends PCI device id table of the
37530     radeon driver so that the driver will also support
37531     Radeon Mobility 9200 (M9+) based boards.
37532
37533     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37534
37535 commit 1b8607e1f7143548c6062c28371449ec69588c00
37536 Author: Anatolij Gustschin <agust@denx.de>
37537 Date:   Thu Feb 14 18:19:50 2008 +0100
37538
37539     Extend ATI Radeon driver to support more video modes
37540
37541     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
37542     800x600, 640x480 at 24, 16 and 8 bpp.
37543
37544     Signed-off-by: Anatolij Gustschin <agust@denx.de>
37545
37546 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
37547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37548 Date:   Sun Feb 10 17:05:20 2008 +0100
37549
37550     xsengine: fix typo and few coding style
37551
37552     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37553
37554 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
37555 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
37556 Date:   Fri Feb 8 21:25:58 2008 +0100
37557
37558     Fix wrong memory limit calculation in memory-test
37559
37560     If the length of the memory address range passed to the "mtest" command is
37561     not of the form 2^x - 1, not all address lines are tested. This bug is
37562     inherited from the original software at
37563     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
37564     this.
37565
37566     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
37567
37568 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
37569 Author: Wolfgang Denk <wd@denx.de>
37570 Date:   Fri Feb 15 00:11:39 2008 +0100
37571
37572     Coding STyle cleanup.
37573
37574     Signed-off-by: Wolfgang Denk <wd@denx.de>
37575
37576 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
37577 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37578 Date:   Tue Feb 5 13:30:43 2008 +0900
37579
37580     sh: Fix register address of SH7722
37581
37582     The address of SH7722 is wrong by old document.
37583     This patch fixes this problem.
37584
37585     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37586
37587 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
37588 Author: Mike Frysinger <vapier@gentoo.org>
37589 Date:   Mon Feb 4 17:44:23 2008 -0500
37590
37591     only update version header as needed
37592
37593     Constantly rebuilding the version header will force useless relinking, so we
37594     simply need to compare the new header with the existing one before updating
37595     it.
37596
37597     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37598
37599 commit 208447f8e953f347425eb92c8e28d59e6d911363
37600 Author: Mike Frysinger <vapier@gentoo.org>
37601 Date:   Mon Jan 28 05:56:19 2008 -0500
37602
37603     Do not specify a CROSS_COMPILE default when executing size
37604
37605     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37606
37607 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
37608 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
37609 Date:   Wed Feb 13 11:19:19 2008 +0100
37610
37611     Fix return value of mtest when CFG_ALT_MEMTEST set
37612
37613     Fix a missing return statement from a non-void function.
37614
37615     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
37616
37617 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
37618 Author: Timur Tabi <timur@freescale.com>
37619 Date:   Wed Jan 9 14:35:26 2008 -0600
37620
37621     85xx, 86xx: Determine I2C clock frequencies and store in global_data
37622
37623     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
37624
37625     Update the get_clocks() function in 85xx and 86xx to determine the I2C
37626     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
37627
37628     Signed-off-by: Timur Tabi <timur@freescale.com>
37629
37630 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
37631 Author: Wolfgang Denk <wd@denx.de>
37632 Date:   Thu Feb 14 23:18:01 2008 +0100
37633
37634     TQM834x: clean up configuration
37635
37636     Get board name consistent with Linux and elsewhere;
37637     get rid of local network definitions etc.
37638
37639     Signed-off-by: Wolfgang Denk <wd@denx.de>
37640
37641 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
37642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37643 Date:   Thu Feb 14 08:02:12 2008 +0100
37644
37645     TFTP: fix search of ':' in BootFile
37646
37647     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37648
37649 commit 0bc9efada170096c6b273f19165e32936d330d80
37650 Author: Wolfgang Denk <wd@denx.de>
37651 Date:   Thu Feb 14 22:46:55 2008 +0100
37652
37653     Coding style cleanup; update CHANGELOG.
37654
37655     Signed-off-by: Wolfgang Denk <wd@denx.de>
37656
37657 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
37658 Author: Wolfgang Denk <wd@denx.de>
37659 Date:   Thu Feb 14 22:43:22 2008 +0100
37660
37661     PPC: Use r2 instead of r29 as global data pointer
37662
37663     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
37664     will refuse to use load/store multiple insns; instead, it issues a
37665     list of simple load/store instructions upon function entry and exit,
37666     resulting in bigger code size, which in turn makes the build for a
37667     few boards fail.
37668
37669     Use r2 instead.
37670
37671     Signed-off-by: Wolfgang Denk <wd@denx.de>
37672
37673 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
37674 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
37675 Date:   Wed Jan 30 09:08:49 2008 +0100
37676
37677     ARM: make the machid configurable via the environment
37678
37679     If the variable "machid" exists, let do_bootm_linux use that instead
37680     of bd->bi_arch_number.
37681
37682     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
37683
37684 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
37685 Author: Vlad Lungu <vlad@comsys.ro>
37686 Date:   Wed Jan 23 16:34:46 2008 +0200
37687
37688     Use #ifdef CONFIG_FSLDMAFEC
37689
37690     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
37691     fails
37692
37693     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
37694
37695 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
37696 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37697 Date:   Sat Jan 19 10:25:59 2008 +0900
37698
37699     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
37700
37701     Current MII_DEBUG is confusing in two ways. One is useless define-then-
37702     undef at the top of the file. The other is there is only one debug() in
37703     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
37704     While there are many useful printf()/puts() debug codes, but they are for
37705     DEBUG, not for MII_DEBUG.
37706
37707     This patch tries to put them all together into MII_DEBUG and debug().
37708
37709     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37710
37711 commit 751b9b5189f3274b03c809172631316d6b002c82
37712 Author: Kyungmin Park <kmpark@infradead.org>
37713 Date:   Thu Jan 17 16:43:25 2008 +0900
37714
37715     OneNAND Initial Program Loader (IPL) support
37716
37717     This patch enables the OneNAND boot within U-Boot.
37718     Before this work, we used another OneNAND IPL called X-Loader based
37719     on open source. With this work, we can build the oneboot.bin image
37720     without other program.
37721
37722     The build sequence is simple.
37723     First, it compiles the u-boot.bin
37724     Second, it compiles OneNAND IPL
37725     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
37726     The mechanism is similar with NAND boot except it boots from itself.
37727
37728     Another thing is that you can only use the OneNAND IPL only to work
37729     other bootloader such as RedBoot and so on.
37730
37731     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
37732
37733 commit 21f6f9636f0e978397548751347425fbf8d42bb3
37734 Author: Andy Fleming <afleming@freescale.com>
37735 Date:   Wed Jan 16 13:06:59 2008 -0600
37736
37737     Fix CONFIG_MMC usage in fat code
37738
37739     A #if statement in fat.c depended on CONFIG_MMC, instead of
37740     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
37741     as "1" rather than just defined.  Now it's better.
37742
37743     Signed-off-by: Andy Fleming <afleming@freescale.com>
37744
37745 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
37746 Author: Rafal Jaworowski <raj@semihalf.com>
37747 Date:   Tue Jan 15 12:52:31 2008 +0100
37748
37749     ppc: Refactor cache routines, so there is only one common set.
37750
37751     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
37752
37753 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
37754 Author: Jon Loeliger <jdl@jdl.com>
37755 Date:   Wed Jan 23 15:55:02 2008 -0600
37756
37757     86xx: Fix compilation warning in sys_eprom.c
37758
37759     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
37760
37761     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37762
37763 commit 65230107025733e89e28fd5e5cfd916d4953c28a
37764 Author: Haavard Skinnemoen <hskinnemoen at>
37765 Date:   Fri Feb 22 11:40:50 2008 +0000
37766
37767     Move AT91RM9200DK board support under board/atmel
37768
37769     We already have a vendor subdir for Atmel, so we should use it.
37770
37771     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
37772
37773 commit 6d0943a6be99977d6d853d51749e9963d68eb192
37774 Author: Andreas Engel <andreas.engel@ericsson.com>
37775 Date:   Mon Jan 14 09:06:52 2008 +0000
37776
37777     ARM: cleanup duplicated exception handlingcode
37778
37779     Move duplicated exception handling code into lib_arm.
37780
37781     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
37782
37783 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
37784 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
37785 Date:   Fri Feb 1 10:09:03 2008 +0000
37786
37787     Support for Artila M-501 starter kit
37788
37789     Kimmo Leppala / Sysart and
37790     Timo Tuunainen / Sysart
37791
37792 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
37793 Author: Stelian Pop <stelian@popies.net>
37794 Date:   Mon Feb 11 10:50:19 2008 +0000
37795
37796     AT91CAP9 support
37797
37798     ---------------------------------
37799
37800     read_dataflash() takes a signed char pointer as a parameter. Silence a
37801     few warnings dues to incorrect parameter types in env_dataflash.c.
37802
37803     Signed-off-by: Stelian Pop <stelian@popies.net>
37804
37805 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
37806 Author: Stelian Pop <stelian@popies.net>
37807 Date:   Thu Feb 7 09:42:57 2008 +0000
37808
37809     AT91CAP9 support : move board files to Atmel vendor directory.
37810
37811     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
37812
37813     Signed-off-by: Stelian Pop <stelian@popies.net>
37814
37815 commit 7263ef191b87da94768f762c7093bedeb70db98f
37816 Author: Stelian Pop <stelian at>
37817 Date:   Thu Jan 3 21:15:56 2008 +0000
37818
37819     AT91CAP9 support : MACB changes
37820
37821     Signed-off-by: Stelian Pop <stelian <at> popies.net>
37822     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
37823
37824 commit 6afcabf11d7321850f4feaadfee841488ace54c5
37825 Author: Stelian Pop <stelian@popies.net>
37826 Date:   Thu Feb 7 16:37:54 2008 +0000
37827
37828     AT91CAP9 support : board/ files
37829
37830     Signed-off-by: Stelian Pop <stelian@popies.net>
37831
37832 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
37833 Author: Stelian Pop <stelian at>
37834 Date:   Wed Jan 30 21:15:54 2008 +0000
37835
37836     AT91CAP9 support : cpu/ files
37837
37838     Signed-off-by: Stelian Pop <stelian <at> popies.net>
37839
37840 commit fa506a926cec348805143576c941f8e61b333cc0
37841 Author: Stelian Pop <stelian@popies.net>
37842 Date:   Thu Jan 31 21:15:53 2008 +0000
37843
37844     AT91CAP9 support : include/ files
37845
37846     Signed-off-by: Stelian Pop <stelian@popies.net>
37847
37848 commit 20b197c6f2799af399a68f96a1aff543a75621b8
37849 Author: Stelian Pop <stelian@popies.net>
37850 Date:   Sun Jan 20 19:49:21 2008 +0000
37851
37852     AT91CAP9 support : build integration
37853
37854     Signed-off-by: Stelian Pop <stelian@popies.net>
37855
37856 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
37857 Author: Stelian Pop <stelian@popies.net>
37858 Date:   Sun Jan 20 21:07:00 2008 +0000
37859
37860     Improve DataFlash CS definition.
37861
37862     Use a structure instead of the error prone unnamed array to
37863     define the possible dataflash banks.
37864
37865     Signed-off-by: Stelian Pop <stelian@popies.net>
37866
37867 commit a6cdd21b56014208706238712a853a9e9a0a2290
37868 Author: Stelian Pop <stelian@popies.net>
37869 Date:   Sat Jan 19 21:09:35 2008 +0000
37870
37871     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
37872
37873     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
37874
37875     cpu/arm926ejs/start.o: In function `cpu_init_crit':
37876     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
37877
37878     Signed-off-by: Stelian Pop <stelian@popies.net>
37879
37880 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
37881 Author: Peter Pearse <peter.pearse@arm.com>
37882 Date:   Fri Feb 1 16:50:24 2008 +0000
37883
37884     Fix timer overflow in DaVinci
37885     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
37886
37887 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
37888 Author: Peter Pearse <peter.pearse@arm.com>
37889 Date:   Fri Feb 1 16:49:08 2008 +0000
37890
37891     Update board NetStar
37892     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37893
37894 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
37895 Author: Niklaus Giger <niklaus.giger@netstal.com>
37896 Date:   Tue Feb 5 10:26:42 2008 +0100
37897
37898     ppc4xx: HCU4/5. Fix make O=../xx
37899
37900     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37901
37902 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
37903 Author: Larry Johnson <lrj@acm.org>
37904 Date:   Tue Jan 22 08:51:59 2008 -0500
37905
37906     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
37907
37908     Signed-off-by: Larry Johnson <lrj@acm.org>
37909
37910 commit fe891ecf4d187e9d11dde869ed4623af52b54451
37911 Author: Hiroshi Ito <ito@mlb.co.jp>
37912 Date:   Thu Jan 31 18:35:04 2008 +0900
37913
37914     NFS Timeout with large files.
37915
37916     Retry to send NFS packet before reaching timeout.
37917
37918     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
37919
37920 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
37921 Author: Johannes Stezenbach <js@sig21.net>
37922 Date:   Tue Jan 29 00:11:25 2008 +0100
37923
37924     Add dependencies to avoid race conditions with parallel make.
37925
37926     Signed-off-by: Johannes Stezenbach <js@sig21.net>
37927
37928 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
37929 Author: Mike Frysinger <vapier@gentoo.org>
37930 Date:   Mon Jan 28 05:46:01 2008 -0500
37931
37932     Mark board_init_[fr] as noreturn
37933
37934     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37935
37936 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
37937 Author: Mike Frysinger <vapier@gentoo.org>
37938 Date:   Mon Jan 28 05:28:50 2008 -0500
37939
37940     Only use TEXT_BASE if defined by the board
37941
37942     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37943
37944 commit 1b769881750030f10743808b9d6013e11f559350
37945 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37946 Date:   Fri Jan 25 07:54:47 2008 +0100
37947
37948     Fix remaining CONFIG_COMMANDS
37949
37950     update comments
37951     Fix coding style
37952
37953     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37954
37955 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
37956 Author: Niklaus Giger <niklaus.giger@netstal.com>
37957 Date:   Mon Jan 21 16:46:00 2008 +0100
37958
37959     Add *~ to .gitignore
37960
37961     One should never add a backup file ending in with ~ to the git repository.
37962
37963     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
37964
37965 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
37966 Author: Kumar Gala <galak@kernel.crashing.org>
37967 Date:   Thu Jan 17 00:02:10 2008 -0600
37968
37969     Remove duplicate defines for ARRAY_SIZE
37970
37971     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37972
37973 commit c77ce474b1c57b13e9d36d9830f147966c143694
37974 Author: Stelian Pop <stelian@popies.net>
37975 Date:   Mon Jan 14 22:08:14 2008 +0100
37976
37977     Fix incorrect address test in AT91F_DataflashSelect().
37978
37979     Signed-off-by: Stelian Pop <stelian@popies.net>
37980
37981 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
37982 Author: Kumar Gala <galak@kernel.crashing.org>
37983 Date:   Wed Feb 13 15:09:58 2008 -0600
37984
37985     Fix building of fdt_support.c if DEBUG set
37986
37987     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37988
37989 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
37990 Author: Jon Loeliger <jdl@freescale.com>
37991 Date:   Tue Feb 12 14:53:28 2008 -0600
37992
37993     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
37994
37995     These replace direct structure references for IMMR sections.
37996
37997     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37998
37999 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
38000 Author: Wolfgang Denk <wd@denx.de>
38001 Date:   Tue Feb 12 00:45:06 2008 +0100
38002
38003     Get rid of "#undef DEBUG" from board config files.
38004
38005     Signed-off-by: Wolfgang Denk <wd@denx.de>
38006
38007 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
38008 Author: Timur Tabi <timur@freescale.com>
38009 Date:   Tue Jan 15 17:09:41 2008 -0600
38010
38011     Remove #undef DEBUG from MPC83xx board header files
38012
38013     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
38014     The inclusion of this line makes it impossible to enable debug code in
38015     other source files, because "#define DEBUG" typically needs to be defined
38016     before any header files are included.
38017
38018     Signed-off-by: Timur Tabi <timur@freescale.com>
38019
38020 commit 69018ce2e086e9caf35b914d675b82bc4888f077
38021 Author: Kumar Gala <galak@kernel.crashing.org>
38022 Date:   Thu Jan 17 08:25:45 2008 -0600
38023
38024     QE: Move FDT support into a common file
38025
38026     Move the flat device tree setup for QE related devices into
38027     a common file shared between 83xx & 85xx platforms that have QE's.
38028
38029     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38030
38031 commit 5cf746c303710329f8040d9c62ee354313e3e91f
38032 Author: Marian Balakowicz <m8@semihalf.com>
38033 Date:   Thu Jan 31 13:59:09 2008 +0100
38034
38035     [new uImage] Move kernel data find code to get_kernel() routine
38036
38037     Verification of the kernel image (in old format) and finding kernel
38038     data is moved to a dedicated routine. The routine will also hold
38039     support for, to be added, new image format.
38040
38041     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38042
38043 commit 7b325454fd231d4273de3fe373850f777fb086bf
38044 Author: Marian Balakowicz <m8@semihalf.com>
38045 Date:   Thu Jan 31 13:58:20 2008 +0100
38046
38047     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
38048
38049     Move FDT blob finding and relocation to a dedicated
38050     get_fdt() routine. It increases code readability and
38051     will make adding support for new uImage format easier.
38052
38053     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38054
38055 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
38056 Author: Marian Balakowicz <m8@semihalf.com>
38057 Date:   Thu Jan 31 13:58:13 2008 +0100
38058
38059     [new uImage] Cleanup do_botm_linux() boot allocations
38060
38061     This patch moves common pre-boot allocation steps shared between PPC
38062     and M68K to a helper routines:
38063
38064     common:
38065     - get_boot_sp_limit()
38066     - get_boot_cmline()
38067     - get_boot_kbd()
38068
38069     platform:
38070     - set_clocks_in_mhz()
38071
38072     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38073
38074 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
38075 Author: Marian Balakowicz <m8@semihalf.com>
38076 Date:   Thu Jan 31 13:57:17 2008 +0100
38077
38078     [new uImage] Move ramdisk loading to a common routine
38079
38080     Ramdisk loading code, including initrd_high variable handling,
38081     was duplicated for PPC and M68K platforms. This patch creates
38082     common helper routine that is being called from both platform
38083     do_bootm_linux() routines.
38084
38085     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38086
38087 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
38088 Author: Marian Balakowicz <m8@semihalf.com>
38089 Date:   Thu Jan 31 13:55:53 2008 +0100
38090
38091     [new uImage] Removed dead ramdisk code on microblaze architectures
38092
38093     Microblaze do_bootm_linux() includes ramdisk processing code but
38094     the ramdisk does not get used anywhere later on.
38095
38096     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38097
38098 commit 5ad03eb3854c162684222a718b44c0716ea0db03
38099 Author: Marian Balakowicz <m8@semihalf.com>
38100 Date:   Thu Jan 31 13:55:39 2008 +0100
38101
38102     [new uImage] Factor out common image_get_ramdisk() routine
38103
38104     Architecture specific do_bootm_linux() routines share common
38105     ramdisk image processing code. Move this code to a common
38106     helper routine.
38107
38108     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38109
38110 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
38111 Author: Marian Balakowicz <m8@semihalf.com>
38112 Date:   Thu Jan 31 13:20:08 2008 +0100
38113
38114     [new uImage] Move FDT error printing to common fdt_error() routine
38115
38116     FDT error handling in PPC do_bootm_linux() shares the same message format.
38117     This patch moves error message printing to a helper fdt_error() routine.
38118
38119     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38120     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38121
38122 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
38123 Author: Marian Balakowicz <m8@semihalf.com>
38124 Date:   Thu Jan 31 13:20:07 2008 +0100
38125
38126     [new uImage] Factor out common routines for getting os/arch/type/comp names
38127
38128     Move numeric-id to name translation for image os/arch/type/comp header
38129     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
38130     image_get_type_name(), image_get_comp_name().
38131
38132     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38133
38134 commit e99c26694a384221d336f6448c06a57479c0baa4
38135 Author: Marian Balakowicz <m8@semihalf.com>
38136 Date:   Thu Jan 31 13:20:07 2008 +0100
38137
38138     [new uImage] Remove standalone applications handling from boootm
38139
38140     Standalone applications are supposed to be run using the "go" command.
38141     This patch removes standalone images handling from the do_bootm().
38142
38143     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38144
38145 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
38146 Author: Marian Balakowicz <m8@semihalf.com>
38147 Date:   Thu Jan 31 13:20:07 2008 +0100
38148
38149     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
38150
38151     Support for OF_FLAT_TREE is to be obsoleted in the near future,
38152     remove related code from the bootm routines.
38153
38154     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38155
38156 commit 82850f3d32a2661868ec6876bed7a22c55cef718
38157 Author: Marian Balakowicz <m8@semihalf.com>
38158 Date:   Thu Jan 31 13:20:06 2008 +0100
38159
38160     [new uImage] Use image API in SH do_bootm_linux() routine
38161
38162     Introduce image handling API for lately added Hitachi SH architecture.
38163
38164     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38165
38166 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
38167 Author: Marian Balakowicz <m8@semihalf.com>
38168 Date:   Thu Jan 31 13:20:06 2008 +0100
38169
38170     [new uImage] Rename architecture specific bootm code files
38171
38172     Implementation of the do_bootm_linux() and other bootm helper routines is
38173     architecture specific code. As such it resides in lib_<arch> directories
38174     in files named <arch>_linux.c
38175
38176     This patch renames those files to a more clear and accurate
38177     lib_<arch>/bootm.c form.
38178
38179     List of the renamed files:
38180        lib_arm/armlinux.c -> lib_arm/bootm.c
38181        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
38182        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
38183        lib_i386/i386_linux.c -> lib_i386/bootm.c
38184        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
38185        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
38186        lib_mips/mips_linux.c -> lib_mips/bootm.c
38187        lib_nios/nios_linux.c -> lib_nios/bootm.c
38188        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
38189        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
38190        lib_sh/sh_linux.c -> lib_sh/bootm.c
38191
38192     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38193
38194 commit 7582438c285bf0cef82909d0f232de64ec567a8a
38195 Author: Marian Balakowicz <m8@semihalf.com>
38196 Date:   Thu Jan 31 13:20:06 2008 +0100
38197
38198     [new uImage] Return error on image move/uncompress overwrites
38199
38200     Check for overwrites during image move/uncompress, return with error
38201     when the original image gets corrupted. Report clear message to the user
38202     and prevent further troubles when pointer to the corrupted images is passed
38203     to do_bootm_linux routine.
38204
38205     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38206
38207 commit f13e7b2e993c61fed1f607962501e051940d6e80
38208 Author: Marian Balakowicz <m8@semihalf.com>
38209 Date:   Tue Jan 8 18:12:17 2008 +0100
38210
38211     [new uImage] Cleanup image header pointer use in bootm code
38212
38213     - use single image header pointer instead of a set of auxilliary variables.
38214     - add multi component image helper routines: get component size/data address
38215
38216     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38217
38218 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
38219 Author: Marian Balakowicz <m8@semihalf.com>
38220 Date:   Tue Jan 8 18:17:10 2008 +0100
38221
38222     [new uImage] Cleanup cmd_bootm.c
38223
38224     - sort and cleanup headers, declarations, etc.
38225     - group related routines
38226     - cleanup indentation, white spaces
38227
38228     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38229
38230 commit af13cdbc01eaf88880978bfb4f603e012818ba24
38231 Author: Marian Balakowicz <m8@semihalf.com>
38232 Date:   Tue Jan 8 18:11:45 2008 +0100
38233
38234     [new uImage] Add memmove_wd() common routine
38235
38236     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
38237
38238     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38239
38240 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
38241 Author: Marian Balakowicz <m8@semihalf.com>
38242 Date:   Tue Jan 8 18:11:44 2008 +0100
38243
38244     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
38245
38246     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38247
38248 commit 15158971f49255ccef54f0979a942cfd3de2ae52
38249 Author: Marian Balakowicz <m8@semihalf.com>
38250 Date:   Tue Jan 8 18:11:44 2008 +0100
38251
38252     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
38253
38254     Use image header copy instead of a (possibly corrupted) pointer to
38255     a initial image location.
38256
38257     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38258
38259 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
38260 Author: Marian Balakowicz <m8@semihalf.com>
38261 Date:   Tue Jan 8 18:11:44 2008 +0100
38262
38263     [new uImage] Remove I386 uImage fake_header() routine
38264
38265     I386 targets are not using a uImage format, instead fake header
38266     is added to ram image before it is further processed by bootm.
38267
38268     Remove this fixup and force proper uImage use for I386.
38269
38270     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38271
38272 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
38273 Author: Marian Balakowicz <m8@semihalf.com>
38274 Date:   Tue Jan 8 18:11:44 2008 +0100
38275
38276     [new uImage] Move CHUNKSZ definition to image.h
38277
38278     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
38279     move this definition to a common header.
38280
38281     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38282
38283 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
38284 Author: Marian Balakowicz <m8@semihalf.com>
38285 Date:   Tue Jan 8 18:11:43 2008 +0100
38286
38287     [new uImage] Move gunzip() common code to common/gunzip.c
38288
38289     Move gunzip(), zalloc() and zfree() to a separate file.
38290     Share zalloc() and zfree() with cramfs uncompress routine.
38291
38292     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38293
38294 commit d45d5a18b6b36688f2365623f9d550566c664b5b
38295 Author: Marian Balakowicz <m8@semihalf.com>
38296 Date:   Tue Jan 8 18:11:43 2008 +0100
38297
38298     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
38299
38300     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
38301     readable in PPC variant of do_bootm_linux() routine.
38302
38303     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38304
38305 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
38306 Author: Marian Balakowicz <m8@semihalf.com>
38307 Date:   Tue Jan 8 18:11:43 2008 +0100
38308
38309     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
38310
38311     PPC implementation of do_bootm_linux() routine is moved to
38312     a dedicated file lib_ppc/ppc_linux.c
38313
38314     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38315
38316 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
38317 Author: Marian Balakowicz <m8@semihalf.com>
38318 Date:   Tue Jan 8 18:14:09 2008 +0100
38319
38320     [new uImage] Define a API for image handling operations
38321
38322     - Add inline helper macros for basic header processing
38323     - Move common non inline code common/image.c
38324     - Replace direct header access with the API routines
38325     - Rename IH_CPU_* to IH_ARCH_*
38326
38327     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38328
38329 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
38330 Author: Marian Balakowicz <m8@semihalf.com>
38331 Date:   Thu Jan 31 13:19:58 2008 +0100
38332
38333     Add missing cmd_ximg.o to common/Makefile
38334
38335     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38336
38337 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
38338 Author: Grzegorz Bernacki <gjb@semihalf.com>
38339 Date:   Mon Jan 28 10:15:02 2008 +0100
38340
38341     ADS5121e: DDR2 init/timing update.
38342
38343     Signed-off-by: John Rigby <jrigby@freescale.com>
38344     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38345
38346 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
38347 Author: John Rigby <jrigby@freescale.com>
38348 Date:   Wed Jan 30 13:36:57 2008 -0700
38349
38350     Device tree updates
38351
38352     Changes to match 5121 device tree going mainline in 2.6.25.
38353
38354     Change OF_SOC from "soc5121" to plain "soc".
38355     Remove unneeded "ref-frequency" fixups.
38356     Remove "address" enetaddr fixup.
38357
38358     Add bus-frequency fixup for old OF_SOC so old
38359     kernels with old device trees will work with new
38360     u-boot with 66MHz IPS clock
38361
38362     Signed-off-by: John Rigby <jrigby@freescale.com>
38363
38364 commit de55d18df3ff2ea614624e74793de7c43520e0e7
38365 Author: John Rigby <jrigby@freescale.com>
38366 Date:   Wed Jan 30 13:36:56 2008 -0700
38367
38368     Change IPS freq to 66MHz
38369
38370     Recommended frequency is 66MHz
38371     Change divider from 4 to 3.
38372
38373     Signed-off-by: John Rigby <jrigby@freescale.com>
38374
38375 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
38376 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38377 Date:   Mon Jan 14 22:38:55 2008 +0100
38378
38379     xsengine: rename board_post_init to board_late_init
38380
38381     missing migration from "Cleanup of some init functions"
38382     in c837dcb1a316745092567bfe4fb266d0941884ff
38383
38384     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38385
38386 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
38387 Author: Larry Johnson <lrj@acm.org>
38388 Date:   Sat Jan 12 23:35:33 2008 -0500
38389
38390     Add attribute POST_PREREL to ECC memory POST
38391
38392     Signed-off-by: Larry Johnson <lrj@acm.org>
38393
38394 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
38395 Author: Kumar Gala <galak@kernel.crashing.org>
38396 Date:   Thu Jan 17 08:25:45 2008 -0600
38397
38398     QE: Move FDT support into a common file
38399
38400     Move the flat device tree setup for QE related devices into
38401     a common file shared between 83xx & 85xx platforms that have QE's.
38402
38403     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38404
38405 commit d38da537943cd36356b9d3d9d9b60533554b81d8
38406 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38407 Date:   Wed Jan 23 17:20:14 2008 +0100
38408
38409     AVR32: Make SDRAM refresh rate configurable
38410
38411     The existing code assumes the SDRAM row refresh period should always
38412     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
38413     refresh rate should really be 7.81 us.
38414
38415     Add a refresh_period member to struct sdram_info and initialize it
38416     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
38417     panic() until the refresh_period member is updated properly.
38418
38419     Big thanks to Gerhard Berghofer for pointing out this issue.
38420
38421     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38422
38423 commit 61151cccb660cdb06a07fb283de6089913d7bde0
38424 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38425 Date:   Thu Apr 19 10:10:11 2007 +0200
38426
38427     ATSTK1000: Fix potential flash programming bug
38428
38429     The (now obsolete) atngw100 flash programming code was having problems
38430     programming the onboard at49bv642 chip. The atstk1000 flash
38431     programming code may have the same bug, so import fix for this problem
38432     from the AVR32 Linux BSP.
38433
38434     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38435
38436 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
38437 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38438 Date:   Thu Nov 22 17:04:13 2007 +0100
38439
38440     ATSTK1004: Fix comment about default load address
38441
38442     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
38443     wouldn't have worked anyway since the board can only access 4MB of
38444     SDRAM.
38445
38446     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38447
38448 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
38449 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38450 Date:   Thu Nov 22 17:01:24 2007 +0100
38451
38452     ATSTK1002: Use SDRAM + 4MB as default load address
38453
38454     Many people run into problems when they compile a big kernel and load
38455     the uImage at the default SDRAM + 2MB address as the kernel will
38456     overwrite the uImage as it is being unpacked. Increase the default
38457     load address so that we can load a 4MB kernel image without any
38458     problems.
38459
38460     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38461
38462 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
38463 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38464 Date:   Thu Nov 22 16:51:39 2007 +0100
38465
38466     ATNGW100: Fix default mtest range
38467
38468     Let mtest cover the whole SDRAM except the last megabyte, which is
38469     where u-boot lives.
38470
38471     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38472
38473 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
38474 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
38475 Date:   Tue Jan 22 15:31:56 2008 +0900
38476
38477     sh: Fix register address of SH7722.
38478
38479     The address of SH7722 is wrong by old document.
38480     This patch fixes this problem.
38481
38482     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
38483
38484 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
38485 Author: Mike Frysinger <vapier@gentoo.org>
38486 Date:   Mon Feb 4 19:26:57 2008 -0500
38487
38488     new command for displaying strings at specified memory locations
38489
38490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38491
38492 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
38493 Author: Mike Frysinger <vapier@gentoo.org>
38494 Date:   Mon Feb 4 19:26:57 2008 -0500
38495
38496     rewrite/cleanup Blackfin RTC driver
38497
38498     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38499
38500 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
38501 Author: Mike Frysinger <vapier@gentoo.org>
38502 Date:   Mon Feb 4 19:26:57 2008 -0500
38503
38504     generate u-boot.ldr for Blackfin targets
38505
38506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38507
38508 commit b779f7a59530436040f157f7841db7ab796542df
38509 Author: Mike Frysinger <vapier@gentoo.org>
38510 Date:   Mon Feb 4 19:26:57 2008 -0500
38511
38512     scrub unused symbols
38513
38514     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38515
38516 commit cc2977acc3bbbb7850f16645dd1081f95335868d
38517 Author: Mike Frysinger <vapier@gentoo.org>
38518 Date:   Mon Feb 4 19:26:57 2008 -0500
38519
38520     move Blackfin cpu object list to respective cpu directories
38521
38522     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38523
38524 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
38525 Author: Mike Frysinger <vapier@gentoo.org>
38526 Date:   Mon Feb 4 19:26:57 2008 -0500
38527
38528     interface to Blackfin on-chip One-Time-Programmable memory
38529
38530     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38531
38532 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
38533 Author: Mike Frysinger <vapier@gentoo.org>
38534 Date:   Mon Feb 4 19:26:56 2008 -0500
38535
38536     add support for memory commands with Blackfin L1 instruction memory
38537
38538     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38539
38540 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
38541 Author: Mike Frysinger <vapier@gentoo.org>
38542 Date:   Mon Feb 4 19:26:56 2008 -0500
38543
38544     use C code rather than inline assembly
38545
38546     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38547
38548 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
38549 Author: Mike Frysinger <vapier@gentoo.org>
38550 Date:   Mon Feb 4 19:26:56 2008 -0500
38551
38552     add Blackfin-specific reginfo command
38553
38554     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38555
38556 commit 0858b835e7ea501ea084d34cef75932f098342bb
38557 Author: Mike Frysinger <vapier@gentoo.org>
38558 Date:   Mon Feb 4 19:26:55 2008 -0500
38559
38560     add support for Blackfin symbol prefixes to examples
38561
38562     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38563
38564 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
38565 Author: Mike Frysinger <vapier@gentoo.org>
38566 Date:   Mon Feb 4 19:26:55 2008 -0500
38567
38568     add Blackfin-specific bdinfo command
38569
38570     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38571
38572 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
38573 Author: Mike Frysinger <vapier@gentoo.org>
38574 Date:   Mon Feb 4 19:26:55 2008 -0500
38575
38576     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
38577
38578     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38579
38580 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
38581 Author: Mike Frysinger <vapier@gentoo.org>
38582 Date:   Mon Feb 4 19:26:55 2008 -0500
38583
38584     unify the Blackfin board targets
38585
38586     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38587
38588 commit d4d7730853e5d675f76ec666807da3028c91d592
38589 Author: Mike Frysinger <vapier@gentoo.org>
38590 Date:   Mon Feb 4 19:26:55 2008 -0500
38591
38592     punt Blackfin VDSP headers and import sanitized/auto-generated ones
38593
38594     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38595
38596 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
38597 Author: Mike Frysinger <vapier@gentoo.org>
38598 Date:   Mon Feb 4 19:26:54 2008 -0500
38599
38600     always pull in asm/blackfin.h for Blackfin ports
38601
38602     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38603
38604 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
38605 Author: Mike Frysinger <vapier@gentoo.org>
38606 Date:   Mon Feb 4 19:26:54 2008 -0500
38607
38608     add missing __raw versions of Blackfin read/write io functions
38609
38610     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38611
38612 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
38613 Author: Mike Frysinger <vapier@gentoo.org>
38614 Date:   Mon Feb 4 19:26:54 2008 -0500
38615
38616     add the default Blackfin logo used by Blackfin boards with splash screens
38617
38618     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38619
38620 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
38621 Author: Mike Frysinger <vapier@gentoo.org>
38622 Date:   Mon Feb 4 19:26:54 2008 -0500
38623
38624     add some more Blackfin docs
38625
38626     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38627
38628 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
38629 Author: Mike Frysinger <vapier@gentoo.org>
38630 Date:   Mon Feb 4 19:26:54 2008 -0500
38631
38632     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
38633
38634     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38635
38636 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
38637 Author: Mike Frysinger <vapier@gentoo.org>
38638 Date:   Mon Feb 4 19:26:54 2008 -0500
38639
38640     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
38641
38642     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38643
38644 commit b45264ee85cbd92020640a32e02fb434fd557108
38645 Author: Mike Frysinger <vapier@gentoo.org>
38646 Date:   Mon Feb 4 19:26:53 2008 -0500
38647
38648     add gitignores for Blackfin pieces
38649
38650     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38651
38652 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
38653 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38654 Date:   Fri Jan 18 01:14:03 2008 +0100
38655
38656     TFTP: add host ip addr support
38657
38658     allow to use a different server as set in serverip
38659     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
38660     if not defined the max length will be at 128
38661
38662     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38663
38664 commit e56b4b494cd92def577969f9678395aa22d34c9f
38665 Author: Timur Tabi <timur@freescale.com>
38666 Date:   Wed Jan 9 14:35:26 2008 -0600
38667
38668     85xx,86xx: Determine I2C clock frequencies and store in global_data
38669
38670     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
38671
38672     Update the get_clocks() function in 85xx and 86xx to determine the I2C
38673     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
38674
38675     Signed-off-by: Timur Tabi <timur@freescale.com>
38676
38677 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
38678 Author: Wolfgang Denk <wd@denx.de>
38679 Date:   Thu Dec 27 10:56:54 2007 +0100
38680
38681     OMAP5912: fix FIFO handling in UART driver
38682
38683     According to the OMAP5912 Serial Interfaces Reference Guide (see
38684     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
38685     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
38686     changed when the baud clock is not running, i. e. when both DLL and
38687     DLH are set to 0.
38688
38689     Thus make sure that DLL and DLH are 0 when writing the FCR.
38690
38691     Signed-off-by: Wolfgang Denk <wd@denx.de>
38692
38693 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
38694 Author: Harald Welte <laforge@openmoko.org>
38695 Date:   Wed Dec 19 15:10:52 2007 +0100
38696
38697     ARM: S3C24x0 SoC NAND controller support
38698
38699     This patch adds NAND support to the S3C24x0 SoC code in u-boot
38700
38701     Signed-off-by: Harald Welte <laforge@openmoko.org>
38702
38703 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
38704 Author: Harald Welte <laforge@openmoko.org>
38705 Date:   Wed Dec 19 14:24:40 2007 +0100
38706
38707     ARM: s3c24xx: Multiple serial port support
38708
38709     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
38710
38711     Signed-off-by: Harald Welte <laforge@openmoko.org>
38712
38713 commit a25f72f1f73a11de68251fb88c89991e202e68fa
38714 Author: Harald Welte <laforge@openmoko.org>
38715 Date:   Wed Dec 19 14:16:57 2007 +0100
38716
38717     ARM: arm920t: Allow use of 'gd' pointer from IRQ
38718
38719     This patch allows us to use the 'gd' pointer (and thus environment
38720     and everything else associated with it) from interrupt context on
38721     arm920t.
38722
38723     Signed-off-by: Harald Welte <laforge@openmoko.org>
38724
38725 commit be19bd5cd0f454b63298844a0b5377e029b2caad
38726 Author: Harald Welte <laforge@openmoko.org>
38727 Date:   Wed Dec 19 14:19:38 2007 +0100
38728
38729     ARM: arm920/s3c24xx: IRQ demulitplexer callback
38730
38731     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
38732     plus a stub implementation of it for the S3C2410.
38733
38734     The purpose is to allow arm920t implementations such as the s3c24x0 to
38735     implement interrupt handlers in u-boot without having to touch core
38736     arm920t code.
38737
38738     Signed-off-by: Harald Welte <laforge@openmoko.org>
38739
38740 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
38741 Author: Hebbar <gururajakr@sanyo.co.in>
38742 Date:   Tue Dec 18 16:03:07 2007 -0800
38743
38744     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
38745
38746     Add ifdef to bdinfo command to display ethernet information
38747     only if CONFIG_CMD_NET is defined for arm modules.
38748
38749     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
38750
38751 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
38752 Author: Hebbar <gururajakr@sanyo.co.in>
38753 Date:   Tue Dec 18 16:00:54 2007 -0800
38754
38755     ARM: add I2C init function call in lib_arm/board.c
38756
38757     Adds I2C init func call to init sequence for ARM boards. This is
38758     present in ppc,blackfin and other processor init sequence.
38759
38760     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
38761
38762 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
38763 Author: Stefan Roese <sr@denx.de>
38764 Date:   Fri Feb 1 09:38:29 2008 +0100
38765
38766     ppc4xx: Fix ndfc HW ECC byte order
38767
38768     The current ndfc HW ECC implementation swaps the first two ECC bytes.
38769     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
38770     so this swapping in the HW ECC driver is bogus. This patch fixes this
38771     problem and now really uses the SMC ECC byte order.
38772
38773     Thanks to Sean MacLennan for pointing this out.
38774
38775     Signed-off-by: Stefan Roese <sr@denx.de>
38776
38777 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
38778 Author: Stefan Roese <sr@denx.de>
38779 Date:   Wed Jan 30 15:35:50 2008 +0100
38780
38781     ppc4xx: Fix GPIO configuration for pcs440ep
38782
38783     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
38784     49-63 for GPIO. They have been configured as trace signals. This patch
38785     fixes this by clearing the corresponding bit.
38786
38787     Signed-off-by: Stefan Roese <sr@denx.de>
38788
38789 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
38790 Author: Stefan Roese <sr@denx.de>
38791 Date:   Wed Jan 30 14:48:28 2008 +0100
38792
38793     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
38794
38795     Signed-off-by: Stefan Roese <sr@denx.de>
38796
38797 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
38798 Author: Ladislav Michl <ladis@linux-mips.org>
38799 Date:   Fri Dec 7 00:42:32 2007 +0100
38800
38801     ARM: Board voiceblue update
38802
38803     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
38804
38805 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
38806 Author: Ladislav Michl <ladis@linux-mips.org>
38807 Date:   Thu Dec 6 23:24:57 2007 +0100
38808
38809     ARM: AT91RM9200 based boards config cleanup
38810
38811     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
38812
38813     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
38814     indentation.
38815
38816 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
38817 Author: Ladislav Michl <ladis@linux-mips.org>
38818 Date:   Thu Dec 6 22:59:16 2007 +0100
38819
38820     ARM: Fix at91rm9200dk base address
38821
38822     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
38823     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
38824     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
38825     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
38826     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
38827     I'm sending this patch 4th (!) time in hope it produces at least some
38828     reaction.
38829
38830     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
38831
38832     Fix at91rm9200dk base and environment address.
38833
38834 commit c95219fae2a7add7daa2f91aedca65b1698465c7
38835 Author: stefano babic <sbabic@denx.de>
38836 Date:   Tue Nov 20 10:40:24 2007 +0100
38837
38838     MMC for PXA 27X (resubmit)
38839
38840     MMC support for X_Scale PXA is broken and does not work.
38841     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
38842     There were already some patches around the world but none of them was
38843     merged into the official u-boot tree.
38844
38845     This patch makes order fixing this issue. Resubmit after code cleanup.
38846
38847     Applied and tested on PXA 270 (TrizepsIV module).
38848
38849     Signed-off-by: Stefano Babic <sbabic@denx.de>
38850
38851 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
38852 Author: stefano babic <sbabic@denx.de>
38853 Date:   Tue Nov 20 10:37:04 2007 +0100
38854
38855     Fix gcc issues in pxa-regs.h
38856
38857     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
38858     issues generates wrong code.
38859     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
38860     This patch fixes the problem and solves the gcc-4 issues as the linux
38861     kernel does.
38862
38863     Signed-off-by: Stefano Babic <sbabic@denx.de>
38864     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
38865
38866 commit 7047b388876e7b905b2ec4edb8010543e3641b85
38867 Author: Jens Gehrlein <sew_s@tqs.de>
38868 Date:   Tue Jan 29 08:45:03 2008 +0100
38869
38870     TQM834x: enable DHCP
38871
38872     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
38873     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38874
38875 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
38876 Author: Jens Gehrlein <sew_s@tqs.de>
38877 Date:   Tue Jan 29 08:45:02 2008 +0100
38878
38879     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
38880
38881     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
38882     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38883
38884 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
38885 Author: Ben Warren <biggerbadderben@gmail.com>
38886 Date:   Sat Jan 26 23:41:19 2008 -0500
38887
38888     Fix conditional compilation of mpx8xxx_spi driver
38889
38890     This driver should only compile if CONFIG_MPC8XXX_SPI is set
38891
38892     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38893     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38894
38895 commit 63f732d3d3880feb531f48af247c025bf01462b0
38896 Author: Rafal Jaworowski <raj@semihalf.com>
38897 Date:   Tue Jan 29 17:00:34 2008 +0100
38898
38899     API: Provide dummy halt() in the glue layer.
38900
38901     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
38902
38903     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
38904
38905 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
38906 Author: Rafal Jaworowski <raj@semihalf.com>
38907 Date:   Tue Jan 29 16:57:38 2008 +0100
38908
38909     API: Convert conditional building to the new scheme.
38910
38911     This fixes a build breakage with CONFIG_API enabled, which appeared after
38912     the recent changes in the U-Boot build system.
38913
38914     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
38915
38916 commit 98b742489c09780be6a832eeaa4e5eff824792bb
38917 Author: Wolfgang Denk <wd@denx.de>
38918 Date:   Fri Jan 25 09:56:17 2008 +0100
38919
38920     inka4x0: remove dead code
38921
38922     Signed-off-by: Wolfgang Denk <wd@denx.de>
38923
38924 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
38925 Author: Becky Bruce <becky.bruce@freescale.com>
38926 Date:   Wed Jan 23 16:31:06 2008 -0600
38927
38928     86xx: Add reginfo command
38929
38930     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38931
38932 commit ddcebcb638715a6278da93b553d5016f99823816
38933 Author: Becky Bruce <becky.bruce@freescale.com>
38934 Date:   Wed Jan 23 16:31:05 2008 -0600
38935
38936     86xx: Add print_laws function to fsl_law.c
38937
38938     This can be used for debug, and will be used by board code
38939     to help implement reginfo.
38940
38941     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38942
38943 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
38944 Author: Becky Bruce <becky.bruce@freescale.com>
38945 Date:   Wed Jan 23 16:31:04 2008 -0600
38946
38947     86xx: Remove old-style law setup code
38948
38949     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
38950
38951     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38952
38953 commit 713d8186649dae874613d495b0cecaa039a98b30
38954 Author: Becky Bruce <becky.bruce@freescale.com>
38955 Date:   Wed Jan 23 16:31:03 2008 -0600
38956
38957     86xx: Convert sbc8641d to use new law setup code.
38958
38959     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38960
38961 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
38962 Author: Becky Bruce <becky.bruce@freescale.com>
38963 Date:   Wed Jan 23 16:31:02 2008 -0600
38964
38965     86xx: Convert mpc8610hpcd to new law setup method.
38966
38967     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38968
38969 commit 4933b91f8a49e436681f163df3173beb91cac44a
38970 Author: Becky Bruce <becky.bruce@freescale.com>
38971 Date:   Wed Jan 23 16:31:01 2008 -0600
38972
38973     86xx: Support new law setup method and convert mpc8641
38974
38975     Adds the support code in cpu/mpc86xx for the new law setup code
38976     recently created fsl_law.c, and changes the MPC8641HPCN config
38977     to use this code.
38978
38979     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38980
38981 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
38982 Author: Becky Bruce <becky.bruce@freescale.com>
38983 Date:   Wed Jan 23 16:31:00 2008 -0600
38984
38985     86xx: Rearrange the sequence in start.S
38986
38987     * split the BAT initialization so that only 2 BATs (for the boot page
38988     and stack) are programmed very early on.  The rest are initialized later.
38989     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
38990     after translation has been enabled.
38991
38992     These changes will facilitate the moving of law and BAT initialization
38993     to C code, and will aid with 36-bit physical addressing support.
38994
38995     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38996
38997 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
38998 Author: Wolfgang Denk <wd@denx.de>
38999 Date:   Wed Jan 23 14:41:37 2008 +0100
39000
39001     Coding Style Cleanup; update CHANGELOG
39002
39003     Signed-off-by: Wolfgang Denk <wd@denx.de>
39004
39005 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
39006 Author: Wolfgang Denk <wd@denx.de>
39007 Date:   Wed Jan 23 14:31:17 2008 +0100
39008
39009     Coding Style Cleanup; update CHANGELOG
39010
39011     Signed-off-by: Wolfgang Denk <wd@denx.de>
39012
39013 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
39014 Author: Dave Liu <r63238@freescale.com>
39015 Date:   Fri Jan 18 10:07:04 2008 +0800
39016
39017     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
39018
39019     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
39020     cause the 83xx immap broken, so the DMA and PCI will
39021     be failed.
39022
39023     The patch fix the struct spi8xxx and rm struct spi83xx.
39024
39025     Signed-off-by: Dave Liu <daveliu@freescale.com>
39026     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39027
39028 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
39029 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39030 Date:   Sat Apr 14 17:11:49 2007 +0200
39031
39032     AVR32: ATNGW100 board support
39033
39034     Add support for the ATNGW100 Network Gateway reference design,
39035     including flash, ethernet and MMC support.
39036
39037     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39038
39039 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
39040 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
39041 Date:   Sat Nov 24 18:15:31 2007 +0100
39042
39043     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
39044
39045     I don't know why the relevant layers can't do this by itself, but this
39046     is what ppc does.
39047
39048     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39049
39050 commit 799891ef7b1b3432032ec23466df6b665a797fa4
39051 Author: Michael Schwingen <michael@schwingen.org>
39052 Date:   Fri Jan 18 00:04:28 2008 +0100
39053
39054     Add AcTux board support
39055
39056     Hi,
39057
39058     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
39059     files that
39060     contain changes for multiple boards, the board-specific files follow as
39061     separate patches.
39062
39063     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39064
39065 commit 66a4344a4d910a11125df7768899ad529719855e
39066 Author: Michael Schwingen <michael@schwingen.org>
39067 Date:   Wed Jan 16 19:53:23 2008 +0100
39068
39069     add AcTux-4 board support
39070
39071     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39072
39073 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
39074 Author: Michael Schwingen <michael@schwingen.org>
39075 Date:   Wed Jan 16 19:51:55 2008 +0100
39076
39077     add AcTux-3 board support
39078
39079     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39080
39081 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
39082 Author: Michael Schwingen <michael@schwingen.org>
39083 Date:   Wed Jan 16 19:51:14 2008 +0100
39084
39085     add AcTux-2 board support
39086
39087     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39088
39089 commit ea99e8f05b7240fd657739e286664664ae160abe
39090 Author: Michael Schwingen <michael@schwingen.org>
39091 Date:   Wed Jan 16 19:50:37 2008 +0100
39092
39093     add AcTux-1 board support
39094
39095     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39096
39097 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
39098 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39099 Date:   Mon Jan 14 19:20:08 2008 +0100
39100
39101     ARM: remove useless function board_post_init
39102
39103     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39104
39105 commit 96bd462942022e4569b582c072a0ed26de1cd19b
39106 Author: Michael Schwingen <michael@schwingen.org>
39107 Date:   Thu Jan 10 14:59:46 2008 +0100
39108
39109     IXP: enable RTS
39110
39111     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
39112     No handshaking is done, but the active RTS signal allows to
39113     connect to the target using a PC which is using RTS/CTS
39114     handshake, and does no harm if the PC is set to ignore RTS.
39115
39116     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39117
39118 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
39119 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39120 Date:   Mon Jan 7 08:41:34 2008 +0100
39121
39122     IXP: add dynamic microcode addr
39123
39124     allow to load the microde from flash or ram by download it through
39125     the serial or other.
39126
39127     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39128     Acked-by: Stefan Roese <sr@denx.de>
39129
39130 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
39131 Author: Michael Schwingen <michael@schwingen.org>
39132 Date:   Sat Nov 10 15:44:12 2007 +0100
39133
39134     load ixp42x NPE firmware from separate flash block, remove dead code
39135
39136     Hi,
39137
39138     the following patch adds support to move the IXP42X NPE firmware to a
39139     separate flash block, whose start address is defined in
39140     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
39141     NPE-enabled u-boot without copyright problems due to the NPE firmware.
39142
39143     I hope the patch applies, I get whitespace-related differences in the NPE
39144     files due to trailing whitespace in the original versions.
39145
39146     Signed-off-by: Michael Schwingen <michael@schwingen.org>
39147     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39148
39149 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
39150 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39151 Date:   Tue Jan 15 14:15:46 2008 -0600
39152
39153     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
39154
39155     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39156     Signed-off by: John Rigby <jrigby@freescale.com>
39157
39158 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
39159 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39160 Date:   Tue Jan 15 14:02:49 2008 -0600
39161
39162     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
39163
39164     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39165     Signed-off by: John Rigby <jrigby@freescale.com>
39166
39167 commit 777d1abd9796f1c2e148417cc10657e847d318ce
39168 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39169 Date:   Tue Jan 15 14:00:25 2008 -0600
39170
39171     ColdFire: Add MCF547x_8x FEC driver
39172
39173     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39174     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39175     Signed-off by: John Rigby <jrigby@freescale.com>
39176
39177 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
39178 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39179 Date:   Tue Jan 15 13:54:09 2008 -0600
39180
39181     ColdFire: Add MCF547x_8x dma code and header files
39182
39183     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39184     Signed-off by: John Rigby <jrigby@freescale.com>
39185
39186 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
39187 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39188 Date:   Tue Jan 15 13:52:03 2008 -0600
39189
39190     ColdFire: Add MCF547x_8x dma code - 2
39191
39192     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39193     Signed-off by: John Rigby <jrigby@freescale.com>
39194
39195 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
39196 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39197 Date:   Tue Jan 15 13:48:52 2008 -0600
39198
39199     ColdFire: Add MCF547x_8x dma code - 1
39200
39201     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39202     Signed-off by: John Rigby <jrigby@freescale.com>
39203
39204 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
39205 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39206 Date:   Tue Jan 15 13:39:44 2008 -0600
39207
39208     ColdFire: Add MCF547x_8x related header files
39209
39210     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39211     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39212     Signed-off by: John Rigby <jrigby@freescale.com>
39213
39214 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
39215 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39216 Date:   Tue Jan 15 13:37:34 2008 -0600
39217
39218     ColdFire: Add MCF547x_8x cpu arch
39219
39220     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39221     Signed-off by: John Rigby <jrigby@freescale.com>
39222
39223 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
39224 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39225 Date:   Mon Jan 14 17:47:23 2008 -0600
39226
39227     ColdFire: Add MCF5227x cpu and M52277EVB support-3
39228
39229     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39230     Signed-off by: John Rigby <jrigby@freescale.com>
39231
39232 commit c87581027994c148131b2f11aa75501f782ec19a
39233 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39234 Date:   Mon Jan 14 17:46:19 2008 -0600
39235
39236     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
39237
39238     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39239     Signed-off by: John Rigby <jrigby@freescale.com>
39240
39241 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
39242 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39243 Date:   Mon Jan 14 17:43:33 2008 -0600
39244
39245     ColdFire: Add MCF5227x cpu and M52277EVB support-1
39246
39247     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39248     Signed-off by: John Rigby <jrigby@freescale.com>
39249
39250 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
39251 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39252 Date:   Mon Jan 14 17:35:44 2008 -0600
39253
39254     ColdFire: Fix CFI Flash low level Read/Write macro
39255
39256     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39257     Signed-off by: John Rigby <jrigby@freescale.com>
39258
39259 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
39260 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39261 Date:   Mon Jan 14 17:23:08 2008 -0600
39262
39263     ColdFire: Add M5373EVB platform support - 2
39264
39265     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39266     Signed-off by: John Rigby <jrigby@freescale.com>
39267
39268 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
39269 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39270 Date:   Mon Jan 14 17:19:54 2008 -0600
39271
39272     ColdFire: Add M5373EVB platform support - 1
39273
39274     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39275     Signed-off by: John Rigby <jrigby@freescale.com>
39276
39277 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
39278 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39279 Date:   Mon Jan 14 17:17:03 2008 -0600
39280
39281     ColdFire: Update FlexBus CS for MCF532x
39282
39283     Definition update and change from 16bit to 32bit
39284
39285     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39286     Signed-off by: John Rigby <jrigby@freescale.com>
39287
39288 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
39289 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39290 Date:   Mon Jan 14 17:11:47 2008 -0600
39291
39292     ColdFire: PCI and misc updates for MCF5445x
39293
39294     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39295     Signed-off by: John Rigby <jrigby@freescale.com>
39296
39297 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
39298 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39299 Date:   Mon Jan 14 17:06:55 2008 -0600
39300
39301     ColdFire: MCF5445x header files cleanup
39302
39303     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39304     Signed-off by: John Rigby <jrigby@freescale.com>
39305
39306 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
39307 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39308 Date:   Mon Jan 14 16:59:42 2008 -0600
39309
39310     ColdFire: MCF532x header files cleanup
39311
39312     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39313     Signed-off by: John Rigby <jrigby@freescale.com>
39314
39315 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
39316 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39317 Date:   Mon Jan 14 15:30:15 2008 -0600
39318
39319     ColdFire: Add modules header files
39320
39321     Add CF specific modules header files
39322
39323     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39324     Signed-off-by: John Rigby <jrigby@freescale.com>
39325
39326 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
39327 Author: Kim Phillips <kim.phillips@freescale.com>
39328 Date:   Thu Jan 17 12:48:00 2008 -0600
39329
39330     codingstyle cleanup for spi driver
39331
39332     ..and rm unused CONFIG_FSL_SPI define
39333
39334     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39335
39336 commit d59feffb42c9f174116db7a82a311df98983dfce
39337 Author: Haiying Wang <Haiying.Wang@freescale.com>
39338 Date:   Wed Jan 16 17:12:12 2008 -0500
39339
39340     FSL: Fix common EEPROM_data structure definition
39341
39342     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
39343     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
39344       bd->bi_ethaddr.
39345
39346     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39347
39348 commit 6bee764bd6da510a4aad614880300c968bc7318d
39349 Author: Timur Tabi <timur@freescale.com>
39350 Date:   Wed Jan 16 15:48:12 2008 -0600
39351
39352     86xx: enable command-line editing
39353
39354     Enable command-line editing for all MPC86xx boards.
39355
39356     Signed-off-by: Timur Tabi <timur@freescale.com>
39357
39358 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
39359 Author: Ben Warren <biggerbadderben@gmail.com>
39360 Date:   Wed Jan 16 22:37:42 2008 -0500
39361
39362     Implement hard SPI driver on MPC8349EMDS
39363
39364     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
39365     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
39366
39367     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39368     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39369
39370 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
39371 Author: Ben Warren <biggerbadderben@gmail.com>
39372 Date:   Wed Jan 16 22:37:35 2008 -0500
39373
39374     Add support for a Freescale non-CPM SPI controller
39375
39376     This patch adds support for the SPI controller found on Freescale PowerPC
39377     processors such as the MCP834x family.  Additionally, a new config option,
39378     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
39379
39380     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39381     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39382
39383 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
39384 Author: Dave Liu <r63238@freescale.com>
39385 Date:   Thu Jan 17 18:23:19 2008 +0800
39386
39387     mpc83xx: Fix the fatal conflict of merge
39388
39389     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
39390     will cause the mpc8315erdb board can't boot up.
39391
39392     The patch fix that bug, and remove the duplicated #ifdef
39393     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
39394     MPC8313E processor.
39395
39396     Signed-off-by: Dave Liu <daveliu@freescale.com>
39397     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39398
39399 commit 3259eeaa4148125a81417477f62c05bd67f60587
39400 Author: Larry Johnson <lrj@acm.org>
39401 Date:   Thu Jan 17 08:50:09 2008 -0500
39402
39403     Merge Sequoia beautification into Korat code
39404
39405     Signed-off-by: Larry Johnson <lrj@acm.org>
39406
39407 commit e16925773211291b562e77187061e9dd1d757217
39408 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39409 Date:   Thu Jan 17 07:45:05 2008 +0100
39410
39411     net: add 'ethrotate' environment variable
39412
39413     [PATCH] net: add 'ethrotate' environment variable
39414
39415     This patch replaces the buildtime configuration option
39416     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
39417     configuration veriable. See README.
39418
39419     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39420     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39421
39422 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
39423 Author: Stefan Roese <sr@denx.de>
39424 Date:   Thu Jan 17 14:29:04 2008 +0100
39425
39426     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
39427
39428     Signed-off-by: Stefan Roese <sr@denx.de>
39429
39430 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
39431 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39432 Date:   Thu Jan 17 18:07:32 2008 +0900
39433
39434     sh: Remove CONFIG_COMMANDS from MS7720SE config file
39435
39436     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39437
39438 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
39439 Author: Niklaus Giger <niklaus.giger@netstal.com>
39440 Date:   Wed Jan 16 18:39:20 2008 +0100
39441
39442     ppc4xx: Netstal HCU4 board: added various fixes and POST
39443
39444     - Moved some common code to netstal/common/nm_bsp.c.
39445     - sdram initialisation goes go netstal/common/fixed_sdram.c.
39446     - Added support for POST.
39447     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
39448
39449     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39450
39451 commit 69b0634a4ee98c9791815600d43b99f626a952f3
39452 Author: Niklaus Giger <niklaus.giger@netstal.com>
39453 Date:   Thu Jan 17 12:53:56 2008 +0100
39454
39455     ppc4xx: netstal/common define routines used by all boards
39456
39457     Added some routines used by all Netstal boards:
39458     - nm_bsp.c: - nm_show_print and
39459             -  common_misc_init_r
39460             - set_params_for_sw_install. Very specific code to handle our SW
39461               installation procedure
39462     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
39463       to handle sdram initialization.
39464     - nm.h: Common header
39465
39466     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39467
39468 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
39469 Author: Niklaus Giger <niklaus.giger@netstal.com>
39470 Date:   Wed Jan 16 18:39:18 2008 +0100
39471
39472     ppc4xx: Netstal HCU5 board: added various fixes and POST
39473
39474     - Moved some common code to nestal/common/nm_bsp.c.
39475     - Added support for the vxWorks EDR.
39476     - Enable trace for Lauterbach, if present.
39477     - Added support for POST.
39478     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
39479
39480     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39481
39482 commit 4371090e5da77edc7bf9f296364db4801639d9c4
39483 Author: Niklaus Giger <niklaus.giger@netstal.com>
39484 Date:   Wed Jan 16 18:39:08 2008 +0100
39485
39486     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
39487
39488     - Various fixes
39489     - Reduced rom_size from 384 to 320 kB
39490     - Environment is now in flash
39491     - Added POST
39492     - Support for OF
39493
39494     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39495
39496 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
39497 Author: Niklaus Giger <niklaus.giger@netstal.com>
39498 Date:   Wed Jan 16 18:37:50 2008 +0100
39499
39500     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
39501
39502     - Various fixes
39503     - Reduced rom_size from 384 to 320 kB
39504     - Environment is now in flash
39505     - Added POST
39506     - Support for OF
39507
39508     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39509
39510 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
39511 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39512 Date:   Thu Jan 17 10:53:08 2008 +0100
39513
39514     ppc4xx: Complete DU440 board support
39515
39516     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39517
39518 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
39519 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39520 Date:   Thu Jan 17 10:52:30 2008 +0100
39521
39522     ppc4xx: Add DU440 board support
39523
39524     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39525
39526 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
39527 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39528 Date:   Thu Jan 17 15:53:52 2008 +0900
39529
39530     sh: Update SuperH SCIF driver
39531
39532     This patch fixed wrong SH7720 CPU macro and changed macro that
39533     calculated value of SCBRR register.
39534
39535     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39536
39537 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
39538 Author: Grzegorz Bernacki <gjb@semihalf.com>
39539 Date:   Wed Jan 16 15:12:47 2008 +0100
39540
39541     Set ips dividor to 1/4 of csb clock.
39542
39543     Previous setting cause ips clock to be out of spec. This bug was found by John
39544     Rigby from Freescale.
39545
39546     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39547
39548 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
39549 Author: Kumar Gala <galak@kernel.crashing.org>
39550 Date:   Thu Jan 17 02:19:18 2008 -0600
39551
39552     85xx: Get ride of old TLB setup code
39553
39554     Now that all boards have been converted, remove old config code and the
39555     config option for the new style.
39556
39557     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39558
39559 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
39560 Author: Kumar Gala <galak@kernel.crashing.org>
39561 Date:   Thu Jan 17 02:02:10 2008 -0600
39562
39563     85xx: Convert TQM85xx to new TLB setup
39564
39565     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39566
39567 commit 74121b470c14f7eaf284ee838bffca6f9521069e
39568 Author: Kumar Gala <galak@kernel.crashing.org>
39569 Date:   Thu Jan 17 01:56:32 2008 -0600
39570
39571     85xx: Convert STXGP3 & STXSSA to new TLB setup
39572
39573     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39574
39575 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
39576 Author: Kumar Gala <galak@kernel.crashing.org>
39577 Date:   Thu Jan 17 01:44:34 2008 -0600
39578
39579     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
39580
39581     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39582
39583 commit 818218bac6a11591e2542c344d2330e0f4e1968b
39584 Author: Kumar Gala <galak@kernel.crashing.org>
39585 Date:   Thu Jan 17 01:31:34 2008 -0600
39586
39587     85xx: Convert PM854/PM856 to new TLB setup
39588
39589     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39590
39591 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
39592 Author: Kumar Gala <galak@kernel.crashing.org>
39593 Date:   Thu Jan 17 01:25:33 2008 -0600
39594
39595     85xx: Convert MPC8540EVAL to new TLB setup
39596
39597     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39598
39599 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
39600 Author: Kumar Gala <galak@kernel.crashing.org>
39601 Date:   Thu Jan 17 01:12:22 2008 -0600
39602
39603     85xx: Convert MPC8568 MDS to new TLB setup
39604
39605     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39606
39607 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
39608 Author: Kumar Gala <galak@kernel.crashing.org>
39609 Date:   Thu Jan 17 01:01:09 2008 -0600
39610
39611     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
39612
39613     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39614
39615 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
39616 Author: Kumar Gala <galak@kernel.crashing.org>
39617 Date:   Thu Jan 17 00:52:29 2008 -0600
39618
39619     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
39620
39621     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39622
39623 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
39624 Author: Kumar Gala <galak@kernel.crashing.org>
39625 Date:   Thu Jan 17 00:32:17 2008 -0600
39626
39627     85xx: Convert ATUM8548 to new TLB setup
39628
39629     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39630
39631 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
39632 Author: Kumar Gala <galak@kernel.crashing.org>
39633 Date:   Wed Jan 16 23:11:57 2008 -0600
39634
39635     85xx: Convert MPC8544 DS to new TLB setup
39636
39637     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39638
39639 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
39640 Author: Kumar Gala <galak@kernel.crashing.org>
39641 Date:   Wed Jan 16 22:38:34 2008 -0600
39642
39643     85xx: Reworked initial processor init
39644
39645     Reworked the initial processor initialzation sequence:
39646     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
39647     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
39648     * Reworked initial asm code to do most of the core init before TLBs
39649
39650     The main reasons for these changes are to allow handling of 36-bit phys
39651     addresses in the future and some of the issues that will exist when we
39652     do that.
39653
39654     There are a few caveats on what can be initialized via the LAW and TLB
39655     static tables:
39656     * TLB entry 14/15 can't be initialized via the TLB table
39657     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
39658       the code that is currently executing.
39659
39660     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39661
39662 commit 44a23cfd6360a68eaa41f945190618a55519eac3
39663 Author: Kumar Gala <galak@kernel.crashing.org>
39664 Date:   Wed Jan 16 22:33:22 2008 -0600
39665
39666     85xx: Introduce new tlb API
39667
39668     Add a set of functions to manipulate TLB entries:
39669      * set_tlb() - write a tlb entry
39670      * invalidate_tlb() - invalidate a tlb array
39671      * disable_tlb() - disable a variable size tlb entry
39672      * init_tlbs() - setup initial tlbs based on static table
39673
39674     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39675
39676 commit be88b1699863c262818f3af7f60173b4d48df8fc
39677 Author: Stefan Roese <sr@denx.de>
39678 Date:   Thu Jan 17 07:50:17 2008 +0100
39679
39680     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
39681
39682     Signed-off-by: Stefan Roese <sr@denx.de>
39683
39684 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
39685 Author: Kumar Gala <galak@kernel.crashing.org>
39686 Date:   Wed Jan 16 10:04:42 2008 -0600
39687
39688     85xx: Use proper defines for PCI addresses
39689
39690     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
39691     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
39692     be used for configuring the PCI ATMU.
39693
39694     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39695
39696 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
39697 Author: Kumar Gala <galak@kernel.crashing.org>
39698 Date:   Wed Jan 16 09:22:29 2008 -0600
39699
39700     85xx: Remove old style of LAW init
39701
39702     All boards are now using the new fsl_law code so we can drop the old version.
39703
39704     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39705
39706 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
39707 Author: Kumar Gala <galak@kernel.crashing.org>
39708 Date:   Wed Jan 16 09:15:29 2008 -0600
39709
39710     85xx: convert remaining 85xx boards over to use new LAW init code
39711
39712     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
39713     to use new LAW init code.
39714
39715     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39716
39717 commit 572b13afc42710f2957c382a710360429c0e099b
39718 Author: Kumar Gala <galak@kernel.crashing.org>
39719 Date:   Wed Jan 16 09:11:53 2008 -0600
39720
39721     85xx: convert STXGP3/STXSSA over to use new LAW init code
39722
39723     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39724
39725 commit 45f2166ac0233a9263058378f39612bd11f61196
39726 Author: Kumar Gala <galak@kernel.crashing.org>
39727 Date:   Wed Jan 16 09:06:48 2008 -0600
39728
39729     85xx: convert PM854/PM856 over to use new LAW init code
39730
39731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39732
39733 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
39734 Author: Kumar Gala <galak@kernel.crashing.org>
39735 Date:   Wed Jan 16 09:05:27 2008 -0600
39736
39737     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
39738
39739     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39740
39741 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
39742 Author: Kumar Gala <galak@kernel.crashing.org>
39743 Date:   Wed Jan 16 01:45:10 2008 -0600
39744
39745     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
39746
39747     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39748
39749 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
39750 Author: Kumar Gala <galak@kernel.crashing.org>
39751 Date:   Wed Jan 16 01:32:06 2008 -0600
39752
39753     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
39754
39755     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39756
39757 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
39758 Author: Kumar Gala <galak@kernel.crashing.org>
39759 Date:   Wed Jan 16 01:16:16 2008 -0600
39760
39761     85xx: convert MPC8544 DS over to use new LAW init code
39762
39763     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39764
39765 commit 83d40dfd79fe868796275802f60116d84b9e4395
39766 Author: Kumar Gala <galak@kernel.crashing.org>
39767 Date:   Wed Jan 16 01:13:58 2008 -0600
39768
39769     85xx: Move LAW init code into C
39770
39771     Move the initialization of the LAWs into C code and provide an API
39772     to allow modification of LAWs after init.
39773
39774     Board code is responsible to provide a law_table and num_law_entries.
39775
39776     We should be able to use the same code on 86xx as well.
39777
39778     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39779
39780 commit bed8ce838a609aaab136d43b25e6df2a520bc854
39781 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39782 Date:   Sat Dec 22 15:03:12 2007 +0100
39783
39784     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
39785
39786     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39787
39788 commit 0764c164fed6277d359cf132d55187ea34290114
39789 Author: Vlad Lungu <vlad@comsys.ro>
39790 Date:   Wed Jan 16 19:27:51 2008 +0200
39791
39792     MIPS:Target support for qemu -M mips
39793
39794     With serial, NE2000, IDE support. Tested in big-endian mode.
39795     Memory size hard-coded to 128M for now, so don't play with
39796     the -m option.
39797
39798     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
39799
39800 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
39801 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39802 Date:   Fri Jan 11 00:01:37 2008 +0100
39803
39804     Fix nfs command help to reflect that the serverip is optional
39805
39806     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39807     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39808
39809 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
39810 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39811 Date:   Mon Dec 10 22:32:14 2007 +0100
39812
39813     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
39814
39815     and move is_valid_ether_addr board file
39816
39817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39818     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39819
39820 commit c2f896b8fc4722e36915903e1942e138e68ce804
39821 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39822 Date:   Wed Jan 16 16:13:31 2008 +0900
39823
39824     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
39825
39826     rx_status on the memory is basically in LE, but needs to be handled in CPU
39827     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
39828     it'll work fine.
39829
39830     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39831     Cc: Masami Komiya <mkomiya@sonare.it>
39832     Cc: Lucas Jin <lucasjin@gmail.com>
39833     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39834
39835 commit 96a236746fe6a7b84802afb4ed31536696d34812
39836 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39837 Date:   Wed Jan 16 16:12:26 2008 +0900
39838
39839     drivers/net/rtl8139.c: Fix cache coherency issues
39840
39841     Current driver is meant for cache coherent systems. This patch adds
39842     flush_cache() routines to support cache non-coherent systems.
39843
39844     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39845     Cc: Masami Komiya <mkomiya@sonare.it>
39846     Cc: Lucas Jin <lucasjin@gmail.com>
39847     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39848
39849 commit d1276c76c1e2b5035296689280ba1acb2c425104
39850 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39851 Date:   Wed Jan 16 16:11:14 2008 +0900
39852
39853     drivers/net/rtl8139.c: Fix tx timeout
39854
39855     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
39856     does, the condition "(currticks() < to)" becomes invalid and immediately
39857     leads to tx timeout error. This patch introduces the fine-graded udely(10)
39858     loops to ease the impact of wrapping around.
39859
39860     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39861     Cc: Masami Komiya <mkomiya@sonare.it>
39862     Cc: Lucas Jin <lucasjin@gmail.com>
39863     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39864
39865 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
39866 Author: Dave Liu <r63238@freescale.com>
39867 Date:   Fri Jan 11 18:45:28 2008 +0800
39868
39869     TSEC: Add the support for RealTek RTL8211B PHY
39870
39871     Add the support of RealTek RTL8211B PHY, the RTL8211B
39872     PHY only supports RGMII and MII mode.
39873
39874     Signed-off-by: Dave Liu <daveliu@freescale.com>
39875     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39876
39877 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
39878 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39879 Date:   Wed Jan 16 09:40:41 2008 +0100
39880
39881     Remove annoying debug printout for PHY less boards.
39882
39883     PHY less board prints out lots of "read wrong ...":
39884     read wrong value : mii_id 3,mii_reg 2, base e0102320
39885     read wrong value : mii_id 3,mii_reg 3, base e0102320
39886     UEC: PHY is Generic MII (ffffffff)
39887     read wrong value : mii_id 3,mii_reg 4, base e0102320
39888     read wrong value : mii_id 3,mii_reg 0, base e0102320
39889     read wrong value : mii_id 3,mii_reg 1, base e0102320
39890     read wrong value : mii_id 3,mii_reg 1, base e0102320
39891     read wrong value : mii_id 3,mii_reg 5, base e0102320
39892     read wrong value : mii_id 3,mii_reg 1, base e0102320
39893     read wrong value : mii_id 3,mii_reg 1, base e0102320
39894     read wrong value : mii_id 3,mii_reg 5, base e0102320
39895     FSL UEC0: Full Duplex
39896     FSL UEC0: Speed 100BT
39897     FSL UEC0: Link is up
39898     Using FSL UEC0 device
39899
39900     Make this printout depend on UEC_VERBOSE_DEBUG and
39901     remove its definition in uec_phy.c
39902
39903     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39904     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39905
39906 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
39907 Author: Kim Phillips <kim.phillips@freescale.com>
39908 Date:   Tue Jan 15 14:11:00 2008 -0600
39909
39910     net: reduce boot latency on QE UEC based boards
39911
39912     actually polling for PHY autonegotiation to finish enables us to remove the
39913     5 second boot prompt latency present on QE based boards.
39914
39915     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
39916     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
39917     code shamelessly stolen from tsec driver.
39918
39919     also rm unused CONFIG_RMII_MODE code.
39920
39921     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39922     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39923     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39924
39925 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
39926 Author: michael.firth@bt.com <michael.firth@bt.com>
39927 Date:   Wed Jan 16 11:40:51 2008 +0000
39928
39929     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
39930
39931     The current TSEC driver limits MDIO access to the devices that have been configured as attached
39932     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
39933
39934     Signed-off-by: Michael Firth <michael.firth@bt.com>
39935     Acked-by: Andy Fleming <afleming@freescale.com>
39936     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39937
39938 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
39939 Author: Kim Phillips <kim.phillips@freescale.com>
39940 Date:   Wed Jan 16 00:38:05 2008 -0600
39941
39942     Add support for the MPC837xERDB
39943
39944     MPC837xERDB board support includes:
39945     * DDR2 330MHz hardcoded (soldered on the board)
39946     * Local Bus NOR Flash
39947     * I2C, UART and RTC
39948     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
39949     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
39950     *                  load)
39951
39952     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
39953     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
39954     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39955
39956 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
39957 Author: Kim Phillips <kim.phillips@freescale.com>
39958 Date:   Wed Jan 16 12:06:16 2008 -0600
39959
39960     mpc83xx: add support for more system clock performance controls
39961
39962     System registers that are modified are the Arbiter Configuration
39963     Register (ACR), the System Priority Control Register (SPCR), and the
39964     System Clock Configuration Register (SCCR).
39965
39966     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
39967     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
39968     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39969
39970 commit 16c3cde050e2d243e62b37486f1558570787beb8
39971 Author: James Yang <james.yang@freescale.com>
39972 Date:   Wed Jan 16 11:58:08 2008 -0600
39973
39974     FSL: Generalize PIXIS reset command parsing.
39975
39976     Before, the order of arguments to the pixis_reset
39977     command needed to be supplied in a hard-coded order.
39978     Generalize the command parsing to allow any order.
39979
39980     Signed-off-by: James Yang <james.yang@freescale.com>
39981     Acked-by: Jon Loeliger <jdl@freescale.com>
39982
39983 commit ad8f8687b78c3e917b173f038926695383c55555
39984 Author: Jon Loeliger <jdl@freescale.com>
39985 Date:   Tue Jan 15 13:42:41 2008 -0600
39986
39987     FSL: Convert board/freescale/common/Makefile to use CONFIG_
39988
39989     Convert the board/freescale/common/Makefile to use
39990     CONFIG_* options to select which files to conditionally
39991     compile into the board/freescale/common library rather
39992     than conditionally compiling entire files.
39993
39994     Now handles::
39995         CONFIG_FSL_PIXIS
39996         CONFIG_FSL_DIU_FB
39997         CONFIG_PQ_MDS_PIB
39998
39999     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
40000
40001     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40002
40003 commit 7c2221eb230372a9e537c4f6636b147b0909325f
40004 Author: Roy Zang <tie-fei.zang@freescale.com>
40005 Date:   Tue Jan 15 16:38:38 2008 +0800
40006
40007     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
40008
40009     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
40010     Remove unused ethernet CONFIG_ options.
40011
40012     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40013     Acked-by: Jon Loeliger <jdl@freescale.com>
40014
40015 commit 711a7946277d2e29af481011e8635e9975c54e45
40016 Author: Kim Phillips <kim.phillips@freescale.com>
40017 Date:   Tue Jan 15 14:05:14 2008 -0600
40018
40019     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
40020
40021     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
40022
40023     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40024
40025 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
40026 Author: Kim Phillips <kim.phillips@freescale.com>
40027 Date:   Tue Jan 15 09:51:12 2008 -0600
40028
40029     mpc83xx: clean up mpc8360emds.c warnings
40030
40031     mpc8360emds.c: In function 'ft_board_setup':
40032     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
40033     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
40034     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
40035     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
40036     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
40037     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
40038
40039     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40040
40041 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
40042 Author: Kim Phillips <kim.phillips@freescale.com>
40043 Date:   Mon Jan 14 16:14:46 2008 -0600
40044
40045     mpc83xx: fix phy-connection-type fixup code
40046
40047     use tree passed to us in local blob, not global fdt.
40048
40049     Also use fdt_path_offset to convert to relative offset, since absolute
40050     reference is needed to check for rgmii-id mode string value.
40051
40052     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40053
40054 commit 2b4c952be7c4357a13e839d48df80853820c33eb
40055 Author: Kumar Gala <galak@kernel.crashing.org>
40056 Date:   Mon Jan 14 09:01:40 2008 -0600
40057
40058     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
40059
40060     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40061     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40062
40063 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
40064 Author: Poonam Aggrwal <b10812@freescale.com>
40065 Date:   Mon Jan 14 09:41:14 2008 +0530
40066
40067     Changes in uboot DDR configuration for MPC8313eRDB
40068
40069     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
40070     DDR configuration in u-boot code. Some are related to performance, some
40071     affect stability and some correct few basic errors in the current
40072     configuration.
40073
40074     The changes have been tested and found to give better memory latency
40075     figures on MPC8313eRDB.LMBench figures prove it.
40076
40077     The changes are:
40078
40079     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
40080       (this may improve performance for application with many read
40081       or write to open pages).
40082     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
40083       001 (activating all the CS when only one is used may cause
40084       unwanted noise on the system)
40085
40086     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
40087       Tras=45ns)
40088     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
40089
40090     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
40091       comply with the 3 ODT clk requirements)
40092     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
40093     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
40094
40095     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
40096     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
40097
40098     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
40099     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
40100
40101     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
40102     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
40103
40104     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
40105     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
40106     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
40107     Cc: Josep P J <PJ.Joseph@freescale.com>
40108     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40109
40110 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
40111 Author: Jerry Van Baren <gvb.uboot@gmail.com>
40112 Date:   Sat Jan 12 13:24:14 2008 -0500
40113
40114     Enable the isdram command on the MPC8360EMDS board
40115
40116     The isdram command prints out decoded information the "serial presence
40117     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
40118     debugging memory configuration problems.
40119
40120     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40121     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40122
40123 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
40124 Author: Dave Liu <r63238@freescale.com>
40125 Date:   Fri Jan 11 18:48:24 2008 +0800
40126
40127     mpc83xx: Add the support for MPC8315ERDB board
40128
40129     The features list:
40130     - Boot from NOR Flash
40131     - DDR2 266MHz hardcoded configuration
40132     - Local bus NOR Flash R/W operation
40133     - I2C, UART, MII and RTC
40134     - eTSEC0/1 support
40135     - PCI host
40136
40137     Signed-off-by: Dave Liu <daveliu@freescale.com>
40138     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40139
40140 commit b05884efa614e4d8a9413158fc228e0dc02ab704
40141 Author: Dave Liu <r63238@freescale.com>
40142 Date:   Fri Jan 11 18:46:50 2008 +0800
40143
40144     mpc83xx: Add config of eTSEC emergency priority in SPCR
40145
40146     The TSEC emergency priority definition of 831x/837x
40147     is different than the definition of 834x in SPCR register.
40148
40149     Add the other config of TSEC emergency priority into
40150     cpu_init.c
40151
40152     Signed-off-by: Dave Liu <daveliu@freescale.com>
40153     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40154
40155 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
40156 Author: Dave Liu <r63238@freescale.com>
40157 Date:   Fri Jan 11 18:42:19 2008 +0800
40158
40159     mpc83xx: Remove cache config from MPC8360ERDK.h
40160
40161     The MPC8360ERDK board support patch is added before
40162     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
40163     so, miss clean up it.
40164
40165     The patch clean up the miss cache config.
40166
40167     Signed-off-by: Dave Liu <daveliu@freescale.com>
40168     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40169
40170 commit cd9d23053d435c08fc8695017b5cb9003fcda786
40171 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40172 Date:   Mon Jan 14 23:09:32 2008 +0300
40173
40174     nand: FSL UPM NAND driver
40175
40176     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40177
40178 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
40179 Author: Kyungmin Park <kmpark@infradead.org>
40180 Date:   Tue Jan 15 08:59:44 2008 +0900
40181
40182     OneNAND: Separate U-Boot dependent code from OneNAND
40183
40184     OneNAND: Separate U-Boot dependent code from OneNAND
40185
40186     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40187
40188 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
40189 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40190 Date:   Wed Jan 16 10:33:46 2008 +0100
40191
40192     ppc4xx: Sequoia coding style cleanup and beautification
40193
40194     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40195
40196 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
40197 Author: Larry Johnson <lrj@acm.org>
40198 Date:   Tue Jan 15 14:35:58 2008 -0500
40199
40200     ppc4xx: Refactor ECC POST for AMCC Denali core
40201
40202     The ECC POST reported intermittent failures running after power-up on
40203     the Korat PPC440EPx board.  Even when the test passed, the debugging
40204     output occasionally reported additional unexpected ECC errors.
40205
40206     This refactoring has three main objectives: (1) minimize the code
40207     executed with ECC enabled during the tests, (2) add more checking of the
40208     results so any unexpected ECC errors would cause the test to fail, and
40209     (3) use synchronization (only) where required by the processor.
40210
40211     Signed-off-by: Larry Johnson <lrj@acm.org>
40212
40213 commit 2465665b73ac2f688af945b1ed510752afa816a4
40214 Author: David Saada <David.Saada@ecitele.com>
40215 Date:   Tue Jan 15 10:40:24 2008 +0200
40216
40217     QE UEC: Extend number of supported UECs to 4
40218
40219     This patch extends the number of supported UECs to 4. Note that the
40220     problem of QE thread resources exhaustion is resolved by setting the
40221     correct number of QE threads according to Ethernet type (GBE or FE).
40222
40223     Signed-off-by: David Saada <david.saada@ecitele.com>
40224     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40225
40226 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
40227 Author: Wolfgang Denk <wd@denx.de>
40228 Date:   Wed Jan 16 00:01:01 2008 +0100
40229
40230     LWMON5: enable hush shell as command line parser
40231
40232     Signed-off-by: Wolfgang Denk <wd@denx.de>
40233
40234 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
40235 Author: Wolfgang Denk <wd@denx.de>
40236 Date:   Tue Jan 15 17:22:28 2008 +0100
40237
40238     ADS5121: disable watchdog; enable image timestamps
40239
40240     Signed-off-by: Wolfgang Denk <wd@denx.de>
40241
40242 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
40243 Author: Wolfgang Denk <wd@denx.de>
40244 Date:   Tue Jan 15 17:21:28 2008 +0100
40245
40246     TK885D: fixes for bigger flash sector sizes on new modules;
40247     adjust default environment;
40248     disable SCC ethernet (not used on this board).
40249
40250     Signed-off-by: Wolfgang Denk <wd@denx.de>
40251
40252 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
40253 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40254 Date:   Tue Jan 15 17:48:13 2008 +0900
40255
40256     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
40257
40258     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40259
40260 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
40261 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40262 Date:   Tue Jan 15 23:25:25 2008 +0900
40263
40264     sh: Add support SH7710/SH7712
40265
40266     SH7710/SH7712 of SH3 CPU are supported.
40267     SH771X is called SH-Ether, and has the Ether controller in CPU.
40268     The driver of Ether is not included in this patch.
40269
40270     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40271
40272 commit 63a11be68306870e04d3851ed9fa41955cdf4894
40273 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40274 Date:   Tue Jan 15 23:06:17 2008 +0900
40275
40276     sh: Add support of map_physmem() and unmap_physmem() to SuperH
40277
40278     This patch add the support of map_physmem() and unmap_physmem()
40279     used with Common Flash Interface(CFI) driver.
40280
40281     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40282
40283 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
40284 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40285 Date:   Wed Jan 9 14:42:27 2008 +0900
40286
40287     sh: Add maintainer of MS7720SE to the MAINTAINER file
40288
40289     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40290
40291 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
40292 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40293 Date:   Wed Jan 9 14:39:58 2008 +0900
40294
40295     sh: Fix board name in MS7720SE's config.mk
40296
40297     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40298
40299 commit c0a04d93734d768b39dbb72fb501b65614c8615d
40300 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40301 Date:   Wed Jan 9 14:37:36 2008 +0900
40302
40303     sh: Add MS7720SE to MAKEALL
40304
40305     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40306
40307 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
40308 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40309 Date:   Mon Dec 3 22:58:50 2007 +0900
40310
40311     sh: Add support for MS7720RP02 board
40312
40313     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40314     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40315     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40316
40317 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
40318 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40319 Date:   Wed Jan 9 14:30:02 2008 +0900
40320
40321     sh: Add support for SH7720 in serial_sh driver.
40322
40323     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40324     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40325     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40326
40327 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
40328 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40329 Date:   Mon Dec 3 22:58:45 2007 +0900
40330
40331     sh: Add support SH3 and SH7720
40332
40333     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40334     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40335     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40336
40337 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
40338 Author: Stefan Roese <sr@denx.de>
40339 Date:   Tue Jan 15 10:11:02 2008 +0100
40340
40341     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
40342
40343     Signed-off-by: Stefan Roese <sr@denx.de>
40344
40345 commit 17bef68097ab3692500a36fb31115bff7910aa99
40346 Author: Niklaus Giger <niklausgiger@gmx.ch>
40347 Date:   Mon Jan 14 14:04:42 2008 +0100
40348
40349     ppc_4xx: Fix post spr.c for PPC405
40350
40351     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
40352     for PPC440 and derivates processor.
40353
40354     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40355
40356 commit 06c428bcd4413014b43236e77765022071424fa6
40357 Author: Dave Liu <r63238@freescale.com>
40358 Date:   Mon Jan 14 11:12:01 2008 +0800
40359
40360     QE: fix compile warning
40361
40362     qe.c: In function 'qe_upload_firmware':
40363     qe.c:390: warning: pointer targets in passing argument 2
40364     uec.c: In function 'uec_initialize':
40365     uec.c:1236: warning: 'uec_info' may be used uninitialized
40366
40367     Signed-off-by: Dave Liu <daveliu@freescale.com>
40368
40369 commit a0dd99d51efa55fe023e19c97ead92683725eb11
40370 Author: Stefan Roese <sr@denx.de>
40371 Date:   Mon Jan 14 10:05:05 2008 +0100
40372
40373     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
40374
40375     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
40376     to remove the USB PHY reset after powerup. The CPLD will keep the
40377     USB PHY in reset (active low) until the bit is set to 1 in
40378     board_early_init_f().
40379
40380     Signed-off-by: Stefan Roese <sr@denx.de>
40381
40382 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
40383 Author: Wolfgang Denk <wd@denx.de>
40384 Date:   Sun Jan 13 23:26:45 2008 +0100
40385
40386     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
40387
40388     Signed-off-by: Wolfgang Denk <wd@denx.de>
40389
40390 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
40391 Author: Wolfgang Denk <wd@denx.de>
40392 Date:   Sun Jan 13 23:37:50 2008 +0100
40393
40394     ADS5121: Fix typo in ads5121.c, adjust default environment
40395
40396     Signed-off-by: Wolfgang Denk <wd@denx.de>
40397
40398 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
40399 Author: John Rigby <jrigby@freescale.com>
40400 Date:   Fri Aug 24 18:18:43 2007 -0600
40401
40402     ADS5121: MAX slew rate for PATA pins
40403
40404     Signed-off-by: John Rigby <jrigby@freescale.com>
40405
40406 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
40407 Author: Wolfgang Denk <wd@denx.de>
40408 Date:   Sun Jan 13 21:05:52 2008 +0100
40409
40410     Fix Makefile dependency problem with parallel builds.
40411
40412     Signed-off-by: Wolfgang Denk <wd@denx.de>
40413
40414 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
40415 Author: Wolfgang Denk <wd@denx.de>
40416 Date:   Sun Jan 13 19:51:39 2008 +0100
40417
40418     MPC8544DS: fix board Makefile for silent build (with -s)
40419
40420     Signed-off-by: Wolfgang Denk <wd@denx.de>
40421
40422 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
40423 Author: Wolfgang Denk <wd@denx.de>
40424 Date:   Sun Jan 13 16:44:08 2008 +0100
40425
40426     PMC440 board: fix board Makefile for out-of-tree building
40427
40428     Signed-off-by: Wolfgang Denk <wd@denx.de>
40429
40430 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
40431 Author: Wolfgang Denk <wd@denx.de>
40432 Date:   Sun Jan 13 16:07:44 2008 +0100
40433
40434     Makalu: fix compile warning
40435
40436     Signed-off-by: Wolfgang Denk <wd@denx.de>
40437
40438 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
40439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40440 Date:   Sun Jan 13 12:36:12 2008 +0100
40441
40442     cmd_nand : fix compiler warning.
40443
40444     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40445
40446 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
40447 Author: Michael Schwingen <rincewind@discworld.dascon.de>
40448 Date:   Sat Jan 12 20:29:47 2008 +0100
40449
40450     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
40451
40452     Signed-off-by: Michael Schwingen <michael@schwingen.org>
40453     Acked-by: Stefan Roese <sr@denx.de>
40454
40455 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
40456 Author: Wolfgang Denk <wd@denx.de>
40457 Date:   Sun Jan 13 02:19:44 2008 +0100
40458
40459     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
40460
40461     Signed-off-by: Wolfgang Denk <wd@denx.de>
40462
40463 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
40464 Author: Wolfgang Denk <wd@denx.de>
40465 Date:   Sun Jan 13 02:19:13 2008 +0100
40466
40467     MPC8xx FEC driver: fix compiler warning.
40468
40469     Signed-off-by: Wolfgang Denk <wd@denx.de>
40470
40471 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
40472 Author: Wolfgang Denk <wd@denx.de>
40473 Date:   Sun Jan 13 00:59:21 2008 +0100
40474
40475     Fix Makefile dependencies issues; allow silent build
40476
40477     - get rid of "version" target whichdidn't really work
40478     - make autoconf.mk depend on version_autogenerated.h to make sure
40479       to rebuild files as needed
40480     - add XECHO macro to allow for silent build using "make -s"
40481
40482     Signed-off-by: Wolfgang Denk <wd@denx.de>
40483
40484 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
40485 Author: Wolfgang Denk <wd@denx.de>
40486 Date:   Sun Jan 13 00:55:47 2008 +0100
40487
40488     ADS5121e: fix compile warning
40489
40490     Signed-off-by: Wolfgang Denk <wd@denx.de>
40491
40492 commit f2b6f4610627fe3d607620e25082916a01538875
40493 Author: Wolfgang Denk <wd@denx.de>
40494 Date:   Sun Jan 13 00:55:18 2008 +0100
40495
40496     MUNICes: fix board Makefile for remote build directory
40497
40498     Signed-off-by: Wolfgang Denk <wd@denx.de>
40499
40500 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
40501 Author: Oliver Weber <almoeli@gmx.de>
40502 Date:   Wed Jan 9 17:04:38 2008 +0100
40503
40504     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
40505
40506     Signed-off-by: Oliver Weber <almoeli@gmx.de>
40507
40508 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
40509 Author: Andreas Engel <andreas.engel@ericsson.com>
40510 Date:   Wed Jan 9 17:10:56 2008 +0100
40511
40512     Make bootretry work when command line editing is enabled
40513
40514     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
40515     This patch fixes the problem.
40516
40517     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
40518
40519 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
40520 Author: Larry Johnson <lrj@acm.org>
40521 Date:   Fri Jan 11 23:26:18 2008 -0500
40522
40523     Refactor code for "i2c sdram" command
40524
40525     Signed-off-by: Larry Johnson <lrj@acm.org>
40526
40527 commit 0df6b8446c4721b91ce311548114891130371083
40528 Author: Larry Johnson <lrj@acm.org>
40529 Date:   Thu Jan 10 22:23:39 2008 -0500
40530
40531     Fix "i2c sdram" command for DDR2 DIMMs
40532
40533     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
40534     "i2c sdram" command.  This patch provides correct alternative
40535     interpretations when DDR2 memory is detected.
40536
40537     Signed-off-by: Larry Johnson <lrj@acm.org>
40538
40539 commit 64134f011254123618798ff77c42ba196b2ec485
40540 Author: Wolfgang Denk <wd@denx.de>
40541 Date:   Sat Jan 12 20:31:39 2008 +0100
40542
40543     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
40544
40545     With recent toolchain versions, some boards would not build because
40546     or errors like this one (here for ocotea board when building with
40547     ELDK 4.2 beta):
40548     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
40549
40550     For many boards, the .bss section is big enough that it wraps around
40551     at the end of the address space (0xFFFFFFFF), so the problem will not
40552     be visible unless you use a 64 bit tool chain for development. On
40553     some boards however, changes to the code size (due to different
40554     optimizations) we bail out with section overlaps like above.
40555
40556     The fix is to add the NOLOAD attribute to the .bss and .sbss
40557     sections, telling the linker that .bss does not consume any space in
40558     the image.
40559
40560     Signed-off-by: Wolfgang Denk <wd@denx.de>
40561
40562 commit 3afac79ec27b91df185f090b31dad9620779f440
40563 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40564 Date:   Fri Jan 11 20:42:58 2008 -0600
40565
40566     USB: Add Philips 1561 PCI-OHCI ids
40567     (needed for M5475EVB)
40568
40569     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
40570
40571 commit 5e8def6731cd7bec74bff42a16b139de04010353
40572 Author: Wolfgang Denk <wd@denx.de>
40573 Date:   Sat Jan 12 15:51:34 2008 +0100
40574
40575     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
40576     boards.
40577
40578     Signed-off-by: Heiko Schocher <hs@denx.de>
40579     Signed-off-by: Wolfgang Denk <wd@denx.de>
40580
40581 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
40582 Author: Grzegorz Bernacki <gjb@semihalf.com>
40583 Date:   Fri Jan 11 12:03:43 2008 +0100
40584
40585     MPC512X: Cleanup bus clock names.
40586
40587     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
40588
40589 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
40590 Author: Grzegorz Bernacki <gjb@semihalf.com>
40591 Date:   Tue Jan 8 17:16:59 2008 +0100
40592
40593     MPC512X: Fixed typo in macro name.
40594
40595     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
40596
40597 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
40598 Author: Grzegorz Bernacki <gjb@semihalf.com>
40599 Date:   Tue Jan 8 17:16:15 2008 +0100
40600
40601     ads5121: Added support for FDT.
40602
40603     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
40604
40605 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
40606 Author: Wolfgang Denk <wd@denx.de>
40607 Date:   Sat Jan 12 01:05:50 2008 +0100
40608
40609     Coding Style cleanup; update CHANGELOG.
40610
40611     Signed-off-by: Wolfgang Denk <wd@denx.de>
40612
40613 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
40614 Author: Heiko Schocher <hs@denx.de>
40615 Date:   Fri Jan 11 15:15:17 2008 +0100
40616
40617     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
40618
40619     Signed-off-by: Timur Tabi <timur@freescale.com>
40620     Signed-off-by: Heiko Schocher <hs@denx.de>
40621
40622 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
40623 Author: Heiko Schocher <hs@denx.de>
40624 Date:   Fri Jan 11 15:15:16 2008 +0100
40625
40626     MUNICes: Set the right CFG_DEFAULT_MBAR value.
40627
40628     Signed-off-by: Heiko Schocher <hs@denx.de>
40629
40630 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
40631 Author: Heiko Schocher <hs@denx.de>
40632 Date:   Fri Jan 11 15:15:15 2008 +0100
40633
40634     added the config File for the MUNICes board.
40635
40636     Signed-off-by: Heiko Schocher <hs@denx.de>
40637
40638 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
40639 Author: Heiko Schocher <hs@denx.de>
40640 Date:   Fri Jan 11 15:15:14 2008 +0100
40641
40642     added basic support for the MUNICes board.
40643
40644     Signed-off-by: Heiko Schocher <hs@denx.de>
40645
40646 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
40647 Author: Wolfgang Denk <wd@denx.de>
40648 Date:   Sat Jan 12 00:39:37 2008 +0100
40649
40650     Update CHANGELOG and MAINTAINERS files.
40651
40652     Signed-off-by: Wolfgang Denk <wd@denx.de>
40653
40654 commit 5ba7390c3cb579172be66888a371707b47b5be4e
40655 Author: Anatolij Gustschin <agust@denx.de>
40656 Date:   Fri Jan 11 02:15:02 2008 +0100
40657
40658     Fix compilation problem in common/cmd_bmp.c
40659
40660     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
40661     isn't defined. This patch fix this.
40662
40663     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40664
40665 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
40666 Author: Heiko Schocher <hs@denx.de>
40667 Date:   Fri Jan 11 01:12:09 2008 +0100
40668
40669     Fix defaultconfig for the mgcoge board.
40670
40671     Signed-off-by: Heiko Schocher <hs@denx.de>
40672
40673 commit ac9db066b26935f31bff15c98168b19faeb603f3
40674 Author: Heiko Schocher <hs@denx.de>
40675 Date:   Fri Jan 11 01:12:08 2008 +0100
40676
40677     Added support for the mgcoge board from keymile.
40678
40679     Signed-off-by: Heiko Schocher <hs@denx.de>
40680
40681 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
40682 Author: Heiko Schocher <hs@denx.de>
40683 Date:   Fri Jan 11 01:12:07 2008 +0100
40684
40685     Enable SMC microcode relocation patch for SMC1.
40686
40687     Signed-off-by: Heiko Schocher <hs@denx.de>
40688
40689 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
40690 Author: Heiko Schocher <hs@denx.de>
40691 Date:   Fri Jan 11 01:12:06 2008 +0100
40692
40693     Added support for the mgsuvd board from keymile.
40694
40695     Signed-off-by: Heiko Schocher <hs@denx.de>
40696
40697 commit bf05293973b348f6946c9df92cd3c65ece42d0be
40698 Author: James Yang <james.yang@freescale.com>
40699 Date:   Thu Jan 10 16:02:07 2008 -0600
40700
40701     Fix 64-bit vsprintf.
40702
40703     There were some size and unsigned problems.
40704     Also add support for "ll" size modifier in format string like glibc
40705
40706     Signed-off-by: James Yang <James.Yang@freescale.com>
40707     Acked-by: Jon Loeliger <jdl@freescale.com>
40708
40709 commit 92fa37eac530860643afa26ae347af3d23d67309
40710 Author: Larry Johnson <lrj@acm.org>
40711 Date:   Wed Jan 9 12:42:35 2008 -0500
40712
40713     Remove superfluous preprocessor conditionals from LM73 driver
40714
40715     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
40716
40717     (2) Use conditional Makefile.o.
40718
40719     Signed-off-by: Larry Johnson <lrj@acm.org>
40720
40721 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
40722 Author: Guennadi Liakhovetski <lg@denx.de>
40723 Date:   Thu Jan 10 17:59:07 2008 +0100
40724
40725     Add support for the TK885D baseboard from TELE-DATA
40726
40727     The TK885D board uses a TQM885D module from TQ, this port adds an
40728     own configuration file and adds a last_stage_init() method to
40729     configure the two PHYs, depending on the phy_auto_nego environment
40730     variable.
40731
40732     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40733
40734 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
40735 Author: Kumar Gala <galak@kernel.crashing.org>
40736 Date:   Thu Jan 10 02:22:05 2008 -0600
40737
40738     Fix compiler warning
40739
40740     main.c: In function 'readline_into_buffer':
40741     main.c:927: warning: unused variable 'p_buf'
40742
40743     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40744
40745 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
40746 Author: Anatolij Gustschin <agust@denx.de>
40747 Date:   Fri Jan 11 14:30:01 2008 +0100
40748
40749     Add Fujitsu CoralP/Lime video driver
40750
40751     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40752     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
40753
40754 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
40755 Author: Anatolij Gustschin <agust@denx.de>
40756 Date:   Fri Jan 11 02:39:47 2008 +0100
40757
40758     Fix video console newline and carriage return handling
40759
40760     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
40761     are not displayed correctly. This is an attempt to fix
40762     this issue. Also add carriage return handling.
40763
40764     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40765     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
40766
40767 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
40768 Author: Stefan Roese <sr@denx.de>
40769 Date:   Fri Jan 11 15:53:58 2008 +0100
40770
40771     ppc4xx: Fix sdram init on Sequoia boards
40772
40773     Clear possible errors in MCSR resulting from data-eye-search.
40774     If not done, then we could get an interrupt later on when
40775     exceptions are enabled.
40776
40777     Signed-off-by: Stefan Roese <sr@denx.de>
40778
40779 commit d610a60730b7464f6f659db49d264d89a7c71061
40780 Author: Anatolij Gustschin <agust@denx.de>
40781 Date:   Fri Jan 11 15:31:09 2008 +0100
40782
40783     ppc4xx: Rework Lime support for lwmon5
40784
40785     Rework Lime support for lwmon5 using new video driver
40786
40787     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40788
40789 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
40790 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40791 Date:   Fri Jan 11 14:55:16 2008 +0100
40792
40793     ppc4xx: Update PMC440 config file
40794
40795     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40796
40797 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
40798 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40799 Date:   Fri Jan 11 14:55:08 2008 +0100
40800
40801     ppx4xx: Fix sdram init on PMC440 boards
40802
40803     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40804
40805 commit 061aad4d320dddce26247699dcf2875ee2ea1366
40806 Author: Dave Liu <r63238@freescale.com>
40807 Date:   Thu Jan 10 23:09:33 2008 +0800
40808
40809     mpc83xx: Fix the bug of 266MHz data rate DDR
40810
40811     The DDR doesn't work on the 266MHz data rate,
40812     the patch fix the bug.
40813
40814     Signed-off-by: Dave Liu <daveliu@freescale.com>
40815     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40816
40817 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
40818 Author: Dave Liu <r63238@freescale.com>
40819 Date:   Thu Jan 10 23:08:26 2008 +0800
40820
40821     mpc83xx: Make the code more readable
40822
40823     Format the code, make it more readable
40824
40825     Signed-off-by: Dave Liu <daveliu@freescale.com>
40826     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40827
40828 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
40829 Author: Dave Liu <r63238@freescale.com>
40830 Date:   Thu Jan 10 23:07:23 2008 +0800
40831
40832     mpc83xx: Reduce the latency of DDR
40833
40834     Reduce the AL from 2 to 1 clock to improve the performance.
40835
40836     Signed-off-by: Dave Liu <daveliu@freescale.com>
40837     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40838
40839 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
40840 Author: Dave Liu <r63238@freescale.com>
40841 Date:   Thu Jan 10 23:06:05 2008 +0800
40842
40843     mpc83xx: Fix the wrong definition of MPC8315E
40844
40845     According to the latest user manual of MPC8315E,
40846     1) The SVCOD of HRCWL is different than 837x
40847     2) The SCCR has changes
40848
40849     Signed-off-by: Dave Liu <daveliu@freescale.com>
40850     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40851
40852 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
40853 Author: Dave Liu <r63238@freescale.com>
40854 Date:   Thu Jan 10 23:05:00 2008 +0800
40855
40856     mpc83xx: Fix the typo in mpc83xx.h
40857
40858     The SPCR about TSEC priority is wrong.
40859
40860     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
40861     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
40862     Signed-off-by: Dave Liu <daveliu@freescale.com>
40863     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40864
40865 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
40866 Author: Dave Liu <r63238@freescale.com>
40867 Date:   Thu Jan 10 23:04:13 2008 +0800
40868
40869     mpc83xx: Fix the typo in global data struct
40870
40871     Fix the typo in global_data.h
40872
40873     Signed-off-by: Dave Liu <daveliu@freescale.com>
40874     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40875
40876 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
40877 Author: Dave Liu <r63238@freescale.com>
40878 Date:   Thu Jan 10 23:03:03 2008 +0800
40879
40880     mpc83xx: Remove cache config from config.h
40881
40882     clean up the cache config from configs.h of board
40883
40884     Signed-off-by: Dave Liu <daveliu@freescale.com>
40885     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40886
40887 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
40888 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40889 Date:   Wed Jan 9 20:57:47 2008 +0300
40890
40891     mpc83xx: add support for the MPC8360E-RDK
40892
40893     This is MPC8360E based board with:
40894     - 256MB fixed SDRAM;
40895     - 8MB Intel Strata NOR flash;
40896     - StMICRO 64MiB NAND flash;
40897     - two 10/100/1000 ethernet ports connected via Broadcom
40898       BCM5481 PHYs;
40899     - two 10/100 ethernet ports connected via National
40900       DP83848 PHYs;
40901     - one PCI and one miniPCI slots;
40902     - four serial ports (two NS16550-compatible, two UCCs);
40903     - four USB ports working through MPC8360E "FHCI" USB controller;
40904     - Fujitsu MB86277 graphics controller;
40905     - Analog to Digital Converter/Touchscreen controller, AD7843
40906       connected to SPI.
40907
40908     Features not supported in this patch are:
40909     - StMICRO 64MiB NAND flash (patch sent);
40910     - MINT framebuffer initialization (patch is pending);
40911     - Fetching production information from the EEPROM via I2C;
40912     - FHCI USB;
40913     - Two slow UCCs used as RS-485 UARTs.
40914
40915     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40916     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40917
40918 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
40919 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40920 Date:   Wed Jan 9 20:57:40 2008 +0300
40921
40922     mpc83xx: add "fsl, qe" compatible fixups
40923
40924     New device trees will use "fsl,qe" compatible properties.
40925
40926     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40927     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40928
40929 commit 977b57583a7c34010e566a09a679ec3c1836f996
40930 Author: Kim Phillips <kim.phillips@freescale.com>
40931 Date:   Wed Jan 9 15:24:06 2008 -0600
40932
40933     mpc83xx: add missing CONFIG_HAS_ETH0 defines
40934
40935     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
40936     is defined; add the define to the missing board configs.
40937
40938     Thanks to Emilian Medve for finding this.
40939
40940     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40941
40942 commit b830b7f1635984ba607219fcbd78597c28eeb529
40943 Author: Becky Bruce <bgill@freescale.com>
40944 Date:   Thu Jan 10 14:00:28 2008 -0600
40945
40946     86xx: Support 2GB DIMMs
40947
40948     Configure the number of bits used to address the banks inside the SDRAM
40949     device.  The default register value of 0 means 2 bits to address 4 banks.
40950     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
40951
40952     Signed-off-by: Becky Bruce <bgill@freescale.com>
40953
40954 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
40955 Author: Niklaus Giger <niklausgiger@gmx.ch>
40956 Date:   Thu Jan 10 18:50:33 2008 +0100
40957
40958     ppc4xx: Make Sequoia boot vxWorks
40959
40960     vxWorks expects in
40961     TLB 0 a entry for the Machine Check interrupt
40962     TLB 1 a entry for the RAM
40963     TLB 2 a entry for the EBC
40964     TLB 3 a entry for the boot flash
40965
40966     After changing the baudrate to 9600 I had no problems to boot the
40967     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
40968     June 18, 2007)
40969
40970     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40971
40972 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
40973 Author: Larry Johnson <lrj@arlinx.com>
40974 Date:   Wed Jan 9 23:10:27 2008 -0500
40975
40976     ppc4xx: Fix dflush() to restore DVLIM register
40977
40978     Signed-off-by: Larry Johnson <lrj@acm.org>
40979
40980 commit 252f60b068d1f94190b5bcfda169db582387e15e
40981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40982 Date:   Thu Jan 10 03:52:44 2008 -0500
40983
40984     Nios2: remove common/cmd_bdinfo.c unused variable.
40985
40986     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40987     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
40988
40989 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
40990 Author: Ben Warren <biggerbadderben@gmail.com>
40991 Date:   Wed Jan 9 18:15:53 2008 -0500
40992
40993     Fix Ethernet init() return codes
40994
40995     Change return values of init() functions in all Ethernet drivers to conform
40996     to the following:
40997
40998         >=0: Success
40999         <0:  Failure
41000
41001     All drivers going forward should return 0 on success.  Current drivers that
41002     return 1 on success were left as-is to minimize changes.
41003
41004     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41005     Acked-by: Stefan Roese <sr@denx.de>
41006     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41007     Acked-by: Kim Phillips <kim.phillips@freescale.com>
41008     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41009     Acked-By: Timur Tabi <timur@freescale.com>
41010
41011 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
41012 Author: Wolfgang Denk <wd@denx.de>
41013 Date:   Thu Jan 10 00:55:14 2008 +0100
41014
41015     Coding Style cleanup; update CHANGELOG
41016
41017     Signed-off-by: Wolfgang Denk <wd@denx.de>
41018
41019 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
41020 Author: Kim Phillips <kim.phillips@freescale.com>
41021 Date:   Wed Jan 9 16:56:54 2008 -0600
41022
41023     Add QE brg freq and correct qe bus freq fdt update code
41024
41025     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41026     Signed-off-by: Andy Fleming <afleming@freescale.com>
41027
41028 commit 890dfef06c2d169a3356359596890754dfb8ee1c
41029 Author: Andy Fleming <afleming@freescale.com>
41030 Date:   Wed Jan 9 16:34:51 2008 -0600
41031
41032     Remove cache config from ATUM8548 and sbc8548 configs
41033
41034     These boards weren't updated by Kumar's config patch because they
41035     weren't in the tree, yet.
41036
41037     Signed-off-by: Andy Fleming <afleming@freescale.com>
41038
41039 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
41040 Author: Timur Tabi <timur@freescale.com>
41041 Date:   Mon Jan 7 13:31:19 2008 -0600
41042
41043     85xx: add ability to upload QE firmware
41044
41045     Define the layout of a binary blob that contains a QE firmware and instructions
41046     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
41047     perform the actual upload.  Add command-line command "qe fw" to take a firmware
41048     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
41049     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
41050     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
41051
41052     Signed-off-by: Timur Tabi <timur@freescale.com>
41053
41054 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
41055 Author: Kumar Gala <galak@kernel.crashing.org>
41056 Date:   Tue Jan 8 01:22:21 2008 -0600
41057
41058     85xx: Remove cache config from configs.h
41059
41060     Either use the standard defines in asm/cache.h or grab the information
41061     at runtime from the L1CFG SPR.
41062
41063     Also, minor cleanup in cache.h to make the code a bit more readable.
41064
41065     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41066
41067 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
41068 Author: robert lazarski <robertlazarski@gmail.com>
41069 Date:   Fri Dec 21 10:39:27 2007 -0500
41070
41071     mpc85xx: Add support for ATUM8548 (updated)
41072
41073     Add support for Instituto Atlantico's ATUM8548 board
41074
41075     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
41076     Signed-off-by: Andy Fleming <afleming@freescale.com>
41077
41078 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
41079 Author: robert lazarski <robertlazarski@gmail.com>
41080 Date:   Fri Dec 21 10:36:37 2007 -0500
41081
41082     mpc85xx: Add support for ATUM8548 (updated)
41083
41084     Add support for Instituto Atlantico's ATUM8548 board
41085
41086     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
41087
41088 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
41089 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
41090 Date:   Thu Dec 13 06:45:14 2007 -0600
41091
41092     mpc85xx: Add support for SBC8548 (updated)
41093
41094     Add support for Wind River's SBC8548 reference board.
41095
41096     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
41097
41098 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
41099 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
41100 Date:   Thu Dec 13 06:45:08 2007 -0600
41101
41102     mpc85xx: Add support for SBC8548 (updated)
41103
41104     Add support for Wind River's SBC8548 reference board.
41105
41106     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
41107     Signed-off by: Andy Fleming <afleming@freescale.com>
41108
41109 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
41110 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41111 Date:   Mon Oct 22 19:58:19 2007 +0400
41112
41113     MPC8568E-MDS: set up QE pario for UART1
41114
41115     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
41116     be set up appropriately.
41117
41118     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41119
41120 commit ad162249cb371e9e38971676f09be791e5f3cf4a
41121 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41122 Date:   Mon Oct 22 18:12:46 2007 +0400
41123
41124     MPC8568E-MDS: reset UCCs to use them reliably
41125
41126     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
41127     UCCs.
41128
41129     p.s Similar code exists in the Linux kernel board file (for capability
41130     reasons with older U-Boots), but should be removed some day.
41131
41132     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41133
41134 commit 2146cf56821c3364786ca94a7306008c5824b238
41135 Author: Kumar Gala <galak@kernel.crashing.org>
41136 Date:   Wed Dec 19 01:18:15 2007 -0600
41137
41138     Reworked FSL Book-E TLB macros to be more readable
41139
41140     The old macros made it difficult to know what WIMGE and perm bits
41141     were set for a TLB entry.  Actually use the bit masks for these items
41142     since they are only a single bit.
41143
41144     Also moved the macros into mmu.h out of e500.h since they aren't specific
41145     to e500.
41146
41147     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41148
41149 commit 1d47273d46925929f8f2c1913cd96d7257aade88
41150 Author: Kumar Gala <galak@kernel.crashing.org>
41151 Date:   Tue Dec 18 23:21:51 2007 -0600
41152
41153     Use FSL Book-E MMU macros from Linux Kernel
41154
41155     Grab the FSL Book-E MAS register macros from Linux.  Also added
41156     defines for page sizes up to 4TB and removed SHAREN since it doesnt
41157     really exist.
41158
41159     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41160
41161 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
41162 Author: Andy Fleming <afleming@freescale.com>
41163 Date:   Wed Jan 9 13:51:32 2008 -0600
41164
41165     Fix my own merge stupidity
41166
41167     Way back in August I merged Heiko's patch:
41168     566a494f592: [PCS440EP] upgrade the PCS440EP board
41169
41170     with Jon's CONFIG_COMMANDS patches.
41171
41172     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
41173
41174     However, in the process, I left out some of Heiko's good changes.
41175
41176     Now Heiko's and Jon's patches are properly merged in fat_register_device()
41177
41178     Signed-off-by: Andy Fleming <afleming@freescale.com>
41179
41180 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
41181 Author: James Yang <James.Yang@freescale.com>
41182 Date:   Wed Jan 9 11:17:49 2008 -0600
41183
41184     Expose parse_line() globally.
41185
41186     Add new function readline_into_buffer() that allows the
41187     output of readline to be put into a pointer to char buffer.
41188
41189     This refactoring allows other functions besides the
41190     main command loop to also use the same input mechanism.
41191
41192     Signed-off-by: James Yang <James.Yang@freescale.com>
41193     Acked-by: Jon Loeliger <jdl@freescale.com>
41194
41195 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
41196 Author: Guennadi Liakhovetski <lg@denx.de>
41197 Date:   Wed Jan 9 01:15:25 2008 +0100
41198
41199     trivial: fix consequences of a bad merge
41200
41201     Fix what looks like a merge artifact.
41202
41203     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41204
41205 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
41206 Author: Zhang Wei <wei.zhang@freescale.com>
41207 Date:   Thu Jan 3 10:51:15 2008 +0800
41208
41209     Add Ctrl combo key support to usb keyboard driver.
41210
41211     Ctrl combo key support is added, which is very useful to input Ctrl-C
41212     for interrupt current job.
41213     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
41214     key input when tstc() is called.
41215
41216     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41217
41218 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
41219 Author: Marcel Ziswiler <marcel@ziswiler.com>
41220 Date:   Sun Dec 30 03:30:56 2007 +0100
41221
41222     fix various comments
41223
41224     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
41225
41226 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
41227 Author: Marcel Ziswiler <marcel@ziswiler.com>
41228 Date:   Sun Dec 30 03:30:46 2007 +0100
41229
41230     fix comments with new drivers organization
41231
41232     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
41233
41234 commit a9b410dc7d2a4721c408b13abfc037988150f145
41235 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41236 Date:   Fri Dec 28 12:50:59 2007 +0900
41237
41238     Remove the obsolete terse version of do_mii()
41239
41240     We now have more useful version of do_mii() and everybody use it.
41241     Gerald Van Baren says:
41242
41243     > When I originally wrote the mii command 6(!) years ago, I wrote a
41244     > verbose version that printed human readable decomposition of the flags,
41245     > etc., and a terse one that didn't print as much stuff and thus had a
41246     > smaller memory footprint.
41247     >
41248     > It sounds like the terse version has withered and died, apparently
41249     > people are only using the verbose version (which is very understandable,
41250     > I do myself).
41251
41252     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41253     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41254
41255 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
41256 Author: Mike Frysinger <vapier@gentoo.org>
41257 Date:   Thu Dec 27 13:42:56 2007 -0500
41258
41259     Do not reference sha1.c when building mkimage.
41260
41261     remove sha1.o from mkimage linking since it isn't actually used.
41262
41263     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
41264
41265 commit b9173af73e524d37c812f210173cf83385c5171a
41266 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41267 Date:   Thu Dec 27 15:39:54 2007 +0900
41268
41269     common/cmd_mii.c: Add sanity argc check
41270
41271     If type mii command without arguments, we suffer from uninitialized argv[]
41272     entries; for example we MIPS get stuck by TLB error.
41273
41274     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
41275
41276 commit 500856eb1707ed17d9204baa61dd59948d3b2899
41277 Author: Rafal Jaworowski <raj@semihalf.com>
41278 Date:   Wed Jan 9 19:39:36 2008 +0100
41279
41280     API for external applications.
41281
41282     This is an API for external (standalone) applications running on top of
41283     U-Boot, and is meant to be more extensible and robust than the existing
41284     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
41285     for more details.
41286
41287     Included is the demo application using this new framework (api_examples).
41288
41289     Please note this is still an experimental feature, and is turned off by
41290     default.
41291
41292     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41293
41294 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
41295 Author: Jon Loeliger <jdl@freescale.com>
41296 Date:   Wed Jan 9 12:14:55 2008 -0600
41297
41298     86xx: Remove cache config from configs.h
41299
41300     Just use the standard defines in asm/cache.h.
41301
41302     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41303
41304 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
41305 Author: Rafal Jaworowski <raj@semihalf.com>
41306 Date:   Wed Jan 9 18:05:27 2008 +0100
41307
41308     Globalize envmatch()
41309
41310     The newly introduced API (routines related to env vars) will need to call
41311     it.
41312
41313     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
41314
41315 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
41316 Author: Jon Loeliger <jdl@freescale.com>
41317 Date:   Fri Jan 4 12:07:27 2008 -0600
41318
41319     Convert MPC8610HPCD to use libfdt.
41320
41321     Assumes the presence of the aliases node in the DTS to
41322     locate the pci and serial nodes for fixups.
41323
41324     Use consistent fdtaddr and fdtfile in environment variables.
41325
41326     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41327
41328 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
41329 Author: Jon Loeliger <jdl@freescale.com>
41330 Date:   Fri Jan 4 11:58:23 2008 -0600
41331
41332     8610: Fix lingering compile warnings.
41333
41334     Turn off DEBUG.
41335
41336     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41337
41338 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
41339 Author: Wolfgang Denk <wd@denx.de>
41340 Date:   Wed Jan 9 15:14:46 2008 +0100
41341
41342     Coding Style cleanup, update CHANGELOG
41343
41344     Signed-off-by: Wolfgang Denk <wd@denx.de>
41345
41346 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
41347 Author: Mike Frysinger <vapier@gentoo.org>
41348 Date:   Tue Dec 18 04:29:55 2007 -0500
41349
41350     fix easylogo on big endian dev systems
41351
41352     didnt realize how out of shape easylogo actually was until i tried using it.
41353     this patch does byte swapping as need be on the input tga header since the tga
41354     is in little endian but the host could just as well be big endian.  i didnt
41355     bother using bswap macros or such stuff from system headers as nothing in
41356     POSIX dictates byte swapping functionality.
41357
41358     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
41359
41360 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
41361 Author: Mike Frysinger <vapier@gentoo.org>
41362 Date:   Tue Dec 18 03:23:25 2007 -0500
41363
41364     cleanup easylogo
41365
41366     - make the Makefile not suck
41367     - include proper headers for prototypes
41368     - fix obvious broken handling of strchr() when handling '.' in filenames
41369
41370     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
41371
41372 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
41373 Author: raptorbrino@aim.com <raptorbrino@aim.com>
41374 Date:   Thu Dec 13 21:23:28 2007 -0500
41375
41376     Fix build problems under Cygwin
41377
41378     This patch allows u-boot to build without error in a cygwin
41379     environment.  Cygwin does not define __u64 in it's
41380     include/asm/types.h file.  The -idirafter flag in the u-boot
41381     build causes the inclusion of the cygwin types.h file as opposed
41382     to u-bot/include/asm/types.h file which does define __u64.
41383     Subsequently, sha1.c compile fails due to unknown symbol.
41384
41385     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
41386
41387 commit 43ef1c381f9195504a2488f5cb909227eb97d475
41388 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
41389 Date:   Fri Nov 30 17:29:59 2007 +0100
41390
41391     cmd_bmp: Add support for displaying gzip compressed bmps
41392
41393     The existing code can show information about a gzip compressed BMP
41394     image, but can't actually display it.
41395
41396     Therefore, move the decompression code out of bmp_info() and use it in
41397     bmp_display() as well in order to display a compressed BMP image.
41398
41399     Also, clean things up a bit and fix a memory leak while we're at it.
41400
41401     [hskinnemoen@atmel.com: a bit of refactoring]
41402     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41403
41404 commit d197ffd8172c6fdef38733424640a9a47295d6e9
41405 Author: Guennadi Liakhovetski <lg@denx.de>
41406 Date:   Thu Nov 29 21:15:56 2007 +0100
41407
41408     Fix and optimize MII operations on FEC (MPC8xx) controllers
41409
41410     This patch fixes several issues at least on a MPC885 based system with two
41411     FEC interfaces used in MII mode.
41412
41413     1. PHY discovery should first read PHY_PHYIDR2 register and only then
41414        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
41415        otherwise the values read are wrong. Also notice, that PHY discovery
41416        cannot work on MPC88x / MPC87x in setups with both FECs active at all
41417        in its present form, because for both interfaces the registers from FEC
41418        1 are used to communicate over MII.
41419
41420     2. Remove code duplication for resetting the FEC by isolating it into a
41421        separate function.
41422
41423     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
41424
41425     4. Optimize mii_init() to only reset the FEC 1 controller once.
41426
41427     5. Fix a typo in mii_init() using index i instead of j thus potentially
41428        leading to unpredictable results.
41429
41430     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41431
41432 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
41433 Author: Guennadi Liakhovetski <lg@denx.de>
41434 Date:   Tue Nov 20 13:14:20 2007 +0100
41435
41436     Fix endianness conversions in rtl8169 driver
41437
41438     It is unclear on what platforms this driver has been tested, since
41439     noone up to now defines CONFIG_RTL8169 in the board configuration
41440     header. Now it has been fixed for a big-endian mpc8241 based
41441     linkstation platform. This patch presents the necessary endianness
41442     conversion fixes.
41443
41444     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41445
41446 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
41447 Author: Zhang Wei <wei.zhang@freescale.com>
41448 Date:   Thu Jan 3 10:51:15 2008 +0800
41449
41450     Add Ctrl combo key support to usb keyboard driver.
41451
41452     Ctrl combo key support is added, which is very useful to input Ctrl-C
41453     for interrupt current job.
41454     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
41455     key input when tstc() is called.
41456
41457     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41458     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41459
41460 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
41461 Author: Wolfgang Denk <wd@denx.de>
41462 Date:   Wed Jan 9 13:43:38 2008 +0100
41463
41464     Coding Style clenaup; update CHANGELOG
41465
41466     Signed-off-by: Wolfgang Denk <wd@denx.de>
41467
41468 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
41469 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41470 Date:   Thu Dec 27 17:13:11 2007 +0100
41471
41472     Remove bit swapping in Xilinx Spartan bitfile loading
41473
41474     This patch removes the unnecessary bit swapping when
41475     booting .bit files with the 'fpga loadb' command.
41476
41477     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41478
41479 commit 437fc7327f0611f82937858f2d80e4cd61b40984
41480 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41481 Date:   Thu Dec 27 17:13:05 2007 +0100
41482
41483     Fix MSB check in Xilinx Spartan slave serial mode
41484
41485     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41486
41487 commit 3bff4ffa33729a42645e328a21e8d16488872958
41488 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41489 Date:   Thu Dec 27 17:12:56 2007 +0100
41490
41491     Add new Xilinx Spartan FPGA types
41492
41493     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41494
41495 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
41496 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41497 Date:   Thu Dec 27 17:12:43 2007 +0100
41498
41499     Add pre and post configuration callbacks for Spartan FPGAs
41500
41501     This patch adds a post configuration callback for Spartan2/3 FPGAs.
41502     pre and post configuration callback are now optional and
41503     not called when the function pointer is set to NULL.
41504
41505     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41506
41507 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
41508 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41509 Date:   Thu Dec 27 17:12:34 2007 +0100
41510
41511     Improve configuration of FPGA subsystem
41512
41513     This patch removes the FPGA subsystem configuration through
41514     the CONFIG_FPGA bitmask configuration option.
41515
41516     See README for the new options:
41517
41518         CONFIG_FPGA,
41519         CONFIG_FPGA_<vendor>,
41520         CONFIG_FPGA_<family>
41521
41522     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41523
41524 commit 95c6bc7d4a3588b452baca610f8c795a83630477
41525 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41526 Date:   Thu Dec 27 16:55:17 2007 +0100
41527
41528     Add Epson RX8025 RTC support
41529
41530     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41531
41532 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
41533 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41534 Date:   Thu Dec 27 16:57:23 2007 +0100
41535
41536     serial: Make default_serial_console() a weak function
41537
41538     With this patch it is possible to reimplement default_serial_console()
41539     in board specific code. This will be done in the upcomming PMC440
41540     U-Boot port. This also allows the lwmon board maintainer to
41541     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
41542
41543     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41544
41545 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
41546 Author: Harald Welte <laforge@openmoko.org>
41547 Date:   Wed Dec 19 14:14:47 2007 +0100
41548
41549     add 'terminal program' functionality
41550
41551     This patch adds a 'cu' like serial terminal command to u-boot
41552     using which you can access other serial ports from the system console.
41553
41554     OpenMoko uses this in their Neo1973 phones to get access to the GSM
41555     Modem and GPS chip from the bootloader.
41556
41557     Signed-off-by: Harald Welte <laforge@openmoko.org>
41558
41559 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
41560 Author: Harald Welte <laforge@openmoko.org>
41561 Date:   Wed Dec 19 14:12:53 2007 +0100
41562
41563     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
41564     that used to exist with the legacy NAND code
41565
41566     Signed-off-by: Harald Welte <laforge@openmoko.org>
41567
41568 commit f540c42d9564854b19ce9bbb70affe172529fe70
41569 Author: Harald Welte <laforge@openmoko.org>
41570 Date:   Wed Dec 19 14:09:58 2007 +0100
41571
41572     Fix building with CRAMFS but not JFFS2 support
41573
41574     Signed-off-by: Harald Welte <laforge@openmoko.org>
41575
41576 commit 23d0baf967fecdaf1804f045f6339337c5607eec
41577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41578 Date:   Sat Dec 22 15:52:58 2007 +0100
41579
41580     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
41581
41582     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
41583     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41584
41585 commit 23776ff292966a85d811126933830bed48211826
41586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41587 Date:   Tue Dec 11 10:53:12 2007 +0100
41588
41589     ARM: support board-specific ethernet PHY init
41590
41591     Add until the new phylib will be arrived
41592
41593     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41594
41595 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
41596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41597 Date:   Sat Dec 8 16:34:08 2007 +0100
41598
41599     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
41600
41601     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41602
41603 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
41604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41605 Date:   Sun Dec 9 11:01:10 2007 +0100
41606
41607     Add missing file in gitignore and comments
41608
41609     based on Linux source tree's .gitignore files
41610
41611     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41612
41613 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
41614 Author: Wolfgang Denk <wd@denx.de>
41615 Date:   Wed Jan 9 11:36:21 2008 +0100
41616
41617     Coding Style cleanup, update CHANGELOG
41618
41619     Signed-off-by: Wolfgang Denk <wd@denx.de>
41620
41621 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
41622 Author: Stefan Roese <sr@denx.de>
41623 Date:   Wed Jan 9 10:38:58 2008 +0100
41624
41625     POST: Execute SPR test after relocation
41626
41627     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
41628     self modifying code and this doesn't work with stack in d-cache, since
41629     I can't move the code from d-cache to i-cache. We move the SPR test to
41630     be executed a little later, after relocation. Then stack is located in
41631     SDRAM and this self-modifying code is no problem anymore.
41632
41633     Signed-off-by: Stefan Roese <sr@denx.de>
41634
41635 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
41636 Author: Stefan Roese <sr@denx.de>
41637 Date:   Wed Jan 9 10:28:20 2008 +0100
41638
41639     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
41640
41641     This patch configures the LWMON5 port to use d-cache as init-ram and
41642     the unused GPT0_COMP6 as POST WORD storage.
41643
41644     Signed-off-by: Stefan Roese <sr@denx.de>
41645
41646 commit 1754f50b710194f886b6f2831803d8960171a14d
41647 Author: Stefan Roese <sr@denx.de>
41648 Date:   Wed Jan 9 10:25:46 2008 +0100
41649
41650     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
41651
41652     The privious 4xx POST implementation only supported storing the POST
41653     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
41654     we need to store the POST WORD in some other non volatile location.
41655     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
41656     a location.
41657
41658     Signed-off-by: Stefan Roese <sr@denx.de>
41659
41660 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
41661 Author: Stefan Roese <sr@denx.de>
41662 Date:   Wed Jan 9 10:23:16 2008 +0100
41663
41664     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
41665
41666     This patch adds support for locking the init-ram/stack in d-cache,
41667     so that other regions may use d-cache as well
41668
41669     Note, that this current implementation locks exactly 4k of d-cache,
41670     so please make sure that you don't define a bigger init-ram area. Take
41671     a look at the lwmon5 440EPx implementation as a reference.
41672
41673     Signed-off-by: Stefan Roese <sr@denx.de>
41674
41675 commit 0ddb89601a8d29e808db450366752ffdc6267c53
41676 Author: Wolfgang Denk <wd@denx.de>
41677 Date:   Wed Jan 9 10:16:33 2008 +0100
41678
41679     Fix memset bug in ext2fs_read_file()
41680
41681     ext2fs_read_file() had the function arguments swapped.
41682
41683     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
41684
41685     Signed-off-by: Wolfgang Denk <wd@denx.de>
41686
41687 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
41688 Author: Markus Klotzbücher <mk@denx.de>
41689 Date:   Tue Jan 5 08:17:15 1988 +0100
41690
41691     Fix problems with usb storage devices on MPC5200 /TQM5200
41692
41693     The MPC5200 OHCI controller operates in big endian, so
41694     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
41695
41696     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41697
41698 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
41699 Author: Wolfgang Denk <wd@denx.de>
41700 Date:   Tue Jan 8 22:58:27 2008 +0100
41701
41702     Fix compile problem with new env code.
41703
41704     Signed-off-by: Wolfgang Denk <wd@denx.de>
41705
41706 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
41707 Author: Markus Klotzbücher <mk@denx.de>
41708 Date:   Tue Nov 27 10:23:20 2007 +0100
41709
41710     tools: fix fw_printenv tool to compile again
41711
41712     This patch updates the fw_printenv/fw_setenv userspace tool to include
41713     the correct MTD header in order to compile against current kernel
41714     headers. Backward compatibility is preserved by introducing an option
41715     MTD_VERSION which can be set to "old" for compilation using the old MTD
41716     headers. Along with this a number of warnings are fixed.
41717
41718     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41719
41720 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
41721 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41722 Date:   Tue Jan 8 15:40:09 2008 +0100
41723
41724     ppc4xx: assign PCI interrupts on seuqoia boards
41725
41726     Some operating systems rely on assigned PCI interrupts.
41727
41728     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41729
41730 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
41731 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41732 Date:   Tue Jan 8 15:50:49 2008 +0100
41733
41734     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
41735
41736     This patch allows the use of 4xx interrupt vector number defines
41737     in board specific code outside cpu/ppc4xx.
41738
41739     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41740
41741 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
41742 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41743 Date:   Tue Jan 8 15:39:01 2008 +0100
41744
41745     ppc4xx: Fix UIC2 vector number base
41746
41747     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41748
41749 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
41750 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41751 Date:   Tue Jan 8 12:49:58 2008 +0100
41752
41753     ppc4xx: Update PLB/PCI divider for PMC440 board
41754
41755     This patch updates the PLB/PCI divider when running at
41756     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
41757
41758     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41759
41760 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
41761 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41762 Date:   Tue Jan 8 11:13:09 2008 +0100
41763
41764     ppc4xx: Disable error message when no NAND chip is installed on PMC440
41765
41766     Add CFG_NAND_QUIET_TEST option to disable error message when
41767     no NAND chip is installed on PMC440 boards.
41768
41769     Disable a couple of config defines that are only used for NAND_U_BOOT.
41770
41771     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41772
41773 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
41774 Author: Wolfgang Denk <wd@denx.de>
41775 Date:   Tue Jan 8 22:58:27 2008 +0100
41776
41777     Fix compile problem with new env code.
41778
41779     Signed-off-by: Wolfgang Denk <wd@denx.de>
41780
41781 commit 6de66b35426312a21174a9bf0576a094e2904bea
41782 Author: Markus Klotzbücher <mk@denx.de>
41783 Date:   Tue Nov 27 10:23:20 2007 +0100
41784
41785     tools: fix fw_printenv tool to compile again
41786
41787     This patch updates the fw_printenv/fw_setenv userspace tool to include
41788     the correct MTD header in order to compile against current kernel
41789     headers. Backward compatibility is preserved by introducing an option
41790     MTD_VERSION which can be set to "old" for compilation using the old MTD
41791     headers. Along with this a number of warnings are fixed.
41792
41793     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41794
41795 commit ad3006fe7e84667021753b74247b0bafd97ba35f
41796 Author: Gerald Van Baren <vanbaren@cideas.com>
41797 Date:   Mon Jan 7 23:47:32 2008 -0500
41798
41799     LIBFDT: use memmove() instead of memcpy()
41800
41801     This is partial patch from the DTC/libfdt
41802     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
41803     Author: David Gibson <david@gibson.dropbear.id.au>
41804     Date:   Wed Nov 21 11:56:14 2007 +1100
41805
41806         The patch also fixes one genuine bug caught by valgrind -
41807         _packblocks() in fdt_rw.c was using memcpy() where it should have been
41808         using memmove().
41809
41810     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41811
41812 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
41813 Author: David Gibson <david@gibson.dropbear.id.au>
41814 Date:   Mon Dec 17 14:42:07 2007 +1100
41815
41816     libfdt: Add more documentation (patch the seventh)
41817
41818     This patch adds more documenting comments to libfdt.h.  Specifically,
41819     these document the read/write functions (not including fdt_open_into()
41820     and fdt_pack(), for now).
41821
41822     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
41823
41824 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
41825 Author: David Gibson <david@gibson.dropbear.id.au>
41826 Date:   Mon Dec 17 14:41:52 2007 +1100
41827
41828     libfdt: Add more documentation (patch the sixth)
41829
41830     This patch adds some more documenting comments to libfdt.h.
41831     Specifically this documents all the write-in-place functions.
41832
41833     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
41834
41835 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
41836 Author: Gerald Van Baren <vanbaren@cideas.com>
41837 Date:   Sat Dec 29 22:45:27 2007 -0500
41838
41839     Fine grained per property /chosen updating.
41840
41841     Implement a suggestion by Scott Wood to make the /chosen handling fine
41842     grained.  Don't overwrite pre-existing properties on a per-property basis,
41843     so if /chosen exists but a necessary /chosen/property doesn't, it gets
41844     created.  If a /chosen property exists, it is NOT overwritten unless the
41845     "force" flag is true.
41846
41847     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41848
41849 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
41850 Author: Gerald Van Baren <vanbaren@cideas.com>
41851 Date:   Sat Jan 5 15:33:29 2008 -0500
41852
41853     Improve the FDT help message.
41854
41855     Add a note that "fdt copy" makes the new address active.
41856     Remove most of the extra hints at the end of the fdt help.
41857
41858     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41859
41860 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
41861 Author: Gerald Van Baren <vanbaren@cideas.com>
41862 Date:   Sat Jan 5 14:52:04 2008 -0500
41863
41864     Support setting FDT properties with optional values.
41865
41866     Fix a bug found and documented by Bartlomiej Sieka where the optional
41867     value on "fdt set <path> <prop> [<val>]" wasn't optional.
41868
41869     => fdt mknode / testnode
41870     => fdt print /testnode
41871     testnode {
41872     };
41873     => fdt set /testnode testprop
41874     => fdt print /testnode
41875     testnode {
41876             testprop;
41877     };
41878
41879     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
41880
41881 commit 22fb2246df91bfc840d87f0c5910818bad55577a
41882 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41883 Date:   Fri Dec 28 11:56:30 2007 +0100
41884
41885     Add fdt_find_and_setprop() to fdt_support.h
41886
41887     fdt_find_and_setprop() is used by several 4xx boards and it's
41888     missing in the appropriate header. This patch eliminates a
41889     warning when building U-Boot for such boards.
41890
41891     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41892     Acked-by: Stefan Roese <sr@denx.de>
41893
41894 commit 802b769bac17b0560d3535a42c502469ee190cd1
41895 Author: Stefan Roese <sr@denx.de>
41896 Date:   Tue Jan 8 18:39:30 2008 +0100
41897
41898     ppc4xx: Return 0 on success in 4xx ethernet driver
41899
41900     Signed-off-by: Stefan Roese <sr@denx.de>
41901
41902 commit 6775c68683a53c7abc778774641aac6f833a2cbf
41903 Author: Kim Phillips <kim.phillips@freescale.com>
41904 Date:   Tue Jan 8 09:59:49 2008 -0600
41905
41906     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
41907
41908     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41909
41910 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
41911 Author: Kim Phillips <kim.phillips@freescale.com>
41912 Date:   Thu Dec 20 16:28:34 2007 -0600
41913
41914     mpc83xx: rm remaining FLAT_TREE code
41915
41916     ..in board pci.c files
41917
41918     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41919
41920 commit b3458d2cd55d01732e30a76d898afd99e871cd67
41921 Author: Kim Phillips <kim.phillips@freescale.com>
41922 Date:   Thu Dec 20 15:57:28 2007 -0600
41923
41924     mpc83xx: remove FLAT_TREE code
41925
41926     need to rm it from pci code, too!
41927
41928     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41929
41930 commit 5b8bc606c61456566af6912f818a153b6b06f242
41931 Author: Kim Phillips <kim.phillips@freescale.com>
41932 Date:   Thu Dec 20 14:09:22 2007 -0600
41933
41934     mpc83xx: convert to using do_fixup_*()
41935
41936     convert to using simpler mpc85xx style fdt update code; streamline by
41937     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
41938     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
41939     converted over to using libfdt).
41940
41941     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41942
41943 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
41944 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41945 Date:   Thu Dec 20 12:58:51 2007 -0500
41946
41947     sbc8349: enable libfdt by default on WRS SBC8349 board.
41948
41949     Make libfdt the default for the WRS SBC8349 board.
41950     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
41951     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
41952
41953     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41954
41955 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
41956 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41957 Date:   Thu Dec 20 12:58:16 2007 -0500
41958
41959     sbc8349: migrate board to libfdt
41960
41961     This adds libfdt support code for the Wind River sbc8349 board.
41962
41963     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
41964     the other Freescale 83xx boards.
41965
41966     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41967
41968 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
41969 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41970 Date:   Thu Dec 20 12:56:19 2007 -0500
41971
41972     sbc8349: Remove board specific ECC code
41973
41974     ECC code is now shared for all 83xx boards, so remove board specific one.
41975     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
41976
41977     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41978
41979 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
41980 Author: Kim Phillips <kim.phillips@freescale.com>
41981 Date:   Thu Dec 20 01:30:48 2007 -0600
41982
41983     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
41984
41985     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
41986
41987     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41988
41989 commit ccf21c311e68d48399eff1e72936052885f6e3f7
41990 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41991 Date:   Thu Dec 6 16:43:40 2007 +0100
41992
41993     Add support CONFIG_UEC_ETH3 in MPC83xx
41994
41995     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41996
41997 commit e6af9932d31171e35db880e7b2f29f903b1b7660
41998 Author: Kumar Gala <galak@kernel.crashing.org>
41999 Date:   Mon Nov 26 11:00:54 2007 -0600
42000
42001     Remove CONFIG options related to OF that we dont use
42002
42003     The MPC8360E MDS config defined:
42004         CONFIG_OF_HAS_BD_T
42005         CONFIG_OF_HAS_UBOOT_ENV
42006
42007     Which we don't use or ever needed.  This seems like copy-paste feature creep.
42008
42009     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42010
42011 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
42012 Author: Kim Phillips <kim.phillips@freescale.com>
42013 Date:   Mon Dec 10 14:16:22 2007 -0600
42014
42015     mpc83xx: supress compiler warning
42016
42017     mpc8360emds.c: In function â€˜ft_board_setup’:
42018     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
42019     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
42020
42021     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42022
42023 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
42024 Author: Kim Phillips <kim.phillips@freescale.com>
42025 Date:   Tue Nov 27 14:17:29 2007 -0600
42026
42027     mpc83xx: fix remaining fdt_find_node_by_path references
42028
42029     rename to fdt_path_offset
42030
42031     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42032
42033 commit 921d4b19ad1be704df58725485d9292dc0414adf
42034 Author: Kim Phillips <kim.phillips@freescale.com>
42035 Date:   Mon Nov 19 12:30:09 2007 -0600
42036
42037     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
42038
42039     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
42040     This change guarantees that the environment will be located on the
42041     first flash sector after the U-Boot image.
42042
42043     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42044
42045 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
42046 Author: Kim Phillips <kim.phillips@freescale.com>
42047 Date:   Fri Nov 9 14:28:08 2007 -0600
42048
42049     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
42050
42051     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
42052     properties in the device tree so the PHY gets configured for internal delay on
42053     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
42054
42055     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42056
42057 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
42058 Author: Dave Liu <r63238@freescale.com>
42059 Date:   Tue Sep 18 12:41:15 2007 +0800
42060
42061     mpc83xx: update the CREDITS and MAINTAINERS
42062
42063     update the CREDITS and MAINTAINERS.
42064
42065     Signed-off-by: Dave Liu <daveliu@freescale.com>
42066
42067 commit b21add4b42af7b767448251b599b91066a160e0d
42068 Author: Dave Liu <r63238@freescale.com>
42069 Date:   Tue Sep 18 12:40:21 2007 +0800
42070
42071     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
42072
42073     Add the MAINTAINER and MAKEALL entries for mpc837xemds
42074
42075     Signed-off-by: Dave Liu <daveliu@freescale.com>
42076
42077 commit f8900ce9094c462355eb792eea264ff16ac8fd16
42078 Author: Dave Liu <r63238@freescale.com>
42079 Date:   Tue Sep 18 12:38:53 2007 +0800
42080
42081     mpc83xx: Add the MPC837xEMDS board readme
42082
42083     Add the README.mpc837xemds to /doc
42084
42085     Signed-off-by: Dave Liu <daveliu@freescale.com>
42086
42087 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
42088 Author: Dave Liu <r63238@freescale.com>
42089 Date:   Tue Sep 18 12:37:57 2007 +0800
42090
42091     mpc83xx: Add the support of MPC837xEMDS board
42092
42093     The MPC837xEMDS board support:
42094     * DDR2 400MHz hardcoded and SPD init
42095     * Local bus NOR Flash
42096     * I2C, UART, MII and RTC
42097     * eTSEC RGMII
42098     * PCI host
42099
42100     Signed-off-by: Dave Liu <daveliu@freescale.com>
42101
42102 commit 555da61702771fe0f76f3de23b4e7590f3704161
42103 Author: Dave Liu <r63238@freescale.com>
42104 Date:   Tue Sep 18 12:36:58 2007 +0800
42105
42106     mpc83xx: Add the support of MPC8315E SoC
42107
42108     The MPC8315E SoC including e300c3 core and new IP blocks,
42109     such as TDM, PCI Express and SATA controller.
42110
42111     Signed-off-by: Dave Liu <daveliu@freescale.com>
42112
42113 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
42114 Author: Dave Liu <r63238@freescale.com>
42115 Date:   Tue Sep 18 12:36:11 2007 +0800
42116
42117     mpc83xx: Add the support of MPC837x SoC
42118
42119     The MPC837x SoC including e300c4 core and new IP blocks,
42120     such as SDHC, PCI Express and SATA controller.
42121
42122     Signed-off-by: Dave Liu <daveliu@freescale.com>
42123
42124 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
42125 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
42126 Date:   Wed Nov 14 18:54:53 2007 +0300
42127
42128     MPC8360E-MDS: configure and enable second UART
42129
42130     Despite user manual, BCSR9.7 is negated (high) on HRST, so
42131     UART2 is disabled. Fix that and configure QE pins properly.
42132
42133     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
42134
42135 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
42136 Author: Timur Tabi <timur@freescale.com>
42137 Date:   Mon Nov 5 09:34:06 2007 -0600
42138
42139     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
42140
42141     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
42142     currently-defined 83xx boards.  This change guarantees that the environment
42143     will be located on the first flash sector after the U-Boot image.
42144
42145     Signed-off-by: Timur Tabi <timur@freescale.com>
42146     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42147
42148 commit e05329516a13616b53240cd85b739217c2bf87f1
42149 Author: Larry Johnson <lrj@acm.org>
42150 Date:   Fri Jan 4 13:27:02 2008 -0500
42151
42152     ppc4xx: Remove weak binding from common Denali data-eye search code
42153
42154     Now that there are no board-specific versions of
42155     "denali_core_search_data_eye()", the weak binding on the common version
42156     can be removed.
42157
42158     Signed-off-by: Larry Johnson <lrj@acm.org>
42159
42160 commit 5ba576c01602fd328800a427964c36a0a05c5dce
42161 Author: Stefan Roese <sr@denx.de>
42162 Date:   Sat Jan 5 09:13:46 2008 +0100
42163
42164     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
42165
42166     Signed-off-by: Stefan Roese <sr@denx.de>
42167
42168 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
42169 Author: Stefan Roese <sr@denx.de>
42170 Date:   Sat Jan 5 09:12:41 2008 +0100
42171
42172     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
42173
42174     On Katmai the complete auto-calibration somehow doesn't seem to
42175     produce the best results, meaning optimal values for RQFD/RFFD.
42176     This was discovered by GDA using a high bandwidth scope,
42177     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
42178     so now on Katmai "only" RFFD is auto-calibrated.
42179
42180     This patch also adds RDCC calibration as mentioned on page 7 of
42181     the AMCC PowerPC440SP/SPe DDR2 application note:
42182     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
42183
42184     Signed-off-by: Stefan Roese <sr@denx.de>
42185
42186 commit 49db47b8ae6afff2b898be312948ff501357dc80
42187 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42188 Date:   Wed Jan 2 16:48:42 2008 +0100
42189
42190     ppc4xx: Remove sdram.h from PMC440 board
42191
42192     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42193
42194 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
42195 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42196 Date:   Wed Jan 2 16:48:34 2008 +0100
42197
42198     ppc4xx: use common denali core defines and data eye search code for PMC440
42199
42200     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42201
42202 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
42203 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42204 Date:   Wed Jan 2 12:05:14 2008 +0100
42205
42206     ppc4xx: More cleanup for esd's LCD code
42207
42208     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42209
42210 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
42211 Author: Stefan Roese <sr@denx.de>
42212 Date:   Fri Jan 4 12:00:01 2008 +0100
42213
42214     ppc4xx: Fix Sequoia NAND booting target
42215
42216     The Sequoia NAND booting target now uses the recently extracted
42217     cpu/ppc4xx/denali_data_eye.c file too.
42218
42219     Signed-off-by: Stefan Roese <sr@denx.de>
42220
42221 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
42222 Author: Lawrence R. Johnson <lrj@acm.org>
42223 Date:   Thu Jan 3 15:02:02 2008 -0500
42224
42225     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
42226
42227     Signed-off-by: Larry Johnson <lrj@acm.org>
42228
42229 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
42230 Author: Lawrence R. Johnson <lrj@acm.org>
42231 Date:   Fri Jan 4 02:11:56 2008 -0500
42232
42233     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
42234
42235     Note: this patch changes the configuration of some GPIO registers:
42236
42237        Register      Old Value   New Value
42238     ---------------  ----------  ----------
42239     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
42240     DCR GPIO0_TSRH   0x55005000  0x00000000
42241     DCR GPIO1_TCR    0xC2000000  0xE2000000
42242     DCR GPIO1_TSRL   0x0C000000  0x00200000
42243     DCR GPIO1_ISR2L  0x00050000  0x00110000
42244
42245     Signed-off-by: Larry Johnson <lrj@acm.org>
42246
42247 commit 5ab884b254ca2e707ab50545cd705f30108cf491
42248 Author: Lawrence R. Johnson <lrj@acm.org>
42249 Date:   Thu Jan 3 18:54:00 2008 -0500
42250
42251     ppc4xx: Add functionality to GPIO support
42252
42253     This patch makes two additions to GPIO support:
42254
42255     First, it adds function gpio_read_in_bit() to read the a bit from the
42256     GPIO Input Register (GPIOx_IR) in the same way that function
42257     gpio_read_out_bit() reads a bit from the GPIO Output Register
42258     (GPIOx_OR).
42259
42260     Second, it modifies function gpio_set_chip_configuration() to provide
42261     an additional option for configuring the GPIO from the
42262     "CFG_4xx_GPIO_TABLE".
42263
42264     According to the 440EPx User's Manual, when an alternate output is used,
42265     the three-state control is configured in one of two ways, depending on
42266     the particular output.  The first option is to select the corresponding
42267     alternate three-state control in the GPIOx_TRSH/L registers.  The second
42268     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
42269     the GPIOx_TRSH/L registers, and set the corresponding bit in the
42270     GPIOx_TCR register to enable the output.  For example, the Manual
42271     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
42272     the alternate three-state control (first option), and specifies
42273     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
42274     enabled in the GPIOx_TCR register (second option).
42275
42276     Currently, gpio_set_chip_configuration() configures all alternate signal
42277     outputs to use the first option.  This patch allow the second option to
42278     be selected by setting the "out_val" element in the table entry to
42279     "GPIO_OUT_1".  The first option is used when the "out_val" element is
42280     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
42281     alternate signal is selected, and because all current GPIO tables set
42282     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
42283     not change any existing configurations.
42284
42285     Signed-off-by: Larry Johnson <lrj@acm.org>
42286
42287 commit 196404cdc1de495d6182e84731c200fc5748df15
42288 Author: Larry Johnson <lrj@arlinx.com>
42289 Date:   Sun Dec 30 01:01:54 2007 -0500
42290
42291     PPC4xx: Remove sdram.h from board/lwmon5
42292
42293     These definitions are now in "include/ppc440.h".
42294
42295     Signed-off-by: Larry Johnson <lrj@acm.org>
42296
42297 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
42298 Author: Larry Johnson <lrj@arlinx.com>
42299 Date:   Sun Dec 30 01:01:32 2007 -0500
42300
42301     PPC4xx: Use common code for LWMON5 board SDRAM support
42302
42303     This patch also modifies the functionality of the code so that the data-eye
42304     search is now done with with the cache disabled.
42305
42306     Signed-off-by: Larry Johnson <lrj@acm.org>
42307
42308 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
42309 Author: Larry Johnson <lrj@arlinx.com>
42310 Date:   Sun Dec 30 01:01:14 2007 -0500
42311
42312     PPC4xx: Remove sdram.h from board/amcc/sequoia
42313
42314     These definitions are now in "include/ppc440.h".
42315
42316     Signed-off-by: Larry Johnson <lrj@acm.org>
42317
42318 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
42319 Author: Larry Johnson <lrj@arlinx.com>
42320 Date:   Sun Dec 30 01:00:50 2007 -0500
42321
42322     PPC4xx: Use common code for Sequoia board SDRAM support
42323
42324     Signed-off-by: Larry Johnson <lrj@acm.org>
42325
42326 commit 8b0c5c127690335758100c25eaec2b84db97c101
42327 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42328 Date:   Thu Dec 27 16:58:41 2007 +0100
42329
42330     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
42331
42332     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
42333     networking stack does not automatically switch to
42334     another interface. This patch does not touch the default
42335     behavior.
42336
42337     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42338     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42339
42340 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
42341 Author: Upakul Barkakaty <upakul@gmail.com>
42342 Date:   Thu Nov 29 12:16:13 2007 +0530
42343
42344     NET: Proper return code handling in eth_init() function in file eth.c
42345
42346     This patch modifies the return code handling in the eth_init()
42347     function, to be compatible with the handling of the return codes in
42348     the other network stack files. It now returns a 0 on Success and -1 on
42349     error.
42350
42351     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
42352     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42353
42354 commit 5ca2d0953e4579a80810966cca2077e20d912c97
42355 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42356 Date:   Mon Nov 19 20:27:04 2007 +0900
42357
42358     net/eth.c: Fix env_enetaddr signed overflow
42359
42360     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
42361     warned as below:
42362
42363       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
42364
42365       DRAM:  256 MB
42366       Flash: 32 MB
42367       In:    serial
42368       Out:   serial
42369       Err:   serial
42370       Net:   NEC-Candy
42371       Warning: NEC-Candy MAC addresses don't match:
42372       Address in SROM is         00:00:4C:80:92:A2
42373       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
42374
42375     This patch changes env_enetaddr type from `char' to `unsigned char'.
42376
42377     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
42378     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
42379     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42380
42381 commit f85b60710571b37293d2233933b76e2aa3db5635
42382 Author: Rafal Jaworowski <raj@semihalf.com>
42383 Date:   Thu Dec 27 18:19:02 2007 +0100
42384
42385     Introduce new eth_receive routine
42386
42387     The purpose of this routine is receiving a single network frame, outside of
42388     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
42389     U-Boot will let them utilise networking facilities. For sending a raw frame
42390     the already existing eth_send() can be used.
42391
42392     The direct consumer of this routine is the newly introduced API layer for
42393     external applications (enabled with CONFIG_API).
42394
42395     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
42396     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
42397     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42398
42399 commit 5c740711f0ea5b51414b341b71597c4a0751be74
42400 Author: Jon Loeliger <jdl@freescale.com>
42401 Date:   Thu Jan 3 10:41:04 2008 -0600
42402
42403     8610: Move include of config.h earlier.
42404
42405     Include config.h earlier in the set of #includes
42406     so as to avoid a incidental and duplicate definition
42407     of CFG_CACHELINE_SIZE.
42408
42409     Signed-off-by: Jon Loeliger
42410
42411 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
42412 Author: Jon Loeliger <jdl@freescale.com>
42413 Date:   Tue Dec 4 10:53:34 2007 -0600
42414
42415     Don't slam #undef DEBUG in the 8641HPCN config file.
42416
42417     Doing so prevents it from being individually set
42418     and useful in other files.
42419
42420     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42421
42422 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
42423 Author: Jon Loeliger <jdl@freescale.com>
42424 Date:   Wed Nov 28 14:47:18 2007 -0600
42425
42426     Convert MPC8641HPCN to use libfdt.
42427
42428     Assumes the presence of the aliases node in the DTS to
42429     locate the ethernet, pci and serial nodes for fixups.
42430
42431     Use consistent fdtaddr and fdtfile in environment variables.
42432
42433     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42434
42435 commit ce37422d0002e10490e268392e0c4e3028e52cec
42436 Author: Stefan Roese <sr@denx.de>
42437 Date:   Wed Jan 2 14:06:26 2008 +0100
42438
42439     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
42440
42441     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
42442     flash chips connected to a 32bit wide port.
42443
42444     Signed-off-by: Stefan Roese <sr@denx.de>
42445
42446 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
42447 Author: Wolfgang Denk <wd@denx.de>
42448 Date:   Wed Jan 2 15:58:44 2008 +0100
42449
42450     Fix compile problem introduced by "cleanup" commit 3dfd708c
42451
42452     Signed-off-by: Wolfgang Denk <wd@denx.de>
42453
42454 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
42455 Author: Wolfgang Denk <wd@denx.de>
42456 Date:   Wed Jan 2 15:54:45 2008 +0100
42457
42458     Make scripts and Makefiles POSIX compliant
42459
42460     The bash builtin versions of the "test" (resp. "[") command allow
42461     using "==" for string comparisons, but POSIX compatible implemen-
42462     tations (like /usr/bin/test) insist on using "=" only. On such systems
42463     you will see:
42464
42465         $ /usr/bin/test a == a && echo OK
42466         /usr/bin/test: ==: binary operator expected
42467
42468     This patch fixes Makefiles and scripts to use POSIX style.
42469
42470     Signed-off-by: Wolfgang Denk <wd@denx.de>
42471
42472 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
42473 Author: Stefan Roese <sr@denx.de>
42474 Date:   Wed Jan 2 14:05:37 2008 +0100
42475
42476     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
42477
42478     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
42479     flash chips connected to a 32bit wide port.
42480
42481     Signed-off-by: Stefan Roese <sr@denx.de>
42482
42483 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
42484 Author: Wolfgang Denk <wd@denx.de>
42485 Date:   Wed Jan 2 12:38:43 2008 +0100
42486
42487     Minor coding style cleanup.
42488
42489     Signed-off-by: Wolfgang Denk <wd@denx.de>
42490
42491 commit e174ac34adf5d5653df12bc3cf19c52063a71269
42492 Author: Stefan Roese <sr@denx.de>
42493 Date:   Fri Dec 28 17:29:56 2007 +0100
42494
42495     ppc4xx: Coding style cleanup
42496
42497     Signed-off-by: Stefan Roese <sr@denx.de>
42498
42499 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
42500 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42501 Date:   Fri Dec 28 17:07:24 2007 +0100
42502
42503     ppc4xx: Complete PMC440 board support
42504
42505     This patch brings the PMC440 board configuration file.
42506     Finally it enables the PMC440 board support.
42507
42508     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42509
42510 commit 407843a582560fc5231299561ab3c2b6b6cd3397
42511 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42512 Date:   Fri Dec 28 17:07:18 2007 +0100
42513
42514     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
42515
42516     This patch adds some BSP commands and FPGA booting support
42517     for esd's PMC440 boards.
42518
42519     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42520
42521 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
42522 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42523 Date:   Fri Dec 28 17:07:14 2007 +0100
42524
42525     ppc4xx: Add initial esd PMC440 board files
42526
42527     This patch adds the first files for the new esd PMC440 boards.
42528     The next two patches will complete the PMC440 board support.
42529
42530     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42531
42532 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
42533 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42534 Date:   Fri Dec 28 17:10:36 2007 +0100
42535
42536     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
42537
42538     - add EEPROM write protection for esd PLU405 boards.
42539     - initialize NAND GPIOs
42540     - use correct io accessors
42541     - cleanup
42542
42543     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42544
42545 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
42546 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42547 Date:   Fri Dec 28 17:10:44 2007 +0100
42548
42549     ppc4xx: use correct io accessors for esd's LCD code
42550
42551     This patch fixes esd's LCD dectection code to work correctly with
42552     newer gcc versions.
42553
42554     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42555
42556 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
42557 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42558 Date:   Fri Dec 28 17:10:42 2007 +0100
42559
42560     ppc4xx: Maintenance patch for VOH405 boards
42561
42562     - add EEPROM write protection
42563     - initialize NAND GPIOs
42564     - use correct io accessors
42565     - slow down I2C clock to 100kHz
42566     - enable ext. I2C bus
42567     - cleanup
42568
42569     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42570
42571 commit c05569066dbcba3fdf36d4d1943df265dc316a86
42572 Author: Stefan Roese <sr@denx.de>
42573 Date:   Fri Dec 28 16:08:08 2007 +0100
42574
42575     ppc4xx: Enable 405EP PCI arbiter per default on all boards
42576
42577     In an attmemt to clean up the 4xx start.S file, I removed the enabling
42578     of the internal 405EP PCI arbiter. This is needed for multiple other
42579     405EP platforms, like most of the esd 405EP. Now the internal PCI
42580     arbiter is enabled again per default as it has been before.
42581
42582     Signed-off-by: Stefan Roese <sr@denx.de>
42583     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42584
42585 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
42586 Author: Stefan Roese <sr@denx.de>
42587 Date:   Fri Dec 28 15:53:46 2007 +0100
42588
42589     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
42590
42591     Signed-off-by: Stefan Roese <sr@denx.de>
42592     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42593
42594 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
42595 Author: Stefan Roese <sr@denx.de>
42596 Date:   Fri Dec 28 06:06:04 2007 +0100
42597
42598     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
42599
42600     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
42601     platforms mentioned above.
42602
42603     Signed-off-by: Stefan Roese <sr@denx.de>
42604
42605 commit b568fd25574181a3b12ae3d66b2913903442cb83
42606 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42607 Date:   Thu Dec 27 17:03:46 2007 +0100
42608
42609     Remove CPCI440 board
42610
42611     This board never left prototyping state and it
42612     became a millstone round my neck. So remove it.
42613
42614     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42615
42616 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
42617 Author: Larry Johnson <lrj@arlinx.com>
42618 Date:   Thu Dec 27 11:28:51 2007 -0500
42619
42620     Add support for Korat PPC440EPx board
42621
42622     These patches add support for the PPC440EPx-based "Korat" board to
42623     U-Boot.  They are based primarily on support for the Sequoia board.
42624
42625     Signed-off-by: Larry Johnson <lrj@acm.org>
42626
42627 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
42628 Author: Larry Johnson <lrj@arlinx.com>
42629 Date:   Sat Dec 22 15:16:25 2007 -0500
42630
42631     Add configuration file for Korat board
42632
42633     This patch supplies the configuration file for the Korat PPC440EPx-
42634     processor board.
42635
42636     Signed-off-by: Larry Johnson <lrj@acm.org>
42637
42638 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
42639 Author: Larry Johnson <lrj@arlinx.com>
42640 Date:   Sat Dec 22 15:16:11 2007 -0500
42641
42642     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
42643
42644     Signed-off-by: Larry Johnson <lrj@acm.org>
42645
42646 commit aba19604d848b2838cfb9ebe818909e6a216058e
42647 Author: Larry Johnson <lrj@arlinx.com>
42648 Date:   Thu Dec 27 10:54:48 2007 -0500
42649
42650     Add 440EPx DDR2 SPD DIMM support
42651
42652     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
42653     controller.  It should also work on the 440GRx.  It is based on the DDR2
42654     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
42655
42656     This code has been tested on prototype Korat boards with three Kingston
42657     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
42658     (two ranks).  The Korat board has a single DIMM socket, but support has
42659     been provided (though not tested) for boards with two DIMM sockets.
42660
42661     Signed-off-by: Larry Johnson <lrj@acm.org>
42662
42663 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
42664 Author: Larry Johnson <lrj@arlinx.com>
42665 Date:   Sat Dec 22 15:15:30 2007 -0500
42666
42667     Copy 440EPx/GRx SDRAM data-eye search to common directory
42668
42669     This patch creates a non-board-specific file for performing the SDRAM
42670     data-eye search.  It also adds ECC error checking to the test of valid
42671     data on readback when ECC is enabled.
42672
42673     Signed-off-by: Larry Johnson <lrj@acm.org>
42674
42675 commit c46f53333b22b1f9098676bea8884fc7db820cf3
42676 Author: Larry Johnson <lrj@arlinx.com>
42677 Date:   Sat Dec 22 15:15:13 2007 -0500
42678
42679     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
42680
42681     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
42682     It also fixes two typos in the definitions, so the board-specific
42683     "sdram.h" files containing these definitions are also fixed to avoid
42684     compiler warnings.
42685
42686     Signed-off-by: Larry Johnson <lrj@acm.org>
42687
42688 commit c348578bf612d0c56d8d376d23cae16defbd86af
42689 Author: Larry Johnson <lrj@arlinx.com>
42690 Date:   Thu Dec 27 10:50:55 2007 -0500
42691
42692     Add Ethernet 1000BASE-X support for PPC4xx
42693
42694     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
42695     is defined, the PHY will advertise it's capabilities for autonegotiation
42696     based on the capabilities shown in the PHY's status registers, including
42697     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
42698     advertise hard-coded capabilities, as before.
42699
42700     Signed-off-by: Larry Johnson <lrj@acm.org>
42701
42702 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
42703 Author: Larry Johnson <lrj@arlinx.com>
42704 Date:   Thu Dec 27 09:52:17 2007 -0500
42705
42706     Add driver for National Semiconductor LM73 temperature sensor
42707
42708     This driver is based on the driver for the LM75.
42709
42710     Signed-off-by: Larry Johnson <lrj@acm.org>
42711
42712 commit 12618278688ea9b3d76536960a5ad2e3790fac40
42713 Author: Larry Johnson <lrj@arlinx.com>
42714 Date:   Sat Dec 22 15:14:00 2007 -0500
42715
42716     Add driver for STMicroelectronics M41T60 RTC
42717
42718     This driver is based on the driver for the M41T11.  In the intended
42719     application, the RTC will be powered by a large capacitor, rather than a
42720     battery.  The driver therefore checks to see whether the RTC has lost
42721     power.  The chip's OUT bit is normally reset from its power-up state.  If
42722     the OUT bit is read as set, or if the date and time are not valid, then the
42723     RTC is assumed to have lost power, and its date and time are reset to
42724     1900-01-01 00:00:00.
42725
42726     Support for adjusting the speed of the clock to improve accuracy is
42727     provided through an environment variable.
42728
42729     Signed-off-by: Larry Johnson <lrj@acm.org>
42730
42731 commit d3471173e14b7544bb60339eda8d3d3906694b0a
42732 Author: Larry Johnson <lrj@arlinx.com>
42733 Date:   Sat Dec 22 15:34:39 2007 -0500
42734
42735     Use out_be32() and friends to access memory-mapped registers in sequoia.c
42736
42737     Signed-off-by: Larry Johnson <lrj@acm.org>
42738
42739 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
42740 Author: Larry Johnson <lrj@arlinx.com>
42741 Date:   Sat Dec 22 15:34:20 2007 -0500
42742
42743     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
42744
42745     Signed-off-by: Larry Johnson <lrj@acm.org>
42746
42747 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
42748 Author: Larry Johnson <lrj@arlinx.com>
42749 Date:   Sat Dec 22 15:23:50 2007 -0500
42750
42751     Cosmetic changes to ECC POST for AMCC Denali core
42752
42753     Signed-off-by: Larry Johnson <lrj@acm.org>
42754
42755 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
42756 Author: Stefan Roese <sr@denx.de>
42757 Date:   Wed Dec 26 20:20:19 2007 +0100
42758
42759     ppc4xx: Fix compilation problem in 405 cache POST test
42760
42761     Signed-off-by: Stefan Roese <sr@denx.de>
42762
42763 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
42764 Author: Stefan Roese <sr@denx.de>
42765 Date:   Sat Dec 22 12:20:09 2007 +0100
42766
42767     ppc4xx: Move virtual address of POST cache test to bigger address
42768
42769     On Sequoia & LWMON5 the virtual address of the POST cache test is now
42770     moved to a bigger address. This enables usage of more memory on those
42771     boards.
42772
42773     Signed-off-by: Stefan Roese <sr@denx.de>
42774
42775 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
42776 Author: Stefan Roese <sr@denx.de>
42777 Date:   Sat Dec 22 12:18:26 2007 +0100
42778
42779     ppc4xx: Fix problem in 44x cache POST routine
42780
42781     As repoted by Larry Johnson, running "diag run cache" caused a crash
42782     in U-Boot. This problem was introduced by a patch that removed the
42783     TLB entry for the cache test after the test has completed. Since this
42784     TLB was only setup once, a 2nd attempt to run this cache test
42785     failed with a crash. Now this TLB entry is created every time the
42786     routine is called.
42787
42788     Signed-off-by: Stefan Roese <sr@denx.de>
42789
42790 commit b0265b576bb8fa9465f99e99c323768b562fadc2
42791 Author: Stefan Roese <sr@denx.de>
42792 Date:   Fri Dec 21 07:51:29 2007 +0100
42793
42794     ppc4xx: Update Makalu fdt support
42795
42796     Signed-off-by: Stefan Roese <sr@denx.de>
42797
42798 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
42799 Author: Stefan Roese <sr@denx.de>
42800 Date:   Wed Dec 19 09:05:40 2007 +0100
42801
42802     ppc4xx: Add fdt support to AMCC Katmai eval board
42803
42804     Signed-off-by: Stefan Roese <sr@denx.de>
42805
42806 commit 328a340392a5df9aaf00792be989df73e750859e
42807 Author: Stefan Roese <sr@denx.de>
42808 Date:   Tue Dec 18 08:44:51 2007 +0100
42809
42810     ppc4xx: fdt: Cleanup setup of cpu node setup
42811
42812     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
42813     without using the absolute path to the cpu node. This makes it possible
42814     to use this U-Boot version with both versions of cpu-node naming
42815     "cpu@0" and the former "PowerPC,440EPx@0".
42816
42817     Signed-off-by: Stefan Roese <sr@denx.de>
42818
42819 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
42820 Author: Stefan Roese <sr@denx.de>
42821 Date:   Mon Dec 17 17:26:21 2007 +0100
42822
42823     ppc4xx: Fix lwmon5 compilation problem
42824
42825     Now that the 440EPx ECC test is not board specific anymore
42826     remove this Makefile.
42827
42828     Signed-off-by: Stefan Roese <sr@denx.de>
42829
42830 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
42831 Author: Anatolij Gustschin <agustschin@t-online.de>
42832 Date:   Wed Dec 5 17:43:20 2007 +0100
42833
42834     Fix ppc4xx clear_bss() code
42835
42836     ppc4xx clear_bss() fails if BSS segment size is not
42837     divisible by 4 without remainder. This patch provides
42838     fix for this problem.
42839
42840     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42841
42842 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
42843 Author: Niklaus Giger <niklausgiger@gmx.ch>
42844 Date:   Fri Nov 30 18:35:11 2007 +0100
42845
42846     PPC4xx: Minimal changes to add vxWorks support
42847
42848     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
42849
42850 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
42851 Author: Markus Klotzbücher <mk@denx.de>
42852 Date:   Fri Nov 23 13:09:18 2007 +0100
42853
42854     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
42855
42856     When using dhcp/bootp the "netmask" environment variable is not
42857     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
42858     desireable, so the following patch adds this this option to the board
42859     config.
42860
42861     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42862     Signed-off-by: Stefan Roese <sr@denx.de>
42863
42864 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
42865 Author: Larry Johnson <lrj@arlinx.com>
42866 Date:   Sat Oct 27 12:48:15 2007 -0400
42867
42868     Fix/enhance ECC POST for 440EPx/GRx
42869
42870     This patch allows the ECC POST to be used for different boards with the
42871     PPC440 Denali SDRAM controller.  Modifications include skipping the test
42872     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
42873     to prevent timing errors.
42874
42875     Signed-off-by: Larry Johnson <lrj@acm.org>
42876
42877 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
42878 Author: Larry Johnson <lrj@arlinx.com>
42879 Date:   Sat Oct 27 12:48:05 2007 -0400
42880
42881     PPC4xx: Move/rename ECC POST for 440EPx/GRx
42882
42883     Signed-off-by: Larry Johnson <lrj@acm.org>
42884
42885 commit c29d2d3680046d430022c55e50fcb27f5866517e
42886 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42887 Date:   Fri Dec 14 11:20:33 2007 +0100
42888
42889     ppc4xx: use correct io accessors for 4xx ethernet POST
42890
42891     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42892
42893 commit ba79fde58a48c0a6ff8e2a96caba951594142203
42894 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42895 Date:   Fri Dec 14 11:19:56 2007 +0100
42896
42897     ppc4xx: fix flush + invalidate_dcache_range arguments
42898
42899     flush + invalidate_dcache_range() expect the start and stop+1 address.
42900     So the stop address is the first address behind (!) the range.
42901
42902     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42903
42904 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
42905 Author: Stefan Roese <sr@denx.de>
42906 Date:   Fri Dec 14 08:41:29 2007 +0100
42907
42908     ppc4xx: fdt: use fdt_fixup_ethernet()
42909
42910     By using aliases in the dts file, the ethernet node fixup is
42911     much easier with the recently added functions.
42912
42913     Please note that the dts file needs the aliases for this to work.
42914
42915     Signed-off-by: Stefan Roese <sr@denx.de>
42916
42917 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
42918 Author: Stefan Roese <sr@denx.de>
42919 Date:   Thu Dec 13 14:52:53 2007 +0100
42920
42921     ppc4xx: Bring 4xx fdt support up-to-date
42922
42923     This patch update the 4xx fdt support. It enabled fdt booting
42924     on the AMCC Kilauea and Sequoia for now. More can follow later
42925     quite easily.
42926
42927     Signed-off-by: Stefan Roese <sr@denx.de>
42928
42929 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
42930 Author: Stefan Roese <sr@denx.de>
42931 Date:   Thu Dec 27 07:50:54 2007 +0100
42932
42933     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
42934
42935     The check for an sufficiently erased destination was missing in the
42936     buffered write function of the cfi flash driver (when
42937     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
42938     writing to such a region will fail with the currect error message.
42939
42940     Signed-off-by: Stefan Roese <sr@denx.de>
42941
42942 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
42943 Author: Martin Krause <martin.krause@tqs.de>
42944 Date:   Mon Nov 12 10:56:17 2007 +0100
42945
42946     Some configuration updates for the TQM5200 based TB5200 board:
42947
42948     - enable command line history
42949     - increase malloc space (because of bigger flash sectors)
42950
42951     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42952
42953 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
42954 Author: Martin Krause <martin.krause@tqs.de>
42955 Date:   Thu Sep 27 11:10:08 2007 +0200
42956
42957     TQM8xx: use the CFI flash driver on all TQM8xx boards
42958
42959     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42960
42961 commit 11d9eec479b470eab9242ab937fca70a876d9376
42962 Author: Martin Krause <martin.krause@tqs.de>
42963 Date:   Wed Sep 26 17:55:56 2007 +0200
42964
42965     TQM885D: adjust for doubled flash sector size + some minor fixes
42966
42967     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42968
42969 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
42970 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
42971 Date:   Wed Sep 26 17:55:54 2007 +0200
42972
42973     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
42974
42975     CAS-Latency=2, Write Recovery Time tWR=2
42976     The max. supported bus frequency is 66 MHz. Therefore, changed
42977     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
42978
42979     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42980
42981 commit b988b8cd443989be65161888eea0127ad03f846f
42982 Author: Martin Krause <martin.krause@tqs.de>
42983 Date:   Wed Sep 26 17:55:56 2007 +0200
42984
42985     TQM885D: use calculated cpuclk instead of measuring it
42986
42987     On the TQM885D the measurement of cpuclk with the PIT reference
42988     timer ist not necessary. Since all module variants use the same
42989     external 10 MHz oscillator, the cpuclk only depends on the PLL
42990     configuration - which is readable by software.
42991
42992     Signed-off-by: Martin Krause <martin.krause@tqs.de>
42993
42994 commit 492c7049869348d31168de8dad89651315e468e0
42995 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
42996 Date:   Thu Sep 27 14:54:46 2007 +0200
42997
42998     TQM885D: fix SDRAM refresh
42999
43000     At 133 MHz the current SDRAM refresh rate is too fast
43001     (measured 4 * 1.17 us).
43002     CFG_MAMR_PTA changes from 39 to 128. This result
43003     in a refresh rate of 4 * 7.8 us at the default clock
43004     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
43005     This is a compromise until a new method is found to
43006     adjust the refresh rate.
43007
43008     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43009
43010 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
43011 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
43012 Date:   Thu Sep 27 14:54:46 2007 +0200
43013
43014     TQM860M: Support for 10col SDRAMs, max. 128 MiB
43015
43016     Signed-off-by: Martin Krause <martin.krause@tqs.de>
43017
43018 commit 61fb15c516fef5631e305f1976d7b3a679725856
43019 Author: Wolfgang Denk <wd@denx.de>
43020 Date:   Thu Dec 27 01:52:50 2007 +0100
43021
43022     Fix coding style issues; update CHANGELOG.
43023
43024     Signed-off-by: Wolfgang Denk <wd@denx.de>
43025
43026 commit 467bcee11fe26ad422f2de971aa70866079870f2
43027 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43028 Date:   Fri Dec 14 15:36:18 2007 +0100
43029
43030     cfi_flash: Add manufacturer-specific fixups
43031
43032     Run fixups based on the JEDEC manufacturer ID independent of the
43033     command set ID.
43034
43035     This changes current behaviour: Previously, geometry reversal for AMD
43036     chips were done based on the command set ID, while they are now done
43037     based on the JEDEC manufacturer and device ID.
43038
43039     Also add fixup for top-boot Atmel chips. A fixup is needed for
43040     AT49BV6416(T) too, but since u-boot currently only reads the low byte
43041     of the device ID, there's no way to tell it apart from AT49BV642D,
43042     which should not have this fixup. Since AT49BV642D support is
43043     necessary to get ATNGW100 board support into mainline, I've commented
43044     out the fixup for now.
43045
43046     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43047
43048 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
43049 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43050 Date:   Fri Dec 14 15:36:17 2007 +0100
43051
43052     cfi_flash: Add cmdset-specific init functions
43053
43054     Move things like reading JEDEC IDs and fixing up geometry reversal
43055     into separate functions. The geometry reversal fixup is now performed
43056     by altering the qry structure directly, which makes the sector init
43057     code slightly cleaner.
43058
43059     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43060
43061 commit e23741f4a6d8047520ef0d4971762749b3587d32
43062 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43063 Date:   Fri Dec 14 15:36:16 2007 +0100
43064
43065     cfi_flash: Read whole QRY structure in one go
43066
43067     Read out the whole CFI Standard Query structure after successful cfi
43068     identification. This allows subsequent code to access this information
43069     directly without having to go through flash_read_uchar() and friends.
43070
43071     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43072
43073 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
43074 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43075 Date:   Mon Dec 17 11:02:44 2007 +0100
43076
43077     AVR32: Fix logic inversion in disable_interrupts()
43078
43079     disable_interrupts() should return nonzero if interrupts were
43080     _enabled_ before, not disabled.
43081
43082     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43083
43084 commit acac475212cbedb17b321a363a1c878e2b47b37f
43085 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43086 Date:   Fri Dec 14 16:51:22 2007 +0100
43087
43088     AVR32: Enable interrupts at bootup
43089
43090     The timer code depends on the timer interrupt to keep track of the
43091     upper 32 bits of the cycle counter. This obviously doesn't work when
43092     interrupts are disabled the whole time.
43093
43094     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43095
43096 commit 9570bcd87f4db255514f43b6701746c412f8fef0
43097 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43098 Date:   Thu Nov 15 10:03:45 2007 +0100
43099
43100     AVR32: Fix wrong pin setup for USART3
43101
43102     As reported by Gerhard Berghofer:
43103
43104     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
43105     instead of PB18 and PB19.
43106
43107     which is obviously correct. There's currently no code that uses
43108     USART3, but custom boards may run into problems.
43109
43110     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43111
43112 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
43113 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43114 Date:   Thu Nov 1 12:44:20 2007 +0100
43115
43116     README: Remove ATSTK1000 daughterboard list
43117
43118     As noted by Kim Phillips, these lists tend to become out of date.
43119
43120     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43121
43122 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
43123 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43124 Date:   Tue Oct 30 14:56:36 2007 +0100
43125
43126     Add ATSTK100[234] to MAINTAINERS
43127
43128     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
43129     "mother". Also update the entry for ATSTK1000 to be not only about the
43130     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
43131
43132     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43133
43134 commit 64ff2357b1727213803591813dbc779c924bf772
43135 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43136 Date:   Mon Oct 29 13:02:54 2007 +0100
43137
43138     AVR32: Add support for the ATSTK1004 board
43139
43140     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
43141     which is a derivative of AT32AP7000.
43142
43143     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43144
43145 commit 667568db157f374b85abd7e03596ddd1f0b25681
43146 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43147 Date:   Mon Oct 29 13:02:54 2007 +0100
43148
43149     AVR32: Add support for the ATSTK1003 board
43150
43151     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
43152     which is a derivative of AT32AP7000.
43153
43154     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43155
43156 commit 5fee84a794a51ec830548cda485a770efb018b92
43157 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43158 Date:   Mon Oct 29 13:23:33 2007 +0100
43159
43160     AVR32: Make some AT32AP700x peripherals optional
43161
43162     Add a chip-features file providing definitions of the form
43163
43164     AT32AP700x_CHIP_HAS_<peripheral>
43165
43166     to indicate the availability of the given peripheral on the currently
43167     selected chip.
43168
43169     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43170
43171 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
43172 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43173 Date:   Mon Oct 29 13:09:56 2007 +0100
43174
43175     AVR32: Rename at32ap7000 -> at32ap700x
43176
43177     The SoC-specific code for all the AT32AP700x CPUs is practically
43178     identical; the only difference is that some chips have less features
43179     than others. By doing this rename, we can add support for the AP7000
43180     derivatives simply by making some features conditional.
43181
43182     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43183
43184 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
43185 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43186 Date:   Fri Jun 29 18:22:34 2007 +0200
43187
43188     atmel_mci: Show SR when block read fails
43189
43190     Show controller status as well as card status when an error occurs
43191     during block read.
43192
43193     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43194
43195 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
43196 Author: Stefan Roese <sr@denx.de>
43197 Date:   Thu Dec 13 14:52:53 2007 +0100
43198
43199     ppc4xx: Bring 4xx fdt support up-to-date
43200
43201     This patch update the 4xx fdt support. It enabled fdt booting
43202     on the AMCC Kilauea and Sequoia for now. More can follow later
43203     quite easily.
43204
43205     Signed-off-by: Stefan Roese <sr@denx.de>
43206
43207 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
43208 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43209 Date:   Thu Dec 13 12:56:34 2007 +0100
43210
43211     cfi_flash: Use map_physmem() and unmap_physmem()
43212
43213     Use map_physmem() and unmap_physmem() to convert from physical to
43214     virtual addresses. This gives the arch a chance to provide an uncached
43215     mapping for flash accesses.
43216
43217     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43218
43219 commit 4d7d6936eb29af7cca330937808312aa5f61454d
43220 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43221 Date:   Thu Dec 13 12:56:33 2007 +0100
43222
43223     Introduce map_physmem() and unmap_physmem()
43224
43225     map_physmem() returns a virtual address which can be used to access a
43226     given physical address without involving the cache. unmap_physmem()
43227     should be called when the virtual address returned by map_physmem() is
43228     no longer needed.
43229
43230     This patch adds a stub implementation which simply returns the
43231     physical address cast to a uchar * for all architectures except AVR32,
43232     which converts the physical address to an uncached virtual mapping.
43233     unmap_physmem() is a no-op on all architectures, but if any
43234     architecture needs to do such mappings through the TLB, this is the
43235     hook where those TLB entries can be invalidated.
43236
43237     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43238
43239 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
43240 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43241 Date:   Thu Dec 13 12:56:32 2007 +0100
43242
43243     cfi_flash: Introduce read and write accessors
43244
43245     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
43246     them to access the flash memory. This makes it clearer when the flash
43247     is actually being accessed; merely dereferencing a volatile pointer
43248     looks just like any other kind of access.
43249
43250     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43251
43252 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
43253 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43254 Date:   Thu Dec 13 12:56:31 2007 +0100
43255
43256     Implement __raw_{read,write}[bwl] on all architectures
43257
43258     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
43259     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
43260     from Linux.
43261
43262     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43263
43264 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
43265 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43266 Date:   Sat Oct 6 18:55:36 2007 +0200
43267
43268     cfi_flash: Reorder functions and eliminate extra prototypes
43269
43270     Reorder the functions in cfi_flash.c so that each function only uses
43271     functions that have been defined before it. This allows the static
43272     prototype declarations near the top to be eliminated and might allow
43273     gcc to do a better job inlining functions.
43274
43275     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43276
43277 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
43278 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43279 Date:   Thu Dec 13 12:56:29 2007 +0100
43280
43281     cfi_flash: Make some needlessly global functions static
43282
43283     Make functions not declared in any header file static.
43284
43285     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43286
43287 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
43288 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43289 Date:   Thu Dec 13 12:56:28 2007 +0100
43290
43291     cfi_flash: Break long lines
43292
43293     This patch tries to keep all lines in the cfi_flash driver below 80
43294     columns. There are a few lines left which don't fit this requirement
43295     because I couldn't find any trivial way to break them (i.e. it would
43296     take some restructuring, which I intend to do in a later patch.)
43297
43298     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43299
43300 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
43301 Author: Bartlomiej Sieka <tur@semihalf.com>
43302 Date:   Tue Dec 11 13:59:57 2007 +0100
43303
43304     CFI: synchronize command offsets with Linux CFI driver
43305
43306     Fixes non-working CFI Flash on the Inka4x0 board.
43307
43308     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
43309
43310 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
43311 Author: Kumar Gala <galak@kernel.crashing.org>
43312 Date:   Fri Dec 7 12:17:34 2007 -0600
43313
43314     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
43315
43316     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
43317     (MPC8544DS, MPC8548CDS, MPC8568MDS).
43318
43319     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43320
43321 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
43322 Author: Kumar Gala <galak@kernel.crashing.org>
43323 Date:   Fri Dec 7 12:04:30 2007 -0600
43324
43325     Update Freescale MPC85xx ADS/CDS/MDS board config
43326
43327     * Enabled CONFIG_CMD_ELF
43328
43329     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43330
43331 commit d435793229ce29a42797c1edc39f5b34f987f91a
43332 Author: Kumar Gala <galak@kernel.crashing.org>
43333 Date:   Fri Dec 7 04:59:26 2007 -0600
43334
43335     Handle Asynchronous DDR clock on 85xx
43336
43337     The MPC8572 introduces the concept of an asynchronous DDR clock with
43338     regards to the platform clock.
43339
43340     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
43341     mode.
43342
43343     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43344
43345 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
43346 Author: Kumar Gala <galak@kernel.crashing.org>
43347 Date:   Thu Nov 29 10:34:28 2007 -0600
43348
43349     Update Freescale MPC85xx ADS/CDS/MDS board config
43350
43351     * Removed some misc environment setup
43352     * Enabled CONFIG_CMDLINE_EDITING
43353
43354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43355
43356 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
43357 Author: Kumar Gala <galak@kernel.crashing.org>
43358 Date:   Thu Nov 29 10:47:44 2007 -0600
43359
43360     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
43361
43362     Minor path corrections needed to ensure buildability.
43363
43364     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43365
43366 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
43367 Author: Kumar Gala <galak@kernel.crashing.org>
43368 Date:   Thu Nov 29 10:16:18 2007 -0600
43369
43370     Move the MPC8540 ADS board under board/freescale.
43371
43372     Minor path corrections needed to ensure buildability.
43373
43374     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43375
43376 commit 870ceac5b3a3486c109396e005af81ae762b5710
43377 Author: Kumar Gala <galak@kernel.crashing.org>
43378 Date:   Thu Nov 29 10:14:50 2007 -0600
43379
43380     Move the MPC8560 ADS board under board/freescale.
43381
43382     Minor path corrections needed to ensure buildability.
43383
43384     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43385
43386 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
43387 Author: Kumar Gala <galak@kernel.crashing.org>
43388 Date:   Thu Nov 29 10:13:47 2007 -0600
43389
43390     Move the MPC8568 MDS board under board/freescale.
43391
43392     Minor path corrections needed to ensure buildability.
43393
43394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43395
43396 commit a853d56c59b33415304531443633808736acfc6e
43397 Author: Kumar Gala <galak@kernel.crashing.org>
43398 Date:   Thu Nov 29 02:18:59 2007 -0600
43399
43400     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
43401
43402     We already had defines for LAWAR_TRGT_IF_* that we should use
43403     rather than creating new ones.  Also, added some missing defines for
43404     PCIE targets.
43405
43406     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43407
43408 commit 04db400892da37b76a585e332a0c137954ad2015
43409 Author: Kumar Gala <galak@kernel.crashing.org>
43410 Date:   Thu Nov 29 02:10:09 2007 -0600
43411
43412     Stop using immap_t on 85xx
43413
43414     In the future the offsets to various blocks may not be in same location.
43415     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
43416     instead of getting it via &immap.
43417
43418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43419
43420 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
43421 Author: Kumar Gala <galak@kernel.crashing.org>
43422 Date:   Thu Nov 29 01:23:09 2007 -0600
43423
43424     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
43425
43426     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43427
43428 commit c480861bf000156e6a3e932c258db59ff2212dd3
43429 Author: Kumar Gala <galak@kernel.crashing.org>
43430 Date:   Thu Nov 29 01:06:19 2007 -0600
43431
43432     Update MPC8568 MDS to use libfdt
43433
43434     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
43435     ethernet, pci, and serial for the various fixups that are done.
43436
43437     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43438
43439 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
43440 Author: Haiying Wang <Haiying.Wang@freescale.com>
43441 Date:   Wed Nov 14 15:52:06 2007 -0500
43442
43443     Add PCI Express support on MPC8568MDS
43444
43445     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
43446     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43447
43448 commit b90d25497625b90ffa3f2911a0895ca237556ff5
43449 Author: Kumar Gala <galak@kernel.crashing.org>
43450 Date:   Thu Nov 29 00:11:44 2007 -0600
43451
43452     Update MPC85xx CDS to use libfdt
43453
43454     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
43455     ethernet, pci, and serial for the various fixups that are done.
43456
43457     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43458
43459 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
43460 Author: Kumar Gala <galak@kernel.crashing.org>
43461 Date:   Wed Nov 28 22:54:27 2007 -0600
43462
43463     Update MPC8540 ADS to use libfdt
43464
43465     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
43466     ethernet, pci, and serial for the various fixups that are done.
43467
43468     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43469
43470 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
43471 Author: Kumar Gala <galak@kernel.crashing.org>
43472 Date:   Wed Nov 28 22:40:31 2007 -0600
43473
43474     Update MPC8560 ADS to use libfdt
43475
43476     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
43477     ethernet, pci, and serial for the various fixups that are done.
43478
43479     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43480
43481 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
43482 Author: Kumar Gala <galak@kernel.crashing.org>
43483 Date:   Wed Nov 28 00:36:33 2007 -0600
43484
43485     Stop using immap_t for cpm offset on 85xx
43486
43487     In the future the offsets to various blocks may not be in same location.
43488     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
43489     instead of getting it via &immap->im_cpm.
43490
43491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43492
43493 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
43494 Author: Kumar Gala <galak@kernel.crashing.org>
43495 Date:   Tue Nov 27 23:25:02 2007 -0600
43496
43497     Stop using immap_t for guts offset on 85xx
43498
43499     In the future the offsets to various blocks may not be in same location.
43500     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
43501     instead of getting it via &immap->im_gur.
43502
43503     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43504
43505 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
43506 Author: Kumar Gala <galak@kernel.crashing.org>
43507 Date:   Tue Nov 27 22:42:34 2007 -0600
43508
43509     Update MPC8544 DS config
43510
43511     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
43512     * Removed some misc environment setup
43513     * Moved to using fdtfile & fdtaddr as fdt env var names
43514     * Enabled CONFIG_CMDLINE_EDITING
43515
43516     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43517
43518 commit addce57e2e4c49e77ffb2020a84690713bb18b47
43519 Author: Kumar Gala <galak@kernel.crashing.org>
43520 Date:   Mon Nov 26 17:12:24 2007 -0600
43521
43522     Update MPC8544DS to use libfdt
43523
43524     Updated the MPC8544DS config to use libfdt and assume use of aliases for
43525     ethernet, pci, and serial for the various fixups that are done.
43526
43527     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43528
43529 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
43530 Author: Kumar Gala <galak@kernel.crashing.org>
43531 Date:   Thu Nov 29 00:15:30 2007 -0600
43532
43533     Add libfdt based ft_cpu_setup for mpc85xx
43534
43535     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43536
43537 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
43538 Author: Stefan Roese <sr@denx.de>
43539 Date:   Tue Dec 11 13:38:19 2007 +0100
43540
43541     ppc4xx: Correct GPIO offset in gpio_config()
43542
43543     Thanks to Gary Jennejohn for pointing this out.
43544
43545     Signed-off-by: Stefan Roese <sr@denx.de>
43546
43547 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
43548 Author: Stefan Roese <sr@denx.de>
43549 Date:   Tue Dec 11 11:46:01 2007 +0100
43550
43551     rtc: Fix merging problem
43552
43553     Signed-off-by: Stefan Roese <sr@denx.de>
43554
43555 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
43556 Author: Stefan Roese <sr@denx.de>
43557 Date:   Sat Dec 8 14:47:34 2007 +0100
43558
43559     ppc4xx: 405EX: Correctly enable USB pins
43560
43561     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
43562     function control) registers. This is done for the AMCC Kilauea and
43563     Makalu eval boards.
43564
43565     Signed-off-by: Stefan Roese <sr@denx.de>
43566
43567 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
43568 Author: Stefan Roese <sr@denx.de>
43569 Date:   Sat Dec 8 08:25:09 2007 +0100
43570
43571     CFI: Coding style cleanup
43572
43573     Signed-off-by: Stefan Roese <sr@denx.de>
43574
43575 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
43576 Author: Michael Schwingen <michael@schwingen.org>
43577 Date:   Fri Dec 7 23:35:02 2007 +0100
43578
43579     CFI: support JEDEC flash roms in CFI-flash framework
43580
43581     The following patch adds support for non-CFI flash ROMS, by hooking into the
43582     CFI flash code and using most of its code, as recently discussed here in the
43583     thread "Mixing CFI and non-CFI flashs".
43584
43585     Signed-off-by: Michael Schwingen <michael@schwingen.org>
43586     Signed-off-by: Stefan Roese <sr@denx.de>
43587
43588 commit c01b17dd856fa120b2970f50d9598546a4927ec3
43589 Author: Gerald Van Baren <vanbaren@cideas.com>
43590 Date:   Wed Nov 28 21:24:50 2007 -0500
43591
43592     Conditionally compile fdt_fixup_ethernet()
43593
43594     Fix compiler warnings: On boards that don't have ethernets defined,
43595     don't compile fdt_fixup_ethernet().
43596
43597 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
43598 Author: Kumar Gala <galak@kernel.crashing.org>
43599 Date:   Tue Nov 27 21:59:46 2007 -0600
43600
43601     Convert boards that set memory node to use fdt_fixup_memory()
43602
43603     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43604
43605 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
43606 Author: Kumar Gala <galak@kernel.crashing.org>
43607 Date:   Mon Nov 26 17:06:15 2007 -0600
43608
43609     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
43610
43611     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
43612     determine which serial alias we should set linux,stdout-path to.
43613
43614     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43615
43616 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
43617 Author: Kumar Gala <galak@kernel.crashing.org>
43618 Date:   Mon Nov 26 14:57:45 2007 -0600
43619
43620     Add common memory fixup function
43621
43622     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
43623
43624     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43625
43626 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
43627 Author: Kumar Gala <galak@kernel.crashing.org>
43628 Date:   Mon Nov 26 11:19:12 2007 -0600
43629
43630     Conditionally compile fdt_support.c
43631
43632     Modify common/Makefile to conditionally compile fdt_support.c based
43633     on CONFIG_OF_LIBFDT.
43634
43635     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43636
43637 commit d88e7ba0980773479e1a64badb293116071b7ef0
43638 Author: Kumar Gala <galak@kernel.crashing.org>
43639 Date:   Mon Nov 26 10:41:40 2007 -0600
43640
43641     Fix build breakage due to libfdt import
43642
43643     The IDS8247 got lost in the update and need an API update
43644     do to rename of functions in libfdt.
43645
43646     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43647
43648 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
43649 Author: Gerald Van Baren <vanbaren@cideas.com>
43650 Date:   Fri Nov 23 19:43:20 2007 -0500
43651
43652     Add spaces around the = in the fdt print format.
43653
43654     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
43655
43656 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
43657 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43658 Date:   Fri Dec 7 01:25:38 2007 +0900
43659
43660     sh: Moved driver of the SuperH dependence
43661
43662     The composition of the directory in the drivers/ changed.
43663     I moved SuperH serial driver and marubun PCMCIA driver.
43664
43665     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43666
43667 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
43668 Author: Wolfgang Denk <wd@denx.de>
43669 Date:   Thu Dec 6 10:21:19 2007 +0100
43670
43671     Release v1.3.1
43672
43673     Signed-off-by: Wolfgang Denk <wd@denx.de>
43674
43675 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
43676 Author: Wolfgang Denk <wd@denx.de>
43677 Date:   Thu Dec 6 10:21:03 2007 +0100
43678
43679     ADS5121 Board: fix compile problem.
43680
43681     Signed-off-by: Wolfgang Denk <wd@denx.de>
43682
43683 commit a27044b14a9e93678a82d7b35f202b93e7687abc
43684 Author: Stefan Roese <sr@denx.de>
43685 Date:   Thu Dec 6 05:58:43 2007 +0100
43686
43687     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
43688
43689     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
43690     setting the FIXD bit in the SDR0_MFR register. Here a description of the
43691     symptoms:
43692
43693     Problem Description
43694     ------------------------------
43695     If a DMA is performed between memory and PCI with the DMA 1 Controller
43696     using prefetch, and as a result uses a special purpose buffer selected by
43697     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
43698     the first part of the transfer sequence is performed twice. The
43699     PPC440SPe PCI Controller requests more data than was needed such that in
43700     the case of enforce memory protection, a host CPU  exception can occur.
43701     No data is corrupted, because data transfer is stopped in the PCI
43702     Controller. Prefetch enable is specified by setting DMA Configuration
43703     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
43704
43705     Behavior that may be observed in a running system
43706     ---------------------------------------------------------------------------
43707
43708     1. DMA performance is decreased because of the double access on the PCI bus
43709     interface.
43710     2. If an illegal access to some address on the PCI bus is detected at the
43711     system level, a machine check or similar system error may occur.
43712
43713     Workarounds Available
43714     ----------------------------------
43715
43716     1. Do not program prefetch. Note that a prefetch command cannot be programmed
43717     without selecting a special purpose buffer.
43718     2. To avoid crossing a physical boundary of the PCI slave device, add 512
43719     bytes of address to the PCI address range.
43720
43721     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
43722     from AMCC and slighly changed.
43723
43724     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
43725     Signed-off-by: Stefan Roese <sr@denx.de>
43726
43727 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
43728 Author: Stefan Roese <sr@denx.de>
43729 Date:   Tue Dec 4 16:29:48 2007 +0100
43730
43731     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
43732
43733     Signed-off-by: Stefan Roese <sr@denx.de>
43734
43735 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
43736 Author: Wolfgang Denk <wd@denx.de>
43737 Date:   Mon Dec 3 00:15:28 2007 +0100
43738
43739     Prepare for 1.3.1-rc1
43740
43741     Signed-off-by: Wolfgang Denk <wd@denx.de>
43742
43743 commit e15e33433e7c05111968dc9b434a52fd42cbd221
43744 Author: Stefan Roese <sr@denx.de>
43745 Date:   Fri Nov 30 07:15:41 2007 +0100
43746
43747     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
43748
43749     This manual PCIe reset triggering solves the problem seen with the
43750     Intel EPRO/1000 card, which was not detected (link not established)
43751     upon power-up reset.
43752
43753     Signed-off-by: Stefan Roese <sr@denx.de>
43754
43755 commit 260eea5676ca46903a335686cc020b29c4ca46fe
43756 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43757 Date:   Thu Nov 29 01:21:54 2007 +0900
43758
43759     sh: Add SuperH boards maintainer to MAINTAINERS file
43760
43761     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
43762
43763     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43764
43765 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
43766 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43767 Date:   Thu Nov 29 00:13:04 2007 +0900
43768
43769     sh: Add ms7750se support in MAKEALL
43770
43771     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43772
43773 commit c7144373427a178332bf9754131c8c34c52c200a
43774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43775 Date:   Tue Nov 27 09:44:53 2007 +0100
43776
43777     sh: Add sh3 and sh4 support in MAKEALL
43778
43779     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43780     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43781
43782 commit 130080874a3d28450098481a262c5f7c855e908d
43783 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43784 Date:   Sun Nov 25 02:51:17 2007 +0900
43785
43786     sh: Add document for SuperH.
43787
43788     This document is a summary of information concerning SuperH of U-Boot.
43789
43790     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43791
43792 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
43793 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43794 Date:   Sun Nov 25 02:39:31 2007 +0900
43795
43796     sh: Add marubun's pcmcia driver
43797
43798     Marubun pcmcia is a chip for PCMCIA used with SuperH.
43799     Of course, this can be used even by other architectures.
43800     When use this driver, came to be able to use CompactFlash
43801     and Ethernet.
43802
43803     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43804
43805 commit febd86b969b975289ed948f1ac0eb9722da41ced
43806 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43807 Date:   Sun Nov 25 02:32:13 2007 +0900
43808
43809     sh: Update SuperH SCIF driver
43810
43811     - Changed volatile unsigned to vu_.
43812     - Changed Makefile for kconfig.
43813
43814     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43815
43816 commit 8be760903645af09871be50ad0a6f9ebb62b311d
43817 Author: Stefan Roese <sr@denx.de>
43818 Date:   Tue Nov 27 11:57:35 2007 +0100
43819
43820     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
43821
43822     After an error in the AMCC 405EX users manual now correctly configure
43823     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
43824     usage.
43825
43826     Signed-off-by: Stefan Roese <sr@denx.de>
43827
43828 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
43829 Author: Wolfgang Denk <wd@denx.de>
43830 Date:   Mon Nov 26 19:18:21 2007 +0100
43831
43832     Cleanup coding style; update CHANGELOG
43833
43834     Signed-off-by: Wolfgang Denk <wd@denx.de>
43835
43836 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
43837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43838 Date:   Sun Nov 25 22:39:25 2007 +0100
43839
43840     MAKEALL: add missing 512x boards in ppc
43841
43842     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43843
43844 commit a340c325e668ca7386c2276387681720be9c3757
43845 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43846 Date:   Sun Nov 25 18:45:47 2007 +0100
43847
43848     Makefile : fix tags ctags etags with new drivers organization
43849
43850     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43851
43852 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
43853 Author: Stefan Roese <sr@denx.de>
43854 Date:   Mon Nov 26 15:06:14 2007 +0100
43855
43856     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
43857
43858     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
43859     operation.
43860
43861     Signed-off-by: Stefan Roese <sr@denx.de>
43862
43863 commit ca1ce226287270bb01e25b8e3674c701f12edf19
43864 Author: Stefan Roese <sr@denx.de>
43865 Date:   Mon Nov 26 15:01:45 2007 +0100
43866
43867     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
43868
43869     Signed-off-by: Stefan Roese <sr@denx.de>
43870
43871 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
43872 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43873 Date:   Sun Nov 25 18:45:47 2007 +0100
43874
43875     Makefile : fix tags ctags etags with new drivers organization
43876
43877     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43878
43879 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
43880 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43881 Date:   Sat Nov 24 21:26:56 2007 +0100
43882
43883     drivers/mtd : move mtd drivers to drivers/mtd
43884
43885     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43886
43887 commit 318c0b90431f2648552e5ade78833f42652ce859
43888 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43889 Date:   Sat Nov 24 21:17:55 2007 +0100
43890
43891     drivers/misc : move misc drivers to drivers/misc
43892
43893     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43894
43895 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
43896 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43897 Date:   Sat Nov 24 21:13:59 2007 +0100
43898
43899     drivers/block : move block drivers to drivers/block
43900
43901     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43902
43903 commit 0c698dcaa70275eb8814f665b545547cee013892
43904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43905 Date:   Sat Nov 24 20:59:50 2007 +0100
43906
43907     drivers/rtc : move rtc drivers to drivers/rtc
43908
43909     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43910
43911 commit f868cc5a50757d94f36c312395481cb0f187d9e6
43912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43913 Date:   Sat Nov 24 20:14:44 2007 +0100
43914
43915     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
43916
43917     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43918
43919 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
43920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43921 Date:   Sat Nov 24 19:46:45 2007 +0100
43922
43923     drivers/input : move input drivers to drivers/input
43924
43925     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43926
43927 commit e4558666293364fc3af1c1d9381ca933fa0f1275
43928 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43929 Date:   Sat Nov 24 19:40:11 2007 +0100
43930
43931     drivers/usb : move usb drivers to drivers/usb
43932
43933     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43934
43935 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
43936 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43937 Date:   Sat Nov 24 19:33:38 2007 +0100
43938
43939     drivers/serial : move serial drivers to drivers/serial
43940
43941     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43942
43943 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
43944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43945 Date:   Wed Nov 21 21:19:24 2007 +0100
43946
43947     drivers/net : move net drivers to drivers/net
43948
43949     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43950
43951 commit 352d259130b349fe9593b8dada641bd78a9659e5
43952 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43953 Date:   Tue Nov 20 20:41:48 2007 +0100
43954
43955     drivers/video : move video drivers to drivers/video
43956
43957     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43958
43959 commit 73646217186aa17afc8e305c5f06f06dd335eaad
43960 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43961 Date:   Tue Nov 20 20:33:09 2007 +0100
43962
43963     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
43964
43965     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43966
43967 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
43968 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43969 Date:   Tue Nov 20 20:28:09 2007 +0100
43970
43971     drivers/pci : move pci drivers to drivers/pci
43972
43973     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43974
43975 commit 9162352817579840d7802da6d85872b3ca003c97
43976 Author: Gerald Van Baren <vanbaren@cideas.com>
43977 Date:   Thu Nov 22 17:23:23 2007 -0500
43978
43979     Fix fdt printing for updated libfdt
43980
43981     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
43982
43983     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
43984
43985 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
43986 Author: Kumar Gala <galak@kernel.crashing.org>
43987 Date:   Wed Nov 21 13:30:15 2007 -0600
43988
43989     Add additional fdt fixup helper functions
43990
43991     Added the following fdt fixup helpers:
43992      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
43993      * do_fixup_by_compat{_u32} - Find matching nodes by compat
43994
43995     The _u32 variants work the same only the property they are setting
43996     is know to be a 32-bit integer instead of a byte buffer.
43997
43998     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43999
44000 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
44001 Author: Kumar Gala <galak@kernel.crashing.org>
44002 Date:   Wed Nov 21 11:11:03 2007 -0600
44003
44004     Add fdt_fixup_ethernet helper to set mac addresses
44005
44006     Added a fixup helper that uses aliases to set mac addresses
44007     in the device tree based on the bd_t
44008
44009     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44010
44011 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
44012 Author: Kumar Gala <galak@kernel.crashing.org>
44013 Date:   Wed Nov 21 14:07:46 2007 -0600
44014
44015     Fix warnings from import of libfdt
44016
44017     cmd_fdt.c: In function fdt_print:
44018     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
44019     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
44020     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
44021     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
44022
44023     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44024
44025 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
44026 Author: Kumar Gala <galak@kernel.crashing.org>
44027 Date:   Wed Oct 24 11:04:22 2007 -0500
44028
44029     Update libfdt from device tree compiler (dtc)
44030
44031     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
44032     the device tree compiler (dtc) project.
44033
44034     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44035
44036 commit e93becf80d732b64aef81b23e8b6ece02c40533d
44037 Author: Kumar Gala <galak@kernel.crashing.org>
44038 Date:   Sat Nov 3 19:46:28 2007 -0500
44039
44040     Move do_fixup* for libfdt into common code
44041
44042     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
44043     into common/fdt_support.c and renamed:
44044
44045     do_fixup()  -> do_fixup_by_path()
44046     do_fixup_u32()      -> do_fixup_by_path_u32()
44047
44048     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44049
44050 commit f738b4a75998f42a7408defadc9baac7a31c92db
44051 Author: Kumar Gala <galak@kernel.crashing.org>
44052 Date:   Thu Oct 25 16:15:07 2007 -0500
44053
44054     Make no options to fdt print default to '/'
44055
44056     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44057
44058 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
44059 Author: Kumar Gala <galak@kernel.crashing.org>
44060 Date:   Wed Oct 24 10:21:57 2007 -0500
44061
44062     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
44063
44064     Removed:
44065         fdt_node_is_compatible
44066         fdt_find_node_by_type
44067         fdt_find_compatible_node
44068
44069     To ease merge of newer libfdt as we aren't using them anywhere at this time.
44070
44071     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
44072     reason.
44073
44074     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44075
44076 commit 98e2867cc85409b919f862e6c16026461ec955df
44077 Author: Grant Likely <grant.likely@secretlab.ca>
44078 Date:   Wed Nov 21 09:19:37 2007 -0700
44079
44080     [BUILD] Remove libraries when updating autoconf.mk
44081
44082     Fix library problems caused by conditional compilation.  Using
44083     autoconf.mk to decide which files to compile has caused a problem when
44084     changing configuration from one board to another without clearing out
44085     the library (*.a) files.
44086
44087     It used to be that the linker was always passed the same list of .o
44088     files when building the .a files.  However, that is not longer true
44089     with conditional compilation.  Now, a different board config will have
44090     a different file list passed to the linker.  The problem occurs when
44091     a library has already been built and the board config is changed.
44092
44093     Since the linker will update instead of replace a preexisting library,
44094     then if the file list changes to remove some object files the old
44095     objects will still exist in the library.
44096
44097     The solution is to remove all old library files when autoconf.mk is
44098     made.
44099
44100     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44101
44102 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
44103 Author: Kumar Gala <galak@kernel.crashing.org>
44104 Date:   Wed Nov 21 08:49:50 2007 -0600
44105
44106     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
44107
44108     Modify libfdt/Makefile to conditionally compile the *.c files based
44109     on the board config.
44110
44111     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44112
44113 commit 4a43719a7738712811d822ca8125427b27a55cdc
44114 Author: Grant Likely <grant.likely@secretlab.ca>
44115 Date:   Mon Sep 24 09:05:31 2007 -0600
44116
44117     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
44118
44119     Modify common/Makefile to conditionally compile the cmd_*.c files based
44120     on the board config.
44121
44122     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44123
44124 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
44125 Author: Grant Likely <grant.likely@secretlab.ca>
44126 Date:   Mon Sep 24 09:05:31 2007 -0600
44127
44128     [BUILD] Generate include/autoconf.mk from board config files
44129
44130     Use cpp and sed to postprocess config.h and import the defined values
44131     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
44132     give 'make' access to the board configuration.
44133
44134     Doing this enables conditional compilation at the Makefile level instead
44135     of by wrapping every .c file with #ifdef/#endif wrappers.
44136
44137     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44138
44139 commit 68b88999da87ab88e71e1306192905be3450198e
44140 Author: Jon Loeliger <jdl@freescale.com>
44141 Date:   Tue Nov 20 15:02:26 2007 -0600
44142
44143     8610HPCD: Enable the 8610 Display Interface Unit
44144
44145     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44146
44147 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
44148 Author: Jon Loeliger <jdl@freescale.com>
44149 Date:   Tue Nov 20 15:00:53 2007 -0600
44150
44151     Move 8610 DIU interface structure definitions to header file.
44152
44153     These two structures are still needed during the
44154     initialization and setup of the DIU hardware.
44155     So move them to the fsl_diu_fb.h file for now.
44156     Official "blah".
44157
44158     Noticed-by: York Sun <yorksun@freescale.com>
44159     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44160
44161 commit 080c646dbf474a109c3f85718fb01ce042a38c45
44162 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44163 Date:   Tue Nov 20 20:14:18 2007 +0100
44164
44165     drivers/i2c : move i2c drivers to drivers/i2c
44166
44167     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44168
44169 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
44170 Author: Wolfgang Denk <wd@denx.de>
44171 Date:   Mon Nov 19 22:20:24 2007 +0100
44172
44173     Prepare for 1.3.0 release.
44174
44175     Signed-off-by: Wolfgang Denk <wd@denx.de>
44176
44177 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
44178 Author: Haiying Wang <Haiying.Wang@freescale.com>
44179 Date:   Mon Nov 19 10:02:13 2007 -0500
44180
44181     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
44182
44183     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
44184
44185     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
44186
44187 commit f8c320609366176b31104d9bf5e295232e1c7f1d
44188 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
44189 Date:   Mon Nov 19 11:14:16 2007 +0900
44190
44191     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
44192
44193     lowlevel_init.S: Assembler messages:
44194     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
44195
44196     Looking at codes, the `memtest' and `clearmem' are intentional mixed
44197     use of `global symbols' and `label' for debugging purpose. To make it
44198     build, just disable global-symbols-use for now. As a result `memtest'
44199     still remains as unused, but leave it be...
44200
44201     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
44202
44203 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
44204 Author: Wolfgang Denk <wd@denx.de>
44205 Date:   Mon Nov 19 12:59:14 2007 +0100
44206
44207     Fix build problems with mp2usb board
44208
44209     Signed-off-by: Wolfgang Denk <wd@denx.de>
44210
44211 commit 6bf4c686afca1e86e1c384d59218f914605713bf
44212 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44213 Date:   Sun Nov 18 18:36:11 2007 +0100
44214
44215     s3c24x0: Fix usb_ohci.c missing in Makefile
44216     and usb_ohci.c warning differ in signedness
44217
44218     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44219
44220 commit 6073f61e078da5ddb521b56256bcc36508589883
44221 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44222 Date:   Sun Nov 18 12:55:02 2007 +0100
44223
44224     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
44225
44226     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44227
44228 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
44229 Author: Wolfgang Denk <wd@denx.de>
44230 Date:   Sun Nov 18 17:11:09 2007 +0100
44231
44232     Fix compiler warnings for ARM systems.
44233
44234     Signed-off-by: Wolfgang Denk <wd@denx.de>
44235
44236 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
44237 Author: Wolfgang Denk <wd@denx.de>
44238 Date:   Sun Nov 18 16:36:27 2007 +0100
44239
44240     Fix compiler warnings for PPC systems. Update CHANGELOG.
44241
44242     Signed-off-by: Wolfgang Denk <wd@denx.de>
44243
44244 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
44245 Author: Stefan Roese <sr@denx.de>
44246 Date:   Sun Nov 18 14:44:44 2007 +0100
44247
44248     ppc4xx: Correct 405EX PCIe UTL register mapping
44249
44250     Map 4k mem space for UTL registers for each port.
44251
44252     Signed-off-by: Stefan Roese <sr@denx.de>
44253
44254 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
44255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44256 Date:   Sat Nov 17 11:31:10 2007 +0100
44257
44258     Fix warning differ in signedness in net/net.c and net/nfs.c
44259
44260 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
44261 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44262 Date:   Sat Nov 17 20:42:45 2007 +0900
44263
44264     gth2.c: Fix a warning on gth2 build.
44265
44266     gth2.c: In function 'misc_init_r':
44267     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
44268
44269     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44270
44271 commit 2309c130aa4c84b91bd874a41269c923eb61b555
44272 Author: Stefan Roese <sr@denx.de>
44273 Date:   Sat Nov 17 07:58:25 2007 +0100
44274
44275     Fix warning differ in signedness in common/cmd_scsi.c
44276
44277     Signed-off-by: Stefan Roese <sr@denx.de>
44278
44279 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
44280 Author: Stefan Roese <sr@denx.de>
44281 Date:   Sat Nov 17 14:52:29 2007 +0100
44282
44283     ppc4xx: Update AMCC Kilauea config file
44284
44285     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
44286
44287     Signed-off-by: Stefan Roese <sr@denx.de>
44288
44289 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
44290 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44291 Date:   Sat Nov 17 20:05:26 2007 +0900
44292
44293     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
44294
44295     Current trick to pick up GNU assembler minor version does not work with the
44296     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
44297     "(GNU Binutils) ".
44298
44299       $ sde-as --version |grep "GNU assembler"
44300       GNU assembler 2.15.94 mipssde-6.02.02-20050602
44301       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
44302       2.15.94
44303       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
44304       15
44305       $
44306
44307       $ mips-linux-as --version |grep "GNU assembler"
44308       GNU assembler (GNU Binutils) 2.18
44309       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
44310       (GNU
44311       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
44312       (no output)
44313       $
44314
44315     As a result of above, you'll see many noises with such binutils:
44316
44317       make -C cpu/mips/
44318       /bin/sh: line 0: [: : integer expression expected
44319       /bin/sh: line 0: [: : integer expression expected
44320       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
44321       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
44322       /bin/sh: line 0: [: : integer expression expected
44323       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
44324       /bin/sh: line 0: [: : integer expression expected
44325       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
44326       /bin/sh: line 0: [: : integer expression expected
44327
44328     This patch simplifies the trick and makes it work with both versions of gas.
44329     I also replace an expensive `awk (or gawk)' with `cut'.
44330
44331     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44332
44333 commit 16664f72850846e645616da1c0fa5afcd6d15f15
44334 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44335 Date:   Sat Nov 17 20:05:26 2007 +0900
44336
44337     [MIPS] Remove useless instructions for initializing $gp.
44338
44339     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44340
44341 commit 03c031d5660ea946c39af6e2e16267da857c609f
44342 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44343 Date:   Sat Oct 27 15:27:06 2007 +0900
44344
44345     [MIPS] MIPS 4K core: Coding style cleanups
44346
44347     No logical changes.
44348
44349     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44350
44351 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
44352 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44353 Date:   Sat Nov 17 20:05:20 2007 +0900
44354
44355     [MIPS] gth2.c: Fix a warning on gth2 build.
44356
44357     gth2.c: In function 'misc_init_r':
44358     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
44359
44360     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44361
44362 commit 4fbd0741b2b6441da10be93e10267122581b7079
44363 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44364 Date:   Sat Oct 27 15:22:33 2007 +0900
44365
44366     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
44367
44368     au1x00_eth.c: In function 'au1x00_miiphy_write':
44369     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
44370
44371     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44372
44373 commit f01320459736f156707425cf8112f98606301aa4
44374 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44375 Date:   Sat Oct 27 15:00:25 2007 +0900
44376
44377     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
44378
44379     au1x00_eth.c: In function 'au1x00_enet_initialize':
44380     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
44381     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
44382     au1x00_eth.c:246: error: for each function it appears in.)
44383     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
44384     au1x00_eth.c: In function 'au1x00_miiphy_write':
44385     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
44386     make[1]: *** [au1x00_eth.o] Error 1
44387
44388     Fixed by moving these two functions forward.
44389
44390     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44391
44392 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
44393 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44394 Date:   Sat Oct 27 15:00:25 2007 +0900
44395
44396     MAKEALL: Added missing pb1000 board
44397
44398     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44399
44400 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
44401 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44402 Date:   Sat Oct 27 15:00:24 2007 +0900
44403
44404     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
44405
44406     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44407
44408 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
44409 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44410 Date:   Sat Oct 27 15:00:24 2007 +0900
44411
44412     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
44413
44414     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44415
44416 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
44417 Author: Wolfgang Denk <wd@denx.de>
44418 Date:   Sat Nov 17 02:34:38 2007 +0100
44419
44420     Update CHANGELOIG, prepare for -rc4
44421
44422     Signed-off-by: Wolfgang Denk <wd@denx.de>
44423
44424 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
44425 Author: Luotao Fu <l.fu@pengutronix.de>
44426 Date:   Wed Nov 14 18:58:33 2007 +0100
44427
44428     Fix the i2c frequency and default address in rsdproto board
44429
44430     rsdproto board support has wrong I2C frequency and wrong return value
44431     handling.
44432
44433     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
44434
44435 commit 429c180edad038f91c989cb14b478228092e7054
44436 Author: Wolfgang Denk <wd@denx.de>
44437 Date:   Sat Nov 17 01:45:38 2007 +0100
44438
44439     powerpc: Backout relocation changes for MPC5121, too.
44440
44441     Apply Grant Likely's backout to MPC5121 code, too.
44442
44443     Pointed out by Rafal Jaworowski <raj@semihalf.com>
44444
44445     Signed-off-by: Wolfgang Denk <wd@denx.de>
44446
44447 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
44448 Author: Grant Likely <grant.likely@secretlab.ca>
44449 Date:   Tue Nov 13 22:18:33 2007 -0700
44450
44451     powerpc: Backout relocation changes.
44452
44453     Ugh.  I *hate* to back this change out, but these compiler flags don't
44454     work for relocation on all versions of GCC.  I've not been able to
44455     reproduce the environment in my setup (and hence, not been able to
44456     find a combination that *does* work), so I've got no choice but to go
44457     back to the old gcc flags and linker script.
44458
44459     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44460
44461 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
44462 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44463 Date:   Tue Nov 13 09:11:05 2007 +0100
44464
44465     Fixed mips_io_port_base build errors.
44466
44467     This patch has been sent on:
44468     - 29 Sep 2007
44469
44470     Although mips_io_port_base is currently a part of IDE command, it is quite
44471     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
44472     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
44473
44474     This patch is triggered by multiple definition of `mips_io_port_base' build
44475     error on gth2 (and tb0229 also needs this fix.)
44476
44477     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
44478     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
44479     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
44480     make: *** [u-boot] Error 1
44481
44482     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44483     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44484
44485 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
44486 Author: Wolfgang Denk <wd@denx.de>
44487 Date:   Sat Nov 17 01:30:40 2007 +0100
44488
44489     Fix a bug in the slave serial programming mode for the Xilinx
44490     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
44491     the most significant bit was set, which did not work on any
44492     architecture where "char" defaulted to be an unsigned type.
44493
44494     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
44495
44496     Signed-off-by: Wolfgang Denk <wd@denx.de>
44497
44498 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
44499 Author: Jon Loeliger <jdl@freescale.com>
44500 Date:   Thu Nov 1 12:23:29 2007 -0500
44501
44502     86xx: Fix broken variable reference when #def DEBUGing.
44503
44504     Sometimes you can't reference the DDR2 controller variables.
44505
44506     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44507
44508 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
44509 Author: Jason Jin <Jason.jin@freescale.com>
44510 Date:   Fri Oct 26 18:32:00 2007 +0800
44511
44512     make 8610 board use pixis reset
44513
44514     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
44515
44516 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
44517 Author: Jason Jin <Jason.jin@freescale.com>
44518 Date:   Mon Oct 29 19:26:21 2007 +0800
44519
44520     Unify pixis_reset altbank across board families
44521
44522     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
44523     into the separate board config files.
44524
44525     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
44526     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44527
44528 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
44529 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44530 Date:   Wed Nov 7 08:19:21 2007 +0100
44531
44532     Fix warning: pointer targets in assignment differ in signedness
44533
44534     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44535
44536 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
44537 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44538 Date:   Wed Nov 7 08:19:19 2007 +0100
44539
44540     Fix warning differ in signedness in common/cmd_ide.c
44541
44542     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
44543
44544 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
44545 Author: Stefan Roese <sr@denx.de>
44546 Date:   Fri Nov 16 14:16:54 2007 +0100
44547
44548     ppc4xx: Enable 405EX PCIe UTL register configuration
44549
44550     Till now the UTL registers on 405EX were not initialized but left with
44551     their default values. This patch new initializes some of the UTL
44552     registers on 405EX.
44553
44554     Signed-off-by: Stefan Roese <sr@denx.de>
44555
44556 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
44557 Author: Stefan Roese <sr@denx.de>
44558 Date:   Fri Nov 16 14:00:59 2007 +0100
44559
44560     ppc4xx: Update AMCC Makalu for board rev 1.1
44561
44562     This patch adds changes needed for Makalu rev 1.1:
44563
44564     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
44565     - Enable 2nd ethernet port EMAC1
44566     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
44567     - Reset PCIe ports via GPIO upon bootup
44568
44569     Signed-off-by: Stefan Roese <sr@denx.de>
44570
44571 commit 4d4faae65e115e327425cd514c1a35146a85166b
44572 Author: Grant Likely <grant.likely@secretlab.ca>
44573 Date:   Mon Sep 24 09:05:31 2007 -0600
44574
44575     Group PCI and PCMCIA drivers in drivers/Makefile
44576
44577     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44578
44579 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
44580 Author: Grant Likely <grant.likely@secretlab.ca>
44581 Date:   Mon Sep 24 09:05:31 2007 -0600
44582
44583     Group block/flash drivers in drivers/Makefile
44584
44585     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44586
44587 commit df58c81551700f058b44cacf55a7997fa63bfe0a
44588 Author: Grant Likely <grant.likely@secretlab.ca>
44589 Date:   Mon Sep 24 09:05:31 2007 -0600
44590
44591     Group USB drivers in drivers/Makefile
44592
44593     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44594
44595 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
44596 Author: Grant Likely <grant.likely@secretlab.ca>
44597 Date:   Mon Sep 24 09:05:30 2007 -0600
44598
44599     Group i2c drivers in drivers/Makefile
44600
44601     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44602
44603 commit ec00c76de0e5971273905998d62d6bb119324218
44604 Author: Grant Likely <grant.likely@secretlab.ca>
44605 Date:   Mon Sep 24 09:05:30 2007 -0600
44606
44607     Group console drivers in drivers/Makefile
44608
44609     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44610
44611 commit 754f230aa01b8c789fc31f8013c2487954073300
44612 Author: Grant Likely <grant.likely@secretlab.ca>
44613 Date:   Mon Sep 24 09:05:30 2007 -0600
44614
44615     Group network drivers in drivers/Makefile
44616
44617     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44618
44619 commit f0037c56b0d12cd46215124667b9f83d60ef9391
44620 Author: Grant Likely <grant.likely@secretlab.ca>
44621 Date:   Mon Sep 24 09:05:30 2007 -0600
44622
44623     Build: split COBJS value into multiple lines
44624
44625     This change is in preparation for condtitionial compile support in the
44626     build system.  By spliting them all into seperate lines now, subsequent
44627     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
44628     be less invasive and easier to review
44629
44630     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44631
44632 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
44633 Author: Grant Likely <grant.likely@secretlab.ca>
44634 Date:   Mon Sep 24 09:05:30 2007 -0600
44635
44636     Add .gitignore files
44637
44638     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44639     Acked-by: Kim Phillips <kim.phillips@freescale.com>
44640
44641 commit 955413f35f054a82e40042f1dbcf501c6a05719b
44642 Author: Grant Likely <grant.likely@secretlab.ca>
44643 Date:   Thu Nov 15 08:27:52 2007 -0700
44644
44645     Revert "Correct relocation fixup for mpc5xx"
44646
44647     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
44648     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44649
44650 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
44651 Author: Grant Likely <grant.likely@secretlab.ca>
44652 Date:   Thu Nov 15 08:24:32 2007 -0700
44653
44654     Revert "Correct fixup relocation for MPC5xxx"
44655
44656     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
44657     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44658
44659 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
44660 Author: Grant Likely <grant.likely@secretlab.ca>
44661 Date:   Thu Nov 15 08:21:04 2007 -0700
44662
44663     Revert "Correct fixup relocation for mpc8220"
44664
44665     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
44666     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44667
44668 commit 70922342369e5e39b286fe21e768a239ca07a514
44669 Author: Grant Likely <grant.likely@secretlab.ca>
44670 Date:   Thu Nov 15 08:20:57 2007 -0700
44671
44672     Revert "Correct fixup relocation for mpc824x"
44673
44674     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
44675     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44676
44677 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
44678 Author: Grant Likely <grant.likely@secretlab.ca>
44679 Date:   Thu Nov 15 08:20:50 2007 -0700
44680
44681     Revert "Correct fixup relocation for mpc8260"
44682
44683     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
44684     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44685
44686 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
44687 Author: Grant Likely <grant.likely@secretlab.ca>
44688 Date:   Thu Nov 15 08:20:43 2007 -0700
44689
44690     Revert "Correct fixup relocation for mpc83xx"
44691
44692     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
44693     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44694
44695 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
44696 Author: Grant Likely <grant.likely@secretlab.ca>
44697 Date:   Thu Nov 15 08:20:25 2007 -0700
44698
44699     Revert "[MPC512x] Correct fixup relocation"
44700
44701     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
44702     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44703
44704 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
44705 Author: Stefan Roese <sr@denx.de>
44706 Date:   Thu Nov 15 14:25:09 2007 +0100
44707
44708     ppc4xx: Small AMCC Kilauea cleanup
44709
44710     Remove not needed pci_target_init() function.
44711
44712     Signed-off-by: Stefan Roese <sr@denx.de>
44713
44714 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
44715 Author: Stefan Roese <sr@denx.de>
44716 Date:   Thu Nov 15 14:23:55 2007 +0100
44717
44718     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
44719
44720     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
44721     - Cleanup of the 4xx GPIO functions
44722     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
44723
44724     Signed-off-by: Stefan Roese <sr@denx.de>
44725
44726 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
44727 Author: Stefan Roese <sr@denx.de>
44728 Date:   Thu Nov 15 14:20:08 2007 +0100
44729
44730     ppc4xx: AMCC Taihu board config file cleanup
44731
44732     This patch makes the AMCC Taihu a little more compatible to the other
44733     AMCC eval boards.
44734
44735     Signed-off-by: Stefan Roese <sr@denx.de>
44736
44737 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
44738 Author: Marian Balakowicz <m8@semihalf.com>
44739 Date:   Thu Nov 15 13:37:28 2007 +0100
44740
44741     [INKA4x0] NG hardware: flash support
44742
44743     Disabled and remove inka4x0 custom flash driver, use CFI flash
44744     driver instead.
44745
44746     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44747
44748 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
44749 Author: Marian Balakowicz <m8@semihalf.com>
44750 Date:   Thu Nov 15 13:29:55 2007 +0100
44751
44752     [INKA4x0] NG hardware: SDRAM support
44753
44754     Add support for three new DDR chips that may  be present on a NG
44755     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
44756
44757     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
44758
44759     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44760
44761 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
44762 Author: Marian Balakowicz <m8@semihalf.com>
44763 Date:   Thu Nov 15 13:24:43 2007 +0100
44764
44765     [INKA4x0] NG hardware: platform code update
44766
44767     - Cleanup compile warnings.
44768     - Add missing '\0' in default environment.
44769     - Increase CFG_MONITOR_LEN to 256 KiB.
44770     - Add required CFG_USE_PPCENV.
44771
44772     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44773
44774 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
44775 Author: Peter Pearse <peter.pearse@arm.com>
44776 Date:   Thu Nov 15 08:58:00 2007 +0000
44777
44778     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
44779     Remove warnings re onenand_read() & write()
44780
44781 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
44782 Author: Peter Pearse <peter.pearse@arm.com>
44783 Date:   Thu Nov 15 08:45:13 2007 +0000
44784
44785     Correction patch
44786
44787 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
44788 Author: Roy Zang <tie-fei.zang@freescale.com>
44789 Date:   Thu Sep 13 18:52:28 2007 +0800
44790
44791     Enable ULi1575 Ethernet support in 8610HPCD config
44792
44793     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44794     Acked-by: Jon Loeliger <jdl@freescale.com>
44795
44796 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
44797 Author: Stefan Roese <sr@denx.de>
44798 Date:   Tue Nov 13 08:18:20 2007 +0100
44799
44800     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
44801
44802     Signed-off-by: Stefan Roese <sr@denx.de>
44803
44804 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
44805 Author: Stefan Roese <sr@denx.de>
44806 Date:   Tue Nov 13 08:06:11 2007 +0100
44807
44808     ppc4xx: Fix 405EX PCIe UTLSET register setup
44809
44810     Signed-off-by: Stefan Roese <sr@denx.de>
44811
44812 commit 1ce55151c85d068f70317a8d65c61058b891afb4
44813 Author: Heiko Schocher <hs@denx.de>
44814 Date:   Tue Nov 13 07:50:29 2007 +0100
44815
44816     [UC101] SRAM now with 2 MB working.
44817
44818     Signed-off-by: Heiko Schocher <hs@denx.de>
44819
44820 commit 2d14684341109a69616e4d6016cd61402d55086f
44821 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44822 Date:   Fri Nov 9 15:37:53 2007 +0100
44823
44824     ppc4xx: Use generic usb-ohci driver for sequoia board
44825
44826     This patch makes the sequoia board use the generic usb-ohci driver
44827     instead of cpu/ppc4xx/usb_ohci.c.
44828
44829     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44830     Signed-off-by: Stefan Roese <sr@denx.de>
44831
44832 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
44833 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44834 Date:   Fri Nov 9 15:37:23 2007 +0100
44835
44836     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
44837
44838     This patch disables the 44x d-cache on 'usb start' and
44839     reenables it on 'usb stop'. This should be seen as a
44840     temporary fix until the generic usb-ohci driver can
44841     life with d-cache enabled.
44842
44843     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44844     Signed-off-by: Stefan Roese <sr@denx.de>
44845
44846 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
44847 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44848 Date:   Fri Nov 9 15:36:44 2007 +0100
44849
44850     ppc4xx: Remove redundant code from 4xx network driver
44851
44852     This patch removes some redundant code and decrements the end
44853     address of cache flush and invalidate by 1.
44854
44855     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
44856     Signed-off-by: Stefan Roese <sr@denx.de>
44857
44858 commit 5ca9881aad8c413ac2a82868a5e3719178254502
44859 Author: Peter Pearse <peter.pearse@arm.com>
44860 Date:   Fri Nov 9 15:24:26 2007 +0000
44861
44862     Add apollon board support
44863     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
44864
44865 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
44866 Author: Stefan Roese <sr@denx.de>
44867 Date:   Fri Nov 9 12:19:58 2007 +0100
44868
44869     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
44870
44871     Signed-off-by: Stefan Roese <sr@denx.de>
44872
44873 commit c7f69c340277935a6c19a956421852da944a365f
44874 Author: Stefan Roese <sr@denx.de>
44875 Date:   Fri Nov 9 12:18:54 2007 +0100
44876
44877     ppc4xx: Make output a little shorter on I2C bootrom detection
44878
44879     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
44880     already print a line with the information which I2C bootrom is
44881     used for bootstrap configuration. So we don't need this extra line
44882     with "I2C boot EEPROM en-/dis-abled".
44883
44884     This patch also has a little code cleanup integrated.
44885
44886     Signed-off-by: Stefan Roese <sr@denx.de>
44887
44888 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
44889 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44890 Date:   Thu Nov 8 12:50:18 2007 -0600
44891
44892     ColdFire: MCF5329 - Remove reset registers from CCM
44893
44894     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44895
44896 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
44897 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44898 Date:   Thu Nov 8 12:31:11 2007 -0600
44899
44900     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
44901
44902     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44903
44904 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
44905 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44906 Date:   Thu Nov 8 12:19:01 2007 -0600
44907
44908     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
44909
44910     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44911
44912 commit 225a24b5e062ad94627424508ae814f51dbe1a34
44913 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44914 Date:   Wed Nov 7 18:00:54 2007 -0600
44915
44916     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
44917
44918     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44919
44920 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
44921 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44922 Date:   Wed Nov 7 17:56:15 2007 -0600
44923
44924     ColdFire: MCF532x - Update do_reset() using core reset
44925
44926     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44927
44928 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
44929 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44930 Date:   Wed Nov 7 17:51:00 2007 -0600
44931
44932     ColdFire: Update cpu flag for 4.2-xx compiler
44933
44934     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
44935
44936 commit 070ba56115b4da63b46e974287fa4550d4023386
44937 Author: York Sun <yorksun@freescale.com>
44938 Date:   Wed Oct 31 14:59:04 2007 -0500
44939
44940     8610: Add console frame buffer support to FSL 8610 DIU driver.
44941
44942     Add cfb console support to FSL 8610 DIU driver.
44943     Inspect board version from PIXIS to obtain correct pixel format.
44944
44945     Use #define CONFIG_VIDEO in config file to enable fb console.
44946
44947     To switch monitor, set monitor variable to
44948     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
44949     followed by "diufb init".
44950
44951     Preserve logo bitmap at the top of the fb console.
44952
44953     Signed-off-by: York Sun <yorksun@freescale.com>
44954     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44955
44956 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
44957 Author: York Sun <yorksun@freescale.com>
44958 Date:   Mon Oct 29 13:58:39 2007 -0500
44959
44960     8610: Add 8610 DIU display driver
44961
44962     1280x1024 and 1024x768 @ 32 bpp are supported now.
44963     DVI, Single-link LVDS, Double-link LVDS are all supported.
44964
44965     Environmental variable "monitor" is used to specify monitor port.
44966
44967     A new command "diufb" is introduced to reinitialize monitor
44968     and display a BMP file in the memory. So far, 1-bit, 4-bit,
44969     8-bit and 24-bit BMP formats are supported.
44970
44971         diufb init
44972             - initialize the diu driver
44973         Enable the port specified in the environmental variable "monitor"
44974
44975         diufb addr
44976             - display bmp file in memory.
44977         The bmp image should be no bigger than the resolution, 1280x1024
44978         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
44979
44980     Note, this driver allocate memory but doesn't free it after use
44981     It is written on purpose -- to avoid a failure of reallocation
44982     due to memory fragement.
44983
44984     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
44985
44986     Signed-off-by: York Sun <yorksun@freescale.com>
44987     Signed-off-by: Jon loeliger <jdl@freescale.com>
44988
44989 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
44990 Author: York Sun <yorksun@freescale.com>
44991 Date:   Wed Oct 31 10:43:59 2007 -0500
44992
44993     FSL: Add a freescale bitmap logo.
44994
44995     This Freescale logo is a 340 x 128 x 4bpp BMP file
44996     that can be displayed by the DIU Framebuffer driver.
44997
44998     Signed-off-by: York Sun <yorksun@freescale.com>
44999     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45000
45001 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
45002 Author: York Sun <yorksun@freescale.com>
45003 Date:   Mon Oct 29 13:57:53 2007 -0500
45004
45005     8610: Make some extra debug environment variables conditional.
45006
45007     One may #define ENV_DEBUG to get them back again.
45008
45009     Signed-off-by: York Sun <yorksun@freescale.com>
45010
45011 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
45012 Author: Jason Jin <Jason.jin@freescale.com>
45013 Date:   Mon Oct 29 19:26:21 2007 +0800
45014
45015     8610: Actually enable pixis_reset CONFIGs
45016
45017     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45018
45019 commit f3bceaab230b4748d0afc4109b6837308f018b40
45020 Author: Jason Jin <Jason.jin@freescale.com>
45021 Date:   Fri Oct 26 18:31:59 2007 +0800
45022
45023     Fix the BAT definition of PCI IO on 8610 board
45024
45025     The address in the BAT register is aligned with the BAT size.
45026     The original definition actually did not define BAT for PCIE2 IO.
45027     This patch fix this.
45028
45029     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45030
45031 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
45032 Author: Jason Jin <Jason.jin@freescale.com>
45033 Date:   Mon Oct 29 19:26:21 2007 +0800
45034
45035     Unify pixis_reset altbank across board families
45036
45037     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
45038     into the separate board config files.
45039
45040     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45042
45043 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
45044 Author: Jason Jin <Jason.jin@freescale.com>
45045 Date:   Fri Oct 26 18:32:00 2007 +0800
45046
45047     make 8610 board use pixis reset
45048
45049     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45050
45051 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
45052 Author: Jon Loeliger <jdl@freescale.com>
45053 Date:   Thu Nov 1 12:23:29 2007 -0500
45054
45055     86xx: Fix broken variable reference when #def DEBUGing.
45056
45057     Sometimes you can't reference the DDR2 controller variables.
45058
45059     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45060
45061 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
45062 Author: Roy Zang <tie-fei.zang@freescale.com>
45063 Date:   Mon Nov 5 17:39:24 2007 +0800
45064
45065     Implement general ULi 526x Ethernet driver support in U-boot
45066
45067     This patch implements general ULi 526x Ethernet driver.
45068     Until now, it is the only native Ethernet port on
45069     MPC8610HPCD board, but it could be used on other boards
45070     with ULi 526x Ethernet port as well.
45071
45072     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45073     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45074     Acked-by: Jon Loeliger <jdl@freescale.com>
45075     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45076
45077 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
45078 Author: Larry Johnson <lrj@arlinx.com>
45079 Date:   Thu Nov 1 08:46:50 2007 -0500
45080
45081     NET: Add Ethernet 1000BASE-X support for PPC4xx
45082
45083     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
45084     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
45085     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
45086     "mii info" command is modified to distinguish between 1000BASE-T and -X.
45087
45088     Signed-off-by: Larry Johnson <lrj@acm.org>
45089     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45090
45091 commit 298035df4948b113d29ac0e694717d34b95bc5dc
45092 Author: Larry Johnson <lrj@arlinx.com>
45093 Date:   Wed Oct 31 11:21:29 2007 -0500
45094
45095     NET: Cosmetic changes
45096
45097     Signed-off-by: Larry Johnson <lrj@acm.org>
45098     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45099
45100 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
45101 Author: Stefan Roese <sr@denx.de>
45102 Date:   Mon Nov 5 07:43:05 2007 +0100
45103
45104     ppc4xx: Make output a little shorter on PCIe detection
45105
45106     Now not max 3 lines but 2 lines are printed per PCIe port.
45107
45108     Signed-off-by: Stefan Roese <sr@denx.de>
45109
45110 commit 992742a5b09d9040adbd156fb90756af66ade310
45111 Author: Wolfgang Denk <wd@denx.de>
45112 Date:   Sat Nov 3 23:09:27 2007 +0100
45113
45114     Cleanup coding style; update CHANGELOG
45115
45116     Signed-off-by: Wolfgang Denk <wd@denx.de>
45117
45118 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
45119 Author: Bruce Adler <bruce.adler@ccpu.com>
45120 Date:   Fri Nov 2 13:15:42 2007 -0700
45121
45122     fix wording in README
45123
45124     Changed the wording to properly describe the shadowing
45125     of the environment from ROM to RAM
45126
45127     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
45128
45129 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
45130 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45131 Date:   Wed Oct 31 02:18:15 2007 +0900
45132
45133     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
45134
45135     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45136
45137 commit ec22755799466c8a103664bb3a5e647bf9c238f4
45138 Author: Vlad Lungu <vlad@comsys.ro>
45139 Date:   Thu Oct 25 16:08:14 2007 +0300
45140
45141     Trimmed some variables in ne2000.c
45142
45143     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
45144
45145 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
45146 Author: Zhang Wei <wei.zhang@freescale.com>
45147 Date:   Thu Oct 25 17:51:27 2007 +0800
45148
45149     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
45150
45151     The scan code of the key 'z' is 0x1d, which should be handled.
45152
45153     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
45154     controller.
45155
45156     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45157
45158 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
45159 Author: Zhang Wei <wei.zhang@freescale.com>
45160 Date:   Thu Oct 25 17:30:04 2007 +0800
45161
45162     Fix USB support issue for MPC8641HPCN board.
45163
45164     The configuration file has already enabled USB, but it
45165     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
45166     on MPC8641HPCN can not work because of the wrong USB
45167     register endian.
45168
45169     And add the USB command to U-Boot commands list.
45170
45171     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45172
45173 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
45174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45175 Date:   Wed Oct 24 18:16:01 2007 +0200
45176
45177     Use config_cmd_default.h instead of config_cmd_all.h
45178
45179     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45180
45181 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
45182 Author: Marian Balakowicz <m8@semihalf.com>
45183 Date:   Wed Oct 24 01:37:36 2007 +0200
45184
45185     TQM5200: Call usb_cpu_init() during board init
45186
45187     usb_cpu_init() configures GPS USB pins, clocks, etc. and
45188     is required for proper operation of kernel USB subsystem.
45189     This setup was previously done in the kernel by the fixup
45190     code which is being removed, thus low level init must be
45191     done by U-boot now.
45192
45193     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45194
45195 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
45196 Author: Guennadi Liakhovetski <lg@denx.de>
45197 Date:   Tue Oct 23 16:25:50 2007 +0200
45198
45199     Fix typo in nfs.c
45200
45201     An obvious typo. Originally fixed in linkstation u-boot port.
45202
45203     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45204
45205 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
45206 Author: Guennadi Liakhovetski <lg@denx.de>
45207 Date:   Tue Oct 23 14:35:05 2007 +0200
45208
45209     Fix a typo in cpu/mpc824x/interrupts.c
45210
45211     Since December 2003 the timer_interrupt_cpu() function in
45212     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
45213     parameter. Remove it.
45214
45215     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45216
45217 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
45218 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
45219 Date:   Wed Oct 17 11:13:51 2007 +0200
45220
45221     add ft_cpu_setup(..) on mpc8260
45222
45223     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
45224     based on code from mpc5xxx
45225
45226     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
45227     --
45228
45229 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
45230 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
45231 Date:   Wed Oct 17 11:18:42 2007 +0200
45232
45233     changes for IDS8247 board support
45234
45235     To get the IDS8247 board working following are done:
45236      - FCC2 is deactivated
45237      - FCC1 is activated
45238      - I2C is activated
45239      - CFI driver is activated
45240      - Adapted for use with LIBFDT
45241
45242     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
45243     --
45244
45245 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
45246 Author: Stefan Roese <sr@denx.de>
45247 Date:   Sat Nov 3 12:08:28 2007 +0100
45248
45249     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
45250
45251     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
45252     Again, only one image supports both targets.
45253
45254     Signed-off-by: Stefan Roese <sr@denx.de>
45255
45256 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
45257 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45258 Date:   Wed Oct 24 15:48:37 2007 +0200
45259
45260     ATSTK1002: Remove default ethernet addresses
45261
45262     Wolfgang is right: It's not a good idea to set up default initial
45263     ethernet addresses for a board, even though they belong to the local
45264     range.
45265
45266     This will change the failure mode from "IT manager screams at you for
45267     using duplicate ethernet addresses" to a nice error message explaining
45268     that the ethernet address hasn't been set properly.
45269
45270     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45271
45272 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
45273 Author: Justin Flammia <jflammia@savantav.com>
45274 Date:   Mon Oct 29 17:40:35 2007 -0400
45275
45276     DHCP Client Fix
45277
45278     This is a multi-part message in MIME format.
45279
45280     commit e6e505eae94ed721e123e177489291fc4544b7b8
45281     Author: Justin Flammia <jflammia@savantav.com>
45282     Date:   Mon Oct 29 17:19:03 2007 -0400
45283
45284         Found a bug in the way the DHCP Request packet is built, where the IP address
45285         that is offered by the server is bound to prematurely. This patch is a fix of
45286         that bug where the IP address offered by the DHCP server is not used until
45287         after the DHCP ACK from the server is received.
45288
45289     Signed-off-by: Justin Flammia <jflammia@savantav.com>
45290     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45291
45292 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
45293 Author: Stefan Roese <sr@denx.de>
45294 Date:   Wed Oct 31 20:58:34 2007 +0100
45295
45296     ppc4xx: Fix acadia_nand build problem
45297
45298     Since the cache handling functions were moved from start.S into cache.S
45299     the acadia NAND booting Makfile needs to be adapted accordingly.
45300
45301     Signed-off-by: Stefan Roese <sr@denx.de>
45302
45303 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
45304 Author: Stefan Roese <sr@denx.de>
45305 Date:   Wed Oct 31 20:57:11 2007 +0100
45306
45307     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
45308
45309     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
45310     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
45311     boards by defining CONFIG_4xx_DCACHE in the board config file. This
45312     option will disappear, when more boards use is successfully and no
45313     more known problems exist.
45314
45315     This is tested successfully on Sequoia and Katmai. The only problem that
45316     needs to be fixed is, that USB is not working on Sequoia right now, since
45317     it will need some cache handling code too, similar to the 4xx EMAC driver.
45318
45319     Signed-off-by: Stefan Roese <sr@denx.de>
45320
45321 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
45322 Author: Stefan Roese <sr@denx.de>
45323 Date:   Wed Oct 31 20:51:10 2007 +0100
45324
45325     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
45326
45327     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
45328     disable the cache for the CPU POST tests, since these tests consist
45329     of self modifying code. This is done via the new change_tlb() function.
45330
45331     Signed-off-by: Stefan Roese <sr@denx.de>
45332
45333 commit f71b2888b4b3c870909a0341427b2a914246f81f
45334 Author: Stefan Roese <sr@denx.de>
45335 Date:   Wed Oct 31 20:47:26 2007 +0100
45336
45337     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
45338
45339     This patch enables the 4xx EMAC POST driver to work too, when dcache is
45340     enabled.
45341
45342     Signed-off-by: Stefan Roese <sr@denx.de>
45343
45344 commit a2685904061b35a17583d65fe47cdc2686a69eaa
45345 Author: Stefan Roese <sr@denx.de>
45346 Date:   Wed Oct 31 20:45:53 2007 +0100
45347
45348     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
45349
45350     Signed-off-by: Stefan Roese <sr@denx.de>
45351
45352 commit ff768cb168d8157c24a25016dbfbeb465e47f420
45353 Author: Stefan Roese <sr@denx.de>
45354 Date:   Wed Oct 31 18:01:24 2007 +0100
45355
45356     ppc4xx: Change 4xx ethernet driver to handle cached memory too
45357
45358     This patch enables the 4xx EMAC driver to work too, when dcache is
45359     enabled.
45360
45361     Signed-off-by: Stefan Roese <sr@denx.de>
45362
45363 commit 483e09a223c666269ef81d3573a6591b1046b0ef
45364 Author: Stefan Roese <sr@denx.de>
45365 Date:   Wed Oct 31 17:59:22 2007 +0100
45366
45367     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
45368
45369     This function is used to either turn cache on or off in a specific
45370     memory area.
45371
45372     Signed-off-by: Stefan Roese <sr@denx.de>
45373
45374 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
45375 Author: Stefan Roese <sr@denx.de>
45376 Date:   Wed Oct 31 17:57:52 2007 +0100
45377
45378     ppc4xx: Remove cache definition from 4xx board config files
45379
45380     All 4xx board config files don't need the cache definitions anymore.
45381     These are now defined in common headers.
45382
45383     Signed-off-by: Stefan Roese <sr@denx.de>
45384
45385 commit 9b94ac61d2176185c30adf0793e079ec30e68687
45386 Author: Stefan Roese <sr@denx.de>
45387 Date:   Wed Oct 31 17:55:58 2007 +0100
45388
45389     ppc4xx: Rework 4xx cache support
45390
45391     New cache handling functions added and all existing functions
45392     moved from start.S into seperate cache.S.
45393
45394     Signed-off-by: Stefan Roese <sr@denx.de>
45395
45396 commit 06713773da4ac3d390c63d82641eb553224b27c2
45397 Author: Stefan Roese <sr@denx.de>
45398 Date:   Tue Oct 23 18:03:12 2007 +0200
45399
45400     ppc4xx: Remove compiler warning from previous commit
45401
45402     Signed-off-by: Stefan Roese <sr@denx.de>
45403
45404 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
45405 Author: Stefan Roese <sr@denx.de>
45406 Date:   Tue Oct 23 14:40:30 2007 +0200
45407
45408     ppc4xx: Remove temporary TLB entry in POST cache test
45409
45410     Signed-off-by: Stefan Roese <sr@denx.de>
45411
45412 commit 1338e6a81834099ba19733b69aafd8ef5f098094
45413 Author: Stefan Roese <sr@denx.de>
45414 Date:   Tue Oct 23 14:05:08 2007 +0200
45415
45416     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
45417
45418     I lately noticed, that newer 4xx board with GBit support sometimes don't
45419     finish link autonegotiation in 4 seconds. Changing this timeout to 5
45420     seconds seems fine here.
45421
45422     Signed-off-by: Stefan Roese <sr@denx.de>
45423
45424 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
45425 Author: Stefan Roese <sr@denx.de>
45426 Date:   Tue Oct 23 14:03:17 2007 +0200
45427
45428     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
45429
45430     This patch changes all in32/out32 calls to use the recommended in_be32/
45431     out_be32 macros instead.
45432
45433     Signed-off-by: Stefan Roese <sr@denx.de>
45434
45435 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
45436 Author: Stefan Roese <sr@denx.de>
45437 Date:   Thu Oct 25 12:24:59 2007 +0200
45438
45439     ppc4xx: Fix POST ethernet test for Haleakala
45440
45441     The POST ethernet test needed to be changed to dynamically determine
45442     the count of ethernet devices. This code is cloned from the 4xx
45443     ethernet driver.
45444
45445     Signed-off-by: Stefan Roese <sr@denx.de>
45446
45447 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
45448 Author: Stefan Roese <sr@denx.de>
45449 Date:   Tue Oct 23 11:31:05 2007 +0200
45450
45451     ppc4xx: Correct UART input clock calculation and passing to fdt
45452
45453     We now use a value in the gd (global data) structure for the UART input
45454     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
45455     in get_sys_info().
45456
45457     Signed-off-by: Stefan Roese <sr@denx.de>
45458
45459 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
45460 Author: Stefan Roese <sr@denx.de>
45461 Date:   Tue Oct 23 10:10:08 2007 +0200
45462
45463     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
45464
45465     The Haleakala is nearly identical with the Kilauea eval board. The only
45466     difference is that the 405EXr only supports one EMAC and one PCIe
45467     interface. This patch adds support for the Haleakala board by using
45468     the identical image for Kilauea and Haleakala. The distinction is done
45469     by comparing the PVR.
45470
45471     Signed-off-by: Stefan Roese <sr@denx.de>
45472
45473 commit 9f798766aa85e62eb8fa8c721e148df609b78137
45474 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
45475 Date:   Tue Oct 23 08:29:10 2007 +0200
45476
45477     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
45478
45479     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
45480
45481     Note:
45482     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
45483     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
45484     modules are still plugged in. So it is recommended to remove the DIMM
45485     modules while using the NAND booting code with the fixed SDRAM setup!
45486
45487     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
45488     Signed-off-by: Stefan Roese <sr@denx.de>
45489
45490 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
45491 Author: Stefan Roese <sr@denx.de>
45492 Date:   Mon Oct 22 16:24:44 2007 +0200
45493
45494     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
45495
45496     Signed-off-by: Stefan Roese <sr@denx.de>
45497
45498 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
45499 Author: Stefan Roese <sr@denx.de>
45500 Date:   Mon Oct 22 16:22:40 2007 +0200
45501
45502     ppc4xx: Rework of 4xx serial driver (4)
45503
45504     Change 4xx_uart.c:
45505
45506     - Use in_8/out_8 macros instead of in8/out8
45507     - No need for UART_BASE marco anymore, now really handled via function
45508       parameter
45509     - serial_init_common() introduced
45510     - Further coding style cleanup
45511
45512     Signed-off-by: Stefan Roese <sr@denx.de>
45513
45514 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
45515 Author: Stefan Roese <sr@denx.de>
45516 Date:   Mon Oct 22 15:45:49 2007 +0200
45517
45518     ppc4xx: Rework of 4xx serial driver (3)
45519
45520     Change all linker scripts to reference the changed driver name iop480_uart.o.
45521
45522     Signed-off-by: Stefan Roese <sr@denx.de>
45523
45524 commit 882ae41274921f9016131806bdeb27e19606f47a
45525 Author: Stefan Roese <sr@denx.de>
45526 Date:   Mon Oct 22 15:44:39 2007 +0200
45527
45528     ppc4xx: Rework of 4xx serial driver (2)
45529
45530     Change all linker scripts to reference the changed driver name 4xx_uart.o.
45531
45532     Note: In most cased all these explicit referencing of these object files
45533     in the linker scripts is not neccessary. Only for manually embedded
45534     environment into the U-Boot image, which is not done is most cases.
45535
45536     Signed-off-by: Stefan Roese <sr@denx.de>
45537
45538 commit ad31e40bed042cb670d0036fea96435007afb838
45539 Author: Stefan Roese <sr@denx.de>
45540 Date:   Mon Oct 22 15:09:59 2007 +0200
45541
45542     ppc4xx: Rework of 4xx serial driver (1)
45543
45544     This patch starts the rework of the PPC4xx serial driver. First we split
45545     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
45546     handling code and the other one iop480_uart.c with the UART code for the
45547     PLX-Tech IOP480 PPC (PPC403 based).
45548
45549     Signed-off-by: Stefan Roese <sr@denx.de>
45550
45551 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
45552 Author: Stefan Roese <sr@denx.de>
45553 Date:   Mon Oct 22 10:30:38 2007 +0200
45554
45555     ppc4xx: Correct UART input clock calculation and passing to fdt
45556
45557     Signed-off-by: Stefan Roese <sr@denx.de>
45558
45559 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
45560 Author: Stefan Roese <sr@denx.de>
45561 Date:   Mon Oct 22 07:34:34 2007 +0200
45562
45563     ppc4xx: Add initial AMCC Makalu 405EX support
45564
45565     Signed-off-by: Stefan Roese <sr@denx.de>
45566
45567 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
45568 Author: Stefan Roese <sr@denx.de>
45569 Date:   Mon Oct 22 07:33:52 2007 +0200
45570
45571     ppc4xx: Add freqUART to CPU speed detection
45572
45573     This value is needed later for the device tree configuration of
45574     the uart clock.
45575
45576     Signed-off-by: Stefan Roese <sr@denx.de>
45577
45578 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
45579 Author: Stefan Roese <sr@denx.de>
45580 Date:   Sun Oct 21 14:26:29 2007 +0200
45581
45582     ppc: Small Kilauea cleanup of config file
45583
45584     Signed-off-by: Stefan Roese <sr@denx.de>
45585
45586 commit 758c037aeead34b49631b8da3a90b1bba14c0410
45587 Author: Stefan Roese <sr@denx.de>
45588 Date:   Sun Oct 21 08:16:12 2007 +0200
45589
45590     rtc: Add Xicor/Intersil X1205 RTC support
45591
45592     This patch adds support for the Xicor/Intersil X1205 RTC used on the
45593     AMCC Makalu eval board. This driver is basically cloned from the Linux
45594     driver version (2.6.23).
45595
45596     This patch also introduces the Linux bcd.h header for the BCD2BIN/
45597     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
45598     should be converted to also use this header instead of implementing
45599     their own local copy of these functions/macros.
45600
45601     Signed-off-by: Stefan Roese <sr@denx.de>
45602
45603 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
45604 Author: Stefan Roese <sr@denx.de>
45605 Date:   Sun Oct 21 08:12:41 2007 +0200
45606
45607     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
45608
45609     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
45610     PPC440_SYS_INFO structure into the common ppc4xx.h header.
45611
45612     Lot's of other macros are good candidates to be consolidated this way
45613     in the future.
45614
45615     Signed-off-by: Stefan Roese <sr@denx.de>
45616
45617 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
45618 Author: Stefan Roese <sr@denx.de>
45619 Date:   Sun Oct 21 08:05:18 2007 +0200
45620
45621     ppc4xx: Fix size setup in Kilauea DDR2 init routine
45622
45623     The size was initilized wrong. Instead of 256MB, the DDR2 controller
45624     was setup to 512MB. Now the correct values is used.
45625
45626     This patch also does a little cleanup and adds a comment here.
45627
45628     Signed-off-by: Stefan Roese <sr@denx.de>
45629
45630 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
45631 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
45632 Date:   Thu Oct 18 17:29:04 2007 +0200
45633
45634     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
45635
45636     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
45637     number is used to access system registers.
45638
45639     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
45640     Signed-off-by: Stefan Roese <sr@denx.de>
45641
45642 commit c36c68160333ac5fe41ec3db12a728b7075b3912
45643 Author: Stefan Roese <sr@denx.de>
45644 Date:   Thu Oct 18 07:42:27 2007 +0200
45645
45646     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
45647
45648     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
45649     is the internal SRAM. Since I now ported and tested this endpoint mode
45650     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
45651     Katmai.
45652
45653     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
45654     this setup.
45655
45656     Signed-off-by: Stefan Roese <sr@denx.de>
45657
45658 commit 5cb4af4791f61843432155142b6cfac901f66c10
45659 Author: Stefan Roese <sr@denx.de>
45660 Date:   Thu Oct 18 07:39:38 2007 +0200
45661
45662     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
45663
45664     This patch adds endpoint support for the AMCC Kilauea eval board. It can
45665     be tested by connecting a reworked PCIe cable (only 1x lane singles
45666     connected) to another root-complex.
45667
45668     In this test setup, a 64MB inbound window is configured at BAR0 which maps
45669     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
45670     access the first 64MB of the SDRAM on the PPC side.
45671
45672     Signed-off-by: Stefan Roese <sr@denx.de>
45673
45674 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
45675 Author: Stefan Roese <sr@denx.de>
45676 Date:   Sat Oct 13 16:43:23 2007 +0200
45677
45678     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
45679
45680     This patch adds support for dynamic configuration of PCIe ports for the
45681     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
45682     boards Yucca & Katmai and the 405EX board Kilauea.
45683
45684     This dynamic configuration is done via the "pcie_mode" environement
45685     variable. This variable can be set to "EP" or "RP" for endpoint or
45686     rootpoint mode. Multiple values can be joined via the ":" delimiter.
45687     Here an example:
45688
45689     pcie_mode=RP:EP:EP
45690
45691     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
45692     as endpoint.
45693
45694     Per default Yucca will be configured as:
45695     pcie_mode=RP:EP:EP
45696
45697     Per default Katmai will be configured as:
45698     pcie_mode=RP:RP:REP
45699
45700     Per default Kilauea will be configured as:
45701     pcie_mode=RP:RP
45702
45703     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
45704     Signed-off-by: Stefan Roese <sr@denx.de>
45705
45706 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
45707 Author: Stefan Roese <sr@denx.de>
45708 Date:   Thu Oct 11 11:15:59 2007 +0200
45709
45710     ppc4xx: Enable device tree support (fdt) on Kilauea per default
45711
45712     This patch enables the fdt support on the AMCC Kilauea eval board.
45713     Additionally now EBC ranges fdt fixup is included to support NOR
45714     FLASH mapping via the Linux physmap_of driver.
45715
45716     This Kilauea port now support booting arch/ppc and arch/powerpc
45717     Linux kernels. The default environment "net_nfs" is for arch/ppc
45718     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
45719     support will be removed.
45720
45721     Signed-off-by: Stefan Roese <sr@denx.de>
45722
45723 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
45724 Author: Stefan Roese <sr@denx.de>
45725 Date:   Thu Oct 11 11:11:45 2007 +0200
45726
45727     ppc4xx: Add additional debug info to 4xx fdt support
45728
45729     Signed-off-by: Stefan Roese <sr@denx.de>
45730
45731 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
45732 Author: Stefan Roese <sr@denx.de>
45733 Date:   Fri Oct 5 21:28:58 2007 +0200
45734
45735     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
45736
45737     Signed-off-by: Stefan Roese <sr@denx.de>
45738
45739 commit 1941cce71b1ae975602854045061e82f94ecd012
45740 Author: Stefan Roese <sr@denx.de>
45741 Date:   Fri Oct 5 17:35:10 2007 +0200
45742
45743     ppc4xx: Fix small merge problem in 4xx_enet.c
45744
45745     Signed-off-by: Stefan Roese <sr@denx.de>
45746
45747 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
45748 Author: Stefan Roese <sr@denx.de>
45749 Date:   Fri Oct 5 17:11:30 2007 +0200
45750
45751     ppc4xx: Add initial AMCC Kilauea 405EX support
45752
45753     Signed-off-by: Stefan Roese <sr@denx.de>
45754
45755 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
45756 Author: Stefan Roese <sr@denx.de>
45757 Date:   Fri Oct 5 17:10:59 2007 +0200
45758
45759     ppc4xx: Add PPC405EX support
45760
45761     Signed-off-by: Stefan Roese <sr@denx.de>
45762
45763 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
45764 Author: Stefan Roese <sr@denx.de>
45765 Date:   Fri Oct 5 17:09:36 2007 +0200
45766
45767     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
45768
45769     Signed-off-by: Stefan Roese <sr@denx.de>
45770
45771 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
45772 Author: Stefan Roese <sr@denx.de>
45773 Date:   Fri Oct 5 17:07:50 2007 +0200
45774
45775     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
45776
45777     Signed-off-by: Stefan Roese <sr@denx.de>
45778
45779 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
45780 Author: Stefan Roese <sr@denx.de>
45781 Date:   Fri Oct 5 17:04:57 2007 +0200
45782
45783     POST: Add 405EX support to 4xx UART POST test
45784
45785     Signed-off-by: Stefan Roese <sr@denx.de>
45786
45787 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
45788 Author: Stefan Roese <sr@denx.de>
45789 Date:   Fri Oct 5 15:10:02 2007 +0200
45790
45791     DTT: Prepare DS1775 driver for use of different I2C addresses
45792
45793     Signed-off-by: Stefan Roese <sr@denx.de>
45794
45795 commit 19e93b1e16d267220440d827b920fbad8abfa70f
45796 Author: Stefan Roese <sr@denx.de>
45797 Date:   Fri Oct 5 14:23:43 2007 +0200
45798
45799     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
45800
45801     Signed-off-by: Stefan Roese <sr@denx.de>
45802
45803 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
45804 Author: Stefan Roese <sr@denx.de>
45805 Date:   Fri Oct 5 09:22:33 2007 +0200
45806
45807     ppc4xx: 4xx_pcie: Disable debug output as default
45808
45809     Signed-off-by: Stefan Roese <sr@denx.de>
45810
45811 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
45812 Author: Stefan Roese <sr@denx.de>
45813 Date:   Fri Oct 5 09:18:23 2007 +0200
45814
45815     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
45816
45817     Signed-off-by: Stefan Roese <sr@denx.de>
45818
45819 commit 4dbee8a90df613eb517aadbecebd70f168913d30
45820 Author: Stefan Roese <sr@denx.de>
45821 Date:   Fri Oct 5 07:57:20 2007 +0200
45822
45823     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
45824
45825     128MB seems to be the smallest possible value for the memory size
45826     for on PCIe port. With this change now the BAR's of the PCIe cards
45827     are accessible under U-Boot.
45828
45829     One big note: This only works for PCIe port 0 & 1. For port 2 this
45830     currently doesn't work, since the base address is now 0xc0000000
45831     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
45832     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
45833     to change the base addresses completely and this change would have
45834     too much impact right now.
45835
45836     This patch adds debug output to the 4xx pcie driver too.
45837
45838     Signed-off-by: Stefan Roese <sr@denx.de>
45839
45840 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
45841 Author: Stefan Roese <sr@denx.de>
45842 Date:   Wed Oct 3 21:16:32 2007 +0200
45843
45844     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
45845
45846     Signed-off-by: Stefan Roese <sr@denx.de>
45847
45848 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
45849 Author: Stefan Roese <sr@denx.de>
45850 Date:   Wed Oct 3 15:01:02 2007 +0200
45851
45852     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
45853
45854     These files were introduced with the IBM 405GP but are currently used on all
45855     4xx PPC platforms. So the name doesn't match the content anymore. This patch
45856     renames the files to 4xx_pci.c/h.
45857
45858     Signed-off-by: Stefan Roese <sr@denx.de>
45859
45860 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
45861 Author: Stefan Roese <sr@denx.de>
45862 Date:   Wed Oct 3 14:14:58 2007 +0200
45863
45864     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
45865
45866     Signed-off-by: Stefan Roese <sr@denx.de>
45867
45868 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
45869 Author: Stefan Roese <sr@denx.de>
45870 Date:   Wed Oct 3 10:38:09 2007 +0200
45871
45872     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
45873
45874     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
45875         the SDR registers of the PCIe ports. This makes the overall design
45876         clearer, since it removed a lot of switch statements which are not
45877         needed anymore.
45878
45879         Also, the functions ppc4xx_init_pcie_rootport() and
45880         ppc4xx_init_pcie_entport() are merged into a single function
45881         ppc4xx_init_pcie_port(), since most of the code was duplicated.
45882         This makes maintainance and porting to other 4xx platforms
45883         easier.
45884
45885     Signed-off-by: Stefan Roese <sr@denx.de>
45886
45887 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
45888 Author: Stefan Roese <sr@denx.de>
45889 Date:   Wed Oct 3 07:48:09 2007 +0200
45890
45891     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
45892
45893     This patch is the first patch of a series to make the 440SPe PCIe code
45894     usable on different 4xx PPC platforms. In preperation for the new 405EX
45895     which is also equipped with PCIe interfaces.
45896
45897     (2) This patch renames the functions from 440spe_ to 4xx_ with a
45898         little additional cleanup
45899
45900     Signed-off-by: Stefan Roese <sr@denx.de>
45901
45902 commit c7c6da23028f146d912514b95aefa3da7cf37699
45903 Author: Stefan Roese <sr@denx.de>
45904 Date:   Wed Oct 3 07:34:10 2007 +0200
45905
45906     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
45907
45908     This patch is the first patch of a series to make the 440SPe PCIe code
45909     usable on different 4xx PPC platforms. In preperation for the new 405EX
45910     which is also equipped with PCIe interfaces.
45911
45912     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
45913
45914     Signed-off-by: Stefan Roese <sr@denx.de>
45915
45916 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
45917 Author: Marian Balakowicz <m8@semihalf.com>
45918 Date:   Wed Oct 24 01:37:36 2007 +0200
45919
45920     TQM5200: Call usb_cpu_init() during board init
45921
45922     usb_cpu_init() configures GPS USB pins, clocks, etc. and
45923     is required for proper operation of kernel USB subsystem.
45924     This setup was previously done in the kernel by the fixup
45925     code which is being removed, thus low level init must be
45926     done by U-boot now.
45927
45928     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45929     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
45930
45931 commit b5af773f8d92677e06f3295b45557c9d0a487c24
45932 Author: Zhang Wei <wei.zhang@freescale.com>
45933 Date:   Thu Oct 25 17:51:27 2007 +0800
45934
45935     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
45936
45937     The scan code of the key 'z' is 0x1d, which should be handled.
45938
45939     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
45940     controller.
45941
45942     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45943     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
45944
45945 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
45946 Author: Rodolfo Giometti <giometti@enneenne.com>
45947 Date:   Mon Oct 15 11:59:17 2007 +0200
45948
45949     PXA USB OHCI: "usb stop" implementation.
45950
45951     Some USB keys need to be switched off before loading the kernel
45952     otherwise they can remain in an undefined status which prevents them
45953     to be correctly recognized by the kernel.
45954
45955     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
45956     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
45957
45958 commit 31548249decf18a6b877a18436b6139dd483fe4a
45959 Author: Justin Flammia <jflammia@savantav.com>
45960 Date:   Mon Oct 29 17:40:35 2007 -0400
45961
45962     DHCP Client Fix
45963
45964     This is a multi-part message in MIME format.
45965
45966     commit e6e505eae94ed721e123e177489291fc4544b7b8
45967     Author: Justin Flammia <jflammia@savantav.com>
45968     Date:   Mon Oct 29 17:19:03 2007 -0400
45969
45970         Found a bug in the way the DHCP Request packet is built, where the IP address
45971         that is offered by the server is bound to prematurely. This patch is a fix of
45972         that bug where the IP address offered by the DHCP server is not used until
45973         after the DHCP ACK from the server is received.
45974
45975     Signed-off-by: Justin Flammia <jflammia@savantav.com>
45976     Signed-off-by: Ben Warren <bwarren@qstreams.com>
45977
45978 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
45979 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45980 Date:   Thu Oct 25 17:16:22 2007 -0500
45981
45982     ColdFire 54455: Fix correct boot location for atmel and intel
45983
45984     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45985
45986 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
45987 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45988 Date:   Thu Oct 25 17:14:00 2007 -0500
45989
45990     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
45991
45992     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45993
45994 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
45995 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
45996 Date:   Thu Oct 25 17:12:36 2007 -0500
45997
45998     ColdFire 5329: Assign correct SDRAM size and fix cache
45999
46000     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46001
46002 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
46003 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46004 Date:   Thu Oct 25 17:10:23 2007 -0500
46005
46006     ColdFire 5253: Assign correct SDRAM size
46007
46008     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46009
46010 commit 2acefa72ee0026f862ab65597ca687428f63a973
46011 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46012 Date:   Thu Oct 25 17:09:17 2007 -0500
46013
46014     ColdFire 5282: Fix external flash boot and return dramsize
46015
46016     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
46017
46018 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
46019 Author: Bartlomiej Sieka <tur@semihalf.com>
46020 Date:   Thu Oct 25 17:20:01 2007 +0200
46021
46022     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
46023
46024     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46025
46026 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
46027 Author: Martin Krause <martin.krause@tqs.de>
46028 Date:   Wed Oct 24 08:42:25 2007 +0200
46029
46030     TQM5200: fix spurious characters on second serial interface
46031
46032     With this patch PSC3 is configured as UART. This is done, because if
46033     the pins of PSC3 are not configured at all (-> all pins are GPI),
46034     due to crosstalk, spurious characters may be send over the RX232_2_TXD
46035     signal line.
46036
46037     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46038     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46039
46040 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
46041 Author: Martin Krause <martin.krause@tqs.de>
46042 Date:   Wed Oct 24 08:41:27 2007 +0200
46043
46044     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
46045
46046     Some commands for the STK52xx base board try to access the SM501 grafic
46047     controller. But the TQM5200S has no grafic controller (only the TQM5200
46048     and the TQM5200B have). This patch deactivates the commands accessing
46049     the SM501 for the TQM5200S.
46050
46051     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46052     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46053
46054 commit b31f64343ead9482cd439b1adbe4c34026a641b1
46055 Author: Martin Krause <martin.krause@tqs.de>
46056 Date:   Mon Oct 22 16:45:53 2007 +0200
46057
46058     TQM5200: fix spurious characters on second serial interface
46059
46060     With this patch PSC3 is configured as UART. This is done, because if
46061     the pins of PSC3 are not configured at all (-> all pins are GPI),
46062     due to crosstalk, spurious characters may be send over the RX232_2_TXD
46063     signal line.
46064
46065     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46066
46067 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
46068 Author: Martin Krause <martin.krause@tqs.de>
46069 Date:   Mon Oct 22 16:40:06 2007 +0200
46070
46071     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
46072
46073     Some commands for the STK52xx base board try to access the SM501 grafic
46074     controller. But the TQM5200S has no grafic controller (only the TQM5200
46075     and the TQM5200B have). This patch deactivates the commands accessing
46076     the SM501 for the TQM5200S.
46077
46078     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46079
46080 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
46081 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46082 Date:   Sun Oct 21 09:14:28 2007 +0200
46083
46084     Mips: Fix string functions differ prototype declaration
46085
46086     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46087
46088 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
46089 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
46090 Date:   Fri Oct 19 17:51:40 2007 -0500
46091
46092     fsl_pci_init enable COMMAND_MEMORY if inbound window
46093
46094     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
46095     to pciauto_setup_device has the side effect of not getting
46096     COMMAND_MEMORY set.
46097
46098     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46099
46100 commit e9d0d527992566ebef9826962ff1745b2f082b92
46101 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46102 Date:   Fri Oct 19 10:55:24 2007 +0200
46103
46104     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
46105
46106     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46107
46108 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
46109 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46110 Date:   Fri Oct 19 08:10:15 2007 +0200
46111
46112     fix warning: no return statement in function returning non-void
46113
46114     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46115
46116 commit e78220f6e514206757acfe247297fc9a328a881f
46117 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46118 Date:   Fri Oct 19 06:33:45 2007 +0200
46119
46120     xsengine: Fix no partition type specified, use DOS as default
46121
46122     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46123
46124 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
46125 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46126 Date:   Fri Oct 19 00:24:59 2007 +0200
46127
46128     lubbock: Fix no partition type specified, use DOS as default
46129
46130     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46131
46132 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
46133 Author: Wolfgang Denk <wd@denx.de>
46134 Date:   Tue Oct 23 16:50:03 2007 +0200
46135
46136     Coding style: keep lists sorted; update CHANGELOG
46137
46138     Signed-off-by: Wolfgang Denk <wd@denx.de>
46139
46140 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
46141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46142 Date:   Fri Oct 19 00:09:05 2007 +0200
46143
46144     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
46145
46146     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46147
46148 commit 96455bfebc9887837095c9051d216f53c61b5f10
46149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46150 Date:   Fri Oct 19 00:07:39 2007 +0200
46151
46152     Fix warning differ in signedness in board/innokom/innokom.c
46153
46154     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46155
46156 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
46157 Author: Marcel Ziswiler <marcel@ziswiler.com>
46158 Date:   Fri Oct 19 00:25:33 2007 +0200
46159
46160     fix pxa255_idp board
46161
46162     The pxa255_idp being an old unmaintained board showed several issues:
46163     1. CONFIG_INIT_CRITICAL was still defined.
46164     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
46165     3. Symbol flash_addr was undeclared.
46166     4. The boards lowlevel_init function was still called memsetup.
46167     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
46168     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
46169     'target CPU does not support interworking' warnings on recent compilers.
46170     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
46171     indexes rather than the register definitions from the pxa-regs header
46172     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
46173     avoid any ambiguities.
46174     8. There were several redefinition warnings concerning ICMR, OSMR3,
46175     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
46176     9. The board configuration file was rather outdated.
46177     10. The part header file defined the vendor, product and revision arrays
46178     as unsigned chars instead of just chars in the block_dev_desc_t
46179     structure.
46180
46181     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
46182
46183 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
46184 Author: Rune Torgersen <runet@innovsys.com>
46185 Date:   Wed Oct 17 11:56:31 2007 -0500
46186
46187     Make MPC8266ADS command selection more robust
46188
46189     Fix MPC8266 command line definition so it won't break when new commands
46190     are added to u-boot.
46191     Signed-off-by Rune Torgersen <runet@innovsys.com>
46192
46193 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
46194 Author: Bartlomiej Sieka <tur@semihalf.com>
46195 Date:   Tue Oct 23 13:14:10 2007 +0200
46196
46197     Motion-PRO: Update configuration to accomodate next generation board.
46198
46199     New board has faster oscillator and a different Flash chip. This affects:
46200     - CFG_MPC5XXX_CLKIN
46201     - SDRAM timings
46202     - Flash CS configuration (timings)
46203     - Flash sector size, and thus MTD partition layout
46204     - malloc() arena size (due to bigger Flash sectors)
46205     - smaller memory test range (due to bigger malloc() arena)
46206
46207     This patch also enables more extensive memory testing via "mtest".
46208
46209     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46210
46211 commit eff501904df2bf1724a750062628ba2c51dbb1f8
46212 Author: Bartlomiej Sieka <tur@semihalf.com>
46213 Date:   Tue Oct 23 11:36:07 2007 +0200
46214
46215     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
46216
46217     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
46218     register must be written a value of 0x00000004 as the first step of the
46219     SDRAM contorller configuration.
46220
46221     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46222
46223 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
46224 Author: Peter Pearse <peter.pearse@arm.com>
46225 Date:   Tue Oct 23 10:22:16 2007 +0100
46226
46227     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
46228
46229 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
46230 Author: Stefan Roese <sr@denx.de>
46231 Date:   Tue Oct 23 10:17:42 2007 +0200
46232
46233     ppc4xx: lwmon5: Some further GPIO config changes
46234
46235     Signed-off-by: Stefan Roese <sr@denx.de>
46236
46237 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
46238 Author: Vlad Lungu <vlad@comsys.ro>
46239 Date:   Sun Oct 21 22:10:10 2007 +0900
46240
46241     [MIPS] Fix UNCACHED_SDRAM
46242
46243     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
46244
46245     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
46246     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46247
46248 commit 00101dd7a32d12f698150123e47e4b3420279f86
46249 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46250 Date:   Sun Oct 21 21:30:42 2007 +0900
46251
46252     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
46253
46254     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46255
46256 commit eb700636db017d310edaeb559b13d82588560674
46257 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46258 Date:   Sun Oct 21 10:55:37 2007 +0900
46259
46260     [MIPS] u-boot.lds: Define _gp in a standard manner
46261
46262     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46263
46264 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
46265 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46266 Date:   Sun Oct 21 10:55:36 2007 +0900
46267
46268     [MIPS] Fix $gp usage
46269
46270     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
46271     As a general principle, we should use _gp for $gp.
46272
46273     Thanks to linker script's help we fortunately have _gp which equals to
46274     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
46275     be able to access to GOT entires, global variables and procedure entry
46276     points. The right thing to do is to use _gp.
46277
46278     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
46279     which holds the offset from _gp. When updating GOT entries, we use this
46280     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
46281
46282     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
46283     I made some change to leave over num_got_entries.
46284
46285     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46286     Cc: Vlad Lungu <vlad@comsys.ro>
46287
46288 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
46289 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46290 Date:   Sun Oct 21 10:55:36 2007 +0900
46291
46292     [MIPS] u-boot.lds: Fix __got_start and __got_end
46293
46294     Ensure that __got_start points to top of the `.got', and __got_end points
46295     to bottom as well, so that we never fail to count num_got_entries.
46296
46297     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46298
46299 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
46300 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46301 Date:   Sun Oct 21 10:55:36 2007 +0900
46302
46303     [MIPS] u-boot.lds: Remove duplicated .sdata section
46304
46305     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
46306
46307 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
46308 Author: Wolfgang Denk <wd@denx.de>
46309 Date:   Sun Oct 21 01:01:17 2007 +0200
46310
46311     Minor coding style cleanup; update CHANGELOG
46312
46313     Signed-off-by: Wolfgang Denk <wd@denx.de>
46314
46315 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
46316 Author: Vlad Lungu <vlad@comsys.ro>
46317 Date:   Thu Oct 4 20:47:10 2007 +0300
46318
46319     Fix NE2000 driver:
46320
46321     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
46322     to do anything in eth_stop() if eth_init() was not called.
46323     Simplified RX path in order to avoid timeouts on really really
46324     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
46325     clever enough to cope with 1 packet per eth_rx().
46326
46327     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
46328
46329 commit df90968b48fb34fa9072fab150db2ac89678f537
46330 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
46331 Date:   Mon Sep 24 13:32:13 2007 -0400
46332
46333     Setting MSR[DE] in do_reset
46334
46335     Hello,
46336        This patch ensures the soft reset of the board for the 85xx boards
46337        by setting the MSR[DE] in the do_reset function.
46338
46339     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
46340
46341 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
46342 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
46343 Date:   Mon Sep 24 13:36:01 2007 -0400
46344
46345     MSR overwrite fix
46346
46347     Hello,
46348       This patch fixes the MSR overwrite in the start.S when moving out of
46349       the last 4K page.
46350
46351     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
46352
46353 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
46354 Author: Dan Wilson <dwilson@fulcrummicro.com>
46355 Date:   Fri Oct 19 11:33:48 2007 -0500
46356
46357     tsec driver should clear RHALT on startup
46358
46359     This was causing problems for some people.
46360
46361     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
46362     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
46363     Signed-off-by: Andy Fleming <afleming@freescale.com>
46364
46365 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
46366 Author: Kumar Gala <galak@kernel.crashing.org>
46367 Date:   Thu Oct 11 00:29:18 2007 -0500
46368
46369     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
46370
46371     On the MPC85xx CDS we have two issues:
46372
46373     1. The device tree fixup code did not check to see if the property we are
46374     trying to update is actually found.  Its possible that it would update
46375     random memory starting at 0.
46376
46377     2. Newer Linux kernel's have moved the location of the PCI nodes to be
46378     sibilings of the soc node and not children.  The explicit PATH to the PCI
46379     node would not be found for these device trees.  Add the ability to handle
46380     both paths.  In the future we shouldn't handle such fixups by explicit path.
46381
46382     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46383
46384 commit a3063eec775719b7e91023bbec3f64b3118791df
46385 Author: Kumar Gala <galak@kernel.crashing.org>
46386 Date:   Thu Oct 11 00:18:48 2007 -0500
46387
46388     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
46389
46390     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
46391     console.  Make it so we match that config what we tell Linux as the early
46392     STDOUT console.
46393
46394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46395
46396 commit e1ce3cb617bb06f91f82f98915391175addf3e82
46397 Author: Kumar Gala <galak@kernel.crashing.org>
46398 Date:   Tue Oct 2 11:12:27 2007 -0500
46399
46400     Remove magic numbers from cache related operations for mpc85xx
46401
46402     The mpc85xx start code uses some magic numbers that we actually
46403     have #defines for in <config.h> so use those instead.
46404
46405     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46406
46407 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
46408 Author: Detlev Zundel <dzu@denx.de>
46409 Date:   Fri Oct 19 16:47:26 2007 +0200
46410
46411     Fix two typos.
46412
46413     Signed-off-by: Detlev Zundel <dzu@denx.de>
46414
46415 commit 281df457c1aa50d2752165d0c5c3282d4027b974
46416 Author: Tony Li <tony.li@freescale.com>
46417 Date:   Thu Oct 18 17:47:19 2007 +0800
46418
46419     mpc83xx: Add configure entry for MPC83xx ATM support
46420
46421     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
46422     Makfile and MAKEALL
46423
46424     Signed-off-by: Tony Li <tony.li@freescale.com>
46425     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46426
46427 commit d2646554f529a9577515eceb0ec5eceee18244ba
46428 Author: Tony Li <tony.li@freescale.com>
46429 Date:   Thu Oct 18 17:44:38 2007 +0800
46430
46431     mpc83xx: pq-mds-pib.c typo error
46432
46433     Correct to val8 from val.
46434
46435     Signed-off-by: Tony Li <tony.li@freescale.com>
46436     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
46437
46438 commit 3e11ae80fec1ee12194940955431186abf6009c2
46439 Author: Stefan Roese <sr@denx.de>
46440 Date:   Wed Oct 17 15:40:19 2007 +0200
46441
46442     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
46443
46444     Signed-off-by: Stefan Roese <sr@denx.de>
46445
46446 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
46447 Author: Jon Loeliger <jdl@freescale.com>
46448 Date:   Tue Oct 16 15:27:43 2007 -0500
46449
46450     Initial mpc8610hpcd Makefile files.
46451
46452     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46453     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
46454     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
46455     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46456
46457 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
46458 Author: Jon Loeliger <jdl@freescale.com>
46459 Date:   Tue Oct 16 15:26:51 2007 -0500
46460
46461     Initial mpc8610hpcd cpu/, README and include/ files.
46462
46463     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46464     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
46465     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
46466     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46467
46468 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
46469 Author: Jon Loeliger <jdl@freescale.com>
46470 Date:   Tue Oct 16 13:54:01 2007 -0500
46471
46472     Initial mpc8610hpcd board files.
46473
46474     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46475     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
46476     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
46477     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46478
46479 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
46480 Author: runet@innovsys.com <runet@innovsys.com>
46481 Date:   Tue Oct 16 14:50:40 2007 -0500
46482
46483     Make MPC8266ADS board compile again.
46484
46485     Signed-off-by: Runet Torgersen <runet@innovsys.com>
46486
46487 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
46488 Author: Jon Loeliger <jdl@freescale.com>
46489 Date:   Mon Aug 27 12:41:03 2007 -0500
46490
46491     86xx: Allow for fewer DDR slots per memory controller.
46492
46493     As a direct correlation exists between DDR DIMM slots
46494     and SPD EEPROM addresses used to configure them, use
46495     the individually defined SPD_EEPROM_ADDRESS* values to
46496     determine if a DDR DIMM slot should have its SPD
46497     configuration read or not.
46498
46499     Effectively, this now allows for 1 or 2 DIMM slots
46500     per memory controller.
46501
46502     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46503
46504 commit 4d4a945e189a2f384c66432316da2788a0ac1607
46505 Author: Rodolfo Giometti <giometti@enneenne.com>
46506 Date:   Mon Oct 15 11:59:17 2007 +0200
46507
46508     PXA USB OHCI: "usb stop" implementation.
46509
46510     Some USB keys need to be switched off before loading the kernel
46511     otherwise they can remain in an undefined status which prevents them
46512     to be correctly recognized by the kernel.
46513
46514     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
46515
46516 commit e2e93442e558cf1500e92861f99713b2f045ea22
46517 Author: Stefan Roese <sr@denx.de>
46518 Date:   Mon Oct 15 11:39:00 2007 +0200
46519
46520     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
46521
46522     The I2C bootstrap values that can be setup via the "bootstrap" command,
46523     were setup incorrect regarding the generation of the internal sync PCI
46524     clock. The values for PLB clock == 133MHz were slighly incorrect and the
46525     values for PLB clock == 166MHz were totally incorrect. This could
46526     lead to a hangup upon booting while PCI configuration scan.
46527
46528     This patch fixes this issue and configures valid PCI divisor values
46529     for the sync PCI clock, with respect to the provided external async
46530     PCI frequency.
46531
46532     Here the values of the formula in the chapter 14.2 "PCI clocking"
46533     from the 440EPx users manual:
46534
46535     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
46536
46537     33MHz async PCI frequency:
46538     PLB = 133:
46539     =>      32 <= 44.3 <= 65        (div = 3)
46540
46541     PLB = 166:
46542     =>      32 <= 55.3 <= 65        (div = 3)
46543
46544     66MHz async PCI frequency:
46545     PLB = 133:
46546     =>      65 <= 66.5 <= 132       (div = 2)
46547
46548     PLB = 166:
46549     =>      65 <= 83 <= 132         (div = 2)
46550
46551     Signed-off-by: Stefan Roese <sr@denx.de>
46552
46553 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
46554 Author: Stefan Roese <sr@denx.de>
46555 Date:   Mon Oct 15 11:29:33 2007 +0200
46556
46557     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
46558
46559     The BCSR status bit for the 66MHz PCI operation was correctly
46560     addressed (MSB/LSB problem). Now the correct currently setup
46561     PCI frequency is displayed upon bootup.
46562
46563     This patch also fixes this problem on Rainier & Yellowstone, since these
46564     boards use the same souce code as Sequoia & Yosemite do.
46565
46566     Signed-off-by: Stefan Roese <sr@denx.de>
46567
46568 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
46569 Author: Martin Krause <martin.krause@tqs.de>
46570 Date:   Wed Sep 26 17:55:56 2007 +0200
46571
46572     TQM860M: adjust for doubled flash sector size.
46573
46574     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
46575     doubled sector size.
46576
46577     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46578
46579 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
46580 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
46581 Date:   Wed Sep 26 17:55:54 2007 +0200
46582
46583     TQM8xx: Fix CAN timing.
46584
46585     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46586
46587 commit d43e489baf02afae49077791fb22332d240d8656
46588 Author: Martin Krause <martin.krause@tqs.de>
46589 Date:   Thu Sep 27 14:54:36 2007 +0200
46590
46591     TQM866M: fix SDRAM refresh
46592
46593     At 133 MHz the current SDRAM refresh rate is too fast
46594     (measured 4 * 1.17 us).
46595     CFG_MAMR_PTA changes from 39 to 97. This result
46596     in a refresh rate of 4 * 7.8 us at the default clock
46597     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
46598     This is a compromise until a new method is found to
46599     adjust the refresh rate.
46600
46601     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46602
46603 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
46604 Author: Martin Krause <martin.krause@tqs.de>
46605 Date:   Wed Sep 26 17:55:55 2007 +0200
46606
46607     TQM866M: adjust for doubled flash sector size.
46608
46609     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
46610     doubled sector size.
46611
46612     Signed-off-by: Martin Krause <martin.krause@tqs.de>
46613
46614 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
46615 Author: Michal Simek <monstr@monstr.eu>
46616 Date:   Sun Oct 14 16:12:29 2007 +0200
46617
46618     [FIX] XUPV2P change command handling
46619     and remove code violation
46620
46621 commit 636400198228d96983c06657b17f760f5989958e
46622 Author: Wolfgang Denk <wd@denx.de>
46623 Date:   Sun Oct 14 00:13:19 2007 +0200
46624
46625     Prepare for 1.3.0-rc3 release
46626
46627     Signed-off-by: Wolfgang Denk <wd@denx.de>
46628
46629 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
46630 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46631 Date:   Sat Sep 29 13:41:37 2007 +0200
46632
46633     Fix warning differ in signedness in cpu/pxa/mmc.c
46634
46635     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46636
46637 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
46638 Author: Wolfgang Denk <wd@denx.de>
46639 Date:   Sat Oct 13 23:51:14 2007 +0200
46640
46641     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
46642
46643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46644     Signed-off-by: Wolfgang Denk <wd@denx.de>
46645
46646 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
46647 Author: Wolfgang Denk <wd@denx.de>
46648 Date:   Sat Oct 13 21:15:39 2007 +0200
46649
46650     Coding Style cleanup.
46651
46652     Signed-off-by: Wolfgang Denk <wd@denx.de>
46653
46654 commit e1893815b0999410d7a327589611c7b38e95299e
46655 Author: Wolfgang Denk <wd@denx.de>
46656 Date:   Fri Oct 12 15:49:39 2007 +0200
46657
46658     GP3 SSA: enable RTC
46659
46660     Signed-off-by: Wolfgang Denk <wd@denx.de>
46661
46662 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
46663 Author: Grzegorz Bernacki <gjb@semihalf.com>
46664 Date:   Tue Oct 9 13:58:24 2007 +0200
46665
46666     [ads5121] EEPROM support added.
46667
46668     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
46669
46670 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
46671 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46672 Date:   Sat Oct 6 18:55:35 2007 +0200
46673
46674     AVR32: Initialize bi_flash* in board_init_r
46675
46676     The ATSTK1000-specific flash driver intializes bi_flashstart,
46677     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
46678     driver, don't.
46679
46680     Initialize these in board_init_r instead so that things will still be
46681     set up correctly when we switch to the CFI driver.
46682
46683     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46684
46685 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
46686 Author: Marian Balakowicz <m8@semihalf.com>
46687 Date:   Fri Oct 5 10:40:54 2007 +0200
46688
46689     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
46690
46691     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46692
46693 commit 92869195ef8210758d2176230c0a36897afd50ed
46694 Author: Bartlomiej Sieka <tur@semihalf.com>
46695 Date:   Fri Oct 5 09:46:06 2007 +0200
46696
46697     CM5200: Fix missing null-termination in hostname manipulation code
46698
46699     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
46700
46701 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
46702 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46703 Date:   Tue Oct 2 19:09:01 2007 +0200
46704
46705     Fix memtest breakage
46706
46707     CFG_MEMTEST_START uses weird magic involving gd, which fails to
46708     compile. Use hardcoded values instead (we actually know how much RAM
46709     we have on board.)
46710
46711     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46712
46713 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
46714 Author: Stefan Roese <sr@denx.de>
46715 Date:   Tue Oct 2 11:44:46 2007 +0200
46716
46717     ppc4xx: Coding style cleanup
46718
46719     Signed-off-by: Stefan Roese <sr@denx.de>
46720
46721 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
46722 Author: Stefan Roese <sr@denx.de>
46723 Date:   Tue Oct 2 11:44:19 2007 +0200
46724
46725     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
46726
46727     Signed-off-by: Stefan Roese <sr@denx.de>
46728
46729 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
46730 Author: Grzegorz Bernacki <gjb@semihalf.com>
46731 Date:   Mon Oct 1 09:51:50 2007 +0200
46732
46733     Program EPLD to force full duplex mode for PHY.
46734
46735     EPLD forces modes of PHY operation. By default full duplex is turned off.
46736     This fix turns it on.
46737
46738     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
46739
46740 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
46741 Author: Timo Ketola <timo.ketola@exertus.fi>
46742 Date:   Mon Sep 24 14:50:32 2007 +0300
46743
46744     Bugfix: Use only one PTD for one endpoint
46745
46746     Original isp116x-hcd code prepared multiple PTDs for longer than 16
46747     byte transfers for one endpoint. That is unnecessary because the
46748     ISP116x is able to split long data from one PTD into multiple
46749     transactions based on the buffer size of the endpoint. It also caused
46750     serious problems if the endpoint NAKed some of the transactions. In
46751     that case ISP116x wouldn't notice that the other PTDs were for the same
46752     endpoint and would try the other PTDs possibly out of order. That would
46753     break the whole transfer.
46754
46755     This patch makes isp116x_submit_job to use one PTD for one transfer.
46756
46757     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
46758     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46759
46760 commit 86ec86c04326c3913178a7679aa910de071da75d
46761 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46762 Date:   Thu Sep 27 23:27:47 2007 +0200
46763
46764     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
46765
46766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46767
46768 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
46769 Author: Stefan Roese <sr@denx.de>
46770 Date:   Tue Sep 11 14:12:55 2007 +0200
46771
46772     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
46773
46774     Signed-off-by: Stefan Roese <sr@denx.de>
46775
46776 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
46777 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
46778 Date:   Wed Sep 26 16:35:54 2007 -0500
46779
46780     85xx io out functions need sync after write.
46781
46782     This fixes the mc146818 rtc_read/write functions for 85xx.
46783
46784     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46785
46786 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
46787 Author: Grant Likely <grant.likely@secretlab.ca>
46788 Date:   Tue Sep 25 15:48:05 2007 -0600
46789
46790     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
46791
46792     CFG_FPGA_XILINX is a bit value used to test against the value in
46793     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
46794     think that is the intention in this code.
46795
46796     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46797
46798 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
46799 Author: Michal Simek <monstr@monstr.eu>
46800 Date:   Mon Sep 24 00:41:30 2007 +0200
46801
46802     [FIX] change command handling and removing code violation
46803
46804 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
46805 Author: Michal Simek <monstr@monstr.eu>
46806 Date:   Mon Sep 24 00:36:06 2007 +0200
46807
46808     [FIX] change sets of commands
46809     because changing of command handling brings
46810     compilation problems
46811
46812 commit cb1bc63b75a232571eb69aa2c8aa919321655845
46813 Author: Michal Simek <monstr@monstr.eu>
46814 Date:   Mon Sep 24 00:30:42 2007 +0200
46815
46816     [FIX] Email reparation & Copyright
46817     Both codes are written by myself without any
46818     support from CTU
46819
46820 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
46821 Author: Michal Simek <monstr@monstr.eu>
46822 Date:   Mon Sep 24 00:25:11 2007 +0200
46823
46824     [PATCH] Change macro name for UartLite
46825     because PowerPC 405 can use UartLite as console
46826
46827 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
46828 Author: Michal Simek <monstr@monstr.eu>
46829 Date:   Mon Sep 24 00:21:19 2007 +0200
46830
46831     [PATCH] Add support for design without interrupt controller
46832     Polling timer
46833
46834 commit 0731933ec8ec45d02ba89b52df673d526873cdde
46835 Author: Michal Simek <monstr@monstr.eu>
46836 Date:   Mon Sep 24 00:19:48 2007 +0200
46837
46838     [FIX] resolve problem with cpu without barrel shifter
46839
46840 commit db14d77995ce515b728b178b63f82babe60e3d56
46841 Author: Michal Simek <monstr@monstr.eu>
46842 Date:   Mon Sep 24 00:18:46 2007 +0200
46843
46844     [FIX] repair email address
46845
46846 commit 481d4328618804add1f818a6c96296121cd0528e
46847 Author: Michal Simek <monstr@monstr.eu>
46848 Date:   Mon Sep 24 00:17:42 2007 +0200
46849
46850     [FIX] repair MFSL commands
46851
46852 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
46853 Author: Michal Simek <monstr@monstr.eu>
46854 Date:   Mon Sep 24 00:08:37 2007 +0200
46855
46856     synchronizition with mainline
46857
46858 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
46859 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46860 Date:   Sun Sep 23 02:42:38 2007 +0900
46861
46862     sh: Add support command of ide with sh
46863
46864     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46865
46866 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
46867 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46868 Date:   Sun Sep 23 02:38:42 2007 +0900
46869
46870     sh: Update Makefile
46871
46872     Add support MS7722SE01 to Makefile.
46873
46874     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46875
46876 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
46877 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46878 Date:   Sun Sep 23 02:31:13 2007 +0900
46879
46880     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
46881
46882     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46883
46884 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
46885 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46886 Date:   Sun Sep 23 02:19:24 2007 +0900
46887
46888     sh: Update MS7750SE01 platform
46889
46890     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46891
46892 commit 516ad760db3553766267ada01b7d5d727faa4bbd
46893 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46894 Date:   Sun Sep 23 02:17:08 2007 +0900
46895
46896     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
46897
46898     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46899
46900 commit b02bad128669e567fce87d8df823b06a0144b8db
46901 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46902 Date:   Sun Sep 23 02:12:30 2007 +0900
46903
46904     sh: Update core code of SuperH.
46905
46906     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
46907
46908 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
46909 Author: Wolfgang Denk <wd@denx.de>
46910 Date:   Thu Sep 20 00:04:14 2007 +0200
46911
46912     v1.3.0-rc2
46913
46914     Signed-off-by: Wolfgang Denk <wd@denx.de>
46915
46916 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
46917 Author: Wolfgang Denk <wd@denx.de>
46918 Date:   Tue Sep 18 21:36:35 2007 +0200
46919
46920     Avoid compiler warning.
46921
46922     Signed-off-by: Wolfgang Denk <wd@denx.de>
46923
46924 commit 8a783a65851bc7421ab69f442261215e21b8891a
46925 Author: Grant Likely <grant.likely@secretlab.ca>
46926 Date:   Tue Sep 18 12:24:57 2007 -0600
46927
46928     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
46929
46930     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
46931     nulls in a string differently.  For example, the following statement:
46932         echo "this is a string\0" > afile
46933     Will produce the following with /bin/bash:
46934         "this is a string\0"
46935     But with /bin/dash, will produce:
46936         "this is a string
46937
46938     Bug fixed by moving the embedded null out of the makefile and into the
46939     config header.  Also renamed the macro to avoid usage colision with the same
46940     macro used by other board ports.
46941
46942     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
46943
46944 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
46945 Author: Wolfgang Denk <wd@denx.de>
46946 Date:   Tue Sep 18 17:40:27 2007 +0200
46947
46948     MCC200: fix build warning
46949
46950     The MCC200 board config file includes version.h for some customer-
46951     specific setting, which causes warnings with "make depend"; build
46952     version.h before depend.
46953
46954     Signed-off-by: Wolfgang Denk <wd@denx.de>
46955
46956 commit bd86220f58b99d6896198c385fda132f0c980915
46957 Author: Peter Pearse <peter.pearse@arm.com>
46958 Date:   Tue Sep 18 13:07:54 2007 +0100
46959
46960     Move coloured led API to status_led.h
46961     Improve indentation in drivers/at45.c
46962
46963 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
46964 Author: Eirik Aanonsen <eaa@wprmedical.com>
46965 Date:   Tue Sep 18 08:47:20 2007 +0200
46966
46967     Update atstk1002 bootargs.
46968
46969     Updates to atstk1002 U-Boot header file:
46970     - Changed bootargs:
46971         * Set the bootargs for at1002 to point to the SD-card partition instead
46972         * ... of the boot flash.
46973         * Removing the rootfstype since that argument are not needed.
46974
46975     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
46976     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46977
46978 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
46979 Author: Eirik Aanonsen <eaa@wprmedical.com>
46980 Date:   Wed Sep 12 13:32:37 2007 +0200
46981
46982     Add some comments to clocks in atstk1002.h
46983
46984     This patch applies some clarifying comments to how the different
46985     clocks are setup according to atstk1002.h Some of the previous
46986     comments where stating wrongful information.
46987
46988     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46989
46990 commit 97213f32416ead885deafea86774e912ffd60ad0
46991 Author: David Saada <David.Saada@ecitele.com>
46992 Date:   Mon Sep 17 17:04:47 2007 +0200
46993
46994     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
46995
46996     Signed-off-by: David Saada <david.saada@ecitele.com>
46997
46998 commit 30363e98fa470fbecea5e8bc0f1443352754f303
46999 Author: Stefan Roese <sr@denx.de>
47000 Date:   Mon Sep 17 08:20:47 2007 +0200
47001
47002     Small whitespace cleanup of OneNAND patch
47003
47004     Signed-off-by: Stefan Roese <sr@denx.de>
47005
47006 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
47007 Author: Kyungmin Park <kmpark@infradead.org>
47008 Date:   Mon Sep 10 17:15:14 2007 +0900
47009
47010     OneNAND support (take #2)
47011
47012     [PATCH 3/3] OneNAND support (take #2)
47013
47014     OneNAND support at U-Boot
47015
47016     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47017
47018 commit 17aa2800457df0c06b41516f46f126712c196219
47019 Author: Kyungmin Park <kmpark@infradead.org>
47020 Date:   Mon Sep 10 17:14:34 2007 +0900
47021
47022     OneNAND support (take #2)
47023
47024     [PATCH 2/3] OneNAND support (take #2)
47025
47026     OneNAND support at U-Boot
47027
47028     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47029
47030 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
47031 Author: Kyungmin Park <kmpark@infradead.org>
47032 Date:   Mon Sep 10 17:13:49 2007 +0900
47033
47034     OneNAND support (take #2)
47035
47036     [PATCH 1/3] OneNAND support (take #2)
47037
47038     OneNAND support at U-Boot
47039
47040     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47041
47042 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
47043 Author: Michal Simek <monstr@monstr.eu>
47044 Date:   Sun Sep 16 20:51:57 2007 +0200
47045
47046     [FIX] remove files form repository
47047
47048 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
47049 Author: Wolfgang Denk <wd@denx.de>
47050 Date:   Sun Sep 16 17:10:04 2007 +0200
47051
47052     TQM8xx[LM]: Fix broken environment alignment.
47053
47054     With recent toolchains, the environment sectors were no longer aligned to
47055     sector boundaries. The reason was a combination of two bugs:
47056
47057     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
47058        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
47059        this gets defined, is not included here (and cannot be included
47060        without causing lots of problems).
47061
47062        Added a new #define CFG_USE_PPCENV for all boards which really
47063        want to put the environment is a ".ppcenv" section.
47064
47065     2) The linker scripts just include environment.o, silently assuming
47066        that the objects in that file are really in the order in which
47067        they are coded in the C file, i. e. "environment" first, then
47068        "redundand_environment", and "env_size" last. However, current
47069        toolchains (GCC-4.x) reorder the objects, causing the environment
47070        data not to start on a flash sector boundary:
47071
47072        Instead of:                                      we got:
47073
47074         40008000 T environment                  40008000 T env_size
47075         4000c000 T redundand_environment        40008004 T redundand_environment
47076         40010000 T env_size                     4000c004 T environment
47077
47078        Note: this patch fixes just the first part, and cures the alignment
47079        problem by making sure that "env_size" gets placed correctly. However,
47080        we still have a potential issue because primary and redundant
47081        environment sectors are actually swapped, i. e. we have now:
47082
47083         40008000 T redundand_environment
47084         4000c000 T environment
47085         40010000 T env_size
47086
47087        This shall be fixed in the next version.
47088
47089     Signed-off-by: Wolfgang Denk <wd@denx.de>
47090
47091 commit eb6da8050797c204c9d010548424186c7ce32fc1
47092 Author: Wolfgang Denk <wd@denx.de>
47093 Date:   Sun Sep 16 02:39:35 2007 +0200
47094
47095     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
47096
47097     Signed-off-by: Wolfgang Denk <wd@denx.de>
47098
47099 commit cd2d1602c54cc6957bdef3872272a4b264893960
47100 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
47101 Date:   Mon Sep 10 14:54:56 2007 -0400
47102
47103     Typo fix in tsec.c
47104
47105     Fixup for the break statement in wrong place.
47106
47107     [Patch by urwithsughosh@gmail.com]
47108     Acked-by: Andy Fleming <afleming@freescale.com>
47109     Signed-off-by:      Wolfgang Denk <wd@denx.de>
47110
47111 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
47112 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47113 Date:   Tue Sep 11 17:04:00 2007 +0200
47114
47115     Fix do_div() usage in nand process output
47116
47117     Fix usage of do_div() in nand erase|read|write process output.
47118
47119     The last patch to nand_util.c introduced do_div() instead of libgcc's
47120     implementation. But do_div() returns the quotient in its first
47121     macro parameter and not as result.
47122
47123     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47124
47125 commit c750d2e6692a000a82f29de7bf24e3dc21239161
47126 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47127 Date:   Wed Sep 12 12:36:53 2007 +0200
47128
47129     NAND: Add CFG_NAND_QUIET option
47130
47131     This config option sets the default for the progress information
47132     output behavior that can also be configured through the 'quiet'
47133     environment variable.
47134
47135     The legacy NAND code does not print the current progress info
47136     on the console. So this option is for backward compatibility for
47137     units that are in the field and where setting the quiet variable
47138     is not an option. With CFG_NAND_QUIET set to '1' the console
47139     progress info is turned off. This can still be overwritten
47140     through the environment variable.
47141
47142     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
47143
47144 commit dcb88630290d2bcd803386dd4c2be73142994c4f
47145 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
47146 Date:   Thu Sep 13 16:06:05 2007 -0700
47147
47148     ColdFire: fix build error becasue of bad type of mii_init()
47149
47150     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47151
47152 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
47153 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
47154 Date:   Thu Sep 13 16:04:05 2007 -0700
47155
47156     ColdFire: Fix build error caused by pixis.c
47157
47158     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
47159
47160     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
47161
47162 commit e21659e30660a1377c42af135a6114efe39801d9
47163 Author: Sam Sparks <SSparks@twacs.com>
47164 Date:   Fri Sep 14 11:14:42 2007 -0600
47165
47166     Update MPC8349ITX*_config to place config.tmp in right place.
47167
47168     MPC834ITX*_config does not store config.tmp at the correct locatation,
47169     causing MPC8349ITXGP to have the wrong TEXT_BASE.
47170
47171     Signed-off-by: Sam Sparks <SSparks@twacs.com>
47172     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47173
47174 commit 1218abf1b5817a39a82399b4b928b00750575bda
47175 Author: Wolfgang Denk <wd@denx.de>
47176 Date:   Sat Sep 15 20:48:41 2007 +0200
47177
47178     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
47179
47180     Signed-off-by: Wolfgang Denk <wd@denx.de>
47181
47182 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
47183 Author: Dirk Behme <dirk.behme@googlemail.com>
47184 Date:   Sat Sep 15 11:55:42 2007 +0200
47185
47186     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
47187
47188     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
47189     function local.
47190
47191     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
47192
47193     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
47194
47195 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
47196 Author: Michal Simek <monstr@monstr.eu>
47197 Date:   Sat Sep 15 00:03:35 2007 +0200
47198
47199     Synchronize with U-BOOT mainline
47200
47201 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
47202 Author: Sam Sparks <SSparks@twacs.com>
47203 Date:   Fri Sep 14 11:14:42 2007 -0600
47204
47205     Update MPC8349ITX*_config to place config.tmp in right place.
47206
47207     MPC834ITX*_config does not store config.tmp at the correct locatation,
47208     causing MPC8349ITXGP to have the wrong TEXT_BASE.
47209
47210     Signed-off-by: Sam Sparks <SSparks@twacs.com>
47211     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47212     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47213
47214 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
47215 Author: Bartlomiej Sieka <tur@semihalf.com>
47216 Date:   Thu Sep 13 18:21:48 2007 +0200
47217
47218     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
47219
47220     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47221
47222 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
47223 Author: Bartlomiej Sieka <tur@semihalf.com>
47224 Date:   Thu Sep 13 16:33:59 2007 +0200
47225
47226     tqm5200: Restore customary env. variable boot commands for powerpc kernels
47227
47228     - update default definitions of kernel_addr and fdt_addr env. variables
47229     - make arch/powerpc booting the default scenario
47230     - update MTD partition layout to match the above
47231
47232     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
47233
47234 commit f34024d4a328e6edd906456da98d2c537155c4f7
47235 Author: Wolfgang Denk <wd@denx.de>
47236 Date:   Wed Sep 12 00:48:57 2007 +0200
47237
47238     Fix memory corruption problem on STX GP3 SSA Board.
47239
47240     Signed-off-by: Wolfgang Denk <wd@denx.de>
47241
47242 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
47243 Author: Peter Pearse <peter.pearse@arm.com>
47244 Date:   Tue Sep 11 15:35:01 2007 +0100
47245
47246     Final tidy
47247
47248 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
47249 Author: Grzegorz Bernacki <gjb@semihalf.com>
47250 Date:   Tue Sep 11 15:42:11 2007 +0200
47251
47252     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
47253     scan on second pci bus.
47254
47255     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47256
47257 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
47258 Author: Grzegorz Bernacki <gjb@semihalf.com>
47259 Date:   Tue Sep 11 12:57:52 2007 +0200
47260
47261     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
47262
47263     Bamboo has a file sdram.c which needs special treatment when building in
47264     separate directory. It has to be linked to build directory otherwise it is
47265     not seen.
47266
47267     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47268
47269 commit d45963854eff39d575124d859419bb4953ce2c87
47270 Author: Michal Simek <monstr@monstr.eu>
47271 Date:   Tue Sep 11 00:37:04 2007 +0200
47272
47273     [FIX] Microblaze ML401 - repare FLASH handling
47274
47275 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
47276 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
47277 Date:   Mon Sep 10 16:55:59 2007 +0100
47278
47279     Allocate CPU Architecture Code for STMicroelectronics' ST200.
47280
47281     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
47282     ---------------------------------------------------
47283
47284 commit 754bac48156f8958d8f6a53a51eda88ab5758929
47285 Author: Wolfgang Denk <wd@denx.de>
47286 Date:   Mon Sep 10 20:42:31 2007 +0200
47287
47288     Update version to match current state.
47289
47290     Signed-off-by: Wolfgang Denk <wd@denx.de>
47291
47292 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
47293 Author: Grzegorz Bernacki <gjb@semihalf.com>
47294 Date:   Mon Sep 10 17:39:08 2007 +0200
47295
47296     [MPC512x] Streamline frame handling in the FEC driver
47297
47298     - convert frame size settings to be derived from a single base
47299     - set frame size to the recommended default value
47300
47301     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47302
47303 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
47304 Author: Kyungmin Park <kmpark@infradead.org>
47305 Date:   Mon Sep 10 11:34:00 2007 +0900
47306
47307     Remove compiler warning: target CPU does not support interworking
47308
47309     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47310
47311 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
47312 Author: Wolfgang Denk <wd@denx.de>
47313 Date:   Sun Sep 9 21:21:33 2007 +0200
47314
47315     Fix compile error in spc1920 config.
47316
47317     Signed-off-by: Markus Klotzbücher <mk@denx.de>
47318     Signed-off-by: Wolfgang Denk <wd@denx.de>
47319
47320 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
47321 Author: Grant Likely <grant.likely@secretlab.ca>
47322 Date:   Fri Sep 7 09:25:07 2007 -0600
47323
47324     Bugfix: make bootm+libfdt compile on boards with no flash
47325
47326     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47327
47328 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
47329 Author: Grzegorz Bernacki <gjb@semihalf.com>
47330 Date:   Fri Sep 7 18:35:37 2007 +0200
47331
47332     [PPC440SPe] PCIe environment settings for Katmai and Yucca
47333
47334     - 'pciconfighost' is set by default in order to be able to scan bridges
47335     behind the primary host/PCIe
47336
47337     - 'pciscandelay' env variable is recognized to allow for user-controlled
47338     delay before the PCIe bus enumeration; some peripheral devices require a
47339     significant delay before they can be scanned (e.g. LSI8408E); without the
47340     delay they are not detected
47341
47342     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47343
47344 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
47345 Author: Grzegorz Bernacki <gjb@semihalf.com>
47346 Date:   Fri Sep 7 18:20:23 2007 +0200
47347
47348     [PPC440SPe] Improve PCIe configuration space access
47349
47350     - correct configuration space mapping
47351     - correct bus numbering
47352     - better access to config space
47353
47354     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
47355     first device on the first bus. We now allow to configure up to 16 buses;
47356     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
47357     peripheral devices farther in hierarchy can be identified.
47358
47359     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47360
47361 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
47362 Author: Grzegorz Bernacki <gjb@semihalf.com>
47363 Date:   Fri Sep 7 17:46:18 2007 +0200
47364
47365     [PPC440SPe] Convert machine check exceptions handling
47366
47367     Convert using fixup mechanism to suppressing MCK for the duration of config
47368     read/write transaction: while fixups work fine with the case of a precise
47369     exception, we identified a major drawback with this approach when there's
47370     an imprecise case. In this scenario there is the following race condition:
47371     the fixup is (by design) set to catch the instruction following the one
47372     actually causing the exception; if an interrupt (e.g. decrementer) happens
47373     between those two instructions, the ISR code is executed before the fixup
47374     handler the machine check is no longer protected by the fixup handler as it
47375     appears as within the ISR code. In consequence the fixup approach is being
47376     phased out and replaced with explicit suppressing of MCK during a PCIe
47377     config read/write cycle.
47378
47379     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47380
47381 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
47382 Author: Wolfgang Denk <wd@denx.de>
47383 Date:   Fri Sep 7 17:43:36 2007 +0200
47384
47385     Fix typo in MAKEALL script.
47386
47387     Signed-off-by: Wolfgang Denk <wd@denx.de>
47388
47389 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
47390 Author: Grzegorz Bernacki <gjb@semihalf.com>
47391 Date:   Fri Sep 7 17:09:21 2007 +0200
47392
47393     [MPC512x] Proper handling of larger frames in the FEC driver
47394
47395     When frame larger than local RX buffer is received, it is split and handled
47396     by two buffer descriptors. Prior to this patch the FEC driver discarded
47397     contents of a buffer descriptor without the 'LAST' bit set, so the first
47398     part of the frame was lost in case of larger frames. This fix allows to
47399     safely combine the two pieces into the whole frame.
47400
47401     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
47402
47403 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
47404 Author: Rafal Jaworowski <raj@semihalf.com>
47405 Date:   Fri Sep 7 17:05:36 2007 +0200
47406
47407     [MPC512x] Correct fixup relocation
47408
47409     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
47410
47411 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
47412 Author: Wolfgang Denk <wd@denx.de>
47413 Date:   Fri Sep 7 01:21:25 2007 +0200
47414
47415     Update CHANGELOG, minor coding style cleanup.
47416
47417 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
47418 Author: stefano babic <sbabic@denx.de>
47419 Date:   Thu Aug 30 23:01:49 2007 +0200
47420
47421     PXA270: Added support for TrizepsIV board.
47422
47423     This patch add support for the Trizeps IV module (520Mhz).
47424
47425     Signed-off-by: Stefano Babic <sbabic@denx.de>
47426
47427 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
47428 Author: stefano babic <sbabic@denx.de>
47429 Date:   Thu Aug 30 22:57:04 2007 +0200
47430
47431     PXA270: Add support for multiple serial ports.
47432
47433     This patch adds support for multiple serial ports to the PXA target.
47434     FFUART, BTUART and STUART are supported.
47435
47436     Signed-off-by: Stefano Babic <sbabic@denx.de>
47437
47438 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
47439 Author: stefano babic <sbabic@denx.de>
47440 Date:   Thu Aug 30 22:48:47 2007 +0200
47441
47442     PXA270: fix compile issue (invalid lvalue)
47443
47444     Code is broken for PXA270 due to "invalid lvalue in assignment".
47445
47446     This patch fix it in pxa-regs.h
47447
47448     Signed-off-by: Stefano Babic <sbabic@denx.de>
47449
47450 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
47451 Author: Jason Jin <Jason.jin@freescale.com>
47452 Date:   Thu Aug 30 18:19:05 2007 +0800
47453
47454     Add BUILD_DIR support for bios emulator.
47455
47456     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
47457
47458 commit b4d8a55145442f136982634862341a3e02002bda
47459 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47460 Date:   Fri Aug 31 14:41:51 2007 +0900
47461
47462     [MIPS] Remove inline asm string functions
47463
47464     Stop using inline string functions on MIPS as other ARCHs do so,
47465     since the optimized inline asm versions are not small.
47466
47467     This change is triggered by a following MIPS build error:
47468     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
47469     common/exports.c:32: undefined reference to `strcmp'
47470     make: *** [u-boot] Error 1
47471
47472     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47473
47474 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
47475 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47476 Date:   Fri Aug 31 14:41:45 2007 +0900
47477
47478     [MIPS] Update asm string header
47479
47480     This patches contains several bugfixes and cleanups in the latest upstream:
47481
47482      - Don't include linux/config.h
47483      - Remove buggy inline version of memscan.
47484      - Merge with Linux 2.6.11-rc3.
47485      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
47486      - Goodbye mips64.  31704 lines of code bite the dust.
47487      - Replace extern inline with static inline.
47488      - Fix return value of strncpy.
47489      - Remove a bunch more "$1" clobbers.
47490
47491     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
47492
47493 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
47494 Author: Bartlomiej Sieka <tur@semihalf.com>
47495 Date:   Tue Sep 4 17:31:22 2007 +0200
47496
47497     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
47498
47499     Fix incorrect blob address calculation in do_bootm_linux() that prevents
47500     booting the kernel from a multi-file image (kernel + initrd + blob).
47501
47502     Also, make minor updates to the U-Boot's output and to the coding style.
47503
47504     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
47505
47506 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
47507 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
47508 Date:   Fri Aug 31 14:29:04 2007 +0200
47509
47510     Add support for Sil680 IDE controller.
47511
47512     o add drivers/sil680.c to support the Sil680 IDE-controller.
47513     o drivers/Makefile: add sil680.o.
47514
47515     Signed-off-by: Gary Jennejohn <garyj@denx.de>
47516
47517 commit e79021223bc339df655e360645a52c457a74b067
47518 Author: Grant Likely <grant.likely@secretlab.ca>
47519 Date:   Thu Sep 6 09:47:40 2007 -0600
47520
47521     bootm/fdt: Only process the fdt if an fdt address was provided
47522
47523     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
47524     kernels using the board info structure (instead of passing a device tree)
47525     This change allows the old style booting to be used if the fdt argument
47526     was not passed to 'bootm'.
47527
47528     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47529     Acked-by: Kim Phillips <kim.phillips@freescale.com>
47530
47531 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
47532 Author: Grant Likely <grant.likely@secretlab.ca>
47533 Date:   Thu Sep 6 09:46:23 2007 -0600
47534
47535     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
47536
47537     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
47538
47539     Tested on: lite5200b
47540
47541     Note: the fixup functions have not been moved to a common place.  This
47542     patch is targeted for immediate merging as in solves a build issue, but
47543     the final name/location of the fixups is still subject to debate.  I
47544     propose to merge this now, and move the fixups in the next merge window
47545     to be usable by all targets.
47546
47547     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47548
47549 commit 41bb76e941929f54a73206fb132f7a4c275543a3
47550 Author: Grant Likely <grant.likely@secretlab.ca>
47551 Date:   Thu Sep 6 09:46:17 2007 -0600
47552
47553     libfdt: add convenience function fdt_find_and_setprop()
47554
47555     Given the path to a node, fdt_find_and_setprop() allows a property value
47556     to be set directly.
47557
47558     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47559
47560 commit 80767a6cead9990d9e77e62be947843c2c72f469
47561 Author: Peter Pearse <peter.pearse@arm.com>
47562 Date:   Wed Sep 5 16:04:41 2007 +0100
47563
47564     Changed API name to coloured_led.h
47565     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
47566     Tidied other cpu/arm920t/start.S code
47567
47568 commit 56a9270521baaa00e12639a978302a67f61ef060
47569 Author: Kumar Gala <galak@kernel.crashing.org>
47570 Date:   Thu Aug 30 16:18:18 2007 -0500
47571
47572     Fix ULI RTC support on MPC8544 DS
47573
47574     The RTC on the M1575 ULI chipset requires a dummy read before
47575     we are able to talk to the RTC.  We accomplish this by adding a
47576     second memory region to the PHB the ULI is on and read from it.
47577
47578     The second region is added to maintain compatiabilty with Linux's
47579     view of the PCI memory map.
47580
47581     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47582
47583 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
47584 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
47585 Date:   Thu Aug 30 01:58:48 2007 -0500
47586
47587     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
47588
47589     pcie is now differentiated from pci.  Add 8641 bus-range updates.
47590
47591     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47592
47593 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
47594 Author: Peter Pearse <peter.pearse@arm.com>
47595 Date:   Tue Sep 4 16:18:38 2007 +0100
47596
47597     Add coloured led interface for ARM boards.
47598     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
47599
47600 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
47601 Author: Peter Pearse <peter.pearse@arm.com>
47602 Date:   Tue Sep 4 14:49:28 2007 +0100
47603
47604     Move include/led.h to board/at91rm9200dk
47605
47606 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
47607 Author: Peter Pearse <peter.pearse@arm.com>
47608 Date:   Tue Sep 4 14:25:51 2007 +0100
47609
47610     Ran Lindent on drivers/at45.c
47611
47612 commit 557ab89d294f08dd532f21d19861b40093200a33
47613 Author: Peter Pearse <peter.pearse@arm.com>
47614 Date:   Tue Sep 4 14:23:50 2007 +0100
47615
47616     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
47617
47618 commit 81b73dec16fd1227369a191e725e10044a9d56b8
47619 Author: Gary Jennejohn <garyj@denx.de>
47620 Date:   Fri Aug 31 15:21:46 2007 +0200
47621
47622     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
47623
47624     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
47625     set to non-zero, because it doesn't support MRM (memory-read-
47626     multiple) correctly. We now added the possibility to configure
47627     this register in the board config file, so that the default value
47628     of 8 can be overridden.
47629
47630     Here the details of this patch:
47631
47632     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
47633       board-specific settings. As an example the sequoia board requires 0.
47634       Idea from Stefan Roese <sr@denx.de>.
47635     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
47636       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
47637     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
47638       CFG_PCI_CACHE_LINE_SIZE to 0.
47639
47640     Signed-off-by: Gary Jennejohn <garyj@denx.de>
47641     Signed-off-by: Stefan Roese <sr@denx.de>
47642
47643 commit 60174746c668b309378a91488dded898e9553eae
47644 Author: Wolfgang Denk <wd@denx.de>
47645 Date:   Fri Aug 31 10:01:51 2007 +0200
47646
47647     Fix TFTP OACK code for short packets.
47648
47649     The old code had a loop limit overflow bug which caused a semi-
47650     infinite loop for small packets, because in "i<len-8", "i" was signed,
47651     but "len" was unsigned, and "len-8" became a huge number for small
47652     values of "len".
47653
47654     This is a workaround which replaces broken commit 8f1bc284.
47655
47656     Signed-off-by: Wolfgang Denk <wd@denx.de>
47657
47658 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
47659 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
47660 Date:   Thu Aug 30 15:03:05 2007 +0200
47661
47662     Reduce BOOTDELAY variable to 1 second by default for STK1002
47663
47664     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
47665     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47666
47667 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
47668 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
47669 Date:   Thu Aug 30 15:03:04 2007 +0200
47670
47671     Remove double quotation marks around MAC address for STK1002
47672
47673     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
47674     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47675
47676 commit ff13ac8c7bbebb238e339592de765c546dba1073
47677 Author: Wolfgang Denk <wd@denx.de>
47678 Date:   Thu Aug 30 14:42:15 2007 +0200
47679
47680     Backout commit 8f1bc284 as it causes TFTP to fail.
47681
47682     Signed-off-by: Wolfgang Denk <wd@denx.de>
47683
47684 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
47685 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
47686 Date:   Thu Aug 30 02:26:17 2007 -0500
47687
47688     Revert "Fix MPC8544DS PCIe3 scsi."
47689
47690     This reverts commit 9468e680.
47691     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
47692
47693     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47694
47695 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
47696 Author: Grant Likely <grant.likely@secretlab.ca>
47697 Date:   Wed Aug 29 18:26:24 2007 -0600
47698
47699     tftp: don't implicity trust the format of recevied packets
47700
47701     The TFTP OACK code trusts that the incoming packet is formated as
47702     ASCII text and can be processed by string functions. It also has a
47703     loop limit overflow bug where if the packet length is less than 8, it
47704     ends up looping over *all* of memory to find the 'blksize' string.
47705
47706     This patch solves the problem by forcing the packet to be null
47707     terminated and using strstr() to search for the sub string.
47708
47709     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47710
47711 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
47712 Author: Stefan Roese <sr@denx.de>
47713 Date:   Wed Aug 29 16:31:18 2007 +0200
47714
47715     ppc4xx: Change lwmon5 default environment to support Linux RTC
47716
47717     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
47718     to supply the RTC I2C address as bootline parameter. This patch
47719     adds support for this rtc probing parameter to the bootargs:
47720
47721     "rtc-pcf8563.probe=0,0x51"
47722
47723     Signed-off-by: Stefan Roese <sr@denx.de>
47724
47725 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
47726 Author: Kim Phillips <kim.phillips@freescale.com>
47727 Date:   Wed Aug 29 09:06:05 2007 -0500
47728
47729     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
47730
47731     this had slipped through the cracks, since the sbc board was added
47732     after I wrote the original patch to remove all these symbols, and
47733     before it was merged.
47734
47735     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47736
47737 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
47738 Author: Wolfgang Denk <wd@denx.de>
47739 Date:   Wed Aug 29 14:05:30 2007 +0200
47740
47741     Add mii_init() prototype
47742
47743     to get rid of a *lot* of compiler warnings.
47744
47745     Signed-off-by: Wolfgang Denk <wd@denx.de>
47746
47747 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
47748 Author: Wolfgang Denk <wd@denx.de>
47749 Date:   Wed Aug 29 13:35:03 2007 +0200
47750
47751     Disable network support on cmi_mpc5xx board
47752
47753     ..because it caused compiler errors and there seems to be no
47754     board maintainer to take care of this.
47755
47756     Signed-off-by: Wolfgang Denk <wd@denx.de>
47757
47758 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
47759 Author: Kumar Gala <galak@kernel.crashing.org>
47760 Date:   Mon Aug 20 09:44:00 2007 -0500
47761
47762     Fix MPC8544DS PCIe3 scsi.
47763
47764     <ed.swarthout@freescale.com>
47765
47766     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
47767     is allocating memory space it doesn't need.
47768
47769     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
47770     Signed-off-by: Andy Fleming <afleming@freescale.com>
47771
47772 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
47773 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
47774 Date:   Tue Aug 21 09:38:59 2007 -0500
47775
47776     8548cds fixes
47777
47778     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
47779     correct consoledev needed for linux boot.
47780     Standardize on fdt{file,addr} var to hold dtb file name.
47781
47782     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
47783
47784     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
47785
47786 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
47787 Author: Haiying Wang <Haiying.Wang@freescale.com>
47788 Date:   Thu Aug 23 15:20:54 2007 -0400
47789
47790     Enable L2 cache for MPC8568MDS board
47791
47792     The L2 cache size is 512KB for 8568, print out the correct informaiton.
47793
47794     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
47795
47796 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
47797 Author: Jason Jin <Jason.jin@freescale.com>
47798 Date:   Wed Aug 22 17:54:49 2007 +0800
47799
47800     Remove the bios emulator binary files from MAI board
47801
47802     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
47803
47804 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
47805 Author: Kim Phillips <kim.phillips@freescale.com>
47806 Date:   Tue Aug 21 17:00:17 2007 -0500
47807
47808     support board vendor-common makefiles
47809
47810     if a board/$(VENDOR)/common/Makefile exists, build it.
47811
47812     also add the first such case, board/freescale/common/Makefile, to
47813     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
47814     dictated by board configuration.
47815
47816     thusly get rid of alternate build dir errors such as:
47817
47818     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
47819
47820     by putting the common/ mkdir command in its proper place (the common
47821     Makefile). Common bits from existing individual board Makefiles have
47822     been removed.
47823
47824     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47825
47826 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
47827 Author: stefano babic <sbabic@denx.de>
47828 Date:   Tue Aug 21 15:52:33 2007 +0200
47829
47830     Fix: TFTP is not working on little endian systems
47831
47832     TFTP does not work anymore after multicast tftp
47833     patch was applied on little endian systems.
47834     This patch fix it.
47835
47836     Signed-off-by: Stefano Babic <sbabic@denx.de>
47837
47838 commit 5f470948570526e9186f053a3003da7719604e90
47839 Author: stefano babic <sbabic@denx.de>
47840 Date:   Tue Aug 21 15:50:33 2007 +0200
47841
47842     Fix MAC address setting in DM9000 driver.
47843
47844     The logic to check if there is a correct MAC address in the DM9000
47845     EEPROM, added in the last patch, is wrong. Now the MAC address is
47846     always taken from the environment, even if a suitable MAC is present
47847     in the EEPROM.
47848
47849     Signed-off-by: Stefano Babic <sbabic@denx.de>
47850
47851 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
47852 Author: Martin Krause <martin.krause@tqs.de>
47853 Date:   Tue Aug 21 12:40:34 2007 +0200
47854
47855     MPC5xxx: fix some compiler warnings in USB code
47856
47857     Fix the following warnings:
47858     - usb.c:xx: warning: function declaration isn't a prototype
47859     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
47860       from pointer wihtout a cast
47861
47862     Signed-off-by: Martin Krause <martin.krase@tqs.de>
47863
47864 commit 16e23c3f5dab6937f5109365416808c7f15c122b
47865 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
47866 Date:   Mon Aug 20 23:55:33 2007 -0500
47867
47868     fsl_pci_init - Remove self PCSRBAR allocation
47869
47870     CPU physical address space was being wasted by allocating a
47871     PCSRBAR PCI inbound region to it's memory space.
47872
47873     As a rule, PCSRBAR should be left alone since it does not affect
47874     transactions from self and other masters may have changed it.
47875
47876     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
47877
47878 commit 0e700ce03a23bb1921149bc77008ace7103d5289
47879 Author: Martin Krause <martin.krause@tqs.de>
47880 Date:   Mon Aug 20 13:56:47 2007 +0200
47881
47882     Fix compiler warning in include/s3c2410.h
47883
47884     This patch fixes the "type qualifiers ignored on fuction return tpye"
47885     warning for include/s3c2410.h
47886
47887     Signed-off-by: Martin Krause <martin.krause@tqs.de>
47888
47889 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
47890 Author: Dirk Behme <dirk.behme@googlemail.com>
47891 Date:   Mon Aug 20 07:09:05 2007 +0200
47892
47893     Fix compilation error for omap2420h4_config.
47894
47895     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
47896     and flash_probe() calls in env_flash.c.
47897
47898     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
47899
47900 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
47901 Author: Kim Phillips <kim.phillips@freescale.com>
47902 Date:   Fri Aug 10 14:34:14 2007 -0500
47903
47904     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
47905
47906     and make some minor corrections to the FDT part of the README.
47907
47908     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47909
47910 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
47911 Author: Wolfgang Denk <wd@denx.de>
47912 Date:   Wed Aug 29 01:32:05 2007 +0200
47913
47914     Minor coding style cleanup.
47915
47916     Signed-off-by: Wolfgang Denk <wd@denx.de>
47917
47918 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
47919 Author: Heiko Schocher <hs@pollux.denx.de>
47920 Date:   Tue Aug 28 17:40:33 2007 +0200
47921
47922     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
47923
47924     Signed-off-by: Heiko Schocher <hs@denx.de>
47925
47926 commit f98984cb194bb34dbe1db9429d3b51133af30d07
47927 Author: Heiko Schocher <hs@pollux.denx.de>
47928 Date:   Tue Aug 28 17:39:14 2007 +0200
47929
47930     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
47931               define there own I/O functions.
47932               (Needed for the pcs440ep board).
47933             - The default I/O Functions are again 8 Bit accesses.
47934             - Added CONFIG_CMD_IDE for the pcs440ep Board.
47935
47936     Signed-off-by: Heiko Schocher <hs@denx.de>
47937
47938 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
47939 Author: Semih Hazar <semih.hazar@indefia.com>
47940 Date:   Mon Aug 20 19:00:01 2007 +0300
47941
47942     AVR32: Change prototype of memset
47943
47944     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
47945     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
47946
47947 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
47948 Author: Yuri Tikhonov <yur@emcraft.com>
47949 Date:   Sat Aug 25 05:07:16 2007 +0200
47950
47951     POST: limit memory test area to not touch global data anymore
47952
47953     As experienced on lwmon5, on some boards the POST memory test can
47954     corrupt the global data buffer (bd). This patch fixes this issue
47955     by checking and limiting this area.
47956
47957     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
47958     Signed-off-by: Stefan Roese <sr@denx.de>
47959
47960 commit 75e1a84d483e36be10e206e539b028c4889e1158
47961 Author: Stefan Roese <sr@denx.de>
47962 Date:   Fri Aug 24 15:41:42 2007 +0200
47963
47964     ppc4xx: Add RTC POST test to lwmon5 board configuration
47965
47966     Since this RTC POST test is taking quite a while to complete
47967     it's only initiated upon special keypress same as the complete
47968     memory POST.
47969
47970     Signed-off-by: Stefan Roese <sr@denx.de>
47971
47972 commit d7bfa620037a6d2210159387571bdf93aa32c162
47973 Author: Stefan Roese <sr@denx.de>
47974 Date:   Fri Aug 24 15:19:10 2007 +0200
47975
47976     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
47977
47978     Signed-off-by: Stefan Roese <sr@denx.de>
47979
47980 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
47981 Author: Stefan Roese <sr@denx.de>
47982 Date:   Thu Aug 23 11:02:37 2007 +0200
47983
47984     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
47985
47986     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
47987     board. Now the "eeprom" command can be used to read/write from/to this
47988     device. Additionally a new command was added "eepromwp" to en-/disable
47989     the write-protect of this 2nd EEPROM.
47990
47991     The 1st EEPROM is not affected by this write-protect command.
47992
47993     Signed-off-by: Stefan Roese <sr@denx.de>
47994
47995 commit c64fb30e4c5976007d56fc1789c7a0666082b536
47996 Author: Stefan Roese <sr@denx.de>
47997 Date:   Wed Aug 22 08:56:09 2007 +0200
47998
47999     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
48000
48001     Signed-off-by: Stefan Roese <sr@denx.de>
48002
48003 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
48004 Author: Stefan Roese <sr@denx.de>
48005 Date:   Tue Aug 21 16:27:57 2007 +0200
48006
48007     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
48008
48009     This patch adds support for the matrix keyboard on the lwmon5 board.
48010     Since the implementation in the dsPCI is kind of compatible with the
48011     "old" lwmon board, most of the code is copied from the lwmon
48012     board directory.
48013
48014     Signed-off-by: Stefan Roese <sr@denx.de>
48015
48016 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
48017 Author: Wolfgang Denk <wd@denx.de>
48018 Date:   Sun Aug 19 10:27:34 2007 +0200
48019
48020     Fix some build errors.
48021
48022     Signed-off-by: Wolfgang Denk <wd@denx.de>
48023
48024 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
48025 Author: Wolfgang Denk <wd@denx.de>
48026 Date:   Sat Aug 18 22:00:38 2007 +0200
48027
48028     Update CHANGELOG.
48029
48030 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
48031 Author: Kim Phillips <kim.phillips@freescale.com>
48032 Date:   Thu Aug 16 22:52:39 2007 -0500
48033
48034     lib_ppc: make board_add_ram_info weak
48035
48036     platforms wishing to display RAM diagnostics in addition to size,
48037     can do so, on one line, in their own board_add_ram_info()
48038     implementation.
48039
48040     this consequently eliminates CONFIG_ADD_RAM_INFO.
48041
48042     Thanks to Stefan for the hint.
48043
48044     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48045
48046 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
48047 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48048 Date:   Fri Aug 17 12:43:44 2007 +0900
48049
48050     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
48051
48052     This patch has been sent on:
48053     - 6 Jun 2007
48054
48055     Many users of PCI config read routines tend to ignore the function
48056     ret value, and are only concerned about the contents of *val. Based
48057     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
48058     the *val on dword read error.
48059
48060     Without this fix, for example, we'll go on scanning bus with vendor or
48061     header_type uninitialized. This brings many unnecessary config trials.
48062
48063     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48064
48065 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
48066 Author: Stefan Roese <sr@denx.de>
48067 Date:   Sat Aug 18 14:37:52 2007 +0200
48068
48069     ColdFire: Fix some remaining problems with CFG_CMD_
48070
48071     Signed-off-by: Stefan Roese <sr@denx.de>
48072
48073 commit 8280f6a1c43247616b68224675188e5ccd124650
48074 Author: Stefan Roese <sr@denx.de>
48075 Date:   Sat Aug 18 14:33:02 2007 +0200
48076
48077     Coding style cleanup
48078
48079     Signed-off-by: Stefan Roese <sr@denx.de>
48080
48081 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
48082 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48083 Date:   Thu Aug 16 19:23:50 2007 -0500
48084
48085     ColdFire: Add M5235EVB Platform for MCF523x
48086
48087     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48088
48089 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
48090 Author: Kim Phillips <kim.phillips@freescale.com>
48091 Date:   Fri Aug 17 09:30:00 2007 -0500
48092
48093     mpc83xx: fix typo in DDR2 programming
48094
48095     introduced in the implement board_add_ram_info patch as I was cleaning out the
48096     magic numbers.  sorry.
48097
48098     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48099
48100 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
48101 Author: Kim Phillips <kim.phillips@freescale.com>
48102 Date:   Thu Aug 16 22:53:09 2007 -0500
48103
48104     mpc83xx: move freescale boards to boards/freescale
48105
48106     includes build fixes.
48107
48108     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48109
48110 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
48111 Author: Kim Phillips <kim.phillips@freescale.com>
48112 Date:   Thu Aug 16 22:52:59 2007 -0500
48113
48114     mpc83xx: suppress unused variable 'val8' warning
48115
48116     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48117
48118 commit bbea46f76f767b919070b4829bf34c86bd223248
48119 Author: Kim Phillips <kim.phillips@freescale.com>
48120 Date:   Thu Aug 16 22:52:48 2007 -0500
48121
48122     mpc83xx: implement board_add_ram_info
48123
48124     add board_add_ram_info, to make memory diagnostic output more
48125     consistent. u-boot banner output now looks like:
48126
48127     DRAM:  256 MB (DDR1, 64-bit, ECC on)
48128
48129     and for boards with SDRAM on the local bus, a line such as this is
48130     added:
48131
48132     SDRAM: 64 MB (local bus)
48133
48134     also replaced some magic numbers with their equivalent define names.
48135
48136     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48137
48138 commit 14778585d1389d86d5846efec29e5fce892680ce
48139 Author: Tony Li <tony.li@freescale.com>
48140 Date:   Fri Aug 17 10:35:59 2007 +0800
48141
48142     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
48143
48144     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
48145     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
48146
48147     Signed-off-by Tony Li <tony.li@freescale.com>
48148
48149 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
48150 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48151 Date:   Thu Aug 16 15:05:11 2007 -0500
48152
48153     ColdFire: Add M54455EVB for MCF5445x
48154
48155     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48156
48157 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
48158 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48159 Date:   Thu Aug 16 13:20:50 2007 -0500
48160
48161     ColdFire: Add M5253EVBE platform for MCF52x2
48162
48163     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48164
48165 commit a605aacd8324094199402816cc6d9124aba57b8d
48166 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48167 Date:   Thu Aug 16 05:04:31 2007 -0500
48168
48169     ColdFire: Add M5249EVB platform for MCF52x2
48170
48171     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48172
48173 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
48174 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48175 Date:   Wed Aug 15 20:32:06 2007 -0500
48176
48177     ColdFire: Update Freescale MCF52x2 platforms
48178
48179     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48180
48181 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
48182 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48183 Date:   Wed Aug 15 19:55:10 2007 -0500
48184
48185     ColdFire: Update EB+MCF-EV123 platform
48186
48187     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48188
48189 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
48190 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48191 Date:   Wed Aug 15 19:46:38 2007 -0500
48192
48193     ColdFire: update TASREG platform for MCF52x2
48194
48195     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48196
48197 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
48198 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48199 Date:   Wed Aug 15 19:45:51 2007 -0500
48200
48201     ColdFire: update r5200 platform for MCF52x2
48202
48203     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48204
48205 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
48206 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48207 Date:   Wed Aug 15 19:43:20 2007 -0500
48208
48209     ColdFire: idmr platform MCF52x2 update
48210
48211     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48212
48213 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
48214 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48215 Date:   Wed Aug 15 19:41:06 2007 -0500
48216
48217     ColdFire: cobra5272 platform for MCF52x2 update
48218
48219     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48220
48221 commit 56115665b4a64c10c01440c57749b265e0908fa4
48222 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48223 Date:   Wed Aug 15 19:38:15 2007 -0500
48224
48225     ColdFire: MCF52x2 Header files update
48226
48227     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48228
48229 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
48230 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48231 Date:   Wed Aug 15 19:21:21 2007 -0500
48232
48233     ColdFire: MCF52x2 update
48234
48235     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48236
48237 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
48238 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48239 Date:   Wed Aug 15 18:46:11 2007 -0500
48240
48241     ColdFire: MCF5329 update cache
48242
48243     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48244
48245 commit 7171977fb8fd77cfb6676953fa9a05789c450513
48246 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48247 Date:   Wed Aug 15 15:40:20 2007 -0500
48248
48249     ColdFire: MCF5329 header file clean up
48250
48251     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48252
48253 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
48254 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48255 Date:   Wed Aug 15 15:39:17 2007 -0500
48256
48257     ColdFire: MCF5329 Update and cleanup
48258
48259     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
48260
48261 commit 10327dc5541f947c0cf7e31fef86c4706169607a
48262 Author: Andy Fleming <afleming@freescale.com>
48263 Date:   Thu Aug 16 16:35:02 2007 -0500
48264
48265     Add CONFIG_HAS_ETH0 to all boards with TSEC
48266
48267     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
48268     to update TSEC1's device-tree node, so we need to add it
48269     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
48270     since they will eventually do something similar.
48271
48272     Signed-off-by: Andy Fleming <afleming@freescale.com>
48273
48274 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
48275 Author: Kumar Gala <galak@kernel.crashing.org>
48276 Date:   Thu Aug 16 15:05:04 2007 -0500
48277
48278     Update MPC8544 DS PCI memory map
48279
48280     The PCIe bus that the ULI M1575 is connected to has no possible way of
48281     needing more than the fixed amount of IO & Memory space needed by the ULI.
48282
48283     So make it use far less IO & memory space and have it use the shared LAW.  This
48284     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
48285     by each bus.
48286
48287     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48288
48289 commit ea5877e31ed63ade948fd1293895ec23fe01472e
48290 Author: Kumar Gala <galak@kernel.crashing.org>
48291 Date:   Thu Aug 16 11:01:21 2007 -0500
48292
48293     Fix up some fdt issues on 8544DS
48294
48295     It looks like we had a merge issue that duplicated a bit of code
48296     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
48297     the MAC address properly set in the device tree on boot for TSEC1
48298
48299     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48300
48301 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
48302 Author: Niklaus Giger <niklaus.giger@netstal.com>
48303 Date:   Thu Aug 16 15:16:03 2007 +0200
48304
48305     PPC4xx:HCU4/5 cleanup
48306
48307     Minor cleanups to confirm to the u-boot coding style.
48308     Some german expressions -> english.
48309     HCU5 enforces a unique IP adress for a given slot in the rack.
48310
48311     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48312
48313 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
48314 Author: Niklaus Giger <niklaus.giger@netstal.com>
48315 Date:   Thu Aug 16 15:16:02 2007 +0200
48316
48317     PPC4xx:HCU4/5 cleanup ecc/sdram init
48318
48319     Make ecc initialisation robust, as DDR2-ECC errors may be generated
48320     while zeroing the RAM.
48321
48322     Return 16 bytes (a cacheline) less than the available memory, as the
48323     board and/or PPC440EPx might have problems accessing the last bytes.
48324
48325     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48326
48327 commit d35b508a55508535b6e8445b718585d27df733d3
48328 Author: Kim Phillips <kim.phillips@freescale.com>
48329 Date:   Wed Aug 15 22:29:56 2007 -0500
48330
48331     fdt: suppress unused variable 'bd' warning
48332
48333     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48334
48335 commit 82bd9ee77490588d4da785d75829ca63d0176baf
48336 Author: Andy Fleming <afleming@freescale.com>
48337 Date:   Wed Aug 15 20:06:50 2007 -0500
48338
48339     Fix warnings from of_data copy fix
48340
48341     Forgot to cast of_flat_tree to ulong.
48342
48343     Signed-off-by: Andy Fleming <afleming@freescale.com>
48344
48345 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
48346 Author: Andy Fleming <afleming@freescale.com>
48347 Date:   Wed Aug 15 20:03:44 2007 -0500
48348
48349     Don't wait for disconnected TSECs
48350
48351     The TSEC driver's PHY code waits a long time for autonegotiation to
48352     complete, even if the link is down.  The PHY knows the link is
48353     down or up before autonegotiation completes, so we can short-circuit
48354     the process if the link is down.
48355
48356     Signed-off-by: Andy Fleming <afleming@freescale.com>
48357
48358 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
48359 Author: Andy Fleming <afleming@freescale.com>
48360 Date:   Wed Aug 15 20:03:34 2007 -0500
48361
48362     Fix numerous bugs in the 8568 UEC support
48363
48364     Actually, fixed a large bug in the UEC for *all* platforms.
48365     How did this ever work?
48366
48367     uec_init() did not follow the spec for eth_init(), and returned
48368     0 on success.  Switch it to return the link like tsec_init()
48369     (and 0 on error)
48370
48371     The immap for the 8568 was defined based on MPC8568, rather than
48372     CONFIG_MPC8568
48373
48374     CONFIG_QE was off
48375
48376     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
48377
48378     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
48379     enabled
48380
48381     Signed-off-by: Andy Fleming <afleming@freescale.com>
48382
48383 commit 3a79013e2adda53332dfd0b511066a805e929a9d
48384 Author: Andy Fleming <afleming@freescale.com>
48385 Date:   Wed Aug 15 20:03:25 2007 -0500
48386
48387     Define tsec flag values in config files
48388
48389     The tsec_info structure and array has a "flags" field for each
48390     ethernet controller.  This field is the only reason there are
48391     settings.  Switch to defining TSECn_FLAGS for each controller
48392     in the config header, and we can greatly simplify the array, and
48393     also simplify the addition of future boards.
48394
48395     Signed-off-by: Andy Fleming <afleming@freescale.com>
48396
48397 commit ec7238229507e7f47533a611ea8c53319d234cf3
48398 Author: Andy Fleming <afleming@freescale.com>
48399 Date:   Wed Aug 15 20:03:13 2007 -0500
48400
48401     Add support for building all boards with a TSEC
48402
48403     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
48404     Now we can do a MAKEALL test on all of them!
48405
48406     Signed-off-by: Andy Fleming <afleming@freescale.com>
48407
48408 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
48409 Author: Andy Fleming <afleming@freescale.com>
48410 Date:   Wed Aug 15 17:30:56 2007 -0500
48411
48412     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
48413
48414     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
48415     neglected to *also* put the code inside the similar #ifdef
48416     for CONFIG_OF_FLAT_TREE.
48417
48418     Signed-off-by: Andy Fleming <afleming@freescale.com>
48419
48420 commit 78f9fef7f406078c8bf7191e665a73f795157746
48421 Author: Scott Wood <scottwood@freescale.com>
48422 Date:   Wed Aug 15 15:46:46 2007 -0500
48423
48424     mpc885ads: Don't define CONFIG_BZIP2.
48425
48426     bzip2 requires a significant chunk of malloc space, and there isn't
48427     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
48428     and a downloaded image at 0x400000.
48429
48430     Signed-off-by: Scott Wood <scottwood@freescale.com>
48431
48432 commit 002275a3ed8b114885f6702d6d544d0780dfe689
48433 Author: Michal Simek <Monstr@seznam.cz>
48434 Date:   Thu Aug 16 08:54:10 2007 +0200
48435
48436     Bios emulator - fix microblaze toolchain problem
48437
48438     microblaze CPU have problem with bios_emulator code.
48439     Microblaze toolchain doesn't support PRAGMA PACK.
48440
48441     Signed-off-by: Michal Simek <monstr@monstr.eu>
48442
48443 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
48444 Author: Wolfgang Denk <wd@denx.de>
48445 Date:   Thu Aug 16 11:51:04 2007 +0200
48446
48447     Minor Coding Style fix; Update CHANGELOG file.
48448
48449     Signed-off-by: Wolfgang Denk <wd@denx.de>
48450
48451 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
48452 Author: Stefan Roese <sr@denx.de>
48453 Date:   Thu Aug 16 11:21:49 2007 +0200
48454
48455     ppc4xx: Remove #warning in esd auto_update.c
48456
48457     Signed-off-by: Stefan Roese <sr@denx.de>
48458
48459 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
48460 Author: Stefan Roese <sr@denx.de>
48461 Date:   Fri Jun 22 17:32:28 2007 +0200
48462
48463     ppc7xx: Update CPCI750 board
48464
48465     This small CPCI750 update extends the board specific command
48466     "show_config" to display the Marvell strapping registers and
48467     extends the PCI IDE controller.
48468
48469     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
48470     Signed-off-by: Stefan Roese <sr@denx.de>
48471
48472 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
48473 Author: Michal Simek <monstr@monstr.eu>
48474 Date:   Thu Aug 16 10:46:28 2007 +0200
48475
48476     [FIX] Changes for bios_emulator code for others architecture
48477
48478 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
48479 Author: Michal Simek <monstr@monstr.eu>
48480 Date:   Thu Aug 16 10:45:09 2007 +0200
48481
48482     [FIX] Remove unused include file
48483
48484 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
48485 Author: Stefan Roese <sr@denx.de>
48486 Date:   Thu Aug 16 10:18:33 2007 +0200
48487
48488     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
48489
48490     Signed-off-by: Stefan Roese <sr@denx.de>
48491
48492 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
48493 Author: Stefan Roese <sr@denx.de>
48494 Date:   Thu Aug 16 09:54:51 2007 +0200
48495
48496     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
48497
48498     Signed-off-by: Stefan Roese <sr@denx.de>
48499
48500 commit 02ba7022f62bb75908296c58c63866e1d294b69a
48501 Author: Stefan Roese <sr@denx.de>
48502 Date:   Thu Aug 16 09:52:29 2007 +0200
48503
48504     ppc4xx: Update Sequoia/Rainier bootstrap command
48505
48506     As suggested by David Mitchell, here an update for the Sequoia/Rainier
48507     bootstrap command.
48508
48509     Signed-off-by: Stefan Roese <sr@denx.de>
48510
48511 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
48512 Author: Kim Phillips <kim.phillips@freescale.com>
48513 Date:   Wed Aug 15 22:30:39 2007 -0500
48514
48515     mpc83xx: enable libfdt by default on freescale boards
48516
48517     this enables libfdt code by default for the
48518     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
48519     mpc8349itx and gp boards.
48520
48521     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48522
48523 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
48524 Author: Kim Phillips <kim.phillips@freescale.com>
48525 Date:   Wed Aug 15 22:30:33 2007 -0500
48526
48527     mpc83xx: migrate remaining freescale boards to libfdt
48528
48529     this adds libfdt support code for the freescale
48530     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
48531     and gp boards.
48532
48533     Boards remain compatible with OF_FLAT_TREE.
48534
48535     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48536
48537 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
48538 Author: Kim Phillips <kim.phillips@freescale.com>
48539 Date:   Wed Aug 15 22:30:26 2007 -0500
48540
48541     mpc83xx: move common /memory node update mechanism to cpu.c
48542
48543     also adds common prototypes to include/common.h.
48544
48545     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48546
48547 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
48548 Author: Kim Phillips <kim.phillips@freescale.com>
48549 Date:   Wed Aug 15 22:30:19 2007 -0500
48550
48551     mpc83xx: remaining 8360 libfdt fixes
48552
48553     PCI clocks and QE frequencies weren't being updated, and the core clock
48554     was being updated incorrectly.  This patch also adds a /memory node if
48555     it doesn't already exist prior to update.
48556
48557     plus some cosmetic trimming to single line comments.
48558
48559     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48560
48561 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
48562 Author: Kim Phillips <kim.phillips@freescale.com>
48563 Date:   Wed Aug 15 22:30:12 2007 -0500
48564
48565     mpc83xx: fix UEC2->1 typo in libfdt setup code
48566
48567     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48568
48569 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
48570 Author: Kim Phillips <kim.phillips@freescale.com>
48571 Date:   Wed Aug 15 22:30:05 2007 -0500
48572
48573     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
48574
48575     and reorder the existing 83xx maintainers alpha.
48576
48577     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48578
48579 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
48580 Author: Michal Simek <monstr@monstr.eu>
48581 Date:   Wed Aug 15 21:15:05 2007 +0200
48582
48583     [FIX] Resolve problem with warnings
48584     microblaze toolchain don't support PRAGMA PACK.
48585
48586 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
48587 Author: Michal Simek <monstr@monstr.eu>
48588 Date:   Wed Aug 15 21:05:07 2007 +0200
48589
48590     [FIX] Correction command setting for Microblaze boards
48591
48592 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
48593 Author: Michal Simek <monstr@monstr.eu>
48594 Date:   Wed Aug 15 21:03:41 2007 +0200
48595
48596     [FIX] Correction command definition
48597
48598 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
48599 Author: Jon Loeliger <jdl@freescale.com>
48600 Date:   Wed Aug 15 11:55:35 2007 -0500
48601
48602     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
48603
48604     Remove a leftover in net/tftp.c while we're at it.
48605
48606     Signed-off-by: Jon Loeliger <jdl@freescale.com>
48607
48608 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
48609 Author: Jon Loeliger <jdl@freescale.com>
48610 Date:   Wed Aug 15 12:20:40 2007 -0500
48611
48612     Move the MPC8641HPCN board under board/freescale.
48613
48614     Minor path corrections needed to ensure buildability.
48615
48616     Signed-off-by: Jon Loeliger <jdl@freescale.com>
48617
48618 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
48619 Author: Jon Loeliger <jdl@freescale.com>
48620 Date:   Wed Aug 15 11:46:22 2007 -0500
48621
48622     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
48623
48624     Remove a leftover in net/tftp.c while we're at it.
48625
48626     Signed-off-by: Jon Loeliger <jdl@freescale.com>
48627
48628 commit 210f463c71917b7a4495c2103c228b9c179ae64d
48629 Author: Jerry Van Baren <gvb.uboot@gmail.com>
48630 Date:   Wed Aug 15 11:13:15 2007 -0400
48631
48632     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
48633
48634     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
48635     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
48636     when it should have gone inside of the conditional.  As a result, it
48637     broke non-LIBFDT board builds.
48638
48639     Also added a missing "not." to the comment.
48640
48641     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
48642
48643 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
48644 Author: Niklaus Giger <niklaus.giger@netstal.com>
48645 Date:   Wed Aug 15 12:14:23 2007 +0200
48646
48647     PPC4xx:HCU4/5-Board fix compile warning
48648
48649     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
48650
48651 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
48652 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48653 Date:   Tue Aug 14 14:06:45 2007 -0500
48654
48655     Fix malloc size error in ahci_init_one.
48656
48657     Typically this causes scsi init to corrupt the
48658     devlist and break the coninfo command.
48659     Fix a compiler size warning.
48660
48661     Signed-off-by: Jason Jin <jason.jin@freescale.com>
48662     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48663     Acked-by: Andy Fleming <afleming@freescale.com>
48664
48665 commit b361acd64fd2525c081b9b288b0804efe209c0e9
48666 Author: ksi@koi8.net <ksi@koi8.net>
48667 Date:   Tue Aug 14 10:02:16 2007 -0700
48668
48669     TI DaVinci - fix unsupported %hhx format
48670
48671     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
48672
48673 commit f01dbb5424a81453c81190dd30e945891466f621
48674 Author: Wolfgang Denk <wd@denx.de>
48675 Date:   Tue Aug 14 18:42:36 2007 +0200
48676
48677     Coding style cleanup. Update CHANGELOG.
48678
48679     Signed-off-by: Wolfgang Denk <wd@denx.de>
48680
48681 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
48682 Author: Andy Fleming <afleming@freescale.com>
48683 Date:   Tue Aug 14 10:32:59 2007 -0500
48684
48685     Fix initrd/dtb interaction
48686
48687     The original code would wrongly relocate the blob to be right before
48688     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
48689     if it is defined.  So we make two changes:
48690
48691     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
48692
48693     2) If the blob is being relocated, relocate it before kbd, not initrd
48694
48695     Signed-off-by: Andy Fleming <afleming@freescale.com>
48696
48697 commit e54b970173769307a116bd34028b6d0c2eea2a4e
48698 Author: Peter Pearse <peter.pearse@arm.com>
48699 Date:   Tue Aug 14 15:40:00 2007 +0100
48700
48701     Supply spi interface in at45.c
48702
48703 commit 4ce846ec59f36b85d6644a769690ad3feb667575
48704 Author: Stefan Roese <sr@denx.de>
48705 Date:   Tue Aug 14 15:12:01 2007 +0200
48706
48707     POST: Fix merge problem
48708
48709     Signed-off-by: Stefan Roese <sr@denx.de>
48710
48711 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
48712 Author: Stefan Roese <sr@denx.de>
48713 Date:   Tue Aug 14 15:03:17 2007 +0200
48714
48715     Coding style cleanup
48716
48717     Signed-off-by: Stefan Roese <sr@denx.de>
48718
48719 commit 779e975117a75e91fcebe226a63104dbfb924ab1
48720 Author: Stefan Roese <sr@denx.de>
48721 Date:   Tue Aug 14 14:44:41 2007 +0200
48722
48723     ppc4xx: Add initial Zeus (PPC405EP) board support
48724
48725     Signed-off-by: Stefan Roese <sr@denx.de>
48726
48727 commit c5a172a5fd636c12467429e3f7910e53773979c6
48728 Author: Stefan Roese <sr@denx.de>
48729 Date:   Tue Aug 14 14:41:55 2007 +0200
48730
48731     POST: Add option for external ethernet loopback test
48732
48733     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
48734     is not done using an internal loopback connection, but by assuming
48735     that an external loopback connector is plugged into the board.
48736
48737     Signed-off-by: Stefan Roese <sr@denx.de>
48738
48739 commit eb2b4010ae426245172988804ee8d9193fb41038
48740 Author: Stefan Roese <sr@denx.de>
48741 Date:   Tue Aug 14 14:39:44 2007 +0200
48742
48743     POST: Add ppc405 support to cache and UART POST
48744
48745     Signed-off-by: Stefan Roese <sr@denx.de>
48746
48747 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
48748 Author: Peter Pearse <peter.pearse@arm.com>
48749 Date:   Tue Aug 14 10:46:32 2007 +0100
48750
48751     Replace lost end of at45.c.
48752
48753 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
48754 Author: Peter Pearse <peter.pearse@arm.com>
48755 Date:   Tue Aug 14 10:30:06 2007 +0100
48756
48757     Update Makefiles for merged and split at45.c.
48758
48759 commit 3454cece2db57cb9eb7087995f7e73066a163f71
48760 Author: Peter Pearse <peter.pearse@arm.com>
48761 Date:   Tue Aug 14 10:21:06 2007 +0100
48762
48763     Delete the merged files.
48764
48765 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
48766 Author: Peter Pearse <peter.pearse@arm.com>
48767 Date:   Tue Aug 14 10:14:05 2007 +0100
48768
48769     Add the files.
48770
48771 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
48772 Author: Peter Pearse <peter.pearse@arm.com>
48773 Date:   Tue Aug 14 10:10:52 2007 +0100
48774
48775     Add MACH_TYPE records for several AT91 boards.
48776     Merge to two at45.c files into a common file, split to at45.c and spi.c
48777     Fix spelling error in DM9161 PHY Support.
48778     Initialize at91rm9200 board (and set LED).
48779     Add PIO control for at91rm9200dk LEDs and Mux.
48780     Change dataflash partition boundaries to be compatible with Linux 2.6.
48781
48782     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
48783     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
48784
48785 commit 4ef35e53c693556c54b0c22d6f873de87bade253
48786 Author: Wolfgang Denk <wd@denx.de>
48787 Date:   Tue Aug 14 09:54:46 2007 +0200
48788
48789     Coding style cleanup, update CHANGELOG
48790
48791     Signed-off-by: Wolfgang Denk <wd@denx.de>
48792
48793 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
48794 Author: Wolfgang Denk <wd@denx.de>
48795 Date:   Tue Aug 14 09:47:27 2007 +0200
48796
48797     Coding style cleanup; rebuild CHANGELOG
48798
48799 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
48800 Author: Randy Vinson <rvinson@linuxbox.(none)>
48801 Date:   Tue Feb 27 19:42:22 2007 -0700
48802
48803     85xxCDS: Add make targets for legacy systems.
48804
48805     The PCI ID select values on the Arcadia main board differ depending
48806     on the version of the hardware. The standard configuration supports
48807     Rev 3.1. The legacy target supports Rev 2.x.
48808
48809     Signed-off-by Randy Vinson <rvinson@mvista.com>
48810
48811 commit e41094c7e38177c755fbd9b182018069614f080d
48812 Author: Andy Fleming <afleming@freescale.com>
48813 Date:   Tue Aug 14 01:50:09 2007 -0500
48814
48815     85xxCDS: Enable the VIA PCI-to-ISA bridge.
48816
48817     Author: Randy Vinson <rvinson@linuxbox.(none)>
48818
48819     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
48820     Arcadia main board.
48821
48822     Signed-off-by: Randy Vinson <rvinson@mvista.com>
48823     Signed-off-by: York Sun <yorksun@freescale.com>
48824
48825 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
48826 Author: Andy Fleming <afleming@freescale.com>
48827 Date:   Tue Aug 14 00:14:25 2007 -0500
48828
48829     Add support for UEC to 8568
48830
48831     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
48832     Signed-off-by: Andy Fleming <afleming@freescale.com>
48833
48834 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
48835 Author: Haiying Wang <Haiying.Wang@freescale.com>
48836 Date:   Tue Jun 19 14:18:34 2007 -0400
48837
48838     Add PCI support for MPC8568MDS board
48839
48840     This patch is against u-boot-mpc85xx.git of www.denx.com
48841
48842     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
48843     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
48844
48845 commit d111d6382c99fdea08c2312eeeae8786945e189a
48846 Author: Haiying Wang <Haiying.Wang@freescale.com>
48847 Date:   Tue Jun 19 14:18:32 2007 -0400
48848
48849     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
48850
48851     This patch is against u-boot-mpc85xx.git of www.denx.com
48852
48853     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
48854     both MPC8548CDS board and MPC8568MDS board, especially for supporting
48855     533MHz DDR2.
48856
48857     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
48858     DDR2 on all current board versions especially ver 1.92 or later to bring
48859     up.
48860
48861     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
48862
48863 commit 3db0bef59eab1155801618cef5c481e97553b597
48864 Author: Kumar Gala <galak@kernel.crashing.org>
48865 Date:   Tue Aug 7 18:07:27 2007 -0500
48866
48867     Use an absolute address when jumping out of 4k boot page
48868
48869     On e500 when we leave the 4k boot page we should use an absolute address since
48870     we don't know where the board code may want us to be really running at.
48871
48872     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48873
48874 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
48875 Author: Andy Fleming <afleming@freescale.com>
48876 Date:   Mon Aug 13 14:49:59 2007 -0500
48877
48878     MPC85xx BA bits not set for 3-bit bank address DIMM
48879
48880     The current implementation does not set the number of bank address bits
48881     (BA) in the processor. The default assumes 2 logical bank bits. This
48882     works fine for a DIMM that uses devices with 4 internal banks (SPD
48883     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
48884     devices with 8 internal banks (SPD byte17 = 0x8).
48885
48886     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
48887
48888 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
48889 Author: Andy Fleming <afleming@freescale.com>
48890 Date:   Mon Aug 13 14:38:06 2007 -0500
48891
48892     Fix minor 85xx warnings
48893
48894     Some patches had inserted warnings into the build:
48895     * mpc8560ads declared data without using it
48896     * cpu_init declared ecm and immap without using it in all CONFIGs
48897     * MPC8548CDS.h had its default filenames changed so that they contained
48898       "\m" in the paths.  Made the defaults not Windows-specific (or
48899       anything-specific)
48900
48901     Signed-off-by: Andy Fleming <afleming@freescale.com>
48902
48903 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
48904 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48905 Date:   Fri Jul 27 01:50:52 2007 -0500
48906
48907     8548cds PCIE support.
48908
48909     Make the early L1 cache stack region guarded to prevent speculative
48910     fetches outside the locked range.
48911
48912     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
48913     init.S whitespace cleanup.
48914
48915     Allow TEXT_BASE value to be specified on command line.  This allows it
48916     to be set to 0xfffc0000 which cuts the uboot binary in half.
48917
48918     Clear and enable lbc and ecm errors.
48919
48920     Update last_busno in device-tree for pci and pcie.
48921
48922     Remove load of obsolete cpu/mpc85xx/pci.0
48923
48924     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48925     Acked-by: Andy Fleming <afleming@freescale.com>
48926
48927 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
48928 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48929 Date:   Fri Jul 27 01:50:51 2007 -0500
48930
48931     8544ds PCIE support
48932
48933     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
48934
48935     Enable LBC and ECM errors and clear error registers.
48936
48937     Add tftpflash env var to get uboot from tftp server and flash it.
48938
48939     Add pci/pcie convenience env vars to display register space:
48940       "run pcie3regs" to see all pcie3 ccsr registers
48941       "run pcie3cfg" to see all cfg registers
48942     Whitespace cleanup and MPC8544DS.h
48943
48944     Enable CONFIG_INTERRUPTS.
48945
48946     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48947     Acked-by: Andy Fleming <afleming@freescale.com>
48948
48949 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
48950 Author: Andy Fleming <afleming@freescale.com>
48951 Date:   Tue Aug 14 01:34:21 2007 -0500
48952
48953     85xx start.S cleanup and exception support
48954
48955     From: Ed Swarthout <Ed.Swarthout@freescale.com>
48956
48957     Support external interrupts from platform to eliminate system hangs.
48958     Define CONFIG_INTERRUPTS board configure option to enable.
48959     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
48960
48961     Remove extra cpu initialization redundant with hardware initialization.
48962     Whitespace cleanup.
48963
48964     Define and use _START_OFFSET consistent with other processors using
48965     ppc_asm.tmpl
48966
48967     Move additional code from .text to boot page to make room for
48968     exception vectors at start of image.
48969
48970     Handle Machine Check, External and Critical exceptions.
48971
48972     Fix e500 machine check error determination in traps.c
48973
48974     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
48975
48976     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48977     Acked-by: Andy Fleming <afleming@freescale.com>
48978
48979 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
48980 Author: Andy Fleming <afleming@freescale.com>
48981 Date:   Tue Aug 14 01:33:18 2007 -0500
48982
48983     Add MPC8544DS README
48984
48985     Signed-off-by: Andy Fleming <afleming@freescale.com>
48986
48987 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
48988 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48989 Date:   Fri Jul 27 01:50:48 2007 -0500
48990
48991     85xx allow debugger to configure ddr.
48992
48993     Only check for mpc8548 rev 1 when compiled for 8548.
48994
48995     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48996     Acked-by: Andy Fleming <afleming@freescale.com>
48997
48998 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
48999 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49000 Date:   Fri Jul 27 01:50:47 2007 -0500
49001
49002     mpc85xx L2 cache reporting and SRAM relocation option.
49003
49004     Allow debugger to override flash cs0/cs1 settings to enable alternate
49005     boot regions
49006
49007     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49008     Acked-by: Andy Fleming <afleming@freescale.com>
49009
49010 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
49011 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49012 Date:   Fri Jul 27 01:50:46 2007 -0500
49013
49014     e500 needs ppc_asm.tmp MCK_EXCEPTION
49015
49016     Always define MCK_EXCEPTION macro - so e500 can use it too.
49017
49018     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49019     Acked-by: Andy Fleming <afleming@freescale.com>
49020
49021 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
49022 Author: David Updegraff <dave@cray.com>
49023 Date:   Mon Jun 11 10:41:07 2007 -0500
49024
49025     multicast tftp: RFC2090
49026
49027     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
49028     on Realtek RTL8139 and Freescale TSEC.
49029
49030     Signed-off-by: David Updegraff <dave@cray.com>
49031     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49032
49033 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
49034 Author: Wilson Callan <wcallan@savantav.com>
49035 Date:   Sat Jul 28 10:56:13 2007 -0400
49036
49037     New CONFIG_BOOTP_SERVERIP option
49038
49039     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
49040     from the bootp server
49041
49042     Signed-off-by: Wilson Callan <wcallan@savantav.com>
49043     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49044
49045 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
49046 Author: Mike Rapoport <mike@compulab.co.il>
49047 Date:   Sun Aug 12 08:48:27 2007 +0300
49048
49049     Add ability to take MAC address from the environment to DM9000 driver
49050
49051     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
49052     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49053
49054 commit be5d72d10d47609326226225181e301fb9a33b58
49055 Author: Wolfgang Denk <wd@denx.de>
49056 Date:   Mon Aug 13 21:57:53 2007 +0200
49057
49058     Minor coding style cleanup. Update CHANGELOG.
49059
49060     Signed-off-by: Wolfgang Denk <wd@denx.de>
49061
49062 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
49063 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49064 Date:   Sat Aug 11 06:54:58 2007 -0500
49065
49066     Modify SBC8641D to use new Freescale PCI routines
49067
49068     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
49069     adapter.
49070
49071     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49072     Signde-off-by: Jon Loeliger <jdl@freescale.com>
49073
49074 commit a08458303e7f9db67f296980036d3292c35cb45c
49075 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49076 Date:   Fri Jun 29 18:38:51 2007 +0200
49077
49078     atmel_mci: Fix data timeout value
49079
49080     Calculate the data timeout based on values from the CSD instead of
49081     just using a hardcoded DTOR value. This is a backport of a similar fix
49082     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
49083     instead of down.
49084
49085     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49086
49087 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
49088 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49089 Date:   Mon Aug 13 17:22:31 2007 +0200
49090
49091     AVR32: Include <div64.h> instead of <asm/div64.h>
49092
49093     include/asm-avr32/div64.h was recently moved to include/div64.h, but
49094     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
49095     the patch was merged perhaps?)
49096
49097     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
49098     compiles again.
49099
49100     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49101
49102 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
49103 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49104 Date:   Wed Jun 27 13:34:26 2007 +0200
49105
49106     atmel_mci: Use 512 byte blocksize if possible
49107
49108     Instead of always using the largest blocksize the card supports, check
49109     if it can support smaller block sizes and use 512 bytes if possible.
49110     Most cards do support this, and other parts of u-boot seem to have
49111     trouble with block sizes different from 512 bytes.
49112
49113     Also enable underrun/overrun protection.
49114
49115     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49116     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
49117
49118 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
49119 Author: Stefan Roese <sr@denx.de>
49120 Date:   Mon Aug 13 09:05:33 2007 +0200
49121
49122     ppc4xx: Fix problem in PLL clock calculation
49123
49124     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
49125     and fixes a bug in the PLL clock calculation.
49126
49127     Signed-off-by: Stefan Roese <sr@denx.de>
49128
49129 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
49130 Author: Wolfgang Denk <wd@denx.de>
49131 Date:   Sun Aug 12 21:34:50 2007 +0200
49132
49133     Update CHANGELOG
49134
49135 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
49136 Author: Wolfgang Denk <wd@denx.de>
49137 Date:   Sun Aug 12 21:34:34 2007 +0200
49138
49139     Minor alignment of output, 2nd try.
49140     Also update CHANGELOG
49141
49142     Signed-off-by: Wolfgang Denk <wd@denx.de>
49143
49144 commit 6b309f22a724fad8418e811751a0741b893419cf
49145 Author: Wolfgang Denk <wd@denx.de>
49146 Date:   Sun Aug 12 20:35:49 2007 +0200
49147
49148     Minor alignment of output
49149
49150     Signed-off-by: Wolfgang Denk <wd@denx.de>
49151
49152 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
49153 Author: Wolfgang Denk <wd@denx.de>
49154 Date:   Sun Aug 12 18:28:18 2007 +0200
49155
49156     Cleanup output on ADS5121 board
49157
49158     Signed-off-by: Wolfgang Denk
49159
49160 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
49161 Author: Wolfgang Denk <wd@denx.de>
49162 Date:   Sun Aug 12 15:11:38 2007 +0200
49163
49164     Adapt board configuration and fix kernel crash on MCC200 board.
49165
49166     The update procedure was modified to turn off the USB subsystem
49167     before exit for MCC200 and TRAB. This is necessary as otherwise the
49168     USB controller continues to write periodically to system memory!
49169
49170     MCC200-specific notes:
49171     - the patch disables the magic key check for MCC200
49172     - the patch contains the configuration changes made
49173       for the new revision of the board.
49174
49175     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
49176     Signed-off-by: Wolfgang Denk <wd@denx.de>
49177
49178 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
49179 Author: Wolfgang Denk <wd@denx.de>
49180 Date:   Sun Aug 12 14:47:54 2007 +0200
49181
49182     Adjust default configuration of ADS5121 board.
49183
49184     Signed-off-by: Wolfgang Denk <wd@denx.de>
49185
49186 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
49187 Author: Wolfgang Denk <wd@denx.de>
49188 Date:   Sun Aug 12 14:27:39 2007 +0200
49189
49190     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
49191
49192     Signed-off-by: Wolfgang Denk <wd@denx.de>
49193
49194 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
49195 Author: Gerald Van Baren <vanbaren@cideas.com>
49196 Date:   Tue Aug 7 21:14:22 2007 -0400
49197
49198     Improve error print messages.
49199
49200     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49201
49202 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
49203 Author: Kim Phillips <kim.phillips@freescale.com>
49204 Date:   Tue Jul 17 13:57:04 2007 -0500
49205
49206     fdt: allow for builds that don't want env and bd_t nodes
49207
49208     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
49209     area.
49210
49211     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49212
49213 commit 91148bf7aeba142d6f348805db7625db7da64d6f
49214 Author: Kim Phillips <kim.phillips@freescale.com>
49215 Date:   Tue Jul 17 13:56:53 2007 -0500
49216
49217     fdt: do board setup based on fdt address specified on bootm line
49218
49219     The last fdt patch to bootm did board setup based on the address
49220     specified by a prior fdt address command invocation.  The bootm
49221     code, as its call to fdt_chosen does, should use the fdt specified
49222     by the user on the bootm command.  Note this restores full
49223     functionality for the 8360's existing default boot environment
49224     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
49225     before booting a kernel).
49226
49227     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49228
49229 commit e125a2ffc209dd34794e326c7175658253beadf3
49230 Author: Gerald Van Baren <vanbaren@cideas.com>
49231 Date:   Tue Jul 10 20:40:39 2007 -0400
49232
49233     Call ft_board_setup() from the bootm command.
49234
49235     In the patch titled "Create new fdt boardsetup command..." I removed the
49236     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
49237     to add a direct call back into cmd_bootm.c
49238
49239     This fixes the oversight by adding the direct call to the bootm command.
49240
49241     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49242
49243 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
49244 Author: Gerald Van Baren <vanbaren@cideas.com>
49245 Date:   Mon Jun 25 23:25:28 2007 -0400
49246
49247     Create new fdt boardsetup command, fix bug parsing [] form of set values.
49248
49249     Previously ft_board_setup() was called by fdt_chosen() which was not
49250     really correctly structured.  This splits ft_board_setup() out by creating
49251     a new fdt boardsetup command.
49252
49253     Fix a bug when parsing fdt set command values which have the square
49254     bracket form [00 11 22 33] - the length was updated incorrectly in when
49255     parsing that form.
49256
49257     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49258
49259 commit 6f35ded9e85493595e0eb66a82b502a95326d049
49260 Author: Gerald Van Baren <vanbaren@cideas.com>
49261 Date:   Mon Jun 25 20:55:58 2007 -0400
49262
49263     Tighten up the error messages.
49264
49265     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49266
49267 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
49268 Author: Gerald Van Baren <vanbaren@cideas.com>
49269 Date:   Mon Jun 25 19:52:23 2007 -0400
49270
49271     Asthetic improvements: error messages and line lengths.
49272
49273     Tighten up the error messages, split overlength lines.
49274
49275     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49276
49277 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
49278 Author: Gerald Van Baren <vanbaren@cideas.com>
49279 Date:   Fri May 25 22:08:57 2007 -0400
49280
49281     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
49282
49283     The fdt_chosen() function was adding/seting some properties ad-hoc
49284       improperly and duplicated (poorly) what was done in ft_board_setup()
49285
49286     Clean up long lines (setting properties, printing errors).
49287
49288     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49289
49290 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
49291 Author: Gerald Van Baren <vanbaren@cideas.com>
49292 Date:   Mon May 21 23:27:16 2007 -0400
49293
49294     For fdt_find_node_by_path(), handle the root path properly.
49295
49296     Also removes the special case root path detection in cmd_fdt.c since it
49297     is no longer necessary.
49298
49299     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49300
49301 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
49302 Author: Gerald Van Baren <vanbaren@cideas.com>
49303 Date:   Thu May 17 23:54:36 2007 -0400
49304
49305     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
49306
49307     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
49308     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
49309
49310 commit 1a861169bc3758f9de3aead62b058736c6891246
49311 Author: Gerald Van Baren <vanbaren@cideas.com>
49312 Date:   Wed Jun 6 22:47:58 2007 -0400
49313
49314     Replace fdt_node_offset() with fdt_find_node_by_path().
49315
49316     The new name matches more closely the kernel's name, which is also
49317     a much better description.
49318
49319     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
49320     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
49321
49322 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
49323 Author: Gerald Van Baren <vanbaren@cideas.com>
49324 Date:   Wed May 16 22:39:59 2007 -0400
49325
49326     Fix cmd_fdt line lengths, refactor code.
49327
49328     Break lines that were greater than 80 characters in length.
49329     Move the fdt print and property parsing code to separate static functions
49330       to reduce coding clutter in the fdt_cmd handling body.
49331
49332     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49333
49334 commit 25114033ab21788810c48ba4df103b649da1223b
49335 Author: Gerald Van Baren <vanbaren@cideas.com>
49336 Date:   Sat May 12 09:47:25 2007 -0400
49337
49338     FDT command improvements.
49339
49340     Fix "fdt set" so that it will create a non-existing property.
49341     Add "fdt mknode" to create nodes.
49342
49343     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49344
49345 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
49346 Author: Gerald Van Baren <vanbaren@cideas.com>
49347 Date:   Sat May 12 09:45:46 2007 -0400
49348
49349     Reorganize and fix problems (returns) in the bootm command.
49350
49351     Do *NOT* return after the "point of no return" has been passed.
49352       If something goes wrong, the board must be reset after that point.
49353     Move the "Transferring control to Linux" debug message back to where it
49354       belongs: just before transferring control to linux.
49355
49356     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49357
49358 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
49359 Author: Gerald Van Baren <vanbaren@cideas.com>
49360 Date:   Tue May 8 21:27:35 2007 -0400
49361
49362     Fix bugs in the CONFIG_OF_LIBFDT
49363
49364     Stupid coding mistakes (identified by Timur Tabi, thanks).
49365
49366     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49367
49368 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
49369 Author: Gerald Van Baren <vanbaren@cideas.com>
49370 Date:   Wed Apr 25 22:47:15 2007 -0400
49371
49372     Improve fdt move length handling.
49373
49374     Make the length parameter optional: if not specified, do the move using
49375     the current size unchanged.
49376
49377     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49378
49379 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
49380 Author: Gerald Van Baren <vanbaren@cideas.com>
49381 Date:   Wed Apr 25 22:23:36 2007 -0400
49382
49383     Minor code clean up.
49384
49385     Declare the variable fdt properly as extern.
49386     Call the "set_fn" function pointer the "short way" without the full
49387       dereferencing syntax.
49388
49389     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49390
49391 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
49392 Author: Gerald Van Baren <vanbaren@cideas.com>
49393 Date:   Wed Apr 25 21:24:27 2007 -0400
49394
49395     Improve error messages, more informative.
49396
49397     Print more than the raw libfdt error message strings.  This is especially
49398     useful for cluing in the user when the bootm command aborts due to
49399     blob problems.
49400
49401     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49402
49403 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
49404 Author: Gerald Van Baren <vanbaren@cideas.com>
49405 Date:   Fri Apr 20 22:46:53 2007 -0400
49406
49407     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
49408
49409     This is the way u-boot reduces configured-out code.  At Wolfgang
49410     Grandegger and Wolfgang Denk's request, make libfdt conform.
49411
49412     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49413
49414 commit 923efd286411ed052d9e074f59f8986d6081061c
49415 Author: Bruce Adler <bruce.adler@ccpu.com>
49416 Date:   Fri Aug 10 14:54:47 2007 -0700
49417
49418     add image size and descriptors for Spartan 3E FPGA chips
49419
49420     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
49421
49422     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
49423
49424 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
49425 Author: Kim Phillips <kim.phillips@freescale.com>
49426 Date:   Fri Aug 10 15:34:48 2007 -0500
49427
49428     make MAKEALL more immune to merge conflicts
49429
49430     ..by placing board entries one per line, as suggested by jdl.
49431
49432     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49433
49434 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
49435 Author: Kim Phillips <kim.phillips@freescale.com>
49436 Date:   Fri Aug 10 13:28:25 2007 -0500
49437
49438     README: Remove outdated cpu type, board type, and NAME_config lists
49439
49440     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49441
49442 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
49443 Author: Dave Liu <r63238@freescale.com>
49444 Date:   Fri Aug 10 15:48:59 2007 +0800
49445
49446     mpc83xx: Suppress the warning 'burstlen'
49447
49448     suppress the warning 'burstlen' of spd_sdram.
49449
49450     Signed-off-by: Dave Liu <daveliu@freescale.com>
49451
49452 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
49453 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49454 Date:   Thu Aug 9 15:11:03 2007 -0500
49455
49456     Add support for SBC8641D. Config files.
49457
49458     Add support for Wind River's SBC8641D reference board.
49459
49460     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49461     Acked-by: Wolfgang Denk <wd@denx.de>
49462     Acked-by: Jon Loeliger <jdl@freescale.com>
49463
49464 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
49465 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49466 Date:   Thu Aug 9 15:10:53 2007 -0500
49467
49468     Add support for SBC8641D.  Board files.
49469
49470     Add support for Wind River's SBC8641D reference board.
49471
49472     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49473     Acked-by: Wolfgang Denk <wd@denx.de>
49474     Acked-by: Jon Loeliger <jdl@freescale.com>
49475
49476 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
49477 Author: Stefan Roese <sr@denx.de>
49478 Date:   Fri Aug 10 20:34:58 2007 +0200
49479
49480     Conding style cleanup
49481
49482     Signed-off-by: Stefan Roese <sr@denx.de>
49483
49484 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
49485 Author: Sergey Kubushyn <ksi@koi8.net>
49486 Date:   Fri Aug 10 20:26:18 2007 +0200
49487
49488     [ARM] TI DaVinci support, hopefully final
49489
49490     Add support for the following DaVinci boards:
49491     - DV_EVM
49492     - SCHMOOGIE
49493     - SONATA
49494
49495     Changes:
49496
49497     - Split into separate board directories
49498     - Removed changes to MTD_DEBUG (or whatever it's called)
49499     - New CONFIG_CMD party line followed
49500     - Some cosmetic fixes, cleanup etc.
49501     - Patches against the latest U-Boot tree as of now.
49502     - Fixed CONFIG_CMD_NET in net files.
49503     - Fixed CONFIG_CMD_EEPROM for schmoogie.
49504     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
49505        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
49506        but it at least compiles.
49507
49508     Here is an excerpt from session log on SCHMOOGIE...
49509
49510     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
49511
49512     DRAM:  128 MB
49513     NAND:  128 MiB
49514     In:    serial
49515     Out:   serial
49516     Err:   serial
49517     ARM Clock : 297MHz
49518     DDR Clock : 162MHz
49519     ETH PHY   : DP83848 @ 0x01
49520     U-Boot > iprobe
49521     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
49522     U-Boot > ping 192.168.253.10
49523     host 192.168.253.10 is alive
49524     U-Boot >
49525
49526     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
49527     Acked-by: Dirk Behme <dirk.behme@gmail.com>
49528     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
49529     Acked-by: Stefan Roese <sr@denx.de>
49530
49531 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
49532 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49533 Date:   Fri Jul 27 01:50:45 2007 -0500
49534
49535     fsl_pci_init cleanup.
49536
49537     Do not enable normal errors created during probe (master abort, perr,
49538     and pcie Invalid Configuration access).
49539
49540     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
49541
49542     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49543     Acked-by: Andy Fleming <afleming@freescale.com>
49544
49545 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
49546 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
49547 Date:   Fri Jul 27 01:50:44 2007 -0500
49548
49549     pciauto_setup_device bars_num fix
49550
49551     Passing bars_num=0 to pciauto_setup_device should assign no bars.
49552
49553     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49554     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49555     Acked-by: Andy Fleming <afleming@freescale.com>
49556
49557 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
49558 Author: Jon Loeliger <jdl@freescale.com>
49559 Date:   Mon Aug 6 17:39:44 2007 -0500
49560
49561     8641hpcn: Do correct sized pointer math.
49562
49563     When I rebased Ed's patch and cleaned up a few compilation
49564     problems, I apparently rebased my brain on crack first.
49565     Fix that by doing (char *) sized pointer math as needed.
49566
49567     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49568
49569 commit cfc7a7f5bb3273c9951173c788001d45118f141f
49570 Author: Jon Loeliger <jdl@freescale.com>
49571 Date:   Thu Aug 2 14:42:20 2007 -0500
49572
49573     cpu/86xx fixes.
49574
49575     Remove rev 1 fixes.
49576     Always set PICGCR_MODE.
49577     Enable machine check and provide board config option
49578     to set and handle SoC error interrupts.
49579
49580     Include MSSSR0 in error message.
49581
49582     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
49583
49584     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
49585     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49586
49587 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
49588 Author: Stefan Roese <sr@denx.de>
49589 Date:   Fri Aug 10 10:42:25 2007 +0200
49590
49591     Coding style cleanup
49592
49593     Signed-off-by: Stefan Roese <sr@denx.de>
49594
49595 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
49596 Author: Dirk Behme <dirk.behme@googlemail.com>
49597 Date:   Thu Aug 2 17:42:08 2007 +0200
49598
49599     Make use of generic 64bit division in nand_util.c
49600
49601     Use generic 64bit division in nand_util.c. This makes nand_util.c
49602     independent of any toolchain 64bit division.
49603
49604     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
49605
49606 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
49607 Author: Dirk Behme <dirk.behme@googlemail.com>
49608 Date:   Thu Aug 2 17:41:14 2007 +0200
49609
49610     Move 64bit division from avr32 to generic lib
49611
49612     Move the 64bit division from lib_avr32 to lib_generic. With this, all
49613     boards can do_div/__div64_32 if needed, not only avr one. Code is put
49614     to lib_generic, so no larger memory footprint if not used. No code
49615     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
49616
49617     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
49618
49619 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
49620 Author: Niklaus Giger <niklausgiger@gmx.ch>
49621 Date:   Fri Jul 27 11:31:22 2007 +0200
49622
49623     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
49624
49625     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49626
49627 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
49628 Author: Niklaus Giger <niklausgiger@gmx.ch>
49629 Date:   Fri Jul 27 11:30:33 2007 +0200
49630
49631     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
49632
49633     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49634
49635 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
49636 Author: Niklaus Giger <niklausgiger@gmx.ch>
49637 Date:   Fri Jul 27 11:38:26 2007 +0200
49638
49639     Add PPC4xx-HCU4 and HCU5 boards: common files
49640
49641     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49642
49643 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
49644 Author: Niklaus Giger <niklausgiger@gmx.ch>
49645 Date:   Fri Jul 27 11:28:44 2007 +0200
49646
49647     Add PPC4xx-HCU4 and HCU5 boards: make related
49648
49649     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49650
49651 commit 137fdd9f474ecb853efdace5200576308c67f18d
49652 Author: Niklaus Giger <niklausgiger@gmx.ch>
49653 Date:   Fri Jul 27 11:28:03 2007 +0200
49654
49655     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
49656
49657     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49658
49659 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
49660 Author: Niklaus Giger <niklausgiger@gmx.ch>
49661 Date:   Fri Jul 27 11:27:15 2007 +0200
49662
49663     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
49664
49665     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49666
49667 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
49668 Author: Niklaus Giger <niklausgiger@gmx.ch>
49669 Date:   Fri Jul 27 11:25:31 2007 +0200
49670
49671     Add PPC4xx-HCU4 and HCU5 boards: READMEs
49672
49673     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49674
49675 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
49676 Author: Niklaus Giger <niklausgiger@gmx.ch>
49677 Date:   Fri Jul 27 11:37:40 2007 +0200
49678
49679     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
49680
49681     This series of patches adds support for 2 boards from Netstal Maschinen.
49682
49683     The HCU4 has a PPC405Gpr and
49684     the HCU5 has a PPC440EPX.
49685
49686     The HCU4 has a somehow complicated flash setup, as the booteprom is
49687     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
49688     elegant solution.
49689
49690     The HCU5 has only a booteprom as the whole code will be downloaded from a
49691     different board which has HD, CD-ROM, etc and where all code is stored.
49692
49693     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
49694     Thanks them a lot.
49695
49696     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
49697
49698 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
49699 Author: Stefan Roese <sr@denx.de>
49700 Date:   Fri Aug 10 08:42:55 2007 +0200
49701
49702     ppc4xx: Update lwmon5 POST configuration
49703
49704     Signed-off-by: Stefan Roese <sr@denx.de>
49705
49706 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
49707 Author: Yuri Tikhonov <yur@emcraft.com>
49708 Date:   Fri Aug 10 08:25:22 2007 +0200
49709
49710     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
49711
49712     The patch adds support for UART POST on ppc44x-based boards with no
49713     external serial clocks installed.
49714
49715     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
49716     Acked-by: Stefan Roese <sr@denx.de>
49717
49718 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
49719 Author: Kim Phillips <kim.phillips@freescale.com>
49720 Date:   Mon Aug 6 18:18:34 2007 -0500
49721
49722     mpc83xx: fix ITX[GP] O=builddir builds
49723
49724     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
49725
49726     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
49727     "BUILD_DIR=<some dir> ./MAKEALL ..."
49728
49729     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49730
49731 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
49732 Author: Dave Liu <r63238@freescale.com>
49733 Date:   Wed Aug 1 15:00:59 2007 +0800
49734
49735     mpc83xx: Correct the README for DDR ECC
49736
49737     Update the README for DDR ECC, change the name
49738     to README.mpc83xx.ddrecc.
49739
49740     Signed-off-by: Dave Liu <daveliu@freescale.com>
49741     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49742
49743 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
49744 Author: Dave Liu <r63238@freescale.com>
49745 Date:   Wed Aug 1 15:00:15 2007 +0800
49746
49747     mpc83xx: Consolidate the ECC support of 83xx
49748
49749     Remove the duplicated source code of ecc command on the <board>.c,
49750     for reused, move these code to cpu/mpc83xx directory.
49751
49752     Signed-off-by: Dave Liu <daveliu@freescale.com>
49753     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49754
49755 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
49756 Author: Dave Liu <r63238@freescale.com>
49757 Date:   Sat Aug 4 13:37:39 2007 +0800
49758
49759     mpc83xx: Correct the burst length for DDR2 with 32 bits
49760
49761     The burst length should be 4 for DDR2 with 32 bits bus
49762
49763     Signed-off-by: Dave Liu <daveliu@freescale.com>
49764
49765 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
49766 Author: Kim Phillips <kim.phillips@freescale.com>
49767 Date:   Wed Jul 25 19:25:33 2007 -0500
49768
49769     mpc83xx: add support for the MPC8323E RDB
49770
49771     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
49772     five 10/100 ethernet ports connected via an ICPlus IP175C
49773     switch, one PCI slot, and serial.  Features not supported
49774     in this patch are SD card interface, 2 USB ports, and the
49775     two phone ports.
49776
49777     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
49778     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49779
49780 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
49781 Author: Kim Phillips <kim.phillips@freescale.com>
49782 Date:   Wed Jul 25 19:25:28 2007 -0500
49783
49784     mpc83xx: fixup generic pci for libfdt
49785
49786     add libfdt support to the generic 83xx pci code
49787
49788     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49789
49790 commit f57ac7a7b37109245b69db80839ebee26179966a
49791 Author: Kim Phillips <kim.phillips@freescale.com>
49792 Date:   Wed Jul 25 19:25:22 2007 -0500
49793
49794     mpc83xx: fix 8360 and cpu functions to update fdt being passed
49795
49796     ..and not the global fdt. Rename local fdt vars to blob so as not to
49797     be confused with the global var with the same three-letter name.
49798
49799     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49800
49801 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
49802 Author: Jerry Van Baren <gvb.uboot@gmail.com>
49803 Date:   Wed Jul 4 21:34:24 2007 -0400
49804
49805     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
49806
49807     Several node strings were not correct (trailing slashes and properties
49808       in the strings)
49809     Added setting of the timebase-frequency.
49810     Improved error messages and use debug() instead of printf().
49811
49812     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
49813     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49814
49815 commit 26d02c9bbac1751c5e19294f000100b48d43a920
49816 Author: Jerry Van Baren <gvb.uboot@gmail.com>
49817 Date:   Wed Jul 4 21:27:30 2007 -0400
49818
49819     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
49820
49821     The new name matches more closely the kernel's name, which is also
49822     a much better description.
49823
49824     These are the mpc83xx changes made necessary by the function name change.
49825
49826     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
49827     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
49828     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49829
49830 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
49831 Author: Dave Liu <daveliu@freescale.com>
49832 Date:   Mon Jun 25 10:41:56 2007 +0800
49833
49834     mpc83xx: Add support for the display of reset status
49835
49836     83xx processor family has many reset sources, such as
49837     power on reset, software hard reset, software soft reset,
49838     JTAG, bus monitor, software watchdog, check stop reset,
49839     external hard reset, external software reset.
49840     sometimes, to figure out the fault of system, we need to
49841     know the cause of reset early before the prompt of
49842     u-boot present.
49843
49844     Signed-off-by: Dave Liu <daveliu@freescale.com>
49845     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49846
49847 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
49848 Author: Dave Liu <daveliu@freescale.com>
49849 Date:   Mon Jun 25 10:41:04 2007 +0800
49850
49851     mpc83xx: Fix the align bug of SDMA buffer
49852
49853     According to the latest user manual, the SDMA temporary
49854     buffer base address must be 4KB aligned.
49855
49856     Signed-off-by: Dave Liu <daveliu@freescale.com>
49857     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49858
49859 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
49860 Author: Dave Liu <daveliu@freescale.com>
49861 Date:   Mon Jun 25 13:21:12 2007 +0800
49862
49863     mpc83xx: Revise the MPC8360EMDS readme doc
49864
49865     When the rev2.x silicon mount on the MPC8360EMDS baord,
49866     and if you are using the u-boot version after the commit
49867     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
49868     to make the ethernet interface usable, we have to setup
49869     the jumpers correctly.
49870
49871     Signed-off-by: Dave Liu <daveliu@freescale.com>
49872     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49873
49874 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
49875 Author: Timur Tabi <timur@freescale.com>
49876 Date:   Tue Jul 3 13:46:32 2007 -0500
49877
49878     FSL I2C driver programs the two I2C busses differently
49879
49880     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
49881     The second I2C bus has its slave address programmed incorrectly and is
49882     missing a 5-us delay.
49883
49884     Signed-off-by: Timur Tabi <timur@freescale.com>
49885     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49886
49887 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
49888 Author: Timur Tabi <timur@freescale.com>
49889 Date:   Tue Jul 3 13:04:34 2007 -0500
49890
49891     Update SCCR programming in cpu_init_f() to support all 83xx processors
49892
49893     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
49894     bitfields for all 83xx processors.  The code to update some bitfields was
49895     compiled only on some processors.  Now, the bitfields are programmed as long
49896     as the corresponding CFG_SCCR option is defined in the board header file.
49897     This means that the board header file should not define any CFG_SCCR macros
49898     for bitfields that don't exist on that processor, otherwise the SCCR will be
49899     programmed incorrectly.
49900
49901     Signed-off-by: Timur Tabi <timur@freescale.com>
49902     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49903
49904 commit 9546266999f0b9b51372636614211b88d90f0f25
49905 Author: Martin Krause <martin.krause@tqs.de>
49906 Date:   Fri Jun 22 13:04:22 2007 +0200
49907
49908     TQM834x: cleanup configuraton
49909
49910     Remove irritating #undef DEBUG
49911
49912     Signed-off-by: Martin Krause <martin.krause@tqs.de>
49913     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49914
49915 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
49916 Author: david.saada <David.Saada@ecitele.com>
49917 Date:   Mon Jun 18 09:09:53 2007 -0700
49918
49919     MPC83xx: Fix makefile to generate config.h file in the build directory
49920
49921     MPC83xx: Fix the Makefile config sections to generate the include/config.h
49922     file in the build directory instead of the source directory.
49923
49924     Signed-off-by: David Saada <david.saada@ecitele.com>
49925     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49926
49927 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
49928 Author: Lee Nipper <Lee.Nipper@freescale.com>
49929 Date:   Thu Jun 14 20:07:33 2007 -0500
49930
49931     mpc83xx: Add support for 8360 silicon revision 2.1
49932
49933     This change adds 8360 silicon revision 2.1 support to u-boot.
49934
49935     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
49936     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49937
49938 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
49939 Author: Kumar Gala <galak@kernel.crashing.org>
49940 Date:   Wed Aug 8 04:14:28 2007 -0500
49941
49942     Treat ppc64 host as ppc
49943
49944     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49945
49946 commit 0dc4279b08ff82472bec2e2c90858602459febe8
49947 Author: Jason Jin <Jason.jin@freescale.com>
49948 Date:   Wed Aug 8 09:01:46 2007 +0800
49949
49950     Minor fix for bios emulator makefile
49951
49952     Add $(obj) to LIB avoiding objects be built in the source dir
49953
49954     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
49955
49956 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
49957 Author: Jason Jin <Jason.jin@freescale.com>
49958 Date:   Wed Aug 8 08:33:11 2007 +0800
49959
49960     Add CONFIG_BIOSEMU define to guard all the bios emulator code
49961
49962     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
49963
49964     This patch fix the compile issue on the board that did not enable the bios emulator
49965
49966 commit ed8106433522f2ea8933e9808346860d061d7731
49967 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
49968 Date:   Tue Jul 31 12:27:25 2007 -0500
49969
49970     tsec: fix multiple PHY support
49971
49972     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
49973     broke multiple PHY support in tsec.c.  This fixes it.
49974
49975     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
49976     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49977
49978 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
49979 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
49980 Date:   Thu Aug 9 09:08:18 2007 -0500
49981
49982     tsec: Allow Ten Bit Interface address to be configurable
49983
49984     Allow the address of the Ten Bit Interface (TBI) to be changed in the
49985     event of a conflict with another device.
49986
49987     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
49988
49989 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
49990 Author: Stefan Roese <sr@denx.de>
49991 Date:   Wed Aug 8 09:54:26 2007 +0200
49992
49993     Coding style cleanup
49994
49995     Signed-off-by: Stefan Roese <sr@denx.de>
49996
49997 commit a41de1f0d373e09c782dea558385a06247111ba5
49998 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
49999 Date:   Sun Aug 5 05:15:18 2007 -0500
50000
50001     Port enabled for I2C signals and chipselects port configuration.
50002
50003     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50004
50005 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
50006 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50007 Date:   Sun Aug 5 04:31:18 2007 -0500
50008
50009     Added NAND support
50010
50011     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50012
50013 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
50014 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50015 Date:   Sun Aug 5 04:11:20 2007 -0500
50016
50017     Added I2C support
50018
50019     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50020
50021 commit 99c03c175d2689093176facf17c58ce2cb320001
50022 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50023 Date:   Sun Aug 5 03:58:52 2007 -0500
50024
50025     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
50026
50027     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50028
50029 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
50030 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50031 Date:   Sun Aug 5 03:55:21 2007 -0500
50032
50033     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
50034
50035     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50036
50037 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
50038 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50039 Date:   Sun Aug 5 03:43:30 2007 -0500
50040
50041     Moved sync() from board file to include/asm-m68k/io.h
50042
50043     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50044
50045 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
50046 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50047 Date:   Sun Aug 5 03:30:44 2007 -0500
50048
50049     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
50050
50051     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50052
50053 commit 9998bd37ead85e93953559720710d3b0685c81e6
50054 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50055 Date:   Sun Aug 5 03:19:10 2007 -0500
50056
50057     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
50058
50059     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50060
50061 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
50062 Author: Jason Jin <Jason.jin@freescale.com>
50063 Date:   Tue Aug 7 16:17:06 2007 +0800
50064
50065     Add CONFIG_BIOSEMU define to guard all the bios emulator code
50066
50067     This patch fix the compile issue on the board that did not enable the bios emulator
50068
50069 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
50070 Author: Wolfgang Denk <wd@denx.de>
50071 Date:   Tue Aug 7 16:02:13 2007 +0200
50072
50073     Fix missing brace error in fs/fat/fat.c
50074     [pointed out by Roderik Wildenburg]
50075
50076     Signed-off-by: Wolfgang Denk <wd@denx.de>
50077
50078 commit 706714d97a0d08d59eda4de2268c39f504688329
50079 Author: Michal Simek <monstr@monstr.eu>
50080 Date:   Mon Aug 6 23:41:53 2007 +0200
50081
50082     [FIX] remove cute code
50083
50084 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
50085 Author: Michal Simek <monstr@monstr.eu>
50086 Date:   Mon Aug 6 23:35:26 2007 +0200
50087
50088     [FIX] Fix romfs code
50089
50090 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
50091 Author: Michal Simek <monstr@monstr.eu>
50092 Date:   Mon Aug 6 23:31:49 2007 +0200
50093
50094     [FIX] Coding style cleanup - Wolfgang's suggestions
50095
50096 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
50097 Author: Wolfgang Denk <wd@denx.de>
50098 Date:   Mon Aug 6 23:21:05 2007 +0200
50099
50100     Fixed typo in README (pointed out by Martin Jost).
50101
50102     Signed-off-by: Wolfgang Denk <wd@denx.de>
50103
50104 commit 537223afa61f64480df31ce440a9cb386df4a814
50105 Author: Stefan Roese <sr@denx.de>
50106 Date:   Mon Aug 6 21:10:17 2007 +0200
50107
50108     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
50109
50110     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
50111     here an updated Bamboo README.
50112
50113     Signed-off-by: Stefan Roese <sr@denx.de>
50114
50115 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
50116 Author: Wolfgang Denk <wd@denx.de>
50117 Date:   Mon Aug 6 02:17:36 2007 +0200
50118
50119     Coding style cleanup. Update CHANGELOG.
50120
50121     Signed-off-by: Wolfgang Denk <wd@denx.de>
50122
50123 commit 221838cc7eb178370ff62aa05920a582e12ac322
50124 Author: Jason Jin <Jason.jin@freescale.com>
50125 Date:   Tue Jul 10 09:03:22 2007 +0800
50126
50127     Remove the bios emulator from MAI board.
50128
50129     The bios emulator in the MAI board can not pass compile
50130     and have a lot of crap in it. remove it and will have a
50131     clean and small bios emulator in the drivers directory
50132     which can be uesed for every board.
50133
50134     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50135
50136 commit 5618332409bb96f4448d1712899369fc80c0b489
50137 Author: Jason Jin <Jason.jin@freescale.com>
50138 Date:   Fri Jul 13 12:14:59 2007 +0800
50139
50140     Fix some compile issues for MAI board.
50141
50142     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50143
50144 commit 0f460a1ee148b648ee242c3157650287d4296260
50145 Author: Jason Jin <Jason.jin@freescale.com>
50146 Date:   Fri Jul 13 12:14:58 2007 +0800
50147
50148     Configurations for ATI video card BIOS emulator
50149
50150     This patch add definition of the BIOS emulator and the ATI framebuffer
50151     driver for MPC8641HPCN board.
50152
50153     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50154     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50155
50156 commit ece92f85053b8df613edcf05b26a416cbc3d629c
50157 Author: Jason Jin <Jason.jin@freescale.com>
50158 Date:   Fri Jul 6 08:34:56 2007 +0800
50159
50160     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
50161     ATI video card BIOS. and can be used for x86 code emulation by some
50162     modifications.
50163
50164     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50165
50166 commit 5072188acabde3178fac7f5a597150e6e74fd40c
50167 Author: Jason Jin <Jason.jin@freescale.com>
50168 Date:   Fri Jul 6 08:33:33 2007 +0800
50169
50170     This is a framebuffer driver for ATI video card, can work for PCI9200,
50171     X300, X700, X800 ATI video cards.
50172
50173     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50174     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50175
50176 commit 5728be389e65fd47f34b33c2596271eb4db751ae
50177 Author: Wolfgang Denk <wd@denx.de>
50178 Date:   Mon Aug 6 01:01:49 2007 +0200
50179
50180     Coding style cleanup. Update CHANGELOG.
50181
50182     Signed-off-by: Wolfgang Denk <wd@denx.de>
50183
50184 commit 8092fef4c29b395958bb649647da7e3775731517
50185 Author: Martin Krause <Martin.Krause@tqs.de>
50186 Date:   Tue Dec 12 14:26:01 2006 +0100
50187
50188     Add functions to list of exported functions
50189
50190     Additionally export the following fuctions (to make trab_config build again):
50191     - simple_strtol()
50192     - strcmp()
50193
50194     Also bump the ABI version to reflect this change
50195
50196     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50197
50198 commit 63cec5814fab5d2b1c86982327433807a5ac0249
50199 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50200 Date:   Thu Aug 2 14:09:49 2007 -0500
50201
50202     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
50203
50204     All of the PCI/PCI-Express driver and initialization code that
50205     was in the MPC8641HPCN port has now been moved into the common
50206     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
50207     utilized by the 85xx ports as well.
50208
50209     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
50210
50211     Also enable the second PCI-Express controller on 8641
50212     by getting its BATS and CFG_ setup right.
50213
50214     Fixed a u16 vendor compiler warning in AHCI driver too.
50215
50216     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50217     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50218     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50219
50220 commit a274ca4f6d68830e7c916f897561cff8c4101c38
50221 Author: Michal Simek <monstr@monstr.eu>
50222 Date:   Sun Aug 5 22:33:05 2007 +0200
50223
50224     [FIX] Coding style cleanup
50225
50226 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
50227 Author: Michal Simek <monstr@monstr.eu>
50228 Date:   Sun Aug 5 16:13:31 2007 +0200
50229
50230     [FIX] Xilinx Uartlite driver
50231     Because PPC405 can use UARTLITE serial interface and
50232     Microblaze can use Uart16550 serial interface not only Uartlite.
50233
50234 commit 98889edd50aadf862071eb5664747ad0d568a20e
50235 Author: Michal Simek <monstr@monstr.eu>
50236 Date:   Sun Aug 5 15:54:53 2007 +0200
50237
50238     [FIX] Change configuration for XUPV2P Microblaze board
50239
50240 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
50241 Author: Michal Simek <monstr@monstr.eu>
50242 Date:   Sun Aug 5 15:53:50 2007 +0200
50243
50244     [PATCH] Added support for Xilinx Emac community driver
50245
50246 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
50247 Author: Bartlomiej Sieka <tur@semihalf.com>
50248 Date:   Fri Aug 3 12:08:16 2007 +0200
50249
50250     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
50251
50252     Add the ability for modules from the Schindler cm5200 family to use a
50253     single U-Boot image:
50254     - rename cm1_qp1 to cm5200
50255     - add run-time module detection
50256     - parametrize SDRAM configuration according to the module we are running on
50257
50258     Few minor, board-specific fixes included in this patch:
50259     - better MAC address handling
50260     - updated default environment ('update' command uses +{filesize} now)
50261     - improved error messages in the auto-update code
50262     - allow booting U-Boot from RAM (CFG_RAMBOOT)
50263
50264     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50265     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
50266     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
50267
50268 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
50269 Author: Andy Fleming <afleming@freescale.com>
50270 Date:   Fri Aug 3 04:05:25 2007 -0500
50271
50272     Add Marvell 1149 PHY support to the TSEC
50273
50274 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
50275 Author: Wolfgang Denk <wd@denx.de>
50276 Date:   Thu Aug 2 21:27:46 2007 +0200
50277
50278     Coding style cleanup, update CHANGELOG
50279
50280     Signed-off-by: Wolfgang Denk <wd@denx.de>
50281
50282 commit 63e22764d2f8653f68888c667eb65b3996b52680
50283 Author: Wolfgang Denk <wd@denx.de>
50284 Date:   Thu Aug 2 10:11:18 2007 +0200
50285
50286     Minor cleanup of <board>_nand build rules.
50287
50288 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
50289 Author: Stefan Roese <sr@denx.de>
50290 Date:   Thu Aug 2 08:33:56 2007 +0200
50291
50292     ppc4xx: Code cleanup
50293
50294     Signed-off-by: Stefan Roese <sr@denx.de>
50295
50296 commit c92409812206ac67a7fa7aae298539a9c3804a46
50297 Author: Grzegorz Bernacki <gjb@semihalf.com>
50298 Date:   Tue Jul 31 18:51:48 2007 +0200
50299
50300     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
50301
50302     During config transactions on the PCIe bus an attempt to scan for a
50303     non-existent device can lead to a machine check exception with certain
50304     peripheral devices. In order to avoid crashing in such scenarios the
50305     instrumented versions of the config cycle read routines are introduced, so
50306     the exceptions fixups framework can gracefully recover.
50307
50308     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50309     Acked-by: Rafal Jaworowski <raj@semihalf.com>
50310
50311 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
50312 Author: Rafal Jaworowski <raj@semihalf.com>
50313 Date:   Tue Jul 31 18:19:54 2007 +0200
50314
50315     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
50316
50317     This brings back separate settings for PCIe bus numbers depending on chip
50318     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
50319     commit. 440SPe rev. A does NOT work properly with the same settings as for
50320     the rev. B (no devices are seen on the bus during enumeration).
50321
50322     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50323
50324 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
50325 Author: Wolfgang Denk <wd@denx.de>
50326 Date:   Thu Aug 2 00:48:45 2007 +0200
50327
50328     Fix build errors and warnings / code cleanup.
50329
50330     Signed-off-by: Wolfgang Denk <wd@denx.de>
50331
50332 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
50333 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
50334 Date:   Tue Jul 31 10:24:56 2007 +0200
50335
50336     ppc4xx: Update AMCC Bamboo 440EP support
50337
50338     Changed storage type of cfg_simulate_spd_eeprom to const
50339     Changed storage type of gpio_tab to stack storage
50340     (Cannot access global data declarations in .bss until afer code relocation)
50341
50342     Improved SDRAM tests to catch problems where data is not uniquely addressable
50343     (e.g. incorrectly programmed SDRAM row or columns)
50344
50345     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
50346     Fixed AM29LV320DT (OpCode Flash) sector map
50347
50348     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
50349     Signed-off-by: Stefan Roese <sr@denx.de>
50350
50351 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
50352 Author: Stefan Roese <sr@denx.de>
50353 Date:   Tue Jul 31 08:37:01 2007 +0200
50354
50355     ppc4xx: Update 440EPx lwmon5 board support
50356
50357     - Clear ECC status regs after ECC POST test
50358     - Set dcbz for ECC generation with caches enabled as default
50359     - Code cleanup
50360
50361     Signed-off-by: Stefan Roese <sr@denx.de>
50362
50363 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
50364 Author: Stefan Roese <sr@denx.de>
50365 Date:   Mon Jul 30 11:04:57 2007 +0200
50366
50367     ppc4xx: Only print ECC related info when the error bis are set
50368
50369     Signed-off-by: Stefan Roese <sr@denx.de>
50370
50371 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
50372 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50373 Date:   Fri Jul 27 16:44:31 2007 +0200
50374
50375     new FPGA image for PLU405 board
50376
50377     new FPGA image for PLU405 board with improved CompactFlash timing
50378
50379     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50380
50381 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
50382 Author: Rafal Jaworowski <raj@semihalf.com>
50383 Date:   Fri Jul 27 14:43:59 2007 +0200
50384
50385     [ADS5121] Support for the ADS5121 board
50386
50387     The following MPC5121e subsystems are supported:
50388
50389     - low-level CPU init
50390     - NOR Boot Flash (common CFI driver)
50391     - DDR SDRAM
50392     - FEC
50393     - I2C
50394     - Watchdog
50395
50396     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
50397     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50398     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
50399
50400 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
50401 Author: Rafal Jaworowski <raj@semihalf.com>
50402 Date:   Fri Jul 27 14:22:04 2007 +0200
50403
50404     [PPC] Remove unused MSR_USER definition
50405
50406     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50407
50408 commit d4024bb72dd81695ec099b2199eda0d27c623e62
50409 Author: John Otken <john@softadvances.com>
50410 Date:   Thu Jul 26 17:49:11 2007 +0200
50411
50412     ppc4xx: Add support for AMCC 405EP Taihu board
50413
50414     Signed-off-by: John Otken <john@softadvances.com>
50415
50416 commit b66091de6c7390620312c2501db23d8391e7cabb
50417 Author: Anatolij Gustschin <agust@denx.de>
50418 Date:   Thu Jul 26 15:08:01 2007 +0200
50419
50420     ppc4xx: lwmon5: Update Lime initialization
50421
50422     Change Lime SDRAM initialization to now support 100MHz and
50423     133MHz (if enabled). Also the framebuffer is initialized to
50424     display a blue rectangle with a white border.
50425
50426     Signed-off-by: Anatolij Gustschin <agust@denx.de>
50427     Signed-off-by: Stefan Roese <sr@denx.de>
50428
50429 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
50430 Author: Stefan Roese <sr@denx.de>
50431 Date:   Tue Jul 24 09:52:52 2007 +0200
50432
50433     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
50434
50435     The used Intel NOR FLASH chips have internally two dies, and are now
50436     treated as two seperate chips.
50437
50438     Signed-off-by: Stefan Roese <sr@denx.de>
50439
50440 commit aedf5bde179ecfbd0a96130d18996a96518b785f
50441 Author: Stefan Roese <sr@denx.de>
50442 Date:   Tue Jul 24 07:20:09 2007 +0200
50443
50444     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
50445
50446     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
50447     interrupt controller.
50448
50449     Signed-off-by: Stefan Roese <sr@denx.de>
50450
50451 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
50452 Author: Stefan Roese <sr@denx.de>
50453 Date:   Fri Jul 20 15:03:44 2007 +0200
50454
50455     ppc4xx: Fix bug with default GPIO output value
50456
50457     As spotted by Matthias Fuchs, the default output values for all GPIO1
50458     outputs were not setup correctly. This patch fixes this issue.
50459
50460     Signed-off-by: Stefan Roese <sr@denx.de>
50461
50462 commit 531e3e8b831f357056448fa573137d5fb37000fd
50463 Author: Pavel Kolesnikov <concord@emcraft.com>
50464 Date:   Fri Jul 20 15:03:03 2007 +0200
50465
50466     POST: Add ECC POST for the lwmon5 board
50467
50468     This patch adds ECC Post test for the Lwmon5 board based
50469     on PPC440EPx to U-Boot.
50470
50471     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
50472     Acked-by: Yuri Tikhonov <yur@emcraft.com>
50473     Acked-by: Stefan Roese <sr@denx.de>
50474
50475 commit cc3023b9f95d7ac959a764471a65001062aecf41
50476 Author: Rafal Jaworowski <raj@semihalf.com>
50477 Date:   Thu Jul 19 17:12:28 2007 +0200
50478
50479     Fix breakage of 8xx boards from recent commit.
50480
50481     This patch fixes the negative consequences for 8xx of the recent
50482     "ppc4xx: Clean up 440 exceptions handling" commit.
50483
50484     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
50485
50486 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
50487 Author: Stefan Roese <sr@denx.de>
50488 Date:   Mon Jul 16 13:11:12 2007 +0200
50489
50490     Coding style cleanup
50491
50492     Signed-off-by: Stefan Roese <sr@denx.de>
50493
50494 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
50495 Author: Stefan Roese <sr@denx.de>
50496 Date:   Mon Jul 16 10:02:12 2007 +0200
50497
50498     ppc4xx: Code cleanup
50499
50500     Signed-off-by: Stefan Roese <sr@denx.de>
50501
50502 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
50503 Author: Stefan Roese <sr@denx.de>
50504 Date:   Mon Jul 16 10:01:38 2007 +0200
50505
50506     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
50507
50508     Signed-off-by: Stefan Roese <sr@denx.de>
50509
50510 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
50511 Author: Stefan Roese <sr@denx.de>
50512 Date:   Mon Jul 16 10:00:43 2007 +0200
50513
50514     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
50515
50516     The new boardspecific DDR2 controller configuration is used for the Yucca
50517     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
50518
50519     Signed-off-by: Stefan Roese <sr@denx.de>
50520
50521 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
50522 Author: Stefan Roese <sr@denx.de>
50523 Date:   Mon Jul 16 09:57:00 2007 +0200
50524
50525     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
50526
50527     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
50528     support non default, boardspecific DDR(2) controller configuration.
50529
50530     Signed-off-by: Stefan Roese <sr@denx.de>
50531
50532 commit 5743a9207a370b90f09b20ebd61167c806b937f3
50533 Author: Stefan Roese <sr@denx.de>
50534 Date:   Mon Jul 16 08:53:51 2007 +0200
50535
50536     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
50537
50538     The new function remove_tlb() can be used to remove the TLB's used to
50539     map a specific memory region. This is especially useful for the DDR(2)
50540     setup routines which configure the SDRAM area temporarily as a cached
50541     area (for speedup on auto-calibration and ECC generation) and later
50542     need this area uncached for normal usage.
50543
50544     Signed-off-by: Stefan Roese <sr@denx.de>
50545
50546 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
50547 Author: Michal Simek <monstr@monstr.eu>
50548 Date:   Mon Jul 16 00:31:07 2007 +0200
50549
50550     [PATCH] Support for Xilinx EmacLite controller
50551
50552 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
50553 Author: Wolfgang Denk <wd@denx.de>
50554 Date:   Sat Jul 14 22:51:02 2007 +0200
50555
50556     Update CHANGELOG
50557
50558     Signed-off-by: Wolfgang Denk <wd@denx.de>
50559
50560 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
50561 Author: Michal Simek <monstr@monstr.eu>
50562 Date:   Sat Jul 14 13:11:28 2007 +0200
50563
50564     [FIX] support for simply measuring time
50565
50566 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
50567 Author: Michal Simek <monstr@monstr.eu>
50568 Date:   Sat Jul 14 12:41:23 2007 +0200
50569
50570     [FS] Added support for ROMFS
50571
50572 commit 011595307731a7a67a7445d107c279d031e8ab97
50573 Author: Heiko Schocher <hs@pollux.denx.de>
50574 Date:   Sat Jul 14 01:06:58 2007 +0200
50575
50576     [PCS440EP]  - fix compile error, if BUILD_DIR is used
50577
50578 commit 5a2f1098d81ad58b309e5e558d0492643166a799
50579 Author: Michal Simek <monstr@monstr.eu>
50580 Date:   Sat Jul 14 00:18:48 2007 +0200
50581
50582     [PATCH] Support time without timer
50583
50584 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
50585 Author: Michal Simek <monstr@monstr.eu>
50586 Date:   Fri Jul 13 21:43:55 2007 +0200
50587
50588     [PATCH] Remove problem with disabled BARREL SHIFTER
50589
50590 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
50591 Author: Michal Simek <monstr@monstr.eu>
50592 Date:   Fri Jul 13 21:41:44 2007 +0200
50593
50594     [FIX] correct help for rspr
50595
50596 commit fad63407154f46246ce80d53a9c669a44362ac67
50597 Author: Heiko Schocher <hs@pollux.denx.de>
50598 Date:   Fri Jul 13 09:54:17 2007 +0200
50599
50600     make show_boot_progress () weak.
50601
50602     Signed-off-by: Heiko Schocher <hs@denx.de>
50603
50604 commit 907902472391b6ca1876ec300687562ecaf459b1
50605 Author: Heiko Schocher <hs@pollux.denx.de>
50606 Date:   Fri Jul 13 08:26:05 2007 +0200
50607
50608     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
50609                 - fix compile error, if BUILD_DIR is used
50610
50611     Signed-off-by: Heiko Schocher <hs@denx.de>
50612
50613 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
50614 Author: Stefan Roese <sr@denx.de>
50615 Date:   Thu Jul 12 16:32:08 2007 +0200
50616
50617     ppc4xx: Change receive buffer handling in the 4xx emac driver
50618
50619     This change fixes a bug in the receive buffer handling, that
50620     could lead to problems upon high network traffic (broadcasts...).
50621
50622     Signed-off-by: Stefan Roese <sr@denx.de>
50623
50624 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
50625 Author: Wolfgang Denk <wd@denx.de>
50626 Date:   Thu Jul 12 01:45:34 2007 +0200
50627
50628     Update CHANGELOG, minor coding style cleanup.
50629
50630     Signed-off-by: Wolfgang Denk <wd@denx.de>
50631
50632 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
50633 Author: Andy Fleming <afleming@freescale.com>
50634 Date:   Fri Jun 8 16:41:18 2007 -0500
50635
50636     Remove erroneous errata code from Marvel 88E1111S driver
50637
50638     The Marvel 88E1111S driver for the TSEC was copied from the
50639     88E1101 driver, and included a fix for an erratum which does not
50640     exist on that part.  Now it is removed
50641
50642     Signed-off-by: Andy Fleming <afleming@freescale.com>
50643
50644 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
50645 Author: Andy Fleming <afleming@freescale.com>
50646 Date:   Tue Jun 5 16:38:44 2007 -0500
50647
50648     From: eran liberty <eran.liberty@gmail.com>
50649
50650     adds the reset register to 85xx immap
50651
50652     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
50653     Signed-off-by: Andy Fleming <afleming@freescale.com>
50654
50655 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
50656 Author: Andy Fleming <afleming@freescale.com>
50657 Date:   Thu May 10 17:50:01 2007 -0500
50658
50659     Polished the 85xx ADS config files
50660
50661     Made the boot commands use device trees by default.
50662     Also moved the ramdisk to 1000000 (I think the previous address
50663     was getting overridden during boot).
50664
50665     Signed-off-by: Andy Fleming <afleming@freescale.com>
50666
50667 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
50668 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50669 Date:   Wed May 9 11:03:32 2007 -0500
50670
50671     8544ds: Fix Makefile after moving pixis to board/freescale.
50672
50673     The OBJTREE != SRCTREE build scenario was broken.
50674     This fixes it.
50675
50676     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50677     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50678
50679 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
50680 Author: Andy Fleming <afleming@freescale.com>
50681 Date:   Wed May 9 00:54:20 2007 -0500
50682
50683     tsec: Fix PHY code to match first driver
50684
50685     Jarrold Wen noticed that the generic PHY code always matches
50686     under the current implementation.  Change it so the first match
50687     wins, and *only* unknown PHYs trigger the generic driver
50688
50689     Signed-off-by: Andy Fleming <afleming@freescale.com>
50690
50691 commit ccc091aac61a38cd998d575d92f7232e256d6312
50692 Author: Andy Fleming <afleming@freescale.com>
50693 Date:   Tue May 8 17:27:43 2007 -0500
50694
50695     Add support for CPM device tree configuration to 8560 ADS
50696
50697     * Adds code to modify CPM frequencies
50698     * Cleans up the config file to #define TSEC and (for now) #undef FCC
50699     * Adds the MII command for all 8560 ADS configurations
50700     * Updates config file to provide convenience commands for booting
50701       with a device tree
50702
50703     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
50704     Signed-off-by: Andy Fleming <afleming@freescale.com>
50705
50706 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
50707 Author: Andy Fleming <afleming@freescale.com>
50708 Date:   Tue May 8 17:23:02 2007 -0500
50709
50710     Fix Marvell 88e1145 PHY init code
50711
50712     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
50713     where the reset was being done after the errata code instead of
50714     before.
50715
50716     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
50717     Signed-off-by: Andy Fleming <afleming@freescale.com>
50718
50719 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
50720 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50721 Date:   Wed Jul 11 14:52:16 2007 -0500
50722
50723     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
50724
50725     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50726
50727 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
50728 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50729 Date:   Wed Jul 11 14:52:08 2007 -0500
50730
50731     pciauto setup bridge
50732
50733     The P2P bridge bus numbers programmed into the device are relative to
50734     hose->first_busno.
50735
50736     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50737
50738 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
50739 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50740 Date:   Wed Jul 11 14:52:01 2007 -0500
50741
50742     Support PCIe extended config registers
50743
50744     FSL PCIe block has extended cfg registers in the 100 and 400 range.
50745     For example, to read the LTSSM register: pci display <busn>.0 404 1
50746
50747     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50748
50749 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
50750 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50751 Date:   Wed Jul 11 14:51:48 2007 -0500
50752
50753     Minor improvements to drivers/pci_auto.c
50754
50755     - Make pciauto_{pre,post}scan_setup_bridge non-static
50756     - Added physical address display in debug messages.
50757
50758     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50759
50760 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
50761 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
50762 Date:   Wed Jul 11 14:51:35 2007 -0500
50763
50764     Start pci hose scan from hose->current_busno.
50765
50766     Ensure hose->current_busno is not less than first_busno.  This fixes
50767     broken board code which leaves current_busno=0 when first_busno is
50768     greater than 0 for the cases with multiple controllers.
50769
50770     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
50771
50772 commit 3865b1fb7843a08ad49a6319a36415752276ff48
50773 Author: Stefan Roese <sr@denx.de>
50774 Date:   Wed Jul 11 12:13:53 2007 +0200
50775
50776     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
50777
50778     Signed-off-by: Stefan Roese <sr@denx.de>
50779
50780 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
50781 Author: Bartlomiej Sieka <tur@semihalf.com>
50782 Date:   Wed Jul 11 20:11:07 2007 +0200
50783
50784     CM1.QP1: Support for the Schindler CM1.QP1 board.
50785
50786     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
50787     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
50788
50789 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
50790 Author: Heiko Schocher <hs@pollux.denx.de>
50791 Date:   Wed Jul 11 18:39:11 2007 +0200
50792
50793     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
50794                 - now the Flash ST M29W040B is supported (not tested)
50795                 - fix the "led" command
50796                 - fix compile error, if BUILD_DIR is used
50797
50798     Signed-off-by: Heiko Schocher <hs@denx.de>
50799
50800 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
50801 Author: Stefan Roese <sr@denx.de>
50802 Date:   Sun Jul 8 13:44:27 2007 +0200
50803
50804     Fix malloc problem introduced with the relocation fixup for the PPC platform
50805
50806     The relocation fixup didn't handle the malloc pointer initialization
50807     correctly. This patch fixes this problem. Tested successfully on 4xx.
50808     The relocation fixup patches for 4xx will follow soon.
50809
50810     Signed-off-by: Stefan Roese <sr@denx.de>
50811
50812 commit 0dca874db62718e41253659e60f3a1de7eb418ce
50813 Author: TsiChung <tcliew@Goku.(none)>
50814 Date:   Tue Jul 10 15:45:43 2007 -0500
50815
50816     Cache update and added CFG_UNIFY_CACHE
50817
50818     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.
50819
50820     Signed-off-by: TsiChung <tcliew@Goku.(none)>
50821
50822 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
50823 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50824 Date:   Thu Jul 5 23:36:16 2007 -0500
50825
50826     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
50827
50828     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
50829
50830     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50831
50832 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
50833 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50834 Date:   Thu Jul 5 23:31:25 2007 -0500
50835
50836     Update header files
50837
50838     Include immap.h and renamed mcfrtc.h to rtc.h
50839
50840     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50841
50842 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
50843 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50844 Date:   Thu Jul 5 23:29:21 2007 -0500
50845
50846     Add mcffec_initialize()
50847
50848     Added mcffec_initialize() in eth_initialize()
50849
50850     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50851
50852 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
50853 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50854 Date:   Thu Jul 5 23:27:40 2007 -0500
50855
50856     Update header file and clean up
50857
50858     Include immap.h
50859
50860     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50861
50862 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
50863 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50864 Date:   Thu Jul 5 23:23:15 2007 -0500
50865
50866     New uart structure and defines
50867
50868     Seperated from mcfuart.h
50869
50870     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50871
50872 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
50873 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50874 Date:   Thu Jul 5 23:22:31 2007 -0500
50875
50876     New timer structure and defines
50877
50878     Seperated from mcftimer.h
50879
50880     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50881
50882 commit e04acb2eba4782489417240eff76e20e176aec10
50883 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50884 Date:   Thu Jul 5 23:21:09 2007 -0500
50885
50886     Rename mcfrtc to rtc
50887
50888     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
50889
50890     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50891
50892 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
50893 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50894 Date:   Thu Jul 5 23:17:36 2007 -0500
50895
50896     Rename mcfserial.c. Update include header
50897
50898     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
50899
50900     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50901
50902 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
50903 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50904 Date:   Thu Jul 5 23:13:58 2007 -0500
50905
50906     Header file update, clean up and cache handling
50907
50908     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
50909
50910     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50911
50912 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
50913 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50914 Date:   Thu Jul 5 23:10:40 2007 -0500
50915
50916     Create interrupts.c and modify Makefile
50917
50918     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
50919
50920     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50921
50922 commit ddd104f1ed655eda50c06ba636237a83ed943f34
50923 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50924 Date:   Thu Jul 5 23:06:55 2007 -0500
50925
50926     Enable Icache
50927
50928     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50929
50930 commit b9bf3de377b2bae70c983c9b97feae914999e735
50931 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50932 Date:   Thu Jul 5 23:05:31 2007 -0500
50933
50934     Update header file and some clean up
50935
50936     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
50937
50938     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50939
50940 commit 84a015b52ec820a5ae173717d78516de731c89c2
50941 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50942 Date:   Thu Jul 5 23:03:28 2007 -0500
50943
50944     Update header file and enable icache
50945
50946     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
50947
50948     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50949
50950 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
50951 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50952 Date:   Thu Jul 5 23:01:22 2007 -0500
50953
50954     Update header file and removed interrupt_init()
50955
50956     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
50957
50958     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50959
50960 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
50961 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50962 Date:   Thu Jul 5 22:57:46 2007 -0500
50963
50964     Update for flash.o and mii.o
50965
50966     Removed flash.o and added mii.o
50967
50968     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50969
50970 commit c5ded275d839e4ff79f41718d50a835d989f57bc
50971 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50972 Date:   Thu Jul 5 22:56:19 2007 -0500
50973
50974     MII functions calls.
50975
50976     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50977
50978 commit 427c814104560e29bda14955c67703245aaaa5b4
50979 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50980 Date:   Thu Jul 5 22:54:42 2007 -0500
50981
50982     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
50983
50984     The removed MII routines will be placed in mii.c.
50985
50986     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50987
50988 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
50989 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50990 Date:   Thu Jul 5 22:51:05 2007 -0500
50991
50992     Duplicate code
50993
50994     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
50995
50996     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
50997
50998 commit 2744354a8437b8f78db178e30660215688bff570
50999 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51000 Date:   Thu Jul 5 22:46:38 2007 -0500
51001
51002     Seperate old structure defines and new structure defines
51003
51004     Removed new uart structure and defines to uart.h
51005
51006     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51007
51008 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
51009 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51010 Date:   Thu Jul 5 22:45:01 2007 -0500
51011
51012     Seperate old structure defines and new structure defines
51013
51014     New timer structure and defines will move to new timer.h
51015
51016     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51017
51018 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
51019 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51020 Date:   Thu Jul 5 22:42:23 2007 -0500
51021
51022     Clean up
51023
51024     Removed whitespace
51025
51026     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51027
51028 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
51029 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51030 Date:   Thu Jul 5 22:41:24 2007 -0500
51031
51032     Clean up
51033
51034     Replaced whitespace with tabs
51035
51036     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51037
51038 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
51039 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51040 Date:   Thu Jul 5 22:39:07 2007 -0500
51041
51042     Create new header file and move peripherals base address from configs file to new header file.
51043
51044     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.
51045
51046     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51047
51048 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
51049 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51050 Date:   Thu Jul 5 22:24:58 2007 -0500
51051
51052     Revert file mode
51053
51054     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
51055
51056     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
51057
51058 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
51059 Author: Jon Loeliger <jdl@freescale.com>
51060 Date:   Tue Jul 10 11:19:50 2007 -0500
51061
51062     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
51063
51064     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51065     Those always evaluated TRUE, and thus were always compiled
51066     even when IDE really wasn't defined/wanted.
51067
51068     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51069
51070 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
51071 Author: Jon Loeliger <jdl@freescale.com>
51072 Date:   Tue Jul 10 11:13:21 2007 -0500
51073
51074     drivers/: Remove lingering references to CFG_CMD_* symbols.
51075
51076     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51077     Those always evaluated TRUE, and thus were always compiled
51078     even when IDE really wasn't defined/wanted.
51079
51080     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51081
51082 commit f40a7f3e3888b42a43674b099e5470022c8c544c
51083 Author: Jon Loeliger <jdl@freescale.com>
51084 Date:   Tue Jul 10 11:07:56 2007 -0500
51085
51086     fs/: Remove lingering references to CFG_CMD_* symbols.
51087
51088     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51089     Those always evaluated TRUE, and thus were always compiled
51090     even when IDE really wasn't defined/wanted.
51091
51092     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51093
51094 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
51095 Author: Jon Loeliger <jdl@freescale.com>
51096 Date:   Tue Jul 10 11:05:02 2007 -0500
51097
51098     net/: Remove lingering references to CFG_CMD_* symbols.
51099
51100     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51101     Those always evaluated TRUE, and thus were always compiled
51102     even when IDE really wasn't defined/wanted.
51103
51104     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51105
51106 commit 902531788376046da212afd1661cffb62f3daa1c
51107 Author: Jon Loeliger <jdl@freescale.com>
51108 Date:   Tue Jul 10 11:02:44 2007 -0500
51109
51110     common/: Remove lingering references to CFG_CMD_* symbols.
51111
51112     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51113     Those always evaluated TRUE, and thus were always compiled
51114     even when IDE really wasn't defined/wanted.
51115
51116     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51117
51118 commit d39b57415838c73fb0a37eca84de3c68ba990586
51119 Author: Jon Loeliger <jdl@freescale.com>
51120 Date:   Tue Jul 10 10:48:22 2007 -0500
51121
51122     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
51123
51124     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51125     Those always evaluated TRUE, and thus were always compiled
51126     even when IDE really wasn't defined/wanted.
51127
51128     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51129
51130 commit 77a318545d57aefa844752465b94c7e09a3f26d0
51131 Author: Jon Loeliger <jdl@freescale.com>
51132 Date:   Tue Jul 10 10:39:10 2007 -0500
51133
51134     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
51135
51136     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
51137     Those always evaluated TRUE, and thus were always compiled
51138     even when IDE really wasn't defined/wanted.
51139
51140     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51141
51142 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
51143 Author: Jon Loeliger <jdl@freescale.com>
51144 Date:   Tue Jul 10 10:27:39 2007 -0500
51145
51146     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
51147
51148     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51149
51150 commit 079a136c3588814784561d6e4856970ee82d6e2a
51151 Author: Jon Loeliger <jdl@freescale.com>
51152 Date:   Tue Jul 10 10:12:10 2007 -0500
51153
51154     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
51155
51156     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51157     used to be included but CONFIG_BOOTP_MASK was not defined.
51158
51159     Remove lingering references to CFG_CMD_* symbols.
51160
51161     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51162
51163 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
51164 Author: Jon Loeliger <jdl@freescale.com>
51165 Date:   Tue Jul 10 09:38:02 2007 -0500
51166
51167     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
51168
51169     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51170     used to be included but CONFIG_BOOTP_MASK was not defined.
51171
51172     Remove lingering references to CFG_CMD_* symbols.
51173
51174     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51175
51176 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
51177 Author: Jon Loeliger <jdl@freescale.com>
51178 Date:   Tue Jul 10 09:29:01 2007 -0500
51179
51180     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
51181
51182     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51183     used to be included but CONFIG_BOOTP_MASK was not defined.
51184
51185     Remove lingering references to CFG_CMD_* symbols.
51186
51187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51188
51189 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
51190 Author: Jon Loeliger <jdl@freescale.com>
51191 Date:   Tue Jul 10 09:22:23 2007 -0500
51192
51193     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
51194
51195     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51196     used to be included but CONFIG_BOOTP_MASK was not defined.
51197
51198     Remove lingering references to CFG_CMD_* symbols.
51199
51200     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51201
51202 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
51203 Author: Jon Loeliger <jdl@freescale.com>
51204 Date:   Tue Jul 10 09:10:49 2007 -0500
51205
51206     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
51207
51208     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51209     used to be included but CONFIG_BOOTP_MASK was not defined.
51210
51211     Remove lingering references to CFG_CMD_* symbols.
51212
51213     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51214
51215 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
51216 Author: Jon Loeliger <jdl@freescale.com>
51217 Date:   Tue Jul 10 09:02:57 2007 -0500
51218
51219     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
51220
51221     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
51222     used to be included but CONFIG_BOOTP_MASK was not defined.
51223
51224     Remove lingering references to CFG_CMD_* symbols.
51225
51226     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51227
51228 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
51229 Author: Jon Loeliger <jdl@freescale.com>
51230 Date:   Mon Jul 9 22:08:34 2007 -0500
51231
51232     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
51233
51234     All of the choices for CONFIG_BOOTP_ are now documented in
51235     the README file.  You must now individually select exactly
51236     the set that you want using a series of
51237         #define CONFIG_BOOTP_<x>
51238     statements in the board port config files now.
51239
51240     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51241
51242 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
51243 Author: Jon Loeliger <jdl@freescale.com>
51244 Date:   Mon Jul 9 21:57:31 2007 -0500
51245
51246     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51247
51248     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51249
51250 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
51251 Author: Jon Loeliger <jdl@freescale.com>
51252 Date:   Mon Jul 9 21:48:26 2007 -0500
51253
51254     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51255
51256     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51257
51258 commit 37d4bb70586659dedef1658ce1bed071be098aec
51259 Author: Jon Loeliger <jdl@freescale.com>
51260 Date:   Mon Jul 9 21:38:02 2007 -0500
51261
51262     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51263
51264     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51265
51266 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
51267 Author: Jon Loeliger <jdl@freescale.com>
51268 Date:   Mon Jul 9 21:31:24 2007 -0500
51269
51270     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51271
51272     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51273
51274 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
51275 Author: Jon Loeliger <jdl@freescale.com>
51276 Date:   Mon Jul 9 21:24:19 2007 -0500
51277
51278     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51279
51280     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51281
51282 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
51283 Author: Jon Loeliger <jdl@freescale.com>
51284 Date:   Mon Jul 9 21:16:53 2007 -0500
51285
51286     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
51287
51288     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51289
51290 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
51291 Author: Jon Loeliger <jdl@freescale.com>
51292 Date:   Mon Jul 9 19:12:30 2007 -0500
51293
51294     Retire CONFIG_COMMANDS finally.
51295     Strip old CFG_CMD_* symbols out.
51296
51297     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51298
51299 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
51300 Author: Jon Loeliger <jdl@freescale.com>
51301 Date:   Mon Jul 9 19:10:03 2007 -0500
51302
51303     Update README.* to reference new CONFIG_CMD_* names now.
51304
51305     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51306
51307 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
51308 Author: Jon Loeliger <jdl@freescale.com>
51309 Date:   Mon Jul 9 19:06:00 2007 -0500
51310
51311     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
51312
51313     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51314
51315 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
51316 Author: Jon Loeliger <jdl@freescale.com>
51317 Date:   Mon Jul 9 18:57:22 2007 -0500
51318
51319     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
51320
51321     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51322
51323 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
51324 Author: Jon Loeliger <jdl@freescale.com>
51325 Date:   Mon Jul 9 18:45:16 2007 -0500
51326
51327     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
51328
51329     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51330
51331 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
51332 Author: Jon Loeliger <jdl@freescale.com>
51333 Date:   Mon Jul 9 18:38:39 2007 -0500
51334
51335     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
51336
51337     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51338
51339 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
51340 Author: Jon Loeliger <jdl@freescale.com>
51341 Date:   Mon Jul 9 18:31:28 2007 -0500
51342
51343     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
51344
51345     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51346
51347 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
51348 Author: Jon Loeliger <jdl@freescale.com>
51349 Date:   Mon Jul 9 18:24:55 2007 -0500
51350
51351     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
51352
51353     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51354
51355 commit fcec2eb93e126400009729328e797f12bc94f1fd
51356 Author: Jon Loeliger <jdl@freescale.com>
51357 Date:   Mon Jul 9 18:19:09 2007 -0500
51358
51359     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
51360
51361     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51362
51363 commit a593814f2be0c9cdc3133cd550b167b8a988328f
51364 Author: Jon Loeliger <jdl@freescale.com>
51365 Date:   Mon Jul 9 18:10:50 2007 -0500
51366
51367     rtc/: Remove obsolete references to CONFIG_COMMANDS
51368
51369     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51370
51371 commit 67350568f9d46e66c21829f3513b3db0caeb948b
51372 Author: Jon Loeliger <jdl@freescale.com>
51373 Date:   Mon Jul 9 18:05:38 2007 -0500
51374
51375     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
51376
51377     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51378
51379 commit 7def6b34f910f08d7ef0a14646da067719237ca2
51380 Author: Jon Loeliger <jdl@freescale.com>
51381 Date:   Mon Jul 9 18:02:11 2007 -0500
51382
51383     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
51384
51385     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51386
51387 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
51388 Author: Jon Loeliger <jdl@freescale.com>
51389 Date:   Mon Jul 9 17:56:50 2007 -0500
51390
51391     fs/: Remove obsolete references to CONFIG_COMMANDS
51392
51393     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51394
51395 commit c91898bbc505aff3e12a807af88e76da18efb7ee
51396 Author: Jon Loeliger <jdl@freescale.com>
51397 Date:   Mon Jul 9 17:46:09 2007 -0500
51398
51399     tools/: Remove obsolete references to CONFIG_COMMANDS
51400
51401     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51402
51403 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
51404 Author: Jon Loeliger <jdl@freescale.com>
51405 Date:   Mon Jul 9 17:45:14 2007 -0500
51406
51407     net/: Remove obsolete references to CONFIG_COMMANDS
51408
51409     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51410
51411 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
51412 Author: Jon Loeliger <jdl@freescale.com>
51413 Date:   Mon Jul 9 17:39:42 2007 -0500
51414
51415     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
51416
51417     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51418
51419 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
51420 Author: Jon Loeliger <jdl@freescale.com>
51421 Date:   Mon Jul 9 17:30:01 2007 -0500
51422
51423     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
51424
51425     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51426
51427 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
51428 Author: Jon Loeliger <jdl@freescale.com>
51429 Date:   Mon Jul 9 17:22:37 2007 -0500
51430
51431     disk/: Remove obsolete references to CONFIG_COMMANDS
51432
51433     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51434
51435 commit 639221c76c88215bd55af83ad174fc30d1940f8f
51436 Author: Jon Loeliger <jdl@freescale.com>
51437 Date:   Mon Jul 9 17:15:49 2007 -0500
51438
51439     include/: Remove obsolete references to CONFIG_COMMANDS
51440     Mostly removed from comments here.
51441
51442     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51443
51444 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
51445 Author: Wolfgang Denk <wd@denx.de>
51446 Date:   Tue Jul 10 00:01:28 2007 +0200
51447
51448     Coding style cleanup; update CHANGELOG.
51449
51450     Signed-off-by: Wolfgang Denk <wd@denx.de>
51451
51452 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
51453 Author: Stefan Roese <sr@denx.de>
51454 Date:   Mon Jul 9 11:00:24 2007 +0200
51455
51456     Small coding style cleanup
51457
51458     Signed-off-by: Stefan Roese <sr@denx.de>
51459
51460 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
51461 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51462 Date:   Mon Jul 9 10:10:08 2007 +0200
51463
51464     Migrate esd 405EP boards to new NAND subsystem
51465
51466     Remove unused CFG_NAND_LEGACY define
51467
51468     These boards to not have NAND.
51469
51470     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51471
51472 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
51473 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51474 Date:   Mon Jul 9 10:10:06 2007 +0200
51475
51476     Migrate esd 405EP boards to new NAND subsystem
51477
51478     Migrate esd 405EP boards to new NAND subsystem
51479
51480     -cleanup
51481     -use correct io accessors (in/out_be32())
51482
51483     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51484
51485 commit e09f7ab5749c345f924da272bea0521a73af5b11
51486 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51487 Date:   Mon Jul 9 10:10:04 2007 +0200
51488
51489     Migrate esd 405EP boards to new NAND subsystem
51490
51491     This patch prepares the migration from the legacy NAND driver
51492     to U-Boot's new NAND subsystem for esd boards.
51493
51494     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51495
51496 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
51497 Author: Jon Loeliger <jdl@freescale.com>
51498 Date:   Sun Jul 8 18:10:08 2007 -0500
51499
51500     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
51501
51502     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51503
51504 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
51505 Author: Jon Loeliger <jdl@freescale.com>
51506 Date:   Sun Jul 8 18:05:39 2007 -0500
51507
51508     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
51509
51510     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51511
51512 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
51513 Author: Jon Loeliger <jdl@freescale.com>
51514 Date:   Sun Jul 8 18:02:23 2007 -0500
51515
51516     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
51517
51518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51519
51520 commit baa26db4113679b80970ff447d91cc10217742a6
51521 Author: Jon Loeliger <jdl@freescale.com>
51522 Date:   Sun Jul 8 17:51:39 2007 -0500
51523
51524     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
51525
51526     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51527
51528 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
51529 Author: Jon Loeliger <jdl@freescale.com>
51530 Date:   Sun Jul 8 17:02:01 2007 -0500
51531
51532     Clear up confusion over the CMD_POST and POST_DIAG mess.
51533
51534     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
51535     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
51536     Clear this mess up some.
51537
51538     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51539
51540 commit b3631487105a57ab7cbadfc26efbaf9676275018
51541 Author: Jon Loeliger <jdl@freescale.com>
51542 Date:   Sun Jul 8 15:45:08 2007 -0500
51543
51544     Remove references to the old cmd_confdefs.h include file.
51545
51546     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51547
51548 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
51549 Author: Jon Loeliger <jdl@freescale.com>
51550 Date:   Sun Jul 8 15:42:59 2007 -0500
51551
51552     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
51553
51554     Use new CONFIG_CMD_* in lwmon5.h board config file.
51555     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
51556
51557     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51558
51559 commit a5562901661bd428f7e5feb333f796372cb81019
51560 Author: Jon Loeliger <jdl@freescale.com>
51561 Date:   Sun Jul 8 15:31:57 2007 -0500
51562
51563     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
51564
51565     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51566
51567 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
51568 Author: Jon Loeliger <jdl@freescale.com>
51569 Date:   Sun Jul 8 15:02:44 2007 -0500
51570
51571     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
51572
51573     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51574
51575 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
51576 Author: Jon Loeliger <jdl@freescale.com>
51577 Date:   Sun Jul 8 15:12:40 2007 -0500
51578
51579     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
51580
51581     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51582
51583 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
51584 Author: Jon Loeliger <jdl@freescale.com>
51585 Date:   Sun Jul 8 14:55:07 2007 -0500
51586
51587     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
51588
51589     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51590
51591 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
51592 Author: Jon Loeliger <jdl@freescale.com>
51593 Date:   Sun Jul 8 14:49:44 2007 -0500
51594
51595     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
51596
51597     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51598
51599 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
51600 Author: Jon Loeliger <jdl@freescale.com>
51601 Date:   Sun Jul 8 14:21:43 2007 -0500
51602
51603     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
51604
51605     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51606
51607 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
51608 Author: Jon Loeliger <jdl@freescale.com>
51609 Date:   Sun Jul 8 14:14:17 2007 -0500
51610
51611     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
51612
51613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51614
51615 commit 348f258f24253433e4a2302a0bbceb6740a67246
51616 Author: Jon Loeliger <jdl@freescale.com>
51617 Date:   Sun Jul 8 13:46:18 2007 -0500
51618
51619     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
51620
51621     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51622
51623 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
51624 Author: Jon Loeliger <jdl@freescale.com>
51625 Date:   Sun Jul 8 10:09:35 2007 -0500
51626
51627     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
51628
51629     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51630
51631 commit 60a0876b5106b34220e459c208bbf648073306c0
51632 Author: Jon Loeliger <jdl@freescale.com>
51633 Date:   Sat Jul 7 21:04:26 2007 -0500
51634
51635     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
51636
51637     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51638
51639 commit dcaa71562826a2466e894c868d132509dcda8444
51640 Author: Jon Loeliger <jdl@freescale.com>
51641 Date:   Sat Jul 7 20:56:05 2007 -0500
51642
51643     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
51644
51645     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51646
51647 commit 3c3227f3c737502311b25b72084573901cbbf17d
51648 Author: Jon Loeliger <jdl@freescale.com>
51649 Date:   Sat Jul 7 20:40:43 2007 -0500
51650
51651     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
51652
51653     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51654
51655 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
51656 Author: Jon Loeliger <jdl@freescale.com>
51657 Date:   Thu Jul 5 19:52:35 2007 -0500
51658
51659     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
51660
51661     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51662
51663 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
51664 Author: Jon Loeliger <jdl@freescale.com>
51665 Date:   Thu Jul 5 19:32:07 2007 -0500
51666
51667     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
51668
51669     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51670
51671 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
51672 Author: Jon Loeliger <jdl@freescale.com>
51673 Date:   Thu Jul 5 19:13:52 2007 -0500
51674
51675     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
51676
51677     Since ADS860.h includes "board/fads/fads.h" with ramifications
51678     on the CONFIG_COMMAND treatment, it too has to be adjusted to
51679     exclude already configured commands in this same commit.
51680
51681     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51682
51683 commit 10e038932f22ee80ebd53de312531e70e6590a2f
51684 Author: Thomas Knobloch <knobloch@siemens.com>
51685 Date:   Fri Jul 6 14:58:39 2007 +0200
51686
51687     [NAND] Bad block skipping for command nboot
51688
51689     The old implementation of command nboot does not support reading the image from
51690     NAND flash with skipping of bad blocks. The patch implements a new version of
51691     the nboot command: by calling nboot.jffs2 from the u-boot command line the
51692     command will load the image from NAND flash with respect to bad blocks (by using
51693     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
51694     read.jffs2 ...".
51695
51696     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
51697     Signed-off-by: Stefan Roese <sr@denx.de>
51698
51699 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
51700 Author: Stefan Roese <sr@denx.de>
51701 Date:   Fri Jul 6 12:26:51 2007 +0200
51702
51703     ppc4xx: Update lwmon5 default environment
51704
51705     Signed-off-by: Stefan Roese <sr@denx.de>
51706
51707 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
51708 Author: Stefan Roese <sr@denx.de>
51709 Date:   Fri Jul 6 11:48:24 2007 +0200
51710
51711     ppc4xx: Update lwmon5 board
51712
51713     Add unlock=yes environment variable to default variables to unlock
51714     the CFI flash by default.
51715
51716     Signed-off-by: Stefan Roese <sr@denx.de>
51717
51718 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
51719 Author: Stefan Roese <sr@denx.de>
51720 Date:   Fri Jul 6 09:45:47 2007 +0200
51721
51722     Fix problem with get/setdcr commands introduced by cfg patches
51723
51724     Signed-off-by: Stefan Roese <sr@denx.de>
51725
51726 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
51727 Author: Wolfgang Denk <wd@denx.de>
51728 Date:   Fri Jul 6 02:50:19 2007 +0200
51729
51730     Code cleanup and default config update for STC GP3 SSA board.
51731
51732     Signed-off-by: Wolfgang Denk <wd@denx.de>
51733
51734 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
51735 Author: Wolfgang Denk <wd@denx.de>
51736 Date:   Thu Jul 5 17:56:27 2007 +0200
51737
51738     Fixing some typos etc. introduced mainly by cfg patches.
51739
51740     Signed-off-by: Wolfgang Denk <wd@denx.de>
51741
51742 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
51743 Author: Wolfgang Denk <wd@denx.de>
51744 Date:   Thu Jul 5 11:12:16 2007 +0200
51745
51746     Minor coding style cleanup. Update CHANGELOG.
51747
51748 commit dca3b3d6d6396b67e5e84af53452164923c73443
51749 Author: Jon Loeliger <jdl@jdl.com>
51750 Date:   Wed Jul 4 22:33:46 2007 -0500
51751
51752     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
51753
51754     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51755
51756 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
51757 Author: Jon Loeliger <jdl@jdl.com>
51758 Date:   Wed Jul 4 22:33:38 2007 -0500
51759
51760     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
51761
51762     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51763
51764 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
51765 Author: Jon Loeliger <jdl@jdl.com>
51766 Date:   Wed Jul 4 22:33:30 2007 -0500
51767
51768     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
51769
51770     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51771
51772 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
51773 Author: Jon Loeliger <jdl@jdl.com>
51774 Date:   Wed Jul 4 22:33:23 2007 -0500
51775
51776     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
51777
51778     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51779
51780 commit 26a34560d56a9df5bc2ae23525d9229736134757
51781 Author: Jon Loeliger <jdl@jdl.com>
51782 Date:   Wed Jul 4 22:33:17 2007 -0500
51783
51784     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
51785
51786     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51787
51788 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
51789 Author: Jon Loeliger <jdl@jdl.com>
51790 Date:   Wed Jul 4 22:33:13 2007 -0500
51791
51792     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
51793
51794     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51795
51796 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
51797 Author: Jon Loeliger <jdl@jdl.com>
51798 Date:   Wed Jul 4 22:33:07 2007 -0500
51799
51800     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
51801
51802     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51803
51804 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
51805 Author: Jon Loeliger <jdl@jdl.com>
51806 Date:   Wed Jul 4 22:33:01 2007 -0500
51807
51808     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
51809
51810     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51811
51812 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
51813 Author: Jon Loeliger <jdl@jdl.com>
51814 Date:   Wed Jul 4 22:32:57 2007 -0500
51815
51816     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
51817
51818     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51819
51820 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
51821 Author: Jon Loeliger <jdl@jdl.com>
51822 Date:   Wed Jul 4 22:32:51 2007 -0500
51823
51824     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
51825
51826     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51827
51828 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
51829 Author: Jon Loeliger <jdl@jdl.com>
51830 Date:   Wed Jul 4 22:32:32 2007 -0500
51831
51832     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
51833
51834     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51835
51836 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
51837 Author: Jon Loeliger <jdl@jdl.com>
51838 Date:   Wed Jul 4 22:32:25 2007 -0500
51839
51840     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
51841
51842     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51843
51844 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
51845 Author: Jon Loeliger <jdl@jdl.com>
51846 Date:   Wed Jul 4 22:32:19 2007 -0500
51847
51848     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
51849
51850     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51851
51852 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
51853 Author: Jon Loeliger <jdl@jdl.com>
51854 Date:   Wed Jul 4 22:32:10 2007 -0500
51855
51856     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
51857
51858     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51859
51860 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
51861 Author: Jon Loeliger <jdl@jdl.com>
51862 Date:   Wed Jul 4 22:32:03 2007 -0500
51863
51864     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
51865
51866     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51867
51868 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
51869 Author: Jon Loeliger <jdl@jdl.com>
51870 Date:   Wed Jul 4 22:31:56 2007 -0500
51871
51872     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
51873
51874     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51875
51876 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
51877 Author: Jon Loeliger <jdl@jdl.com>
51878 Date:   Wed Jul 4 22:31:49 2007 -0500
51879
51880     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
51881
51882     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51883
51884 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
51885 Author: Jon Loeliger <jdl@jdl.com>
51886 Date:   Wed Jul 4 22:31:42 2007 -0500
51887
51888     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
51889
51890     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51891
51892 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
51893 Author: Jon Loeliger <jdl@jdl.com>
51894 Date:   Wed Jul 4 22:31:35 2007 -0500
51895
51896     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
51897
51898     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51899
51900 commit d794cfefead5fc177cf4f41164e80382e9c9484a
51901 Author: Jon Loeliger <jdl@jdl.com>
51902 Date:   Wed Jul 4 22:31:15 2007 -0500
51903
51904     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
51905
51906     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51907
51908 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
51909 Author: Jon Loeliger <jdl@jdl.com>
51910 Date:   Wed Jul 4 22:31:07 2007 -0500
51911
51912     include/configs: Use new CONFIG_CMD_* in STx board config files.
51913
51914     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51915
51916 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
51917 Author: Jon Loeliger <jdl@jdl.com>
51918 Date:   Wed Jul 4 22:30:58 2007 -0500
51919
51920     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
51921
51922     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51923
51924 commit 2694690e285acaa34922f55f4b5ae030da60c55a
51925 Author: Jon Loeliger <jdl@jdl.com>
51926 Date:   Wed Jul 4 22:30:50 2007 -0500
51927
51928     include/configs: Use new CONFIG_CMD_* in TQM board config files.
51929
51930     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51931
51932 commit 1cc4c458329765b58e584a19821e796b3c10e976
51933 Author: Jon Loeliger <jdl@jdl.com>
51934 Date:   Wed Jul 4 22:30:28 2007 -0500
51935
51936     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
51937
51938     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51939
51940 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
51941 Author: Jon Loeliger <jdl@jdl.com>
51942 Date:   Wed Jul 4 22:30:06 2007 -0500
51943
51944     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
51945
51946     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51947
51948 commit b44896215a09c60fa40cae906f7ed207bbc2c492
51949 Author: Sergei Poselenov <sposelenov@emcraft.com>
51950 Date:   Thu Jul 5 08:17:37 2007 +0200
51951
51952     Merged POST framework with the current TOT.
51953
51954     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
51955
51956 commit b24629fa377214d63bb40d1360e354b6d3e4af56
51957 Author: Jon Loeliger <jdl@jdl.com>
51958 Date:   Wed Jun 13 13:23:15 2007 -0500
51959
51960     mpc86xx: Remove old CFG_CMD_* references.
51961
51962     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51963
51964 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
51965 Author: Jon Loeliger <jdl@jdl.com>
51966 Date:   Wed Jun 13 13:22:54 2007 -0500
51967
51968     Add MPC8568MDS to MAKEALL 85xx target.
51969
51970     It was missing from the original port submission.
51971
51972     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51973
51974 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
51975 Author: Jon Loeliger <jdl@jdl.com>
51976 Date:   Wed Jun 13 13:22:08 2007 -0500
51977
51978     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
51979
51980     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51981
51982 commit 56b304ac2091689506088a9ae67f63fd6300cf16
51983 Author: Jon Loeliger <jdl@jdl.com>
51984 Date:   Wed Jun 13 13:21:37 2007 -0500
51985
51986     Fix #if typo in CONFIG_CMD_* changes.
51987
51988     Signed-off-by: Jon Loeliger <jdl@freescale.com>
51989
51990 commit f780b83316d9af1f61d71cc88b1917b387b9b995
51991 Author: Niklaus Giger <niklausgiger@gmx.ch>
51992 Date:   Wed Jun 27 18:11:38 2007 +0200
51993
51994     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
51995
51996     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
51997
51998 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
51999 Author: Stefan Roese <sr@denx.de>
52000 Date:   Wed Jul 4 10:06:30 2007 +0200
52001
52002     ppc4xx: Update lwmon5 board
52003
52004     - Add optional ECC generation routine to preserve existing
52005       RAM values. This is needed for the Linux log-buffer support
52006     - Add optional DDR2 setup with CL=4
52007     - GPIO50 not used anymore
52008     - Lime register setup added
52009
52010     Signed-off-by: Stefan Roese <sr@denx.de>
52011
52012 commit 6810a34677dbc446334f5e451f1682426dd33b49
52013 Author: Grant Likely <grant.likely@secretlab.ca>
52014 Date:   Tue Jul 3 00:17:28 2007 -0600
52015
52016     Fix Makefile to use $(MKCONFIG) macro for all board ports
52017
52018     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52019
52020 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
52021 Author: Grant Likely <grant.likely@secretlab.ca>
52022 Date:   Tue Jul 3 00:17:28 2007 -0600
52023
52024     Fix Makefile to use $(MKCONFIG) macro for all board ports
52025
52026     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52027
52028 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
52029 Author: Grant Likely <grant.likely@secretlab.ca>
52030 Date:   Tue Jul 3 00:34:49 2007 -0600
52031
52032     Correct fixup relocation for mpc83xx
52033
52034     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52035
52036 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
52037 Author: Grant Likely <grant.likely@secretlab.ca>
52038 Date:   Tue Jul 3 00:34:44 2007 -0600
52039
52040     Correct fixup relocation for mpc8260
52041
52042     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52043
52044 commit f3a52fe05923935db86985daf9438e2f70ac39aa
52045 Author: Grant Likely <grant.likely@secretlab.ca>
52046 Date:   Tue Jul 3 00:34:39 2007 -0600
52047
52048     Correct fixup relocation for mpc824x
52049
52050     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52051
52052 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
52053 Author: Grant Likely <grant.likely@secretlab.ca>
52054 Date:   Tue Jul 3 00:34:34 2007 -0600
52055
52056     Correct fixup relocation for mpc8220
52057
52058     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52059
52060 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
52061 Author: Grant Likely <grant.likely@secretlab.ca>
52062 Date:   Tue Jul 3 00:34:29 2007 -0600
52063
52064     Correct fixup relocation for MPC5xxx
52065
52066     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52067
52068 commit 3649cd99ba815b6601868735765602f00ef3692b
52069 Author: Grant Likely <grant.likely@secretlab.ca>
52070 Date:   Tue Jul 3 00:34:24 2007 -0600
52071
52072     Correct relocation fixup for mpc5xx
52073
52074     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52075
52076 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
52077 Author: Grant Likely <grant.likely@secretlab.ca>
52078 Date:   Tue Jul 3 00:34:19 2007 -0600
52079
52080     Don't set gd->reloc_off if relocation of .fixup works correctly
52081
52082     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52083
52084 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
52085 Author: Grant Likely <grant.likely@secretlab.ca>
52086 Date:   Tue Jul 3 00:34:14 2007 -0600
52087
52088     Remove obsolete mpc83xx linker scripts
52089
52090     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52091
52092 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
52093 Author: Grant Likely <grant.likely@secretlab.ca>
52094 Date:   Tue Jul 3 00:34:09 2007 -0600
52095
52096     Consolidate mpc8260 linker scripts
52097
52098     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52099
52100 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
52101 Author: Grant Likely <grant.likely@secretlab.ca>
52102 Date:   Tue Jul 3 00:34:04 2007 -0600
52103
52104     Remove obsolete mpc824x linker scripts
52105
52106     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52107
52108 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
52109 Author: Grant Likely <grant.likely@secretlab.ca>
52110 Date:   Tue Jul 3 00:33:59 2007 -0600
52111
52112     Remove obsolete mpc824x linker scripts (3 of 4)
52113
52114     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52115
52116 commit a71c084f3ac7fedf144537db2b2da47323068833
52117 Author: Grant Likely <grant.likely@secretlab.ca>
52118 Date:   Tue Jul 3 00:33:53 2007 -0600
52119
52120     Remove obsolete mpc824x linker scripts (2 of 4)
52121
52122     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52123
52124 commit f670a15468d1365241d40022b9408e1004181f5e
52125 Author: Grant Likely <grant.likely@secretlab.ca>
52126 Date:   Tue Jul 3 00:33:48 2007 -0600
52127
52128     Remove obsolete mpc824x linker scripts (1 of 4)
52129
52130     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52131
52132 commit 09555bd45a04c0e54f172528d21bc18896550d28
52133 Author: Grant Likely <grant.likely@secretlab.ca>
52134 Date:   Tue Jul 3 00:33:43 2007 -0600
52135
52136     Remove obsolete mpc8220 linker scripts
52137
52138     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52139
52140 commit 5efb992f046e51225c93d52f80fecbe433abd789
52141 Author: Grant Likely <grant.likely@secretlab.ca>
52142 Date:   Tue Jul 3 00:33:38 2007 -0600
52143
52144     Remove obsolete mpc5xxx linker scripts (3 of 3)
52145
52146     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52147
52148 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
52149 Author: Grant Likely <grant.likely@secretlab.ca>
52150 Date:   Tue Jul 3 00:33:33 2007 -0600
52151
52152     Remove obsolete mpc5xxx linker scripts (2 of 3)
52153
52154     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52155
52156 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
52157 Author: Grant Likely <grant.likely@secretlab.ca>
52158 Date:   Tue Jul 3 00:33:28 2007 -0600
52159
52160     Remove obsolete mpc5xxx linker scripts (1 of 3)
52161
52162     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52163
52164 commit b7d8e05f8675249b5f208aa73babeed384a4519d
52165 Author: Grant Likely <grant.likely@secretlab.ca>
52166 Date:   Tue Jul 3 00:33:23 2007 -0600
52167
52168     Remove obsolete mpc5xx linker scripts
52169
52170     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52171
52172 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
52173 Author: Grant Likely <grant.likely@secretlab.ca>
52174 Date:   Tue Jul 3 00:33:18 2007 -0600
52175
52176     Consolidate mpc83xx linker scripts
52177
52178     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52179
52180 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
52181 Author: Grant Likely <grant.likely@secretlab.ca>
52182 Date:   Tue Jul 3 00:33:13 2007 -0600
52183
52184     Consolidate mpc8260 linker scripts
52185
52186     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52187
52188 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
52189 Author: Grant Likely <grant.likely@secretlab.ca>
52190 Date:   Tue Jul 3 00:33:08 2007 -0600
52191
52192     Consolidate mpc824x linker scripts
52193
52194     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52195
52196 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
52197 Author: Grant Likely <grant.likely@secretlab.ca>
52198 Date:   Tue Jul 3 00:33:03 2007 -0600
52199
52200     Consolidate mpc8220 linker scripts
52201
52202     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52203
52204 commit d181c9a15cd41863fe24840d17848429f27d3c8c
52205 Author: Grant Likely <grant.likely@secretlab.ca>
52206 Date:   Tue Jul 3 00:32:58 2007 -0600
52207
52208     Consolidate mpc5xxx linker scripts
52209
52210     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52211
52212 commit 287ac924adb7291bebe5086652a362a30ab28b13
52213 Author: Grant Likely <grant.likely@secretlab.ca>
52214 Date:   Tue Jul 3 00:32:53 2007 -0600
52215
52216     Consolidate mpc5xx linker scripts
52217
52218     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
52219
52220 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
52221 Author: Wolfgang Denk <wd@denx.de>
52222 Date:   Wed Jul 4 00:43:53 2007 +0200
52223
52224     Fix a few file permission problems.
52225
52226     Signed-off-by: Wolfgang Denk <wd@denx.de>
52227
52228 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
52229 Author: Wolfgang Denk <wd@denx.de>
52230 Date:   Wed Jul 4 00:38:38 2007 +0200
52231
52232     Minor coding style cleanup. Rebuild CHANGELOG file.
52233
52234 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
52235 Author: Jon Loeliger <jdl@jdl.com>
52236 Date:   Mon Jun 11 19:03:44 2007 -0500
52237
52238     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
52239
52240     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52241
52242 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
52243 Author: Jon Loeliger <jdl@jdl.com>
52244 Date:   Mon Jun 11 19:03:39 2007 -0500
52245
52246     README: Rewrite command line config to use CONFIG_CMD_* names.
52247
52248     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52249
52250 commit 72a074cec68e5bad60d63206c050974e08afd804
52251 Author: Jon Loeliger <jdl@jdl.com>
52252 Date:   Mon Jun 11 19:03:34 2007 -0500
52253
52254     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52255
52256     This is a compatibility step that allows both the older form
52257     and the new form to co-exist for a while until the older can
52258     be removed entirely.
52259
52260     All transformations are of the form:
52261     Before:
52262         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52263     After:
52264         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52265
52266     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52267
52268 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
52269 Author: Jon Loeliger <jdl@jdl.com>
52270 Date:   Mon Jun 11 19:03:28 2007 -0500
52271
52272     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52273
52274     This is a compatibility step that allows both the older form
52275     and the new form to co-exist for a while until the older can
52276     be removed entirely.
52277
52278     All transformations are of the form:
52279     Before:
52280         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52281     After:
52282         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52283
52284     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52285
52286 commit 9107ebe0d352420895ab69b715697bdebc8caf50
52287 Author: Jon Loeliger <jdl@jdl.com>
52288 Date:   Mon Jun 11 19:03:23 2007 -0500
52289
52290     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52291
52292     This is a compatibility step that allows both the older form
52293     and the new form to co-exist for a while until the older can
52294     be removed entirely.
52295
52296     All transformations are of the form:
52297     Before:
52298         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52299     After:
52300         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52301
52302     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52303
52304 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
52305 Author: Jon Loeliger <jdl@jdl.com>
52306 Date:   Mon Jun 11 19:03:19 2007 -0500
52307
52308     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52309
52310     This is a compatibility step that allows both the older form
52311     and the new form to co-exist for a while until the older can
52312     be removed entirely.
52313
52314     All transformations are of the form:
52315     Before:
52316         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52317     After:
52318         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52319
52320     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52321
52322 commit 737184114ec9c9e0ab94d6713536126073bd2472
52323 Author: Jon Loeliger <jdl@jdl.com>
52324 Date:   Mon Jun 11 19:03:15 2007 -0500
52325
52326     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52327
52328     This is a compatibility step that allows both the older form
52329     and the new form to co-exist for a while until the older can
52330     be removed entirely.
52331
52332     All transformations are of the form:
52333     Before:
52334         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52335     After:
52336         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52337
52338     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52339
52340 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
52341 Author: Jon Loeliger <jdl@jdl.com>
52342 Date:   Mon Jun 11 19:03:08 2007 -0500
52343
52344     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52345
52346     This is a compatibility step that allows both the older form
52347     and the new form to co-exist for a while until the older can
52348     be removed entirely.
52349
52350     All transformations are of the form:
52351     Before:
52352         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52353     After:
52354         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52355
52356     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52357
52358 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
52359 Author: Jon Loeliger <jdl@jdl.com>
52360 Date:   Mon Jun 11 19:03:03 2007 -0500
52361
52362     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52363
52364     This is a compatibility step that allows both the older form
52365     and the new form to co-exist for a while until the older can
52366     be removed entirely.
52367
52368     All transformations are of the form:
52369     Before:
52370         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52371     After:
52372         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52373
52374     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52375
52376 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
52377 Author: Jon Loeliger <jdl@jdl.com>
52378 Date:   Mon Jun 11 19:02:58 2007 -0500
52379
52380     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52381
52382     This is a compatibility step that allows both the older form
52383     and the new form to co-exist for a while until the older can
52384     be removed entirely.
52385
52386     All transformations are of the form:
52387     Before:
52388         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52389     After:
52390         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52391
52392     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52393
52394 commit 98b79003c21c2578206003256de4e781d6b36ca8
52395 Author: Jon Loeliger <jdl@jdl.com>
52396 Date:   Mon Jun 11 19:02:53 2007 -0500
52397
52398     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52399
52400     This is a compatibility step that allows both the older form
52401     and the new form to co-exist for a while until the older can
52402     be removed entirely.
52403
52404     All transformations are of the form:
52405     Before:
52406         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52407     After:
52408         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52409
52410     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52411
52412 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
52413 Author: Jon Loeliger <jdl@jdl.com>
52414 Date:   Mon Jun 11 19:02:49 2007 -0500
52415
52416     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52417
52418     This is a compatibility step that allows both the older form
52419     and the new form to co-exist for a while until the older can
52420     be removed entirely.
52421
52422     All transformations are of the form:
52423     Before:
52424         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52425     After:
52426         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52427
52428     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52429
52430 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
52431 Author: Jon Loeliger <jdl@jdl.com>
52432 Date:   Mon Jun 11 19:02:34 2007 -0500
52433
52434     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52435
52436     This is a compatibility step that allows both the older form
52437     and the new form to co-exist for a while until the older can
52438     be removed entirely.
52439
52440     All transformations are of the form:
52441     Before:
52442         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52443     After:
52444         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52445
52446     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52447
52448 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
52449 Author: Jon Loeliger <jdl@jdl.com>
52450 Date:   Mon Jun 11 19:02:20 2007 -0500
52451
52452     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52453
52454     This is a compatibility step that allows both the older form
52455     and the new form to co-exist for a while until the older can
52456     be removed entirely.
52457
52458     All transformations are of the form:
52459     Before:
52460         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52461     After:
52462         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52463
52464     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52465
52466 commit d5be43de93ff905c465e509d45a3164ef48d26e7
52467 Author: Jon Loeliger <jdl@jdl.com>
52468 Date:   Mon Jun 11 19:02:10 2007 -0500
52469
52470     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52471
52472     This is a compatibility step that allows both the older form
52473     and the new form to co-exist for a while until the older can
52474     be removed entirely.
52475
52476     All transformations are of the form:
52477     Before:
52478         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52479     After:
52480         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52481
52482     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52483
52484 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
52485 Author: Jon Loeliger <jdl@jdl.com>
52486 Date:   Mon Jun 11 19:02:05 2007 -0500
52487
52488     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52489
52490     This is a compatibility step that allows both the older form
52491     and the new form to co-exist for a while until the older can
52492     be removed entirely.
52493
52494     All transformations are of the form:
52495     Before:
52496         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52497     After:
52498         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52499
52500     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52501
52502 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
52503 Author: Jon Loeliger <jdl@jdl.com>
52504 Date:   Mon Jun 11 19:01:54 2007 -0500
52505
52506     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52507
52508     This is a compatibility step that allows both the older form
52509     and the new form to co-exist for a while until the older can
52510     be removed entirely.
52511
52512     All transformations are of the form:
52513     Before:
52514         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52515     After:
52516         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52517
52518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52519
52520 commit a76adc8142c1d956385a109e0b70f9319ede4d66
52521 Author: Jon Loeliger <jdl@jdl.com>
52522 Date:   Mon Jun 11 19:01:43 2007 -0500
52523
52524     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
52525
52526     This is a compatibility step that allows both the older form
52527     and the new form to co-exist for a while until the older can
52528     be removed entirely.
52529
52530     All transformations are of the form:
52531     Before:
52532         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
52533     After:
52534         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
52535
52536     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52537
52538 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
52539 Author: Jon Loeliger <jdl@jdl.com>
52540 Date:   Mon Jun 11 19:01:34 2007 -0500
52541
52542     Introduce initial versions of new Command Config files.
52543
52544     Derive three new files from cmd_confdefs.h:
52545         config_bootp.h - Has BOOTP related config options, not commands
52546         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
52547         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
52548
52549     For now, include "config_bootp.h" for compatability until all
52550     users of it directly include it properly.
52551
52552     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52553
52554 commit 1f2a05898658900dc5717761e27abf2052e67e13
52555 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
52556 Date:   Sat Jun 30 18:50:48 2007 +0200
52557
52558     Fix S-ATA support.
52559
52560     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
52561
52562 commit a5d71e290f3673269be8eefb4ec44f53412f9461
52563 Author: Heiko Schocher <hs@pollux.denx.de>
52564 Date:   Mon Jun 25 19:11:37 2007 +0200
52565
52566     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
52567
52568     Signed-off-by: Heiko Schocher <hs@denx.de>
52569
52570 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
52571 Author: Niklaus Giger <niklaus.giger@nestal.com>
52572 Date:   Mon Jun 25 17:03:13 2007 +0200
52573
52574     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
52575
52576     This patch prints the DDR status registers upon machine check
52577     interrupt on the 440EPx/GRx. This can be useful especially when
52578     ECC support is enabled.
52579
52580     I added some small changes to the original patch from Niklaus to
52581     make it compile clean.
52582
52583     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
52584     Signed-off-by: Stefan Roese <sr@denx.de>
52585
52586 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
52587 Author: Niklaus Giger <niklaus.giger@nestal.com>
52588 Date:   Mon Jun 25 16:50:55 2007 +0200
52589
52590     ppc4xx: Fix O=buildir builds
52591
52592     This patch fixes the problem to assemble cpu/ppc4xx/start.S
52593     experienced last week where building failed having specified
52594     O=../build.sequoia.
52595
52596     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
52597
52598 commit 466fff1a7bb5fe764a06450626f6098219f446b8
52599 Author: Stefan Roese <sr@denx.de>
52600 Date:   Mon Jun 25 15:57:39 2007 +0200
52601
52602     ppc4xx: Add pci_pre_init() for 405 boards
52603
52604     This patch removes the CFG_PCI_PRE_INIT option completely, since
52605     it's not needed anymore with the patch from Matthias Fuchs with
52606     the "weak" pci_pre_init() implementation.
52607
52608     Signed-off-by: Stefan Roese <sr@denx.de>
52609
52610 commit 6f35c53166213c24a5a0e2390ed861136ff73870
52611 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52612 Date:   Sun Jun 24 17:41:21 2007 +0200
52613
52614     ppc4xx: Maintenance patch for esd's CPCI405 derivats
52615
52616     -add pci_pre_init() for pci interrupt fixup code
52617     -disable phy sleep mode via reset_phy() function
52618     -use correct io accessors
52619     -cleanup
52620
52621     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52622
52623 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
52624 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52625 Date:   Sun Jun 24 17:23:41 2007 +0200
52626
52627     ppc4xx: Add pci_pre_init() for 405 boards
52628
52629     This patch adds support for calling a plattform dependant
52630     pci_pre_init() function for 405 boards. This can be used to
52631     move the current pci_405gp_fixup_irq() function into the
52632     board code.
52633
52634     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
52635     A default function with 'weak' attribute is used when
52636     a board specific pci_pre_init() is not implemented.
52637
52638     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
52639
52640 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
52641 Author: Wolfgang Denk <wd@denx.de>
52642 Date:   Fri Jun 22 23:59:00 2007 +0200
52643
52644     Coding stylke cleanup; rebuild CHANGELOG
52645
52646 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
52647 Author: Igor Lisitsin <igor@emcraft.com>
52648 Date:   Wed Apr 18 14:55:19 2007 +0400
52649
52650     Adapt log buffer code to support Linux 2.6
52651
52652     A new environment variable, "logversion", selects the log buffer
52653     behaviour. If it is not set or set to a value other than 2, then the
52654     old, Linux 2.4.4, behaviour is selected.
52655
52656     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
52657     --
52658
52659 commit a11e06965ec91270c51853407ff1261d3c740386
52660 Author: Igor Lisitsin <igor@emcraft.com>
52661 Date:   Wed Mar 28 19:06:19 2007 +0400
52662
52663     Extend POST support for PPC440
52664
52665     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
52666
52667     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
52668     --
52669
52670 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
52671 Author: Heiko Schocher <hs@pollux.denx.de>
52672 Date:   Fri Jun 22 19:11:54 2007 +0200
52673
52674     [PCS440EP]      upgrade the PCS440EP board:
52675                     - Show on the Status LEDs, some States of the board.
52676                     - Get the MAC addresses from the EEProm
52677                     - use PREBOOT
52678                     - use the CF on the board.
52679                     - check the U-Boot image in the Flash with a SHA1
52680                       checksum.
52681                     - use dynamic TLB entries generation for the SDRAM
52682
52683     Signed-off-by: Heiko Schocher <hs@denx.de>
52684
52685 commit 3a1f5c81b0b9557817a789bece839905581c2205
52686 Author: Stefan Roese <sr@denx.de>
52687 Date:   Fri Jun 22 16:58:40 2007 +0200
52688
52689     ppc4xx: Fix problem with extended program_tlb() funtion
52690
52691     The recently extended program_tlb() function had a problem when
52692     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
52693     virtual address was not incremented. This patch fixes this issue
52694     and is tested on Katmai with 512MB SDRAM.
52695
52696     Signed-off-by: Stefan Roese <sr@denx.de>
52697
52698 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
52699 Author: Rafal Jaworowski <raj@semihalf.com>
52700 Date:   Fri Jun 22 14:58:04 2007 +0200
52701
52702     [ppc] Fix build breakage for all non-4xx PowerPC variants.
52703
52704     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
52705     - minor 4xx cleanup
52706
52707 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
52708 Author: Mike Frysinger <vapier@gentoo.org>
52709 Date:   Fri Jun 22 10:34:12 2007 +0200
52710
52711     [patch] add nand_init() prototype to nand.h
52712
52713     since nand_init() is expected to be called by other parts of u-boot, there
52714     should be a prototype for it in nand.h
52715
52716     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52717     Signed-off-by: Stefan Roese <sr@denx.de>
52718
52719 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
52720 Author: Wolfgang Denk <wd@denx.de>
52721 Date:   Wed Jun 20 18:14:24 2007 +0200
52722
52723     Coding style cleanup. Refresh CHANGELOG.
52724
52725 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
52726 Author: Stefan Roese <sr@denx.de>
52727 Date:   Tue Jun 19 17:22:44 2007 +0200
52728
52729     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
52730
52731     This patch adds a board command to configure the I2C bootstrap EEPROM
52732     values. Right now 533 and 667MHz are supported for booting either via NOR
52733     or NAND FLASH. Here the usage:
52734
52735     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
52736     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
52737
52738     Signed-off-by: Stefan Roese <sr@denx.de>
52739
52740 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
52741 Author: Stefan Roese <sr@denx.de>
52742 Date:   Tue Jun 19 16:42:31 2007 +0200
52743
52744     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
52745
52746     The latest changes showed a problem with the location of the NAND-SPL
52747     image in the OCM and the init-data area (incl. cache). This patch
52748     fixes this problem.
52749
52750     Signed-off-by: Stefan Roese <sr@denx.de>
52751
52752 commit 86ba99e34194394052d24c04dc40d1263d29a26f
52753 Author: Stefan Roese <sr@denx.de>
52754 Date:   Tue Jun 19 16:40:58 2007 +0200
52755
52756     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
52757
52758     Signed-off-by: Stefan Roese <sr@denx.de>
52759
52760 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
52761 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
52762 Date:   Mon Jun 18 13:50:13 2007 -0500
52763
52764     Added M5329AFEE and M5329BFEE Platforms
52765
52766     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
52767     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
52768     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
52769     rtc/mcfrtc.c
52770
52771     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
52772     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
52773     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
52774     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
52775     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
52776     lib_m68k/time.c, net/eth.c and rtc/Makefile
52777
52778     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
52779
52780 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
52781 Author: Michal Simek <monstr@monstr.eu>
52782 Date:   Sun Jun 17 19:04:11 2007 +0200
52783
52784     [fix] email reparation
52785
52786 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
52787 Author: Michal Simek <monstr@monstr.eu>
52788 Date:   Sun Jun 17 19:03:21 2007 +0200
52789
52790     [FIX] fix microblaze file permitission
52791
52792 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
52793 Author: Stefan Roese <sr@denx.de>
52794 Date:   Fri Jun 15 11:33:41 2007 +0200
52795
52796     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
52797
52798     Now CONFIG_440 has to be defined in all PPC440 board config files.
52799
52800     Signed-off-by: Stefan Roese <sr@denx.de>
52801
52802 commit efa35cf12d914d4caba942acd5a6c45f217de302
52803 Author: Grzegorz Bernacki <gjb@semihalf.com>
52804 Date:   Fri Jun 15 11:19:28 2007 +0200
52805
52806     ppc4xx: Clean up 440 exceptions handling
52807
52808     - Introduced dedicated switches for building 440 and 405 images required
52809       for 440-specific machine instructions like 'rfmci' etc.
52810
52811     - Exception vectors moved to the proper location (_start moved away from
52812       the critical exception handler space, which it occupied)
52813
52814     - CriticalInput now serviced (with default handler)
52815
52816     - MachineCheck properly serviced (added a dedicated handler and return
52817       subroutine)
52818
52819     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
52820       unhandled and those not relevant for 4xx were eliminated)
52821
52822     - Eliminated Linux leftovers, removed dead code
52823
52824     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
52825     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
52826     Signed-off-by: Stefan Roese <sr@denx.de>
52827
52828 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
52829 Author: Stefan Roese <sr@denx.de>
52830 Date:   Fri Jun 15 08:18:01 2007 +0200
52831
52832     [ppc4xx] Add initial lwmon5 board support
52833
52834     This patch adds initial support for the Liebherr lwmon5 board euqipped
52835     with an AMCC 440EPx PowerPC.
52836
52837     Signed-off-by: Stefan Roese <sr@denx.de>
52838
52839 commit 85f737376d5ff3d5f0d45a8b657686326d175307
52840 Author: Stefan Roese <sr@denx.de>
52841 Date:   Fri Jun 15 07:39:43 2007 +0200
52842
52843     [ppc4xx] Extend 44x GPIO setup with default output state
52844
52845     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
52846     is extended with the default GPIO output state (level).
52847
52848     Signed-off-by: Stefan Roese <sr@denx.de>
52849
52850 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
52851 Author: Stefan Roese <sr@denx.de>
52852 Date:   Thu Jun 14 11:14:32 2007 +0200
52853
52854     [ppc4xx] Extend program_tlb() with virtual & physical addresses
52855
52856     Now program_tlb() allows to program a TLB (or multiple) with
52857     different virtual and physical addresses. With this change, now one
52858     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
52859     diabled and once with caches enabled.
52860
52861     Signed-off-by: Stefan Roese <sr@denx.de>
52862
52863 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
52864 Author: Detlev Zundel <dzu@denx.de>
52865 Date:   Wed May 23 19:02:41 2007 +0200
52866
52867     Change 'repeatable' attribute of some commands to sensible values.
52868
52869     Most prominently this changes 'erase' to be non-repeatable.
52870
52871     Signed-off-by: Detlev Zundel <dzu@denx.de>
52872
52873 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
52874 Author: Detlev Zundel <dzu@denx.de>
52875 Date:   Wed May 23 18:47:48 2007 +0200
52876
52877     Fix 'run' not to continue after interrupted command
52878
52879     Signed-off-by: Detlev Zundel <dzu@denx.de>
52880
52881 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
52882 Author: Jason Jin <Jason.jin@freescale.com>
52883 Date:   Mon Jun 11 15:14:24 2007 +0200
52884
52885     USB: This patch fix readl in ohci swap reg access.
52886
52887     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
52888
52889 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
52890 Author: Bartlomiej Sieka <tur@semihalf.com>
52891 Date:   Fri Jun 8 14:52:22 2007 +0200
52892
52893     TQM5200: Add Flat Device Tree support, update default env. accordingly.
52894
52895     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
52896     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
52897
52898 commit 9045f33c023f698660a2e45d1b2194c0711abebc
52899 Author: Wolfgang Denk <wd@denx.de>
52900 Date:   Fri Jun 8 10:24:58 2007 +0200
52901
52902     Fix config problems on SC3 board; make ide_reset_timeout work.
52903
52904 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
52905 Author: Benoît Monin <bmonin@adeneo.eu>
52906 Date:   Fri Jun 8 09:55:24 2007 +0200
52907
52908     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
52909
52910     Set the correct value in GPIOx_TCR when configuring the gpio
52911     with CFG_440_GPIO_TABLE.
52912
52913     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
52914     Signed-off-by: Stefan Roese <sr@denx.de>
52915
52916 commit f539edc076cfe52bff919dd512ba8d7af0e22092
52917 Author: Vadim Bendebury <vbendeb@google.com>
52918 Date:   Thu May 24 15:52:25 2007 -0700
52919
52920     cosmetic changes to bcm570x driver
52921
52922     This is a cosmetic only changes submission.
52923     It affects files relevant to bcm570x driver.
52924     the commands used to generate this change was
52925
52926     cd drivers
52927     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
52928
52929     The BMW target (the only one using this chip so far) builds cleanly, the
52930     `before and after' generated object files for drivers/bcm570x.c and
52931     drivers/tigon3.o are identical as reported by objdump -d
52932
52933     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
52934     Signed-off-by: Ben Warren <bwarren@qstreams.com>
52935
52936 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
52937 Author: Wolfgang Denk <wd@denx.de>
52938 Date:   Wed Jun 6 16:26:56 2007 +0200
52939
52940     Coding Style cleanup; generate new CHANGELOG file.
52941
52942     Signed-off-by: Wolfgang Denk <wd@denx.de>
52943
52944 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
52945 Author: Markus Klotzbuecher <mk@denx.de>
52946 Date:   Wed Jun 6 11:49:44 2007 +0200
52947
52948     TRAB, USB: update trab board configuration for use of generic ohci driver
52949
52950 commit dace45acd1c1357daa9322099d07c9a9e08b0024
52951 Author: Markus Klotzbuecher <mk@denx.de>
52952 Date:   Wed Jun 6 11:49:43 2007 +0200
52953
52954     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
52955
52956 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
52957 Author: Markus Klotzbuecher <mk@denx.de>
52958 Date:   Wed Jun 6 11:49:43 2007 +0200
52959
52960     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
52961
52962 commit fc43be478f2aa37ce38acd85355038866e4162af
52963 Author: Markus Klotzbuecher <mk@denx.de>
52964 Date:   Wed Jun 6 11:49:35 2007 +0200
52965
52966     USB/OHCI: endianness cleanup in the generic ohci driver
52967
52968 commit c440bfe6d6d92d66478a7e84402b31f48413617b
52969 Author: Stefan Roese <sr@denx.de>
52970 Date:   Wed Jun 6 11:42:13 2007 +0200
52971
52972     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
52973
52974     This patch adds NAND booting support for the AMCC Acadia eval board.
52975
52976     Please make sure to configure jumper J7 to position 2-3 when booting
52977     from NOR, and to position 1-2 when booting for NAND.
52978
52979     I also added a board command to configure the I2C bootstrap EEPROM
52980     values. Right now only 267MHz is support for booting either via NOR
52981     or NAND FLASH. Here the usage:
52982
52983     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
52984     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
52985
52986     Signed-off-by: Stefan Roese <sr@denx.de>
52987
52988 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
52989 Author: Rodolfo Giometti <giometti@linux.it>
52990 Date:   Wed Jun 6 10:08:14 2007 +0200
52991
52992     Files include/linux/byteorder/{big,little}_endian.h define
52993     __BIG_ENDIAN and __LITTLE_ENDIAN.
52994
52995     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
52996
52997 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
52998 Author: Zhang Wei <wei.zhang@freescale.com>
52999 Date:   Wed Jun 6 10:08:14 2007 +0200
53000
53001     Add USB PCI-OHCI, USB keyboard and event poll support to the
53002     MPC8641HPCN board config file.
53003
53004     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53005
53006 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
53007 Author: Zhang Wei <wei.zhang@freescale.com>
53008 Date:   Wed Jun 6 10:08:14 2007 +0200
53009
53010     USB PCI-OHCI, interrupt pipe and usb event poll support
53011
53012     This patch added USB PCI-OHCI chips support, interrupt pipe support
53013     and usb event poll support. For supporting the USB interrupt pipe, the
53014     globe urb_priv is moved to purb in ed struct. Now, we can process
53015     several urbs at one time. The interrupt pipe support codes are ported
53016     from Linux kernel 2.4.
53017
53018     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
53019
53020 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
53021 Author: Zhang Wei <wei.zhang@freescale.com>
53022 Date:   Wed Jun 6 10:08:13 2007 +0200
53023
53024     USB event poll support
53025
53026     This patch adds USB event poll support, which could be used in usbkbd
53027     and other usb devices driver when the asynchronous interrupt
53028     processing is supported.
53029
53030     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
53031
53032 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
53033 Author: Rodolfo Giometti <giometti@linux.it>
53034 Date:   Wed Jun 6 10:08:12 2007 +0200
53035
53036     ISP116x: delay for crappy USB keys
53037
53038     Using some (very) slow USB keys cause the USB host controller buffers
53039     are not ready to be read by the CPU so we need an extra delay before
53040     reading the USB storage data.
53041
53042     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
53043
53044 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
53045 Author: Markus Klotzbuecher <mk@denx.de>
53046 Date:   Wed Jun 6 10:08:12 2007 +0200
53047
53048     Change duplicate usb_cpu_init_fail to usb_board_init_fail
53049
53050     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
53051     this out.
53052
53053     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53054
53055 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
53056 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
53057 Date:   Tue Jun 5 12:30:52 2007 -0500
53058
53059     mpc8641 image size cleanup
53060
53061     e600 does not have a bootpg restriction.
53062     Move the version string to beginning of image at fff00000.
53063     Resetvec.S is not needed.
53064     Update flash copy instructions.
53065     Add tftpflash env variable
53066
53067     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
53068     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53069
53070 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
53071 Author: Benoît Monin <bmonin@adeneo.eu>
53072 Date:   Mon Jun 4 08:36:05 2007 +0200
53073
53074     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
53075
53076     The attached patch is mainly cosmetic, allowing u-boot to
53077     display the correct bootstrap option letter according to the
53078     datasheets.
53079
53080     The original patch was extended with 405EZ support by Stefan
53081     Roese.
53082
53083     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
53084     Signed-off-by: Stefan Roese <sr@denx.de>
53085
53086 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
53087 Author: Nikita V. Youshchenko <yoush@debian.org>
53088 Date:   Wed May 23 12:45:19 2007 +0400
53089
53090     fix compilation problem for mpc8349itx CFG_RAMBOOT
53091
53092     Current include/configs/MPC8349ITX.h does contain some support for building
53093     image that will be started from memory (without putting in into flash).
53094     It could be triggered by building with TEXT_BASE set to a low value.
53095
53096     However, this support is incomplete: using of low TEXT_BASE causes
53097     defining configuration macros in inconsistent way, which later leads
53098     to compilation errors. In particular. flash support is being disabled,
53099     but then flash structures get referenced.
53100
53101     This patch fixes this, making it possible to build with low TEXT_BASE.
53102
53103     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
53104
53105     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53106
53107 commit 8a364f0970de49949d635e60accf463c6443ef8c
53108 Author: Nikita V. Youshchenko <yoush@debian.org>
53109 Date:   Wed May 23 12:45:25 2007 +0400
53110
53111     add missing 'console' var to default mpc8349itx config
53112
53113     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53114
53115 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
53116 Author: Stefan Roese <sr@denx.de>
53117 Date:   Fri Jun 1 16:18:17 2007 +0200
53118
53119     ppc4xx: Add missing file for Bamboo NAND booting support
53120
53121     Signed-off-by: Stefan Roese <sr@denx.de>
53122
53123 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
53124 Author: Stefan Roese <sr@denx.de>
53125 Date:   Fri Jun 1 15:58:19 2007 +0200
53126
53127     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
53128
53129     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
53130     suggested by AMCC it is not recommended to dynamically change the EBC
53131     speed after bootup. So we undo this change to be on the safe side.
53132
53133     Signed-off-by: Stefan Roese <sr@denx.de>
53134
53135 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
53136 Author: Stefan Roese <sr@denx.de>
53137 Date:   Fri Jun 1 15:29:04 2007 +0200
53138
53139     ppc4xx: Update Sequoia NAND booting support with ECC
53140
53141     Signed-off-by: Stefan Roese <sr@denx.de>
53142
53143 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
53144 Author: Stefan Roese <sr@denx.de>
53145 Date:   Fri Jun 1 15:27:11 2007 +0200
53146
53147     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
53148
53149     This patch adds NAND booting support for the AMCC Bamboo eval board.
53150     Since the NAND-SPL boot image is limited to 4kbytes, this version
53151     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
53152     supported, since the setup code for I2C DIMM autodetection and
53153     configuration is too big for this NAND bootloader.
53154
53155     Signed-off-by: Stefan Roese <sr@denx.de>
53156
53157 commit 42be56f53c8b107868e6125c8524ae84293e95a7
53158 Author: Stefan Roese <sr@denx.de>
53159 Date:   Fri Jun 1 15:23:04 2007 +0200
53160
53161     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
53162
53163     The U-Boot NAND booting support is now extended to support ECC
53164     upon loading of the NAND U-Boot image.
53165
53166     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
53167
53168     Signed-off-by: Stefan Roese <sr@denx.de>
53169
53170 commit a471db07fbb65a841ffc9f4f112562b945230f98
53171 Author: Stefan Roese <sr@denx.de>
53172 Date:   Fri Jun 1 15:19:29 2007 +0200
53173
53174     ppc4xx: Prepare Bamboo port for NAND booting support
53175
53176     This patch updates the "normal" Bamboo NOR booting port, so
53177     that it is compatible with the coming soon NAND booting
53178     Bamboo port.
53179
53180     It also enables the 2nd NAND flash on the Bamboo.
53181
53182     Signed-off-by: Stefan Roese <sr@denx.de>
53183
53184 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
53185 Author: Stefan Roese <sr@denx.de>
53186 Date:   Fri Jun 1 15:16:58 2007 +0200
53187
53188     ppc4xx: Update in_be32() functions and friends to latest Linux version
53189
53190     Signed-off-by: Stefan Roese <sr@denx.de>
53191
53192 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
53193 Author: Stefan Roese <sr@denx.de>
53194 Date:   Fri Jun 1 15:15:12 2007 +0200
53195
53196     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
53197
53198     This patch adds hardware ECC support to the NDFC driver. It also
53199     changes the register access from using the "simple" in32/out32
53200     functions to the in_be32/out_be32 functions, which make sure
53201     that the access is correctly synced. This is the only recommended
53202     access to SoC registers in the current Linux kernel.
53203
53204     Signed-off-by: Stefan Roese <sr@denx.de>
53205
53206 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
53207 Author: Stefan Roese <sr@denx.de>
53208 Date:   Fri Jun 1 15:12:15 2007 +0200
53209
53210     NAND: Update nand_ecc.c to latest Linux version
53211
53212     This patch updates the nand_ecc code to the latest Linux version.
53213     The main reason for this is the more compact code. This makes
53214     it possible to include the ECC code into the NAND bootloader
53215     image (NAND_SPL) for PPC4xx.
53216
53217     Signed-off-by: Stefan Roese <sr@denx.de>
53218
53219 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
53220 Author: Stefan Roese <sr@denx.de>
53221 Date:   Fri Jun 1 15:09:50 2007 +0200
53222
53223     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
53224
53225     Signed-off-by: Stefan Roese <sr@denx.de>
53226
53227 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
53228 Author: Stefan Roese <sr@denx.de>
53229 Date:   Fri Jun 1 13:45:24 2007 +0200
53230
53231     ppc4xx: Change Luan config file to support ECC
53232
53233     With the updated 44x DDR2 driver the Luan board now supports
53234     ECC generation and checking.
53235
53236     Signed-off-by: Stefan Roese <sr@denx.de>
53237
53238 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
53239 Author: Stefan Roese <sr@denx.de>
53240 Date:   Fri Jun 1 13:45:00 2007 +0200
53241
53242     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
53243
53244     Add config option for 180 degree advance clock control as needed
53245     for the AMCC Luan eval board.
53246
53247     Signed-off-by: Stefan Roese <sr@denx.de>
53248
53249 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
53250 Author: Wolfgang Denk <wd@denx.de>
53251 Date:   Thu May 31 17:20:09 2007 +0200
53252
53253     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
53254
53255     Signed-off-by: Wolfgang Denk <wd@denx.de>
53256
53257 commit 7049288fb1f16f1b317140226cdebd07bd416395
53258 Author: Bartlomiej Sieka <tur@semihalf.com>
53259 Date:   Sun May 27 17:26:46 2007 +0200
53260
53261     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
53262
53263     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53264
53265 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
53266 Author: Bartlomiej Sieka <tur@semihalf.com>
53267 Date:   Sun May 27 17:06:36 2007 +0200
53268
53269     Motion-PRO: Add support for redundant environment.
53270
53271     Enable redundant environment, add a MTD partition for it; also add env.
53272     variable command for passing MTD partitions to the kernel command line.
53273
53274     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
53275     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53276
53277 commit a26eabeec31746f06d309103690892805696e344
53278 Author: Bartlomiej Sieka <tur@semihalf.com>
53279 Date:   Sun May 27 17:05:11 2007 +0200
53280
53281     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
53282
53283     Allow passing longer command line to the kernel - useful especially
53284     for passing MTD partition layout.
53285
53286     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
53287     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53288
53289 commit 9160b96f71483a116de81c68985e8ee306d36764
53290 Author: Bartlomiej Sieka <tur@semihalf.com>
53291 Date:   Sun May 27 17:04:18 2007 +0200
53292
53293     Fix: Add missing NULL termination in strings expanded by macros parser.
53294
53295     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
53296     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53297
53298 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
53299 Author: Bartlomiej Sieka <tur@semihalf.com>
53300 Date:   Sun May 27 17:03:37 2007 +0200
53301
53302     Motion-PRO: Update EEPROM's page write bits and write delay.
53303
53304     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
53305     have a page write capability of two bytes", and "This device offers fast (1ms)
53306     byte write". Add 3ms of extra delay.
53307
53308     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
53309     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53310
53311 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
53312 Author: Bartlomiej Sieka <tur@semihalf.com>
53313 Date:   Sun May 27 16:58:45 2007 +0200
53314
53315     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
53316
53317     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
53318     networking does not function. This commit switches PHY to TX mode by clearing
53319     the FX_SEL bit of Mode Control Register. It also reverses commit
53320     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
53321
53322     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
53323     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53324
53325 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
53326 Author: Bartlomiej Sieka <tur@semihalf.com>
53327 Date:   Sun May 27 16:57:15 2007 +0200
53328
53329     Motion-PRO: Add support for the temperature sensor.
53330
53331     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
53332     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53333
53334 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
53335 Author: Bartlomiej Sieka <tur@semihalf.com>
53336 Date:   Sun May 27 16:55:23 2007 +0200
53337
53338     Motion-PRO: Add displaying of CPLD revision information during boot.
53339
53340     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
53341     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53342
53343 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
53344 Author: Bartlomiej Sieka <tur@semihalf.com>
53345 Date:   Sun May 27 16:53:43 2007 +0200
53346
53347     MPC5xxx: Change names of defines related to IPB and PCI clocks.
53348
53349     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
53350     them does not cause PCI or IPB clocks to run at the specified speed.
53351     Instead, they configure divisors used to calculate said clocks. This
53352     patch renames the defines according to their real function.
53353
53354     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
53355     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53356
53357 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
53358 Author: Bartlomiej Sieka <tur@semihalf.com>
53359 Date:   Sun May 27 16:51:48 2007 +0200
53360
53361     Motion-PRO: Add LED support.
53362
53363     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
53364     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53365     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53366
53367 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
53368 Author: Ulf Samuelsson <ulf@atmel.com>
53369 Date:   Thu May 24 12:12:47 2007 +0200
53370
53371     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
53372
53373     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
53374     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
53375     Signed-off-by: Stefan Roese <sr@denx.de>
53376
53377 commit d756894722c888d09a9fa1df8323753772d3dcce
53378 Author: Stefan Roese <sr@denx.de>
53379 Date:   Thu May 24 09:49:00 2007 +0200
53380
53381     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
53382
53383     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
53384     fixes a small bug in the 405EZ OCM initialization. Thanks for
53385     spotting.
53386
53387     Signed-off-by: Stefan Roese <sr@denx.de>
53388
53389 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
53390 Author: Stefan Roese <sr@denx.de>
53391 Date:   Thu May 24 08:22:09 2007 +0200
53392
53393     ppc4xx: Update AMCC Acadia support for board revision 1.1
53394
53395     This patch updates the Acadia (405EZ) support for the new 1.1 board
53396     revision. It also adds support for NAND FLASH via the 4xx NDFC.
53397
53398     Please note that the jumper J7 must be in position 2-3 for this
53399     NAND support. Position 1-2 is for NAND booting only. NAND booting
53400     support will follow later.
53401
53402     Signed-off-by: Stefan Roese <sr@denx.de>
53403
53404 commit 822d55365bb557e084d0e33625a6dedcc866110b
53405 Author: Jon Loeliger <jdl@freescale.com>
53406 Date:   Wed May 23 14:09:46 2007 -0500
53407
53408     Add LIST_86xx MAKEALL target for PowerPC builds.
53409
53410     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53411
53412 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
53413 Author: Stefan Roese <sr@denx.de>
53414 Date:   Tue May 22 12:48:09 2007 +0200
53415
53416     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
53417
53418     Signed-off-by: Stefan Roese <sr@denx.de>
53419
53420 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
53421 Author: Stefan Roese <sr@denx.de>
53422 Date:   Tue May 22 12:46:10 2007 +0200
53423
53424     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
53425
53426     This patch adds support for 405 PPC's to the 4xx NAND driver
53427     ndfc.c. This is in preparation for the new AMCC 405EZ.
53428
53429     Signed-off-by: Stefan Roese <sr@denx.de>
53430
53431 commit 10603d76767426be803dadd4fb688b97eb69481c
53432 Author: Stefan Roese <sr@denx.de>
53433 Date:   Mon May 21 07:41:22 2007 +0200
53434
53435     ppc4xx: Fix problem in 405EZ OCM initialization
53436
53437     As spotted by Bruce Adler this patch fixes an initialization problem
53438     for the 405EZ OCM.
53439
53440     Signed-off-by: Stefan Roese <sr@denx.de>
53441
53442 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
53443 Author: Peter Pearse <peter.pearse@arm.com>
53444 Date:   Fri May 18 16:47:03 2007 +0100
53445
53446     Reduce line lengths to 80 characters max.
53447
53448 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
53449 Author: Peter Pearse <peter.pearse@arm.com>
53450 Date:   Fri May 18 14:34:07 2007 +0100
53451
53452     Makefile permissions
53453
53454 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
53455 Author: Peter Pearse <peter.pearse@arm.com>
53456 Date:   Fri May 18 14:33:11 2007 +0100
53457
53458     Makefile permissions
53459
53460 commit 255a3577c848706441daee0174543efe205a77f8
53461 Author: Kim Phillips <kim.phillips@freescale.com>
53462 Date:   Wed May 16 16:52:19 2007 -0500
53463
53464     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
53465
53466     For all practical u-boot purposes, TSECs don't differ throughout the
53467     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
53468
53469     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53470
53471 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
53472 Author: Stefano Babic <sbabic@denx.de>
53473 Date:   Wed May 16 14:49:12 2007 +0200
53474
53475     Fix compile problem cause my Microblaze merge
53476
53477     Signed-off-by: Stefano Babic <sbabic@denx.de>
53478
53479 commit ada4697d0230d6da552867777f98a67ec3ba2579
53480 Author: Jeffrey Mann <mannj@embeddedplanet.com>
53481 Date:   Wed May 16 13:23:10 2007 +0200
53482
53483     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
53484
53485     Because the Sequoia board does not boot with an EBC faster than 66MHz,
53486     the clock divider are changed after the initial boot process.
53487
53488     This allows for maximum clocking speeds  to be achieved on newer boards.
53489     Sequoia boards with 666.66 MHz processors require that the EBC divider
53490     be set to 3 in order to start the initial boot process at a slower EBC
53491     speed. After the initial boot process, the divider can be set back to 2,
53492     which will cause the boards to run at 83.333MHz. This is backward
53493     compatible with boards with 533.33 MHz processors, as these boards will
53494     already be set with an EBC divider of 2.
53495
53496     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
53497
53498 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
53499 Author: Wolfgang Denk <wd@denx.de>
53500 Date:   Wed May 16 01:16:53 2007 +0200
53501
53502     Minor Coding Style cleanup, update CHANGELOG.
53503
53504     Signed-off-by: Wolfgang Denk <wd@denx.de>
53505
53506 commit d62f64cc23a940eafe712c776b3249e4160753d1
53507 Author: Wolfgang Denk <wd@denx.de>
53508 Date:   Wed May 16 00:13:33 2007 +0200
53509
53510     Coding Style Cleanup, new CHANGELOG
53511
53512 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
53513 Author: Wolfgang Denk <wd@denx.de>
53514 Date:   Tue May 15 23:38:05 2007 +0200
53515
53516     Minor coding style cleanup.
53517
53518 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
53519 Author: mushtaq khan <mushtaq_k@procsys.com>
53520 Date:   Fri Apr 20 14:23:02 2007 +0530
53521
53522     Add driver for S-ATA-controller on Intel processors with South
53523     Bridge, ICH-5, ICH-6 and ICH-7.
53524
53525     Implementation:
53526
53527     1. Code is divided in to two files. All functions, which are
53528        controller specific are kept in "drivers/ata_piix.c" file and
53529        functions, which are not controller specific, are kept in
53530        "common/cmd_sata.c" file.
53531
53532     2. Reading and Writing from the S-ATA drive is done using PIO method.
53533
53534     3. Driver can be configured for 48-bit addressing by defining macro
53535        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
53536        addressing.
53537
53538     4. S-ATA read function is hooked to the File system, commands like
53539        ext2ls and ext2load file can be used. This has been tested.
53540
53541     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
53542        controller and identifies the S-ATA drives connected to it.
53543
53544     6. U-Boot command "sata" is added, which is used to read/write, print
53545        partition table and get info about the drives present. This I have
53546        implemented in same way as "ide" command is implemented in U-Boot.
53547
53548     7. This driver is for S-ATA in native mode.
53549
53550     8. This driver does not support the Native command queuing and
53551        Hot-plugging.
53552
53553     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
53554
53555 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
53556 Author: mushtaq khan <mushtaq_k@procsys.com>
53557 Date:   Mon Apr 30 15:57:22 2007 +0530
53558
53559     Fixes bug clearing the bss section for i386
53560
53561     Hi,
53562     There is a bug in the code of clearing the bss section for processor
53563     i386.(File: cpu/i386/start.S)
53564     In the code, bss_start addr (starting addr of bss section) is put into
53565     the register %eax, but the code which clears the bss section refers to
53566     the addr pointed by %edi.
53567
53568     This patch fixes this bug by putting bss_start into %edi register.
53569
53570     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
53571
53572 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
53573 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
53574 Date:   Mon Apr 30 16:47:28 2007 -0500
53575
53576     Add support for BCM5464 Quad Phy
53577
53578     Added support for Broadcom's BCM5464 Quad Phy
53579
53580     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
53581
53582 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
53583 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
53584 Date:   Wed May 9 08:10:57 2007 +0800
53585
53586     Search the exception table with linear algorithm
53587
53588     Search the exception table with linear algorithm instead of
53589     bisecting algorithm.
53590     Because the exception table might be unsorted.
53591
53592     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
53593
53594 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
53595 Author: Aubrey.Li <aubrey.adi@gmail.com>
53596 Date:   Mon May 14 11:47:35 2007 +0800
53597
53598     Fix compilation issues on MACOSX
53599
53600     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
53601     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
53602
53603 commit 56fd7162985c412317bbf763a225fba23c64fd31
53604 Author: Stephen Williams <steve@icarus.com>
53605 Date:   Tue May 15 07:55:42 2007 -0700
53606
53607     Fix for compile of JSE target
53608
53609     The attached patch fixes the compile of the JSE board in the
53610     denx git as of 14 may 2007. It is an extremely simple patch,
53611     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
53612
53613      Fix to compile JSE against 20070514 git of u-boot
53614
53615 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
53616 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
53617 Date:   Sun May 13 21:01:03 2007 +0900
53618
53619     sh: MS7750SE support.
53620
53621     This adds support for the Hitachi MS7750SE.
53622
53623     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53624
53625 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
53626 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
53627 Date:   Sun May 13 20:58:00 2007 +0900
53628
53629     sh: First support code of SuperH.
53630
53631     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53632
53633 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
53634 Author: Stefan Roese <sr@denx.de>
53635 Date:   Fri May 11 12:01:49 2007 +0200
53636
53637     ppc4xx: Add mtcpr/mfcpr access macros
53638
53639     Signed-off-by: Stefan Roese <sr@denx.de>
53640
53641 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
53642 Author: Stefan Roese <sr@denx.de>
53643 Date:   Fri May 11 12:01:06 2007 +0200
53644
53645     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
53646
53647     Signed-off-by: Stefan Roese <sr@denx.de>
53648
53649 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
53650 Author: Piotr Kruszynski <ppk@semihalf.com>
53651 Date:   Thu May 10 16:55:52 2007 +0200
53652
53653     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
53654     definition.
53655
53656 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
53657 Author: Peter Pearse <peter.pearse@arm.com>
53658 Date:   Wed May 9 11:42:44 2007 +0100
53659
53660     Add the board directory for SMN42
53661
53662 commit 160131bf965785419626df6c388729fe0b597992
53663 Author: Peter Pearse <peter.pearse@arm.com>
53664 Date:   Wed May 9 11:41:58 2007 +0100
53665
53666     Add the files for the SMN42 board
53667
53668 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
53669 Author: Peter Pearse <peter.pearse@arm.com>
53670 Date:   Wed May 9 11:40:34 2007 +0100
53671
53672     Remove the deleted files for the SMN42 patch
53673
53674 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
53675 Author: Peter Pearse <peter.pearse@arm.com>
53676 Date:   Wed May 9 11:37:56 2007 +0100
53677
53678     New board SMN42 branch
53679
53680 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
53681 Author: Peter Pearse <peter.pearse@arm.com>
53682 Date:   Wed May 9 10:24:38 2007 +0100
53683
53684     Makefile permissions
53685
53686 commit b84289b595731e8851df46e893845cc1322c9b9b
53687 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
53688 Date:   Tue May 8 14:17:07 2007 -0500
53689
53690     8641hpcn: Fix Makefile after moving pixis to board/freescale.
53691
53692     The OBJTREE != SRCTREE build scenario was broken.
53693     This fixes it.
53694
53695     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
53696     Signed-off-by: Jon Loeliger <jdl@freescale.com>
53697
53698 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
53699 Author: Michal Simek <monstr@monstr.eu>
53700 Date:   Tue May 8 15:57:43 2007 +0200
53701
53702     add: reading special purpose registers
53703
53704 commit 1a50f164beb065f360fbddb76029607d6b099698
53705 Author: Michal Simek <monstr@monstr.eu>
53706 Date:   Tue May 8 14:52:52 2007 +0200
53707
53708     add: Microblaze V5 exception handling
53709
53710 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
53711 Author: Michal Simek <monstr@monstr.eu>
53712 Date:   Tue May 8 14:39:11 2007 +0200
53713
53714     add: FSL control read and write
53715
53716 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
53717 Author: Piotr Kruszynski <ppk@semihalf.com>
53718 Date:   Tue May 8 13:05:44 2007 +0200
53719
53720     [Motion-PRO] Add support for I2C, EEPROM and RTC.
53721
53722 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
53723 Author: Bartlomiej Sieka <tur@semihalf.com>
53724 Date:   Tue May 8 10:23:56 2007 +0200
53725
53726     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
53727     environment.
53728
53729 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
53730 Author: Bartlomiej Sieka <tur@semihalf.com>
53731 Date:   Tue May 8 09:39:12 2007 +0200
53732
53733     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
53734     eliminates networking problems in Linux (timeouts).
53735
53736 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
53737 Author: Bartlomiej Sieka <tur@semihalf.com>
53738 Date:   Tue May 8 09:21:57 2007 +0200
53739
53740     [Motion-PRO] Enable Flat Device Tree support and modify default environment
53741     to allow booting of FDT-expecting kernels.
53742
53743 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
53744 Author: Michal Simek <monstr@monstr.eu>
53745 Date:   Mon May 7 23:58:31 2007 +0200
53746
53747     new: USE_MSR_INTR support
53748
53749 commit 008861a2f3ef2c062744d733787c7e530a1b8761
53750 Author: Bartlomiej Sieka <tur@semihalf.com>
53751 Date:   Mon May 7 22:36:15 2007 +0200
53752
53753     [MPC5xxx] There are networking problems on the Motion-PRO board with
53754     current PHY initalization code (tftp timeouts all the time). This commit
53755     temporarily disables PHY initalization sequence to make the networking
53756     operational, until a fix is found.
53757
53758 commit abca901869c3760b6c5fecb825db6c1d91a78a93
53759 Author: Wolfgang Denk <wd@denx.de>
53760 Date:   Mon May 7 22:10:36 2007 +0200
53761
53762     Get rid of duplicated file (see include/configs/sbc8560.h instead)
53763
53764     Signed-off-by: Wolfgang Denk <wd@denx.de>
53765
53766 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
53767 Author: Wolfgang Denk <wd@denx.de>
53768 Date:   Mon May 7 22:07:08 2007 +0200
53769
53770     Get rid of duplicated file (see doc/README.SBC8560 instead)
53771
53772     Signed-off-by: Wolfgang Denk <wd@denx.de>
53773
53774 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
53775 Author: Michal Simek <monstr@monstr.eu>
53776 Date:   Mon May 7 19:43:10 2007 +0200
53777
53778     fix: read and write MSR - repair number of parameters
53779
53780 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
53781 Author: Jeffrey Mann <mannj@embeddedplanet.com>
53782 Date:   Mon May 7 19:42:49 2007 +0200
53783
53784     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
53785
53786     A '3' got cut off in the formatting of the last patch to automatically
53787     change the clock speed of the system clock on sequoia board.
53788
53789     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
53790     Signed-off-by: Stefan Roese <sr@denx.de>
53791
53792 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
53793 Author: Michal Simek <monstr@monstr.eu>
53794 Date:   Mon May 7 19:33:51 2007 +0200
53795
53796     new: fsl interrupt support
53797     FSL_Has_data is connected to INTC.
53798
53799 commit 792032baa7d625e34c981ab6df521911bd8dc861
53800 Author: Michal Simek <monstr@monstr.eu>
53801 Date:   Mon May 7 19:30:12 2007 +0200
53802
53803     fix: interrupt handler
53804     remove asm code
53805
53806 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
53807 Author: Michal Simek <monstr@monstr.eu>
53808 Date:   Mon May 7 19:25:08 2007 +0200
53809
53810     fix: remove asm code
53811
53812 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
53813 Author: Michal Simek <monstr@monstr.eu>
53814 Date:   Mon May 7 19:12:43 2007 +0200
53815
53816     fix: clean interrupt
53817
53818 commit 42efed6130c8fcf7da881385b5427065d2801757
53819 Author: Michal Simek <monstr@monstr.eu>
53820 Date:   Mon May 7 17:22:25 2007 +0200
53821
53822     fix: interrupt handler for multiple sources
53823
53824 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
53825 Author: Michal Simek <monstr@monstr.eu>
53826 Date:   Mon May 7 17:11:09 2007 +0200
53827
53828     new: add writing to msr register
53829
53830 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
53831 Author: Markus Klotzbuecher <mk@denx.de>
53832 Date:   Mon May 7 16:43:56 2007 +0200
53833
53834     Fix an ancient CHANGELOG conflict
53835
53836 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
53837 Author: Timur Tabi <timur@freescale.com>
53838 Date:   Sat May 5 08:12:30 2007 +0200
53839
53840     5xxx: write MAC address to mac-address and local-mac-address
53841
53842     Some device trees have a mac-address property, some have local-mac-address,
53843     and some have both.  To support all of these device trees, ftp_cpu_setup()
53844     should write the MAC address to mac-address and local-mac-address, if they
53845     exist.
53846
53847     Signed-off-by: Timur Tabi <timur@freescale.com>
53848     Acked-by: Grant Likely <grant.likely@secretlab.ca>
53849
53850 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
53851 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
53852 Date:   Sun Apr 29 14:01:54 2007 +0200
53853
53854     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
53855
53856     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
53857     message. Use PVR to distinguish between the two variants, and print proper CPU
53858     information.
53859
53860     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
53861     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53862     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
53863
53864 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
53865 Author: Ladislav Michl <ladis@linux-mips.org>
53866 Date:   Wed Apr 25 16:01:26 2007 +0200
53867
53868     [PATCH] simplify silent console
53869
53870     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
53871     Acked-by: Stefan Roese <sr@denx.de>
53872
53873 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
53874 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
53875 Date:   Mon Apr 23 15:30:39 2007 +0200
53876
53877     [PATCH] Avoid assigning PCI resources from zero address
53878
53879     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
53880     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
53881     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
53882     sentence about "0" being considered an invalid address) -- so, use a reasonable
53883     starting value of 0x1000 (that's what the most Linux archs are using).
53884
53885     Alternatively, one might have fixed the calls to pci_set_region() individually
53886     (some code even seems to have taken care of this issue) but that would have
53887     been a lot more work. :-)
53888
53889     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
53890     Acked-by: Stefan Roese <sr@denx.de>
53891
53892 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
53893 Author: Jeffrey Mann <mannj@embeddedplanet.com>
53894 Date:   Mon Apr 23 14:00:11 2007 +0200
53895
53896     [patch] setenv(...) can delete environmentalvariables
53897
53898     update setenv() function so that entering a NULL value for the
53899     variable's value will delete the environmental variable
53900
53901     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
53902     Acked-by: Stefan Roese <sr@denx.de>
53903
53904 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
53905 Author: Mike Frysinger <vapier@gentoo.org>
53906 Date:   Mon Apr 23 13:54:24 2007 +0200
53907
53908     [patch] use unsigned char in smc91111 driver for mac
53909
53910     the v_mac variable in the smc91111 driver is declared as a signed char ...
53911     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
53912     because when it gets printed out, you get a display like:
53913     0xFFFFFFE0 and that's no good
53914
53915     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53916
53917 commit ffc50f9bb194343c6303517a517708457a5eb6b8
53918 Author: Michal Simek <monstr@monstr.eu>
53919 Date:   Sat May 5 18:54:42 2007 +0200
53920
53921     new: FSL and MSR support #2
53922
53923 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
53924 Author: Michal Simek <monstr@monstr.eu>
53925 Date:   Sat May 5 18:27:16 2007 +0200
53926
53927     new: FSL and MSR support
53928
53929 commit 2f15278c2eb911c668b4fe562130b78cf554d139
53930 Author: Wolfgang Denk <wd@denx.de>
53931 Date:   Sat May 5 18:23:11 2007 +0200
53932
53933     Coding stylke cleanup; update CHANGELOG.
53934
53935     Signed-off-by: Wolfgang Denk <wd@denx.de>
53936
53937 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
53938 Author: Wolfgang Denk <wd@denx.de>
53939 Date:   Sat May 5 18:05:02 2007 +0200
53940
53941     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
53942
53943     Signed-off-by: Wolfgang Denk <wd@denx.de>
53944
53945 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
53946 Author: Wolfgang Denk <wd@denx.de>
53947 Date:   Sat May 5 17:15:50 2007 +0200
53948
53949     Make "file" command happy with some config.mk files; update CHANGELOG
53950
53951 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
53952 Author: Jeffrey Mann <mannj@embeddedplanet.com>
53953 Date:   Sat May 5 08:32:14 2007 +0200
53954
53955     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
53956
53957     The AMCC Secquoia board has been changed in a new revision from using a
53958     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
53959     indicates the difference. This patch reads that bit and uses the correct
53960     clock speed for the board. This code is backward compatable will all
53961     prior boards. All prior boards will be read as 33.000.
53962
53963     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
53964     Signed-off-by: Stefan Roese <sr@denx.de>
53965
53966 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
53967 Author: Stefan Roese <sr@denx.de>
53968 Date:   Sat May 5 08:29:01 2007 +0200
53969
53970     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
53971
53972     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
53973     for the 4k NAND boot image so define bus_frequency to 133MHz here
53974     which is save for the refresh counter setup.
53975
53976     Signed-off-by: Stefan Roese <sr@denx.de>
53977
53978 commit 2f550ab976405300f5b07bf2890800840d0aa05f
53979 Author: Timur Tabi <timur@freescale.com>
53980 Date:   Sat May 5 08:12:30 2007 +0200
53981
53982     5xxx: write MAC address to mac-address and local-mac-address
53983
53984     Some device trees have a mac-address property, some have local-mac-address,
53985     and some have both.  To support all of these device trees, ftp_cpu_setup()
53986     should write the MAC address to mac-address and local-mac-address, if they
53987     exist.
53988
53989     Signed-off-by: Timur Tabi <timur@freescale.com>
53990     Acked-by: Grant Likely <grant.likely@secretlab.ca>
53991
53992 commit a79886590593ba1d667c840caa4940c61639f18f
53993 Author: Thomas Knobloch <knobloch@siemens.com>
53994 Date:   Sat May 5 07:04:42 2007 +0200
53995
53996     NAND: Wrong calculation of page number in nand_block_bad()
53997
53998     In case that there is no memory based bad block table available the
53999     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
54000     nand_block_bad() directly. When parameter 'getchip' is set to zero,
54001     nand_block_bad() will not right shift the offset to calculate the
54002     correct page number.
54003
54004     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
54005     Signed-off-by: Stefan Roese <sr@denx.de>
54006
54007 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
54008 Author: Wolfgang Denk <wd@denx.de>
54009 Date:   Fri May 4 10:02:33 2007 +0200
54010
54011     Fix initrd length corruption in bootm command.
54012
54013     When using FDT Images, the length of an inital ramdisk was
54014     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
54015
54016     Patches by Timur Tabi & Johns Daniel.
54017
54018     Signed-off-by: Wolfgang Denk <wd@denx.de>
54019
54020 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
54021 Author: Kim Phillips <kim.phillips@freescale.com>
54022 Date:   Thu May 3 19:43:52 2007 -0500
54023
54024     mpc83xx: fix trivial error in MAKEALL
54025
54026     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54027
54028 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
54029 Author: Wolfgang Denk <wd@denx.de>
54030 Date:   Thu May 3 16:34:41 2007 +0200
54031
54032     Update board configuration for STX GP3SSA board:
54033
54034     Enable hush shell, environment in flash rather in EEPROM,
54035     more user-friendly default environment, etc.
54036     The simple EEPROM environment can be selected easily in the board
54037     config file.
54038
54039     Signed-off-by: Wolfgang Denk <wd@denx.de>
54040
54041 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
54042 Author: Wolfgang Denk <wd@denx.de>
54043 Date:   Tue Apr 24 14:37:49 2007 +0200
54044
54045     Cleanup STX GP3SSA code; fix build and compile problems.
54046
54047 commit 35171dc04e028ecacc23ad916a66295472555dbf
54048 Author: Dan Malek <dan@embeddedalley.com>
54049 Date:   Fri Jan 5 09:15:34 2007 +0100
54050
54051     Add support for STX GP3SSA (stxssa) Board
54052
54053     Signed-off-by Dan Malek, <dan@embeddedalley.com>
54054
54055 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
54056 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54057 Date:   Wed May 2 13:31:53 2007 +0200
54058
54059     macb: Don't restart autonegotiation if we already have link
54060
54061     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
54062     link is already up.
54063
54064     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54065
54066 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
54067 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54068 Date:   Wed May 2 13:22:38 2007 +0200
54069
54070     macb: Introduce a few barriers when dealing with DMA descriptors
54071
54072     There were a few theoretical possibilities that the compiler might
54073     optimize away DMA descriptor reads and/or writes and thus cause
54074     synchronization problems with the hardware. Insert barriers where
54075     we depend on reads/writes actually hitting memory.
54076
54077     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54078
54079 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
54080 Author: Andy Fleming <afleming@freescale.com>
54081 Date:   Sat Feb 24 01:08:13 2007 -0600
54082
54083     Cleaned up some 85xx PCI bugs
54084
54085     * Cleaned up the CDS PCI Config Tables and added NULL entries to
54086       the end
54087     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
54088     * Fixed 85xx PCI code to assign powar region sizes based on the
54089       config values (rather than hard-coding them)
54090     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
54091
54092     Signed-off-by: Andy Fleming <afleming@freescale.com>
54093
54094 commit 6743105988fc44d5b0d30388c790607835aae7a6
54095 Author: Andy Fleming <afleming@freescale.com>
54096 Date:   Mon Apr 23 02:54:25 2007 -0500
54097
54098     Add support for the 8568 MDS board
54099
54100     This included some changes to common files:
54101     * Add 8568 processor SVR to various places
54102     * Add support for setting the qe bus-frequency value in the dts
54103     * Add the 8568MDS target to the Makefile
54104
54105     Signed-off-by: Andy Fleming <afleming@freescale.com>
54106
54107 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
54108 Author: David Updegraff <dave@cray.com>
54109 Date:   Fri Apr 20 14:34:48 2007 -0500
54110
54111     Add support for treating unknown PHYs as generic PHYs.
54112
54113     When bringing up u-boot on new boards, PHY support sometimes gets
54114     neglected.  Most PHYs don't really need any special support,
54115     though.  By adding a generic entry that always matches if nothing
54116     else does, we can provide support for "unsupported" PHYs for the
54117     tsec.
54118
54119     The generic PHY driver supports most PHYs, including gigabit.
54120
54121     Signed-off-by: David Updegraff <dave@cray.com>
54122     Signed-off-by: Andy Fleming <afleming@freescale.com>
54123
54124 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
54125 Author: James Yang <James.Yang@freescale.com>
54126 Date:   Wed Feb 7 15:28:04 2007 -0600
54127
54128     Conditionalize 8641 Rev1.0 MCM workarounds
54129
54130     Signed-off-by: James Yang <James.Yang@freescale.com>
54131     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54132
54133 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
54134 Author: Timur Tabi <timur@freescale.com>
54135 Date:   Mon Apr 30 13:59:50 2007 -0500
54136
54137     Fix memory initialization on MPC8349E-mITX
54138
54139     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
54140     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
54141     on some ITX boards, notably those with a revision 3.1 CPU.
54142
54143     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
54144     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
54145
54146     Signed-off-by: Timur Tabi <timur@freescale.com>
54147     Acked-by: Michael Benedict <MBenedict@twacs.com>
54148     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54149
54150 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
54151 Author: Kim Phillips <kim.phillips@freescale.com>
54152 Date:   Mon Apr 30 15:26:21 2007 -0500
54153
54154     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
54155
54156     and fix CPU: to align with Board: display text.
54157
54158     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54159
54160 commit c1ab82669d9525998c34e802a12cad662723f22a
54161 Author: James Yang <James.Yang@freescale.com>
54162 Date:   Fri Mar 16 13:02:53 2007 -0500
54163
54164     Rewrote picos_to_clk() to avoid rounding errors.
54165     Clarified that conversion is to DRAM clocks rather than platform clocks.
54166     Made function static to spd_sdram.c.
54167
54168     Signed-off-by: James Yang <James.Yang@freescale.com>
54169     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54170
54171 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
54172 Author: Stefan Roese <sr@denx.de>
54173 Date:   Sun Apr 29 14:13:01 2007 +0200
54174
54175     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
54176
54177     Signed-off-by: Stefan Roese <sr@denx.de>
54178
54179 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
54180 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54181 Date:   Sun Apr 29 14:01:54 2007 +0200
54182
54183     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
54184
54185     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
54186     message. Use PVR to distinguish between the two variants, and print proper CPU
54187     information.
54188
54189     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
54190     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54191     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
54192
54193 commit 5c5d3242935cf3543af01142627494434834cf98
54194 Author: Kim Phillips <kim.phillips@freescale.com>
54195 Date:   Wed Apr 25 12:34:38 2007 -0500
54196
54197     mpc83xx: minor fixups for 8313rdb introduction
54198
54199 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
54200 Author: Ladislav Michl <ladis@linux-mips.org>
54201 Date:   Wed Apr 25 16:01:26 2007 +0200
54202
54203     [PATCH] simplify silent console
54204
54205     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
54206     Acked-by: Stefan Roese <sr@denx.de>
54207
54208 commit 144876a380f5756f57412caf74c1d6dc201dd796
54209 Author: Michal Simek <monstr@monstr.eu>
54210 Date:   Tue Apr 24 23:01:02 2007 +0200
54211
54212     [PATCH] MTD partition support, JFFS2 support
54213
54214 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
54215 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54216 Date:   Tue Apr 24 14:03:45 2007 +0200
54217
54218     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
54219
54220     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54221
54222 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
54223 Author: Andy Fleming <afleming@freescale.com>
54224 Date:   Mon Apr 23 02:37:47 2007 -0500
54225
54226     Reworked 85xx speed detection code
54227
54228     Changed the code to read the registers and calculate the clock
54229     rates, rather than using a "switch" statement.
54230
54231     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
54232
54233     Signed-off-by: Andy Fleming <afleming@freescale.com>
54234
54235 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
54236 Author: Andy Fleming <afleming@freescale.com>
54237 Date:   Mon Apr 23 02:24:28 2007 -0500
54238
54239     Enable 8544 support
54240
54241     * Add support to the Makefile
54242     * Add 8544 configuration support to the tsec driver
54243     * Add 8544 SVR numbers to processor.h
54244
54245     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54246     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54247
54248 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
54249 Author: Andy Fleming <afleming@freescale.com>
54250 Date:   Fri Feb 23 17:12:25 2007 -0600
54251
54252     Support 1G size on 8548
54253
54254     e500v2 and newer cores support 1G page sizes.
54255
54256     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54257     Signed-off-by: Andy Fleming <afleming@freescale.com>
54258
54259 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
54260 Author: Andy Fleming <afleming@freescale.com>
54261 Date:   Fri Feb 23 17:11:16 2007 -0600
54262
54263     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
54264
54265     The other pagesz constants use one letter to specify order of
54266     magnitude.  Also change the one reference to it in mpc8548cds/init.S
54267
54268     Signed-off-by: Andy Fleming <afleming@freescale.com>
54269
54270 commit 1f9a318cea14272edd10d63739e2d326c90f430e
54271 Author: Andy Fleming <afleming@freescale.com>
54272 Date:   Fri Feb 23 16:28:46 2007 -0600
54273
54274     Only set ddrioovcr for 8548 rev1.
54275
54276     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54277     Signed-off-by: Andy Fleming <afleming@freescale.com>
54278
54279 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
54280 Author: Andy Fleming <afleming@freescale.com>
54281 Date:   Sat Feb 24 01:16:45 2007 -0600
54282
54283     Tweak DDR ECC error counter
54284
54285     Enable single-bit error counter when memory was cleared by ddr controller.
54286
54287     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54288     Signed-off-by: Andy Fleming <afleming@freescale.com>
54289
54290 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
54291 Author: Timur Tabi <timur@freescale.com>
54292 Date:   Mon Feb 12 13:34:55 2007 -0600
54293
54294     85xx: write MAC address to mac-address and local-mac-address
54295
54296     Some device trees have a mac-address property, some have local-mac-address,
54297     and some have both.  To support all of these device trees, ftp_cpu_setup()
54298     should write the MAC address to mac-address and local-mac-address, if they
54299     exist.
54300
54301     Signed-off-by: Timur Tabi <timur@freescale.com>
54302
54303 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
54304 Author: Andy Fleming <afleming@freescale.com>
54305 Date:   Mon Apr 23 01:44:44 2007 -0500
54306
54307     Some 85xx cpu cleanups
54308
54309     * Cleaned up the TSR[WIS] clearing
54310     * Cleaned up DMA initialization
54311
54312     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54313     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54314     Acked-by: Andy Fleming <afleming@freescale.com>
54315
54316 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
54317 Author: Andy Fleming <afleming@freescale.com>
54318 Date:   Mon Apr 23 01:32:22 2007 -0500
54319
54320     Add cpu support for the 8544
54321
54322     Recognize new SVR values, and add a few register definitions
54323
54324     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54325     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54326     Acked-by: Andy Fleming <afleming@freescale.com>
54327
54328 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
54329 Author: Jon Loeliger <jdl@freescale.com>
54330 Date:   Wed Apr 11 16:51:02 2007 -0500
54331
54332     Add MPC8544DS basic port board files.
54333
54334     Add board port under new board/freescale directory
54335     structure and reuse existing PIXIS FPGA support there.
54336
54337     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54338     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54339
54340 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
54341 Author: Jon Loeliger <jdl@freescale.com>
54342 Date:   Wed Apr 11 16:50:57 2007 -0500
54343
54344     Add MPC8544DS main configuration file.
54345
54346     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54347     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54348
54349 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
54350 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54351 Date:   Wed Dec 27 22:07:15 2006 +0300
54352
54353     Fix PCI I/O space mapping on Freescale MPC85x0ADS
54354
54355     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
54356     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
54357     describing the local address window used for the PCI I/O space accesses -- fix
54358     this and carry over the necessary changes into the MPC8560ADS code since the
54359     PCI I/O space mapping was also broken for this board (by the earlier commit
54360     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
54361     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
54362
54363     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54364
54365      board/mpc8540ads/init.S      |    4 ++--
54366      board/mpc8560ads/init.S      |    4 ++--
54367      include/configs/MPC8540ADS.h |    5 ++---
54368      include/configs/MPC8541CDS.h |    2 +-
54369      include/configs/MPC8548CDS.h |    2 +-
54370      include/configs/MPC8560ADS.h |    8 ++++----
54371      6 files changed, 12 insertions(+), 13 deletions(-)
54372
54373 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
54374 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54375 Date:   Tue Dec 5 16:42:30 2006 +0800
54376
54377     u-boot: Fix e500 v2 core reset bug
54378
54379     The following patch fixes the e500 v2 core reset bug.
54380     For e500 v2 core, a new reset control register is added to reset the
54381     processor.
54382
54383     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54384
54385 commit 63247a5acd58032e6cf33f525bc3923b467bac88
54386 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54387 Date:   Wed Dec 20 11:01:00 2006 +0800
54388
54389     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
54390
54391     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
54392     entry number to control the loop.  This can reduce the potential risk
54393     for the 85xx processor increasing its TLB adn LAW entry number.
54394
54395     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
54396     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54397
54398 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
54399 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54400 Date:   Mon Dec 18 17:01:04 2006 +0800
54401
54402     u-boot: Fix the 85xxcds tsec bug
54403
54404     Fix the 85xxcds tsec bug.
54405     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
54406
54407     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54408
54409 commit 7337b237ffc4aaf1b9467024fe472a880d852598
54410 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54411 Date:   Fri Dec 15 14:43:31 2006 +0800
54412
54413     u-boot: Fix CPU2 errata on MPC8548CDS board
54414
54415     This patch apply workaround of CPU2 errata on MPC8548CDS board.
54416
54417     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
54418
54419 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
54420 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
54421 Date:   Mon Dec 18 16:25:15 2006 +0800
54422
54423     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
54424
54425     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
54426
54427     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
54428
54429 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
54430 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
54431 Date:   Thu Dec 14 14:14:55 2006 +0800
54432
54433     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
54434
54435     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
54436     board.
54437     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54438
54439 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
54440 Author: Scott Wood <scottwood@freescale.com>
54441 Date:   Mon Apr 16 14:54:15 2007 -0500
54442
54443     mpc83xx: Add MPC8313ERDB support.
54444
54445     Signed-off-by: Scott Wood <scottwood@freescale.com>
54446
54447 commit 49ea3b6eafe606285ae4d5c378026153dde53200
54448 Author: Scott Wood <scottwood@freescale.com>
54449 Date:   Mon Apr 16 14:34:21 2007 -0500
54450
54451     mpc83xx: Add generic PCI setup code.
54452
54453     Board code can now request the generic setup code rather than having to
54454     copy-and-paste it for themselves.  Boards should be converted to use this
54455     once they're tested with it.
54456
54457     Signed-off-by: Scott Wood <scottwood@freescale.com>
54458
54459 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
54460 Author: Scott Wood <scottwood@freescale.com>
54461 Date:   Mon Apr 16 14:34:19 2007 -0500
54462
54463     mpc83xx: Add 831x support to speed.c.
54464
54465     Signed-off-by: Scott Wood <scottwood@freescale.com>
54466
54467 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
54468 Author: Scott Wood <scottwood@freescale.com>
54469 Date:   Mon Apr 16 14:34:18 2007 -0500
54470
54471     mpc83xx: Add 831x support to global_data.h
54472
54473     Signed-off-by: Scott Wood <scottwood@freescale.com>
54474
54475 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
54476 Author: Scott Wood <scottwood@freescale.com>
54477 Date:   Mon Apr 16 14:34:16 2007 -0500
54478
54479     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
54480
54481     Rather than misleadingly define PVR_83xx as the specific type of 83xx
54482     being built for, the PVR of each core revision is defined. checkcpu() now
54483     prints the core that it detects, rather than aborting if it doesn't find
54484     what it thinks it wants.
54485
54486     Signed-off-by: Scott Wood <scottwood@freescale.com>
54487
54488 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
54489 Author: Scott Wood <scottwood@freescale.com>
54490 Date:   Mon Apr 16 14:34:15 2007 -0500
54491
54492     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
54493
54494     Signed-off-by: Scott Wood <scottwood@freescale.com>
54495
54496 commit d87c57b201b4572d16f1b642998faa00c9912b16
54497 Author: Scott Wood <scottwood@freescale.com>
54498 Date:   Mon Apr 16 14:31:55 2007 -0500
54499
54500     mpc83xx: Add register definitions for MPC831x.
54501
54502     Signed-off-by: Scott Wood <scottwood@freescale.com>
54503
54504 commit 7fc4c71a143be8666d70803fb25ae60379c95622
54505 Author: Stefan Roese <sr@denx.de>
54506 Date:   Mon Apr 23 15:39:59 2007 +0200
54507
54508     Fix file mode
54509
54510     Signed-off-by: Stefan Roese <sr@denx.de>
54511
54512 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
54513 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54514 Date:   Mon Apr 23 15:30:39 2007 +0200
54515
54516     [PATCH] Avoid assigning PCI resources from zero address
54517
54518     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
54519     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
54520     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
54521     sentence about "0" being considered an invalid address) -- so, use a reasonable
54522     starting value of 0x1000 (that's what the most Linux archs are using).
54523
54524     Alternatively, one might have fixed the calls to pci_set_region() individually
54525     (some code even seems to have taken care of this issue) but that would have
54526     been a lot more work. :-)
54527
54528     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
54529     Acked-by: Stefan Roese <sr@denx.de>
54530
54531 commit afb903a2eb9436baa9270ccc0c27082d86497d89
54532 Author: Jeffrey Mann <mannj@embeddedplanet.com>
54533 Date:   Mon Apr 23 14:00:11 2007 +0200
54534
54535     [patch] setenv(...) can delete environmentalvariables
54536
54537     update setenv() function so that entering a NULL value for the
54538     variable's value will delete the environmental variable
54539
54540     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
54541     Acked-by: Stefan Roese <sr@denx.de>
54542
54543 commit 36f104e5caa747d568eff26b369565af57c2ffa6
54544 Author: Mike Frysinger <vapier@gentoo.org>
54545 Date:   Mon Apr 23 13:54:24 2007 +0200
54546
54547     [patch] use unsigned char in smc91111 driver for mac
54548
54549     the v_mac variable in the smc91111 driver is declared as a signed char ...
54550     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
54551     because when it gets printed out, you get a display like:
54552     0xFFFFFFE0 and that's no good
54553
54554     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54555
54556 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
54557 Author: Rodolfo Giometti <giometti@enneenne.com>
54558 Date:   Mon Apr 23 13:10:52 2007 +0200
54559
54560     USB: (Another) delay for crappy USB keys.
54561
54562     Some USB keys are slow in giving back an answer when the Root HUB
54563     enables power lines.
54564
54565     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
54566
54567 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
54568 Author: Stefan Roese <sr@denx.de>
54569 Date:   Mon Apr 23 12:00:22 2007 +0200
54570
54571     Remove BOARDLIBS usage completely
54572
54573     Signed-off-by: Stefan Roese <sr@denx.de>
54574
54575 commit 32556443840f127170e4baa8bdd5b567039f6c36
54576 Author: Michal Simek <monstr@monstr.eu>
54577 Date:   Sat Apr 21 21:07:22 2007 +0200
54578
54579     [PATCH] SystemACE support for Microblaze
54580
54581 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
54582 Author: Michal Simek <monstr@monstr.eu>
54583 Date:   Sat Apr 21 21:02:40 2007 +0200
54584
54585     16bit read/write little endian
54586
54587 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
54588 Author: Michal Simek <monstr@monstr.eu>
54589 Date:   Sat Apr 21 20:53:31 2007 +0200
54590
54591     Change ML401 parameters - Xilinx BSP
54592
54593 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
54594 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54595 Date:   Wed Feb 28 05:37:29 2007 -0600
54596
54597     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
54598
54599     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54600
54601 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
54602 Author: Zhang Wei <wei.zhang@freescale.com>
54603 Date:   Fri Jan 19 10:42:37 2007 +0800
54604
54605     Enable LAWs for MPC8641 PCI-Ex2.
54606
54607     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
54608     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54609
54610 commit bd7851ce1e1f140665b520026abf1042968b1102
54611 Author: Jon Loeliger <jdl@freescale.com>
54612 Date:   Fri Apr 20 14:12:26 2007 -0500
54613
54614     mpc86xx; Write MAC address to mac-address and local-mac-address
54615
54616     Some device trees have a mac-address property, some have local-mac-address,
54617     and some have both.  To support all of these device trees, ftp_cpu_setup()
54618     should write the MAC address to mac-address and local-mac-address, if they
54619     exist.
54620
54621     Signed-off-by: Timur Tabi <timur@freescale.com>
54622     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54623
54624 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
54625 Author: Jon Loeliger <jdl@freescale.com>
54626 Date:   Fri Apr 20 14:11:38 2007 -0500
54627
54628     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
54629
54630     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54631     Signed-off-by: Jon Loeliger <jdl@freescale.com>
54632
54633 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
54634 Author: Wolfgang Denk <wd@denx.de>
54635 Date:   Fri Apr 20 17:43:28 2007 +0200
54636
54637     Cleanup compiler warnings, update CHANGELOG
54638
54639     Signed-off-by: Wolfgang Denk <wd@denx.de>
54640
54641 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
54642 Author: Detlev Zundel <dzu@denx.de>
54643 Date:   Fri Apr 20 12:01:47 2007 +0200
54644
54645     Fix breakage of NC650 board with respect to nand support.
54646
54647     Signed-off-by: Detlev Zundel <dzu@denx.de>
54648
54649 commit 39f23cd90947639ac278a18ff277ec786b5ac167
54650 Author: Domen Puncer <domen.puncer@telargo.com>
54651 Date:   Fri Apr 20 11:13:16 2007 +0200
54652
54653     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
54654
54655     G2 core reference manual says decrementer and time base
54656     are decreasing/increasing once every 4 bus clock cycles.
54657     Lets fix it, so time in Linux won't run twice as fast
54658
54659     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
54660     Acked-by: Grant Likely <grant.likely@secretlab.ca>
54661
54662 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
54663 Author: Gerald Van Baren <vanbaren@cideas.com>
54664 Date:   Thu Apr 19 23:14:39 2007 -0400
54665
54666     Fix serious pointer bug with bootm and reserve map.
54667
54668     What was suppose to be a stack variable was declared as a pointer,
54669       overwriting random memory.
54670     Also moved the libfdt.a requirement into the main Makefile.  That is
54671       The U-Boot Way.
54672
54673 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
54674 Author: Stefan Roese <sr@denx.de>
54675 Date:   Thu Apr 19 09:53:52 2007 +0200
54676
54677     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
54678
54679     Previous versions used full wait states for the chip select #1 which
54680     is connected to the Xilinix SystemACE controller on the AMCC Katmai
54681     evaluation board. This leads to really slow access and therefore low
54682     performance. This patch now sets up the chip select a lot faster
54683     resulting in much better read/write performance of the Linux driver.
54684
54685     Signed-off-by: Stefan Roese <sr@denx.de>
54686
54687 commit 37837828d89084879bee2f2b8c7c68d4695940df
54688 Author: Wolfgang Denk <wd@denx.de>
54689 Date:   Wed Apr 18 17:49:29 2007 +0200
54690
54691     Clenaup, update CHANGELOG
54692
54693     Signed-off-by: Wolfgang Denk <wd@denx.de>
54694
54695 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
54696 Author: Wolfgang Denk <wd@denx.de>
54697 Date:   Wed Apr 18 17:20:58 2007 +0200
54698
54699     Update CHANGELOG
54700
54701     Signed-off-by: Wolfgang Denk <wd@denx.de>
54702
54703 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
54704 Author: Wolfgang Denk <wd@denx.de>
54705 Date:   Wed Apr 18 17:07:26 2007 +0200
54706
54707     Cleanup, update CHANGELOG
54708
54709     Sigend-off-by: Wolfgang Denk <wd@denx.de>
54710
54711 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
54712 Author: Wolfgang Denk <wd@denx.de>
54713 Date:   Wed Apr 18 16:17:46 2007 +0200
54714
54715     Update CHANGELOG
54716
54717 commit ad4eb555671d97f96dc56eab55103b1f86874b01
54718 Author: Wolfgang Denk <wd@denx.de>
54719 Date:   Wed Apr 18 14:30:39 2007 +0200
54720
54721     MCC200 board: remove warning which is obsolete after PSoC firmware changes
54722
54723     Signed-off-by: Wolfgang Denk <wd@denx.de>
54724
54725 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
54726 Author: Domen Puncer <domen.puncer@telargo.com>
54727 Date:   Wed Apr 18 12:11:05 2007 +0200
54728
54729     [PATCH] icecube/lite5200b: document wakeup from low-power support
54730
54731     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
54732
54733 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
54734 Author: Stefan Roese <sr@denx.de>
54735 Date:   Wed Apr 18 12:07:47 2007 +0200
54736
54737     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
54738
54739     Signed-off-by: Stefan Roese <sr@denx.de>
54740
54741 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
54742 Author: Stefan Roese <sr@denx.de>
54743 Date:   Wed Apr 18 12:05:59 2007 +0200
54744
54745     ppc4xx: Add output for bootrom location to 405EZ ports
54746
54747     Now 405EZ ports also show upon bootup from which boot device
54748     they are configured to boot:
54749
54750     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
54751
54752     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
54753            Bootstrap Option E - Boot ROM Location EBC (32 bits)
54754            16 kB I-Cache 16 kB D-Cache
54755     Board: Acadia - AMCC PPC405EZ Evaluation Board
54756
54757     Signed-off-by: Stefan Roese <sr@denx.de>
54758
54759 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
54760 Author: Peter Pearse <peter.pearse@arm.com>
54761 Date:   Tue Apr 17 13:30:33 2007 +0100
54762
54763     Move ppearse to ARM board list
54764     Add Konstantin Kletschke for scb9328.
54765     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
54766
54767 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
54768 Author: Domen Puncer <domen.puncer@telargo.com>
54769 Date:   Mon Apr 16 14:00:13 2007 +0200
54770
54771     [PATCH] icecube/lite5200b: wakeup from low-power support
54772
54773     U-Boot part of Lite5200b low power mode support.
54774     Puts SDRAM out of self-refresh and transfers control to
54775     address saved at physical 0x0.
54776
54777     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
54778     Acked-by: Grant Likely <grant.likely@secretlab.ca>
54779
54780 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
54781 Author: Gerald Van Baren <vanbaren@cideas.com>
54782 Date:   Sun Apr 15 13:54:26 2007 -0400
54783
54784     Fix the ft_cpu_setup() property settings.
54785
54786     Use "setter" functions instead of flags, cleaner and more flexible.
54787     It also fixes the problem noted by Timur Tabi that the ethernet MAC
54788     addresses were all being set incorrectly to the same MAC address.
54789
54790 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
54791 Author: Gerald Van Baren <vanbaren@cideas.com>
54792 Date:   Sat Apr 14 22:51:24 2007 -0400
54793
54794     Improve the bootm command for CONFIG_OF_LIBFDT
54795
54796     In bootm, create the "/chosen" node only if it doesn't already exist
54797       (better matches the previous behavior).
54798     Update for proper reserved memory map handling for initrd.
54799
54800 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
54801 Author: Gerald Van Baren <vanbaren@cideas.com>
54802 Date:   Sat Apr 14 22:46:41 2007 -0400
54803
54804     Add some utilities to manipulate the reserved memory map.
54805
54806 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
54807 Author: Wolfgang Denk <wd@denx.de>
54808 Date:   Sat Apr 14 21:16:54 2007 +0200
54809
54810     Update CHANGELOG
54811
54812 commit 8e6875183cdca91c134408d119d4abcd48ef6856
54813 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54814 Date:   Sun Dec 17 18:56:46 2006 +0100
54815
54816     AVR32: Enable MMC support
54817
54818     Set up the portmux for the MMC interface and enable the MMC driver
54819     along with support for DOS partitions, ext2 and FAT filesystems.
54820
54821     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54822
54823 commit fc26c97bb6df41b4a95662c34054fe912387bf38
54824 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54825 Date:   Fri Jan 20 10:03:53 2006 +0100
54826
54827     Atmel MCI driver
54828
54829     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
54830
54831     The AT91 ARM-based CPUs use basically the same hardware, so it should
54832     be possible to share this driver, but no effort has been made so far.
54833
54834     Hardware documentation can be found in the AT32AP7000 data sheet,
54835     which can be downloaded from
54836
54837     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
54838
54839     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54840
54841 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
54842 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54843 Date:   Sun Dec 17 18:55:37 2006 +0100
54844
54845     AVR32: Add clk and gpio infrastructure for mmci
54846
54847     Implement functions for configuring the mmci pins, as well as
54848     functions for getting the clock rate of the mmci controller.
54849
54850     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54851
54852 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
54853 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54854 Date:   Sun Dec 17 18:53:56 2006 +0100
54855
54856     Enable partition support with MMC
54857
54858     Include implementations of init_part() and get_partition_info() when
54859     CONFIG_MMC is set.
54860
54861     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54862
54863 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
54864 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54865 Date:   Sun Dec 17 17:14:30 2006 +0100
54866
54867     AVR32: Enable networking
54868
54869     Implement MACB initialization for AVR32 and ATSTK1000, and turn
54870     everything on, including the MACB driver.
54871
54872     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54873
54874 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
54875 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54876 Date:   Fri Jan 20 10:03:34 2006 +0100
54877
54878     Atmel MACB ethernet driver
54879
54880     Driver for the Atmel MACB on-chip ethernet controller.
54881
54882     This driver has been tested on the ATSTK1000 board with a AT32AP7000
54883     CPU. It should probably work on AT91SAM926x as well with some minor
54884     modifications.
54885
54886     Hardware documentation can be found in the AT32AP7000 data sheet,
54887     which can be downloaded from
54888
54889     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
54890
54891     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54892
54893 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
54894 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54895 Date:   Sun Dec 17 16:56:14 2006 +0100
54896
54897     AVR32: Add clk and gpio infrastructure for macb0 and macb1
54898
54899     Implement functions for configuring the macb0 and macb1 pins, as
54900     well as functions for getting the clock rate of the various
54901     busses the macb ethernet controllers are connected to.
54902
54903     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54904
54905 commit d5acb95b16a0a74c643524342c3437e765426d05
54906 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54907 Date:   Sun Dec 17 15:39:15 2006 +0100
54908
54909     AVR32: Implement simple DMA memory allocator
54910
54911     Implement dma_alloc_coherent() which returns cache-aligned
54912     uncacheable memory.
54913
54914     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54915
54916 commit 91975b0fea773c9e681fea8cf3349669f27685ee
54917 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54918 Date:   Sun Dec 17 15:46:02 2006 +0100
54919
54920     Import <linux/mii.h> from the Linux kernel
54921
54922     Instead of creating yet another set of MII register definitions
54923     in the macb driver, here's a complete set of definitions for everyone
54924     to use.
54925
54926     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54927
54928 commit 1b804b229556a4d862da93c0ec94e79419364b2c
54929 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54930 Date:   Wed Mar 21 19:47:36 2007 +0100
54931
54932     AVR32: Include more commands for ATSTK1000
54933
54934     Include the imi, imls and jffs commands sets by default on ATSTK1000.
54935     Also define CONFIG_BOOTARGS to something more useful, define
54936     CONFIG_BOOTCOMMAND and enable autoboot by default.
54937
54938     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54939
54940 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
54941 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54942 Date:   Wed Mar 21 19:44:48 2007 +0100
54943
54944     AVR32: Provide a definition of struct stat
54945
54946     Copy the definition of struct stat from the Linux kernel.
54947
54948     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54949
54950 commit 12f099c08167a7a51aeee623bc16dafd0841271c
54951 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54952 Date:   Sun Dec 17 14:46:06 2006 +0100
54953
54954     AVR32: Use initdram() instead of board_init_memories()
54955
54956     Conform to the "standard" interface and use initdram() instead of
54957     board_init_memories() on AVR32. This enables us to get rid of the
54958     sdram_size member of the global_data struct as well.
54959
54960     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54961
54962 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
54963 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54964 Date:   Mon Nov 20 15:53:10 2006 +0100
54965
54966     AVR32: Relocate u-boot to SDRAM
54967
54968     Relocate the u-boot image into SDRAM like everyone else does. This
54969     means that we can handle much larger .data and .bss than we used to.
54970
54971     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54972
54973 commit df548d3c3e2bbc40258713167859ffc2ce99a900
54974 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54975 Date:   Sun Nov 19 18:06:53 2006 +0100
54976
54977     AVR32: Resource management rewrite
54978
54979     Rewrite the resource management code (i.e. I/O memory, clock gating,
54980     gpio) so it doesn't depend on any global state. This is necessary
54981     because this code is heavily used before relocation to RAM, so we
54982     can't write to any global variables.
54983
54984     As an added bonus, this makes u-boot's memory footprint a bit smaller,
54985     although some functionality has been left out; all clocks are enabled
54986     all the time, and there's no checking for gpio line conflicts.
54987
54988     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
54989
54990 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
54991 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
54992 Date:   Sat Nov 18 18:01:13 2006 +0100
54993
54994     AVR32: Clean up memory-map.h for at32ap7000
54995
54996     Convert spaces to tabs (must have missed this one last time around),
54997     sort the entries by address and group them together by bus
54998     connectivity.
54999
55000     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55001
55002 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
55003 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55004 Date:   Sat Nov 18 17:32:31 2006 +0100
55005
55006     AVR32: Build position-independent u-boot
55007
55008     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
55009     position independent. This will make relocation a lot easier.
55010
55011     -mno-init-got means that gcc shouldn't emit code to load the GOT
55012     address into r6 in every function prologue. We do it once and for
55013     all in the early startup assembly code, so enabling this option
55014     makes u-boot a bit faster and smaller.
55015
55016     The assembly parts have always been position-independent, so no code
55017     changes should be necessary.
55018
55019     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55020
55021 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
55022 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55023 Date:   Sat Nov 18 17:24:31 2006 +0100
55024
55025     AVR32: Use avr32-linux- cross-compilation prefix by default
55026
55027     It doesn't really matter which toolchain you use to compile u-boot,
55028     but the avr32-linux one is probably what most people have installed.
55029
55030     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55031
55032 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
55033 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
55034 Date:   Sat Nov 18 17:15:30 2006 +0100
55035
55036     AVR32: Split start_u_boot into board_init_f and board_init_r
55037
55038     Split the avr32 initialization code into a function to run before
55039     relocation, board_init_f and a function to run after relocation,
55040     board_init_r. For now, board_init_f simply calls board_init_r
55041     at the end.
55042
55043     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
55044
55045 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
55046 Author: Heiko Schocher <hs@pollux.denx.de>
55047 Date:   Sat Apr 14 05:26:48 2007 +0200
55048
55049     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
55050             clear the Display after reset.
55051
55052     Signed-off-by: Heiko Schocher <hs@denx.de>
55053
55054 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
55055 Author: Denis Peter <d.peter@mpl.ch>
55056 Date:   Fri Apr 13 09:13:33 2007 +0200
55057
55058     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
55059
55060     Fix bug introduced by "Fix get_partition_info() parameter error in all
55061     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
55062     to use diskboot or scsiboot form another device than 0.
55063
55064     Signed-off-by: Denis Peter <d.peter@mpl.ch>
55065
55066 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
55067 Author: Greg Lopp <lopp@pobox.com>
55068 Date:   Fri Apr 13 08:02:24 2007 +0200
55069
55070     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
55071
55072     Signed-of-by: Greg Lopp <lopp@pobox.com>
55073     Acked-by: Grant Likely <grant.likely@secretlab.ca>
55074
55075 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
55076 Author: Xie Xiaobo <r63061@freescale.com>
55077 Date:   Fri Mar 9 19:08:25 2007 +0800
55078
55079     Fix two bugs for MPC83xx DDR2 controller SPD Init
55080
55081     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
55082     the first bug is that the picos_to_clk routine introduces a huge
55083     rounding error in 83xx.
55084     the second bug is that the mode register write recovery field is
55085     tWR-1, not tWR >> 1.
55086
55087 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
55088 Author: Jeffrey Mann <mannj@embeddedplanet.com>
55089 Date:   Thu Apr 12 14:15:59 2007 +0200
55090
55091     ppc4xx: Fix i2c divisor calcularion for PPC4xx
55092
55093     This patch fixes changes the i2c_init(...) function to use the function
55094     get_OPB_freq() rather than calculating the OPB speed by
55095     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
55096     specific per processor. The prior method was not and so was calculating
55097     the wrong speed for some PPC4xx processors.
55098
55099     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
55100     Signed-off-by: Stefan Roese <sr@denx.de>
55101
55102 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
55103 Author: Wolfgang Denk <wd@denx.de>
55104 Date:   Wed Apr 11 17:25:01 2007 +0200
55105
55106     Update CHANGELOG
55107
55108     Signed-off-by: Wolfgang Denk <wd@denx.de>
55109
55110 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
55111 Author: Wolfgang Denk <wd@denx.de>
55112 Date:   Wed Apr 11 17:22:55 2007 +0200
55113
55114     Update for SC3 board
55115
55116     * Make IDE timeout configurable through ide_reset_timeout variable.
55117     * Use Newline as "password" string
55118     * Use just a single partition in NAND flash
55119
55120 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
55121 Author: Haiying Wang <haiying.wang@freescale.com>
55122 Date:   Mon Jan 22 12:37:30 2007 -0600
55123
55124     Add PIXIS FPGA support for MPC8641HPCN board.
55125
55126     Move the 8641HPCN's PIXIS code to the new directory
55127     board/freescale/common/ as it will be shared by
55128     future boards not in the same processor family.
55129
55130     Write a "pixis_reset" command that utilizes the FPGA
55131     reset sequencer to support alternate soft-reset options
55132     such as using the "alternate" flash bank, enabling
55133     the watch dog, or choosing different CPU frequencies.
55134
55135     Add documentation for the pixis_reset to README.mpc8641hpcn.
55136
55137     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
55138     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55139
55140 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
55141 Author: Gerald Van Baren <vanbaren@cideas.com>
55142 Date:   Fri Apr 6 14:19:43 2007 -0400
55143
55144     Moved fdt command support code to fdt_support.c
55145
55146     ...in preparation for improving the bootm command's handling of fdt blobs.
55147     Also cleaned up some coding sloppiness.
55148
55149 commit 6679f9299534e488a171a9bb8f9bb891de247aab
55150 Author: Gerald Van Baren <vanbaren@cideas.com>
55151 Date:   Fri Apr 6 14:17:14 2007 -0400
55152
55153     libfdt: Make fdt_check_header() public
55154
55155     Changed _fdt_check_header() to fdt_check_header() and made it part of
55156     the interface - it is a useful routine.
55157
55158     Also did some asthetics cleanup to the include files (headers).
55159
55160 commit c0707ce65677650b5ceab0500ee50ae5168afef2
55161 Author: Aubrey Li <aubrey.adi@gmail.com>
55162 Date:   Thu Apr 5 18:34:06 2007 +0800
55163
55164     [Blackfin][PATCH] Kill off a bunch of common local prototypes
55165
55166 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
55167 Author: Aubrey Li <aubrey.adi@gmail.com>
55168 Date:   Thu Apr 5 18:33:04 2007 +0800
55169
55170     [Blackfin][PATCH] Fix dynamic CPLB generation issue
55171
55172 commit 0445e3a264251d75b1be45ef713c70726a2952f0
55173 Author: Aubrey Li <aubrey.adi@gmail.com>
55174 Date:   Thu Apr 5 18:31:47 2007 +0800
55175
55176     [Blackfin][PATCH] minior cleanup
55177
55178 commit 155fd766573981090e638b493d5857562151862e
55179 Author: Aubrey Li <aubrey.adi@gmail.com>
55180 Date:   Thu Apr 5 18:31:18 2007 +0800
55181
55182     [Blackfin][PATCH] Fix copyright and update license
55183
55184 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
55185 Author: Aubrey Li <aubrey.adi@gmail.com>
55186 Date:   Thu Apr 5 18:30:25 2007 +0800
55187
55188     [Blackfin][PATCH] Add BF537 EMAC driver initialization
55189
55190 commit 889256e8604e0c68db1d866d720894dffede9df6
55191 Author: Aubrey Li <aubrey.adi@gmail.com>
55192 Date:   Thu Apr 5 18:29:55 2007 +0800
55193
55194     [Blackfin][PATCH] call real the system synchronize instruction
55195
55196 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
55197 Author: Aubrey Li <aubrey.adi@gmail.com>
55198 Date:   Thu Apr 5 18:29:17 2007 +0800
55199
55200     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
55201
55202 commit dfeeab2cd680df047e68e723b246adf6f33bb556
55203 Author: Aubrey Li <aubrey.adi@gmail.com>
55204 Date:   Thu Apr 5 18:28:34 2007 +0800
55205
55206     [Blackfin][PATCH]: fix flash unaligned copy issue
55207
55208 commit 443feb740584e406efa203af909fe2926608e8d5
55209 Author: Igor Marnat <marny@rambler.ru>
55210 Date:   Wed Mar 21 09:55:01 2007 +0300
55211
55212     Update usage of 'nc' in README.NetConsole
55213
55214     Added information about usage of NetConsole on systems where the -l and -p
55215     switches are mutually exclusive.
55216
55217     Signed-off-by: Igor Marnat <marny@rambler.ru>
55218     Signed-off-by: Ben Warren <bwarren@qstreams.com>
55219
55220 commit 31c98a88228021b314c89ebb8104fb6473da4471
55221 Author: Wolfgang Denk <wd@denx.de>
55222 Date:   Wed Apr 4 02:09:30 2007 +0200
55223
55224     Minor coding style cleanup.
55225
55226 commit 94abd7c0583ebe01e799b25f451201deeaab550d
55227 Author: Wolfgang Denk <wd@denx.de>
55228 Date:   Wed Apr 4 01:49:15 2007 +0200
55229
55230     Minor cleanup.
55231
55232 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
55233 Author: Rodolfo Giometti <giometti@enneenne.com>
55234 Date:   Tue Apr 3 14:27:18 2007 +0200
55235
55236     Support for the Philips ISP116x HCD (Host Controller Driver)
55237
55238     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
55239
55240 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
55241 Author: Markus Klotzbuecher <mk@denx.de>
55242 Date:   Tue Apr 3 14:27:08 2007 +0200
55243
55244     USB: cleanup monahans usb support. Remove dead code.
55245
55246     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
55247
55248 commit a65c5768e5537530bd1780af3d3fddc3113a163c
55249 Author: Stefan Roese <sr@denx.de>
55250 Date:   Mon Apr 2 10:09:30 2007 +0200
55251
55252     ppc4xx: Change SysACE address on Katmai
55253
55254     With this new base address of the Xilinx SystemACE controller
55255     the Linux driver will be easier to adapt, since it can now be
55256     mapped via the "normal" ioremap() call.
55257
55258     Signed-off-by: Stefan Roese <sr@denx.de>
55259
55260 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
55261 Author: Gerald Van Baren <vanbaren@cideas.com>
55262 Date:   Sat Mar 31 14:30:53 2007 -0400
55263
55264     Fix some minor whitespace violations.
55265
55266 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
55267 Author: Gerald Van Baren <vanbaren@cideas.com>
55268 Date:   Sat Mar 31 12:23:51 2007 -0400
55269
55270     Add a flattened device tree (fdt) command (2 of 2)
55271
55272     Modifications to the existing code to support the new fdt command.
55273
55274 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
55275 Author: Gerald Van Baren <vanbaren@cideas.com>
55276 Date:   Sat Mar 31 12:22:10 2007 -0400
55277
55278     Add a flattened device tree (fdt) command (1 of 2)
55279
55280     The fdt command uses David Gibson's libfdt library to manipulate as well
55281     as print the flattened device tree.  This patch is the new command,
55282     the second part is the modifications to the existing code.
55283
55284 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
55285 Author: Gerald Van Baren <vanbaren@cideas.com>
55286 Date:   Sat Mar 31 12:13:43 2007 -0400
55287
55288     libfdt: Enhanced and published fdt_next_tag()
55289
55290     Enhanced the formerly private function _fdt_next_tag() to allow stepping
55291       through the tree, used to produce a human-readable dump, and made
55292       it part of the published interface.
55293     Also added some comments.
55294
55295 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
55296 Author: Gerald Van Baren <vanbaren@cideas.com>
55297 Date:   Sat Mar 31 12:05:39 2007 -0400
55298
55299     libfdt: Customizations for use by u-boot.
55300
55301     Changes to David Gibson's original source to fit into u-boot's
55302     environment.  No functionality changes.
55303
55304 commit 35748177c64a4a83a00057e93bb33e40278a2a96
55305 Author: Gerald Van Baren <vanbaren@cideas.com>
55306 Date:   Sat Mar 31 12:00:56 2007 -0400
55307
55308     libfdt: Import libfdt source (2 of 2)
55309
55310     This adds the applicable libfdt source files (unmodified) and a README
55311     to explain where the source came from.
55312
55313 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
55314 Author: Gerald Van Baren <vanbaren@cideas.com>
55315 Date:   Sat Mar 31 11:59:59 2007 -0400
55316
55317     libfdt: Import libfdt source (1 of 2)
55318
55319     This adds the applicable libfdt source files (unmodified) and a README
55320     to explain where the source came from.
55321
55322 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
55323 Author: Stefan Roese <sr@denx.de>
55324 Date:   Sat Mar 31 13:16:23 2007 +0200
55325
55326     ppc4xx: Update Katmai bootstrap command
55327
55328     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
55329     is selected.
55330
55331     Signed-off-by: Stefan Roese <sr@denx.de>
55332
55333 commit cabee756a6532986729477c3cc1ea16ef8517ad2
55334 Author: Stefan Roese <sr@denx.de>
55335 Date:   Sat Mar 31 13:15:06 2007 +0200
55336
55337     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
55338
55339     Additional RAM information is now printed upon powerup, like
55340     DDR2 frequency and CAS latency.
55341
55342     Signed-off-by: Stefan Roese <sr@denx.de>
55343
55344 commit 60723803431ac75cad085690789e433d5ab9174e
55345 Author: Stefan Roese <sr@denx.de>
55346 Date:   Sat Mar 31 08:48:36 2007 +0200
55347
55348     ppc4xx: Change Yucca config file to support ECC
55349
55350     With the updated 44x DDR2 driver the Yucca board now supports
55351     ECC generation and checking.
55352
55353     Signed-off-by: Stefan Roese <sr@denx.de>
55354
55355 commit 490e5730c674b20d708b783a2c5ffd7208f83873
55356 Author: Stefan Roese <sr@denx.de>
55357 Date:   Sat Mar 31 08:47:34 2007 +0200
55358
55359     ppc4xx: Fix "bootstrap" command for Katmai board
55360
55361     The board specific "bootstrap" command is now fixed and can
55362     be used for the AMCC Katmai board to configure different
55363     CPU/PLB/OPB frequencies.
55364
55365     Signed-off-by: Stefan Roese <sr@denx.de>
55366
55367 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
55368 Author: Stefan Roese <sr@denx.de>
55369 Date:   Sat Mar 31 08:46:08 2007 +0200
55370
55371     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
55372
55373     Fix a bug in the auto calibration routine. This driver now runs
55374     more reliable with the tested modules. It's also tested with
55375     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
55376
55377     Signed-off-by: Stefan Roese <sr@denx.de>
55378
55379 commit 342cd097be1e7affe82f42ab3da220959a699e64
55380 Author: Michal Simek <monstr@monstr.eu>
55381 Date:   Fri Mar 30 22:52:09 2007 +0200
55382
55383     [PATCH] Clean include dependence
55384
55385 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
55386 Author: Michal Simek <monstr@monstr.eu>
55387 Date:   Fri Mar 30 22:42:45 2007 +0200
55388
55389     [CLEAN] Remove inefficient Suzaku code
55390
55391 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
55392 Author: Stefan Roese <sr@denx.de>
55393 Date:   Wed Mar 28 15:03:16 2007 +0200
55394
55395     Merge some AMCC make targets to keep the top-level Makefile smaller
55396
55397     Signed-off-by: Stefan Roese <sr@denx.de>
55398
55399 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
55400 Author: Stefan Roese <sr@denx.de>
55401 Date:   Wed Mar 28 14:52:12 2007 +0200
55402
55403     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
55404
55405     The "old" i2c commands (iprobe, imd...) are now compiled in again,
55406     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
55407     config option.
55408
55409     Signed-off-by: Stefan Roese <sr@denx.de>
55410
55411 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
55412 Author: Michal Simek <monstr@monstr.eu>
55413 Date:   Tue Mar 27 00:32:16 2007 +0200
55414
55415     PATCH: Resolve GPL license problem
55416
55417 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
55418 Author: Rodolfo Giometti <giometti@enneenne.com>
55419 Date:   Mon Mar 26 12:03:36 2007 +0200
55420
55421     PXA: pxa27x USB OHCI support
55422
55423     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
55424
55425 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
55426 Author: Markus Klotzbuecher <mk@denx.de>
55427 Date:   Mon Mar 26 11:21:05 2007 +0200
55428
55429     USB: remove the S3C24X0_merge #define, which was introduced while
55430     merging OHCI drivers.
55431
55432     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
55433
55434 commit 1798049522f594013aea29457d46794298c6ae15
55435 Author: Michal Simek <root@monstr.eu>
55436 Date:   Mon Mar 26 01:39:07 2007 +0200
55437
55438     Support for XUPV2P board
55439     Reset support
55440     BSP autoconfig support
55441
55442 commit 0d974d5297349504a2ddfa09314be573b5df320a
55443 Author: Stefan Roese <sr@denx.de>
55444 Date:   Sat Mar 24 15:57:09 2007 +0100
55445
55446     [PATCH] Add 4xx GPIO functions
55447
55448     This patch adds some 4xx GPIO functions. It also moves some of the
55449     common code and defines into a common 4xx GPIO header file.
55450
55451     Signed-off-by: Stefan Roese <sr@denx.de>
55452
55453 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
55454 Author: Stefan Roese <sr@denx.de>
55455 Date:   Sat Mar 24 15:55:58 2007 +0100
55456
55457     [PATCH] Small Sequoia cleanup
55458
55459     Signed-off-by: Stefan Roese <sr@denx.de>
55460
55461 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
55462 Author: Stefan Roese <sr@denx.de>
55463 Date:   Sat Mar 24 15:45:34 2007 +0100
55464
55465     [PATCH] Clean up 40EZ/Acadia support
55466
55467     This patch cleans up all the open issue of the preliminary
55468     Acadia support.
55469
55470     Signed-off-by: Stefan Roese <sr@denx.de>
55471
55472 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
55473 Author: Jon Loeliger <jdl@freescale.com>
55474 Date:   Tue Dec 12 11:02:20 2006 -0600
55475
55476     Fix 8641HPCN problem with ld version 2.16
55477
55478     (Dot outside sections problem).
55479
55480     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
55481
55482     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55483
55484 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
55485 Author: Haiying Wang <haiying.wang@freescale.com>
55486 Date:   Thu Dec 7 10:35:55 2006 -0600
55487
55488     Set Rev 2.x 86xx PIC in mixed mode.
55489
55490     Prevent false interrupt from hanging Linux as MSR[EE] is set
55491     to enable interrupts by changing the PIC out of the default
55492     pass through mode into mixed mode.
55493
55494     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
55495     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55496
55497 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
55498 Author: Jason Jin <jason.jin@freescale.com>
55499 Date:   Thu Dec 7 10:32:35 2006 -0600
55500
55501     Add flash cmd function to 8641HPCN ramboot
55502
55503     Also fixes some commmand for 8641 HPCN ramboot case.
55504
55505     Signed-off-by: Jason Jin <jason.jin@freescale.com>
55506     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55507
55508 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
55509 Author: Ed Swarthout <ed.swarthout@freescale.com>
55510 Date:   Thu Dec 7 10:34:14 2006 -0600
55511
55512     Add support for 8641 Rev 2 silicon.
55513
55514     Without this patch, I am unable to get to the prompt on rev 2 silicon.
55515     Only set ddrioovcr for rev1.
55516
55517     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
55518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
55519
55520 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
55521 Author: Wolfgang Denk <wd@denx.de>
55522 Date:   Thu Mar 22 00:13:12 2007 +0100
55523
55524     Code cleanup / re-insert previous Copyright entries.
55525
55526     Signed-off-by: Wolfgang Denk <wd@denx.de>
55527
55528 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
55529 Author: Wolfgang Denk <wd@denx.de>
55530 Date:   Wed Mar 21 23:26:15 2007 +0100
55531
55532     Code cleanup. Update CHANGELOG
55533
55534 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
55535 Author: Stefan Roese <sr@denx.de>
55536 Date:   Wed Mar 21 14:54:29 2007 +0100
55537
55538     ppc4xx: Fix file mode of include/configs/acadia.h
55539
55540     Signed-off-by: Stefan Roese <sr@denx.de>
55541
55542 commit d5f4614c9350d9333e575100fb250aab774d0258
55543 Author: Markus Klotzbuecher <mk@denx.de>
55544 Date:   Wed Mar 21 14:41:46 2007 +0100
55545
55546     SPC1920: fix small clock routing bug
55547
55548     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
55549
55550 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
55551 Author: Stefan Roese <sr@denx.de>
55552 Date:   Wed Mar 21 13:39:57 2007 +0100
55553
55554     [PATCH] Add AMCC Acadia (405EZ) eval board support
55555
55556     This patch adds support for the new AMCC Acadia eval board.
55557
55558     Please note that this Acadia/405EZ support is still in a beta stage.
55559     Still lot's of cleanup needed but we need a preliminary release now.
55560
55561     Signed-off-by: Stefan Roese <sr@denx.de>
55562
55563 commit e01bd218b00af73499331a1a701625a852cd286f
55564 Author: Stefan Roese <sr@denx.de>
55565 Date:   Wed Mar 21 13:38:59 2007 +0100
55566
55567     [PATCH] Add AMCC PPC405EZ support
55568
55569     This patch adds support for the new AMCC 405EZ PPC. It is in
55570     preparation for the AMCC Acadia board support.
55571
55572     Please note that this Acadia/405EZ support is still in a beta stage.
55573     Still lot's of cleanup needed but we need a preliminary release now.
55574
55575     Signed-off-by: Stefan Roese <sr@denx.de>
55576
55577 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
55578 Author: Heiko Schocher <hs@pollux.denx.de>
55579 Date:   Wed Mar 21 08:45:17 2007 +0100
55580
55581     [PATCH] TQM8272: dont change the bits given from the HRCW
55582                      for the SIUMCR and BCR Register.
55583                      Fix the calculation for the EEprom Size
55584
55585     Signed-off-by: Heiko Schocher <hs@denx.de>
55586
55587 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
55588 Author: Aubrey Li <aubrey.adi@gmail.com>
55589 Date:   Tue Mar 20 18:16:24 2007 +0800
55590
55591     [Blackfin][PATCH] Add BF561 EZKIT board support
55592
55593 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
55594 Author: Aubrey Li <aubrey.adi@gmail.com>
55595 Date:   Mon Mar 19 22:55:58 2007 +0800
55596
55597     [Blackfin][PATCH] minor cleanup
55598
55599 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
55600 Author: Wolfgang Denk <wd@denx.de>
55601 Date:   Mon Mar 19 13:10:08 2007 +0100
55602
55603     Remove obsoleted POST files.
55604
55605     Signed-off-by: Wolfgang Denk <wd@denx.de>
55606
55607 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
55608 Author: Aubrey Li <aubrey.adi@gmail.com>
55609 Date:   Mon Mar 19 01:26:11 2007 +0800
55610
55611     [PATCH] Add flash chip M29W320ET/B support
55612
55613 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
55614 Author: Aubrey Li <aubrey.adi@gmail.com>
55615 Date:   Mon Mar 19 01:24:52 2007 +0800
55616
55617     [Blackfin][PATCH] Add BF537 stamp board support
55618
55619 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
55620 Author: Stefan Roese <sr@denx.de>
55621 Date:   Fri Mar 16 21:11:42 2007 +0100
55622
55623     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
55624
55625     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
55626     DDR memory are dynamically programmed matching the total size
55627     of the equipped memory (DIMM modules).
55628
55629     Signed-off-by: Stefan Roese <sr@denx.de>
55630
55631 commit 76d1466f918b881cda2d259254761e73885093c2
55632 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55633 Date:   Tue Mar 13 13:38:05 2007 +0100
55634
55635     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
55636             boards in terms of unification.
55637
55638     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55639
55640 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
55641 Author: Wolfgang Denk <wd@denx.de>
55642 Date:   Tue Mar 13 16:05:55 2007 +0100
55643
55644     Make SC3 board build with 'make O='; use 'addcons' consistently
55645     (SC3 and Jupiter used to use 'addcon' instead).
55646
55647     Signed-off-by: Wolfgang Denk wd@denx.de
55648
55649 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
55650 Author: Heiko Schocher <hs@pollux.denx.de>
55651 Date:   Tue Mar 13 09:40:59 2007 +0100
55652
55653     [PATCH] update board config for jupiter Board:
55654             added Hush Shell,
55655                   CONFIG_CMDLINE_EDITING,
55656                   CFG_ENV_ADDR_REDUND activated
55657
55658     Signed-off-by: Heiko Schocher <hs@denx.de>
55659
55660 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
55661 Author: Aubrey Li <aubrey.adi@gmail.com>
55662 Date:   Mon Mar 12 12:11:55 2007 +0800
55663
55664     [Blackfin][PATCH] minor cleanup
55665
55666 commit bfa5754a58477ac917d21527cd0f079d87cf188e
55667 Author: Aubrey Li <aubrey.adi@gmail.com>
55668 Date:   Mon Mar 12 01:42:06 2007 +0800
55669
55670     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
55671
55672 commit 8440bb14581a294375c34b91b42512f9753d1130
55673 Author: Aubrey Li <aubrey.adi@gmail.com>
55674 Date:   Mon Mar 12 00:25:14 2007 +0800
55675
55676     [Blackfin][PATCH] code cleanup
55677
55678 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
55679 Author: Michal Simek <monstr@monstr.eu>
55680 Date:   Sun Mar 11 13:48:24 2007 +0100
55681
55682     [Microblaze][PATCH] part 2
55683     timer support
55684     interrupt controller support
55685     flash support
55686     ethernet support
55687     cache support
55688     board information support
55689     env support
55690     booting image support
55691
55692     adding support for Xilinx ML401
55693
55694 commit 76316a318de91f6184e7c22a10e02d275ade2441
55695 Author: Michal Simek <monstr@monstr.eu>
55696 Date:   Sun Mar 11 13:42:58 2007 +0100
55697
55698     [Microblaze][PATCH]
55699     timer support
55700     interrupt controller support
55701     flash support
55702     ethernet support
55703     cache support
55704     board information support
55705     env support
55706     booting image support
55707
55708     adding support for Xilinx ML401
55709
55710 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
55711 Author: Aubrey Li <aubrey.adi@gmail.com>
55712 Date:   Sat Mar 10 23:49:29 2007 +0800
55713
55714     [Blackfin][PATCH] code cleanup
55715
55716 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
55717 Author: Aubrey.Li <aubrey.adi@gmail.com>
55718 Date:   Fri Mar 9 13:40:56 2007 +0800
55719
55720     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
55721
55722 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
55723 Author: Aubrey.Li <aubrey.adi@gmail.com>
55724 Date:   Fri Mar 9 13:38:44 2007 +0800
55725
55726     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
55727
55728 commit 992423ab43c2bcf6b704853bd00af77450915e20
55729 Author: Stefan Roese <sr@denx.de>
55730 Date:   Thu Mar 8 23:00:08 2007 +0100
55731
55732     ppc4xx: Fix file mode of sequoia.c
55733
55734     Signed-off-by: Stefan Roese <sr@denx.de>
55735
55736 commit eb92f613556800f7483666db09d9a237ad911d4a
55737 Author: Wolfgang Denk <wd@pollux.denx.de>
55738 Date:   Thu Mar 8 22:52:51 2007 +0100
55739
55740     Minor cleanup.
55741
55742 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
55743 Author: John Otken john@softadvances.com <john@softadvances.com>
55744 Date:   Thu Mar 8 09:39:48 2007 -0600
55745
55746     ppc4xx: Clear Sequoia/Rainier security engine reset bits
55747
55748     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
55749
55750 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
55751 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55752 Date:   Thu Mar 8 16:26:52 2007 +0100
55753
55754     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
55755
55756     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55757
55758 commit d9fc703246840c4b268debf48c334ba55c597dc0
55759 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55760 Date:   Thu Mar 8 16:25:47 2007 +0100
55761
55762     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
55763
55764     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55765
55766 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
55767 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55768 Date:   Thu Mar 8 16:23:11 2007 +0100
55769
55770     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
55771
55772     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55773
55774 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
55775 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55776 Date:   Thu Mar 8 16:20:32 2007 +0100
55777
55778     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
55779
55780     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55781
55782 commit f9fc6a5852a6335840882fa2111925010eea1abe
55783 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55784 Date:   Wed Mar 7 15:32:01 2007 +0100
55785
55786     fixed ethernet phy configuration for plu405 board
55787
55788     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55789
55790 commit 769104c9356594deb2092e204a39c05b33202d6c
55791 Author: Wolfgang Denk <wd@pollux.denx.de>
55792 Date:   Thu Mar 8 21:49:27 2007 +0100
55793
55794     Minor cleanup
55795
55796 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
55797 Author: Stefan Roese <sr@denx.de>
55798 Date:   Thu Mar 8 10:13:16 2007 +0100
55799
55800     [PATCH] Update AMCC Luan 440SP eval board support
55801
55802     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
55803     inititializition. This includes DDR auto calibration and support
55804     for different DIMM modules, instead of the fixed setup used in
55805     the earlier version.
55806
55807     This patch also enables the cache in FLASH for the startup
55808     phase of U-Boot (while running from FLASH). After relocating to
55809     SDRAM the cache is disabled again. This will speed up the boot
55810     process, especially the SDRAM setup, since there are some loops
55811     for memory testing (auto calibration).
55812
55813     Signed-off-by: Stefan Roese <sr@denx.de>
55814
55815 commit 2f5df47351910a2936c7741cf111855829200943
55816 Author: Stefan Roese <sr@denx.de>
55817 Date:   Thu Mar 8 10:10:18 2007 +0100
55818
55819     [PATCH] Update AMCC Yucca 440SPe eval board support
55820
55821     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
55822     inititializition. This includes DDR auto calibration and support
55823     for different DIMM modules, instead of the fixed setup used in
55824     the earlier version.
55825
55826     Signed-off-by: Stefan Roese <sr@denx.de>
55827
55828 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
55829 Author: Stefan Roese <sr@denx.de>
55830 Date:   Thu Mar 8 10:07:18 2007 +0100
55831
55832     ppc4xx: Small AMCC Katmai 440SPe update
55833
55834     Signed-off-by: Stefan Roese <sr@denx.de>
55835
55836 commit df294497479b1dca6dd86318b2a912f72fede0df
55837 Author: Stefan Roese <sr@denx.de>
55838 Date:   Thu Mar 8 10:06:09 2007 +0100
55839
55840     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
55841
55842     Signed-off-by: Stefan Roese <sr@denx.de>
55843
55844 commit 83853178bd36bca6f0f8f1331476620c84a587fc
55845 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
55846 Date:   Wed Mar 7 12:14:50 2007 -0600
55847
55848     net - Support ping reply when processing net-loop
55849
55850     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
55851
55852     This permits the ping command to test the phy interface when the phy
55853     is put in loopback mode (typically by setting register 0 bit 14).
55854
55855     It also allows the port to respond to an external ping when u-boot is
55856     processing some other net command (such as tftp).  This is useful when
55857     tftp appears to hang.
55858
55859     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
55860     Signed-off-by: Ben Warren <bwarren@qstreams.com>
55861
55862 commit fa1aef15bcd47736687be1af544506e90fba545d
55863 Author: Stefan Roese <sr@denx.de>
55864 Date:   Wed Mar 7 16:43:00 2007 +0100
55865
55866     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
55867
55868     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
55869     DDR memory are dynamically programmed matching the total size
55870     of the equipped memory (DIMM modules).
55871
55872     Signed-off-by: Stefan Roese <sr@denx.de>
55873
55874 commit e2ebe696818939e2b974628be9c921ea3fe9de13
55875 Author: Stefan Roese <sr@denx.de>
55876 Date:   Wed Mar 7 16:39:36 2007 +0100
55877
55878     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
55879
55880     This patch fixes a problem that occurs when 2 DIMM's are
55881     used. This problem was first spotted and fixed by Gerald Jackson
55882     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
55883     problem in a little more clever way.
55884
55885     This patch also adds the nice functionality to dynamically
55886     create the TLB entries for the SDRAM (tlb.c). So we should
55887     never run into such problems with wrong (too short) TLB
55888     initialization again on these platforms.
55889
55890     As this feature is new to the "old" 44x SPD DDR driver, it
55891     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
55892
55893     Signed-off-by: Stefan Roese <sr@denx.de>
55894
55895 commit 39218433983417b9df087976a79e3f80dd5e83d6
55896 Author: Wolfgang Denk <wd@denx.de>
55897 Date:   Wed Mar 7 16:33:44 2007 +0100
55898
55899     UC101: fix compiler warnings
55900
55901 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
55902 Author: Wolfgang Denk <wd@pollux.denx.de>
55903 Date:   Wed Mar 7 16:19:46 2007 +0100
55904
55905     HMI1001: fix build error, cleanup compiler warnings.
55906
55907 commit ad5bb451ade552c44bef9119d907929ebc2c126f
55908 Author: Wolfgang Denk <wd@pollux.denx.de>
55909 Date:   Tue Mar 6 18:08:43 2007 +0100
55910
55911     Restructure POST directory to support of other CPUs, boards, etc.
55912
55913 commit a5284efd125967675b2e9c6ef7b95832268ad360
55914 Author: Wolfgang Denk <wd@pollux.denx.de>
55915 Date:   Tue Mar 6 18:01:47 2007 +0100
55916
55917     Fix HOSTARCH handling.
55918     Patch by Mike Frysinger, Mar 05 2007
55919
55920 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
55921 Author: Stefan Roese <sr@denx.de>
55922 Date:   Tue Mar 6 07:47:04 2007 +0100
55923
55924     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
55925
55926     As provided by the AMCC applications team, this patch optimizes the
55927     DDR2 setup for 166MHz bus speed. The values provided are also save
55928     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
55929     setup has to be adjusted as done in this patch.
55930
55931     For this the NAND booting version had to include the "speed.c" file
55932     from the cpu/ppc4xx directory. With this addition the NAND SPL image
55933     will just fit into the 4kbytes of program space. gcc version 4.x as
55934     provided with ELDK 4.x is needed to generate this optimized code.
55935
55936     Signed-off-by: Stefan Roese <sr@denx.de>
55937
55938 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
55939 Author: Wolfgang Denk <wd@pollux.denx.de>
55940 Date:   Sun Mar 4 01:36:05 2007 +0100
55941
55942     Some code cleanup.
55943
55944 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
55945 Author: Kim Phillips <kim.phillips@freescale.com>
55946 Date:   Wed Feb 28 00:02:04 2007 -0600
55947
55948     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
55949
55950     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
55951
55952 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
55953 Author: Kumar Gala <galak@kernel.crashing.org>
55954 Date:   Tue Feb 27 23:51:42 2007 -0600
55955
55956     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
55957
55958     The config value for:
55959     * CFG_ACR_PIPE_DEP
55960     * CFG_ACR_RPTCNT
55961     * CFG_SPCR_TSEC1EP
55962     * CFG_SPCR_TSEC2EP
55963     * CFG_SCCR_TSEC1CM
55964     * CFG_SCCR_TSEC2CM
55965
55966     Were not being used when setting the appropriate register
55967
55968     Added:
55969     * CFG_SCCR_USBMPHCM
55970     * CFG_SCCR_USBDRCM
55971     * CFG_SCCR_PCICM
55972     * CFG_SCCR_ENCCM
55973
55974     To allow full config of the SCCR.
55975
55976     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
55977     that were just bogus.
55978
55979     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55980
55981 commit d51b3cf371cd441030460ef19d36b2924c361b1a
55982 Author: Kim Phillips <kim.phillips@freescale.com>
55983 Date:   Thu Feb 22 20:06:57 2007 -0600
55984
55985     mpc83xx: update [local-]mac-address properties on UEC based devices
55986
55987     8360 and 832x weren't updating their [local-]mac-address
55988     properties. This patch fixes that.
55989
55990     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
55991
55992 commit 61f4f912acbe60776c5e00df1ec94094ce672957
55993 Author: Timur Tabi <timur@freescale.com>
55994 Date:   Tue Feb 13 10:41:42 2007 -0600
55995
55996     mpc83xx: write MAC address to mac-address and local-mac-address
55997
55998     Some device trees have a mac-address property, some have local-mac-address,
55999     and some have both.  To support all of these device trees, this patch
56000     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
56001     This function already updates local-mac-address.
56002
56003     Signed-off-by: Timur Tabi <timur@freescale.com>
56004
56005 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
56006 Author: Kim Phillips <kim.phillips@freescale.com>
56007 Date:   Tue Feb 27 18:41:08 2007 -0600
56008
56009     mpc83xx: add command line editing by default
56010
56011 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
56012 Author: Kim Phillips <kim.phillips@freescale.com>
56013 Date:   Wed Feb 14 19:50:53 2007 -0600
56014
56015     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
56016
56017     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
56018     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
56019
56020     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
56021
56022     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56023     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
56024
56025 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
56026 Author: Xie Xiaobo <r63061@freescale.com>
56027 Date:   Wed Feb 14 18:27:17 2007 +0800
56028
56029     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
56030
56031     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
56032     it pass DDR/DDR2 compliance tests.
56033
56034     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
56035
56036 commit b110f40bd180c6b560276589beedf753e97c46ce
56037 Author: Xie Xiaobo <r63061@freescale.com>
56038 Date:   Wed Feb 14 18:27:06 2007 +0800
56039
56040     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
56041
56042     MPC8360E rev2.0 have new spridr,and PVR value,
56043     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
56044
56045     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
56046
56047 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
56048 Author: Xie Xiaobo <r63061@freescale.com>
56049 Date:   Wed Feb 14 18:26:44 2007 +0800
56050
56051     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
56052
56053     MPC8349E rev3.1 have new spridr,and PVR value,
56054     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
56055
56056     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
56057
56058 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
56059 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
56060 Date:   Wed Jan 31 11:04:19 2007 +0100
56061
56062     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
56063
56064     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
56065     which is used to se if an slave will ACK after receiving its address.
56066
56067     Correct i2c probing to use this method as the old method could upset
56068     a slave as it wrote a data byte to it.
56069
56070     Add a small delay in i2c_init() to let the controller
56071     shutdown any ongoing I2C activity.
56072
56073     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
56074
56075 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
56076 Author: Timur Tabi <timur@freescale.com>
56077 Date:   Wed Jan 31 15:54:29 2007 -0600
56078
56079     mpc83xx: Add support for the MPC8349E-mITX-GP
56080
56081     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
56082     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
56083     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
56084
56085     Signed-off-by: Timur Tabi <timur@freescale.com>
56086
56087 commit fab16807adad350f618024350c6950165c247c72
56088 Author: Timur Tabi <timur@freescale.com>
56089 Date:   Wed Jan 31 15:54:20 2007 -0600
56090
56091     mpc83xx: Delete sdram_init() for MPC8349E-mITX
56092
56093     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
56094     never does anything.  This patch deletes it.
56095
56096     Signed-off-by: Timur Tabi <timur@freescale.com>
56097
56098 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
56099 Author: Dave Liu <daveliu@freescale.com>
56100 Date:   Fri Jan 19 10:43:26 2007 +0800
56101
56102     mpc83xx: Fix the LAW1/3 bug
56103
56104     The patch solves the alignment problem of the local bus access windows to
56105     render accessible the memory bank and PHY registers of UPC 1 (starting at
56106     0xf801 0000). What we actually did was to adjust the sizes of the bus
56107     access windows so that the base address alignment requirement would be met.
56108
56109     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
56110     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
56111     Signed-off-by: Dave Liu <daveliu@freescale.com>
56112
56113 commit 97c4b397dce236a7318b304667bf89e59d08b17c
56114 Author: Kim Phillips <kim.phillips@freescale.com>
56115 Date:   Tue Jan 30 16:15:31 2007 -0600
56116
56117     mpc83xx: don't hang if watchdog configured on 8360, 832x
56118
56119     don't hang if watchdog configured on 8360, 832x
56120
56121     The watchdog programming model is the same across all 83xx devices;
56122     make the code reflect that.
56123
56124 commit b70047478570e371ce7223be342ce98afea0f7d6
56125 Author: Kim Phillips <kim.phillips@freescale.com>
56126 Date:   Tue Jan 30 16:15:21 2007 -0600
56127
56128     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
56129
56130     protect memcpy to bad address if a local-mac-address is missing from dt
56131
56132 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
56133 Author: Kim Phillips <kim.phillips@freescale.com>
56134 Date:   Tue Jan 30 16:15:04 2007 -0600
56135
56136     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
56137
56138     make 8360 default environment fdt be 8360 (not 8349)
56139
56140 commit a28899c910024a0226331df07207b1038c300c93
56141 Author: Emilian Medve <Emilian.Medve@freescale.com>
56142 Date:   Tue Jan 30 16:14:50 2007 -0600
56143
56144     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
56145
56146     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
56147     be used for busy-waiting since it strips the 'volatile' property from
56148     the bd variable. gcc3 was working by pure luck.
56149
56150     This is a follow on patch to "Fix the UEC driver bug of QE"
56151
56152 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
56153 Author: Kumar Gala <galak@kernel.crashing.org>
56154 Date:   Tue Jan 30 14:08:30 2007 -0600
56155
56156     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
56157
56158     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
56159     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
56160     CONFIG_MPC834X so they are more generic.
56161
56162     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56163
56164 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
56165 Author: Kim Phillips <kim.phillips@freescale.com>
56166 Date:   Thu Jan 25 13:40:55 2007 -0600
56167
56168     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
56169
56170 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
56171 Author: Kim Phillips <kim.phillips@freescale.com>
56172 Date:   Wed Jan 24 17:18:37 2007 -0600
56173
56174     mpc83xx: sort Makefile targets
56175
56176     reordered targets alphabetically
56177
56178 commit 91e25769771c1164ed63ffca0add49f934ae3343
56179 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
56180 Date:   Tue Jan 16 11:38:14 2007 -0500
56181
56182     mpc83xx: U-Boot support for Wind River SBC8349
56183
56184     I've redone the SBC8349 support to match git-current, which
56185     incorporates all the MPC834x updates from Freescale since the 1.1.6
56186     release,  including the DDR changes.
56187
56188     I've kept all the SBC8349 files as parallel as possible to the
56189     MPC8349EMDS ones for ease of maintenance and to allow for easy
56190     inspection of what was changed to support this board.  Hence the SBC8349
56191     U-Boot has FDT support and everything else that the MPC8349EMDS has.
56192
56193     Fortunately the Freescale updates added support for boards using CS0,
56194     but I had to change spd_sdram.c to allow for board specific settings for
56195     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
56196     default if the board doesn't specify a value.)
56197
56198     Hopefully this should be mergeable as-is and require no whitespace
56199     cleanups or similar, but if something doesn't measure up then let me
56200     know and I'll fix it.
56201
56202     Thanks,
56203     Paul.
56204
56205 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
56206 Author: Sam Song <samsongshu@yahoo.com.cn>
56207 Date:   Thu Dec 14 19:03:21 2006 +0800
56208
56209     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
56210
56211     A redundant semicolon existed in mpc8349itx.c
56212     should be removed.
56213
56214     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
56215
56216 commit f35f358241c549be3f75cfe2eaa642914275b7ba
56217 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
56218 Date:   Wed Dec 6 21:23:55 2006 -0500
56219
56220     mpc83xx: Put the version (and magic) after the HRCW.
56221
56222     Put the version (and magic) after the HRCW.  This puts it in a fixed
56223     location in flash, not at the start of flash but as close as we can get.
56224
56225     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
56226
56227 commit 48aecd969171a6e99a55fae04933857787f9a5bd
56228 Author: Dave Liu <r63238@freescale.com>
56229 Date:   Thu Dec 7 21:14:51 2006 +0800
56230
56231     mpc83xx: Add the MPC832XEMDS board readme
56232
56233     Add the MPC832XEMDS board readme
56234
56235     Signed-off-by: Dave Liu <daveliu@freescale.com>
56236
56237 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
56238 Author: Dave Liu <r63238@freescale.com>
56239 Date:   Thu Dec 7 21:13:15 2006 +0800
56240
56241     mpc83xx: Add support for the MPC832XEMDS board
56242
56243     This patch supports DUART, ETH3/4 and PCI etc.
56244
56245     Signed-off-by: Dave Liu <daveliu@freescale.com>
56246
56247 commit e080313c32322e15ab5a18eb896a252858c57284
56248 Author: Dave Liu <r63238@freescale.com>
56249 Date:   Thu Dec 7 21:11:58 2006 +0800
56250
56251     mpc83xx: streamline the 83xx immr head file
56252
56253     For better format and style, I streamlined the 83xx head files,
56254     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
56255     duplicated macro definition appear in the both files; 2) the structure
56256     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
56257     macro definition put inside the each structure. So, I cleaned up the
56258     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
56259     moved the macro definition to mpc83xx.h, Just like MPC8260.
56260
56261     CHANGELOG
56262
56263     *streamline the 83xx immr head file
56264
56265     Signed-off-by: Dave Liu <daveliu@freescale.com>
56266
56267 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
56268 Author: Dave Liu <r63238@freescale.com>
56269 Date:   Wed Dec 6 11:38:17 2006 +0800
56270
56271     mpc83xx: Fix the UEC driver bug of QE
56272
56273     The patch prevents the GCC tool chain from striping useful code for
56274     optimization. It will make UEC ethernet driver workable, Otherwise the
56275     UEC will fail in tx when you are using gcc4.x. but the driver can work
56276     when using gcc3.4.3.
56277
56278     CHANGELOG
56279
56280     *Prevent the GCC from striping code for optimization, Otherwise the UEC
56281     will tx failed when you are using gcc4.x.
56282
56283     Signed-off-by: Dave Liu <daveliu@freescale.com>
56284
56285 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
56286 Author: Stefan Roese <sr@denx.de>
56287 Date:   Thu Mar 1 21:11:36 2007 +0100
56288
56289     [PATCH] Update AMCC Katmai 440SPe eval board support
56290
56291     This patch updates the recently added Katmai board support. The biggest
56292     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
56293     driver.
56294
56295     Please note, that still some problems are left with some memory
56296     configurations. See the driver for more details.
56297
56298     Signed-off-by: Stefan Roese <sr@denx.de>
56299
56300 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
56301 Author: Stefan Roese <sr@denx.de>
56302 Date:   Thu Mar 1 07:03:25 2007 +0100
56303
56304     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
56305
56306     Signed-off-by: Stefan Roese <sr@denx.de>
56307
56308 commit ccbc7036648e465697ca298ba51e0e76dda352a0
56309 Author: Wolfgang Denk <wd@pollux.denx.de>
56310 Date:   Wed Feb 28 01:28:53 2007 +0100
56311
56312     SC3: fix typo in default environment
56313
56314 commit e344568b1b46af85ec32d815586f91bc115d6223
56315 Author: Sergei Poselenov <sposelenov@emcraft.com>
56316 Date:   Tue Feb 27 20:15:30 2007 +0300
56317
56318     MCC200: Fixes for update procedure
56319
56320     - fix logic error in image type handling
56321     - make sure file system images (cramfs etc.) get stored in flash
56322       with image header stripped so they can be mounted through MTD
56323
56324 commit 743571145b37182757d4e688a77860b36ee77573
56325 Author: Wolfgang Denk <wd@pollux.denx.de>
56326 Date:   Tue Feb 27 14:26:04 2007 +0100
56327
56328     Minor code cleanup.
56329
56330 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
56331 Author: Sergei Poselenov <sposelenov@emcraft.com>
56332 Date:   Tue Feb 27 12:40:16 2007 +0300
56333
56334     MCC200 update - add LCD Progress Indicator
56335
56336 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
56337 Author: Stefan Roese <sr@denx.de>
56338 Date:   Thu Feb 22 07:43:34 2007 +0100
56339
56340     [PATCH] get_dev() now unconditionally uses manual relocation
56341
56342     Since the relocation fix is not included yet and we're not sure how
56343     it will be added, this patch removes code that required relocation
56344     to be fixed for now.
56345
56346     Signed-off-by: Stefan Roese <sr@denx.de>
56347
56348 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
56349 Author: Stefan Roese <sr@denx.de>
56350 Date:   Thu Feb 22 07:40:23 2007 +0100
56351
56352     [PATCH] Change systemace driver to select 8 & 16bit mode
56353
56354     As suggested by Grant Likely this patch enables the Xilinx SystemACE
56355     driver to select 8 or 16bit mode upon startup.
56356
56357     Signed-off-by: Stefan Roese <sr@denx.de>
56358
56359 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
56360 Author: Haiying Wang <Haiying.Wang@freescale.com>
56361 Date:   Wed Feb 21 16:52:31 2007 +0100
56362
56363     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
56364
56365     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
56366     is fully finished. The sync() is defined in each CPU's io.h file. For
56367     those CPUs which do not need sync for now, a dummy sync() is defined in
56368     their io.h as well.
56369
56370     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
56371
56372 commit da04995c7dc6772013a9a0dc5c767f190c402478
56373 Author: Stefan Roese <sr@denx.de>
56374 Date:   Wed Feb 21 13:44:34 2007 +0100
56375
56376     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
56377
56378     Signed-off-by: Stefan Roese <sr@denx.de>
56379
56380 commit 751bb57107d78978ae08e697c3deba816f5be091
56381 Author: Stefan Roese <sr@denx.de>
56382 Date:   Tue Feb 20 13:21:57 2007 +0100
56383
56384     [PATCH] Fix relocation problem with "new" get_dev() function
56385
56386     This patch enables the "new" get_dev() function for block devices
56387     introduced by Grant Likely to be used on systems that still suffer
56388     from the relocation problems (manual relocation neede because of
56389     problems with linker script).
56390
56391     Hopefully we can resolve this relocation issue soon for all platform
56392     so we don't need this additional code anymore.
56393
56394     Signed-off-by: Stefan Roese <sr@denx.de>
56395
56396 commit d93e2212f962668b3dce091ff5edc33f2347fe37
56397 Author: Stefan Roese <sr@denx.de>
56398 Date:   Tue Feb 20 13:17:42 2007 +0100
56399
56400     [PATCH] Update SystemACE driver for 16bit access
56401
56402     This patch removes some problems when the Xilinx SystemACE driver
56403     is used with 16bit access on an big endian platform (like the
56404     AMCC Katmai).
56405
56406     Signed-off-by: Stefan Roese <sr@denx.de>
56407
56408 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
56409 Author: Stefan Roese <sr@denx.de>
56410 Date:   Tue Feb 20 13:15:40 2007 +0100
56411
56412     [PATCH] Clean up Katmai (440SPe) linker script
56413
56414     Signed-off-by: Stefan Roese <sr@denx.de>
56415
56416 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
56417 Author: Stefan Roese <sr@denx.de>
56418 Date:   Tue Feb 20 10:57:08 2007 +0100
56419
56420     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
56421
56422     Signed-off-by: Stefan Roese <sr@denx.de>
56423
56424 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
56425 Author: Stefan Roese <sr@denx.de>
56426 Date:   Tue Feb 20 10:51:26 2007 +0100
56427
56428     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
56429
56430     This patch switches to the desired I2C bus when the date/dtt
56431     commands are called. This can be configured using the
56432     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
56433
56434     Signed-off-by: Stefan Roese <sr@denx.de>
56435
56436 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
56437 Author: Stefan Roese <sr@denx.de>
56438 Date:   Tue Feb 20 10:43:34 2007 +0100
56439
56440     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
56441
56442     This patch adds support for the DDR2 controller used on the
56443     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
56444     board and works fine with the following DIMM modules:
56445
56446     - Corsair CM2X512-5400C4 (512MByte per DIMM)
56447     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
56448     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
56449
56450     This patch also adds the nice functionality to dynamically
56451     create the TLB entries for the SDRAM (tlb.c). So we should
56452     never run into such problems with wrong (too short) TLB
56453     initialization again on these platforms.
56454
56455     Signed-off-by: Stefan Roese <sr@denx.de>
56456
56457 commit 36d830c9830379045f5daa9f542ac1c990c70068
56458 Author: Stefan Roese <sr@denx.de>
56459 Date:   Tue Feb 20 10:35:42 2007 +0100
56460
56461     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
56462
56463     Since the existing 4xx SPD SDRAM initialization routines for the
56464     405 SDRAM controller and the 440 DDR controller don't have much in
56465     common this patch splits both drivers into different files.
56466
56467     This is in preparation for the 440 DDR2 controller support (440SP/e).
56468
56469     Signed-off-by: Stefan Roese <sr@denx.de>
56470
56471 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
56472 Author: Stefan Roese <sr@denx.de>
56473 Date:   Tue Feb 20 10:27:08 2007 +0100
56474
56475     [PATCH] PPC4xx: Add support for multiple I2C busses
56476
56477     This patch adds support for multiple I2C busses on the PPC4xx
56478     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
56479     to make use of this feature.
56480
56481     It also merges the 405 and 440 i2c header files into one common
56482     file 4xx_i2c.h.
56483
56484     Also the 4xx i2c reset procedure is reworked since I experienced
56485     some problems with the first access on the 440SPe Katmai board.
56486
56487     Signed-off-by: Stefan Roese <sr@denx.de>
56488
56489 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
56490 Author: Grant Likely <grant.likely@secretlab.ca>
56491 Date:   Tue Feb 20 09:05:45 2007 +0100
56492
56493     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
56494
56495     Block device read/write is anonymous data; there is no need to use a
56496     typed pointer.  void * is fine.  Also add a hook for block_read functions
56497
56498     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56499
56500 commit 53758fa20e935cc87eeb0519ed365df753a6f289
56501 Author: Grant Likely <grant.likely@secretlab.ca>
56502 Date:   Tue Feb 20 09:05:38 2007 +0100
56503
56504     [PATCH 8_9] Add block_write hook to block_dev_desc_t
56505
56506     Preparation for future patches which support block device writing
56507
56508     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56509
56510 commit f4852ebe6ca946a509667eb68be42026f837be76
56511 Author: Grant Likely <grant.likely@secretlab.ca>
56512 Date:   Tue Feb 20 09:05:31 2007 +0100
56513
56514     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
56515
56516     Register read/write does not need to be wrapped in a full function.  The
56517     patch replaces them with macros.
56518
56519     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56520
56521 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
56522 Author: Grant Likely <grant.likely@secretlab.ca>
56523 Date:   Tue Feb 20 09:05:23 2007 +0100
56524
56525     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
56526
56527     The code in this file is not a command; it is a device driver.  Put it in
56528     the correct place.  There are zero functional changes in this patch, it
56529     only moves the file.
56530
56531     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56532
56533 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
56534 Author: Grant Likely <grant.likely@secretlab.ca>
56535 Date:   Tue Feb 20 09:05:16 2007 +0100
56536
56537     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
56538
56539     This patch is in preparation of additional changes to the sysace driver.
56540     May as well take this opportunity to fixup the inconsistent whitespace since
56541     this file is about to undergo major changes anyway.
56542
56543     There are zero functional changes in this patch.  It only cleans up the
56544     the whitespace.
56545
56546     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56547
56548 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
56549 Author: Grant Likely <grant.likely@secretlab.ca>
56550 Date:   Tue Feb 20 09:05:07 2007 +0100
56551
56552     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
56553
56554     isprint is already defined in ctype.c
56555
56556     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56557
56558 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
56559 Author: Grant Likely <grant.likely@secretlab.ca>
56560 Date:   Tue Feb 20 09:05:00 2007 +0100
56561
56562     [PATCH 3_9] Move buffer print code from md command to common function
56563
56564     Printing a buffer is a darn useful thing.  Move the buffer print code
56565     into print_buffer() in lib_generic/
56566
56567     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56568
56569 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
56570 Author: Grant Likely <grant.likely@secretlab.ca>
56571 Date:   Tue Feb 20 09:04:52 2007 +0100
56572
56573     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
56574
56575     Change the xilinx device drivers and board code to include config.h
56576     instead of xparameters.h directly.  config.h always includes the
56577     correct xparameters file.  This change reduces the posibility of
56578     including the wrong file when adding a new xilinx board port
56579
56580     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56581
56582 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
56583 Author: Grant Likely <grant.likely@secretlab.ca>
56584 Date:   Tue Feb 20 09:04:34 2007 +0100
56585
56586     [PATCH 1_4] Merge common get_dev() routines for block devices
56587
56588     Each of the filesystem drivers duplicate the get_dev routine.  This change
56589     merges them into a single function in part.c
56590
56591     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
56592
56593 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
56594 Author: Wolfgang Denk <wd@pollux.denx.de>
56595 Date:   Mon Feb 19 23:09:51 2007 +0100
56596
56597     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
56598     as root file system images.
56599
56600 commit 489c696ae7211218961d159e43e722d74c36fcbc
56601 Author: Sergei Poselenov <sposelenov@emcraft.com>
56602 Date:   Wed Feb 14 14:30:28 2007 +0300
56603
56604     MCC200: Extensions to Software Update Mechanism
56605
56606     Update / extend Software Update Mechanism for MCC200 board:
56607
56608     - Add support for rootfs image added. The environment variables
56609       "rootfs_st" and "rootfs_nd" can be used to override the default
56610       values of the image start and end.
56611     - Remove excessive key check code.
56612     - Code cleanup.
56613
56614 commit 4be23a12f23f1372634edc3215137b09768b7949
56615 Author: Stefan Roese <sr@denx.de>
56616 Date:   Mon Feb 19 08:23:15 2007 +0100
56617
56618     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
56619
56620     As spotted by Matthias Fuchs, the READY input should not be
56621     enabled for the NOR FLASH on the Sequoia board.
56622
56623     Signed-off-by: Stefan Roese <sr@denx.de>
56624
56625 commit 2605e90bf676d48123afe5719a846d2b52b24aac
56626 Author: Heiko Schocher <hs@pollux.denx.de>
56627 Date:   Fri Feb 16 07:57:42 2007 +0100
56628
56629     [PATCH] Added support for the jupiter board.
56630
56631     Signed-off-by: Heiko Schocher <hs@denx.de>
56632
56633 commit 497d012e5be0194e1084073d0081eb1a844796b2
56634 Author: Gary Jennejohn <garyj@pollux.denx.de>
56635 Date:   Mon Feb 12 13:11:50 2007 +0100
56636
56637     LPC2292: patch from Siemens.
56638
56639 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
56640 Author: Stefan Roese <sr@denx.de>
56641 Date:   Sat Feb 10 08:49:31 2007 +0100
56642
56643     [PATCH] Add missing p3mx.h file to repository (ups)
56644
56645     Signed-off-by: Stefan Roese <sr@denx.de>
56646
56647 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
56648 Author: Bartlomiej Sieka <tur@semihalf.com>
56649 Date:   Fri Feb 9 10:45:42 2007 +0100
56650
56651     [Motion-PRO] Preliminary support for the Motion-PRO board.
56652
56653 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
56654 Author: Stefan Roese <sr@denx.de>
56655 Date:   Wed Feb 7 16:51:08 2007 +0100
56656
56657     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
56658
56659     Some boards that can have more than 768MBytes of SDRAM need to
56660     set "initrd_high", so that the initrd can be accessed by the
56661     Linux kernel.
56662
56663     Signed-off-by: Stefan Roese <sr@denx.de>
56664
56665 commit 7372ca68227930d03cffa548310524cad5b96733
56666 Author: Stefan Roese <sr@denx.de>
56667 Date:   Fri Feb 2 12:44:22 2007 +0100
56668
56669     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
56670
56671     Previously the strapping DCR/SDR was read to determine if the internal PCI
56672     arbiter is enabled or not. This strapping bit can be overridden, so now
56673     the current status is read from the correct DCR/SDR register.
56674
56675     Signed-off-by: Stefan Roese <sr@denx.de>
56676
56677 commit 2aa54f651a42d198673318f07a20c89a43e4d197
56678 Author: Stefan Roese <sr@denx.de>
56679 Date:   Fri Feb 2 12:42:08 2007 +0100
56680
56681     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
56682
56683     Signed-off-by: Stefan Roese <sr@denx.de>
56684
56685 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
56686 Author: Stefan Roese <sr@denx.de>
56687 Date:   Thu Feb 1 13:22:41 2007 +0100
56688
56689     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
56690
56691     When PCI PNP is enabled the pci pnp configuration routine is called
56692     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
56693     problems with some PCI cards. For now disable the PCI PNP configuration.
56694
56695     Signed-off-by: Stefan Roese <sr@denx.de>
56696
56697 commit 2902fadade3be7659467e8d074048c6b7068f5c0
56698 Author: Stefan Roese <sr@denx.de>
56699 Date:   Wed Jan 31 16:56:10 2007 +0100
56700
56701     [PATCH] Update 440EPx/440GRx cpu detection
56702
56703     Signed-off-by: Stefan Roese <sr@denx.de>
56704
56705 commit d5ea287b02a6945c3977410e364a879dd1a555c8
56706 Author: Stefan Roese <sr@denx.de>
56707 Date:   Wed Jan 31 16:38:04 2007 +0100
56708
56709     [PATCH] Update esd cpci5200 files
56710
56711     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
56712
56713 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
56714 Author: Stefan Roese <sr@denx.de>
56715 Date:   Wed Jan 31 16:37:34 2007 +0100
56716
56717     [PATCH] Add support for esd mecp5200 board
56718
56719     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
56720
56721 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
56722 Author: Stefan Roese <sr@denx.de>
56723 Date:   Wed Jan 31 12:38:50 2007 +0100
56724
56725     [PATCH] Remove unneccessary yellowstone board config file
56726
56727     Signed-off-by: Stefan Roese <sr@denx.de>
56728
56729 commit e802594b6fa1b166308820c276b96dc0d7cc731c
56730 Author: Stefan Roese <sr@denx.de>
56731 Date:   Tue Jan 30 17:06:10 2007 +0100
56732
56733     [PATCH] Update Sequoia (440EPx) config file
56734
56735     The config file now handles the 2nd target, the Rainier (440GRx)
56736     evaluation board better. Additionally the PPC input clock was
56737     adjusted to match the correct value of 33.0 MHz.
56738
56739     Signed-off-by: Stefan Roese <sr@denx.de>
56740
56741 commit 700200c67e73b83751418abe7815840dca8fd6cb
56742 Author: Stefan Roese <sr@denx.de>
56743 Date:   Tue Jan 30 17:04:19 2007 +0100
56744
56745     [PATCH] Merge Yosemite & Yellowstone board ports
56746
56747     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
56748     share one config file and all board specific files. This way we
56749     don't have to maintain two different sets of files for nearly
56750     identical boards.
56751
56752     Signed-off-by: Stefan Roese <sr@denx.de>
56753
56754 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
56755 Author: Stefan Roese <sr@denx.de>
56756 Date:   Tue Jan 30 15:01:49 2007 +0100
56757
56758     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
56759
56760     SCPU doesn't use redundant environment in flash.
56761
56762     Signed-off-by: Stefan Roese <sr@denx.de>
56763
56764 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
56765 Author: Stefan Roese <sr@denx.de>
56766 Date:   Tue Jan 30 12:51:07 2007 +0100
56767
56768     [PATCH] alpr: Update alpr board config file
56769
56770     Signed-off-by: Stefan Roese <sr@denx.de>
56771
56772 commit f8db84f132b1e335f20f96138a1f09ed97b08664
56773 Author: Wolfgang Denk <wd@pollux.denx.de>
56774 Date:   Tue Jan 30 00:50:40 2007 +0100
56775
56776     LPC2292 SODIMM port coding style cleanup.
56777
56778 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
56779 Author: Gary Jennejohn <garyj@pollux.denx.de>
56780 Date:   Wed Jan 24 12:16:56 2007 +0100
56781
56782     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
56783
56784 commit 2daf046ba627f85f44195815778140039636244e
56785 Author: Bartlomiej Sieka <tur@semihalf.com>
56786 Date:   Tue Jan 23 17:22:06 2007 +0100
56787
56788     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
56789
56790 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
56791 Author: Bartlomiej Sieka <tur@semihalf.com>
56792 Date:   Tue Jan 23 14:21:14 2007 +0100
56793
56794     [iDMR] Flash driver on initialisation write-protects some sectors,
56795     currently sectors 0-3. Sector 3 does not need to be protected, though
56796     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
56797     fixes this, i.e., only sectors 0-2 are protected.
56798
56799 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
56800 Author: Bartlomiej Sieka <tur@semihalf.com>
56801 Date:   Tue Jan 23 14:11:22 2007 +0100
56802
56803     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
56804     "mii device" results in "Unexpected exception"). Fixing this properly
56805     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
56806     this commit disables MII commads for now.
56807
56808 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
56809 Author: Bartlomiej Sieka <tur@semihalf.com>
56810 Date:   Tue Jan 23 13:25:22 2007 +0100
56811
56812     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
56813     Identification Register (CIR).
56814
56815 commit fdef388758506765d4d6a7155c8f1584c63ff581
56816 Author: roy zang <tie-fei.zang@freescale.com>
56817 Date:   Mon Jan 22 13:19:21 2007 +0800
56818
56819     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
56820     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
56821     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
56822     mpc7448hpc2 board.
56823
56824 commit a4012396645533aef218354eeba754dff0deace8
56825 Author: Wolfgang Denk <wd@pollux.denx.de>
56826 Date:   Fri Jan 19 23:08:39 2007 +0100
56827
56828     Minor code cleanup.
56829
56830 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
56831 Author: Heiko Schocher <hs@pollux.denx.de>
56832 Date:   Fri Jan 19 19:57:10 2007 +0100
56833
56834     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
56835
56836     Signed-off-by: Heiko Schocher <hs@denx.de>
56837
56838 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
56839 Author: Heiko Schocher <hs@pollux.denx.de>
56840 Date:   Fri Jan 19 18:05:26 2007 +0100
56841
56842     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
56843                  if you must swap the bytes between reading/writing.
56844                  (Needed for the SC3 board)
56845
56846     Signed-off-by: Heiko Schocher <hs@denx.de>
56847
56848 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
56849 Author: Stefan Roese <sr@denx.de>
56850 Date:   Thu Jan 18 16:05:47 2007 +0100
56851
56852     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
56853
56854     Signed-off-by: Stefan Roese <sr@denx.de>
56855
56856 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
56857 Author: Stefan Roese <sr@denx.de>
56858 Date:   Thu Jan 18 11:54:52 2007 +0100
56859
56860     [PATCH] Update Prodrive P3Mx support
56861
56862     Signed-off-by: Stefan Roese <sr@denx.de>
56863
56864 commit 34167a36c29ee946b727465db5c014746a08e978
56865 Author: Stefan Roese <sr@denx.de>
56866 Date:   Thu Jan 18 11:48:10 2007 +0100
56867
56868     [PATCH] Add missing Taishan config file
56869
56870     Signed-off-by: Stefan Roese <sr@denx.de>
56871
56872 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
56873 Author: Heiko Schocher <hs@pollux.denx.de>
56874 Date:   Thu Jan 18 11:28:51 2007 +0100
56875
56876     [PATCH] Fix: Compilerwarnings for SC3 board.
56877                  The EBC Configuration Register is now by CFG_EBC_CFG definable
56878                  Added JFFS2 support for the SC3 board.
56879
56880     Signed-off-by: Heiko Schocher <hs@denx.de>
56881
56882 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
56883 Author: Stefan Roese <sr@denx.de>
56884 Date:   Thu Jan 18 10:25:34 2007 +0100
56885
56886     [PATCH] Add support for AMCC Taishan PPC440GX eval board
56887
56888     Signed-off-by: Stefan Roese <sr@denx.de>
56889
56890 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
56891 Author: Wolfgang Denk <wd@pollux.denx.de>
56892 Date:   Tue Jan 16 18:30:50 2007 +0100
56893
56894     Raname solidcard3 into sc3; add redundant env for sc3
56895
56896 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
56897 Author: Wolfgang Denk <wd@pollux.denx.de>
56898 Date:   Tue Jan 16 12:46:35 2007 +0100
56899
56900     Update default environment for Solidcard3
56901
56902 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
56903 Author: Stefan Roese <sr@denx.de>
56904 Date:   Mon Jan 15 09:46:29 2007 +0100
56905
56906     [PATCH] Fix 440SPe rev B detection from previous patch
56907
56908     Signed-off-by: Stefan Roese <sr@denx.de>
56909
56910 commit a443d31410c571ee8f970da819a44d698fdd6b1f
56911 Author: Heiko Schocher <hs@pollux.denx.de>
56912 Date:   Sun Jan 14 13:35:31 2007 +0100
56913
56914         [FIX] correct I2C Writes for the LM81 Sensor.
56915
56916         Signed-off-by: Heiko Schocher <hs@denx.de>
56917
56918 commit 0bba5452835f19a61204edcda3a58112fd8e2208
56919 Author: Wolfgang Denk <wd@pollux.denx.de>
56920 Date:   Sat Jan 13 11:17:10 2007 +0100
56921
56922     Undo commit 3033ebb2: reset command does not take any arguments
56923
56924     Haiying Wang's modification to the reset command was broken, undo it.
56925
56926     Signed-off-by: Wolfgang Denk <wd@denx.de>
56927
56928 commit 95981778cff0038fd9941044d6a3eda810e33258
56929 Author: Stefan Roese <sr@denx.de>
56930 Date:   Sat Jan 13 08:01:03 2007 +0100
56931
56932     [PATCH] Update 440SP(e) cpu revisions
56933
56934     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
56935
56936     Signed-off-by: Stefan Roese <sr@denx.de>
56937
56938 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
56939 Author: Stefan Roese <sr@denx.de>
56940 Date:   Sat Jan 13 07:59:56 2007 +0100
56941
56942     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
56943
56944     Now the board revision and the current PCI bus speed are printed after
56945     the board message.
56946
56947     Also the EBC initialising is now done via defines in the board config
56948     file.
56949
56950     Signed-off-by: Stefan Roese <sr@denx.de>
56951
56952 commit 36adff362c2c0141ff8a810d42a7e478f779130f
56953 Author: Stefan Roese <sr@denx.de>
56954 Date:   Sat Jan 13 07:59:19 2007 +0100
56955
56956     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
56957
56958     Now the board revision and the current PCI bus speed are printed after
56959     the board message.
56960
56961     Also the EBC initialising is now done via defines in the board config
56962     file.
56963
56964     Signed-off-by: Stefan Roese <sr@denx.de>
56965
56966 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
56967 Author: Stefan Roese <sr@denx.de>
56968 Date:   Sat Jan 13 07:57:51 2007 +0100
56969
56970     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
56971
56972     Now the board revision and the current PCI bus speed are printed after
56973     the board message.
56974
56975     Signed-off-by: Stefan Roese <sr@denx.de>
56976
56977 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
56978 Author: Heiko Schocher <hs@pollux.denx.de>
56979 Date:   Thu Jan 11 15:44:44 2007 +0100
56980
56981         Added support for the SOLIDCARD III board from Eurodesign
56982
56983         Signed-off-by: Heiko Schocher <hs@denx.de>
56984
56985 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
56986 Author: Reinhard Thies <Reinhard.Thies@web.de>
56987 Date:   Wed Jan 10 14:41:14 2007 +0100
56988
56989     Adjusted default environment for cam5200 board.
56990
56991 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
56992 Author: Wolfgang Denk <wd@pollux.denx.de>
56993 Date:   Wed Jan 10 15:35:52 2007 +0100
56994
56995     Update CHANGELOG
56996
56997 commit 787fa15860a57833e50bd30555079a9cd4e519b8
56998 Author: Wolfgang Denk <wd@pollux.denx.de>
56999 Date:   Wed Jan 10 01:28:39 2007 +0100
57000
57001     Fix auto_update for MCC200 board.
57002
57003     The invocation of do_auto_update() is moved to the end of the
57004     misc_init_r() function, after the flash mappings have been
57005     initialized. Please find attached a patch that implements that
57006     change.
57007
57008     Also correct the decoding of the keypad status. With this update, the
57009     key that will trigger the update is Column 2, Row 2.
57010
57011 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
57012 Author: Marian Balakowicz <m8@semihalf.com>
57013 Date:   Wed Jan 10 00:26:15 2007 +0100
57014
57015     CAM5200 flash driver modifications:
57016     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
57017     - add second build target 'cam5200_niosflash' which still uses custom driver
57018
57019 commit 67fea022fa957f59653b5238c7496f80a6b70432
57020 Author: Markus Klotzbuecher <mk@denx.de>
57021 Date:   Tue Jan 9 16:02:48 2007 +0100
57022
57023     SPC1920: cleanup memory contoller setup
57024
57025 commit 8fc2102faa23593c80381437c09f7745a14deb40
57026 Author: Markus Klotzbuecher <mk@denx.de>
57027 Date:   Tue Jan 9 14:57:14 2007 +0100
57028
57029     Fix the cpu speed setup to work with all boards.
57030
57031 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
57032 Author: Markus Klotzbuecher <mk@denx.de>
57033 Date:   Tue Jan 9 14:57:13 2007 +0100
57034
57035     SPC1920: add support for the FM18L08 Ramtron FRAM
57036
57037 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
57038 Author: Markus Klotzbuecher <mk@denx.de>
57039 Date:   Tue Jan 9 14:57:13 2007 +0100
57040
57041     SPC1920: update the HPI register addresses to work with the second
57042     generation of hardware
57043
57044 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
57045 Author: Markus Klotzbuecher <mk@creamnet.de>
57046 Date:   Tue Jan 9 14:57:13 2007 +0100
57047
57048     Miscellanious spc1920 related cleanups
57049
57050 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
57051 Author: Markus Klotzbuecher <mk@denx.de>
57052 Date:   Tue Jan 9 14:57:12 2007 +0100
57053
57054     SPC1920 GO/NOGO led should be set to color red in U-Boot
57055
57056 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
57057 Author: Markus Klotzbuecher <mk@creamnet.de>
57058 Date:   Tue Jan 9 14:57:12 2007 +0100
57059
57060     Add support for the DS3231 RTC
57061
57062 commit 8139567b60d678584b05f0718a681f2047c5e14f
57063 Author: Markus Klotzbuecher <mk@creamnet.de>
57064 Date:   Tue Jan 9 14:57:11 2007 +0100
57065
57066     SMC1 uses external CLK4 instead of BRG on spc1920
57067
57068 commit d8d9de1a02fbd880b613d607143d1f57342affc7
57069 Author: Markus Klotzbuecher <mk@creamnet.de>
57070 Date:   Tue Jan 9 14:57:10 2007 +0100
57071
57072     Update the SPC1920 CMB PLD driver
57073
57074 commit 3f34f869162750e5e999fd140f884f5de952bcfe
57075 Author: Markus Klotzbuecher <mk@creamnet.de>
57076 Date:   Tue Jan 9 14:57:10 2007 +0100
57077
57078     Add / enable I2C support on the spc1920 board
57079
57080 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
57081 Author: Markus Klotzbuecher <mk@creamnet.de>
57082 Date:   Tue Jan 9 14:57:10 2007 +0100
57083
57084     Add support for the tms320671x host port interface (HPI)
57085
57086 commit f4eb54529bb3664c3a562e488b460fe075f79d67
57087 Author: Wolfgang Denk <wd@pollux.denx.de>
57088 Date:   Sun Jan 7 00:13:11 2007 +0100
57089
57090     Prepare for release 1.2.0
57091
57092 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
57093 Author: Stefan Roese <sr@denx.de>
57094 Date:   Sat Jan 6 15:58:09 2007 +0100
57095
57096     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
57097
57098     This patch fixes a problem with an incorrect setup for the refresh
57099     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
57100
57101     Signed-off-by: Stefan Roese <sr@denx.de>
57102
57103 commit f16c1da9577f06c5fc08651a4065537407de4635
57104 Author: Stefan Roese <sr@denx.de>
57105 Date:   Sat Jan 6 15:56:13 2007 +0100
57106
57107     [PATCH] Update ALPR board files
57108
57109     This update brings the ALPR board support to the newest version.
57110     It also fixes a problem with the NAND driver.
57111
57112     Signed-off-by: Stefan Roese <sr@denx.de>
57113
57114 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
57115 Author: Stefan Roese <sr@denx.de>
57116 Date:   Fri Jan 5 11:46:05 2007 +0100
57117
57118     [PATCH] nand: Fix problem with oobsize calculation
57119
57120     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
57121
57122     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
57123     returns a 0x15. In the code fragment below bits [1:0] determine the
57124     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
57125     next field is also ANDed with 0x3. However this is a one bit field
57126     as defined in the Hynix and Samsung parts in the 4th ID byte that
57127     determins the oobsize, not a two bit field. It works on Samsung as
57128     bits[3:2] are 01. However for the Hynix there is a 11 in these two
57129     bits, so the oob size gets messed up.
57130
57131     I checked the correct linux code and the suggested fix from Brian is
57132     also available in the linux nand mtd driver.
57133
57134     Signed-off-by: Stefan Roese <sr@denx.de>
57135
57136 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
57137 Author: Stefan Roese <sr@denx.de>
57138 Date:   Fri Jan 5 10:40:36 2007 +0100
57139
57140     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
57141
57142     This fix will make the MAL burst disabling patch for the Linux
57143     EMAC driver obsolete.
57144
57145     Signed-off-by: Stefan Roese <sr@denx.de>
57146
57147 commit 023889838282b6237b401664f22dd22dfba2c066
57148 Author: Stefan Roese <sr@denx.de>
57149 Date:   Fri Jan 5 10:38:05 2007 +0100
57150
57151     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
57152
57153     This code will optimize the DDR2 controller setup on a board specific
57154     basis.
57155
57156     Note: This code doesn't work right now on the NAND booting image for the
57157     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
57158
57159     Signed-off-by: Stefan Roese <sr@denx.de>
57160
57161 commit cce4acbb68398634b8d011ed7bb0d12269c84230
57162 Author: Bartlomiej Sieka <tur@semihalf.com>
57163 Date:   Thu Dec 28 19:08:21 2006 +0100
57164
57165     Few V38B changes:
57166       - fix a typo in V38B config file
57167       - move watchdog initialisation earlier in the boot process
57168       - add "wdt=off" to default kernel command line (disables kernel watchdog)
57169
57170 commit 92eb729bad876725aeea908d2addba0800620840
57171 Author: Wolfgang Denk <wd@pollux.denx.de>
57172 Date:   Wed Dec 27 01:26:13 2006 +0100
57173
57174     Fix bug in adaption of Stefano Babic's CFI driver patch.
57175
57176 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
57177 Author: Wolfgang Denk <wd@pollux.denx.de>
57178 Date:   Sun Dec 24 01:42:57 2006 +0100
57179
57180     Minor code cleanup.
57181
57182 commit d784fdb05900ada3686d5778783e1fb328e9fb66
57183 Author: Stefano Babic <sbabic@denx.de>
57184 Date:   Tue Dec 12 00:22:42 2006 +0100
57185
57186     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
57187
57188 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
57189 Author: Stefan Roese <sr@denx.de>
57190 Date:   Fri Dec 22 14:29:40 2006 +0100
57191
57192     [PATCH] Fix sequoia flash autodetection (finally correct)
57193
57194     Now 32MByte and 64MByte FLASH is know to work and other
57195     configurations should work too.
57196
57197     Signed-off-by: Stefan Roese <sr@denx.de>
57198
57199 commit 82e5236a8b719543643fd26d5827938ab2b94818
57200 Author: Wolfgang Denk <wd@pollux.denx.de>
57201 Date:   Fri Dec 22 10:30:26 2006 +0100
57202
57203     Minor code cleanup; update CHANGELOG.
57204
57205 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
57206 Author: Heiko Schocher <hs@pollux.denx.de>
57207 Date:   Thu Dec 21 17:17:02 2006 +0100
57208
57209     Added support for the TQM8272 board from TQ
57210
57211     Signed-off-by: Heiko Schocher <hs@denx.de>
57212
57213 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
57214 Author: Heiko Schocher <hs@pollux.denx.de>
57215 Date:   Thu Dec 21 16:14:48 2006 +0100
57216
57217     [PATCH] Add support for the UC101 board from MAN.
57218
57219     Signed-off-by: Heiko Schocher <hs@denx.de>
57220
57221 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
57222 Author: Bartlomiej Sieka <tur@semihalf.com>
57223 Date:   Wed Dec 20 00:29:43 2006 +0100
57224
57225     Fix to make the baudrate changes immediate for the MCF52x2 family.
57226
57227 commit daa6e418bcc0c717752e8de939c213c790286096
57228 Author: Bartlomiej Sieka <tur@semihalf.com>
57229 Date:   Wed Dec 20 00:27:32 2006 +0100
57230
57231     Preliminary support for the iDMR board (ColdFire).
57232
57233 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
57234 Author: Andrei Safronov <safronov@pollux.denx.de>
57235 Date:   Fri Dec 8 16:23:08 2006 +0100
57236
57237     automatic update mechanism
57238
57239 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
57240 Author: roy zang <tie-fei.zang@freescale.com>
57241 Date:   Mon Dec 4 17:56:59 2006 +0800
57242
57243     Slight code clean up.
57244     Add comments, delete duplicate define and remove spaces.
57245     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57246
57247 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
57248 Author: roy zang <tie-fei.zang@freescale.com>
57249 Date:   Mon Dec 4 17:54:21 2006 +0800
57250
57251     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
57252     multiplier table can not refect the real PLL clock behavior of these
57253     processors. Please refer to the hardware specification for detailed
57254     information of the corresponding processors.
57255     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57256
57257 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
57258 Author: roy zang <tie-fei.zang@freescale.com>
57259 Date:   Mon Dec 4 14:46:23 2006 +0800
57260
57261     Remove the static MAC address, ip address, server ip, netmask and
57262     gateway ip for network setting.
57263     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57264
57265 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
57266 Author: roy zang <tie-fei.zang@freescale.com>
57267 Date:   Mon Dec 4 14:33:08 2006 +0800
57268
57269     Remove the duplicate memory test code for mpc744ihpc2 board.
57270     If a memory test is needed, please use the functions in
57271     post/memory.c or memtest command.
57272     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57273
57274 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
57275 Author: roy zang <tie-fei.zang@freescale.com>
57276 Date:   Fri Dec 1 19:01:25 2006 +0800
57277
57278     Fix the exception occuring in RAM table search issue.
57279     The original search_one_table() function code can only processes the search
57280     for the exception occurring in FLASH/ROM, because the exception and fixup
57281     table usually locate in FLASH. If the exception address is also in
57282     FLASH, it will be OK.
57283     If the exception occurs in RAM, after the u-boot relocation, a
57284     relocation offset should be added.
57285
57286     clean up the code in cpu/74xx_7xx/cpu.c
57287
57288     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57289
57290 commit ee311214e0d216f904feea269599d0934bf71f23
57291 Author: roy zang <tie-fei.zang@freescale.com>
57292 Date:   Fri Dec 1 11:47:36 2006 +0800
57293
57294     Clean up the code according to codestyle:
57295     (1) remove some C++ comments.
57296     (2) remove trailing white space.
57297     (3) remove trailing empty line.
57298     (4) Indentation by table.
57299     (5) remove {} in one line condition.
57300     (6) add space before '(' in function call.
57301     Remove some weird printf () output.
57302     Add necessary comments.
57303     Modified Makefile to support building in a separate directory.
57304
57305 commit dd520bf314c7add4183c5191692180f576f96b60
57306 Author: Wolfgang Denk <wd@pollux.denx.de>
57307 Date:   Thu Nov 30 18:02:20 2006 +0100
57308
57309     Code cleanup.
57310
57311 commit 8d9a8610b8256331132227e9e6585c6bd5742787
57312 Author: Wolfgang Denk <wd@pollux.denx.de>
57313 Date:   Thu Nov 30 01:54:07 2006 +0100
57314
57315     Code cleanup. Update CHANGELOG.
57316
57317 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
57318 Author: Grant Likely <grant.likely@secretlab.ca>
57319 Date:   Wed Nov 29 16:23:42 2006 +0100
57320
57321     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
57322
57323     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
57324     not the XLB frequency.
57325
57326     This patch depends on the previous patches for MPC52xx device tree support
57327
57328     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57329     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
57330
57331 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
57332 Author: Stefan Roese <sr@denx.de>
57333 Date:   Wed Nov 29 15:42:37 2006 +0100
57334
57335     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
57336
57337     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
57338     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
57339     quite similar and share the same board directory "prodrive/p3mx"
57340     and the same config file "p3mx.h".
57341
57342     Signed-off-by: Stefan Roese <sr@denx.de>
57343
57344 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
57345 Author: Stefan Roese <sr@denx.de>
57346 Date:   Wed Nov 29 12:53:15 2006 +0100
57347
57348     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
57349
57350     In the bootvx command the load address was only read from the env
57351     variable "loadaddr" and not optionally passed as paramter as described
57352     in the help. This is fixed with this patch. The behaviour is now the
57353     same as in the bootelf command.
57354
57355     Signed-off-by: Stefan Roese <sr@denx.de>
57356
57357 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
57358 Author: Stefan Roese <sr@denx.de>
57359 Date:   Wed Nov 29 12:03:57 2006 +0100
57360
57361     [PATCH] include/ppc440.h minor error affecting interrupts
57362
57363     Fixed include/ppc440.c for UIC address Bug
57364
57365     Corrects bug affecting the addresses for the universal interrupt
57366     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
57367
57368     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
57369     Signed-off-by: Stefan Roese <sr@denx.de>
57370
57371 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
57372 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57373 Date:   Tue Nov 28 16:17:27 2006 -0600
57374
57375     Make fsl-i2c not conflict with SOFT I2C
57376
57377     Signed-off-by: Timur Tabi <timur@freescale.com>
57378
57379 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
57380 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57381 Date:   Tue Nov 28 16:17:18 2006 -0600
57382
57383     Fix I2C master address initialization.
57384
57385     Signed-off-by: Timur Tabi <timur@freescale.com>
57386
57387 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
57388 Author: Kim Phillips <kim.phillips@freescale.com>
57389 Date:   Tue Nov 28 23:31:19 2006 -0600
57390
57391     Assign maintainers for mpc8349emds and mpc8360emds
57392
57393     Dave for mpc8360emds, and me for mpc8349emds.
57394
57395 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
57396 Author: Kim Phillips <kim.phillips@freescale.com>
57397 Date:   Tue Nov 28 23:28:33 2006 -0600
57398
57399     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
57400
57401     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
57402     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
57403
57404 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
57405 Author: Timur Tabi <timur@freescale.com>
57406 Date:   Tue Nov 28 12:09:35 2006 -0600
57407
57408     mpc83xx: Miscellaneous code style fixes
57409
57410     Implement various code style fixes and similar changes.
57411
57412     Signed-off-by: Timur Tabi <timur@freescale.com>
57413
57414 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
57415 Author: Stefan Roese <sr@denx.de>
57416 Date:   Tue Nov 28 17:55:49 2006 +0100
57417
57418     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
57419
57420     This patch adds the code and configuration necessary to boot with an
57421     arch/powerpc Linux kernel.
57422
57423     Signed-off-by: Grant Likely <grant.likely@gmail.com>
57424     Acked-by: Jon Loeliger <jdl@freescale.com>
57425
57426 commit e732faec95a83cb468b4850ae807c8301dde8f6a
57427 Author: Stefan Roese <sr@denx.de>
57428 Date:   Tue Nov 28 16:09:24 2006 +0100
57429
57430     [PATCH] PPC4xx: 440SP Rev. C detection added
57431
57432     Signed-off-by: Stefan Roese <sr@denx.de>
57433
57434 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
57435 Author: Stefan Roese <sr@denx.de>
57436 Date:   Tue Nov 28 11:04:45 2006 +0100
57437
57438     [PATCH] nand: Fix patch merge problem
57439
57440     Signed-off-by: Stefan Roese <sr@denx.de>
57441
57442 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
57443 Author: Stefan Roese <sr@denx.de>
57444 Date:   Tue Nov 28 11:04:45 2006 +0100
57445
57446     [PATCH] nand: Fix patch merge problem
57447
57448     Signed-off-by: Stefan Roese <sr@denx.de>
57449
57450 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
57451 Author: Wolfgang Denk <wd@pollux.denx.de>
57452 Date:   Mon Nov 27 22:53:53 2006 +0100
57453
57454     Update CHANGELOG
57455
57456 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
57457 Author: Stefan Roese <sr@denx.de>
57458 Date:   Mon Nov 27 17:43:25 2006 +0100
57459
57460     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
57461
57462     Patch below corrects the setting of the zmiifer register, it was
57463     overwritting the register rather than ORing the settings.
57464
57465     Signed-off-by: Neil Wilson <NWilson@airspan.com>
57466     Signed-off-by: Stefan Roese <sr@denx.de>
57467
57468 commit d1a72545296800b7e219f93104ad5836f0003d66
57469 Author: Stefan Roese <sr@denx.de>
57470 Date:   Mon Nov 27 17:34:10 2006 +0100
57471
57472     [PATCH] Select NAND embedded environment from board configuration
57473
57474     The current NAND Bootloader setup forces the environment
57475     variables to be in line with the bootloader. This change
57476     enables the configuration to be made in the board include
57477     file instead so that it can be individually enabled.
57478
57479     Signed-off-by: Nick Spence <nick.spence@freescale.com>
57480     Signed-off-by: Stefan Roese <sr@denx.de>
57481
57482 commit 15784862857c3c2214498defcfed84ff137fb81e
57483 Author: Stefan Roese <sr@denx.de>
57484 Date:   Mon Nov 27 17:22:19 2006 +0100
57485
57486     [PATCH] nand_wait() timeout fixes
57487
57488     Two fixes for the nand_wait() function in
57489     drivers/nand/nand_base.c:
57490
57491     1. Use correct timeouts. The original timeouts in Linux
57492     source are 400ms and 20ms not 40s and 20s
57493
57494     2. Return correct error value in case of timeout. 0 is
57495     interpreted as OK.
57496
57497     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
57498     Signed-off-by: Stefan Roese <sr@denx.de>
57499
57500 commit da5553b095bf04f4f109ad7e565dae3aba47b230
57501 Author: Stefan Roese <sr@denx.de>
57502 Date:   Mon Nov 27 17:04:06 2006 +0100
57503
57504     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
57505
57506     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
57507     arguments to bootm.  It removes the getenv("disable_of") test that used
57508     to be used for this purpose.
57509
57510     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
57511     Acked-by: Jon Loeliger <jdl@freescale.com>
57512
57513 commit a9398e018593782c5fa7d0741955fc1256b34c1e
57514 Author: Wolfgang Denk <wd@pollux.denx.de>
57515 Date:   Mon Nov 27 15:32:42 2006 +0100
57516
57517     Minor code cleanup. Update CHANGELOG.
57518
57519 commit 1729b92cde575476684bffe819d0b7791b57bff2
57520 Author: Stefan Roese <sr@denx.de>
57521 Date:   Mon Nov 27 14:52:04 2006 +0100
57522
57523     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
57524
57525     Signed-off-by: Stefan Roese <sr@denx.de>
57526
57527 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
57528 Author: Stefan Roese <sr@denx.de>
57529 Date:   Mon Nov 27 14:49:51 2006 +0100
57530
57531     [PATCH] alpr: remove unused board specific flash driver
57532
57533     Signed-off-by: Stefan Roese <sr@denx.de>
57534
57535 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
57536 Author: Stefan Roese <sr@denx.de>
57537 Date:   Mon Nov 27 14:48:41 2006 +0100
57538
57539     [PATCH] 4xx: Fix problem with board specific reset code
57540
57541     Signed-off-by: Stefan Roese <sr@denx.de>
57542
57543 commit ec0c2ec725aec9524a177a77ce75559e644a931a
57544 Author: Stefan Roese <sr@denx.de>
57545 Date:   Mon Nov 27 14:46:06 2006 +0100
57546
57547     [PATCH] Remove testing 4xx enet PHY setup
57548
57549     Signed-off-by: Stefan Roese <sr@denx.de>
57550
57551 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
57552 Author: Stefan Roese <sr@denx.de>
57553 Date:   Mon Nov 27 14:12:17 2006 +0100
57554
57555     [PATCH] Update Prodrive ALPR board support (440GX)
57556
57557     Signed-off-by: Stefan Roese <sr@denx.de>
57558
57559 commit 58b485776698c3d71ec5a215e392123b4c15afa3
57560 Author: Markus Klotzbuecher <mk@denx.de>
57561 Date:   Mon Nov 27 11:51:21 2006 +0100
57562
57563     Add a small README with information on the generic ohci driver.
57564
57565 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
57566 Author: Markus Klotzbuecher <mk@denx.de>
57567 Date:   Mon Nov 27 11:46:46 2006 +0100
57568
57569     Fix some endianness issues related to the generic ohci driver
57570
57571 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
57572 Author: Markus Klotzbuecher <mk@denx.de>
57573 Date:   Mon Nov 27 11:44:58 2006 +0100
57574
57575     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
57576     to choose between the old and the generic OHCI drivers.
57577
57578 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
57579 Author: Markus Klotzbuecher <mk@denx.de>
57580 Date:   Mon Nov 27 11:43:09 2006 +0100
57581
57582     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
57583     and adapted board configs TQM5200 and yosemite accordingly. This commit
57584     also makes the maximum number of root hub ports configurable
57585     (CFG_USB_OHCI_MAX_ROOT_PORTS).
57586
57587 commit 78d620ebb5871d252270dedfad60c6568993b780
57588 Author: Wolfgang Denk <wd@atlas.denx.de>
57589 Date:   Thu Nov 23 22:58:58 2006 +0100
57590
57591     Updates for TQM5200 modules:
57592     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
57593     - simplify "udate" definitions
57594
57595 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
57596 Author: Stefan Roese <sr@denx.de>
57597 Date:   Wed Nov 22 13:20:50 2006 +0100
57598
57599     [PATCH] PPC4xx start.S: Fix for processor errata
57600
57601     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
57602     errata 1.12: 440_33 by moving patch up in code.
57603
57604     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
57605     Signed-off-by: Stefan Roese <sr@denx.de>
57606
57607 commit 4ef6251403f637841000e0fef9e832aa01339822
57608 Author: Stefan Roese <sr@denx.de>
57609 Date:   Mon Nov 20 20:39:52 2006 +0100
57610
57611     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
57612
57613     Signed-off-by: Stefan Roese <sr@denx.de>
57614
57615 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
57616 Author: Wolfgang Denk <wd@pollux.denx.de>
57617 Date:   Mon Nov 20 10:28:30 2006 +0100
57618
57619     Update CHANGELOG
57620
57621 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
57622 Author: Stefan Roese <sr@denx.de>
57623 Date:   Mon Nov 13 13:55:24 2006 +0100
57624
57625     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
57626
57627        * Adds support for AMD command set Top Boot flash geometry reversal
57628        * Adds support for reading JEDEC Manufacturer ID and Device ID
57629        * Adds support for displaying command set, manufacturer id and
57630          device ids (flinfo)
57631        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
57632        * Removes outdated change history (refer to git log instead)
57633
57634     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
57635     Signed-off-by: Stefan Roese <sr@denx.de>
57636
57637 commit b21b511d4c50408f4853f46f06b601272196223f
57638 Author: Wolfgang Denk <wd@pollux.denx.de>
57639 Date:   Sun Nov 12 21:13:23 2006 +0100
57640
57641     Update CHANGELOG
57642
57643 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
57644 Author: Bartlomiej Sieka <tur@semihalf.com>
57645 Date:   Sat Nov 11 22:48:22 2006 +0100
57646
57647     Disable the watchdog in the default config for the V38B board.
57648
57649 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
57650 Author: Bartlomiej Sieka <tur@semihalf.com>
57651 Date:   Sat Nov 11 22:43:00 2006 +0100
57652
57653     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
57654     group is enabled for USB earlier (in cpu_init_f() instead of
57655     usb_lowlevel_init()).
57656
57657 commit 91650b3e4de688038d4f71279c44858e3e2c6870
57658 Author: Wolfgang Denk <wd@pollux.denx.de>
57659 Date:   Mon Nov 6 17:06:36 2006 +0100
57660
57661     Sequential accesses to non-existent memory must be synchronized,
57662     at least on G2 cores.
57663
57664     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
57665
57666 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
57667 Author: Timur Tabi <timur@freescale.com>
57668 Date:   Fri Nov 3 19:15:00 2006 -0600
57669
57670     mpc83xx: Update 83xx to use fsl_i2c.c
57671
57672     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
57673     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
57674     Added multiple I2C bus support to fsl_i2c.c.
57675
57676     Signed-off-by: Timur Tabi <timur@freescale.com>
57677
57678 commit d239d74b1c937984bc519083a8e7de373a390f06
57679 Author: Timur Tabi <timur@freescale.com>
57680 Date:   Fri Nov 3 12:00:28 2006 -0600
57681
57682     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
57683
57684     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
57685     tree matches the other 8xxx trees.
57686
57687     Signed-off-by: Timur Tabi <timur@freescale.com>
57688
57689 commit f7fb2e703ec9688541416962724adff70a7322cb
57690 Author: Kim Phillips <kim.phillips@freescale.com>
57691 Date:   Thu Nov 2 19:47:11 2006 -0600
57692
57693     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
57694
57695 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
57696 Author: Dave Liu <daveliu@freescale.com>
57697 Date:   Thu Nov 2 18:05:50 2006 -0600
57698
57699     mpc83xx: Fix the incorrect dcbz operation
57700
57701     The 834x rev1.x silicon has one CPU5 errata.
57702
57703     The issue is when the data cache locked with
57704     HID0[DLOCK], the dcbz instruction looks like no-op inst.
57705
57706     The right behavior of the data cache is when the data cache
57707     Locked with HID0[DLOCK], the dcbz instruction allocates
57708     new tags in cache.
57709
57710     The 834x rev3.0 and later and 8360 have not this bug inside.
57711
57712     So, when 834x rev3.0/8360 are working with ECC, the dcbz
57713     instruction will corrupt the stack in cache, the processor will
57714     checkstop reset.
57715
57716     However, the 834x rev1.x can work with ECC with these code,
57717     because the sillicon has this cache bug. The dcbz will not
57718     corrupt the stack in cache.
57719     Really, it is the fault code running on fault sillicon.
57720
57721     This patch fix the incorrect dcbz operation. Instead of
57722     CPU FP writing to initialise the ECC.
57723
57724     CHANGELOG:
57725     * Fix the incorrect dcbz operation instead of CPU FP
57726     writing to initialise the ECC memory. Otherwise, it
57727     will corrupt the stack in cache, The processor will checkstop
57728     reset.
57729
57730     Signed-off-by: Dave Liu <daveliu@freescale.com>
57731
57732 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
57733 Author: Kim Phillips <kim.phillips@freescale.com>
57734 Date:   Wed Nov 1 00:10:40 2006 -0600
57735
57736     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
57737
57738     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
57739     STDOUT_PATH configuration bits to mpc8349emds,
57740     mpc8349itx, and mpc8360emds board code.
57741
57742     redo environment to use bootm with the fdtaddr
57743     for booting ARCH=powerpc kernels by default,
57744     and provide default fdtaddr values.
57745
57746 commit 48041365b3420589ad464ebc7752e0053538b729
57747 Author: Kim Phillips <kim.phillips@freescale.com>
57748 Date:   Wed Nov 1 00:07:25 2006 -0600
57749
57750     mpc83xx: change ft code to modify local-mac-address property
57751
57752     Update 83xx OF code to update local-mac-address properties
57753     for ethernet instead of the obsolete 'address' property.
57754
57755 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
57756 Author: Timur Tabi <timur@freescale.com>
57757 Date:   Tue Oct 31 21:23:16 2006 -0600
57758
57759     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
57760
57761     This patch also adds an improved I2C set_speed(), which handles all clock
57762     frequencies.
57763
57764     Signed-off-by: Timur Tabi <timur@freescale.com>
57765
57766 commit ac4b5622ce050b5ee1e154b98df630d778661632
57767 Author: Dave Liu <daveliu@freescale.com>
57768 Date:   Tue Oct 31 19:54:59 2006 -0600
57769
57770     mpc83xx: add the README.mpc8360emds
57771
57772     add doc/README.mpc8360emds to accompany the new board support
57773
57774 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
57775 Author: Dave Liu <daveliu@freescale.com>
57776 Date:   Fri Nov 3 12:11:15 2006 -0600
57777
57778     mpc83xx: add QE ethernet support
57779
57780     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
57781
57782 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
57783 Author: Dave Liu <daveliu@freescale.com>
57784 Date:   Fri Nov 3 19:33:44 2006 -0600
57785
57786     mpc83xx: Add MPC8360EMDS basic board support
57787
57788     Add support for the Freescale MPC8360EMDS board.
57789     Includes DDR, DUART, Local Bus, PCI.
57790
57791 commit 23892e49352de74f7fac36ff90bb1be143d195e3
57792 Author: Dave Liu <daveliu@freescale.com>
57793 Date:   Tue Oct 31 19:30:40 2006 -0600
57794
57795     mpc83xx: add the QUICC Engine (QE) immap file
57796
57797     common QE immap file.  Also required for 8360.
57798
57799 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
57800 Author: Dave Liu <daveliu@freescale.com>
57801 Date:   Tue Oct 31 19:25:38 2006 -0600
57802
57803     mpc83xx: Add 8360 specifics to 83xx immap
57804
57805     Mainly add QE device dependencies, with appropriate 8360 protection.
57806     Lindent also run.
57807
57808 commit 988833324a7fda482c8ac3ca23eb539f8232e404
57809 Author: Timur Tabi <timur@freescale.com>
57810 Date:   Tue Oct 31 19:14:41 2006 -0600
57811
57812     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
57813
57814     PREREQUISITE PATCHES:
57815
57816     * This patch can only be applied after the following patches have been applied:
57817
57818       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
57819       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
57820
57821     CHANGELOG:
57822
57823     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
57824       the clock for the 2nd USB board (Linux kernel will hang otherwise),
57825       and fix the CONFIG_BOOTARGS macro.
57826
57827     Signed-off-by: Timur Tabi <timur@freescale.com>
57828
57829 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
57830 Author: Timur Tabi <timur@freescale.com>
57831 Date:   Tue Oct 31 18:44:42 2006 -0600
57832
57833     mpc83xx: Add support for the MPC8349E-mITX
57834
57835     PREREQUISITE PATCHES:
57836
57837     * This patch can only be applied after the following patches have been applied:
57838
57839       1) DNX#2006090742000024 "Add support for multiple I2C buses"
57840       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
57841       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
57842       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
57843       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
57844
57845     CHANGELOG:
57846
57847     * Add support for the Freescale MPC8349E-mITX reference design platform.
57848       The second TSEC (Vitesse 7385 switch) is not supported at this time.
57849
57850     Signed-off-by: Timur Tabi <timur@freescale.com>
57851
57852 commit 183da6d9b446cc12123455844ad1187e2375626f
57853 Author: Ben Warren <bwarren@qstreams.com>
57854 Date:   Tue Sep 12 10:15:53 2006 -0400
57855
57856     Additional MPC8349 support for multibus i2c
57857
57858     Hello,
57859
57860     Here is a patch for a file that was accidentally left out of a previous
57861     attempt.
57862
57863     It accompanies the patch with ticket DNX#2006090742000024
57864
57865     CHANGELOG:
57866             Change PCI initialization to use new multi-bus I2C API.
57867
57868     regards,
57869     Ben
57870
57871 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
57872 Author: Ben Warren <bwarren@qstreams.com>
57873 Date:   Thu Sep 7 16:51:04 2006 -0400
57874
57875     Multi-bus I2C implementation of MPC834x
57876
57877     Hello,
57878
57879     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
57880     family and the MPC8349EMDS board in particular.
57881     This patch requires Patch 1 (Add support for multiple I2C buses).
57882     Testing was performed on a 533MHz board.
57883
57884     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
57885
57886     Signed-off-by: Ben Warren <bwarren@qstreams.com>
57887
57888     CHANGELOG:
57889             Implemented driver-level code to support two I2C buses on the
57890     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
57891     are 50kHz, 100kHz and 400kHz on each bus.
57892
57893     regards,
57894     Ben
57895
57896 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
57897 Author: Ben Warren <bwarren@qstreams.com>
57898 Date:   Thu Sep 7 16:50:54 2006 -0400
57899
57900     Add support for multiple I2C buses
57901
57902     Hello,
57903
57904     Attached is a patch providing support for multiple I2C buses at the
57905     command level.  The second part of the patch includes an implementation
57906     for the MPC834x CPU and MPC8349EMDS board.
57907
57908     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
57909
57910     Signed-off-by: Ben Warren <bwarren@qstreams.com>
57911
57912     Overview:
57913
57914     1. Include new 'i2c' command (based on USB implementation) using
57915     CONFIG_I2C_CMD_TREE.
57916
57917     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
57918     the commands to change bus number and speed are only available under the
57919     new 'i2c' command mentioned in the first bullet.
57920
57921     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
57922     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
57923     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
57924
57925     CHANGELOG:
57926             Added new 'i2c' master command for all I2C interaction.  This is
57927     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
57928     setting I2C bus speed as well as changing the active bus if the board
57929     has more than one (conditionally compiled with
57930     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
57931     Updated README.
57932
57933     regards,
57934     Ben
57935
57936 commit bed85caf872714ebf53013967a695c9d63acfc68
57937 Author: Timur Tabi <timur@freescale.com>
57938 Date:   Tue Oct 31 18:13:36 2006 -0600
57939
57940     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
57941
57942     CHANGELOG:
57943
57944     * Errata DDR6, which affects all current MPC 834x processors, lists changes
57945       required to maintain compatibility with various types of DDR memory.  This
57946       patch implements those changes.
57947
57948     Signed-off-by: Timur Tabi <timur@freescale.com>
57949
57950 commit afd6e470f639883002c7c59d562690a5cb0f4865
57951 Author: Timur Tabi <timur@freescale.com>
57952 Date:   Wed Oct 25 18:45:23 2006 -0500
57953
57954     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
57955
57956 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
57957 Author: Timur Tabi <timur@freescale.com>
57958 Date:   Tue Aug 22 17:07:00 2006 -0500
57959
57960     mpc83xx: Add support for variable flash memory sizes on 83xx systems
57961
57962     CHANGELOG:
57963
57964     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
57965        window registers, instead of using a hard-coded value of 8MB.
57966
57967     Signed-off-by: Timur Tabi <timur@freescale.com>
57968
57969 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
57970 Author: Tanya Jiang <tanya.jiang@freescale.com>
57971 Date:   Thu Aug 3 18:38:13 2006 +0800
57972
57973     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
57974
57975     Unified TQM834x variable names with 83xx and consolidated macro
57976     in preparation for the 8360 and other upcoming 83xx devices.
57977
57978     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
57979
57980 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
57981 Author: Dave Liu <daveliu@freescale.com>
57982 Date:   Wed Oct 25 14:41:21 2006 -0500
57983
57984     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
57985
57986     Incorporated the common unified variable names and the changes in preparation
57987     for releasing mpc8360 patches.
57988
57989     Signed-off-by: Dave Liu <daveliu@freescale.com>
57990
57991 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
57992 Author: Tanya Jiang <tanya.jiang@freescale.com>
57993 Date:   Thu Aug 3 18:36:02 2006 +0800
57994
57995     mpc83xx: Fix missing build for mpc8349emds pci.c
57996
57997     Make pci build for mpc8349emds
57998
57999     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
58000
58001 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
58002 Author: Tanya Jiang <tanya.jiang@freescale.com>
58003 Date:   Thu Aug 3 18:39:49 2006 +0800
58004
58005     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
58006
58007     Removed unused file resetvec.S for mpc83xx cpu
58008
58009     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
58010
58011 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
58012 Author: Nick Spence <Nick.Spence@freescale.com>
58013 Date:   Sat Sep 30 00:32:59 2006 -0700
58014
58015     NAND Flash verify across block boundaries
58016
58017     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
58018     defined
58019     and the write crosses a block boundary. The pointer to the verification
58020     buffer (bufstart) is not being updated to reflect the starting of the
58021     new
58022     block so the verification of the second block fails.
58023
58024     CHANGELOG:
58025
58026     * Fix NAND FLASH page verification across block boundaries
58027
58028 commit f484dc791a3932537213c43c654cc1295c64b84c
58029 Author: Nick Spence <nick.spence@freescale.com>
58030 Date:   Thu Sep 7 07:39:46 2006 -0700
58031
58032     Added RGMII support to the TSECs and Marvell 881111 Phy
58033
58034     Added a phy initialization to adjust the RGMII RX and TX timing
58035     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
58036
58037     Signed-off-by: Nick Spence <nick.spence@freescale.com>
58038
58039 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
58040 Author: roy zang <tie-fei.zang@freescale.com>
58041 Date:   Fri Nov 3 13:10:00 2006 +0800
58042
58043     Remove some unused CFG define.
58044     undef CFG_DRAM_TEST
58045
58046 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
58047 Author: roy zang <tie-fei.zang@freescale.com>
58048 Date:   Fri Nov 3 13:07:36 2006 +0800
58049
58050     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
58051     Both work. 0xFF000000 seems more reasonable.
58052
58053 commit c59200443072353044aa4bf737a5a60f9a9af231
58054 Author: Wolfgang Denk <wd@pollux.denx.de>
58055 Date:   Thu Nov 2 15:15:01 2006 +0100
58056
58057     Release U-Boot 1.1.6
58058
58059 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
58060 Author: roy zang <tie-fei.zang@freescale.com>
58061 Date:   Thu Nov 2 19:14:48 2006 +0800
58062
58063     This patch comes from Yuli's posted patch on 8/8/2006
58064     titled "CFI Driver Little-Endian write Issue".
58065
58066     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
58067
58068     If that patch applied, please discard this one.
58069     Until now , I do not see his patch is applied. So please apply this one.
58070
58071     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
58072     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58073
58074 commit b825f158e449e1e9cf74c08e572955e122394c96
58075 Author: roy zang <tie-fei.zang@freescale.com>
58076 Date:   Thu Nov 2 19:12:31 2006 +0800
58077
58078     Tsi108 on chip i2c support.
58079
58080     The i2c  Interface provides a master-only, serial interface that can be
58081     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
58082     device reset.
58083
58084     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58085     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58086
58087 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
58088 Author: roy zang <tie-fei.zang@freescale.com>
58089 Date:   Thu Nov 2 19:11:06 2006 +0800
58090
58091     Tsi108 on chip pci controller support.
58092
58093     If there is no pci card, the tsi108/109 pci configure read will
58094     cause a machine check exception to the processor. PCI error should
58095     also be cleared after the read.
58096
58097     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58098     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58099
58100 commit d1927cee977126e547ceeba23e4f978f377cfb8f
58101 Author: roy zang <tie-fei.zang@freescale.com>
58102 Date:   Thu Nov 2 19:08:55 2006 +0800
58103
58104     Tundra tsi108 on chip Ethernet controller support.
58105
58106     The following is a brief description of the Ethernet controller:
58107     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
58108     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
58109     to manage the two physical connection devices (PHYs).  Each Ethernet port
58110     has its own statistics monitor that tracks and reports key interface
58111     statistics.  Each port supports a 256-entry hash table for address
58112     filtering.  In addition, each port is bridged to the Switch Fabric
58113     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
58114
58115     Each Ethernet port also has a pair of internal Ethernet DMA channels to
58116     support the transmit and receive data flows.  The Ethernet DMA channels
58117     use descriptors set up in memory, the memory map of the device, and
58118     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
58119     handles arbitration for the Switch Fabric.  The Controller also
58120     has a register businterface for register accesses and status monitor
58121     control.
58122
58123     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
58124     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
58125     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
58126     data flows to and from the Ethernet Controller through the Switch Fabric.
58127
58128     Each Ethernet port uses its transmit and receive DMA channels to manage
58129     data flows through buffer descriptors that are predefined by the
58130     system (the descriptors can exist anywhere in the system memory map).
58131     These descriptors are data structures that point to buffers filled
58132     with data ready to transmit over Ethernet, or they point to empty
58133     buffers ready to receive data from Ethernet.
58134
58135     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58136     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58137
58138 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
58139 Author: roy zang <tie-fei.zang@freescale.com>
58140 Date:   Thu Nov 2 19:01:33 2006 +0800
58141
58142     Tundra tsi108 header file.
58143
58144     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
58145     PowerPC processors that offers numerous system interconnect options for
58146     embedded application designers. The Tsi108 can interconnect 60x or
58147     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
58148     and Flash. Provided the macro define for tsi108 chip.
58149
58150     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58151     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58152
58153 commit 87c4db09699c6b89176b31004afcb83eb1585d47
58154 Author: roy zang <tie-fei.zang@freescale.com>
58155 Date:   Thu Nov 2 18:59:15 2006 +0800
58156
58157     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58158     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
58159
58160     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58161     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58162
58163 commit 27801b8ab11c61b577e45742a515bb3b23b80241
58164 Author: roy zang <tie-fei.zang@freescale.com>
58165 Date:   Thu Nov 2 18:57:21 2006 +0800
58166
58167     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58168     Make ,config.mk and link file for the mpc7448hpc2 board.
58169
58170     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58171     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58172
58173 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
58174 Author: roy zang <tie-fei.zang@freescale.com>
58175 Date:   Thu Nov 2 18:55:04 2006 +0800
58176
58177     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58178     The mpc7448hpc2 board support header file.
58179
58180     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58181     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58182
58183 commit 625bb5ddb50b243f931262ca8c46956409471917
58184 Author: roy zang <tie-fei.zang@freescale.com>
58185 Date:   Thu Nov 2 18:52:21 2006 +0800
58186
58187     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
58188     The mpc7448hpc2 board support low level assemble language init code.
58189
58190     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58191     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58192
58193 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
58194 Author: roy zang <tie-fei.zang@freescale.com>
58195 Date:   Thu Nov 2 18:49:51 2006 +0800
58196
58197     General code modification for mpc7448hpc2 board support.
58198     1. Add 7447A and 7448 processor support.
58199     2. Add the following flags.
58200
58201     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
58202     (such as by switch on board), this flag should be set.
58203
58204     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
58205     relocates to RAM, this flag should be set.
58206
58207     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
58208     system hang in exception, this flag should be set.
58209
58210     There is a design issue for tsi108/109 pci configure  read. When pci scan
58211     the slots, if there is no pci card, the tsi108/9 will cause a machine
58212     check exception for mpc7448 processor.
58213
58214     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
58215     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58216
58217 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
58218 Author: roy zang <tie-fei.zang@freescale.com>
58219 Date:   Thu Nov 2 18:34:47 2006 +0800
58220
58221     Add README file for mpc7448hpc2 board.
58222     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
58223
58224 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
58225 Author: Bartlomiej Sieka <tur@semihalf.com>
58226 Date:   Wed Nov 1 02:04:38 2006 +0100
58227
58228     Finish up support for MarelV38B board
58229      - add watchdog support
58230      - enable GPIO_WKUP_7 pin for input
58231      - code cleanup
58232
58233 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
58234 Author: Bartlomiej Sieka <tur@semihalf.com>
58235 Date:   Wed Nov 1 01:45:46 2006 +0100
58236
58237     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
58238           * remove warnings when compiling ethaddr.c
58239           * adjust linker script (fixes a crash resulting from incorrect
58240           definition of __u_boot_cmd_start)
58241     - Some MarelV38B code cleanup.
58242
58243 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
58244 Author: Bartlomiej Sieka <tur@semihalf.com>
58245 Date:   Wed Nov 1 01:38:16 2006 +0100
58246
58247     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
58248       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
58249       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
58250       MPC5XXX_WU_GPIO_DATA_O for affected boards.
58251
58252     - Add defintions for some MPC5XXX GPIO pins.
58253
58254 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
58255 Author: Bartlomiej Sieka <tur@semihalf.com>
58256 Date:   Wed Nov 1 01:34:29 2006 +0100
58257
58258     Changed MarelV38B board make target to lowercase. Config file cleanup.
58259
58260 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
58261 Author: Wolfgang Denk <wd@pollux.denx.de>
58262 Date:   Sun Oct 29 01:03:51 2006 +0200
58263
58264     Automatically adjust ARFLAGS so "make -s" is really silent.
58265
58266 commit fae684e89844856383bdf101440889557df3e6b1
58267 Author: Stefan Roese <sr@denx.de>
58268 Date:   Sat Oct 28 16:45:00 2006 +0200
58269
58270     [PATCH] omap925.c: Remove unused functions
58271
58272     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
58273     Signed-off-by: Stefan Roese <sr@denx.de>
58274
58275 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
58276 Author: Stefan Roese <sr@denx.de>
58277 Date:   Sat Oct 28 17:12:58 2006 +0200
58278
58279     [PATCH] Add some missing machtypes for netstar & voiceblue boards
58280
58281     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
58282     numbers in code.
58283
58284     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
58285     Signed-off-by: Stefan Roese <sr@denx.de>
58286
58287 commit 856f054410cef52d868feb330168b2a4c4091328
58288 Author: Stefan Roese <sr@denx.de>
58289 Date:   Sat Oct 28 15:55:52 2006 +0200
58290
58291     [PATCH] NAND: Partition name support added to NAND subsystem
58292
58293     chpart, nboot and NAND subsystem related commands now accept also partition
58294     name to specify offset.
58295
58296     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
58297     Signed-off-by: Stefan Roese <sr@denx.de>
58298
58299 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
58300 Author: Wolfgang Denk <wd@pollux.denx.de>
58301 Date:   Sat Oct 28 02:29:44 2006 +0200
58302
58303     Update CHANGELOG.
58304
58305 commit 2751a95abd1b96911081c357e96a12fa97b40dee
58306 Author: Wolfgang Denk <wd@pollux.denx.de>
58307 Date:   Sat Oct 28 02:29:14 2006 +0200
58308
58309     Enable commandline editing and hush shell on all TQM boards.
58310
58311 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
58312 Author: Wolfgang Denk <wd@pollux.denx.de>
58313 Date:   Sat Oct 28 02:28:02 2006 +0200
58314
58315     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
58316
58317 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
58318 Author: Wolfgang Denk <wd@denx.de>
58319 Date:   Sat Oct 28 01:14:32 2006 +0200
58320
58321     Check for illegal character '=' in environment variable names.
58322
58323     Make sure the string passed as variable name does not contain a '='
58324     character. This not only prevents the common error or typing
58325     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
58326     also closes a backdoor which allowed to delete write-protected
58327     environment variables, for example by using "setenv ethaddr=".
58328
58329 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
58330 Author: Wolfgang Denk <wd@pollux.denx.de>
58331 Date:   Sat Oct 28 00:38:39 2006 +0200
58332
58333     Minor code cleanup.
58334
58335 commit e11887a77d81077416a2d1c5e0354916fee8c034
58336 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
58337 Date:   Thu Oct 26 17:55:31 2006 +0200
58338
58339     Don't pass any debug options directly to the assembler
58340
58341     When passing the -g option to gcc, gcc automatically selects a
58342     suitable --g<format> option to pass on to the assembler.
58343     Thus, there's no point in forcing a specific debug option on the
58344     assembler using the -Wa mechanism.
58345
58346     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58347
58348 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
58349 Author: Jon Loeliger <jdl@freescale.com>
58350 Date:   Fri Oct 27 07:47:22 2006 -0500
58351
58352     MPC86xx: Cleaned up unused and conditionally used local variables.
58353
58354     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58355
58356 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
58357 Author: Wolfgang Denk <wd@pollux.denx.de>
58358 Date:   Fri Oct 27 11:55:21 2006 +0200
58359
58360     Fix "ar" flags in some Makefiles to allow for silent "make -s"
58361
58362 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
58363 Author: Ben Warren <bwarren@qstreams.com>
58364 Date:   Thu Oct 26 14:38:25 2006 -0400
58365
58366     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
58367     to a TSEC (e.g. a switch is connected via RMII) or
58368     if the PHY is defective/incorrectly configured.
58369
58370     Signed-off-by: Ben Warren <bwarren@qstreams.com>
58371
58372 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
58373 Author: Ben Warren <bwarren@qstreams.com>
58374 Date:   Thu Oct 26 14:38:25 2006 -0400
58375
58376     Fix TSEC driver: avoid crashes if PHY is not attached
58377     to a TSEC (e.g. a switch is connected via RMII) or
58378     if the PHY is defective/incorrectly configured.
58379
58380     Signed-off-by: Ben Warren <bwarren@qstreams.com>
58381
58382 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
58383 Author: Wolfgang Denk <wd@pollux.denx.de>
58384 Date:   Thu Oct 26 16:24:31 2006 +0200
58385
58386     Code cleanup.
58387
58388 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
58389 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
58390 Date:   Wed Oct 25 15:48:59 2006 +0200
58391
58392     Finish up support for the ATSTK1000/ATSTK1002 boards
58393
58394     Add atstk1002_config target to Makefile and move the AVR32 section
58395     down below Blackfin so that it doesn't end up in the middle of
58396     MIPS.
58397
58398     Drop the autogenerated linker script thing for now. Will have to
58399     revisit how to handle chips with different flash and RAM layout
58400     later.
58401
58402     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58403
58404 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
58405 Author: Kumar Gala <galak@kernel.crashing.org>
58406 Date:   Tue Oct 24 23:47:37 2006 -0500
58407
58408     Added support for Multi-Image files that contain a device tree
58409
58410     If a Multi-Image file contains a third image we try to use it as a
58411     device tree.  The device tree image is assumed to be uncompressed in the
58412     image file.  We automatically allocate space for the device tree in memory
58413     and provide an 8k pad to allow more than a reasonable amount of growth.
58414
58415     Additionally, a device tree that was contained in flash will now automatically
58416     get copied to system memory as part of boot.  Previously an error was
58417     reported if one tried to boot a device tree that was in flash.
58418
58419     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58420
58421 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
58422 Author: Wolfgang Denk <wd@denx.de>
58423 Date:   Tue Oct 24 21:35:55 2006 +0200
58424
58425     Switch to automatically generated CHANGELOG file.
58426     (use "make CHANGELOG" to update it from time to time)
58427
58428 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
58429 Author: Stefan Roese <sr@denx.de>
58430 Date:   Tue Oct 24 18:06:48 2006 +0200
58431
58432     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
58433     Patch by Stefan Roese, 24 Oct 2006
58434
58435 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
58436 Author: Wolfgang Denk <wd@pollux.denx.de>
58437 Date:   Tue Oct 24 17:24:55 2006 +0200
58438
58439     Merge with /home/wd/git/u-boot/master
58440
58441 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
58442 Author: Wolfgang Denk <wd@pollux.denx.de>
58443 Date:   Tue Oct 24 15:32:57 2006 +0200
58444
58445     Code cleanup
58446
58447 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
58448 Author: Wolfgang Denk <wd@pollux.denx.de>
58449 Date:   Tue Oct 24 14:51:36 2006 +0200
58450
58451     Move atstk1000 files into vendor specific directory.
58452     Patch by Haavard Skinnemoen, 12 Sep 2006
58453
58454 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
58455 Author: Wolfgang Denk <wd@pollux.denx.de>
58456 Date:   Tue Oct 24 14:42:37 2006 +0200
58457
58458     Add ATSTK1000 and ATSTK1002 board support
58459     Patch by Haavard Skinnemoen, 06 Sep 2006
58460
58461     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
58462     daughterboard.
58463
58464     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
58465     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
58466     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
58467     CompactFlash cards. For more information, please see this page:
58468
58469     http://www.atmel.com/dyn/products/tools.asp?family_id=682
58470
58471     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
58472     AT32AP7000 chip.
58473
58474     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58475
58476 commit f93ae788c3640fcde5db383471d45548ff4060d0
58477 Author: Wolfgang Denk <wd@pollux.denx.de>
58478 Date:   Tue Oct 24 14:31:24 2006 +0200
58479
58480     Add common serial driver for Atmel AT32 and AT91 chips
58481     Patch by Haavard Skinnemoen, 06 Sep 2006
58482
58483     This is a first attempt at creating a common serial driver for Atmel
58484     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
58485     be possible to support AT91RM9200 and other ARM-based chips with some
58486     minor modifications.
58487
58488     There's nothing fundamentally AVR32-specific in this driver, but it
58489     does use some features which are currently only defined for the
58490     AT32AP CPU port:
58491       * pm_get_clock_freq: Obtain the clock frequency of a given domain
58492       * gd->console_uart: A "struct device" containing information about
58493         register mappings, gpio resources and clocks associated with the
58494         UART device.
58495
58496     For more information about these features, please see the "AT32AP
58497     CPU" patch.
58498
58499 commit 72a087e04705c26cad982879ebd06b5281bf825a
58500 Author: Wolfgang Denk <wd@pollux.denx.de>
58501 Date:   Tue Oct 24 14:27:35 2006 +0200
58502
58503     Add AT32AP CPU and AT32AP7000 SoC support
58504     Patch by Haavard Skinnemoen, 06 Sep 2006
58505
58506     This patch adds support for the AT32AP CPU family and the AT32AP7000
58507     chip, which is the first chip implementing the AVR32 architecture.
58508
58509     The AT32AP CPU core is a high-performance implementation featuring a
58510     7-stage pipeline, separate instruction- and data caches, and a MMU.
58511     For more information, please see the "AVR32 AP Technical Reference":
58512
58513     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
58514
58515     In addition to this, the AT32AP7000 chip comes with a large set of
58516     integrated peripherals, many of which are shared with the AT91 series
58517     of ARM-based microcontrollers from Atmel. Full data sheet is
58518     available here:
58519
58520     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
58521
58522     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58523
58524 commit 7b64fef33c66be648826c0ff9758298ef13d0604
58525 Author: Wolfgang Denk <wd@pollux.denx.de>
58526 Date:   Tue Oct 24 14:21:16 2006 +0200
58527
58528     Add AVR32 architecture support
58529     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
58530
58531     This patch adds common infrastructure code for the Atmel AVR32
58532     architecture. See doc/README.AVR32 for details.
58533
58534     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58535
58536 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
58537 Author: Wolfgang Denk <wd@pollux.denx.de>
58538 Date:   Tue Oct 24 13:57:33 2006 +0200
58539
58540     Use -g instead of -gstabs in AFLAGS_DEBUG
58541     Patch by Haavard Skinnemoen, 30 Aug 2006
58542
58543     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
58544     matter what the target's preferred debugging format is. This patch
58545     simply replaces -gstabs with -g, so that the default debugging format
58546     for the architecture is used.
58547
58548 commit 965829872169c2996023840d98e1d85ad148d629
58549 Author: Wolfgang Denk <wd@pollux.denx.de>
58550 Date:   Tue Oct 24 13:55:18 2006 +0200
58551
58552     Fix/workaround broken dependency handling with make 3.81
58553     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
58554
58555 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
58556 Author: Marian Balakowicz <m8@semihalf.com>
58557 Date:   Mon Oct 23 22:17:05 2006 +0200
58558
58559     Fix sequoia separate object direcory building problems.
58560
58561 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
58562 Author: Jon Loeliger <jdl@freescale.com>
58563 Date:   Fri Oct 20 17:16:35 2006 -0500
58564
58565     Use generic I2C register block on 85xx and 86xx.
58566
58567     Replace private IMMAP I2C structures with generic reg block
58568     and allow 86xx to have multiple I2C device busses.
58569
58570     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58571
58572 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
58573 Author: Jon Loeliger <jdl@freescale.com>
58574 Date:   Fri Oct 20 15:54:34 2006 -0500
58575
58576     Fix compilation warnings on a few 85xx boards.
58577
58578     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58579
58580 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
58581 Author: Jon Loeliger <jdl@freescale.com>
58582 Date:   Fri Oct 20 15:50:15 2006 -0500
58583
58584     Converted all 85xx boards to use a common FSL I2C driver.
58585     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
58586     And removed hard i2c path from a few u-boot.lds scipts too.
58587     Minor whitespace cleanups along the way.
58588
58589     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58590
58591 commit 4d45f69e362b05892c9e92a7907e5820995612aa
58592 Author: Jon Loeliger <jdl@freescale.com>
58593 Date:   Thu Oct 19 12:02:24 2006 -0500
58594
58595     Rewrite a series of goto statements as a sequences of
58596     conditional expressions instead.
58597
58598     Use consistent return code 0/-1 for good/bad indicators.
58599
58600     Include one fewer file if the driver isn't used at all.
58601
58602     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58603
58604 commit 7237c033b02fe295880435f1eb80819a0c987532
58605 Author: Jon Loeliger <jdl@freescale.com>
58606 Date:   Thu Oct 19 11:02:16 2006 -0500
58607
58608     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
58609
58610     in an effort to begin to unify the umpteen FSL I2C drivers that
58611     are all otherwise very similar.
58612
58613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58614
58615 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
58616 Author: Jon Loeliger <jdl@freescale.com>
58617 Date:   Thu Oct 19 11:33:52 2006 -0500
58618
58619     * Fix a bunch of compiler warnings for gcc 4.0
58620
58621     Signed-off-by: Matthew McClintock <msm@freescale.com>
58622
58623 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
58624 Author: Stefan Roese <sr@denx.de>
58625 Date:   Tue Oct 17 06:14:31 2006 +0200
58626
58627     Add monitor functions for indirect access to PPC440 DCR's
58628     Patch by Leonid Baryudin, 12 Oct 2006
58629
58630 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
58631 Author: Jon Loeliger <jdl@freescale.com>
58632 Date:   Fri Oct 13 16:47:53 2006 -0500
58633
58634     Fixed leading whitespace issues.
58635     Removed spurious LAWAR thing.
58636
58637     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58638
58639 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
58640 Author: Jon Loeliger <jdl@freescale.com>
58641 Date:   Thu Oct 12 10:42:36 2006 -0500
58642
58643     Remove unneeded include files and local variable.
58644
58645     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58646
58647 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
58648 Author: Grant Likely <grant.likely@secretlab.ca>
58649 Date:   Tue Oct 10 00:23:32 2006 -0600
58650
58651     Fix possible uninitialized variable compiler warning.
58652
58653     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
58654     do_bootm_linux() may be uninitialized.  There is no possibility in the
58655     current code that len will get used uninitialized, but this fix follows
58656     the existing convention of setting both len and data to zero at the same
58657     time.
58658
58659     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
58660
58661 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
58662 Author: Matthew McClintock <msm@freescale.com>
58663 Date:   Wed Oct 11 15:13:01 2006 -0500
58664
58665     * Fix a bunch of compiler warnings for gcc 4.0
58666
58667     Signed-off-by: Matthew McClintock <msm@freescale.com>
58668
58669 commit bf651baa365e5447246aad6a633ccd667cf24a39
58670 Author: Jon Loeliger <jdl@freescale.com>
58671 Date:   Wed Oct 11 10:10:43 2006 -0500
58672
58673     Move "ar" flags to config.mk to allow for silent "make -s"
58674
58675 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
58676 Author: Jon Loeliger <jdl@freescale.com>
58677 Date:   Tue Oct 10 17:19:03 2006 -0500
58678
58679     Coding style changes to remove local varible blocks
58680     and reformat a bit nicer.
58681
58682 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
58683 Author: Jon Loeliger <jdl@freescale.com>
58684 Date:   Tue Oct 10 17:16:04 2006 -0500
58685
58686     Fix whitespace issues.
58687
58688 commit 7b382b7125f2397cce63253df62f183e3dfa2770
58689 Author: Jon Loeliger <jdl@freescale.com>
58690 Date:   Tue Oct 10 17:14:45 2006 -0500
58691
58692     Fix whitespace issues.
58693
58694 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
58695 Author: Jon Loeliger <jdl@freescale.com>
58696 Date:   Tue Oct 10 17:06:53 2006 -0500
58697
58698     Fix whitespace issues.
58699
58700 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
58701 Author: Jon Loeliger <jdl@freescale.com>
58702 Date:   Tue Oct 10 17:03:43 2006 -0500
58703
58704     Ran lindent and cleaned up whitespace issues.
58705     Format for 80-columns too.
58706
58707 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
58708 Author: Jon Loeliger <jdl@freescale.com>
58709 Date:   Tue Oct 10 17:02:22 2006 -0500
58710
58711     Fix whitespace and 80-col issues.
58712
58713 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
58714 Author: Stefan Roese <sr@denx.de>
58715 Date:   Sat Oct 7 11:36:51 2006 +0200
58716
58717     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
58718     Patch by Stefan Roese, 07 Oct 2006
58719
58720 commit 5bc528fa4da751d472397b308137238a6465afd2
58721 Author: Stefan Roese <sr@denx.de>
58722 Date:   Sat Oct 7 11:35:25 2006 +0200
58723
58724     Update ALPR code (NAND support working now)
58725     Patch by Stefan Roese, 07 Oct 2006
58726
58727 commit 77d5034847d328753b80c46b83f960a14a26f40e
58728 Author: Stefan Roese <sr@denx.de>
58729 Date:   Sat Oct 7 11:33:03 2006 +0200
58730
58731     Remove compile warnings in fpga code
58732     Patch by Stefan Roese, 07 Oct 2006
58733
58734 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
58735 Author: Stefan Roese <sr@denx.de>
58736 Date:   Sat Oct 7 11:30:52 2006 +0200
58737
58738     Add CONFIG_BOARD_RESET to configure board specific reset function
58739     Patch by Stefan Roese, 07 Oct 2006
58740
58741 commit f55df18187e7a45cb73fec4370d12135e6691ae1
58742 Author: John Traill <john.traill@freescale.com>
58743 Date:   Fri Sep 29 08:23:12 2006 +0100
58744
58745     Fix missing tCycle/modfreq calculation.
58746
58747     Signed-off-by: John Traill <john.traill@freescale.com>
58748
58749 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
58750 Author: Andy Fleming <afleming@freescale.com>
58751 Date:   Wed Sep 13 10:33:35 2006 -0500
58752
58753     Updated config headers to add default FDT-based booting
58754
58755 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
58756 Author: Andy Fleming <afleming@freescale.com>
58757 Date:   Wed Sep 13 10:34:18 2006 -0500
58758
58759     Add support for eTSEC 3 & 4 on 8548 CDS
58760
58761     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
58762       This will only work on rev 1.3 boards (but doesn't break older boards)
58763     * Cleaned up some comments to reflect the expanded role of tsec
58764       in other systems
58765
58766 commit 084d648b109c8984f83674043c1a7fa3885ef801
58767 Author: Andy Fleming <afleming@freescale.com>
58768 Date:   Wed Sep 13 10:33:56 2006 -0500
58769
58770     Added code to support 2.6.18 PCI changes in u-boot
58771
58772     * Added code to swizzle the IRQ map for the PCI
58773
58774 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
58775 Author: Jon Loeliger <jdl@freescale.com>
58776 Date:   Tue Sep 19 09:34:10 2006 -0500
58777
58778     Modified makefile for new build mechanism.
58779
58780     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58781
58782 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
58783 Author: Jon Loeliger <jdl@freescale.com>
58784 Date:   Thu Sep 14 08:40:36 2006 -0500
58785
58786     Handle 86xx SVR values according to the new Reference Manual.
58787     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
58788     by the byte in bits 16-23 instead.
58789     Thanks to Jason Jin for noticing.
58790
58791     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58792
58793 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
58794 Author: Zhang Wei <wei.zhang@freescale.com>
58795 Date:   Mon Aug 28 14:25:31 2006 +0800
58796
58797     Fixed an OF-tree off-by-one bug when adding a new property name.
58798     This bug will cause the kernel booting to pause a long time.
58799
58800     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58801     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
58802
58803 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
58804 Author: Jon Loeliger <jdl@freescale.com>
58805 Date:   Tue Aug 29 11:05:09 2006 -0500
58806
58807     Remove trailing empty lines.
58808
58809 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
58810 Author: Jon Loeliger <jdl@freescale.com>
58811 Date:   Tue Aug 29 09:48:49 2006 -0500
58812
58813     Remove bogus msync and use volatile asm.
58814
58815 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
58816 Author: Jon Loeliger <jdl@freescale.com>
58817 Date:   Tue Aug 29 08:17:14 2006 -0500
58818
58819     Add myself as maintainer for MPC8641HPCN.
58820
58821 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
58822 Author: Zhang Wei <wei.zhang@freescale.com>
58823 Date:   Mon Aug 28 14:25:31 2006 +0800
58824
58825     Fixed an OF-tree off-by-one bug when adding a new property name.
58826     This bug will cause the kernel booting to pause a long time.
58827
58828     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58829
58830 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
58831 Author: Haiying Wang <haiying.wang@freescale.com>
58832 Date:   Fri Aug 25 14:38:34 2006 -0400
58833
58834     Change ramdiskaddr and dtbaddr
58835     Remove PEX fluff commands.
58836
58837     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
58838     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58839
58840 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
58841 Author: Matthew McClintock <msm@freescale.com>
58842 Date:   Wed Aug 23 13:32:45 2006 -0500
58843
58844     * Another small fix for booting with disable_of
58845
58846     Signed-off-by: Matthew McClintock <msm@freescale.com>
58847
58848 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
58849 Author: Jon Loeliger <jdl@freescale.com>
58850 Date:   Wed Aug 23 11:04:43 2006 -0500
58851
58852     Cleanup and lindent new AHCI driver.
58853
58854 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
58855 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
58856 Date:   Wed Aug 23 19:15:12 2006 +0800
58857
58858     Add AHCI define and sata support for MPC8641HPCN board.
58859
58860     Signed-off-by:Jason Jin<jason.jin@freescale.com>
58861
58862 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
58863 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
58864 Date:   Wed Aug 23 19:10:44 2006 +0800
58865
58866     Add AHCI support to u-boot
58867
58868     Add AHCI support in u-boot, enable the sata disk controllers which
58869     following the AHCI protocol.
58870
58871     Signed-off-by:Jason Jin<jason.jin@freescale.com>
58872
58873 commit d8ea2acf5f137cae99417df4f573d036ee384668
58874 Author: Zhang Wei <wei.zhang@freescale.com>
58875 Date:   Wed Aug 23 17:54:32 2006 +0800
58876
58877     Add dtb boot-up parameter to default boot commands.
58878
58879     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58880
58881 commit b93775c2036b99baa390ea425c4771895bbc63c4
58882 Author: Jon Loeliger <jdl@freescale.com>
58883 Date:   Tue Aug 22 18:26:08 2006 -0500
58884
58885     Cleanup even more poorly introduced whitespace.
58886
58887 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
58888 Author: Jon Loeliger <jdl@freescale.com>
58889 Date:   Tue Aug 22 18:07:00 2006 -0500
58890
58891     Cleanup more poorly introduced whitespace.
58892
58893 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
58894 Author: Jon Loeliger <jdl@freescale.com>
58895 Date:   Tue Aug 22 17:54:05 2006 -0500
58896
58897     Cleanup poorly introduced whitespace.
58898
58899 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
58900 Author: Jon Loeliger <jdl@freescale.com>
58901 Date:   Tue Aug 22 12:25:27 2006 -0500
58902
58903     General indent and whitespace cleanups.
58904
58905 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
58906 Author: Jon Loeliger <jdl@freescale.com>
58907 Date:   Tue Aug 22 12:06:18 2006 -0500
58908
58909     General indent and whitespace cleanups.
58910
58911 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
58912 Author: Jon Loeliger <jdl@freescale.com>
58913 Date:   Tue Aug 22 10:42:21 2006 -0500
58914
58915     Cleanup compiler warnings.
58916
58917 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
58918 Author: Matthew McClintock <msm@freescale.com>
58919 Date:   Tue Aug 22 09:31:59 2006 -0500
58920
58921     Fix disable_of booting
58922
58923     Signed-off-by: Matthew McClintock <msm@freescale.com>
58924
58925 commit 87a449c8ac396420cb24260f717ea9e6faa82047
58926 Author: Matthew McClintock <msm@freescale.com>
58927 Date:   Tue Aug 22 09:23:55 2006 -0500
58928
58929     Support for FDT in uImage format, error when using FDT from flash
58930
58931     Signed-off-by: Matthew McClintock <msm@freescale.com>
58932
58933 commit 75c299c38369d01addd5e054b8a16217b70f4a86
58934 Author: Haiying Wang <haiying.wang@freescale.com>
58935 Date:   Tue Aug 15 15:12:55 2006 -0400
58936
58937     Unlock cache before kernel starts up for MPC86xx
58938
58939 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
58940 Author: Haiying Wang <haiying.wang@freescale.com>
58941 Date:   Tue Aug 15 15:13:15 2006 -0400
58942
58943     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
58944
58945 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
58946 Author: Haiying Wang <haiying.wang@freescale.com>
58947 Date:   Tue Aug 15 15:12:55 2006 -0400
58948
58949     Unlock cache before kernel starts up for MPC86xx
58950
58951 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
58952 Author: Haiying Wang <haiying.wang@freescale.com>
58953 Date:   Tue Aug 15 15:13:15 2006 -0400
58954
58955     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
58956
58957 commit 86c8e17f25e972a7e272950a0735fad84e082b88
58958 Author: Matthew McClintock <msm@freescale.com>
58959 Date:   Wed Aug 16 13:59:47 2006 -0500
58960
58961     * Fix disable_of booting
58962
58963     Signed-off-by: Matthew McClintock <msm@freescale.com>
58964
58965 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
58966 Author: Matthew McClintock <msm@freescale.com>
58967 Date:   Wed Aug 16 10:54:09 2006 -0500
58968
58969     * Support for FDT in uImage format, error when using FDT from flash
58970
58971     Signed-off-by: Matthew McClintock <msm@freescale.com>
58972
58973 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
58974 Author: Stefan Roese <sr@denx.de>
58975 Date:   Tue Aug 15 14:22:35 2006 +0200
58976
58977     Add initial support for the ALPR board from Prodrive
58978     NAND needs some additional testing
58979     Patch by Heiko Schocher, 15 Aug 2006
58980
58981 commit f0ff4692ff3372dec55074a8eb444943ab095abb
58982 Author: Stefan Roese <sr@denx.de>
58983 Date:   Tue Aug 15 14:15:51 2006 +0200
58984
58985     Add FPGA Altera Cyclone 2 support
58986     Patch by Heiko Schocher, 15 Aug 2006
58987
58988 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
58989 Author: Jon Loeliger <jdl@freescale.com>
58990 Date:   Mon Aug 14 15:33:38 2006 -0500
58991
58992     Fix BAT0 to actually be cacheable, non-guarded as documented.
58993
58994     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58995
58996 commit 40bc83559db5745681909fd7382ae509567e116d
58997 Author: Jon Loeliger <jdl@freescale.com>
58998 Date:   Wed Aug 9 15:32:16 2006 -0500
58999
59000     Removed MPC8641HPCN DTS source file from build.
59001     It is no longer linked into U-Boot; its sources are
59002     now located in the kernel tree.
59003
59004     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59005
59006 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
59007 Author: Matthew McClintock <msm@freescale.com>
59008 Date:   Wed Jun 28 10:47:03 2006 -0500
59009
59010     * Switched default PCI speed for 8540 ADS back to 33MHz
59011
59012     * Added comments and a printf to warn that PCI-X won't
59013       work at 33MHz
59014       Patch by Andy Fleming 17-Mar-2006
59015
59016     Signed-off-by: Andy Fleming <afleming@freescale.com>
59017
59018 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
59019 Author: Matthew McClintock <msm@freescale.com>
59020 Date:   Wed Jun 28 10:46:35 2006 -0500
59021
59022     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
59023
59024     Signed-off-by: Andy Fleming <afleming@freescale.com>
59025
59026 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
59027 Author: Matthew McClintock <msm@freescale.com>
59028 Date:   Wed Jun 28 10:46:13 2006 -0500
59029
59030     * Added VIA configuration table
59031
59032     * Added support for PCI2 on CDS
59033       Patch by Andy Fleming 17-Mar-2006
59034
59035     Signed-off-by: Andy Fleming <afleming@freescale.com>
59036
59037 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
59038 Author: Matthew McClintock <msm@freescale.com>
59039 Date:   Wed Jun 28 10:45:41 2006 -0500
59040
59041     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
59042
59043     Signed-off-by: Andy Fleming <afleming@freescale.com>
59044
59045 commit 97074ed9655309b64231bc2cee69fe85399f8055
59046 Author: Matthew McClintock <msm@freescale.com>
59047 Date:   Wed Jun 28 10:45:17 2006 -0500
59048
59049     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
59050
59051     Signed-off-by: Andy Fleming <afleming@freescale.com>
59052
59053 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
59054 Author: Matthew McClintock <msm@freescale.com>
59055 Date:   Wed Jun 28 10:44:49 2006 -0500
59056
59057     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
59058
59059     Signed-off-by: Andy Fleming <afleming@freescale.com>
59060
59061 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
59062 Author: Matthew McClintock <msm@freescale.com>
59063 Date:   Wed Jun 28 10:44:23 2006 -0500
59064
59065     * 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
59066
59067     Signed-off-by: Andy Fleming <afleming@freescale.com>
59068
59069 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
59070 Author: Matthew McClintock <msm@freescale.com>
59071 Date:   Wed Jun 28 10:43:36 2006 -0500
59072
59073     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
59074
59075     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59076
59077 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
59078 Author: Matthew McClintock <msm@freescale.com>
59079 Date:   Wed Jun 28 10:43:00 2006 -0500
59080
59081     * 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
59082
59083 commit 5498d90312aad9f6bdbf047986027c35b03cd163
59084 Author: Matthew McClintock <msm@freescale.com>
59085 Date:   Wed Jun 28 10:42:24 2006 -0500
59086
59087     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
59088
59089 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
59090 Author: Matthew McClintock <msm@freescale.com>
59091 Date:   Wed Jun 28 10:41:37 2006 -0500
59092
59093     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
59094
59095 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
59096 Author: John Traill <john.traill@freescale.com>
59097 Date:   Wed Aug 9 14:33:50 2006 +0100
59098
59099     Add Rapidio support for the MPC8641HPCN
59100
59101     Signed-off-by: John Traill <john.traill@freescale.com>
59102
59103 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
59104 Author: John Traill <john.traill@freescale.com>
59105 Date:   Tue Aug 8 11:32:43 2006 +0100
59106
59107     Fix caslat calculation
59108
59109     Signed-off-by: John Traill <john.traill@freescale.com>
59110
59111 commit 709d3073e74153278e7904a70819bbef7df50e1a
59112 Author: Jon Loeliger <jdl@freescale.com>
59113 Date:   Thu Aug 3 16:17:56 2006 -0500
59114
59115     Convert to mac-address in ethernet nodes.
59116
59117 commit 71748af833ca1017edf1415be376366ff2937d17
59118 Author: Haiying Wang <haiying.wang@freescale.com>
59119 Date:   Fri Jul 28 12:41:35 2006 -0400
59120
59121     Correct the irq value of DUART2
59122
59123 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
59124 Author: Haiying Wang <haiying.wang@freescale.com>
59125 Date:   Fri Jul 28 12:41:41 2006 -0400
59126
59127     Change the space size of PEX IO in README
59128
59129 commit 239db37c94f7a92941c4465feceb867c609241c5
59130 Author: Haiying Wang <haiying.wang@freescale.com>
59131 Date:   Fri Jul 28 12:41:18 2006 -0400
59132
59133     Move get_board_sys_clk to board directory
59134
59135 commit 492900b985439fbce1a118afde1e35def870db03
59136 Author: John Traill <john.traill@freescale.com>
59137 Date:   Fri Jul 28 09:03:54 2006 +0100
59138
59139     Fix 8641HPCN pollution
59140
59141 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
59142 Author: John Traill <john.traill@freescale.com>
59143 Date:   Fri Jul 28 08:16:06 2006 +0100
59144
59145     Fix 8641HPCN timebase
59146
59147 commit c86360b830f1eecd7a72208575dde4f57879faea
59148 Author: Zhang Wei <wei.zhang@freescale.com>
59149 Date:   Fri Jul 28 00:01:34 2006 +0800
59150
59151     Fixed OF device tree of mpc86xxhpcn board.
59152
59153     The changes works in with kernel irq mapping rework.
59154
59155     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59156
59157 commit bea3f28d285942bf3f7ab339ce85178ded544225
59158 Author: Haiying Wang <haiying.wang@freescale.com>
59159 Date:   Wed Jul 12 10:48:05 2006 -0400
59160
59161     Add support for reading and writing mac addresses to or from ID EEPROM.
59162
59163     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
59164     With attached patch, we can use command "mac/mac read/mac save/"
59165     to read and write EEPROM under u-boot prompt.
59166
59167     U-boot will calculate the checksum of EEPROM while bootup,
59168     if it is right, then u-boot will check whether the mac address
59169     of eTSEC0/1/2/3 is availalbe (non-zero).
59170
59171     If there is mac address availabe in EEPROM, u-boot will use it,
59172     otherewise, u-boot will use the mac address defined in
59173     MPC8641HPCN.h. This matches the requirement to set unique mac address
59174     for each TSEC port.
59175
59176     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
59177     Signed-off-by: York Sun <yorksun@freescale.com>
59178
59179 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
59180 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
59181 Date:   Thu Jul 13 10:35:10 2006 -0500
59182
59183     Fixed initrd issue by define big RAM
59184
59185     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
59186
59187 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
59188 Author: Jason Jin <Jason.jin@freescale.com>
59189 Date:   Fri Jul 7 10:01:45 2006 -0500
59190
59191     We made a u-boot patch to fix the hang up issue
59192     when booting filesystem from ramdisk.
59193
59194     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
59195
59196 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
59197 Author: Matthew McClintock <msm@freescale.com>
59198 Date:   Wed Jun 28 10:47:03 2006 -0500
59199
59200     * Switched default PCI speed for 8540 ADS back to 33MHz
59201     * Added comments and a printf to warn that PCI-X won't
59202       work at 33MHz
59203       Patch by Andy Fleming 17-Mar-2006
59204
59205     Signed-off-by: Andy Fleming <afleming@freescale.com>
59206
59207 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
59208 Author: Matthew McClintock <msm@freescale.com>
59209 Date:   Wed Jun 28 10:46:35 2006 -0500
59210
59211     * Fixed a bug where 8555 PCI code used the old variable and
59212       function names
59213       Patch by Andy Fleming 17-Mar-2006
59214
59215     Signed-off-by: Andy Fleming <afleming@freescale.com>
59216
59217 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
59218 Author: Matthew McClintock <msm@freescale.com>
59219 Date:   Wed Jun 28 10:46:13 2006 -0500
59220
59221     * Added VIA configuration table
59222     * Added support for PCI2 on CDS
59223       Patch by Andy Fleming 17-Mar-2006
59224
59225     Signed-off-by: Andy Fleming <afleming@freescale.com>
59226
59227 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
59228 Author: Matthew McClintock <msm@freescale.com>
59229 Date:   Wed Jun 28 10:45:41 2006 -0500
59230
59231     * Fixed PCI memory definitions
59232       Patch by Andy Fleming 17-Mar-2006
59233
59234     Signed-off-by: Andy Fleming <afleming@freescale.com>
59235
59236 commit 087454609e47295443af793a282cddcd91a5f49c
59237 Author: Matthew McClintock <msm@freescale.com>
59238 Date:   Wed Jun 28 10:45:17 2006 -0500
59239
59240     * Added support for initializing second PCI bus on 85xx
59241       Patch by Andy Fleming 17-Mar-2006
59242
59243     Signed-off-by: Andy Fleming <afleming@freescale.com>
59244
59245 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
59246 Author: Matthew McClintock <msm@freescale.com>
59247 Date:   Wed Jun 28 10:44:49 2006 -0500
59248
59249     * Added PCI-X #defines for PCI-X initialization
59250       Patch by Andy Fleming on 17-Mar-2006
59251
59252     Signed-off-by: Andy Fleming <afleming@freescale.com>
59253
59254 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
59255 Author: Matthew McClintock <msm@freescale.com>
59256 Date:   Wed Jun 28 10:44:23 2006 -0500
59257
59258     * Made sure the code which disables prefetch for PCI devices
59259       sets the size of the prefetch region to 0
59260       Patch by Andy Fleming on 17-Mar-2006
59261
59262     Signed-off-by: Andy Fleming <afleming@freescale.com>
59263
59264 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
59265 Author: Matthew McClintock <msm@freescale.com>
59266 Date:   Wed Jun 28 10:43:36 2006 -0500
59267
59268     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
59269       Patch by Jon Loeliger 17-Jan-2006
59270
59271     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59272
59273 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
59274 Author: Matthew McClintock <msm@freescale.com>
59275 Date:   Wed Jun 28 10:43:00 2006 -0500
59276
59277     * Removed the oftree.dts for stxxtx in light of the changes
59278       to the flat device tree handling code
59279       Patch by Matthew McClintock 26-June-2006
59280
59281 commit 1b380ec225665e73959677f3893dc658c5925e05
59282 Author: Matthew McClintock <msm@freescale.com>
59283 Date:   Wed Jun 28 10:42:24 2006 -0500
59284
59285     * Patch to modify ft_build.c to update flat device trees in place
59286       Patch by Matthew McClintock 26-June-2006
59287
59288 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
59289 Author: Matthew McClintock <msm@freescale.com>
59290 Date:   Wed Jun 28 10:41:37 2006 -0500
59291
59292     * Modify bootm command to support booting with flat device trees
59293       Patch by Matthew McClintock 26-June-2006
59294
59295 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
59296 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
59297 Date:   Wed Jun 28 08:43:56 2006 -0500
59298
59299     Change Id to symbolic name for RTL8139
59300
59301     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
59302
59303 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
59304 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
59305 Date:   Tue Jun 27 18:12:10 2006 +0800
59306
59307     Fix RTL8139 in big endian
59308
59309     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
59310     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
59311
59312 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
59313 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
59314 Date:   Tue Jun 27 18:12:23 2006 +0800
59315
59316     Fix Tsec bug when no link
59317
59318      When tftp a non-exist file from the tftp server, u-boot will check
59319      the link of all eth port. The original file will return wrong link
59320      state on the no link ports.
59321
59322     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
59323
59324 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
59325 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
59326 Date:   Tue Jun 27 18:12:02 2006 +0800
59327
59328     Fix bug for io_bar size during pci scan
59329
59330     During the pci scan process, Some devices return bar_reponse with the
59331     highest bytes 0, such as the pci bridge in uli1575 return bar_response
59332     with 0xffffff, So the bar_size should be manually set under 64K.
59333
59334     Signed-off-by: Jason Jin <jason.jin@freescale.com>
59335
59336 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
59337 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
59338 Date:   Tue Jun 27 18:11:54 2006 +0800
59339
59340     Enable PCIE1 for MPC8641HPCN board
59341
59342     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
59343
59344 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
59345 Author: Wolfgang Denk <wd@pollux.denx.de>
59346 Date:   Mon Jun 26 11:06:00 2006 +0200
59347
59348     More code cleanup
59349
59350 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
59351 Author: Jon Loeliger <jdl@freescale.com>
59352 Date:   Thu Jun 22 08:51:46 2006 -0500
59353
59354     Fix bug in 8641hpcn reset command with no args.
59355
59356     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
59357     Acked-by: Jon Loeliger <jdl@freescale.com>
59358
59359 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
59360 Author: Zhang Wei <wei.zhang@freescale.com>
59361 Date:   Tue Jun 20 17:47:15 2006 +0800
59362
59363     Reworked IRQ mapping in OF-tree.
59364
59365 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
59366 Author: Jon Loeliger <jdl@freescale.com>
59367 Date:   Thu Jun 15 21:33:37 2006 -0500
59368
59369     Do not enable address translation on secondary CPUs.
59370     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
59371
59372     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59373
59374 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
59375 Author: Wolfgang Denk <wd@pollux.denx.de>
59376 Date:   Wed Jun 14 18:14:56 2006 +0200
59377
59378     Code cleanup
59379
59380 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
59381 Author: Wolfgang Denk <wd@pollux.denx.de>
59382 Date:   Wed Jun 14 17:45:53 2006 +0200
59383
59384     Various USB related patches
59385     - Add support for mpc8xx USB device.
59386     - Add support for Common Device Class - Abstract Control Model USB console.
59387     - Add support for flow control in USB slave devices.
59388     - Add support for switching between gserial and cdc_acm using environment.
59389     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
59390     - Update usbcore slightly to ease host enumeration.
59391     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
59392     - Add AdderUSB_config as a defconfig to enable usage of the USB console
59393       by default with the Adder87x U-Boot port.
59394     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
59395
59396 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
59397 Author: Jon Loeliger <jdl@jdl.com>
59398 Date:   Wed Jun 7 10:53:55 2006 -0500
59399
59400     Fix a get_board_sys_clk() use-before-def warning.
59401
59402     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59403
59404 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
59405 Author: Jon Loeliger <jdl@jdl.com>
59406 Date:   Wed Jun 7 10:52:49 2006 -0500
59407
59408     Allow DTC path to be passed in.
59409
59410     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59411
59412 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
59413 Author: Haiying Wang <haiying.wang@freescale.com>
59414 Date:   Tue Jun 6 16:54:29 2006 -0400
59415
59416     Modify the IRQ of DUART2
59417
59418 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
59419 Author: Jon Loeliger <jdl@jdl.com>
59420 Date:   Wed May 31 13:55:35 2006 -0500
59421
59422     Review cleanups.
59423
59424     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59425
59426 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
59427 Author: Jon Loeliger <jdl@jdl.com>
59428 Date:   Wed May 31 12:44:44 2006 -0500
59429
59430     White space cleanup.
59431     Some 80-column cleanups.
59432     Convert printf() to puts() where possible.
59433     Use #include "spd_sdram.h" as needed.
59434     Enhanced reset command usage message a bit.
59435
59436     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59437
59438 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
59439 Author: Jon Loeliger <jdl@jdl.com>
59440 Date:   Wed May 31 11:39:34 2006 -0500
59441
59442     Removed unneeded local_bus_init() from 8641HPCN board.
59443
59444     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59445
59446 commit 4d3d729c16c392d2982d3266b659d333c927697d
59447 Author: Jon Loeliger <jdl@jdl.com>
59448 Date:   Wed May 31 11:24:28 2006 -0500
59449
59450     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
59451
59452     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59453
59454 commit b2a941de060350ad15878d8219825f4950e9bb8e
59455 Author: Jon Loeliger <jdl@jdl.com>
59456 Date:   Wed May 31 10:07:28 2006 -0500
59457
59458     Remove dead debug code.
59459
59460     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59461
59462 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
59463 Author: Jon Loeliger <jdl@freescale.com>
59464 Date:   Tue May 30 17:47:00 2006 -0500
59465
59466     Move mpc86xx PIXIS code to board directory
59467
59468     First cut at moving the PIXIS platform code out of
59469     the 86xx cpu directory and into board/mpc8641hpcn
59470     where it belongs.
59471
59472     Signed-off-by: Jon Loeliger <jdl@freescale.com>
59473
59474 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
59475 Author: Markus Klotzbuecher <mk@denx.de>
59476 Date:   Tue May 30 16:56:14 2006 +0200
59477
59478     Support generic OHCI support for the s3c24x0 cpu.
59479
59480 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
59481 Author: Haiying Wang <Haiying.Wang@freescale.com>
59482 Date:   Tue May 30 09:10:32 2006 -0500
59483
59484     Improve "reset" command's interaction with watchdog.
59485
59486         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
59487         "reset altbank wd" will reset another bank WITH watch dog enabled
59488         "diswd" will disable watch dog after u-boot boots up successfully
59489
59490     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59491
59492 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
59493 Author: Haiying Wang <Haiying.Wang@freescale.com>
59494 Date:   Tue May 30 08:51:19 2006 -0500
59495
59496     Fix two SDRAM setup bugs.
59497
59498         Fix ECC setup bug.
59499         Enable 1T/2T based on number of DIMMs present.
59500
59501     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59502
59503 commit d11fec5015334deb2010e36ce00bb118cc5429a5
59504 Author: Haiying Wang <Haiying.Wang@freescale.com>
59505 Date:   Fri May 26 10:24:48 2006 -0500
59506
59507     Add first draft of the MPC8641HPCN doc/README.
59508
59509     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59510
59511 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
59512 Author: Haiying Wang <Haiying.Wang@freescale.com>
59513 Date:   Fri May 26 10:13:04 2006 -0500
59514
59515     Added pci@8000 block.
59516     Updated ethernet interrupt mappings (moved up 48).
59517     Cleaned up a few comments.
59518
59519     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59520
59521 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
59522 Author: Haiying Wang <Haiying.Wang@freescale.com>
59523 Date:   Fri May 26 10:01:16 2006 -0500
59524
59525     Allow args on reset command.
59526
59527     Signed-off-by: Jon Loeliger <jdl@jdl.com>
59528
59529 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
59530 Author: Markus Klotzbuecher <mk@denx.de>
59531 Date:   Tue May 23 13:38:35 2006 +0200
59532
59533     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
59534     fixes to the latter.
59535
59536 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
59537 Author: Markus Klotzbuecher <mk@denx.de>
59538 Date:   Tue May 23 10:33:11 2006 +0200
59539
59540     More cleanup for the delta board and the generic usb_ohci driver. Added
59541     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
59542     initialization and cleanup hooks respectively.
59543
59544 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
59545 Author: Markus Klotzbuecher <mk@denx.de>
59546 Date:   Mon May 22 16:33:54 2006 +0200
59547
59548     This patch adds USB storage support for the delta board. This is the first
59549     board to make use of a generic OHCI driver, that calls hooks for board
59550     dependant initialization.
59551
59552 commit 14e37081ff3cac7ebe6e93836523429853b6b292
59553 Author: Jon Loeliger <jdl@jdl.com>
59554 Date:   Fri May 19 13:28:39 2006 -0500
59555
59556     Change arbitration to round-robin for SMP linux.
59557
59558 commit 9a655876e5995be80f49054e2509500e871e4d3a
59559 Author: Jon Loeliger <jdl@jdl.com>
59560 Date:   Fri May 19 13:26:34 2006 -0500
59561
59562     Enable dual DDR controllers and interleaving.
59563
59564 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
59565 Author: Jon Loeliger <jdl@jdl.com>
59566 Date:   Fri May 19 13:22:44 2006 -0500
59567
59568     Update 86xx address map and LAWBARs.
59569
59570 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
59571 Author: Jon Loeliger <jdl@jdl.com>
59572 Date:   Fri May 19 13:14:15 2006 -0500
59573
59574     Remove L2 Cache invalidate polling.
59575
59576 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
59577 Author: Jon Loeliger <jdl@jdl.com>
59578 Date:   Fri May 19 12:33:09 2006 -0500
59579
59580     Enable 2nd CPU and I2C.
59581
59582 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
59583 Author: Jon Loeliger <jdl@freescale.com>
59584 Date:   Mon May 15 07:26:56 2006 -0500
59585
59586     Update interrupt mapping.
59587
59588 commit 6cfea33477b04b63ed47386ed1629529484c33ba
59589 Author: Haiying Wang <Haiying.Wang@freescale.com>
59590 Date:   Wed May 10 09:38:06 2006 -0500
59591
59592     Remove unneeded INIT_RAM_LOCK cache twiddling.
59593     Correctly tracks r29 as global data pointer now.
59594
59595     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
59596
59597 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
59598 Author: Jon Loeliger <jdl@freescale.com>
59599 Date:   Wed May 10 09:33:07 2006 -0500
59600
59601     Remove unnecessary flash.c file.
59602
59603 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
59604 Author: Jon Loeliger <jdl@freescale.com>
59605 Date:   Tue May 9 08:23:49 2006 -0500
59606
59607     Get MPC8641HPCN flash images working.
59608
59609         Enable the CFI driver.
59610         Remove bogus LAWBAR7 cruft.
59611         Use correct TEXT_BASE, Fixup load script.
59612         Enable SPD EEPROM during DDR setup.
59613         Use generic RFC 1918 IP addresses by default.
59614
59615 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
59616 Author: Jon Loeliger <jdl@freescale.com>
59617 Date:   Thu Apr 27 10:15:16 2006 -0500
59618
59619     Cleanup whitespaces and style issues.
59620     Removed //-style comments.
59621     Use 80-column lines.
59622     Remove trailing whitespace.
59623     Remove dead code and debug cruft.
59624
59625 commit a2320a6bf8113a09544c42d160d10ac69d049a03
59626 Author: Jon Loeliger <jdl@freescale.com>
59627 Date:   Thu Apr 27 08:22:39 2006 -0500
59628
59629     Revert bad PCI prefetch limit change.
59630
59631 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
59632 Author: Jon Loeliger <jdl@freescale.com>
59633 Date:   Wed Apr 26 17:58:56 2006 -0500
59634
59635     Initial support for MPC8641 HPCN board.